@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --second-family: 'IBM Plex Mono', monospace;
  --darkblue: var(--darkblue);
  --whiteblue: #415e8a;
  --indigoblue-font: #2c5ca9;

  /* --indigoblue: linear-gradient(145deg, #1f3b6e, #2c5ca9); */
  --indigoblue: linear-gradient(180deg, #004191 0%, #2c5ca9 100%);
  --indigoblue-50: linear-gradient(145deg, #1f3b6eab, #2c5ca97d);
  ;
  --light-gray: #f9f9f9;
  --sand: #c0a282;
  --white: #fff;
  --transparent-white-50: rgba(255, 255, 255, 0.466);
  --gray: #999;
  --yellow: #c55;
  --light-blue-accent: #2c5ca9;
  --button-bg: #3f51b5;
  --primary-blue: #2c5ca9;
  --light-background: #ffffff;
  --text-color-dark: #333333;
  --text-color-medium: #555;
  --off-white: #eef2f7;
  --white: #ffffff;
  --gold-accent: #ffc107;
  --font-main: 'Roboto', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-14: 14px;
  --font-16: 16px;
  --font-18: 18px;
  --font-22: 22px;
  --font-24: 24px;
  --font-26: 26px;
  --font-28: 28px;
  --font-32: 32px;
  --font-36: 36px;
  --font-38: 38px;
  --font-96: 96px;
  --font-300: 300;
  --font-400: 400;
  --font-700: 700;

}


@media (max-width: 1200px) {
  :root {
    --font-96: 86px;

  }
}

@media (max-width: 768px) {
  :root {
    --font-14: 10px;
    --font-16: 12px;
    --font-18: 13px;
    --font-22: 14px;
    --font-28: 20px;
    --font-28: 22px;
    --font-36: 30px;
    --font-38: 32px;
    --font-96: 76px;

    --font-700: 600;
  }

  @media (max-width: 568px) {
    :root {
      --font-14: 8px;
      --font-16: 10px;
      --font-18: 11px;
      --font-22: 13px;
      --font-28: 16px;
      --font-36: 20px;
      --font-96: 56px;

      --font-700: 600;
    }
  }
}

.modal {
  display: none;
  /* Скрыто по умолчанию */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  /* Темный фон */
  backdrop-filter: blur(5px);
  /* Эффект размытия */
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  /* Центрируем, уменьшив верхний отступ */
  border: none;
  width: 90%;
  /* Адаптивная ширина */
  border-radius: 15px;
  /* Более мягкое скругление */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation-name: animatetop;
  animation-duration: 1.5s;
  overflow: scroll;
  /* Скролл внутри, если контент не помещается */
  position: relative;
  max-height: 70vh;
  /* Максимальная высота окна просмотра */
}

/* Анимация появления модального окна */
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

/* Заголовок модального окна */
.modal-content h2 {
  color: var(--dark-blue, #1f3b6e);
  margin-top: 0;
  border-bottom: 3px solid var(--primary-blue, #2c5ca9);
  /* Более толстый акцент */
  padding-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Кнопка закрытия модального окна */
.close-btn {
  float: right;
  margin-left: 15px;
  font-size: 32px;
  font-weight: 300;
  /* Более тонкий шрифт */
  color: #666;
  line-height: 1;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.3s;
  position: absolute;
  top: 15px;
  right: 25px;
}

.close-btn:hover,
.close-btn:focus {
  color: var(--primary-blue, #2c5ca9);
  text-decoration: none;
  cursor: pointer;
}

/* Текст внутри модального окна */
.modal-content p:last-child {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-top: 20px;
}


.row,
.col,
.col-md-10 {
  padding: 0;
}

.title-page {
  background: #ffffff;
  padding: 15px 25px;
  margin: 150px 0 30px 0;
  border-bottom: 8px solid var(--indigoblue);
  border-radius: 12px;
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--indigoblue-font, #1d4585);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.15),
    -5px 0 0 rgba(0, 0, 0, 0.05) inset;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
}

.title-page:hover {
  transform: translateY(-3px);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.2);
}

.title-content {

  /* padding: 10px;
  margin: 20px 0 0 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--indigoblue-font);
  padding: 10px 15px;
  border-left: 5px solid var(--indigoblue-font);
  background: var(--light-gray);
  margin-bottom: 20px;
  border-radius: 10px; */
}

/* 
.title-content {
  background: var(--indigoblue);
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  margin: 20px 0;
  color: #fff;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.title-content:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
} */
/* Основной контейнер */
.title-content {
  background: var(--light-background);
  padding: 30px 40px;
  border-radius: 20px;
  margin: 40px auto;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 0 0 4px var(--off-white) inset;
  color: var(--text-color-dark);
  text-align: left;
  line-height: 1.6;
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease-out;
}

/* .title-content span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--off-white);
} */

/* Стилизация Параграфа */
.title-content .text-content {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color-medium);
  margin-top: 20px;
  font-weight: 400;
}



/* Заголовок "Document's"
.title-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-accent);
  margin-bottom: 5px;
}


.title-content p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0;
  color: var(--text-color);
  border-bottom: 2px solid var(--light-blue-accent);
  padding-bottom: 10px;
  margin-bottom: 25px;
} */

/* Контейнер для кнопок (Flexbox) */
.button-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 12px;
  margin-top: 20px;
}

/* Стили для всех кнопок */
/* Стили для всех кнопок */
.button-section button,
.button-section a {
  border: 1px solid #1d4585;
  background: linear-gradient(180deg, #4d8ad4 0%, #2c5ca9 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 15px 15px;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 8px #1d4585;
  flex: 1 1 300px;
}



/* 
.title-content h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
} */

/* Стиль для текста внутри title-content */
.title-content-text {
  font-size: 1.8rem;
  /* Увеличенный размер для заголовка */
  font-weight: 700;
  color: var(--gold-accent);
  /* Акцентный цвет для лучшей видимости */
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-blue-accent);
}


.modal-pdf {
  display: none;
  /* Скрыто по умолчанию */
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  /* Темный фон для лучшего контраста */
  justify-content: center;
  align-items: center;
}

.modal-content-pdf {
  position: relative;
  background-color: #fefefe;
  padding: 0;
  border: 1px solid #888;
  width: 90%;
  height: 90%;
  max-width: 1000px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  /* Важно для iframe */
}

/* Кнопка закрытия */
.close-pdf-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #fff;
  /* Белый цвет на темном фоне оверлея */
  font-size: 35px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  z-index: 1001;
  /* Поверх содержимого */
}

.close-pdf-btn:hover,
.close-pdf-btn:focus {
  color: #ccc;
}

.text-content {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444444;
  margin: 20px 0;
  padding-left: 10px;
  border-left: 3px solid var(--light-gray, #eef2f7);
}

.select-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 50px auto;
}

.select-section button {
  border: 1px solid #1d4585;
  background: linear-gradient(180deg, #4d8ad4 0%, #2c5ca9 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 15px 25px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 8px #1d4585;
  transform: translateY(0);
}


b,
strong {
  font-weight: bolder;
  color: var(--indigoblue-font);
}

/* .button-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-block: 20px;
}

.button-section button,
.button-section a button {
  border: 1px solid var(--indigoblue-font);
  border-radius: 10px;
  background: var(--white);
  font-size: var(--font-16);
  color: var(--indigoblue-font);
  padding-block: 10px;
  margin-block: 20px;
  transition: all .3s ease;
  width: 100%;
}

.button-section button:hover {
  box-shadow: 0 10px 10px var(--indigoblue-font);
  background: var(--indigoblue);
  color: white;
  transform: scale(1.05);
} */
/* .button-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin: 50px 0;
    }

    .button-section button {
        background: #fff;
        border-radius: 20px;
        padding: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        text-align: center;
        transition: all 0.4s ease;
        font-family: Arial, sans-serif;
        font-weight: 700;
        font-size: 15px;
        color: var(--indigoblue-font);
        border: none;
    }

    .button-section button:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
        background: var(--indigoblue);
        color: #fff;
    } */
.person-section {

  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}


/* Изображение персоны (УВЕЛИЧЕНО) */
.person-img {
  flex-basis: 160px;
  position: relative;
  flex-shrink: 0;
}

.person-img .icon {

  position: absolute;
  bottom: 0px;
  right: 5px;
  background: linear-gradient(135deg, #a7b7c9, #eef3f7);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1a2a5b;
  box-shadow: 0 0 15px #007BFF;

}

.person-img img {
  display: block;
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 5px solid #eef2f7;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px #f9f9fb,
    0 0 0 10px rgba(0, 123, 255, 0.1), 0 0 0 20px rgba(0, 123, 255, 0.05);
}

/* Основная информация о персоне */
.person-info {
  flex-grow: 1;
  min-width: 280px;
}

.person-fio {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c5ca9;
  margin: 0 0 5px 0;
}

.person-position {
  font-size: 1.1rem;
  color: #555;
  margin: 0 0 15px 0;
  font-style: normal;
}

.person-info p.person-info {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #777;
  margin: 0;
  font-style: italic;
}

/* Контакты */
.person-email {
  flex-basis: 250px;
  flex-shrink: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.person-email .phone,
.person-email .email {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.person-email img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  filter: invert(28%) sepia(35%) saturate(2360%) hue-rotate(195deg) brightness(97%) contrast(85%);
}

.person-email a {
  color: #2c5ca9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.person-email a:hover {
  text-decoration: underline;
  color: #1d4585;
}

/* ========== CAROUSEL CONTAINERS ========== */
.carousel-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 10%;
  position: relative;
  z-index: 9999;
  width: 100vw;

}

.carousel .item:before {
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  content: "";
  inset: 0;
  border-radius: 10px;
}

.carousel .thumbnail .item::before {
  z-index: 1;
  background: transparent;
  position: absolute;
  content: "";
  inset: 0;
  border-radius: 10px;

}

.carousel {
  position: relative;
  height: 500px;
  width: 80%;
}

.carousel .list .item {
  position: absolute;
  inset: 0 0 0 0;
}

.carousel .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.carousel .list .item .content {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 1140px;
  max-width: 60%;
  transform: translateX(-70%);
  padding-right: 10%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #000400;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.carousel .list .item .content .title {
  font-weight: 600;
  /* bold иногда слишком жирный, 600 — оптимально выразительно */
  font-size: 2em;
  /* немного крупнее для акцента */
  letter-spacing: 2px;
  /* 10px слишком разрежено, 2px добавит стиль, но сохранит читаемость */
  text-transform: uppercase;
  /* придаёт силу и стиль (по желанию) */
  line-height: 1.3;
  /* добавляет немного воздуха вокруг строки */

}

.carousel .list .item .content .description {
  font-weight: 300;
  /* чуть толще, для лучшей читаемости */
  font-size: 1em;
  /* немного больше — выразительнее, но не громоздко */
  letter-spacing: 2px;
  /* добавлен fallback для кроссбраузерности */
  line-height: 1.6;
}

/* ========== THUMBNAIL CONTAINERS ========== */
.carousel .thumbnail {
  position: absolute;
  max-width: max-content;
  bottom: -20%;
  left: 30%;
  filter: blur(0px);
  display: flex;
  gap: 20px;
  z-index: 100;
  /* animation: showThumbnail 0.5s linear 1 forwards; */
}

/* @keyframes showThumbnail{
  to{
    left:50%;
    filter:blur(0);
    }
} */

.carousel .thumbnail .item {
  width: 200px;
  height: 300px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.5s ease;
}

.carousel .thumbnail .item:hover {
  transform: translateY(-20px);
}

.carousel .thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.carousel .thumbnail .item .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.arrows {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: 1140px;
  max-width: 60%;
  transform: translateX(-70%);
  display: flex;
  gap: 20px;
  z-index: 3;
}

.arrows button {
  border: 1px #fff solid;
  background: transparent;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  font-weight: bold;
  font-size: large;

}

.carousel .thumbnail .item .content .title,
.carousel .thumbnail .item .content .description {
  color: #fff;
}

.carousel .list .item .content .tel {
  display: flex;
  gap: 20px;
  align-items: center;
}

.carousel .list .item .content .tel .svg {
  background: transparent;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px #fff solid;
}

.carousel .list .item .content .tel span {
  background: transparent;
  padding: 10px;
  border-radius: 10px;
  padding-inline: 20px;
  border: 1px #fff solid;
}

.carousel .list .item .content .button {
  width: 150px;
  border: 1px #fff solid;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.carousel .thumbnail .item .overly {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 33, 71, 0.73) 0%, rgba(7, 35, 72, 0.73) 40%, rgba(0, 0, 0, 0) 100%);
  border-radius: 10px;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.carousel .list .item:nth-last-child(1) {
  z-index: 1;
}

/* .dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
}

.dropdown-menu {
    display: flex;
    flex-direction: column;
    gap:20px;
} 
.dropdown-item {
    color: white;
    font-size: 24px;
    text-align: start;
    padding: 20px;
}

.dropdown-item:hover {
    color: #007bff;
    background: transparent;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 200px;
    height: auto;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    z-index: 1001;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.dropdown-submenu .dropdown-item {
    font-size: 18px;
    padding: 10px;
}*/

.carousel .list .item .content .title,
.carousel .list .item .content .description,
.carousel .list .item .content .tel .svg,
.carousel .list .item .content .tel span,
.carousel .list .item .content .button {
  transform: translateY(150px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s ease-out 1 forwards;
}

@keyframes showContent {
  to {
    transform: translateY(0px);
    filter: blur(0);
    opacity: 1;
  }
}

.carousel .list .item .content .title {
  animation-delay: .3s;
}

.carousel .list .item .content .description {
  animation-delay: .4s;
}

.carousel.next .list .item:nth-child(3) img {
  width: 200px;
  height: 300px;
  position: absolute;
  left: 50%;
  bottom: -20%;
  z-index: 0;
  animation: outPicture 0.5s linear 1 forwards;
}

@keyframes outPicture {
  to {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0%;
    object-fit: cover;
    border-radius: 10px;
  }
}

.carousel.next .thumbnail {
  transform: translateX(200px);
  animation: moveThumbnail .5s linear 1 forwards;
}

@keyframes moveThumbnail {
  to {
    transform: translateX(0);
  }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
  width: 0px;
  overflow: hidden;
  height: 300px;
  opacity: 0;
  animation: moveThumbnailitems .5s linear 1 forwards;
}

.carousel.prev .list .item:nth-child(2) img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 3;
  animation: leavePicture 0.5s linear 1 forwards;
}

.carousel.prev .thumbnail .item:nth-child(1) {
  width: 0;
  overflow: hidden;
  animation: moveThumbnailitems .5s linear 1 forwards;
}

.carousel.prev .thumbnail {
  transform: translateX(-200px);
  animation: moveThumbnail .5s linear 1 forwards;
}

@keyframes moveThumbnailitems {
  to {
    width: 200px;
    height: 300px;
    opacity: 1;
  }
}

@keyframes moveThumbnail {
  to {
    transform: translateX(0);
  }
}

@keyframes leavePicture {
  to {
    width: 200px;
    height: 300px;
    position: absolute;
    left: 30%;
    bottom: -20%;
  }
}

/* ========== GLOBAL CONTAINERS ========== */
main>.container {
  padding: 0;
}

.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm{
  max-width: 100%;
}

/* ========== HEADER ========== */
.header {
  background: transparent;

}

.header.scrolled {
  background: var(--indigoblue);
}

.logoBuketov {
  display: none;
}

.dropdown-toggle-header {
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  border-radius: 10px;
  position: relative;
  z-index: 10001;
}

.dropdown-toggle-header img {
  transform: rotate(0);
  transition: all 1s;
  width: 45px;
  animation: CloseRotateIcon 1s linear 1 forwards;

}

@keyframes CloseRotateIcon {
  to {
    transform: rotate(180deg);
  }
}

.dropdown-toggle-header img.rotate {
  animation: rotateIcon 1s linear 1 forwards;
}

@keyframes rotateIcon {
  from {
    transform: rotate(180deg);
  }

  to {
    transform: rotate(0deg);
  }
}


.dropdown-menu-header.active {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 10px;
}

.dropdown-menu-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 20px;
  background: var(--indigoblue);
  display: none;
  /* Скрыто по умолчанию */
  justify-content: center;
  z-index: 1000;
}

.dropdown-menu-header img {
  margin-inline-start: 30px;
}

.dropdown-main-flex {
  height: 80%;
}

/*Dropdown-main-menu Role*/
.dropdown-menu-header.active .dropdown-main-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 30%;
  overflow-y: scroll;
  overflow-x: hidden;
  /* border-right: 1px #fff solid; */
  padding-block: 2%;
}

.dropdown-menu-header.active .dropdown-main-menu button,
.dropdown-menu-header.active .dropdown-main-menu a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  gap: 20px;
  background: transparent;
  border: none;
  color: var(--white);
  width: 100%;
  font-weight: bold;
  padding: 0 20px;
  font-size: var(--font-28);
  text-decoration: none;
}

.dropdown-menu-header.active .dropdown-main-menu button:hover {
  color: rgb(255, 255, 255);
  transition: 0.3s;
  transform: scale(1.01);
  text-shadow:
    1px 1px 0 grey,
    1px 2px 0 grey,
    2px 4px 10px rgba(0, 0, 0, 0.5),
    2px 4px 15px rgba(128, 128, 128, 0.7);

}

.dropdown-menu-header.active .dropdown-submenus {
  width: 30%;
  /* border-right: 1px #fff solid; */
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;

}

.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.university-info,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.incoming,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.student,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.faculties,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.graduate,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.science,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.international-cooperation {
  display: none;
  justify-content: start;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  width: 100%;
}

.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.university-info.active,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.incoming.active,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.student.active,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.faculties.active,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.graduate.active,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.science.active,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.international-cooperation.active {
  display: flex;
}

.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.university-info a,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.incoming a,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.student a,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.faculties a,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.graduate a,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.science a,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.science button,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.international-cooperation a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  width: 100%;
  font-weight: bold;
  padding: 0 20px;
  font-size: var(--font-18);
  /* white-space: nowrap; */
  letter-spacing: 0.1em;
  transition: 0.3s;
  border: none;
  background: transparent;
  text-decoration: none;
  text-align: left;
}

