html, body {
  background-color: #eff1f4;
  height: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
    margin:0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.4;
    font-size: 1.2vw;
    /*image-rendering: optimizeSpeed;
    text-rendering: optimizeSpeed;*/
    overflow-x: hidden;
}

@media (max-width: 1260px) {
  body {
    line-height: 1.6;
    font-size: 2vw;
  }
}
@media (max-width: 800px) {
  body {
    font-size: 3.2vw;
  }
}
h1, h2, h3, h4, h5, h6 {
    /*! font-size: 2.5vw; */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: bold;
    margin: 0;
    padding: 0;
}
a, button, input {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;

}
.h2 {
  text-align: center;
  margin: 3vw 0 3vw;
  font-weight: bold;
  font-size: 2.8vw;
  color: #122059;
  position: relative;
}

.h2::after {
  content: '';
  display: block;
  width: 8vw;
  height: 0.3vw;
  background: #96D4FF;
  margin: 0.7vw auto 0;
  border-radius: 0.2vw;
}
@media (max-width: 1260px) {
  .h2::after {
    width: 16vw;
    height: 0.6vw;
  }
}
.h2m {
  font-size: 2.8vw;
  font-weight: bold;
  color: #122059;
  margin: 0 auto 2.8vw;
  /*! max-width: 85%; */
  line-height: 1.3;
}
@media (max-width: 1260px) {
  .h2, .h2m { font-size: 5vw; margin: 0 auto 5vw; }
  .box_services .list { gap: 2.5vw; }
  .box_services .list a { 
    max-width: none;
    padding: 2.2vw 2vw;
  }
  .box_services img { width: 8vw; height: 8vw; }
  .box_services .name { font-size: 2.2vw; }
}
@media (max-width: 800px) {
  .h2, .h2m { font-size: 6vw;  margin: 0 auto 5vw; }
}


.max_width {
  width:100%;
  max-width:70vw;
  margin:0 auto;
  padding:0;
  box-sizing:border-box;
}
@media (max-width: 1260px) {
  .max_width {
    max-width:100vw;
    padding: 0 1vw;
  }
}


.logo {
    display: inline-block;
  /*! background-image: url(/img/logo/GWL.svg); */
  cursor: pointer;
  height: 4vw;
  width: 4vw;
  /*! background-position: center; */
  /*! background-size: 100%; */
  /*! background-repeat: no-repeat; */
}
@media (max-width: 1260px) {
 .logo {
    height: 16vw;
    width: 16vw;
    background-size: 80%;
  }
}
@media (max-width: 800px) {
  .logo {
    height: 41vw;
    width: 46vw;
  }
  .box_h1 .logo {
    display:none;
  }
}

 .box_logo{
    text-decoration: none;
  }
.box_logo p {
  display: none;
  position: absolute;
  
  color: #4a5568;
  line-height: 1.6;
  background-color: #fff;
  padding: 2vw 3vw;
  box-shadow: 0 0 1vw #0001;
  border-radius:1.4vw;
  font-size:2vw;
  margin-top: 2vw;
  
}
.box_logo b {
  color: #122059;
  font-weight: bold;
}
.box_logo:hover p {
  /*display: block;*/
}
@media (max-width: 1260px) {
  .box_logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4vw 0 4vw -15vw;
  }
  .box_logo p {
    display: inline-block;
    position: static;
    margin: 2.4vw 0 0 4vw;
    box-shadow: none;
    padding: 0;
    text-decoration: none;
    background-color:transparent;
  }
  .box_logo:hover p {
    display: inline-block;
  }
}
@media (max-width: 800px) {
  .box_logo{
    display: flex;
    align-items: center;
    margin: 6vw 0 12vw;
    flex-direction: column;
  }
  .box_logo p {
    display: block;
    position: static;
    margin:0;
    padding:0;
    font-size:4.6vw;
  }
  .box_logo:hover p {
    display: block;
  }
}



.button_mobile_menu{
    outline: none;
  display: none;
  border: none;
  background-image: url(/img/ico/list.svg);
  cursor: pointer;
    height: 8vw;
    width: 8vw;
  background-position: center;
  background-size: 68%;
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 10vw;
  box-shadow: 0 0 1vw #0001;
  position: fixed;
  top:2vw;
  right:2vw;
  z-index: 20;
}
.open_mobile_menu .button_mobile_menu {
  background-image: url(/img/ico/x-lg.svg);
  background-size: 56%;
}
@media (max-width: 1260px) {
 .button_mobile_menu {
    display: inline-block;
  }
}
@media (max-width: 800px) {
  .button_mobile_menu {
    height: 16vw;
    width: 16vw;
    display:none;
  }
  .open_mobile_menu .button_mobile_menu {
    display:block;
  }
}



header {
  background-color: #fffa;
  box-shadow: 0 0 1vw #0001;
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  width:100%;
  z-index: 10;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1260px) {
  header {
    display: none;
    box-shadow: none;
    backdrop-filter: none;
    background-image: url(/img/bg1.png);
    background-size:cover;
    background-position:center;
  }
  .open_mobile_menu header {
    display: block;
    height: 100vh;
    background-color: #fff;

  }
}



#main_menu {
  display: block;
}
@media (max-width: 800px) {
  #main_menu {
    display: block;
    width: 90vw;
  }
}
#main_menu a.phone {
  font-weight:bold;
  color:#122059;
  font-size:1.5vw;
  line-height: 1;
}
@media (max-width: 1260px) {
  #main_menu a.phone {
    font-size:  4vw;
  }
}
@media (max-width: 800px) {
  #main_menu a.phone {
    font-size:  8vw;
  }
}
#main_menu > ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 2vw;
  
}
#main_menu li {
  position: relative;
}
#main_menu a {
  color: #2d3748;
  text-decoration: none;
  transition: color 0.2s ease;
  
}
#main_menu a:hover,
#main_menu a:focus {
  color: #3182ce;
}
/* Подчёркивание при наведении */
#main_menu  a::after {
  content: '';
  position: absolute;
  bottom: -0.2vw;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #3182ce;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}
#main_menu > ul > li:hover > a::after,
#main_menu > ul > li > a:focus::after {
  width: 70%;
}
#main_menu a.top-button::after,
#main_menu a.phone::after {
    display:none;
  content: none;
}

/* === Выпадающие подменю === */
#main_menu ul ul {
  list-style: none;
  margin: 0; padding: 0;
  position: absolute;
  top: 2.2vw;
  left: 0;
  background: #fff;
  min-width: 12vw;
  box-shadow: 0.2vw 0.5vw 1vw #0002;
  border-radius: 0.4vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 
    opacity 0.25s ease,
    visibility 0.25s,
    transform 0.25s ease;
  z-index: 1001;
}

#main_menu li:hover > ul,
#main_menu li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#main_menu ul ul a {
  display: block;
  padding: 0.8vw 1.6vw;

  color: #4a5568;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
#main_menu ul ul a:hover,
#main_menu ul ul a:focus {
  background-color: #f0f7ff;
  color: #2b6cb0;
  outline: none;
}

#main_menu .top-button {
  height: 0;
  
  display: block;
  float: right;
}
#main_menu .top-button-telegram {
  margin: -0.3vw 0 0 0vw;
}
#main_menu .top-button-max {
  margin: -0.3vw 3vw 0 0vw;
}
#main_menu .top-button img {
  width: 2.4vw;
  height: 2.4vw;
  transition: transform 0.6s ease-in-out;
}
#main_menu .top-button:hover img {
  transform: rotate(720deg);
}



/* === Адаптивное меню: ВСЕГДА открыто на малых экранах === */
@media (max-width: 1260px) {
  #main_menu .top-button {
    margin: -2vw auto 0;
    height: 0;
    z-index: 10;
    position: relative;
  }
