@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("./fonts/Raleway-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {padding: 0;margin: 0;border: 0;box-sizing: border-box;}
a {text-decoration: none;color: inherit;}
ul, ol, li {list-style: none;}
img {vertical-align: top;}
h1, h2, h3, h4, h5, h6 {font-weight: inherit;font-size: inherit;}
html, body {height: 100%;line-height: 1;}
textarea, button, input {font-weight: inherit;font-size: inherit;color: inherit;font-family: inherit;}
button {cursor: pointer;background-color: inherit;}

body {
  font: normal normal 16px/1.5em "Raleway", sans-serif;
  color: #000;
  background-color: #ffffff;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;
  background-color:#f0f0f0;
}
.wrapper > main {
  flex-grow: 1;
}
[class*="__container"] {
  max-width: 1280px;
  margin: 0 auto;
}

[class*="__title"] {
  font-size: 36px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 45px;
}
@media (max-width: 1280px) {
  [class*="__container"] {
    padding: 0 50px;
  }
  [class*="__title"] {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 25px;
  }
}

@media (max-width: 1020px) {
  [class*="__container"] {
    padding: 0 40px;
  }
  [class*="__title"] {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  [class*="__container"] {
    padding: 0 15px;
  }
  [class*="__title"] {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 25px;
  }
}

h2 {
  font: normal bold 36px/1.2em "Raleway", sans-serif;
  color: #000;
  margin-bottom: 1.25em;
  text-align: center;
}
h3 {
  font: normal bold 24px/1.2em "Raleway", sans-serif;
  color: #000;
}
.subtitle { padding-bottom: 2.5em; text-align: center }
h2 + .subtitle { margin-top: -2.2em; }
small { font-size: 85%; }
mark {
  padding: 5px 10px;
  background: #E9F8FF;
  color: inherit;
  border-radius: 5px;
}

/* .section {background-color: #fff; padding: 90px 0;} */
/* .section-grey {background-color: #f0f0f0; padding: 90px 0; }
.section-blue {background-color: #113882; padding: 40px 0; color: #fff; }
.section-blue h2 { color: #fff; } */

 .two-col{
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
}
.two-col-first{  
  display: grid;
  gap: 30px;
  grid-template-columns: 1.5fr 1fr;
  align-items: flex-start;
}
.two-col-second{  
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1.5fr;
  align-items: flex-start;
}
@media (max-width: 1020px) {
  .two-col{
    gap: 10px;
    grid-template-columns: 1fr;
    align-items: center;
  }
  .map_img{text-align: center;}
  .two-col-second{  
    gap: 10px;
    grid-template-columns:  1fr;
  }
  .two-col-first {
    grid-template-columns: 1fr; /* Одноколонкова структура */
    grid-template-areas:
      "second"
      "first"; /* Зміна порядку на flex-reverse */
  }
  .two-col-first .first {
    grid-area: first;
  }

  .two-col-first .second {
    grid-area: second;
  }  
  }



/* -----------header-------------- */
.header {
  background-color: #113882;
  padding: 10px 0;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  height: 205px;
}
.header a{
  cursor: pointer;
}
.header__logo img{
  max-width: 200px;
}

.header__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.header__block{
  padding: 20px 0;

}
/* .header__block,
.footer__block {
  width: max-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
} */
.container_burger {
  display: none;
  position: absolute;
}
/* .vc_logo__full { display: block; }
.vc_logo__min {
  display: none;
} */
.header__menu {
  padding: 10px;
  border-top: 1px solid #CFD8DC;
  border-bottom: 1px solid #CFD8DC;
  margin: auto 30px;
}

.menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 18px;
  text-wrap: balance;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}
.menu__item a:hover {
  color: #5ce696;
  transition: .2s color;
}


#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: fixed;
  left: 25px;
  top: 40px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -10px;
}
.menu__btn > span::after {
  content: '';
  top: 10px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 108px;
  left: -100%;
  width: 100vw;
  height: max-content;
  margin: 0;
  padding: 40px 0;
  list-style: none;
  background-color: #113882;
  box-shadow: inset 0px 2px 10px rgba(0, 0, 0, 0.1);
  transition-duration: .25s;
  bottom: 0;
  color: #fff;
  text-align: center;
}
.menu_b_item {
  display: block;
  padding: 14px 0;
  font-size: 20px;
  text-decoration: none;
  transition-duration: .25s;

}
.menu_b_item:hover {
  background-color: #48c09c;
}
.lang {
  letter-spacing: 1.5px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 10px;
}
.lang:hover{
  color: #5ce696;
 }
 .relative {position: relative;}