.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.university-info a:hover,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.incoming a:hover,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.student a:hover,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.faculties a:hover,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.graduate a:hover,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.science a:hover,
.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.science button:hover,

.dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.international-cooperation a:hover {
  transition: 0.3s;
  transform: scale(1.01);
  text-shadow:
    1px 1px 0 grey,
    1px 2px 0 grey,
    2px 4px 10px rgba(0, 0, 0, 0.5),
    2px 4px 15px rgba(128, 128, 128, 0.7);


}

.dropdown-menu-header.active .dropdown-menu-social {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 1%;
  height: 100%;
  padding-inline-start: 20px;
}

.dropdown-menu-header.active .dropdown-menu-social p {
  font-weight: bold;
  padding: 0 0px;
  font-size: var(--font-22);
}

.dropdown-menu-header.active .dropdown-menu-social .researchCenter,
.dropdown-menu-header.active .dropdown-menu-social .DissertationCouncil,
.dropdown-menu-header.active .dropdown-menu-social .CompetitionsAndGrands,
.dropdown-menu-header.active .dropdown-menu-social .Conferences,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent {
  display: none;
}

.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2025,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2024,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2023,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2022,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2021 {
  display: none;
}

.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2025.active,

.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2024.active,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2023.active,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2022.active,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2021.active {

  display: flex;
  flex-direction: column;
  align-items: start;
  color: var(--white);
  width: 100%;
  padding: 20px;
  transition: 0.3s;
  gap: 20px;
  background: var(--indigoblue);
  border: 1px var(--white) solid;
  border-radius: 10px;

}