#main_menu .top-button-max {
  margin: 10vw auto 0;
}
  #main_menu .top-button img {
      width: 8vw;
      height: 8vw;
  }
  
  /* Делаем header видимым и адаптивным */
  header {
    position: fixed;
    height: 100vw;
    backdrop-filter: none;
    display: none;
    overflow-y: auto; 
  }

  .header {
    flex-direction: column;
    padding: 1.5vw 2vw;
    gap: 3vw;
  }

  /* Главное меню — вертикальный список */
  #main_menu > ul {
    flex-direction: column;
    gap: 0.8vw;
  }

  #main_menu a {
    font-size:2.6vw;
    padding: 1vw 2.4vw;
    display: block;
    font-weight: bold;
  }
  #main_menu ul ul a {
    font-size:2.6vw;
    padding: 1vw 2.4vw;
    font-weight: normal;
  }

  #main_menu a::after {
    display: none;  }

  #main_menu ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8fbff;
    padding-left: 1.6vw;
    border-radius: 0;
    margin-top: 0.4vw;
    padding: 0;
    background-color: transparent;
    padding: 0 0 6vw;
  }

  #main_menu li {
    position: static;
    padding: 0;
    
  }
  #main_menu > ul > li:last-child {
    order: -1;
  }
}
@media (max-width: 800px) {
  #main_menu .top-button {
    margin: 0;
    height: auto;
    float:right;
    width: 10vw;
    position: relative;
    top:36vw;
    left:-16vw;
    z-index: 10;
  }
  #main_menu .top-button-max {
    width: 0;
    top:50vw;
    left:-29vw;
  }
  #main_menu .top-button img {
      width: 16vw;
      height: 16vw;
  }
   #main_menu a {
    font-size:6vw;
    padding: 3.4vw 2vw;
  }
  #main_menu ul ul a {
    font-size:4vw;
    padding: 3.4vw 2vw;
  }
  #main_menu ul ul {
    padding: 0 0 12vw;
  }
}


/* Button */
.button1 {
  display: block;
  margin: 3.5vw auto 0;
  padding: 1.2vw 3vw;
  font-size: 1.8vw;
  font-weight: bold;
  color: #FFFFFF;
  background: #122059;
  border: none;
  border-radius: 0.8vw;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0.3vw 0.8vw rgba(18, 32, 89, 0.2);
}
@media (max-width: 1260px) {
  .button1 {
      padding: 2vw 6vw;
      font-size: 4vw;
    border-radius: 1.6vw;
  }
}
.button1:hover {
  background: #698CB8;
  transform: translateY(-0.3vw);
  box-shadow: 0 0.4vw 1vw rgba(18, 32, 89, 0.3);
}

.button1:active {
  transform: translateY(0);
}


.button2 {
  display: block;
  margin: 3.5vw auto 0;
  padding: 1.1vw 2.5vw;
  font-size: 1.7vw;
  font-weight: normal;
  color: #FFFFFF;
  background: #4A90E2;
  border: none;
  border-radius: 0.6vw;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0.2vw 0.6vw rgba(74, 144, 226, 0.2);
}

.button2:hover {
  background: #6AB6F0;
  transform: translateY(-0.2vw);
  box-shadow: 0 0.3vw 0.8vw rgba(74, 144, 226, 0.3);
}

.button2:active {
  transform: translateY(0);
}



.button3 {
  display: block;
  margin: 3vw auto 0;
  padding: 1vw 2vw;
  font-size: 1.6vw;
  font-weight: bold;
  color: #122059;
  background: transparent;
  border: 2px solid #122059;
  border-radius: 0.5vw;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
@media (max-width: 1260px) {
  .button3 {
      padding: 1.2vw 4vw;
      font-size: 3vw;
    border-radius: 1.6vw;
  }
}

.button3:hover {
  background: rgba(18, 32, 89, 0.1); /* Легкая заливка при наведении */
  transform: translateY(-0.2vw);
}

.button3:active {
  transform: translateY(0);
}

/* // Button */


.focus1 {
-webkit-animation: focus1a 2s 1 linear;
-webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes focus1a {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(74, 144, 226, 0.15);
    transform: scale(1.01);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    transform: scale(1);
  }
}




.animAdd {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}

.animAdd.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition-delay: 0s !important;
}


.animAdd1 {
  transform: translateX(0);
}
.animAdd1.hidden {
  opacity: 0;
  transform: translateX(-50px);
}


.animAdd2 {
  transform: translateX(0);
}
.animAdd2.hidden {
  opacity: 0;
  transform: translateX(50px);
}


.animAdd3 {
  transform: scale(1);
}
.animAdd3.hidden {
  opacity: 0;
  transform: scale(0.8);
}


.animAdd4 {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0) translateY(0) scale(1);
  transform-style: preserve-3d;
  transition: 
    opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.15),
    transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.animAdd4.hidden {
  opacity: 0;
  transform: 
    perspective(1000px) 
    rotateX(-15deg) 
    rotateY(-10deg) 
    translateZ(-60px) 
    translateY(30px) 
    scale(0.92);
}

