body {
  font-family: "Inter", sans-serif;
  background-color: #fdfdfb;
  overflow-x: hidden;
  position: relative;
}
.hero-with-video {
  position: relative;
  height: 930px;
  overflow: hidden;
}

.background-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-header {
  height: 86px;
}

/* Остальные блоки */
.custom-navbar,
.hero-section {
  position: relative;
  z-index: 1;
}
/* Навбар поверх видео */
.custom-navbar {
  position: relative; /* или absolute */
  z-index: 1;
  background-color: transparent !important;
}

.custom-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;

  width: 100%;
  box-sizing: border-box;
  background: transparent !important;
}

@font-face {
  font-family: "Cygre SemiBold";
  src: url("../fonts/cygre-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Cygre light";
  src: url("../fonts/cygre-light.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

.custom-nav-link {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #153e64;
}

 .lang {
  font-size: 20px;
  background: linear-gradient(90deg, #74b2f0, #19b8ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-nav-project {
  position: relative;
  padding: 18px 50px !important;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #153e64;
  border: none;
  cursor: pointer;
  z-index: 0;
  overflow: visible;
}

.custom-nav-project::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  border-radius: 100px;
  padding: 3px; /* толщина бордера */
  background: linear-gradient(90deg, #74b2f0, #19b8ca);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.offcanvas-top {
  height: 300px !important;
  max-height: 300px !important;
  overflow-y: auto;
}
/* Оффканвас ссылки */
.offcanvas-top .nav-link {
  display: inline-block;
  width: auto;
  padding: 7px 20px !important;
  font-size: 22px;
  font-weight: 500;
  color: #153e64;
}

/* Центровка списка */
.offcanvas-top .navbar-nav {
  align-items: center;
}

.hero-section {
  padding-top: 136px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: "Cygre SemiBold";
  font-weight: 700;
  font-size: 120px;
  line-height: 100px;
  color: #153e64;
  text-align: center;
}

.hero-subtitle {
  font-family: "Cygre light";
  font-style: normal;
  font-size: 40px;
  line-height: 100px;
  color: #153e64;
  margin-top: 30px;
  margin-bottom: 64px;
}

.gradient-text {
  background: linear-gradient(172.21deg, #74b2f0, #19b8ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.project_btn {
  padding: 23px 94.5px;
  background: linear-gradient(132.21deg, #74b2f0 0%, #19b8ca 100%);
  border-radius: 100px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #fffefd;
  text-decoration: none;
  margin-bottom: 198px;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100vw;
  position: relative;
  margin-top: 198px;
  margin-bottom: 150px;
}

.marquee {
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-left 12s linear infinite;
  will-change: transform;
}

.marquee.reverse .marquee-track {
  animation: marquee-right 12s linear infinite;
}

.marquee-block {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  border: 1px solid rgba(116, 178, 240, 0.5);
  border-radius: 100px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: rgba(116, 178, 240, 0.5);
  white-space: nowrap;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.services-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 55px;
  line-height: 100%;
  align-items: center;
  color: #153e64;
  margin-top: 150px;
  margin-bottom: 100px;
}

.blue-text {
  color: #74b2f0;
}

.services-subtitle {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  color: #153e64;
  margin-bottom: 100px;
}

.services-left {
  position: relative;
  height: 500px;
  /* Убираем фон с основного блока */
  background-image: none;
  color: white;
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
  padding-top: 16px;
}

.services-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120px; /* сдвигаем влево за пределы блока */
  width: 515px; /* подбираешь под размер снежинки */
  height: 515px;
  background-image: url("../img/screw.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none; /* чтобы не мешала кликам */
}

.services-phrase {
  margin: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
  display: flex;
  align-items: center;
  color: #153e64;
}

.about-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 55px;
  line-height: 64px;
  color: #153e64;
  margin-top: 150px;
  margin-bottom: 100px;
}

.under-about-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 55px;
  line-height: 64px;
  color: #153e64;
  margin-top: 100px;
  margin-bottom: 100px;
}

.my-accordion {
  padding-left: 1rem;
}

.my-accordion-header {
  margin-bottom: 0px !important;
}

.my-accordion-item {
  border-left: 3px solid #143a64 !important;
  padding-left: 15px;
  margin: 0;
  transition: border-color 0.3s;
}

.my-accordion-button {
  background: #fdfdfb;
  border: none !important;
  box-shadow: none !important;
  color: #143a64;
  font-size: 40px;
  font-weight: 500;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.my-accordion-button::after {
  display: none;
}

.accordion-item,
.accordion-button {
  border-top: 0px !important;
  border-bottom: 0px !important;
  border-right: 0px !important;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.accordion-button:not(.collapsed) {
  background-color: #fdfdfb !important;
}

.plus-icon {
  display: inline-block;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  position: relative;
  margin-left: 1rem;
}

.plus-icon::before,
.plus-icon::after {
  content: "";
  position: absolute;
  background-color: #143a64;
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s, transform 0.3s;
}

.plus-icon::after {
  transform: rotate(90deg);
  transform-origin: center;
}

.accordion-button:not(.collapsed) .plus-icon::after {
  transform: scaleX(0);
}

.my-accordion-body {
  padding: 0 0 16px 0;
  color: #143a64;
  font-size: 20px;
  background: #fdfdfb;
}

.my-accordion-item.active .my-accordion-button {
  color: #143a64;
}

.my-accordion-item.inactive .my-accordion-button {
  color: #9aa3aa !important;
}

.my-accordion-item.inactive .plus-icon::before,
.my-accordion-item.inactive .plus-icon::after {
  background-color: #9aa3aa !important;
}

.my-accordion-item.active {
  border-left: 3px solid #74b2f0 !important; /* Новый активный цвет */
}

.my-accordion-item.active .plus-icon::before {
  background-color: #74b2f0 !important;
}

.my-accordion-item.active .plus-icon::after {
  transform: scaleX(0);
  background-color: #0044cc !important;
}

.my-accordion-item.inactive {
  border-left: 3px solid #ccc !important;
}

.why-us-item {
  background: #fdfdfb;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0px 20px;
}

/* Картинки */
.img-wrapper {
  position: relative;
  width: 100%;
  height: 370px; /* верни сюда нужную высоту */
  overflow: hidden;
  margin-bottom: 30px;
}
.img-wrapper img.img-default,
.img-wrapper img.img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.second-description {
  margin-bottom: 10px;
}
.img-wrapper img.img-default {
  opacity: 1;
  z-index: 1;
}
.img-wrapper img.img-hover {
  opacity: 0;
  z-index: 2;
}
.why-us-item.hovering .img-wrapper img.img-default {
  opacity: 0;
}
.why-us-item.hovering .img-wrapper img.img-hover {
  opacity: 1;
}

/* Заголовок */
.why-us-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 36px;
  color: #153e64;
  transition: color 0.3s ease;
}

/* Описание */
.hover-description {
  opacity: 0;
  transform-origin: top;
  transform: scaleY(0);
  margin-top: 1rem;
  font-size: 20px;
  line-height: 30px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  color: #74b2f0;
  transition: transform 0.6s ease, opacity 0.6s ease, color 0.3s ease;
  overflow: hidden;
}

/* Появление текста */
.why-us-item.hovering .hover-description {
  opacity: 1;
  transform: scaleY(1);
}

/* Перекраска после полной анимации */
.why-us-item.ready .why-us-title {
  color: #74b2f0;
}
.why-us-item.ready .hover-description {
  color: #153e64;
}

.contacts-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  color: #fffefd;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 15px;
}

.custom-container-contacts {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  /* padding-left: 240px;
  padding-right: 240px; */
  width: 100%;
  box-sizing: border-box;
}

.contacts-section {
  /* background: linear-gradient(132.21deg, #74b2f0 0%, #19b8ca 100%); */
  background-image: url("../img/back_contacts.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.contacts-left {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-left: 240px;
  padding-bottom: 60px;
}

.contacts-right {
  position: relative;
  z-index: 1;
  background: linear-gradient(132.21deg, #74b2f0 0%, #19b8ca 100%);
  box-shadow: -30px 0px 40.1px rgba(15, 11, 51, 0.15);
  border-radius: 30px 0px 0px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */
  padding: 60px 240px 60px 120px;
  /* gap: 10px; */
}

.contacts-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;

  color: #fffefd;
}

.contacts-title-second {
  margin-top: 45px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #fffefd;
}

.contacts-list a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  color: #fffefd;
  text-decoration: none;
  list-style: none;
}

.contacts-list li {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  color: #fffefd;
  text-decoration: none;
  list-style: none;
  margin-bottom: 12px;
}

.contacts_button {
  background-color: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
}

.Necessarily-label {
  margin-top: 10px;
  font-size: 14px;
  color: #475569;
}

.download {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #fffefd;
  margin-top: 75px;
}

.send {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #153e64;
  text-decoration: none;
}

.send-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.privacy-text {
  font-size: 14px;
  color: #153e64;
  /*max-width: 300px;*/
  line-height: 1.4;
}

.download-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 82px;
  background: #153e64;
  border-radius: 55px;
  color: #fffefd;
  font-weight: 500;
  font-size: 25px;
  max-height: 60px;
  text-decoration: none;
}

.send-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 21px 82px;
  background: linear-gradient(137.63deg, #f6da66 3.09%, #f3c37f 96.91%);
  border-radius: 55px;
  border-color: #f6da66;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 64px;
  color: #153e64;
  min-width: 380px;
  max-height: 60px;
  /* margin-top: 40px; */
}

.right-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #153e64;
}

.form-control {
  border-radius: 20px;
  min-height: 65px;
}

.custom-form-control {
  height: 120px;
  min-height: 120px !important;
  /* min-width: 705px; */
  margin-bottom: 74px;
}
.custom-footer {
  background-image: url("../img/footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 240px;
  box-sizing: border-box;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px 10px;
  /* max-width: 960px; */
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-service-btn {
  padding: 15px 17px;
  background-color: inherit;
  /* border-image: linear-gradient(137.63deg, #f6da66 3.09%, #f3c37f 96.91%) 1; */
  border: 3px solid #f6da66;
  border-radius: 55px !important;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  color: #f6da66;
  white-space: normal;
  text-decoration: none;
  cursor: pointer;
}

.footer-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 81px;
  padding-bottom: 60px;
  background-color: transparent; /* поменяешь если нужно */
  gap: 30px;
  flex-wrap: wrap;
}

.footer-info-row a {
  color:#fffefd;
      /*color: #74b2f0;*/
  text-decoration: none;
}

.footer-info-row .policy {
  color: #74b2f0;
}

.footer-info-row .policy a{
  color: #74b2f0;
}

.footer-map-wrapper {
    margin-bottom: 30px;
    margin-top: 30px;
}

.footer-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

.logo-footer {
  height: 190px;
}

.telegram {
  width: 30px;
  margin-right: 5px;
}

.footer-info-block {
  flex: 1 1 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 25px;
}

.iti {
  width: 100%;
  font-size: 14px;
}

.iti--allow-dropdown input {
  padding-left: 50px !important;
  color: #212529; /* тёмный текст */
  background-color: #fff;
  height: 65px;
  /* border: 1px solid #ced4da; */
  border-radius: 20px;
}

.iti__country-name {
  font-size: 14px;
  max-height: 250px;
  overflow-y: auto;
  background-color: #fff;
  color: #212529;
  /* border: 1px solid #ced4da; */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); */
  z-index: 10000;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background-color: #f8f9fa;
}

.iti__flag-container {
  background-color: transparent;
}

#telephone_contacts::placeholder {
  color: #6c757d;
}

@media (max-width: 1200px) {
  .custom-footer { 
    padding: 60px 80px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 56px;
  }

  .hero-title {
    font-size: 62px;
    line-height: 70px;
  }

  .hero-subtitle {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-with-video {
    height: 900px;
  }

  .marquee-block {
    padding: 8px 30px;
  }

  .marquee-wrapper {
    margin-top: 115px;
  }

  .services-left {
    padding-top: 0px;
    height: auto;
    margin-bottom: 20px;
  }

  .services-left::before {
    /* background-image: none; */
    left: -60px;
    width: 300px;
    height: 300px;
  }
  .my-accordion-item {
    background: transparent;
  }
  .my-accordion-button {
    background: transparent;
  }

  .accordion-button:not(.collapsed) {
    background-color: transparent !important;
  }

  .services-phrase {
    margin-top: 20px;
    font-size: 30px;
    line-height: 36px;
  }

  .services-title {
    font-size: 40px;
    line-height: 44px;
    margin-top: 0px;
    margin-bottom: 60px;
  }

  .services-subtitle {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 60px;
  }

  .my-accordion-button {
    font-size: 24px;
    line-height: 30px;
  }

  .my-accordion {
    padding-left: 0px;
  }

  .plus-icon {
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
  }

  .contacts-section {
    background: linear-gradient(132.21deg, #74b2f0 0%, #19b8ca 100%);
  }
  .contacts-left {
    padding: 20px 20px;
  }

  .contacts-right {
    padding: 20px 15px;
    border-radius: 0px;
    box-shadow: none;
  }

  .custom-form-control {
    /* min-width: 400px; */
  }

  .custom-footer {
    padding: 0px 20px;
  }

  .logo-footer {
    height: 100px;
  }

  .card {
    background-color: #fdfdfb !important;
    /* min-height: 830px;
    height: 830px; */
    border: none;
  }
  .hover-description {
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    transform: none !important;
  }
  .carousel-inner {
    max-height: 900px;
  }

  .under-about-title {
    margin-top: 60px;
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 60px;
  }

  .about-title {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 60px;
  }

  .send-btn {
    font-size: 18px;
    line-height: 64px;
    min-width: 0px;
    padding: 21px 40px;
  }

  .contacts-title {
    font-size: 30px;
    line-height: 36px;
  }

  .contacts-title-second {
    font-size: 20px;
    line-height: 24px;
  }

  .contacts-list a {
    font-size: 20px;
    line-height: 24px;
  }

  .contacts-list li {
    font-size: 20px;
    line-height: 24px;
  }

  .contacts-list {
    gap: 10px;
  }

  .download {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #fffefd;
    margin-top: 0px;
  }

  .download-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 21px 40px;
    background: #153e64;
    border-radius: 55px;
    color: #fffefd;
    font-weight: 500;
    font-size: 18px;
    max-height: 60px;
  }

  .footer-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px;
  }

  .footer-service-btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 10px;
  }

  /* Контакты: по центру и аккуратно */
  .footer-info-row {
    flex-direction: row;
    align-items: center !important;
    text-align: center;
    gap: 8px;
  }

  .footer-info-block {
    width: 100%;
    text-align: center !important;
    margin-bottom: 5px;
  }

  .footer-info-block img {
    margin-right: 6px;
  }

  /* Логотип: не растягивать */
  .logo-footer {
    max-width: 140px;
    height: auto;
  }

  /* Политика и копирайт: в колонку, по центру */
  .footer-info-row .policy {
    font-size: 12px;
    line-height: 1.4;
  }
  /* Почта и телефон поменьше */
  .footer-info-row .footer-info-block {
    font-size: 13px;
  }

  /* Логотип побольше */
  .logo-footer {
    max-width: 220px;
    height: auto;
  }

  /* Последняя строка: политика слева, копирайт справа */
  .footer-info-row:last-of-type {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: center;
    gap: 0;
    /* padding: 0 10px; */
  }

  .footer-info-row:last-of-type .footer-info-block {
    width: auto;
    font-size: 12px;
    white-space: nowrap;
  }

  /* Центровка кнопок "Телеграм" */
  .footer-info-block img {
    vertical-align: middle;
  }
  .telegram {
    width: 20px;
  }

  .footer-info-row {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
@media (max-width: 400px) {
  .logo-header {
    height: 60px;
  }

  .hero-title {
    font-size: 55px;
    line-height: 56px;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 44px;
  }

  .project_btn {
    font-size: 18px;
    line-height: 22px;
    padding: 18px 61px;
  }

  .marquee-wrapper {
    margin-top: 198px;
    margin-bottom: 100px;
  }
  .card {
    /* min-height: 870px;
    height: 870px; */
  }
  .custom-form-control {
    margin-bottom: 20px;
  }

  .download-row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .download-row a.download-btn,
  .send-btn {
    margin-bottom: 10px;
  }
  .footer-info-row {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 8px;
  }

  .contacts-right {
    padding: 20px 20px;
  }

  .services-title {
    font-size: 30px;
    line-height: 36px;
  }

  .services-subtitle {
    font-size: 20px;
    line-height: 24px;
  }

  .my-accordion-button {
    font-size: 20px;
    line-height: 24px;
  }

  .my-accordion-body {
    font-size: 16px;
  }

  .plus-icon {
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
  }

  .about-title {
    font-size: 30px;
    line-height: 36px;
  }

  .why-us-title {
    font-size: 30px;
    line-height: 36px;
  }

  .hover-description {
    font-size: 20px;
    line-height: 24px;
  }

  .under-about-title {
    font-size: 30px;
    line-height: 36px;
  }

  .contacts-title {
    font-size: 30px;
    line-height: 36px;
  }
}
.send {
    position: relative;
    z-index: 1;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    z-index: -1;
}

.cookie {
    display: none; /* скрыта по умолчанию, показывается через JS */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 750px;
    width: 90%;
    background-color: #ffffff;
    color: #153e64;
    border: 2px solid #74b2f0;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: Arial, sans-serif;
    z-index: 9999;
}

/* Текст и ссылка */
.cookie__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.cookie__text a {
    color: #74b2f0;
    text-decoration: underline;
}

/* Кнопка */
.cookie__button {
    background-color: #153e64;
    color: #ffffff;
    border: 2px solid #74b2f0;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie__button:hover {
    background-color: #74b2f0;
    color: #153e64;
    transform: scale(1.05);
}

/* ПЛАНШЕТНАЯ ВЕРСИЯ (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  /* 1. HERO СЕКЦИЯ - увеличиваем интервалы */
  .hero-with-video {
    height: 820px;
  }
  
  .hero-section {
    padding-top: 90px;
  }
  
  .hero-title {
    font-size: 82px;
    line-height: 87px;
    margin-bottom: 25px;
  }
  
  .hero-subtitle {
    font-size: 32px;
    line-height: 42px;
    margin-top: 25px;
    margin-bottom: 60px;
  }
  
  .project_btn {
    padding: 22px 75px;
    font-size: 19px;
    margin-bottom: 160px;
  }
  
  /* 2. МАРКЕР - больше отступов */
  .marquee-wrapper {
    margin-top: 130px;
    margin-bottom: 110px;
  }
  
  .marquee-block {
    padding: 10px 25px;
    font-size: 17px;
    gap: 25px;
  }
  
  /* 3. УСЛУГИ - больше воздуха */
  .services-title {
    font-size: 48px;
    line-height: 54px;
    margin-top: 110px;
    margin-bottom: 80px;
  }
  
  .services-subtitle {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 80px;
    line-height: 1.4;
  }
  
  /* 4. АККОРДЕОН - больше интервалов */
  .services-left {
    height: 420px;
    padding-top: 20px;
    margin-bottom: 30px;
  }
  
  .services-left::before {
    left: -70px;
    width: 380px;
    height: 380px;
    top: -10px;
  }
  
  .services-phrase {
    font-size: 30px;
    line-height: 38px;
    padding-right: 20px;
  }
  
  .my-accordion-button {
    font-size: 30px;
    line-height: 38px;
    padding: 16px 0;
  }
  
  .plus-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    margin-left: 25px;
  }
  
  .my-accordion-body {
    font-size: 19px;
    line-height: 1.5;
    padding-bottom: 16px;
    padding-right: 20px;
  }
  
  /* 5. КАРТОЧКИ WHY US - больше интервалов */
  .why-us-item {
    height: 100%;
    min-height: 620px;
    padding: 0 25px;
    border-radius: 25px;
  }
  
  .img-wrapper {
    height: 300px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
  }
  
  .why-us-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  
  .hover-description {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 25px;
  }
  
  .second-description {
    margin-bottom: 20px;
  }
  
  /* Увеличиваем отступы между блоками услуг */
  .custom-container.container.mt-5 {
    margin-top: 70px !important;
  }
  
  /* 6. КОНТАКТЫ - больше интервалов */
  .contacts-left {
    padding: 90px 50px 50px;
  }
  
  .contacts-right {
    padding: 50px 70px 50px 50px;
    border-radius: 25px 0 0 25px;
  }
  
  .contacts-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 25px;
  }
  
  .contacts-title-second {
    font-size: 28px;
    line-height: 36px;
    margin-top: 35px;
  }
  
  .contacts-list {
    gap: 20px;
  }
  
  .contacts-list a,
  .contacts-list li {
    font-size: 26px;
    line-height: 34px;
  }
  
  .download {
    font-size: 18px;
    margin-top: 50px;
    line-height: 1.4;
  }
  
  .download-btn,
  .send-btn {
    padding: 20px 55px;
    font-size: 21px;
    line-height: 1.3;
    border-radius: 60px;
  }
  
  .send-btn {
    min-width: 350px;
  }
  
  .send-row {
    margin-top: 50px;
    gap: 25px;
  }
  
  .custom-form-control {
    min-height: 110px;
    margin-bottom: 60px;
    border-radius: 25px;
  }
  
  .form-control {
    border-radius: 25px;
    padding: 20px;
  }
  
  /* 7. ФУТЕР - больше интервалов */
  .custom-footer {
    padding: 50px 70px;
  }
  
  .footer-wrapper {
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .footer-service-btn {
    font-size: 20px;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 60px !important;
    border-width: 4px;
  }
  
  /* 8. ИНФОРМАЦИОННЫЙ БЛОК ФУТЕРА */
  .row.align-items-start.align-items-md-center {
    margin-bottom: 50px;
    gap: 30px;
  }
  
  .logo-footer {
    height: 170px;
    max-width: 90%;
  }
  
  .footer-text-content {
    font-size: 16px;
    line-height: 1.5;
    padding-left: 40px !important;
  }
  
  .footer-text-content .mb-2 {
    margin-bottom: 10px !important;
  }
  
  /* 9. НИЖНИЙ РЯД ФУТЕРА */
  .footer-info-row {
    padding: 35px 0;
    gap: 25px;
    flex-wrap: nowrap;
  }
  
  .footer-info-block {
    font-size: 20px;
    padding: 0 15px;
  }
  
  .footer-info-block.policy-block {
    order: 1;
    text-align: left !important;
    flex: 1.2;
  }
  
  .footer-info-block.email-block {
    order: 2;
    text-align: center !important;
    flex: 1;
    padding: 10px 20px;
    /*background: rgba(255, 255, 255, 0.1);*/
    /*border-radius: 15px;*/
    margin: 0 10px;
  }
  
  .footer-info-block.copyright-block {
    order: 3;
    text-align: right !important;
    flex: 1.2;
  }
  
  /* 10. CAROUSEL */
  .carousel-inner {
    max-height: 750px;
  }
  
  .card {
    min-height: 700px;
    padding: 30px;
    border-radius: 25px;
  }
  
  /* 11. НАВБАР */
  .custom-nav-link {
    font-size: 22px;
  }
  
  .custom-nav-project {
    padding: 18px 40px !important;
    font-size: 19px;
  }
  
  .navbar-nav.gap-3.gap-lg-5 {
    gap: 25px !important;
  }
  
  /* 12. ABOUT ЗАГОЛОВКИ */
  .about-title,
  .under-about-title {
    font-size: 48px;
    line-height: 54px;
    margin-top: 90px;
    margin-bottom: 80px;
  }
  
  /* 13. ДОПОЛНИТЕЛЬНЫЕ ОТСТУПЫ ДЛЯ СЕКЦИЙ */
  .services-section {
    padding-bottom: 50px;
  }
  
  .about-section {
    padding-bottom: 50px;
  }
  
  /* 14. УВЕЛИЧИВАЕМ МЕЖСТРОЧНЫЙ ИНТЕРВАЛ ВО ВСЕХ ТЕКСТАХ */
  p, li, div {
    line-height: 1.5;
  }
  
  /* 15. ОТСТУПЫ МЕЖДУ ЭЛЕМЕНТАМИ В СПИСКАХ */
  .list-unstyled.mb-0 li {
    margin-bottom: 12px;
  }
}