.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2025.active a,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2024.active a,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2023.active a,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2022.active a,
.dropdown-menu-header.active .dropdown-menu-social .ResearchJobStudent .ResearchJobStudent-2021.active a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  font-size: var(--font-16);
  color: var(--white);
  font-weight: var(--font-700);
}

.dropdown-menu-header.active .dropdown-menu-social.researchCenter p,
.dropdown-menu-header.active .dropdown-menu-social.researchCenter .social,
.dropdown-menu-header.active .dropdown-menu-social.DissertationCouncil p,
.dropdown-menu-header.active .dropdown-menu-social.DissertationCouncil .social,
.dropdown-menu-header.active .dropdown-menu-social.CompetitionsAndGrands p,
.dropdown-menu-header.active .dropdown-menu-social.CompetitionsAndGrands .social,
.dropdown-menu-header.active .dropdown-menu-social.Conferences p,
.dropdown-menu-header.active .dropdown-menu-social.Conferences .social,
.dropdown-menu-header.active .dropdown-menu-social.ResearchJobStudent p,
.dropdown-menu-header.active .dropdown-menu-social.ResearchJobStudent .social {
  display: none;
}

.dropdown-menu-header.active .dropdown-menu-social.researchCenter .researchCenter,
.dropdown-menu-header.active .dropdown-menu-social.DissertationCouncil .DissertationCouncil,
.dropdown-menu-header.active .dropdown-menu-social.CompetitionsAndGrands .CompetitionsAndGrands,
.dropdown-menu-header.active .dropdown-menu-social.Conferences .Conferences,
.dropdown-menu-header.active .dropdown-menu-social.ResearchJobStudent .ResearchJobStudent {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  overflow-y: scroll;
  padding: 20px;

}