.animAdd5 {
  transform: perspective(800px) rotateY(0deg);
  transform-style: preserve-3d;
  transition:  transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.animAdd5.hidden {
  transform: perspective(800px) rotateY(-90deg);
}


.animAdd6.hidden {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}
.animAdd6 {
  transform: translateY(0) scale(1);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.animAdd7 {
  transform: translate(0, 0);
}
.animAdd7.hidden {
  opacity: 0;
  transform: translate(-40px, -30px);
}

.animAdd8.hidden {
  opacity: 0;
  transform: scale(0.6);
}
.animAdd8 {
    transform: scale(1);
  opacity: 1;
  transform-origin: center;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animAdd1,
.animAdd2,
.animAdd3,
.animAdd4,
.animAdd5,
.animAdd6,
.animAdd7,
.animAdd8 { transition-delay: 0.2s; }



/* === H1 Box  === */
.box_h1 {
    margin: 6.5vw auto 4vw;
    text-align: center;
    position: relative;
}

.box_h1 h1 {
    font-size: 4vw;
    font-weight: bold;
    color: #122059;
    line-height: 1.25;
    margin: 0;
    padding: 0;
}

.box_h1 h1::after {
    content: '';
    display: block;
    width: 30vw;
    height: 0.3vw;
    background: #96D4FF;
    margin: 1.8vw auto 0;
    border-radius: 0.25vw;
}
.box_h1 .box_logo {
  display: none;
}
@media (max-width: 1260px) {
  .box_h1 {
    margin: 2vw auto 4vw;
  }
  .box_h1 .box_logo {
    display: flex;
    width: 40vw;
    margin: 0 auto 3vw;
  }
  .box_h1 h1::after {
    margin: 2.8vw auto 0;
  }
}
@media (max-width: 800px) {
   .box_h1 .box_logo {
    width: 100vw;
    margin: 26vw auto 16vw;
  }
}
/* //  === H1 Box  === */




/* face */



/* === Face Block (Hero Section) — обновлённый стиль === */
.face {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #122059; /* темная тема текста — как в заголовках других блоков */
  padding: 0 2vw;
}

/* Оверлей с видео */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Контент — карточка поверх видео */
.face .content-card {
  background: #fffa;
  border-radius: 1.4vw;
  padding: 2vw 3vw;
  box-shadow: 0 0.6vw 1.8vw rgba(18, 32, 89, 0.08);
  max-width: 70vw;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
      background-image:url(/img/logo/GWL.svg);
    background-repeat: no-repeat;
    background-size: 80vw;
  
  background-position: -6vw 6.8vw;
}
@media (max-width: 1260px) {
  .face .content-card {
    padding: 3vw 5vw;
    max-width: 100vw;
    border-radius: 2vw;

        background-size: 140vw;
  
  background-position: -11vw 13vw;
  }
}
@media (max-width: 800px) {
  .face .content-card {
    padding: 6vw 6vw;
    border-radius: 4vw;

    background-size: 180vw;
  background-position: -8vw 11vw;
  }
}
.face .content-card .mark {
  color:#122059;
  font-weight: bold;
}

.face h1 {
  font-size: 3vw;
  font-weight: bold;
  margin-bottom: 2vw;
  line-height: 1.3;
}
@media (max-width: 1260px) {
  .face h1 {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}
.face h1 mark {
  background: none;
  color: #698cb8;
  font-weight: 800;
  padding: 0 0.2em;
  text-shadow: 0 0 .4vw #fff9;
}

.face ul {
  margin: 0 auto 2.5vw;
  line-height: 1.6;
  text-align: left;
}
.face ul li {
  margin: 0.8vw 0;
  position: relative;
}
@media (max-width: 1260px) {
.face ul {
  margin: 0 auto 6vw;
  text-align: left;
}
.face ul li {
  margin: 0.8vw 0;
  position: relative;
}
}



/* // face */





/* Delivery Boxes */


.box_delivery {
  margin: 5vw auto;
  padding: 0 2vw;
}

.box_delivery .button3 {
  margin: 1vw 0 0;
}



.box_delivery ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5vw;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1260px) {
  .box_delivery ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
   .box_delivery ul {
      grid-template-columns: repeat(1, 1fr);
   }
}

.box_delivery li {
display: grid;
grid-template-columns: auto;
grid-template-rows: .2fr .5fr .2fr 1fr;
gap: 1vw;

justify-items: center;
align-items: start;


background: #FFFFFF;
border-radius: 1vw;

box-shadow: 0 0.3vw 1vw rgba(18, 32, 89, 0.1);
padding: 2vw;
}
@media (max-width: 1260px) {
  .box_delivery li {
    padding: 4vw;
  grid-template-rows: .1fr .4fr .2fr .6fr .3fr;
  }
}
@media (max-width: 800px) {
  .box_delivery li {
    padding: 4vw 6vw;
    grid-template-rows: auto;
  }
  .box_delivery .button3 {
    margin: 7vw 0 0;
  }
}



.box_delivery li img {
  width: 10vw;
  height: 10vw;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5vw;
  background: #F5F9FF;
  padding: 0.8vw;
  box-shadow: 0 0.2vw 0.5vw rgba(18, 32, 89, 0.08);
}
@media (max-width: 1260px) {
  .box_delivery li img {
    width: 30vw;
    height: 30vw;
  }
}
@media (max-width: 800px) {
  .box_delivery li img {
    width: 30vw;
    height: 30vw;
    margin-bottom: 4vw;
    border-radius: 50%;
  }
}

.box_delivery .name {
  font-weight: bold;
  font-size: 2vw;
  color: #122059;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 1260px) {
  .box_delivery .name {
    font-size: 4vw;
  }
}

.box_delivery .info {
  font-weight: bold;
  color: #698CB8;
  margin-bottom: 1.2vw;
  line-height: 1.4;
}

.box_delivery .text {
  /*! font-size: 1.4vw; */
  color: #698CB8;
  line-height: 1.5;
  flex-grow: 1;
}

/* // Delivery Boxes */




/* === Services Block === */
.box_services {
  display:none
  margin: 5vw auto;
  padding: 0 2vw;
}


/* Сетка сервисов — 2 колонки на малых экранах, до 4 на больших */
.box_services .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6vw;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-items: center;
}
@media (max-width: 1260px) {
  .box_services .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5vw;
  }
}
@media (max-width: 800px) {
  .box_services .list {
    gap: 2vw;
  }
}

.box_services .list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 18vw;
  padding: 2vw 1.5vw;
  background: #FFFFFF;
  border-radius: 1vw;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0.3vw 0.8vw rgba(18, 32, 89, 0.08);
}
@media (max-width: 1260px) {
  .box_services .list a {
     max-width: 48vw;
    padding: 4vw 3vw;
    border-radius: 1.8vw;
  }
}


.box_services .list a:hover {
  transform: translateY(-0.4vw);
  box-shadow: 0 0.5vw 1.2vw rgba(105, 140, 184, 0.25);
}

.box_services .list img {
  width: 8vw;
  height: 8vw;
  margin-bottom: 1.2vw;
}
@media (max-width: 1260px) {
  .box_services .list img {
     width: 20vw;
    height: 20vw;
    margin-bottom: 4vw;
  }
}


.box_services .name {
  font-size: 1.6vw;
  font-weight: 600;
  color: #122059;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s ease;
}
@media (max-width: 1260px) {
  .box_services .name {
    font-size: 3vw;
  }
}
.box_services .list a:hover .name {
  color: #3182ce;
}


/* // === Services Block === */


/* === Statistics Block === */

.box_statistics {
  margin: 5vw auto;
  padding: 0 2vw;
  text-align: center;
}



.box_statistics ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16vw, 1fr));
  gap: 2vw;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-items: center;
}
@media (max-width: 1260px) {
  .box_statistics ul {
    grid-template-columns: repeat(3, 1fr);
    width: 96vw;
  }
}
@media (max-width: 800px) {
  .box_statistics ul {
    grid-template-columns: repeat(2, 1fr);
    width: 96vw;
  }
}

.box_statistics li {
  background: #FFFFFF;
  border-radius: 1.2vw;
  padding: 2.4vw 2vw;
  box-shadow: 0 0.4vw 1.2vw rgba(18, 32, 89, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-width: 16vw;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1260px) {
  .box_statistics li {
    border-radius: 2vw;
    padding: 2.4vw 2vw;
  }
}
@media (max-width: 1260px) {
  .box_statistics li {
    padding: 3vw 5vw;
    width: 100%;
  }
}

.box_statistics li::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0.4vw;
  background: linear-gradient(90deg, #122059 0%, #4A90E2 100%);
  opacity: 0.8;
}
@media (max-width: 1260px) {
  .box_statistics li::before {
  height: 0.8vw;
  }
}
@media (max-width: 800px) {
  .box_statistics li::before {
  height: 1.4vw;
  }
}
.box_statistics li:hover {
  transform: translateY(-0.6vw) scale(1.02);
  box-shadow: 0 0.8vw 2vw rgba(105, 140, 184, 0.3);
  background: #f9fbfe;
}

.stat-value {
  font-size: 5vw;
  font-weight: 800;
  color: #122059;
  line-height: 1;
  margin-bottom: 1.2vw;
  position: relative;
}
@media (max-width: 1260px) {
  .stat-value {
  font-size: 8vw;
    margin: 3vw 0;
  }
}
@media (max-width: 800px) {
  .stat-value {
  font-size: 12vw;
    margin: 4vw 0;
  }
}

.stat-value span {
  font-size: 0.5em;
  vertical-align: super;
}

.stat-unit {
  /*! font-size: 1.6vw; */
  font-weight: 600;
  color: #4A90E2;
  margin-bottom: 0.8vw;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-desc {
  /*! font-size: 1.4vw; */
  color: #698CB8;
  line-height: 1.5;
  opacity: 0.9;
}


/* // === Statistics Block === */




/* === Team Block === */
.box_team {
  margin: 5vw auto;
  padding: 0 2vw;
  text-align: center;
}



.box_team ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-items: center;

  padding: 2vw;
}
@media (max-width: 800px) {
.box_team ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  }
}

