@font-face {
  font-family: "Roboto";
  src: url("/media/fonts/roboto/Roboto-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal; /* или italic, если шрифт наклонный */
}

@font-face {
  font-family: "Roboto";
  src: url("/media/fonts/roboto/Roboto-Regular.woff2") format("woff2");
  font-weight: normal; /* или числовое значение, например 400 */
  font-style: normal; /* или italic, если шрифт наклонный */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --blue: #1e90ff;
  --white: #ffffff;
  --color: #1d253a;
  --background: #eb6822;
  --background2: #d5d5d5;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%; /* Задаем высоту 100% для страницы */
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%; /* Контейнер занимает всю высоту страницы */
}

main {
  flex: 1; /* Главный контент растягивается */
}
.slick-prev {
  left: -40px;
}
.slick-next {
  right: -40px;
}
.slick-prev:before,
.slick-next:before {
  font-size: 40px;
  color: #eb6822;
}
.slick-prev,
.slick-next {
  width: initial;
}

.block__btn {
  background: var(--background);
  padding: 20px 40px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  position: relative; /* Обеспечивает относительное позиционирование */
  overflow: hidden;
  transition: all 0.3s ease; /* Плавный переход для всех изменяемых свойств */
}

/* Анимация при наведении */
.block__btn:hover {
  box-shadow: 0 8px 15px rgba(0, 80, 255, 0.3); /* Увеличенная тень */
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}
body {
  /* background-color: var(--blue);  */
  font-family: "Roboto";
  overflow-x: hidden;
  /* font-style: normal; */
}
.header {
  position: fixed;
  border-radius: 8px;
  height: 72px;
  left: 16px;
  right: 16px;
  top: 16px;
  /* padding: 0 12px 0 0; */
  background: rgb(249 249 249 / 90%);
  /* background: rgba(229, 235, 244, 0.8); */
  z-index: 10;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  padding: 0 10px;
}

.header-btn {
  height: 47px;
  display: flex;
  font-family: "Roboto";
  font-weight: bold;
  padding: 10px;
  background: var(--background);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* .header__login {
  height: 47px;
  display: flex;
  font-family: "Roboto";
  font-weight: bold;
  padding: 10px;
  align-items: center;
  background: var(--background);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
} */
.header-btn:hover {
  background: #ff5900;
}
.header__login-user {
  margin: 0 5px;
  font-size: 18px;
}
.logo {
  max-width: 165px;
  margin-right: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.nav a {
  color: inherit;
  font-weight: bold;
  font-size: 20px;
  padding: 12px 12px;
  transition: 0.3s ease;
}
.nav a:hover {
  background: #d9d5d5;

  border-radius: 8px;
}
.logo__img {
  width: 100%;
}
.fa-chevron-down.rotate {
  transition: 0.3s;
  transform: rotate(-180deg);
}
.splide__arrows {
  position: absolute;
  left: 0;
  display: none;
}
.splide__slide {
  background-size: cover;
  background-position: center;
  height: 500px; /* Задайте нужную высоту */
}
.category__wrapper {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: center;
}
.category {
  background-color: var(--background2);
  padding: 50px 0;
}
.category__container {
  max-width: 1900px;
  margin: 0 auto;
}
.category__right {
  position: relative;
  z-index: 1;
}
.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  margin: -15px; /* Создаем эффект ореола вокруг картинки */
  border-radius: 15px;
  /* background: radial-gradient(circle, rgba(255, 255, 255, 0.7), rgba(0, 0, 0, 0)); */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.category__right img {
  max-width: 900px;
  border-radius: 4px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3),
    /* Основная тень */ 0 0 30px rgba(0, 128, 255, 0.5),
    /* Цветной ореол */ inset 0 0 15px rgba(255, 255, 255, 0.5); /* Внутренний свет */
}
.splide__pagination {
  display: none;
}
.category__left {
  max-width: 666px;
}

.category__left-title {
  color: var(--color);
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 0 4px 10px hsla(0, 0%, 100%, 0.4);
}
.category__left-text {
  color: rgba(29, 37, 58, 0.9);
  text-shadow: 0 4px 10px hsla(0, 0%, 100%, 0.4);
  font-size: 20px;
  font-weight: normal;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 40px;
  line-height: 29px;
}
.news {
  /* background-image: url("/media//img/design/khaki.png"); 

  background-repeat: repeat;
  background-attachment: fixed;  */
  background: #f2f2f2;
  padding: 50px 0;
}
.directions {
  padding: 50px 0;
}
.title {
  text-align: center;
}
.title {
  color: var(--color);
  text-shadow: 0 4px 10px hsla(0, 0%, 100%, 0.4);
  text-transform: uppercase;
  /* font-size: 60px; */
  font-size: 33pt;
  font-weight: bold;
}
.direction__items {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}
.news__items,
.galery__items {
  display: flex;
  margin-top: 40px;
  gap: 30px;
  justify-content: center;
}
.news__item-title {
  /* color: hsla(0, 0%, 100%, 0.7); */
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  /* flex: 1; */
}
.video__item {
  position: relative;
  height: 255px !important;
  width: 450px !important;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
}

.video-preview {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
}

.play-button {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 50px;
  padding: 10px 20px;
  border-radius: 50%;
  transition: 0.1s ease-in;
}
.play-button:hover {
  color: #ff5900;
}
.play-button div {
  position: relative;
  left: 8px;
}
#galery {
  background-color: #f2f2f2;
}
.galery__item {
  position: relative;
  background-color: #fff;
  /* width: 327px !important;
  height: 250px !important; */
  display: flex;
  flex-direction: column;
  color: #000;
}
#galery .slick-slide {
  width: 327px !important;
  height: 250px !important;
  margin-right: 20px;
}
#galery .slick-slide div {
  width: 100%;
  height: 100%;
}
.galery__item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 4px;
}
#galery .slick-track {
  display: flex;
  justify-content: center;
}
.galery__item a {
  display: contents;
}
.news_item {
  position: relative;
  background-color: #fff;
  width: 327px;
  height: 415px;
  display: flex;
  flex-direction: column;
  color: #000;
  border-radius: 4px;
  overflow: hidden;
}
.direction__item {
  position: relative;
  background-color: #fff;
  width: 400px;
  height: 400px;
  display: flex;
  flex-direction: column;
  color: #000;
  /* border-radius: 4px; */
  /* overflow: hidden; */
}
.direction__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_item img {
  min-height: 200px;
  height: 200px;
  object-fit: cover;
}
.directions .news_item {
  /* height: initial; */
}
.news__item-text-wrapper {
  padding: 20px;
  /* padding-left: 0; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.news__date {
  /* color: hsla(0, 0%, 100%, 0.7); */
  font-size: 14px;
}
.contact {
  padding: 50px 0;
  /* background-color: #f2f2f2; */
  /* background-color: var(--background2); */
}
.contact__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}
.contact__right {
  width: 100%;
}
.contact__right form {
  display: flex;
  flex-direction: column;
}
.form__input {
  width: 100%;
  outline: none;
  padding: 10px;
  margin-bottom: 20px;
  background: transparent;
  border: 0;
  border-bottom: 3px solid var(--background);
}
.contact__right form input,
.contact__right form textarea {
  width: 100%;
  outline: none;
  padding: 10px;
  margin-bottom: 20px;
  background: transparent;
}
.contact__right form textarea {
  height: 227px;
  resize: none;
  border-color: var(--background);
  border-width: 3px;
}
.contact__right form input {
  border: 0;

  border-bottom: 3px solid var(--background);
}
.contact .title {
  text-align: center;
}
.contact__left {
  width: 50%;
  height: 470px;
  border-radius: 4px;
  overflow: hidden;
}
.contact__left img {
  height: 100%;
  /* object-fit: contain; */
}
.contact__right {
  width: 50%;
}
.form__btn {
  background: var(--background);
  outline: none;
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}
#responseMessage {
  margin-top: 10px;
  color: green;
  font-weight: 700;
}
.footer {
  background: #f2f2f2;
  /* color: #fff; */
}
.footer__logo-logo {
  max-width: 200px;
}
.footer {
  padding: 20px 0;
}
.footer .nav {
  padding-bottom: 20px;
  border-bottom: 1px solid black;
  margin-bottom: 20px;
}
.footer__logo-logo img {
  margin-bottom: 10px;
}
.footer__logo-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  align-items: center;
}
.footer__social-wrapper {
  display: flex;
  gap: 10px;
}
.footer__social-wrapper a {
  height: 48px;
  width: 48px;
}
.social-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-svg {
  width: 24px;
  height: 24px;
  fill: #000;
  transition: all 0.3s ease;
  fill: #fff;
}