.dropdown-menu-header.active .dropdown-menu-social.researchCenter .researchCenter a,
.dropdown-menu-header.active .dropdown-menu-social.DissertationCouncil .DissertationCouncil a,
.dropdown-menu-header.active .dropdown-menu-social.CompetitionsAndGrands .CompetitionsAndGrands a,
.dropdown-menu-header.active .dropdown-menu-social.Conferences .Conferences a,
.dropdown-menu-header.active .dropdown-menu-social.ResearchJobStudent .ResearchJobStudent button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  width: 100%;
  padding: 0 20px;
  font-size: var(--font-16);
  transition: 0.3s;
  text-decoration: none;
  border: none;
  background: transparent;
}


.dropdown-menu-header.active .dropdown-menu-social.researchCenter .researchCenter a:hover,
.dropdown-menu-header.active .dropdown-menu-social.DissertationCouncil .DissertationCouncil a:hover,
.dropdown-menu-header.active .dropdown-menu-social.CompetitionsAndGrands .CompetitionsAndGrands a:hover,
.dropdown-menu-header.active .dropdown-menu-social.Conferences .Conferences a:hover,
.dropdown-menu-header.active .dropdown-menu-social.ResearchJobStudent .ResearchJobStudent button:hover {
  transition: 0.3s;
  transform: scale(1.01);
  text-shadow:
    1px 1px 0 grey,
    1px 2px 0 grey,
    2px 4px 10px rgba(0, 0, 0, 0.5),
    2px 4px 15px rgba(128, 128, 128, 0.7);
}