.team-member {
  background: #fff;
  border-radius: 1.2vw;
  padding: 2.2vw 1.8vw;
  box-shadow: 0 0.4vw 1vw rgba(18, 32, 89, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  max-width: 28vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1260px) {
  .team-member {
    max-width: 50vw;
    padding: 4vw 4vw;
  }
}
@media (max-width: 800px) {
  .team-member {
    max-width: 100vw;
    width:92vw;
    padding: 8vw 8vw;
  }
}
.box_team li:hover .team-member {
  transform: translateY(-0.5vw);
  box-shadow: 0 0.8vw 1.8vw rgba(105, 140, 184, 0.25);
  background: #f9fbfe;
}

.team-photo {
  width: 9vw;
  height: 9vw;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.4vw;
  border: 0.25vw solid #f0f5ff;
  box-shadow: 0 0.4vw 0.8vw rgba(0, 0, 0, 0.06);
  background: #f8faff; /* fallback, если фото не загрузилось */
}
@media (max-width: 1260px) {
  .team-photo {
    width: 20vw;
    height: 20vw;
  }
}
@media (max-width: 800px) {
  .team-photo {
    width: 40vw;
    height: 40vw;
  }
}
.team-name {
  /*! font-size: 1.8vw; */
  font-weight: bold;
  color: #122059;
  margin: 0 0 0.4vw;
}

.team-role {
  /*! font-size: 1.4vw; */
  font-weight: 600;
  color: #4A90E2;
  margin: 0 0 1vw;
  line-height: 1.3;
}
@media (max-width: 1260px) {
  .team-role {
    margin: 1vw 0 2vw;
  }
}
@media (max-width: 800px) {
  .team-role {
    margin: 2vw 0 4vw;
  }
}

.team-desc {
  /*! font-size: 1.3vw; */
  color: #698CB8;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}


/* // === Team Block === */




/* === FAQ Block === */
.box_faq {
  margin: 5vw auto;
  padding: 2vw 0 0;
  max-width: 70vw;
}
@media (max-width: 1260px) {
  .box_faq {
    max-width: 100vw;
    padding: 2vw 2vw 0;
  }
}

.box_faq ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.6vw;
}

.box_faq li {
  margin: 0;
}

/* details/summary styling */
.box_faq details {
  background: #FFFFFF;
  border-radius: 1vw;
  overflow: hidden;
  box-shadow: 0 0.3vw 0.8vw rgba(18, 32, 89, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.box_faq details:hover {
  transform: translateY(-0.3vw);
  box-shadow: 0 0.5vw 1.2vw rgba(105, 140, 184, 0.2);
}

.box_faq summary {
  padding: 1.4vw 2vw;
  /*! font-size: 1.6vw; */
  font-weight: 600;
  color: #122059;
  cursor: pointer;
  outline: none;
  position: relative;
  user-select: none;
  background: #f8fbff;
  border-bottom: 1px solid #eef3fa;
}
@media (max-width: 800px) {
  .box_faq summary {
    padding: 2vw 2vw;
  }
}

/* Стрелка справа */
.box_faq summary::after {
  content: '▶';
  position: absolute;
  right: 1.6vw;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 1vw;
  color: #4A90E2;
  transition: transform 0.3s ease;
}

.box_faq details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Убираем стандартный маркер (стрелку по умолчанию) */
.box_faq summary::-webkit-details-marker,
.box_faq summary::marker {
  display: none;
}

.box_faq details[open] summary {
  background: #edf2fa;
  border-bottom: none;
}

.box_faq details > p {
  padding: 1.4vw 2vw 1.8vw;
  color: #4a5568;
  margin: 0;
}
@media (max-width: 1260px) {
  .box_faq details > p {
    padding: 2vw 4vw;
  }
}
@media (max-width: 800px) {
  .box_faq details > p {
    padding: 3vw 5.4vw;
  }
}

/* Анимация раскрытия */
.box_faq details > p {
  animation: fadeIn 0.35s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-0.3vw); }
  to   { opacity: 1; transform: translateY(0); }
}


/* // === FAQ Block === */





/* === CTA / Mission Block (стиль .box_team, но как призыв) === */
.box_team {
  margin: 5vw auto;
  padding: 3vw 0 0;
  max-width: 70vw;
  background: linear-gradient(135deg, #f8fbff 0%, #edf4ff 100%);
  border-radius: 1.4vw;
  box-shadow: 0 0.6vw 1.8vw rgba(18, 32, 89, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #dbe5f3;
}
.box_team::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0.5vw;
  background: linear-gradient(90deg, #122059 0%, #4A90E2 50%, #122059 100%);
}
@media (max-width: 1260px) {
  .box_team {
    max-width: 96vw;
    border-radius: 2vw;
  }
  .box_team::before {
    height: 0.8vw;
  }
}





.box_team h2 {
  margin-top: 0;
}


.box_ad {
    margin: 5vw auto;
  padding: 3vw 4vw;
  max-width: 70vw;
  background: linear-gradient(135deg, #f8fbff 0%, #edf4ff 100%);
  border-radius: 1.4vw;
  box-shadow: 0 0.6vw 1.8vw rgba(18, 32, 89, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #dbe5f3;
}
@media (max-width: 1260px) {
  .box_ad {
    max-width: 96vw;
    padding: 6vw 6vw;
  }
}
.box_ad p {
  /*! font-size: 1.6vw; */
  color: #4a5568;
  font-weight: 500;
}








/* === Photo Gallery Block (.box_foto) === */
.box_foto {
  margin: 5vw auto;
  padding: 0 2vw;
  max-width: 70vw;
  text-align: center;
}
@media (max-width: 1260px) {
  .box_foto {
    max-width: 100vw;
  }
}

.box_foto .subtitle {
  /*! font-size: 1.6vw; */
  color: #4a5568;
  margin: 0 auto 3vw;
  /*! max-width: 50vw; */
  line-height: 1.5;
}

/* Галерея */
.box_foto .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4vw;
  justify-items: center;
}
@media (max-width: 1260px) {
  .box_foto .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
  }
}

.box_foto .gallery img {
  width: 100%;
  height: auto;
  max-height: 22vw; /* ограничивает высоту, чтобы сетка не "прыгала" */
  object-fit: cover;
  border-radius: 0.8vw;
  box-shadow: 0 0.3vw 0.8vw rgba(18, 32, 89, 0.08);
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.2s ease;
  aspect-ratio: 1 / 1; /* фиксированное соотношение — изображения не деформируются */
}
@media (max-width: 1260px) {
  .box_foto .gallery img {
    max-height: 52vw;
  }
}
.box_foto .gallery img:hover {
  transform: translateY(-0.4vw) scale(1.02);
  box-shadow: 0 0.6vw 1.4vw rgba(105, 140, 184, 0.25);
  filter: brightness(1.05);
}


/* // === Photo Gallery Block (.box_foto) === */





/* === Dignity / Communication Block === */

.box_dignity {
  margin: 5vw auto;
  padding: 0 0vw;
  max-width: 70vw;
  text-align: center;
  position: relative;
  /*! background-color:#fff; */
  border-radius: 1.4vw;
}
@media (max-width: 1260px) {
  .box_dignity  {
    max-width: 96vw;
  }
}
@media (max-width: 800px) {
  .box_dignity  {
    max-width: 100vw;
  }
}


/* Контент поверх фона */
.dignity-content {
  position: relative;
  z-index: 2;
  padding: 4vw 3vw;
  /*! background: rgba(255, 255, 255, 0.75); */ /* полупрозрачный оверлей */
  /*! backdrop-filter: blur(4px); */ /* эффект стекла (поддерживается в современных браузерах) */
  border-radius: 1.4vw;
  /*! box-shadow: 0 0.6vw 2vw rgba(18, 32, 89, 0.12); */
}
@media (max-width: 1260px) {
  .dignity-content  {
    padding: 4vw 2vw;
  }
}
@media (max-width: 800px) {
  .dignity-content  {
    padding: 4vw 0;
  }
}

/* Изображение переписки */
.dignity-content img {
  /*! width: 100%; */
  max-width: 100%;
  height: auto;
  margin: 0 auto 2.8vw;
  border-radius: 1vw;
  box-shadow: 0 0.4vw 1.2vw rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: contain;
  /*! background: #fff; */
  padding: 1vw;
  
    background-image: url(/img/communication/bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
}





/* // === Dignity / Communication Block === */





/* === Feedback Form Block === */


.box_formFeedback {
  margin: 5vw auto;
  padding: 0 2vw;
  /*! max-width: 70vw; */
  text-align: center;
}
@media (max-width: 1260px) {
  .box_formFeedback .line-desktop {
      gap: 0;
  }
}

.box_formFeedback .subtitle {
  /*! font-size: 1.6vw; */
  color: #4a5568;
  margin: 0 auto 1.9vw;
  max-width: 80vw;
  /*! line-height: 1.5; */
}

.container {
  background: #fff;
  border-radius: 1.4vw;
  padding: 3.2vw 3vw;
  box-shadow: 0 0.6vw 1.8vw rgba(18, 32, 89, 0.08);
  display: inline-block;
  width: 100%;
  max-width: 48vw;
}

/* Поля ввода */
.form-group {
  margin-bottom: 2.2vw;
  text-align: left;
}



.form-group input {
  width: 100%;
  padding: 1.1vw 1.6vw;
  font-size: 1.5vw;
  border: 1px solid #cbd5e0;
  border-radius: 0.8vw;
  background: #f8fbff;
  transition: 
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
  outline: none;
}

.form-group input:focus {
  border-color: #4A90E2;
  box-shadow: 0 0 0 0.2vw rgba(74, 144, 226, 0.2);
  transform: translateY(-0.1vw);
}

.form-group input::placeholder {
  color: #a0aec0;
}

/* Кнопка — используем уже существующий .button1 */
.container .button1 {

  margin: 2vw auto 1vw;
}
#feedback .button1 {
  margin: 3.8vw auto 0;
}
@media (max-width: 1260px) {
  .container .button1 {
    font-size: 3vw;
    padding: 1.8vw 5vw;
    margin: 4vw auto 2vw;
  }
}
@media (max-width: 800px) {
  .container .button1 {
    font-size: 6vw;
    padding: 2.4vw 7vw;
    margin: 6vw auto 6vw;
  }
}

/* Согласие на обработку */
.consent {
  /*! font-size: 1.2vw; */
  color: #698CB8;
  margin: 0;
  /*! line-height: 1.5; */
}

.consent a {
  color: #4A90E2;
  text-decoration: none;
  border-bottom: 1px dashed #96D4FF;
  transition: all 0.2s ease;
}

.consent a:hover,
.consent a:focus {
  color: #3182ce;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}




/* // === Feedback Form Block === */





/* === Delivery Calculator Block (.box_calculator как калькулятор) === */
.box_calculator {
  margin: 5vw auto;
  padding: 0 2vw;
  /*! max-width: 70vw; */
  text-align: center;
}

.container {
  background: #fff;
  border-radius: 1.4vw;
  padding: 3vw 3vw;
  box-shadow: 0 0.6vw 1.8vw rgba(18, 32, 89, 0.08);
  display: inline-block;
  width: 100%;
  max-width: 70vw;
}
@media (max-width: 1260px) {
  .container {
    max-width: 75vw;
    border-radius: 2vw;
    padding: 6vw 6vw;
  }
}
@media (max-width: 800px) {
   .container {
    max-width: 96vw;
    border-radius: 2vw;
    padding: 8vw 8vw;
  }
}

.calc-form {
  /* margin-bottom: 2.5vw; */
  min-width:40vw;
  width:100%;
}
.calc-form .button1 {
  margin-bottom:0;
}
.form-group {
  margin-bottom: 1.8vw;
  text-align: left;
}
@media (max-width: 1260px) {
  .calc-form {
  /* margin-bottom: 2.5vw; */

    
  }
  .form-group {
    margin-bottom: 4vw;
  }
}
@media (max-width: 800px) {
  .form-group {
    margin-bottom: 8vw;
  }
}

.form-group label {
  display: block;
  /*! font-size: 1.4vw; */
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.6vw;
}
@media (max-width: 1260px) {
  .form-group label {
    /*! font-size: 2vw; */
    margin-bottom: 1vw;
  }
}
.form-group input {
  width: 100%;
  padding: 1vw 1.4vw;
  font-size: 1.5vw;
  border: 1px solid #cbd5e0;
  border-radius: 0.8vw;
  background: #f8fbff;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
@media (max-width: 1260px) {
  .form-group input {
    font-size: 3vw;
    padding: 1.4vw 2.4vw;
    border-radius: 1.6vw;
  }
}
@media (max-width: 800px) {
  .form-group input {
    font-size: 6vw;
    padding: 1.8vw 3.6vw;
    border-radius: 2.4vw;
  }
}
.form-group input:focus {
  border-color: #4A90E2;
  box-shadow: 0 0 0 0.2vw rgba(74, 144, 226, 0.2);
}



/* Результат */
.calc-result {
  background: #f8fbff;
  border-radius: 1vw;
  padding: 2vw;
  /* margin-top: 1.5vw; */
}
@media (max-width: 1260px) {
  .calc-result {
    padding: 3vw;
  }
}
@media (max-width: 800px) {
  .calc-result {
    padding: 4vw;
  }
}

.result-value {
  font-size: 3vw;
  font-weight: bold;
  color: #122059;
  margin: 0 0 1.2vw;
  line-height: 1.2;
}
@media (max-width: 1260px) {
  .result-value {
    font-size: 6vw;
  }
}
@media (max-width: 800px) {
  .result-value {
    font-size: 10vw;
    margin: 0 0 3vw;
  }
}
.result-note {
 
  color: #698CB8;
  margin: 0;
  line-height: 1.5;
}


/* // === Delivery Calculator Block (.box_calculator как калькулятор) === */





/* === Footer === */

/* === Footer — улучшенный стиль с кликабельным адресом === */
footer {
  background: #122059;
  color: #e2e8f0;
  padding: 3vw 0;
  /*! font-size: 1.3vw; */
  line-height: 1.5;
  overflow-x:hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3vw;
  align-items: stretch;
}

/* Левый блок: логотип + описание */
.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 1.2vw;
  flex-direction: column;
}

.footer-left .logo {
  height: 6vw;
  width: 6vw;
  /*! background-position: center; */
  /*! background-size: contain; */
  /*! background-repeat: no-repeat; */
  /*! background-image: url(/img/logo/GWL_w.svg); */
}
@media (max-width: 800px) {
  .footer-left .logo {
  height: 45vw;
  width: 45vw;
    margin: 0 auto 3vw;
  }
}
.footer-left p {
  margin: 0;
  /*! font-size: 1.3vw; */
  color: #cbd5e0;
  text-align: left;
  white-space: pre-line;
}

/* Центральный блок: контакты */
.footer-center {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;

}

.box_contacts .contact-item img{
box-shadow:none;
  width: 2vw;
  height: 2vw;
  border-radius:0;
  font-size: 1.4vw;
  color: #96d4ff;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}



.contact-item strong {
  color: #96d4ff;
  font-weight: 600;
  min-width: 5vw;
}

footer a {
  color: #e2e8f0;
  text-decoration: none;

  transition: all 0.2s ease;
}

footer a:hover, footer a:focus {
  text-decoration: underline;
}


footer a.telegram img {
  width: 3vw;
  height: 3vw;
}


/* Правый блок: копирайт */
.footer-right {
  text-align: right;
  color: #a0aec0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
}
.footer-right .line {
  display: flex;
  gap: 1.6vw;
}
.footer-right p {
  margin: 0;
  white-space: pre-line;
}


@media (max-width: 1260px) {
    footer a.telegram img {
  width: 6vw;
  height: 6vw;
}
  footer {
    padding:3vw 2vw;
    font-size: 1.8vw;
  }
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "left center"
      "right right";
    gap: 3vw;
    align-items: start;
  }

  .footer-left   { grid-area: left; }
  .footer-center { grid-area: center; }
  .footer-right  { 
    grid-area: right;
  flex-direction: row;
  }
  .footer-right .line {
      position: relative;
      top: .6vw;
    }

}
@media (max-width: 800px) {

footer a.telegram img {
  width: 12vw;
  height: 12vw;
}

   footer {
    padding:8vw 2vw;
    font-size: 3vw;
  }
   .footer-content {
    grid-template-columns: 1fr;
     gap: 10vw;
    grid-template-areas:
      "left"
      "center"
      "right";
  }
    .footer-right  { 
      align-items: flex-start;
      text-align: left;
gap: 2vw;
  flex-direction: column;
  }
  .footer-right .line {
  gap: 4vw;
}
    .footer-right p {
    text-align:left;
  }
}
/* === Footer === */








/* === About Block (.box_about) === */

.box_about {
  font-size: 1.6vw;
}
.box_about .content {
  padding-top: 0.6vw;
  padding-bottom:4vw;
}
.box_about p.highlight {
  font-size: 1.6vw;
  font-weight: 600;
  
  color: #122059;
  background: #f8fbff;
  
  padding: 1.4vw;
  margin: 0;
  
  border-radius: 0.8vw;
  border-style: solid;
  border-color: #698CB8;
  border-width: 0 0.4vw 0;

}

.box_about .about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2vw;
  margin: 2vw 0;
}

.box_about .feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: #f8fbff;
  border-radius: 1vw;
  padding: 1.8vw;
  /*! transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.box_about .feature:hover {
  transform: translateY(-0.3vw);
  box-shadow: 0 0.5vw 1.4vw rgba(105, 140, 184, 0.2);
}

.feature-icon {
  width: 6vw;
  height: 6vw;
  background: #edf4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A90E2;
  margin: 0 auto;
}

.content .feature-icon img {
  width: 3vw;
  height: 3vw;
  border-radius: 0;
  box-shadow: none;
  margin:0;
}

.box_about .feature h3 {
  color: #122059;
  margin: 1vw 0 1vw;
  text-align: center;
  display: block;
  width: 100%;
}

.box_about .feature p {
  font-size: 1.4vw;
  margin: 0;
  color: #698CB8;
}


@media (max-width: 1260px) {
  .box_about,
  .box_about .feature p {
    font-size: 2vw;
  }
  .box_about .feature {
    padding:4vw 4vw;
    border-radius:2vw;
  }
  .box_about .feature h3 {
    margin: 2vw 0;
  }
  .feature-icon {
    width: 12vw;
    height: 12vw;
  }
  .content .feature-icon img {
  width: 6vw;
  height: 6vw;
  }
  .box_about p.highlight {
    font-size: 2.6vw;
    padding: 2vw 4vw;
    border-radius: 1.8vw;
    border-width: 0 0.6vw;

  }
}
@media (max-width: 800px) {
  .box_about,
  .box_about .feature p {
    font-size: 3.2vw;
  }
  .content .feature-icon img {
    margin:0;
  }
  .box_about p.highlight {
    font-size: 3.2vw;
    padding: 3vw 3.2vw;
    border-radius: 2.4vw;
    border-width: 0 1vw;

  }
  
}
/* // === About Block (.box_about) === */




/* === Contacts Block (.box_contacts) === */
.box_contacts,
.box_requisites {
  margin: 5vw auto;
  max-width: 70vw;
}
.box_contacts .button1, 
.box_requisites .button1{
  display: inline-block;
}

.box_contacts .content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: stretch;
  gap: 2vw;
  padding:2vw;
}

.box_contacts .content strong {
  padding: 0;
  display: block;
  color:#555;
  font-size:1vw;
}

.box_contacts .info {
  display:flex;
  flex-direction: column;
  gap: 2vw;
}
.box_contacts .info-list {
  display:grid;
  grid-template-columns: 1fr 3fr;
  gap:2vw;
}

.content .line a {
  text-decoration: none;
  color: #122058;
}
.box_contacts .line {
  display:flex;
  align-items: flex-start;
  align-content: center;
  flex-direction: column;
  justify-content: center;
}

.box_contacts .h2m {
  margin:0;
}
.box_contacts .button1 {
  margin: 2vw 0 0;
  text-align:center;
}


.box_contacts .content .feature-icon {
  width:4vw;
  height:4vw;
}
.box_contacts .content .feature-icon img {
  width:1.6vw;
  height:1.6vw;
}


.contacts_map {
  background-image: url(/img/map.jpg);
  background-position:center;
  background-size:cover;
  border-radius:0.8vw;
}


/* Примечание в реквизитах */
.note {
  font-size: 1.2vw;
  color: #8899aa;
  display: block;
  margin-top: 0.3vw;
}
.box_requisites .content p.requisites-note {
  display:block;
  color: #e67e22;
  background: #fff8e6;
  font-size: 1.6vw;
  font-weight: 600;

  padding: 2vw 4vw;
  margin: 3vw 0 0;
  
  border-radius: 0.8vw;
  border-style: solid;
  border-color: #f39c12;
  border-width: 0 0.4vw 0;
text-align:center;
}

@media (max-width: 1260px) {
  .box_requisites .content p.requisites-note {
    font-size:2.2vw;
  }
  .note {
  font-size: 1.8vw;
  }
  .box_contacts .button1 {
  margin: 3vw 0 0;
  }
  .box_contacts .h2m {
    margin:1vw 0 1.8vw;
    text-align:center;
}
  .box_contacts .content {
  grid-template-columns: 1fr 1fr;
    gap:2vw;
  }
  .box_contacts,
  .box_requisites {

    max-width: 96vw;
    border-radius: 2vw;
  }
  .box_contacts .content strong {
    font-size: 2vw;
  }

  .box_contacts .content .feature-icon {
  width:8vw;
  height:8vw;
}
.box_contacts .content .feature-icon img {
  width:3vw;
  height:3vw;
}
.contacts_map {
  border-radius:1.4vw;
}

  .box_contacts .info-list {
    gap:4vw;
  }
  .content .line a {
    font-size:2.6vw;
  }
  
}
@media (max-width: 800px) {
    .box_requisites .content p.requisites-note {
    font-size:4vw;
  }
  .note {
  font-size: 3vw;
  }
    .box_contacts .h2m {
    margin:3vw 0 3vw;

}
   .box_contacts .content {
     display:flex;
     gap:2vw;
     flex-direction: column;
     align-items: stretch;
  }
  .contacts_map {
  height:30vh;
}
 .box_contacts .info-list {
   display:grid;
   grid-template-columns: 1fr 6fr;
 }

   .box_contacts .content strong {
    font-size: 2.8vw;
  }
  .content .line a {
        font-size: 3.6vw;
    }

   .box_contacts .button1 {
  margin: 4vw 0 0;
  }
    .box_contacts .content .feature-icon {
  width:10vw;
  height:10vw;
}
.box_contacts .content .feature-icon img {
  width:4vw;
  height:4vw;
}

}



.box_requisites .h2 {
  margin: 1vw 0 4vw;
}
.box_requisites .button1 {
  display:inline-block;
  
  text-align:center;
  margin:3vw 0 1.6vw 20vw;
}

.box_requisites .content strong,
.box_requisites .content p {
  margin:0;
  padding:0;

}
.box_requisites .content p{
  font-size:1.6vw;
}
.requisites-list {
  display:grid;
  grid-template-columns: 1fr 3fr;
  gap:2vw;
}


@media (max-width: 1260px) {
  .box_requisites .content p{
  font-size:2vw;
}}
@media (max-width: 800px) {
  .box_requisites .h2 {
  margin: 4vw 0 0;
}
  .requisites-list {
  display:grid;
  grid-template-columns: 1fr;
  gap:0vw;
}
  
  .box_requisites .content p{
  font-size:4vw;
}
  .box_requisites .content strong{
  margin:6vw 0 0;
  padding:0;

  }
}
/* === Contacts Block (.box_contacts) === */





/* === Blog Categories (Переключатели категорий) === */
/* ===== БЛОГ: Категории — переключатели ===== */
.blog_category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(6vw, 1fr));
  gap: 2vw;
  margin: 2vw auto;
  padding: 0;
  align-items: stretch;
  justify-content: space-between;
  align-content: space-between;
  justify-items: stretch;
}
.blog_category .item {
  display: flex;
  align-items: center;
  justify-content: center; /* горизонтальное центрирование (уже есть text-align, но flex надёжнее) */
  padding: 1vw 2vw;
  text-align: center;

  color: #4a5568;
  text-decoration: none;
  background: #fff;
  border-radius: 0.6vw;
  box-shadow: 0 0.2vw 0.6vw rgba(18, 32, 89, 0.05);
}
.blog_category .item:hover {
  background: #edf4ff;
  color: #122059;
  transform: translateY(-0.2vw);
  box-shadow: 0 0.3vw 0.8vw rgba(18, 32, 89, 0.1);
}
.blog_category .item.mark {
  background: #122059;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0.3vw 1vw rgba(18, 32, 89, 0.2);
}
.blog_category .item.mark:hover {
  background: #0d1a45;
  transform: translateY(-0.3vw);
  box-shadow: 0 0.4vw 1.2vw rgba(18, 32, 89, 0.3);
}
@media (max-width: 1260px) {
  .blog_category .all {
    display:none;
  }
  .blog_category {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 2vw;
  }
  .blog_category .item {
    padding:2vw;
  }
}
@media (max-width: 1260px) {
  .blog_category {
    grid-template-columns: 1fr 1fr;
  }
  .blog_category .item {
    border-radius:2vw;
    padding: 4vw 2vw;
  }
}