/* Эффекты при наведении */
.social-icon:hover {
  transform: translateY(-3px);
}

/* Instagram hover effect */
.social-icon:nth-child(1) {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

}

/* YouTube hover effect */
.social-icon:nth-child(2) {
  background: #ff0000;

}

.social-icon:hover .social-svg {
  transform: scale(1.1);

}
.promo {
  margin-top: 110px;
  position: relative;
  background: #000;
}
.promo__background {
  position: relative;
  overflow: hidden;
}
/* Основной эффект */
/* .promo__background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      linear-gradient(
          45deg,
          rgba(0,0,0,0.8) 0%,
          rgba(0,0,0,0.4) 50%,
          rgba(0,0,0,0.8) 100%
      );
  z-index: 1;
} */

.promo__background img {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
  display: block;
  /* filter: 
      grayscale(30%)
      contrast(120%)
      brightness(80%); */
  /* transform: scale(1.05);
  transition: transform 0.7s ease; */
}

/* .promo__background:hover img {
  transform: scale(1.1);
} */

.promo__descr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.promo__descr h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 30px;
  /* text-shadow:
    1px 1px rgb(209, 145, 72),
    -1px 1px rgb(209, 138, 72),
    -1px -1px rgb(209, 134, 72),
    1px -1px rgb(209, 134, 72); */
  color: white;
}