.dropdown-menu-header.active .dropdown-menu-social .social {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10%;
}

.nav-link {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #fff;
  padding-block: 0;
}

body {
  /* font-family: sans-serif; */
  /* Используем переменную шрифта */
}


.nav-link:hover {
  color: #ffff00;
  /* цвет при наведении */
}

/* ========== FIRST BLOCK ========== */
.first-block {
  /* background:  
    linear-gradient(to bottom, rgba(15, 33, 71, 0.73)  0%, rgba(7, 35, 72, 0.73) 40%, rgba(0, 0, 0, 0) 100%),
    url(/bg-images/first-block-bg.png) no-repeat center center; */
  background-size: cover;
  /* min-height: 600px; */
  max-height: 100vh;
  /* padding: 150px 50px; */
  /* position: sticky; */
  top: 0;
  z-index: 0;
}

.first-block video {
  height: 100vh;
}

.first-block-half {
  /* background: linear-gradient(to right,#405e89 50%,#405e896c 100%); */
  background: var(--indigoblue-50);
  position: absolute;
  z-index: 1;
  height: 100vh;
  width: 50vw;
  left: 0;
  display: flex;
  justify-content: end;
  flex-direction: column;
}

.first-block.overly {
  position: absolute;
  top: 0;
  width: 100%;
  /* -height: 600px; */
  min-height: 100vh;
  /* background: linear-gradient(to bottom, rgba(15, 33, 71, 0.73) 0%, rgba(7, 35, 72, 0.73) 40%, rgba(0, 0, 0, 0) 100%);*/
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.36) 5%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}