/* ===== БЛОГ: Список статей ===== */
.blog_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2vw;
  margin: 1vw auto 5vw;
  padding: 0;
  justify-items: stretch;
  justify-content: space-between;

}
.blog_list .item {
    display: flex;
  flex-direction: column;
  
  width: 100%;
  max-width: 32vw;
  background: #fff;
  border-radius: 1.2vw;
  overflow: hidden;
  box-shadow: 0 0.4vw 1.2vw rgba(18, 32, 89, 0.08);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blog_list .item:hover {
  transform: translateY(-0.6vw) scale(1.01);
  box-shadow: 0 0.8vw 2vw rgba(105, 140, 184, 0.3);
}
.blog_list .item img {
  width: 100%;
  height: 14vw;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #f0f5ff;
}
.blog_list .name {
  /* font-size: 1.4vw; */
  font-weight: bold;
  color: #122059;
  margin: 1vw 1.4vw;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog_list .text {
color: #698CB8;
  margin: 0 1.4vw 1vw;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog_list .date {
  font-size: 1vw;
  color: #a0aec0;
  margin: auto 1.4vw 1.4vw;
  font-weight: 500;
  
}
@media (max-width: 1260px) {
  .blog_list {
  padding: 0 2vw;
  grid-template-columns: 1fr 1fr;
  }
  .blog_list .item {
    max-width:50vw;
  }
  .blog_list .date {
    font-size: 1.6vw;
  }
  .blog_list .item img {
    height:36vw;
  }
  .blog_list .name {
    margin:1.6vw 2vw;
  }
  .blog_list .text {
    margin:0vw 2vw 2vw;
  }
  .blog_list .date {
    margin: auto 2vw 2vw;
  }
}
@media (max-width: 800px) {
  .blog_list {
  padding: 0 2vw;
  grid-template-columns: 1fr;
  }
  .blog_list .date {
    font-size: 3vw;
  }
  .blog_list .item {
    max-width:100%;
  }
  .blog_list .item img {
    height:75vw;
  }
}
/* === Blog Categories (Переключатели категорий) === */





/* === Modal Overlay & Form Box === */
#formBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);

    z-index: 9990;
    transition: opacity 0.3s ease, visibility 0.3s;
  height: 100vh;
  overflow-y: auto;
}


#formBox.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    text-align: center;
  display: block;
  margin: 2vw auto 2vw;
}

#formBox.active .modal-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    background: none;
    border: none;
    font-size: 5vw;
    color: #a0aec0;
    cursor: pointer;
    padding: 0;
    margin: -3.4vw 0 0 31vw;
    line-height: 1;
    transition: color 0.2s ease;
  
}
.close-btn:hover {
    color: #122059;
}
@media (max-width: 1260px) {
  .close-btn {
    font-size: 8vw;
     margin: -6vw 0 0 31vw;
  }
}
@media (max-width: 800px) {
  .close-btn {
    font-size: 12vw;
     margin: -8vw 0 0 38vw;
  }
}