.header__phone { 
  position: absolute;
  z-index: 10;
  top:-80px;
  right: 40px;
  padding-bottom: 40px;
  color: #fff;
 }
.header__phone__number {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s ease-in-out;
}
.header__phone__number:hover {
  color: #c8c8c8;
}
.header__phone__number:active {
  color: #c8c8c8;
}
.header__phone__number-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -3px;
}
.header__phone-mobile {
  display: none;
}
/* ---------------------------------- */
@media (max-width: 1020px) {
  .header__menu {
    display: none;
  }
  .container_burger {
    display: block;
  }
  .header{
    height: 110px;
  }
  .header .widget_nav_menu>div,.header .widget_nav_menu .menu-main-container,.header .widget_nav_menu .menu-main-ru-container {
    position:fixed;
    top: 70px;
    bottom: 0;
    background: #fff;
    left: 0;
    transform: translateX(-150%);
    width: 265px;
    z-index: 102;
    transition: transform 0.5s ease-in-out;
    box-shadow: inset 0px 2px 10px rgba(0, 0, 0, 0.1)
  }
}



/* ----------theme----------- */
.theme {
  margin-top: 205px;
  padding: 40px 0;
}
.theme li{list-style: inside;
}
.theme li::marker {
  margin-left: -5px; 
  margin-right: 2px !important; /* Зменшення марджину */
  color: #555; /* Зміна кольору маркера */
  font-size: 14px; /* Зміна розміру */
}
.theme__name {
  padding-top: 1em;
}
.theme h1 {
  font-size: 24px;
  line-height: 1em;
  text-align: center;
  font-weight: 700;
  padding-bottom: 40px;

  /* text-transform: uppercase; */
}

.theme h3 {
  font-size: 20px;
  line-height: 1em;
  padding: 30px;
}

.flex{
  display: flex;
  gap: 10px;
  justify-content:right;
  align-items: center;
}
.flex-sector{
  display: flex;
  gap: 10px;
  justify-content:left;
  align-items: center;
}
.sector-title{
  color: #48c09c;
  font-weight: 700;
}
@keyframes moveRight {
  0% {
    transform: translateX(0); /* Початкова позиція */
  }
  100% {
    transform: translateX(20px); /* Кінцева позиція */
  }
}
.schema{
  width: 1100px;
  margin-top: -10px;
}

.moving-symbols {
  padding-top: 3px;
  width: 15px;
  display: inline-block; /* Щоб можна було анімувати */
  font-size: 16px; /* Розмір шрифту */
  animation: moveRight 2s linear infinite; /* Анімація тривалістю 2 секунди, повторюється нескінченно */
}

.about_us_text {
  font-size: 16px;
  line-height: 1.55;
}
.management_text {
  font-size: 16px;
  line-height: 1.55;
  text-align: right;
}
.about_us_block {
  margin: 40px 0;
}
.services_block {
  margin: 80px 0;
}

.about_us_img  {
  width: 100%;
  height: 340px;
  background: url('../img/-min.png') center no-repeat;
  background-size: contain;
}
.block-with-image {
  align-items: center;
}
.verif_img{
  width: 100%;
  height: 440px;
  background: url('../img/photo.svg') center no-repeat;
  background-size: contain;
}