/* ========== SECOND BLOCK ========== */

/* ========== CARD STYLES ========== */
.col {
  transition: transform .5s;
  filter: blur(0px);
}

.additional-links {
  gap: 1%;
  min-height: 300px;
  position: relative;
  top: -150px;
}

.additional-links-text {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

}

/* .additional-links-item{
  width: 100%;
} */
.col:hover {
  transform: scale(1.1);
  filter: blur(0px);
  z-index: 3;
}

.row:has(.col:hover) .col:not(:hover) .card {
  filter: blur(4px);
  transform: scale(1);
  z-index: 0;
}



.card-additional-links {
  background: url(/bg-images/additional-links-bg.jpg) no-repeat;
  background-size: cover;
  border: 1px var(--white) solid;
  border-radius: 10px;
  padding-block: 20px;
  background: transparent;
}

.card-blur-bg {
  border-radius: 10px;
  position: absolute;
  inset: 0;
  background: url('/bg-images/additional-links-bg.jpg') center/cover no-repeat;
  filter: blur(8px);
  z-index: 1;
}

.card-body {
  z-index: 2;
}

/* ========== THIRD BLOCK ========== */


.block-header p {
  margin: 0;
  padding-block: 5px;
  font-weight: var(--font-700);
  font-size: var(--font-36);
  color: var(--white);
  width: 100%;
  text-align: center;
  background: var(--indigoblue);
  border-radius: 10px;
}

.university-branding {
  color: var(--white);
  /* Индиго стиль */
  border-radius: 10px;
  max-width: 100%;
  margin: 2rem auto;
}

.university-name {
  font-size: 6em;
  line-height: 70px;
  font-weight: bold;
  margin: 0.5rem -8px;
  letter-spacing: 1px;
}

.university-motto {
  font-size: 1.2rem;
  color: #ccc;
  margin: 0;
}

.university-year {
  font-size: 1rem;
  color: #ccc;
  margin: 0;

}

/* ========== ADMISSION ========== */
.admission-slider-buttons {
  width: 100%;
  gap: 2%;
}

.admissionBtnLeft,
.admissionBtnRight {
  background: var(--indigoblue);
  padding-block: 10px;
  border: 1px solid var(--indigoblue-font);
  width: 49%;
  transition: transform 1s ease;
  border-radius: 10px;
  font-size: var(--font-24);
  font-weight: var(--font-700);
  color: white;
}

/* .admissionBtnLeft.active,
.admissionBtnRight.active {
  color: var(--white);
  border: none;
} */