/* ДОПОЛНИТЕЛЬНО ДЛЯ ПЛАНШЕТОВ В ПОРТРЕТНОЙ ОРИЕНТАЦИИ (768px - 850px) */
@media (min-width: 768px) and (max-width: 850px) and (orientation: portrait) {
  .hero-title {
    font-size: 74px;
    line-height: 80px;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 28px;
    line-height: 36px;
    margin-top: 20px;
    margin-bottom: 50px;
  }
  
  .services-left::before {
    left: -50px;
    width: 320px;
    height: 320px;
    top: -5px;
  }
  
  .services-phrase {
    font-size: 26px;
    line-height: 34px;
  }
  
  .my-accordion-button {
    font-size: 26px;
    line-height: 34px;
  }
  
  .contacts-left {
    padding: 70px 40px 40px;
  }
  
  .contacts-right {
    padding: 40px 50px 40px 40px;
  }
  
  .footer-text-content {
    font-size: 15px;
    padding-left: 30px !important;
  }
  
  .logo-footer {
    height: 140px;
  }
  
  .footer-info-block.email-block {
    padding: 8px 15px;
    font-size: 18px;
  }
}

/* ДЛЯ ПЛАНШЕТОВ В АЛЬБОМНОЙ ОРИЕНТАЦИИ (850px - 991px) */
@media (min-width: 851px) and (max-width: 991px) and (orientation: landscape) {
  .hero-with-video {
    height: 880px;
  }
  
  .hero-title {
    font-size: 88px;
    line-height: 95px;
    margin-bottom: 30px;
  }
  
  .hero-subtitle {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 70px;
  }
  
  .services-left {
    height: 480px;
  }
  
  .services-left::before {
    left: -90px;
    width: 420px;
    height: 420px;
    top: -15px;
  }
  
  .img-wrapper {
    height: 340px;
    margin-bottom: 35px;
  }
  
  .why-us-item {
    min-height: 680px;
    padding: 0 30px;
  }
  
  .footer-info-block.email-block {
    padding: 12px 25px;
    font-size: 22px;
  }
}
/* CONTACTS SECTION - исправляем для размеров 951-1600px */