.audit_img{
  width: 100%;
  height: 440px;
  background: url('../img/vcaLoop.svg') center no-repeat;
  background-size: 50%;
}
.teach_img{
  width: 100%;
  height: 440px;
  background: url('../img/teach.svg') center no-repeat;
  background-size: 50%;

}
.low_img{
  width: 100%;
  height: 280px;
  background: url('../img/low.svg') center no-repeat;
  background-size: contain;

}
.download{
  color:rgb(14, 72, 130) ;
  font-weight: 700;
  text-decoration: underline;
}
.underline{
  text-decoration: underline;
}
.complaint_img {
  width: 100%;
  height: 280px;
  background: url('../img/garantee.svg') center no-repeat;
  background-size: contain;
}
.apil_img{
  width: 100%;
  height: 480px;
  background: url('../img/vca1.svg') center no-repeat;
  background-size: contain;
}
.verico_img{
  width: 100%;
  height: 140px;
  background: url('../img/logo_verico.svg') center no-repeat;
  background-size: contain;
}
.naau_img{
  background-color: #fff;
  width: 100%;
  height: 190px;
  background: url('../img/n1.png') center no-repeat;
  background-size: contain;
}

.contacts_icon{
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  justify-content: right;
  align-items: center;
  font-size: 20px;
}
.contacts h3{
font-size: 32px;
text-align: center;
}

.contacts_icon > :nth-child(odd) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts_icon > :nth-child(even):hover {
  color: #38957a;
}

.contacts_icon img{
height: 51px;
}
.faq-vca{
  width: 760px;
}
.faq-vca-img {
 text-align: center;
 margin-top: -60px;
}
.faq-vca-qw {
  padding: 28px 40px 27px;
  border-radius: 40px;
  background-color: #5a6785;
  color: #E9F8FF;
  margin-bottom: 30px;
}
.faq-vca-qw span{
  padding-right: 15px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.faq-vca-ans{
  background-color: #eaf1fc;
  padding: 28px 40px 27px;
  border-radius: 40px;
  display: flex;
  margin-bottom: 40px;
  line-height: 1.75;

}
.faq-vca-ans-t{
  padding-right: 15px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.a-hover{
  font-weight: 700;
  color: #113882;
}
.a-hover:hover{
  color: #48c09c;
}
.sector{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
/* ---------------------- */
@media (min-width: 1920px) {
  .theme {background-size: contain;
}
}
@media (max-width: 1280px) {
  .theme__content h3 {font-size: 22px;}
  .schema{

      width: 90vw;
      margin-top: -10px;

    
  }
}
@media (max-width: 1020px) {
  .theme__content h1 {font-size: 38px;}
  .theme__content {width: 70%;}
  .contacts_icon{
    grid-template-columns: 60px 280px;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 20px;
  }
  .services_block {
    margin: 20px 0;
  }
  .verif_img,.teach_img, .audit_img{
    margin: auto;
    width: 60%;
    height: 280px;
  }
  .theme h3 {
    padding: 10px;
  }
  .sector{
      grid-template-columns: repeat(2,1fr);
      gap: 10px;    
  }
  .flex-sector svg{ width:20px}
  .low_img, .complaint_img{
      height: 170px;
  }
  .apil_img {
    height: 270px;
}

  .faq-vca{
    width: 90vw;
  }
  .faq-vca-img img{
  width: 80vw;
  height: 100%;
  }
  .theme {
    margin-top: 110px;
    padding: 40px 0;
  }
  
}
@media (max-width: 920px) {
  .theme {
    background-position: 60%;
    min-height: 300px;
    padding-bottom: 10px;
  }
.header__phone {display: none;}
}

@media (max-width: 767px) {
  .theme__content h1 {font-size: 36px;}
  .theme__content {
    width: 100%;
    text-align: center;
  }
  .theme__content h3 {font-size: 21px;}
  .theme__content p {font-size: 18px;}
  .faq-vca-qw,.faq-vca-ans {padding: 18px 36px 17px;margin-bottom: 15px;}
}

@media (max-width: 660px) {
  .faq-vca-ans{
    flex-direction: column;
  }
}







 /* ----------footer------------ */
.footer {
  background-color: #f0f0f0;
  font-size: 16px;
  line-height: 1.5;
  border-top:1px solid #c8c8c8;

}
.footer_logo img{
  max-width: 353px;
  max-height: 160px;
}
.footer__container {
  display: flex;
  justify-content:center;
  align-items: center;
  white-space: nowrap;

}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  padding:40px;
  border-left:1px solid #c8c8c8;
}
.footer-title{font-size: 32px;}
@media (max-width: 768px) {
  .footer-title{font-size: 24px;}
  .footer__container {
    flex-direction: column;
  }
  .footer__social {
    text-align: center;
    padding:10px;
    border-left:none;
  }
  
  .footer {
    margin-top: 20px;
    padding: 10px 0;
  }
}
#toggleDiv {
  cursor: pointer;
}

#contentDiv {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

#contentDiv.active {
  max-height: 1200px; /* Задайте максимальну висоту для блоку, коли він відкритий */
  opacity: 1;
}
#toggleDiv2 {
  cursor: pointer;
}