.admission-btn-bg {
  background: var(--indigoblue);
  position: absolute;
  z-index: -1;
  border-radius: 10px;
  transition: transform 1s ease, border-radius 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.admission-btn-bg.animate-left {
  border-radius: 10px 0 0 10px;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.admission-btn-bg.animate-right {
  border-radius: 0 10px 10px 0;
  transform: scale(1.05) rotate(-5deg);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.admission-move {
  transition: transform 1s ease;
  width: 200%;
}

.admission-slider-first-part {
  gap: 3%;
}

/* ========== ICON BOX ========== */
.box-icon {
  background: var(--sand);
  border-radius: 100%;
  padding: 15px;
}

.box-icon img {
  width: 51px;
  height: 51px;
}

/* ========== EDUCATION TEXT ========== */
.edu-title {
  font-size: var(--font-22);
  font-weight: var(--font-700);
  color: var(--indigoblue-font);
}

.edu-text {
  font-size: var(--font-14);
  color: var(--gray);
  font-weight: var(--font-400);
  width: 90%;
}

.second-block,
.third-block,
.fourth-block,
.fifth-block,
.sixth-block,
.seventh-block {
  position: relative;
  z-index: 999;

}

.news-item {
  overflow: hidden;
  height: 200px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.news-item .card.shadow-sm {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  background: var(--news-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news-item:hover .card.shadow-sm {
  /* border: 5px solid var(--whiteblue); */
  /* или убери, если хочешь сохранить картинку */
  height: 100%;
}

.card.shadow-sm {
  position: relative;
}

.card.shadow-sm::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--news-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: filter 0.3s ease;
  z-index: 0;
  /* фон */
}

.card-body {
  position: relative;
  z-index: 1;
  color: rgb(157, 156, 156);
}

.news-item:hover .card.shadow-sm::before {
  filter: blur(10px);
}


.news-item:hover .news-text {
  display: block;
  color: white;
  font-weight: 700;

  position: absolute;
  bottom: 0;
  left: 0;
}

.news-text {
  display: none;
}

.upcoming-event-item {
  /* При необходимости можно добавить отступы или другие стили */
}

.calendar-card {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.calendar-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); */
}

.calendar-bg {

  background: url('/bg-images/upcoming-event-bg-2.png') no-repeat center top;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0px;
  transition: opacity 0.3s ease;
}

.calendar-card:hover .calendar-bg {
  opacity: 0.6;
}

.calendar-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 25px 15px;
  text-align: center;
  background: #fff;
  border: 3px solid #bcbec0;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-card:hover .calendar-content {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.calendar-content p {
  margin: 8px 0;
}

.upcoming-event-day {
  font-weight: 700;
  font-size: 48px;
  color: #004080;
  line-height: 1;
}

.upcoming-event-month {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #0073e6;
  margin-bottom: 5px;
}

.upcoming-event-title {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: #555;
}

.upcoming-event-time {
  font-weight: 300;
  font-size: 14px;
  color: #888;
}

.upcoming-event-text {
  display: none;
}



/* ========== SIXTH BLOCK - BLOCK RECTOR ========== */
.block-rector {
  margin-top: 200px;
}

.box-img-rector {
  position: relative;
  margin-right: 5%;

}

.box-img-rector img {
  position: absolute;
  bottom: 0px;
  transition: 0.5s all;
  height: 500px;
  filter: drop-shadow(-7px 1px 17px);
  z-index: 999;
}

.skewX {
  background: var(--indigoblue);
  border-radius: 10px;
  width: 100%;
  height: 300px;
  transition: 0.5s all;
}

.name-rector {
  font-weight: var(--font-700);
  font-size: 4em;
  line-height: 100%;
  color: var(--indigoblue-font);
}

.rector-position {
  font-style: italic;
  font-weight: 400;
  font-size: var(--font-20);
  line-height: 67%;
  color: var(--gray);
}

.rector-text {
  font-style: italic;
  font-weight: 400;
  font-size: var(--font-16);
  line-height: 122%;
  color: var(--gray);
}

/* ========== EIGHTH BLOCK - BLOCK SMI ========== */
.block-smi {
  gap: 30px;
  padding-left: 0;
}

.smi-logo-buketov {
  width: 63px;
  height: 63px;
  position: absolute;
  top: -30px;
  left: 40%;
  z-index: 999;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--indigoblue);
  font-size: var(--font-14);
  padding: 100px;
  position: relative;
  margin-top: 100px;
}

.footer>.container {
  padding-right: 15px;
  padding-left: 15px;
}

/* ========== MISC ========== */
.not-set {
  color: var(--yellow);
  font-style: italic;
}

.grid-view th {
  white-space: nowrap;
}

.hint-block {
  display: block;
  margin-top: 5px;
  color: var(--gray);
}

.error-summary {
  color: #a94442;
  background: var(--white);
  border-left: 3px solid #eed3d7;
  padding: 10px 20px;
  margin: 0 0 15px 0;
}

.nav li>form>button.logout {
  padding-top: 7px;
  color: rgba(255, 255, 255, 0.5);
}

.nav>li>form>button.logout:focus,
.nav>li>form>button.logout:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

.nav>li>form>button.logout:focus {
  outline: none;
}

.form-group {
  margin-bottom: 1rem;
}


@media (min-width: 992px) and (max-width: 1200px) {



  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1200px;
  }

  .calendar-bg {
    top: 15px;
  }

  /* .box-icon {
    display: none !important;
  } */
}

@media(min-width:1200px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 100%;
  }

  .additional-links-item {
    width: 32.333%;
  }
}