/* Для средних десктопов (992px - 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .contacts-left {
    padding-top: 100px !important;
    padding-left: 100px !important;
    padding-right: 50px !important;
    padding-bottom: 40px !important;
  }
  
  .contacts-right {
    padding: 40px 60px 40px 60px !important;
    border-radius: 20px 0 0 20px !important;
  }
  
  .contacts-title {
    font-size: 32px !important;
    line-height: 40px !important;
    margin-bottom: 15px !important;
  }
  
  .contacts-title-second {
    font-size: 24px !important;
    line-height: 30px !important;
    margin-top: 30px !important;
  }
  
  .contacts-list a,
  .contacts-list li {
    font-size: 22px !important;
    line-height: 28px !important;
  }
  
  .contacts-list {
    gap: 12px !important;
  }
  
  .download {
    font-size: 16px !important;
    margin-top: 40px !important;
    margin-bottom: 15px !important;
  }
  
  .download-btn,
  .send-btn {
    padding: 15px 40px !important;
    font-size: 18px !important;
    border-radius: 50px !important;
  }
  
  .download-btn {
    max-height: 55px !important;
  }
  
  .send-btn {
    min-width: 280px !important;
    max-height: 55px !important;
    padding: 16px 40px !important;
  }
  
  .custom-form-control {
    min-height: 100px !important;
    margin-bottom: 40px !important;
  }
  
  .form-control {
    min-height: 55px !important;
    padding: 12px 15px !important;
  }
}

/* Для больших десктопов (1201px - 1400px) */
@media (min-width: 1201px) and (max-width: 1400px) {
  .contacts-left {
    padding-top: 120px !important;
    padding-left: 150px !important;
    padding-right: 80px !important;
    padding-bottom: 50px !important;
  }
  
  .contacts-right {
    padding: 50px 100px 50px 80px !important;
    border-radius: 25px 0 0 25px !important;
  }
  
  .contacts-title {
    font-size: 36px !important;
    line-height: 44px !important;
    margin-bottom: 20px !important;
  }
  
  .contacts-title-second {
    font-size: 26px !important;
    line-height: 32px !important;
    margin-top: 35px !important;
  }
  
  .contacts-list a,
  .contacts-list li {
    font-size: 26px !important;
    line-height: 32px !important;
  }
  
  .download {
    font-size: 18px !important;
    margin-top: 50px !important;
  }
  
  .download-btn,
  .send-btn {
    padding: 16px 50px !important;
    font-size: 20px !important;
  }
  
  .send-btn {
    min-width: 320px !important;
  }
  
  .custom-form-control {
    min-height: 110px !important;
    margin-bottom: 50px !important;
  }
}