/* Добавляем декоративный элемент */
.promo__descr h1::after {
  content: '[ГЕОТАКТИКА]';
  position: absolute;
  top: -60px;
  left: 30px;
  font-size: 2.5rem;
  color: #eb6822;
  letter-spacing: 5px;
  font-weight: 700;
  text-shadow: none;
}

.promo__descr p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  position: relative;
  margin-left: 30px;
}

/* Добавляем технический декор */
.promo__descr::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 4px;
  height: calc(100% + 100px);
  background: linear-gradient(
      to bottom,
      transparent,
      #eb6822,
      transparent
  );
}

/* Анимированные элементы */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.promo__background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      linear-gradient(90deg, 
          rgba(235, 104, 34, 0.1) 1px, 
          transparent 1px
      ) 0 0 / 50px 50px,
      linear-gradient(
          rgba(235, 104, 34, 0.1) 1px,
          transparent 1px
      ) 0 0 / 50px 50px;
  z-index: 2;
  animation: blink 3s infinite;
}

/* Добавляем координаты */
.promo__coordinates {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #eb6822;
  font-family: monospace;
  font-size: 0.9rem;
  opacity: 0.8;
  z-index: 3;
}

.promo__coordinates::before {
  content: 'LAT: 43°15′07″N';
  display: block;
  margin-bottom: 5px;
}

.promo__coordinates::after {
  content: 'LON: 76°57′14″E';
  display: block;
}

