:root {
    --font-family: "Open Sans", sans-serif;
    --light-color: #fff;
    --primary-color: #0693e3;
    --primary-color-hover: #0693e390;
    --primary-text-color: #003366;
    --grey: #cccccc;
    --white: #ffffff;
    --black: #000000;
  }
  
  /* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
  .custom-checkbox__field:checked + .custom-checkbox__content::after {
    opacity: 1;
  }
  
  .custom-checkbox__field:focus + .custom-checkbox__content::before {
    outline: 2px solid #f00;
    outline-offset: 2px;
  }
  
  .custom-checkbox__field:disabled + .custom-checkbox__content {
    opacity: 0.4;
    pointer-events: none;
  }
  
  /* stylelint-disable */ /* stylelint-disable */
  @font-face {
    font-family: "FiraMed";
    src: url("../fonts/../fonts/FiraSansMedium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: "FiraSemi";
    src: url("../fonts/../fonts/FiraSansCondensed-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: "FiraExtra";
    src: url("../fonts/../fonts/FiraSansCondensed-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: "SansaReg";
    src: url("../fonts/../fonts/SansationRegular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: "SansaBold";
    src: url("../fonts/../fonts/SansationBold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
    font-style: normal;
  }
  html {
    font-size: 62.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  *::before,
  *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
  }
  
  .page {
    height: 100%;
    font-family: var(--font-family, sans-serif);
    -webkit-text-size-adjust: 100%;
  }
  
  .page__body {
    margin: 0;
    min-height: 100%;
    font-size: 1.9rem;
  }
  
  .disable-scroll {
    overflow-y: hidden;
  }
  
  img {
    max-width: 100%;
    width: 100%;
    height: 100%;
  }
  
  a {
    color: var(--primary-text-color);
    text-decoration: none;
    letter-spacing: 0.05rem;
  }
  
  p {
    margin: 0;
  }
  
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "FiraSemi", sans-serif;
    line-height: 1.15;
    color: #000E23;
    margin: 0;
  }
  
  .site-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
  }
  
  .is-hidden {
    display: none !important; /* stylelint-disable-line declaration-no-important */
  }
  
  .btn-reset {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
  }
  
  .input-reset {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    background-color: var(--light-color);
  }
  .input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
    display: none;
  }
  
  .visually-hidden {
    position: absolute;
    overflow: hidden;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
  }
  
  .container {
    margin: 0 auto;
    padding: 0 3rem;
    max-width: 137rem;
    width: 100%;
  }
  
  .js-focus-visible :focus:not(.focus-visible) {
    outline: none;
  }
  
  .centered {
    text-align: center;
  }
  
  .dis-scroll {
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
  }
  
  .page--ios .dis-scroll {
    position: relative;
  }
  
  h2 {
    margin-bottom: 4.4rem;
    position: relative;
    font-family: "SansaBold", sans-serif;
    font-size: 4.8rem;
    line-height: 1.2;
    color: #000E23;
  }
  
  .title_section {
    text-align: center;
  }
  
  .title_border:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: calc(100% + 1rem);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 16rem;
    height: 0.4rem;
    background-color: var(--primary-color);
  }
  
  .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form p:not(:last-child) {
    margin-bottom: 2rem;
  }
  
  .form label .form_input_title {
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
    font-family: "FiraMed", sans-serif;
    line-height: 1.2;
    color: #454F5C;
  }
  .form label .form_input_title:after {
    content: "*";
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    font-size: 1.4rem;
    line-height: 1.2;
    color: rgba(160, 11, 11, 1);
  }
  .form__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.2rem 1.5rem;
    width: 100%;
    border-radius: 1rem;
    font-family: "FiraMed", sans-serif;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #000E23;
  }
  .form__input:focus {
    outline: none;
  }
  .form__textarea {
    min-height: 8rem;
    max-height: 16rem;
    max-width: 35rem;
    min-width: 35rem;
    width: 100%;
    margin: 0;
  }
  .form__btn {
    padding: 1rem;
    min-width: 24rem;
    min-height: 6rem;
    border: 0.2rem solid var(--primary-color);
    border-radius: 0.5rem;
    font-family: "FiraSemi", sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    color: var(--primary-color);
    cursor: pointer;
    -webkit-transition-property: background-color, color;
    -o-transition-property: background-color, color;
    transition-property: background-color, color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .form__btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
  }
  
  .main {
    margin-bottom: 4rem;
  }
  
  .main__sub {
    padding-top: 10rem;
  }
  
  .separate_line {
    display: block;
    margin: 0 auto;
    height: 0.4rem;
    width: 16rem;
    background: var(--primary-color);
  }
  
  .copyright {
    display: block;
    font-family: "SansaReg", sans-serif;
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
    color: var(--primary-text-color);
  }
  
  .university_name {
    display: block;
    padding: 0.8rem;
    min-height: 4rem;
    font-family: "SansaReg", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
    color: #000E23;
  }
  
  .header {
    position: relative;
    z-index: 100;
    width: 100%;
    background-color: var(--primary-color);
  }
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    padding: 1.5rem 3rem;
  }
  .header__menu { 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header__list li {
    position: relative;
    margin: 0 1rem;
    white-space: nowrap;
  }
  
  .header__list li a {
    display: block;
    padding: 0.2rem 0.5rem;
    font-family: "FiraMed", sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--light-color);
    border-bottom: 0.2rem solid transparent;
    -webkit-transition-property: border-color;
    -o-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .header__list li:hover::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .header__list li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 10rem;
    border-radius: 50%;
  }
  
  .header__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 2rem;
    cursor: pointer;
  }
  .header__search input {
    margin: 0;
    padding: 0;
    height: 0;
    width: 0;
    opacity: 0;
  }
  
  .sub-menu {
    padding: 1.5rem;
    position: absolute;
    left: -1.3rem;
    top: 100%;
    z-index: 2;
    min-width: 26rem;
    max-height: 30rem;
    overflow-y: auto;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: .3s;
  }
  
  .menu-item-has-children {
    padding-right: 2rem;
    position: relative;
  }
  
  .menu-item-has-children:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../img/caret-down-solid.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1rem;
    width: 1rem;
    height: 1rem;
    transition-property: transform;
    transition-duration: .3s;
  }
  
  .sub-menu li {
    white-space: initial;
    margin: 1.5rem 0 1rem;
  }
  
  .sub-menu li a {
    padding-bottom: 1.5rem;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.74);
    border-bottom: 1px solid rgba(221, 221, 221, 0.34);
    transition-property: color;
    transition-duration: .3s;
  }
  
  .sub-menu li a:hover {
    color: #fff;
    border-bottom: 1px solid rgba(221, 221, 221, 0.34);
  }
  
  .sub-menu li:last-child a {
    border-color: transparent;
    padding-bottom: 0;
  }
  
  /* Hero Section */
  
  .hero {
    position: relative;
    z-index: 1;
  }
  
  .hero::before {
    position: absolute;
  }
  
  .hero__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    height: 100%;
  }
  .hero__title {
    margin-bottom: 12rem;
    font-family: "SansaBold", sans-serif;
    font-size: 4.8rem;
    line-height: 1.12;
    color: #FBFAF6;
  }
  .hero__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem;
    max-width: 20rem;
    min-height: 4rem;
    width: 100%;
    font-family: "FiraExtra", sans-serif;
    font-size: 1.8rem;
    line-height: 1.15;
    letter-spacing: 0.05rem;
    color: #FBFAF6;
    border: 0.2rem solid #FBFAF6;
    border-radius: 0.5rem;
    -webkit-transition-property: background-color, color;
    -o-transition-property: background-color, color;
    transition-property: background-color, color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .hero__link:hover {
    background-color: var(--light-color);
    color: #000;
  }
  .hero__slider {
    width: 100%;
    height: 100%;
  }
  .hero__slide {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .hero__slide:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 14, 35, 0.5);
  }
  .hero__slide_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 59rem;
    height: 100%;
    position: relative;
    z-index: 2;
  }
  .hero__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.2rem 0;
    bottom: 0 !important;
    background: var(--primary-color);
  }
  .hero__pagination .swiper-pagination-bullet {
    position: relative;
    margin: 0 0.8rem !important;
    width: 1.6rem;
    height: 1.6rem;
    border: 2px solid #FBFAF6;
    border-radius: 0;
    background-color: transparent !important;
    opacity: 1;
  }
  .hero__pagination .swiper-pagination-bullet:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: transparent;
    width: 0.8rem;
    height: 0.8rem;
  }
  
  .hero__col {
    position: relative;
    width: 50%;
    min-height: 40rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .hero__col:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
  }
  
  .hero__col__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 2rem 1rem 4rem;
  }

  .hero__col p {
    line-height: 1.3;
  }
  
  .hero__content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    color: #fff;
  }
  
  .hero__content h2 {
    color: #fff;
  }
  
  .hero__content {
    font-family: "FiraMed", sans-serif;
    font-weight: 400;
  }
  
  .swiper-pagination-bullet-active:after {
    background-color: var(--light-color) !important;
  }
  
  /* Statistics */
  
  .statistics {
    background-color: var(--grey);
  }
  
  .statistics__inner {
    padding: 4rem 0;
  }
  
  .statistics ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
  }
  
  .statistics li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: "FiraMed", sans-serif;
    font-weight: 400;
    color: var(--primary-text-color);
  }
  
  .statistics__count {
    font-size: 3.5rem;
  }
  
  .statistics__name {
    font-size: 2rem;
  }
  
  
  /* About */
  
  .about__inner {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    gap: 10rem;
  }
  
  .about__content h2 {
    font-size: 4rem;
    margin-bottom: 2.5rem;
  }
  
  .about__content p {
    font-family: "FiraMed", sans-serif;
    font-weight: 400;
    text-align: justify;
    line-height: 1.3;
  }
  
  .about__content, .about__player {
    width: 50%;
  }
  
  .player {
    display: flex;
  }
  
  .player__frame {
    min-height: 34rem;
    width: 100%;
  }
  
  /* Educational Program */
  
  .educ_program__inner {
    padding: 3rem 0;
  }
  
  .educ_program ul {
    display: flex;
    align-items: stretch;
    gap: 2rem;
  }
  
  .educ_program li {
    position: relative;
    overflow: hidden;
  }
  
  .educ_program li a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
  }
  
  .educ_program li::after {
    content: "Детальніше";
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateY(-101%);
    font-size: 2.5rem;
    font-family: "FiraMed";
    text-align: center;
    color: #fff;
    transition-property: transform;
    transition-duration: .3s;
  }
  
  .educ_program li:hover::after {
    transform: translateY(0);
  }
  
  .educ_program li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    width: 33.3333333333%;
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 8px 3px rgba(0,0,0,0.32);
    -moz-box-shadow: 0px 2px 8px 3px rgba(0,0,0,0.32);
    box-shadow: 0px 2px 8px 3px rgba(0,0,0,0.32);
  }
  
  .educ_program li span {
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    font-family: "FiraMed", sans-serif;
  }
  
  .educ_program__item_content img {
    margin-right: 2rem;
    width: 3rem;
    height: 3rem;
  }
  
  .educ_program__item_content h3 {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .educ_program__item_content p {
      font-family: "FiraMed", sans-serif;
      font-size: 1.7rem;
      line-height: 1.5;
      text-align: justify;
  }
  
  .specialties {
    padding: 4rem 0;
  }
  .specialties__title {
    margin-bottom: 4.4rem;
  }
  .specialties__template:not(.specialties__template:last-child) {
    margin-bottom: 3.6rem;
  }
  .specialties__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3rem;
    padding-left: 9.6rem;
  }
  .specialties__description h3 {
    min-width: 16rem;
    margin-right: 9.6rem;
    font-size: 2.6rem;
  }
  .specialties__text p {
    margin-bottom: 1rem;
    font-family: "FiraMed", sans-serif;
    font-size: 1.9rem;
    line-height: 1.1;
    text-align: justify;
    color: #454F5C;
  }
  .specialties__text p:last-child {
    margin-bottom: 0;
  }
  .specialties__text a {
    font-family: "FiraMed", sans-serif;
    font-size: 1.9rem;
    line-height: 1.1;
    color: var(--primary-text-color);
    text-decoration: underline;
  }
  .specialties__list {
    display: -ms-grid;
    display: grid;
  }
  
  .link_over {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
  }
  
  .specialties__list__spec {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
  
  .specialties__list__spec li {
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 3rem 2rem;
    min-height: 8rem;
    width: 100%;
    text-align: center;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  .specialties__list__spec li:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 14, 35, 0.6);
    -webkit-transition-property: background-color;
    -o-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  
  .specialties__list__spec li h4 {
    position: relative;
    font-family: "FiraMed", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.1;
    color: #FBFAF6;
    z-index: 2;
  }
  .specialties__list__departments {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .specialties__list__departments li {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  
  .specialties__list__departments li .specialties__img_wrapper {
    display: flex;
    height: 100%;
  }
  
  .specialties__list__departments li .specialties__text_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 9.3rem;
    z-index: 2;
    background-color: var(--primary-color);
  }
  .specialties__list__departments li .specialties__text_wrap h4 {
    text-align: center;
    font-family: "FiraMed", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.15;
    color: #FBFAF6;
  }
  
  /* Advantages */
  
  .advantages__inner {
    padding: 4rem 0;
  }

  .advantages__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0 auto;
    min-height: 25rem;
  }
  .advantages__item:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
  }
  .advantages__item:nth-child(odd):after {
    right: 100%;
  }
  .advantages__item:nth-child(even) .advantages__text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .advantages__item:nth-child(even) .advantages__img_wrapper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .advantages__item:nth-child(even):after {
    left: 100%;
  }
  .advantages__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 3.6rem;
    width: 50%;
    background: #F2F1EE;
    font-family: "FiraMed", sans-serif;
    font-weight: 500;
    font-size: 1.9rem;
    line-height: 1.21;
    text-align: justify;
  }
  .advantages__text p {
    margin-bottom: 2rem;
    color: #454F5C;
  }
  .advantages__text p:last-child {
    margin-bottom: 0;
  }
  .advantages__text a {
    font-style: italic;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: var(--primary-text-color);
  }
  .advantages__img_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
  }
  .advantages__img_wrapper img {
    width: 100%;
  }
  .advantages__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }
  .advantages__links a {
    display: block;
    padding: 2rem 1rem;
    width: 50%;
    text-align: center;
    background-color: var(--primary-color);
    font-family: "FiraExtra", sans-serif;
    font-size: 1.9rem;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    color: #FBFAF6;
  }
  .advantages__links:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0.4rem;
    height: 100%;
    background-color: var(--light-color);
  }
  
  /* Teachers */
  
  .teachers__inner {
    padding: 3rem 0;
  }
  
  .teachers__slide {
    display: flex;
    justify-content: center;
    height: auto;
    /* background-color: #fff;
      -webkit-box-shadow: 0px 2px 8px 3px rgba(0,0,0,0.32);
      -moz-box-shadow: 0px 2px 8px 3px rgba(0,0,0,0.32);
      box-shadow: 0px 2px 8px 3px rgba(0,0,0,0.32); */
      border: 1px solid rgba(0,0,0,0.3);
    border-radius: 1rem;
    overflow: hidden;
  }
  
  .teachers__slide_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .teachers__slider {
    padding: 1rem;
  }
  
  .teachers__img_wrapper {
    display: flex;
    width: 100%;
  }
  
  .teachers__img_wrapper img {
    object-fit: cover;
    height: 30rem;
  }
  
  .teachers__slide_content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    font-family: "FiraMed", sans-serif;
    font-weight: 500;
    line-height: 1.21;
  }
  
  .teachers__name {
    display: block;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--primary-text-color);
  }
  
  .teachers__slider_wrapper {
    position: relative;
  }
  
  .teachers__main_text {
    padding: 2rem;
  }
  
  .teachers__prev_btn {
    left: -4rem;
    background-color: transparent;
    border-color: transparent;
  }
  .teachers__next_btn {
    right: -4rem;
    background-color: transparent;
    border-color: transparent;
  }
  
  .teachers__position {
    display: block;
    font-size: 2rem
  }
  
  .teachers__descr {
    display: block;
    padding: 2rem;
    border-top: 1px solid rgba(0,0,0,0.3);
    font-family: "SansaReg";
    font-size: 1.8rem;
  }
  
  /* Partners */
  
  .partners__inner {
    padding: 4rem 0;
  }
  
  .marquee {
    padding: 6rem 0;
    overflow: hidden;
    white-space: nowrap;
  }
  
  .marquee-container {
    display: flex;
    align-items: center;
    position: relative;
    
    animation: marquee_slide 20s linear infinite;
  }
  
  .marquee-container img {
    width: 15%;
    margin: 0 4rem;
  }
  
  @keyframes marquee_slide {
    0% {
      transform: translateX(0);
      opacity: 0;
    }
  
    5% {
      opacity: 1;
    }
  
    95% {
      opacity: 1;
    }
  
    to {
      transform: translateX(-230%);
      opacity: 0;
    }
  }
  
  /* Opportunities section */
  
  .opportunities__inner {
    margin-bottom: 3rem;
    padding: 5rem 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .opportunities__inner h2 {
    margin-bottom: 2.4rem;
    max-width: 94rem;
    color: #fff;
  }
  
  .opportunities__inner p {
    max-width: 80rem;
    color: #fff;
    font-family: "SansaReg";
  }
  
  .opportunities__links {
    margin-bottom: 3rem;
  }
  
  .opportunities__links ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4rem;
  }
  
  .opportunities__links li a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
  }
  
  .opportunities__links li::after {
    content: "Детальніше";
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateY(-101%);
    font-size: 2.5rem;
    font-family: "FiraMed";
    text-align: center;
    color: #fff;
    transition-property: transform;
    transition-duration: .3s;
  }
  
  .opportunities__links li:hover::after {
    transform: translateY(0);
  }
  
  .opportunities__links li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    max-width: 50%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0px 2px 8px 3px rgba(0,0,0,0.32);
    -moz-box-shadow: 0px 2px 8px 3px rgba(0,0,0,0.32);
    box-shadow: 0px 2px 8px 3px rgba(0,0,0,0.32);
    pointer-events: none;
  }
  
  .opportunities__links li span {
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    font-family: "FiraMed", sans-serif;
  }
  
  .opportunities__item_content img {
    margin-right: 2rem;
    width: 3rem;
    height: 3rem;
  }
  
  .opportunities__item_content h3 {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .opportunities__item_content p {
      font-family: "FiraMed", sans-serif;
      font-size: 1.7rem;
      line-height: 1.5;
      text-align: justify;
  }
  
  .opportunities__programs_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
  }
  
  .opportunities__programs_content .opportunities__programs_list_wrapper li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    font-family: "FiraMed", sans-serif;
    font-size: 2rem;
    line-height: 1.5;
  }

  .opportunities__programs_list_wrapper {
    width: 100%;
  }

  .opportunities__program_text p {
    font-size: 2.4rem;
  }
  
  .opportunities__programs_content .opportunities__programs_list_wrapper ul li:not(:last-child) {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.2);
  }

  .opportunities__programs_content .opportunities__programs_list_wrapper li:nth-child(odd) .opportunities__program_img_wrapper {
    order: 1;
  }

  .opportunities__programs_content .opportunities__programs_list_wrapper li:nth-child(odd) .opportunities__program_text {
    order: 2;
  }

  .opportunities__programs_content .opportunities__programs_list_wrapper li:nth-child(odd) .opportunities__program_text p {
    text-align: right;
  }

  .opportunities__programs_content .opportunities__programs_list_wrapper li:nth-child(even) .opportunities__program_img_wrapper {
    order: 2;
  }

  .opportunities__programs_content .opportunities__programs_list_wrapper li:nth-child(even) .opportunities__program_text p {
    text-align: left;
  }

  .opportunities__program_img_wrapper img {
    max-width: 30rem;
  }

  .opportunities__program_text {
    max-width: 60rem;
  }
  
  .opportunities__programs_list_wrapper h3 {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 3.4rem;
  }
  
  
  /* Students History */
  
  .students__slider_wrapper {
    position: relative;
  }
  
  .students__slider {
    width: 100%;
    margin: 0 auto;
  }
  
  .students__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    overflow: hidden; 
    height: auto;
  }
  
  .students__slide_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }

  .students__content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .students__name {
    margin-bottom: 1rem;
    font-size: 2.7rem;
    font-weight: bold;
  }
  
  .students__img_wrapper {
    display: flex;
  }

  .students__img_wrapper img {
    height: 26rem;
  }

  .students__content_wrapper {
    display: flex;
    flex-direction: column;
    padding: 2rem; 
    height: 100%;
  }
  
  .students__job {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #555;
    font-family: "SansaReg";
    border-bottom: 2px solid #ddd;
  }
  
  .students__description {
    margin-bottom: 2rem; 
    max-height: 10rem;
    overflow-y: auto;
    font-size: 1.6rem;
    line-height: 1.5;
    font-family: "SansaReg";
    color: #777;
  }
  
  .students__video {
    text-align: center;
  }
  
  .students__video-text {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .students__video-link {
    display: inline-block;
    margin-top: auto;
    padding: 1rem 2rem;
    background-color: var(--primary-color); 
    color: #fff; 
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .students__video-link:hover {
    background-color: #00649d; 
  }
  
  .students__prev_btn, .students__next_btn {
    background-color: transparent;
    border-color: transparent;
  }
  
  .students__prev_btn {
    left: -4rem;
  }
  
  .students__next_btn {
    right: -4rem;
  }
  
  .events {
    padding: 4rem 0;
  }
  .events__list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
  
  .events__item {
    position: relative;
  }
  
  .events__item_top span {
    display: block;
    text-align: center;
    font-family: "FiraExtra", sans-serif;
    color: var(--primary-color);
  }
  .events__item_month {
    font-size: 1.6rem;
  }
  .events__item_day {
    margin-bottom: 0.6rem;
    font-size: 2.4rem;
  }
  .events__item_content {
    padding: 2.7rem 1.6rem;
    background: #F2F1EE;
    text-align: justify;
  }
  .events__item_time {
    display: block;
    margin-bottom: 1rem;
    font-family: "FiraExtra", sans-serif;
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--primary-color);
  }
  .events__item_title {
    display: block;
    margin-bottom: 1rem;
    font-family: "FiraExtra", sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #000E23;
  }
  
  .events__item_descr {
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow-y: hidden;
    font-family: "FiraMed", sans-serif;
    font-size: 1.6rem;
    line-height: 1.21;
    color: #454F5C;
  }
  
  .events__img {
    width: 100%;
    object-fit: cover;
  }
  .events__img_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .events__img_wrapper:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 0.4rem;
    background-color: var(--primary-color);
  }
  
  .news {
    padding: 4rem 0;
  }
  .news__list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    min-height: 20rem;
    position: relative;
    background: #F2F1EE;
  }
  .news__item:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 0.4rem;
    background: var(--primary-color);
  }
  
  .news__item_content {
    max-width: 35rem;
    padding: 1.5rem 3rem;
    text-align: justify;
  }
  
  .news__item_content.fill {
    max-width: 100%;
    padding: 3rem;
  }
  .news__item_title {
    margin-bottom: 1rem;
    font-family: "FiraExtra", sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #000E23;
  }
  .news__item_descr {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow-y: hidden;
    font-family: "FiraMed", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
  }
  .news__img_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  
  .news__img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .post__stub_wrap {
    position: relative;
    width: 30%;
    height: 100%;
  }
  
  .news__item .post__stub {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 0;
  }
  
  .news__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .news__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 24rem;
    min-height: 6rem;
    padding: 1rem;
    border: 0.2rem solid var(--primary-color);
    border-radius: 0.5rem;
    font-family: "FiraExtra";
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    color: var(--primary-color);
    -webkit-transition-property: background-color, color;
    -o-transition-property: background-color, color;
    transition-property: background-color, color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .news__link:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
  }
  
  .science {
    padding: 4rem 0;
  }
  .science__list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .science__item {
    background-color: #454F5C;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 30rem;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  
  .science__item_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition-property: opacity, visibility, background-color;
    -o-transition-property: opacity, visibility, background-color;
    transition-property: opacity, visibility, background-color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .science__item_title {
    font-family: "FiraSemi";
    font-size: 2.4rem;
    line-height: 1.2;
    text-align: center;
    color: #FBFAF6;
  }
  .science__item:hover .science__item_content {
    background-color: var(--primary-color-hover);
    opacity: 1;
    visibility: visible;
  }
  
  .footer {
    margin-top: auto;
    padding: 4rem 0 7.9rem;
    background: #F2F1EE;
  }
  .footer__list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 7rem;
  }
  .footer__item:nth-child(1) {
    padding-right: 4.8rem;
  }
  .footer__item:nth-child(2) {
    padding: 0 3rem;
    border: 1px solid var(--primary-color);
    border-bottom: none;
    border-top: none;
  }
  .footer__item:nth-child(3) {
    padding-left: 6.3rem;
  }
  .footer__item h3 {
    margin-bottom: 2rem;
    font-family: "FiraSemi", sans-serif;
    font-size: 2.4rem;
    line-height: 1.2;
    color: #000E23;
  }
  .footer__text {
    display: block;
    font-family: "FiraMed", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #454F5C;
  }
  
  .footer__text span {
    display: block;
    margin: 0.5rem 0;
  }
  
  .footer__text a {
    color: #454F5C;
  }
  .footer__text:not(.footer__text:last-child) {
    margin-bottom: 2rem;
  }
  .footer__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__socials li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    position: relative;
  }
  .footer__socials li a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
  .footer__socials li:not(:last-child) {
    margin-right: 3rem;
  }
  
  .news_post__inner {
    margin-bottom: 5rem;
  }
  .news_post__title {
    margin-bottom: 2rem;
    font-family: "SansaBold", sans-serif;
    font-size: 4.8rem;
    line-height: 1.2;
    text-align: center;
    color: #000E23;
  }
  .news_post__img_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3rem;
    border-radius: 1rem;
    max-height: 50rem;
  }
  .news_post p {
    margin: 0 auto;
    max-width: 73rem;
    font-family: "FiraSemi", sans-serif;
    font-size: 1.4rem;
    line-height: 1.21;
    color: #454F5C;
  }
  .news_post p a {
    color: #454F5C;
    text-decoration: underline;
  }
  
  .departments_page__list {
    margin-bottom: 10rem;
  }
  .departments_page__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3rem;
  }
  .departments_page__item:last-of-type {
    margin-bottom: 0;
  }
  .departments_page__item_left {
    position: relative;
    text-align: center;
    padding: 10rem 2rem;
    max-width: 25.5rem;
    width: 100%;
    background: var(--primary-color);
  }
  
  .departments_page__item_left a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
  
  .departments_page__item_left h3 {
    margin-bottom: 3rem;
    line-height: 1.2;
    color: #FBFAF6;
  }
  .departments_page__item_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background: #F2F1EE;
  }
  .departments_page__img_wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
  }
  .departments_page__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 3rem;
  }
  .departments_page__content {
    margin-right: 5.1rem;
  }
  .departments_page__text {
    font-family: "FiraSemi", sans-serif;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #454F5C;
  }
  .departments_page__text_bold {
    display: block;
    min-width: 15rem;
    margin-right: 4.4rem;
    font-family: "FiraExtra", sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #000E23;
  }
  .departments_page__text_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2rem;
  }
  .departments_page__text_wrapper:last-of-type {
    margin-bottom: 3.5rem;
  }
  .departments_page__text_wrapper .departments_page__bold_text {
    margin-top: auto;
  }
  .departments_page__text_wrapper a {
    color: #454F5C;
  }
  .departments_page__photo_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 16rem;
    max-height: 20.7rem;
  }
  
  .departments_page__tabs {
    border-left: 0;
    border-right: 0;
  }
  
  .departments_page__tabs .tabs__content {
    border-left: 0;
    border-top: 0;
  }
  
  .tabs__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 0.2rem solid var(--primary-color);
  }
  .tabs__nav_btn {
    padding: 1rem;
    min-height: 6rem;
    min-width: 30.2rem;
    outline: none;
    border: 0.4rem solid transparent;
    border-bottom-width: 0.2rem;
    font-family: "FiraSemi", sans-serif;
    font-size: 2.4rem;
    line-height: 1.21;
    text-align: center;
    color: var(--primary-color);
    cursor: pointer;
    -webkit-transition-property: background-color, color;
    -o-transition-property: background-color, color;
    transition-property: background-color, color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .tabs__nav_btn:hover {
    background-color: var(--primary-color);
    color: #FBFAF6;
  }
  .tabs__nav_btn.active {
    background-color: var(--primary-color);
    color: #FBFAF6;
    border-color: var(--primary-color);
  }
  .tabs__content {
    border: 0.2rem solid var(--primary-color);
    border-bottom: 0.4rem solid var(--primary-color);
  }
  .tabs__content_title {
    font-family: "FiraExtra", sans-serif !important;
    font-size: 1.8rem !important;
    line-height: 1.21 !important;
    color: #000E23;
    text-decoration: none !important;
  }
  .tabs__content_text {
    display: block;
    max-width: 50.4rem;
    font-family: "FiraSemi", sans-serif;
    font-size: 1.6rem;
    line-height: 1.21;
    color: #454F5C;
  }
  .tabs__content_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 0.2rem solid var(--primary-color);
  }
  .tabs__content_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.3rem 1rem;
    max-width: 30.2rem;
    min-width: 30.2rem;
    width: 100%;
    border-right: 0.4rem solid var(--primary-color);
    text-align: center;
  }
  .tabs__content_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
  .tabs__content_right.right_text {
    padding: 2rem 1.3rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .tabs__item {
    display: none;
  }
  .tabs__item.active {
    display: block;
  }
  .tabs__item_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .tabs__item_info:not(:last-child) {
    border-bottom: 1px solid var(--primary-color);
  }
  
  .contacts__list li:not(:last-child) {
    margin-bottom: 3rem;
  }
  
  .contacts__list li > * {
    margin-left: 3rem;
    font-family: "FiraMed", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #000E23;
  }
  
  .contacts__list li {
    padding-bottom: 2rem;
    position: relative;
  }
  
  .contacts__list li:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #454F5C;
    width: 32rem;
    height: 2px;
  }
  
  .contacts__list h3 {
    margin-left: 0;
    margin-bottom: 1rem;
    font-family: "SansaBold", sans-serif;
    font-size: 3rem;
  }
  
  .contacts__list h4 {
    margin: 1.5rem 0 1rem;
    font-size: 2rem;
  }
  
  .contacts__list a {
    color: var(--primary-text-color);
    text-decoration: underline;
  }
  
  .advantages_page__inner p {
    display: block;
    font-family: "Firamed", sans-serif;
    font-size: 1.9rem;
    text-align: justify;
    color: #454F5C;
  }
  
  .advantages_page__inner p:not(:last-child) {
    margin-bottom: 2rem;
  }
  
  .advantages_page__inner a {
    color: var(--primary-text-color);
    text-decoration: underline;
  }
  
  .employees h4 {
    margin-bottom: 1rem;
    font-family: "SansaBold", sans-serif;
    font-size: 2.5rem;
  }
  
  .employees__list:not(:last-child) {
    margin-bottom: 3rem;
  }
  
  .employees__list__main {
    display: flex;
    gap: 0 2rem;
  }
  
  .employees__list__sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2rem;
  }
  
  .employees__list__sub .employees__item {
    display: flex;
    align-items: center;
  }
  
  .employees__item_content {
    display: flex;
    align-items: center;
  }
  
  .employees__item {
    font-family: "FiraMed", sans-serif;
  }
  
  .employees__list__main .employees__item {
    max-width: 50%;
    width: 100%;
  }
  
  .employees__item h3 {
    margin-bottom: 1rem;
    font-family: "SansaBold", sans-serif;
    font-size: 3rem;
  }
  
  .employees__item .employees__photo {
    display: flex;
    margin-right: 2rem;
    min-width: 11rem;
    max-width: 13rem;
    width: 100%;
  }
  
  .employees__photo img {
    object-fit: cover;
    width: 100%;
  }
  
  .employees__item .employees__info {
    display: flex;
    flex-direction: column;
  }
  
  .employees__item span {
    display: flex;
    color: #454F5C;
  }
  
  .employees__item span {
    flex-wrap: wrap;
  }
  
  .employees__item span:not(:last-child) {
    margin-bottom: 1rem;
  }
  
  .employees__item a {
    color: var(--primary-text-color);
  }
  
  .employees__list__alt_sub li {
    color: #454F5C;
  }
  
  .employees__list__alt_sub li:not(:last-child) {
    margin-bottom: 1rem;
  }
  
  .research__content > * {
    margin-bottom: 2rem;
    font-family: "FiraMed", sans-serif;
    line-height: 1.2;
    text-align: justify;
    color: #454F5C;
  }
  
  .research__content a {
    text-decoration: underline;
  }
  
  
  .research__content ul {
    margin-left: 4rem;
    list-style-type:decimal;
  }
  
  .research__content ul li:not(:last-child) {
    margin-bottom: 1rem;
  }
  
  .specialties_page__info {
    margin-bottom: 2rem;
  }
  
  .specialties_page__info > * {
    font-family: "FiraMed", sans-serif;
    line-height: 1.2;
    color: #454F5C;
  }
  
  .specialties_page__info a {
    text-decoration: underline;
  }
  
  .subtitle {
    display: block;
    margin: 3rem 0 1rem;
    font-family: "SansaBold", sans-serif;
    font-size: 3rem;
  }
  
  .text_wrapper {
    margin: 2rem 0;
  }
  
  .applicant a {
    text-decoration: underline;
    font-family: "FiraMed", sans-serif;
    line-height: 1.2;
  }
  
  .text_wrapper > * {
    font-family: "FiraMed", sans-serif;
    line-height: 1.2;
    text-align: justify;
    color: #454F5C;
  }
  
  .text_wrapper ul {
    margin: 1rem 2rem;
  }
  
  .text_wrapper li {
    padding-left: 1rem;
    position: relative;
  }
  
  .text_wrapper li:not(:last-child) {
    margin-bottom: 1rem;
  }
  
  .text_wrapper li:before {
    content: "-";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-family: "FiraMed", sans-serif;
    line-height: 1.2;
    color: #454F5C;
  }
  
  .text_wrapper p:not(:last-child) {
    margin-bottom: 1rem;
  }
  
  .text_wrapper a {
    text-decoration: underline;
  }
  
  .important_info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
    background-color: transparent;
    font-family: "FiraExtra", sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.05rem;
    color: var(--primary-text-color);
    line-height: 1.2;
    text-align: justify;
  }
  
  .img_wrapper {
    margin: 2rem 0;
  }
  
  table {
    font-family: "FiraMed", sans-serif;
    width: 100%;
    border: 2px solid var(--primary-color);
    border-collapse: collapse;
  }
  
  table, th, td {
    border-bottom: 2px solid var(--primary-color);
  }
  
  th, td {
    padding: 1rem;
  }
  
  td {
    border-left: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
  }
  
  .warning_text {
    font-style: italic;
    color: var(--primary-color);
  }
  
  .posts__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .post {
    padding: 2rem;
    position: relative;
    border-radius: 1rem;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
  }
  
  .post a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
  
  .post:hover  {
  
  }
  
  .post__content {
    height: 100%;
  }
  
  .post h3 {
    margin-bottom: 1rem;
    color: #000E23;
    font-size: 2.2rem;
  }
  
  .post p {
    font-family: "FiraMed", sans-serif;
    line-height: 1.2;
    color: #454F5C;
  }
  
  .post__img_wrapper {
    position: relative;
    padding-top: 65.5%;
    margin-bottom: 1rem;
  }
  
  .post__img_wrapper img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  
  .post__info {
    display: flex;
    flex-direction: column;
  }
  
  .post__date {
    display: block;
    margin-bottom: 1rem;
    font-family: "FiraMed", sans-serif;
    line-height: 1.2;
    color: var(--primary-color);
  }
  
  .post__text {
    overflow: hidden;
  }
  
  .post__text p {
    text-overflow: -o-ellipsis-lastline;
    display: -webkit-box;
    -webkit-box-orient: vertical;  
    -webkit-line-clamp: 4;
  }
  
  .wp-pagenavi {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
  }
  
  .wp-pagenavi * {
    border-radius: 0.5rem;
  }
  
  .wp-pagenavi .pages {
    border-color: #000E23;
  }
  
  .wp-pagenavi span, .wp-pagenavi a {
    font-family: "FiraMed", sans-serif;
    line-height: 1.2;
  }
  
  .wp-pagenavi a {
    color: var(--primary-color);
    transition-property: border-color;
    transition-duration: .3s;
  }
  
  .wp-pagenavi a:hover {
    border-color: var(--primary-color);
  }
  
  .post_page__date {
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: "FiraMed", sans-serif;
    line-height: 1.2;
    color: var(--primary-color);
  }
  
  .post__stub {
    padding-top: 65.5%;
    margin-bottom: 1rem;
    width: 100%;
    background-color: #454F5C;
  }
  
  .burger {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 2rem;
    height: 2rem;
    z-index: 101;
  }
  
  .burger::before, .burger::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 0.2rem;
    background-color: var(--light-color);
    border-radius: 1rem;
    transition: transform 0.3s ease-in-out,top 0.3s ease-in-out;
  }
  
  .burger::before {
    top: 20%;
  }
  
  .burger::after {
    top: auto;
    bottom: 10%;
  }
  
  .burger span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 0.2rem;
    background-color: var(--light-color);
    border-radius: 1rem;
  }
  
  .burger.active span {
    transform: scale(0);
    transition-property: transform;
    transition-duration: .3s;
  }
  
  .burger.active::before, .burger.active::after {
    left: 0;
    top: auto;
    bottom: auto;
    background-color: #000;
    transition-property: transform;
    transition-duration: .3s;
  }
  
  .burger.active::before {
    transform: rotate(45deg);
  }
  
  .burger.active::after {
    transform: rotate(-45deg);
  }
  
  .header__mobile_logo {
    display: none;
    position: relative;
  }
  
  
  .header__mobile_logo  {
    max-width: 7rem;
  }
  
  .table_wrapper {
    overflow-x: auto;
  }
  
  .table_wrapper table {
    min-width: 60rem;
  }
  
  .accordion {
    display: none;
  }
  
  .accordion__item {
    border: 1px solid rgba(0,0,0, 0.5);
    border-radius: 2rem;
    background-color: var(--light-color);
    font-family: "FiraMed", sans-serif;
  }
  
  .accordion__control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    width: 100%;
  }
  
  .accordion__title {
    font-size: 2rem;
  }
  
  .accordion__icon {
    position: relative;
    width: 2rem;
    height: 2rem;
    transition-property: transform;
    transition-duration: .3s;
  }
  
  .accordion__icon::before, .accordion__icon::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #454F5C;
  }
  
  .accordion__icon::before {
    width: 0.2rem;
    height: 100%;
  }
  
  .accordion__icon::after {
    width: 100%;
    height: 0.2rem;
  }
  
  .accordion__item:not(:last-child) {
    margin-bottom: 2rem;
  }
  
  .accordion__content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 2rem;
    will-change: max-height;
    transition: all 0.3s ease-out;
    box-sizing: content-box;
  }
  
  .show .accordion__content {
    opacity: 1;
    padding: 2rem;
  }
  
  .show .accordion__icon {
    transform: rotate(-45deg);
  }
  
  .accordion__content table td p:not(:last-child) {
    margin-bottom: 1rem;
  }
  
  .form label {
    width: 100%;
  }
  
  .form p {
    display: flex;
    justify-content: center;
  }
  
  .hidden {
    display: none;
  }
  
  .post_page__img_wrapper img {
    width: auto;
  }
  
  .wp-block-image img {
    border-radius: 1rem;
  }
  
  .post_page h3, .post_page h4, .post_page h5 {
    margin: 1rem 0;
  }
  
  .post_page .important_info {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    margin: 2rem 0;
  }
  
  .post_page .important_info a {
    padding: 2rem;
    width: 100%;
    height: 100%;
    text-align: center;
    color: var(--primary-text-color);
    transition-property: background-color, color;
    transition-duration: .3s;
  }
  
  .post_page .important_info a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
  }
  
  .post_page h2 {
    margin: 2.2rem 0;
  }
  /*# sourceMappingURL=main.css.map */