/* // === Modal Overlay & Form Box === */


.content {
  background: #fff;
  border-radius: 1.4vw;
  padding: 2vw 3vw;
  margin: 4vw 0;
  box-shadow: 0 0.6vw 1.8vw rgba(18, 32, 89, 0.08);
  display: block;
}
.content td {
  padding: 1vw 0;
}
.content h2 {
  color:#122059;
  padding: 0;
  margin: 6vw 0 1vw;
}
.content li {
  margin: 0.4vw 0;
}
.content strong {
  padding: 2vw 0 0;
  display: inline-block;
}
.content img {
  width: 100%;
  border-radius: 1.2vw;
  box-shadow: rgba(18, 32, 89, 0.08) 0px 0.6vw 1.8vw;
}
@media (max-width: 1260px) {
  .content {
    border-radius: 2vw;
  }
}
@media (max-width: 800px) {
  .content h2 {
    font-size: 4vw;
  }
  
  .content img {
    /*width:100vw;
    border-radius:0;
    margin: 0 0 0 -4vw;
    position relative;*/
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative; 
  }
}

/* === Cargo Types Block === */
.box_cargo {
  margin: 5vw auto;
  padding: 0 2vw;
}
.box_cargo ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5vw;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1260px) {
  .box_cargo ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .box_cargo ul {
    grid-template-columns: 1fr;
  }
}
.box_cargo li {
  background: #FFFFFF;
  border-radius: 1vw;
  overflow: hidden;
  box-shadow: 0 0.3vw 1vw rgba(18, 32, 89, 0.1);
  padding: 2vw;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.box_cargo li:hover {
  transform: translateY(-0.5vw);
  box-shadow: 0 0.5vw 1.4vw rgba(105, 140, 184, 0.25);
}
.box_cargo a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.box_cargo img {
  width: 10vw;
  height: 10vw;
  object-fit: contain;
  margin: 2vw 0;
  /*! filter: drop-shadow(0 0.2vw 0.4vw rgba(0,0,0,0.1)); */
}
@media (max-width: 1260px) {
  .box_cargo li {
    padding:4vw 4vw 6vw;
    border-radius: 2vw;
  }
  .box_cargo img {
    width: 22vw;
    height: 22vw;
    margin: 2vw 0;
  }
}
@media (max-width: 800px) {
  .box_cargo img {
    width: 38vw;
    height: 38vw;
    margin: 2vw 0;
  }
}
.box_cargo .name {
  font-weight: bold;
  font-size: 1.8vw;
  color: #122059;
  margin-bottom: 1vw;
}
@media (max-width: 1260px) {
  .box_cargo .name {
    font-size: 3.2vw;
  }
}
@media (max-width: 800px) {
  .box_cargo .name {
    font-size: 4.8vw;
  }
}
.box_cargo .text {
  font-size: 1.4vw;
  color: #698CB8;
  line-height: 1.5;
}
@media (max-width: 1260px) {
  .box_cargo .text {
    font-size: 2.4vw;
  }
}
@media (max-width: 800px) {
  .box_cargo .text {
    font-size: 3.6vw;
  }
}
/* // === Cargo Types Block === */

.blog_page .date {
  color: #a0aec0;
  margin: 0 0 1vw;
text-align: center;
  width: 100vw;
  margin:-5vw 0 0;
  left:0;
  position: absolute;
}
@media (max-width: 1260px) {
  .blog_page .date {
    margin:-5.5vw 0 0;
  }
}
@media (max-width: 800px) {
  .blog_page .date {
    margin:-6vw 0 0;
  }
}





.radio-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
 margin: 1.2vw 0 0;
}