#contentDiv2 {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

#contentDiv2.active {
  max-height: 1200px; /* Задайте максимальну висоту для блоку, коли він відкритий */
  opacity: 1;
}

/*  */
/* .consultation-form {
  max-width: 100%;
  margin: 20px auto;
  padding: 0;
  text-align: center;
}

.consultation-form h3 {
  margin-bottom: 35px;
  font-size: 36px;
    color: rgb(26, 47, 117);
}

button {
  flex: 0 0 auto;
  padding: 10px 50px;
  border: none;
  border-radius: 5px;
  background-color: #48c09c;
  color: white;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
  background-color: #43b190;
  transform: translateY(-2px);
}

button:focus {
  outline: none;
}

.form-message {
  margin-top: 10px;
  font-size: 0.9em;
  display: none;
}

.form-message.error {
  color: #dc3545;
}

.form-message.success {
  color: #28a745;
} */
.consultation-form {
  max-width: 100%;
  margin: 120px auto;
  text-align: center;
}

.consultation-form h3 {
  margin-bottom: 35px;
  font-size: 36px;
  color: rgb(26, 47, 117);
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}

.form-group input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  height: 60px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, transform 0.08s;
}
.textarea {   text-indent: 0; /* Прибираємо відступ першого рядка */
  padding: 10px; /* Додаємо внутрішні відступи, якщо потрібно */
  font-size: 16px; /* Стандартний розмір тексту */
  line-height: 1.5; /* Висота рядків */

}
.form-group textarea {
  padding: 16px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, transform 0.08s;
}
.form-group textarea::placeholder {
  font-size: 1em;
color: #555;
}


.form-group input:focus {
  outline: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.form-error {
  margin-top: 5px;
  font-size: 0.85em;
  color: #dc3545;
  display: block;
  line-height: 1.5;
  opacity: 1;
  height: 18px;
}

button {
  height: 60px; 
  flex: 0 0 auto;
  padding: 10px 50px;
  border: none;
  border-radius: 5px;
  background-color: #48c09c;
  color: white;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

button:focus {
  outline: none;
}
.right {
  text-align: right;
}
.consultation-form button{
margin-top: 26px;
}
/* .minusTop {
  margin-top: -60px;
} */

.form-group-text {
  margin-top: 10px;
}

@media (max-width: 1020px) {
  .form-row {
    flex-direction: column;
  }
  .consultation-form {
    margin: 40px auto;
  }
  .header__logo img{
    max-width: 140px;
  }
  
  
}
.animate-slide {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

/* Add visible styles */
.animate-slide.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add delays for each element */
.footer__social .animate-slide:nth-child(1) {
  animation-delay: 0s;
}

.footer__social .animate-slide:nth-child(2) {
  animation-delay: 0.2s;
}

.footer__social .animate-slide:nth-child(3) {
  animation-delay: 0.4s;
}

.footer__social .animate-slide:nth-child(4) {
  animation-delay: 0.6s;
}
.marginLeft20{margin-left: 20px;}