/* Для очень больших десктопов (1401px - 1600px) */
@media (min-width: 1401px) and (max-width: 1600px) {
  .contacts-left {
    padding-top: 130px !important;
    padding-left: 180px !important;
    padding-right: 100px !important;
    padding-bottom: 55px !important;
  }
  
  .contacts-right {
    padding: 55px 120px 55px 100px !important;
    border-radius: 28px 0 0 28px !important;
  }
  
  .contacts-title {
    font-size: 38px !important;
    line-height: 46px !important;
  }
  
  .contacts-title-second {
    font-size: 28px !important;
    line-height: 34px !important;
  }
  
  .contacts-list a,
  .contacts-list li {
    font-size: 28px !important;
    line-height: 34px !important;
  }
  
  .download {
    font-size: 19px !important;
    margin-top: 60px !important;
  }
  
  .download-btn,
  .send-btn {
    padding: 18px 60px !important;
    font-size: 22px !important;
  }
  
  .send-btn {
    min-width: 340px !important;
  }
  
  .custom-form-control {
    min-height: 115px !important;
    margin-bottom: 60px !important;
  }
}

/* Также добавим для экранов между планшетом и десктопом (951px - 991px) */
@media (min-width: 951px) and (max-width: 991px) {
  .contacts-left {
    padding-top: 80px !important;
    padding-left: 60px !important;
    padding-right: 40px !important;
    padding-bottom: 40px !important;
  }
  
  .contacts-right {
    padding: 40px 50px 40px 40px !important;
    border-radius: 20px 0 0 20px !important;
  }
  
  .contacts-title {
    font-size: 30px !important;
    line-height: 38px !important;
  }
  
  .contacts-title-second {
    font-size: 22px !important;
    line-height: 28px !important;
    margin-top: 25px !important;
  }
  
  .contacts-list a,
  .contacts-list li {
    font-size: 20px !important;
    line-height: 26px !important;
  }
  
  .download {
    font-size: 15px !important;
    margin-top: 30px !important;
  }
  
  .download-btn,
  .send-btn {
    padding: 14px 35px !important;
    font-size: 17px !important;
  }
  
  .send-btn {
    min-width: 250px !important;
  }
  
  .custom-form-control {
    min-height: 90px !important;
    margin-bottom: 35px !important;
  }
}