.form-group label.radio-item {
    display: flex;
    align-content: center;
    align-items: center;
    cursor: pointer;
}
.radio-item input[type="radio"] {
  display: none;
}

.radio-custom {
  display: inline-block;
  width: 3vw;
  height: 3vw;

  border: 1vw solid #ddd;
  border-radius: 50%;
  margin-right: 1vw;
  position: relative;
  transition: 0.3s;
}


.radio-item input[type="radio"]:checked + .radio-custom {
  border-color: #122059;
  background-color: #122059;
}

.radio-item input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1vw;
  height: 1vw;
  background-color: white;
  border-radius: 50%;
}

@media (max-width: 1260px) {
  .radio-custom {
  width: 6vw;
  height: 6vw;
    border: 2vw solid #ddd;
  }
  .radio-item input[type="radio"]:checked + .radio-custom::after {
    width: 2vw;
    height: 2vw;
  }
}
@media (max-width: 800px) {
  .radio-custom {
  width: 9vw;
  height: 9vw;
    border: 3vw solid #ddd;
  }
  .radio-item input[type="radio"]:checked + .radio-custom::after {
    width: 3vw;
    height: 3vw;
  }
}



.__ymDebugger{
  display: none;
}





/* === Collapsible Text Block === */
.collapsible-text {
  background: #fff;
  border-radius: 1.4vw;
  box-shadow: 0 0.6vw 1.8vw rgba(18, 32, 89, 0.08);
  margin: 4vw 0;
  overflow: hidden;
}
.collapsible-text summary {
  padding: 2vw 3vw;
  font-size: 2.4vw;

  color: #122059;
  cursor: pointer;

  position: relative;
  text-align: center;
  transition: background 0.2s;
  user-select: none;
}


