.header {
  position: relative;
  background-color: #ffffff;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 60px; */
  /* gap: 40px; */
  gap: 20px;
  min-height: 110px;
  padding: 20px 0;
}

.header__logo {
  height: 70px;
  max-height: 55px;
  margin-right: auto;
}

.header__logo img {
  height: 100%;
  object-fit: contain;
}

.header__nav__list {
  display: flex;
  gap: 20px;
}

.header__nav__list>li {
  position: relative;
}

.header__nav__item>span,
.header__nav__item>a {
  /* font-size: 1.25rem; 18px */
  font-size: 1.125rem;

  display: flex;
  align-items: center;
  /* gap: 12px; */
  gap: 5px;
  font-weight: 400;
  line-height: 1;
  color: #222222;
  white-space: nowrap;
}

.header__nav__item>span::after,
.header__nav__item>a::after {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  background-image: url("../images/icons/chevron_down.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.menu-item:not(.dropdown) .header__nav__item>a::after {
  display: none;
}

.header__nav__tooltip {
  display: none;
  position: absolute;
  z-index: 2;
  left: -50px;
  width: 445px;
  padding-top: 43px;
}

.header__nav__list>li:hover>.header__nav__tooltip,
.header__nav__list>li:focus-within>.header__nav__tooltip,
.header__nav__list>li:active>.header__nav__tooltip {
  display: block;
}

.header__nav__sublist {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #fbfbfb;
  padding: 60px 50px;
}

.header__nav__sublist>li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.header__nav__sublist>li>a {
  font-weight: 600;
  line-height: 1;
  color: #750e6d;
}

.header__nav__sublist-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* gap: 10px; */
  gap: 20px;
}

.header__nav__sublist-2>li>a {
  font-weight: 600;
  color: #595959;
}

.header__nav__sublist-3 {
  display: flex;
  flex-direction: column;
  gap: 10px;

  margin-top: 10px;
}

.header__nav__sublist-3>li>a {
  font-weight: 400;
  color: #595959;
}

.header__buttons {
  display: flex;
  align-items: center;
  /* gap: 20px; */
  gap: 10px;
}

.header__button__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.header__button__dropdown {
  display: none;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
}

/* .header__button__wrapper:hover>.header__button__dropdown, */
/* .header__button__wrapper:focus-within>.header__button__dropdown, */
/* .header__button__wrapper:active>.header__button__dropdown {
  display: block;
} */

.header__button__dropdown__list {
  display: flex;
  gap: 20px;
  background-color: #fbfbfb;
  padding: 10px 24px;
}