@media (max-width: 768px) {

  .calendar-card {
    height: 250px;
  }

  .upcoming-event-day {
    font-size: 40px;
  }

  .first-block {
    flex-direction: column;
    height: auto;
  }

  .first-block-half {
    /* position: relative; */
    width: 80%;
    height: auto;
    padding: 1rem;
    justify-content: center;
    text-align: center;
    background: var(--indigoblue-50);
    border-radius: 20px;
    margin-inline: 10%;
    margin-top: 10%;
  }

  .first-block-half img {
    width: 70%;
    margin: 0 auto 1rem;
    display: none;
  }

  .university-branding p {
    font-size: 1rem;
    margin: 0.2rem 0;
    line-height: 20px;
    width: 100%;
    text-align: center;

  }

  .first-block video {
    height: 50vh;
    min-height: 200px;
  }

  .carousel .thumbnail {
    display: none;
  }

  .carousel .list .item .content .description {
    font-size: var(--font-22);
    font-weight: 100;
  }

  .carousel .list .item .content .title {
    font-size: var(--font-14);
    font-weight: 700;
  }

  .carousel .list .item .content {
    position: absolute;
    top: 20%;
    left: 60%;
    width: 1140px;
    max-width: 70%;
  }

  .block-header {
    width: 100%;
  }

  .block-header p {
    margin: 0;
    padding-block: 5px;
    font-weight: var(--font-700);
    font-size: var(--font-36);
    color: var(--white);
    width: 100%;
    text-align: center;
    background: var(--indigoblue);
    border-radius: 0px;
  }

  .carousel-faculty,
  .carousel-ranking {
    overflow: clip;
    width: 100%;
  }

  .news-block {
    width: 80%;
  }

  .box-img-rector {
    width: 80%;
  }

  .name-rector {
    font-size: 2em;

  }

  .rector-info-block {
    width: 80%;
  }

  .block-rector {
    flex-direction: column;
    gap: 30px;
  }

  .feedback-form-section {
    width: 80%;
    margin: 0 auto;
  }

  .block-select-btns {

    padding: 10px !important;
  }

  .admissionBtnLeft,
  .admissionBtnRight {
    font-size: medium;
    padding-block: 5px;
  }

  .dropdown-menu-header.active .dropdown-main-menu a,
  .dropdown-menu-header.active .dropdown-main-menu button {
    font-size: var(--font-16);
  }

  .dropdown-toggle-header img {
    height: 35px;
  }

  .lang-link {
    font-size: 10px !important;
    margin: inline 5px !important;
    ;

  }

  .social svg {
    width: 20px !important;
  }

  .dropdown-menu-social {
    gap: 10px;
  }

  .dropdown-menu-header.active .dropdown-menu-social p {
    margin: 0;
    font-size: var(--font-16) !important;
  }

  .dropdown-menu-header img {
    height: 35px;
    width: auto;
  }

  .dropdown-main-flex {
    margin-top: 20px !important;
  }

  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.university-info a,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.incoming a,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.student a,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.faculties a,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.graduate a,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.science a,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.science button,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.international-cooperation a {
    font-size: var(--font-16) !important;
    padding: 0;
  }

  .dropdown-menu-header.active .dropdown-menu-social.researchCenter .researchCenter,
  .dropdown-menu-header.active .dropdown-menu-social.DissertationCouncil .DissertationCouncil,
  .dropdown-menu-header.active .dropdown-menu-social.CompetitionsAndGrands .CompetitionsAndGrands,
  .dropdown-menu-header.active .dropdown-menu-social.Conferences .Conferences,
  .dropdown-menu-header.active .dropdown-menu-social.ResearchJobStudent .ResearchJobStudent {
    padding: 20px 5px 0 0;
    font-size: var(--font-16) !important;
  }

  element.style {}

  .dropdown-menu-header.active .dropdown-menu-social.researchCenter .researchCenter a,
  .dropdown-menu-header.active .dropdown-menu-social.DissertationCouncil .DissertationCouncil a,
  .dropdown-menu-header.active .dropdown-menu-social.CompetitionsAndGrands .CompetitionsAndGrands a,
  .dropdown-menu-header.active .dropdown-menu-social.Conferences .Conferences a,
  .dropdown-menu-header.active .dropdown-menu-social.ResearchJobStudent .ResearchJobStudent button {
    padding: 0 !important;
  }

  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.university-info,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.incoming,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.student,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.faculties,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.graduate,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.science,
  .dropdown-menu-header.active .dropdown-submenus .dropdown-submenu.international-cooperation {
    padding: 10px !important;
  }

  .dropdown-menu-header.active .dropdown-main-menu button,
  .dropdown-menu-header.active .dropdown-main-menu a {
    padding-inline: 0 5px !important;

  }

  .box-icon img {
    width: 20px;
    height: 20px;
  }

  .admission-slider-first-part {
    flex-direction: column;
    gap: 10px;

  }

  .admission-slider-first-part .block-admission {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    padding: 5px 10px;
    border-radius: 50px;
    width: 100%;
  }

  .person-section {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .person-info .person-info,
  .person-info .person-fio,
  .person-info .person-position {
    text-align: center !important;
  }

  .person-email .phone,
  .person-email .email {
    justify-content: center;

  }

  .logoBuketov {
    height: 30px !important;
  }

  .first-flex-faculty {
    width: 100%;
  }
}

/* ========== SCROLLBAR STYLES ========== */
.dropdown-main-menu,
.dropdown-submenus,
.researchCenter {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .25) transparent;
}

.dropdown-main-menu::-webkit-scrollbar-track,
.dropdown-submenus::-webkit-scrollbar-track,
.researchCenter::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-main-menu::-webkit-scrollbar-thumb,
.dropdown-submenus::-webkit-scrollbar-thumb,
.researchCenter::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .25);
  border-radius: 10px;
}

.dropdown-main-menu::-webkit-scrollbar,
.dropdown-submenus::-webkit-scrollbar,
.researchCenter::-webkit-scrollbar {
  width: 4px;
}