.videos {
  padding: 30px 0;
}
.videos .title {
  margin-bottom: 40px;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.videos__items .slick-track{
  display: flex;
  gap: 10px;
}
.videos__items .slick-track .slick-slide {
  overflow: hidden;
}
.modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 480px;
}

.close-modal-button {
  background: red;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
.direction__mark {
  position: absolute;
  bottom: 20px;
  left: 6%;
  color: #fff;
  font-weight: 700;
}
.direction__descr-wrapper {
  position: absolute;
  bottom: 0%;
  left: 0%;
  background: #00000078;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: 0.3s ease;
}
.direction__descr-wrapper div,
.direction__descr-wrapper a {
  margin-left: 15px;
  display: block;
}
.direction__descr-title {
  color: #ff5900;
  margin-bottom: 5px;
  font-weight: 600;
}
.direction__descr-text {
  line-height: 30px;
  color: #fff;
  margin-bottom: 10px;
}
.direction__descr-btn {
  color: #fff;
  background-color: #ff5900;
  width: fit-content;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.direction__item:hover .direction__descr-wrapper {
  opacity: 1;
}
/* Анимации */
.fade-enter,
.fade-leave {
  transition: opacity 0.2s ease;
}
.fade-enter-start,
.fade-leave-end {
  opacity: 0;
}
.fade-enter-end,
.fade-leave-start {
  opacity: 1;
}

/* 
.nav {
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.2s;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50;
  z-index: 99;
  background: white;
  color: black;
  list-style: none;
  padding-top: 1em;
  border-radius: 4px;
} */

.hamburger {
  display: none;
  position: relative;
  z-index: 100;
  padding: 2px;
  border: black solid 1px;
  background: white;
  cursor: pointer;
  border-radius: 4px;
}
.closeIcon {
  display: none;
}

.showMenu {
  transform: translateY(0);
}
.system {
  padding-top: 50px;
}
.requirments__wrapper {
  padding-top: 30px;
  padding-bottom: 50px;
  display: flex;
  gap: 15px;
  justify-content: center;
  width: 100%;
  align-items: center;
  /* max-width: 800px; */
  margin: 0 auto;
}
.requirments__wrapper img {
  max-width: 680px;
}
.requirments__text {
  /* line-height: 56px; */
  line-height: 35px;
  font-size: 19px;
}
.inner__section-wrapper {
  padding: 130px 0;
  max-width: 1200px;
}

.news__items .slick-slide {
  display: flex !important;
  justify-content: center;
}
.inner__section-wrapper p,
.inner__section-wrapper li {
  line-height: 27px;
}
.inner__section-wrapper img {
  max-width: 600px;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle-btn {
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-toggle-btn:hover {
  /* background: linear-gradient(145deg, #f17a3a, #eb6822);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(235, 104, 34, 0.3); */
}

.dropdown-toggle-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown-toggle-btn.show i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 180px;
  background: white;
  border-radius: 12px;
  padding: 8px;
  /* Улучшенный объемный эффект */
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 8px 24px rgba(235, 104, 34, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(235, 104, 34, 0.1);
  /* Добавляем легкий градиент для большей объемности */
  background: linear-gradient(145deg, #ffffff, #fafafa);
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  /* Добавляем более выраженную тень при открытии */
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.12),
    0 4px 8px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 12px 28px rgba(235, 104, 34, 0.1);
}

/* Улучшаем эффект стрелочки */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #ffffff, #fafafa);
  transform: rotate(45deg);
  border-left: 1px solid rgba(235, 104, 34, 0.1);
  border-top: 1px solid rgba(235, 104, 34, 0.1);
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.03);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dropdown-item i {
  font-size: 16px;
  color: #eb6822;
}

.dropdown-item:hover {
  background: rgba(235, 104, 34, 0.1);
  color: #eb6822;
  transform: translateX(4px);
}

.btn-text {
  font-size: 15px;
  font-weight: 600;
}

#directions, #news, #videos, #galery, #contact, #system {
  scroll-margin-top: 100px;
}