.header__button img {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.header__menu {
  display: none;
}

.menu {
  display: none;
  position: absolute;
  z-index: 2;
  right: 0;
  width: 100%;
  max-width: 628px;
  background-color: #fbfbfb;
  padding: 60px 56px;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.menu__list>li {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.menu__item::after {
  content: "";
  display: none;
  width: 16px;
  height: 8px;
  background-image: url("../images/icons/chevron_down_dark.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.menu-item.dropdown>.menu__item::after {
  display: block;
}

.menu__item.active::after {
  transform: rotate(180deg);
}

.menu__item>a {
  font-weight: 600;
  /* font-size: 2.250rem; /* 36px */
  font-size: 1.25rem; /* 18px */
  line-height: 1.1;
}

.menu__tooltip {
  display: none;
}

.menu__sublist {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.menu__sublist>li {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu__sublist>li>a {
  font-weight: 600;
  /* font-size: 1.25rem; /* 18px */
  font-size: 1.4rem; /* 22px */
  line-height: 1.23;
  color: #750e6d;
}

.menu__sublist-2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu__sublist-2>li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu__sublist-2>li>a {
  font-weight: 600;
  /* line-height: 1.4; */
  line-height: 1;
  font-size: 1.25rem; /* 18px */
}

.menu__sublist-3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: disc;
  padding-left: 1em;
  color: #595959;
}

.menu__sublist-3>li>a {
  font-size: 1.25rem; /* 18px */
}

.mobile-menu>ul>li>.menu__item>a,
.mobile-first-level {
  /* font-size: 1.875rem; /* 30px */
  /* font-size: 1.750rem; /* 28px */
  font-size: 1.500rem; /* 24px */
  font-weight: 400;
}

.footer {
  background-image: url("../images/footer_bg.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 36px;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 30%;
}

.footer__logo {
  width: 178px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: 700;
  font-size: 1.25rem; /* 18px */
  line-height: auto;
}

.footer__sitemap {
  flex: 1;
  max-width: 1076px;
  font-weight: 400;
  /* font-size: 1.35rem; /* 21px */
  font-size: 1.25rem; /* 18px */
  line-height: 1.33;
  color: #595959;
  padding-top: 100px;
}

.footer__sitemap__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer__sitemap__list li {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__sitemap__title {
  font-weight: 700;
}

.footer__sitemap__sublist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.15rem; /* 16px */
}

.footer__sitemap__sublist li {
  font-weight: 400;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__socials {
  display: flex;
  gap: 40px;
}

.footer__socials img {
  width: 32px;
  height: 32px;
}

.footer__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 1.15rem; /* 16px */
  line-height: auto;
}

.footer__terms {
  display: flex;
  gap: 20px;
}

.footer__copyright {
  max-width: 65%;
}

.content {
  background-image: url("../images/content_bg.png");
  background-size: 46% auto;
  background-position: top left;
  background-repeat: no-repeat;
  padding-top: 30px;
  min-height: 800px;
}

.content.news-content,
.content.event-content {
  background-image: url("../images/content_event_bg.png");
}

.breadcrumb {
  font-weight: 400;
  /* font-size: 1.3rem; /* 20px */
  font-size: 1.15rem; /* 16px */
  line-height: 1.4;
  text-align: right;
  /* margin-bottom: 70px; */
  margin-bottom: 10px;
}

.breadcrumb li {
  display: inline-block;
}

.breadcrumb li:has(span.d-none-breadcrumb) {
  display: none;
}

.breadcrumb.post-type-faculty li:has(span.d-none-breadcrumb) {
  display: inline-block;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 1em;
}

.swiper-pagination {
  position: static;
  justify-content: flex-end;
  text-align: left;
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.swiper-pagination-bullet {
  width: 20px;
  min-width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid #69266b;
  margin: 0 !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 26px;
  min-width: 26px;
  height: 26px;
  background-color: #69266b;
}

@media (max-width: 1920px) {
  .swiper-pagination-bullet {
    width: 16px;
    min-width: 16px;
    height: 16px;
  }

  .swiper-pagination-bullet-active {
    width: 22px;
    min-width: 22px;
    height: 22px;
  }
}

@media (max-width: 1400px) {
  .header__inner {
    gap: 20px;
  }
}

@media (max-width: 1280px) {
  .header__inner {
    gap: 16px;
    min-height: 98px;
  }

  .header__logo {
    height: 58px;
  }

  .header__nav {
    display: none;
  }

  .header__buttons {
    gap: 16px;
  }

  .header__menu {
    display: block;
    width: 26px;
    height: auto;
    min-width: 26px;
  }

  .footer {
    background-image: url("../images/footer_bg_tablet.png");
    padding: 152px 0 54px;
  }

  .footer__content {
    gap: 10px;
  }

  .footer__main {
    flex-direction: row;
    align-items: flex-start;
    width: 62%;
  }

  .footer__sitemap {
    /* font-size: 1.500rem; /* 24px */
    font-size: 1.25rem; /* 18px */
    padding-top: 0;
  }

  .footer__sitemap__list {
    display: flex;
    flex-direction: column;
  }

  .footer__sitemap__sublist {
    display: none;
  }

  .footer__bottom {
    width: 62%;
  }

  .footer__text {
    flex-direction: column;
  }

  .footer__copyright {
    max-width: 100%;
  }

  .content {
    /* padding-top: 90px; */
    padding-top: 30px;
    min-height: unset;
  }

  .breadcrumb {
    display: none;
  }

  .swiper-pagination {
    padding-top: 30px;
    gap: 6px;
  }

  .swiper-pagination-bullet {
    width: 12px;
    min-width: 12px;
    height: 12px;
  }

  .swiper-pagination-bullet-active {
    width: 15px;
    min-width: 15px;
    height: 15px;
  }

  .mobile-menu.menu {
    max-width: 440px;
    padding: 40px 30px;
  }

  .header__button img {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }
}

@media (max-width: 850px) {
  .footer__main {
    gap: 20px;
  }

  .footer__logo {
    width: 160px;
  }
}

@media (max-width: 768px) {
  .header__logo img {
    max-width: 220px;
  }

  .header__inner {
    gap: 13px;
  }

  .header__buttons {
    gap: 13px;
  }

  .header__button img {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .header__menu {
    width: 22px;
    min-width: 22px;
  }

  .menu {
    padding: 40px 18px;
  }

  .menu__list {
    gap: 20px;
  }

  .menu__item>a {
    font-size: 1.2rem; /* 17px */
  }

  .menu__sublist {
    gap: 15px;
  }

  .mobile-menu>ul>li>.menu__item>a,
  .mobile-first-level {
    font-size: 1.3rem; /* 20px */
  }

  .menu__sublist-3,
  .menu__sublist-2>li,
  .menu__sublist-3>li>a,
  .menu__sublist>li>a,
  .menu__sublist-2>li>a {
    /* font-size: 1.750rem; /* 28px */
    font-size: 1.2rem; /* 17px */
  }

  .footer {
    background-image: url("../images/footer_bg_mobile.png");
    padding: 104px 0 25px;
  }

  .footer__content {
    gap: 60px;
  }

  .footer__main {
    gap: 50px;
    width: 75%;
  }

  .footer__logo {
    width: 178px;
  }

  .footer__links {
    /* font-size: 1.4rem; /* 22px */
    font-size: 1.15rem; /* 16px */
  }

  .footer__sitemap {
    display: none;
  }

  .footer__bottom {
    width: 85%;
  }

  .footer__copyright,
  .footer__text {
    /* font-size: 1.4rem; /* 22px */
    font-size: 1.15rem; /* 16px */
  }

  .content {
    background-size: 75% auto;
    /* padding-top: 50px; */
    min-height: 450px;
  }

  .swiper-pagination {
    padding-top: 16px;
    gap: 5px;
  }

  .swiper-pagination-bullet {
    width: 9px;
    min-width: 9px;
    height: 9px;
  }

  .swiper-pagination-bullet-active {
    width: 11px;
    min-width: 11px;
    height: 11px;
  }
}

@media (max-width: 480px) {
  .header__logo img {
    max-width: 165px;
  }

  .footer__main {
    flex-direction: column;
  }

  .footer__terms {
    flex-direction: column;
  }
}

@media (max-width: 480px) {

  .footer__copyright,
  .footer__links,
  .footer__text {
    font-size: 1.15rem; /* 16px */
  }

  .menu__item>a,
  .menu__sublist-3,
  .menu__sublist-2>li>a,
  .menu__sublist>li>a {
    font-size: 1.2rem; /* 17px */
  }
}

@media (min-width: 1281px) {
  .mobile-menu {
    display: none !important;
  }
}

select.select {
  background-color: #F2F2F2;
}

.back__to__top {
  position: fixed;
  bottom: 4rem;
  right: 20px;
  z-index: 1000;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back__to__top img {
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 6px #0000002b;
  border-radius: 100%;
}

.tabs__content a {
  color: #750E6D;
}