.collapsible-text summary::after {
  content: '▶';
  position: absolute;
  right: 2vw;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 1.2vw;
  color: #4A90E2;
  transition: transform 0.3s ease;
}
.collapsible-text[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}



/* Сбрасываем двойные тени/радиусы у вложенного .content */
.collapsible-text .content {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  padding-top: 0;
}

/* Адаптивность */
@media (max-width: 1260px) {
  .collapsible-text summary { font-size: 3vw;  }
  .collapsible-text summary::after { right: 3vw; font-size: 2vw; }
  .collapsible-text summary::before { width: 60vw; height: 0.6vw; margin: 2.8vw auto 0; }
}
@media (max-width: 800px) {
  .collapsible-text summary { font-size: 4vw; padding: 4vw 6vw 4vw 3vw; }
  .collapsible-text summary::after { right: 3vw; font-size: 3vw; }
}
/* // === Collapsible Text Block === */


.line-desktop {
    display:flex;
  gap: 2vw;
  align-items: flex-start;
  flex-direction: row;
  justify-content: center;
}
.line-desktop-item{
  width: 100%;
}
@media (max-width: 1260px) {
  .line-desktop {
      flex-direction: column;
      gap: 6vw;
  }
}
@media (max-width: 800px) {
  .line-desktop {
      flex-direction: column;
      gap: 12vw;
  }
}









.stages_box ol {
    list-style: none;
    counter-reset: stage-counter;
    padding: 0;
    margin: 0;
}
.stages_box ol li {
    position: relative;
  padding: .55vw 0 0;
    margin-bottom: 2vw; 
    padding-left: 4.6vw; 
    min-height: 3vw;
}

.stages_box ol li::before {
    content: '';
    position: absolute;
    left: 1.5vw; 
    top: 2.5vw; 
    bottom: -3vw; 
    width: 0.15vw; 
    background-color: #e5e5e5;
    z-index: 1;
}
.stages_box ol li:last-child::before {
    display: none;
}
.stages_box ol li::after {
    counter-increment: stage-counter;
    content: counter(stage-counter);
    position: absolute;
    left: 0;
    top: 0;
    width:3vw;
    height:3vw;
    line-height: 2.6vw; 
    text-align: center;
    border: .15vw solid #e5e5e5;
    border-radius: 50%;
    color: #122059;
    font-weight: bold;
    background-color: #fff;
    z-index: 2;
}
@media (max-width: 1260px) {
.stages_box ol li {
  padding: 1.5vw 0 0;
  padding-left: 9vw; 
  min-height: 6vw;
}
.stages_box ol li::before {
  left: 3vw; 
  width: .2vw; 
}
.stages_box ol li:last-child::before {
    display: none;
}
.stages_box ol li::after {
  width:6vw;
    height:6vw;  
  line-height: 5.5vw;
    border: .2vw solid #e5e5e5;
}
}

@media (max-width: 800px) {
.stages_box ol li {
  padding: 2vw 0 0;
  padding-left: 14vw; 
  min-height: 12vw;
}
.stages_box ol li::before {
  left: 5vw; 
  width: .4vw; 
}
.stages_box ol li:last-child::before {
    display: none;
}
.stages_box ol li::after {
  width:10vw;
    height:10vw;  
  line-height: 9vw;
    border: .4vw solid #e5e5e5;
}
}












/* === Discounts Block === */
.box_discounts {
    margin: 5vw auto;
    padding: 0 2vw;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5vw;
}

@media (max-width: 1260px) {
    .discounts-grid {
      
        gap: 4vw;
    }
}

@media (max-width: 800px) {
    .discounts-grid {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
}

.discount-card {
    background: #FFFFFF;
    border-radius: 1.4vw;
    padding: 3vw;
    box-shadow: 0 0.4vw 1.2vw rgba(18, 32, 89, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 2vw;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f5ff;
    position: relative;
    overflow: hidden;
}

.discount-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0.4vw;
    background: linear-gradient(90deg, #122059 0%, #4A90E2 100%);
    opacity: 0.8;
}

@media (max-width: 1260px) {
    .discount-card {
      
              padding: 6vw;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .discount-card::before {
        height: 0.8vw;
    }
}

.discount-card:hover {
    transform: translateY(-0.5vw);
    box-shadow: 0 0.8vw 2vw rgba(105, 140, 184, 0.2);
}

.discount-icon {
    flex-shrink: 0;
    width: 6vw;
    height: 6vw;
    background: #F8FBFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
}

.discount-icon svg {
    width: 3.5vw;
    height: 3.5vw;
}

@media (max-width: 1260px) {
    .discount-icon {
        width: 12vw;
        height: 12vw;
    }
    .discount-icon svg {
        width: 7vw;
        height: 7vw;
    }
}

@media (max-width: 800px) {
    .discount-icon {
        width: 18vw;
        height: 18vw;
        margin-bottom: 2vw;
    }
    .discount-icon svg {
        width: 10vw;
        height: 10vw;
    }
}

.discount-content h3 {
    font-size: 1.8vw;
    font-weight: bold;
    color: #122059;
    margin: 0 0 1vw;
}

@media (max-width: 1260px) {
    .discount-content h3 {
        font-size: 3.2vw;
        margin-bottom: 2vw;
    }
}

@media (max-width: 800px) {
    .discount-content h3 {
        font-size: 5vw;
    }
}

.discount-value {
    font-size: 3.5vw;
    font-weight: 800;
    color: #4A90E2;
    margin: 0 0 1vw;
    line-height: 1;
}

@media (max-width: 1260px) {
    .discount-value {
        font-size: 6vw;
        margin-bottom: 2vw;
    }
}

@media (max-width: 800px) {
    .discount-value {
        font-size: 9vw;
    }
}

.discount-desc {
    font-size: 1.4vw;
    color: #698CB8;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1260px) {
    .discount-desc {
        font-size: 2.4vw;
    }
}

@media (max-width: 800px) {
    .discount-desc {
        font-size: 3.6vw;
    }
}
/* // === Discounts Block === */






.mobile_header {
  display:none;
  background-color: #fffe;
  position:fixed;
  border-radius: 3vw;
  line-height: 0;
  font-size:0;
  
  z-index: 8;
  top:2vw;
  left:2vw;
  width: 96%;

  justify-content: space-between;
  align-items: center;
  padding:1vw 2.4vw;
  
  box-sizing: border-box;
}
.mobile_header img { 
  width: 12vw; 
}
.mobile_header nav img { 
  width: 12vw;
  padding: 1vw 0 0 4vw;
}
.mobile_header button {
  border-width:0;
  background-color:transparent;
}
@media (max-width: 800px) {
  .mobile_header {
    display:flex;
  }
}






/* === Анимация результата калькулятора === */
@keyframes calcPopIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
    color: #96D4FF; 
  }
  40% {
    transform: translateY(-4px) scale(1.03);
    color: #4A90E2;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    color: #122059;
  }
}
.calcAnim {
  animation: calcPopIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  will-change: transform, opacity, color;
}






.video-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}
.video-list video {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    background: #000;
}
@media (min-width: 768px) {
    .video-list {
        flex-direction: row;
        gap: 25px;
    }
}

