body {
    font-family: 'Mulish', sans-serif;
}

.containerBottomForm {
    display: none;
}


/* =========================================formModal====================================== */

.containerFormModal {
    width: 90%;
    display: none;
    position: fixed;
    top: 80px;
    z-index: 3000;
    left: 50%;
    transform: translateX(-50%);
}

.containerFormModal.visible {
    display: block;
}

.contentFormModal {
    
    width: 100%;
    padding: 30px 40px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.904);
    backdrop-filter: blur(10px);
   }

   
   .contentFormModal h1 {
       color: #222B3E;
       font-size: 32px;
       font-weight: 600;
   }
   
   .contentFormModal form {
       display: flex;
       flex-direction: column;
       color: #222B3E;
       font-size: 14px;
       font-weight: 500;
   }
   
   .contentFormModal form input {
       padding: 8px 16px;
       border: 0px;
       border-radius: 5px;
       background: white;
       color: #AEADBA;
       font-size: 14px;
       font-weight: 500;
   }
   
   .contentFormModal form textarea {
       padding: 8px 16px;
       border: 0px;
       border-radius: 5px;
       background: white;
       color: #AEADBA;
       font-size: 14px;
       font-weight: 500;
   }
   
   .contentFormModal p:nth-child(3) {
       display: block;
   }
   
   .btnForm {
       background-color: #28a745;
       color: #fff;
       padding: 10px 0px;
       font-weight: 600;
        font-size: 16px;
   
       border: none;
       border-radius: 5px;
       cursor: pointer;
        transition: background-color 0.3s ease;
   }
   
   .btnForm:hover{
       background-color: #218838;
   }

   /* ================================================EndFormLModal====================== */
/* @font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-SemiBold.eot') format('eot'),
         url('../fonts/Gilroy/Gilroy-SemiBold.ttf') format('ttf'),
         url('../fonts/Gilroy/Gilroy-SemiBold.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Regular.eot') format('eot'),
         url('../fonts/Gilroy/Gilroy-Regular.ttf') format('ttf'),
         url('../fonts/Gilroy/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
} */
  
h2 {
    font-family: 'Gilroy';
    font-size: 56px;
    font-weight: 600;
    color: rgba(34, 43, 62, 1);
}

h3 {
    font-family: 'Gilroy';
    font-size: 40px;
    font-weight: 700;
    color: #222B3E;
    line-height: 44px;
}


.container {
    width: 1229px;
    margin: 0 auto;
    padding: 0px;
}


/* ===========================================Header============================== */

.headerContact {
    margin-right: 10px;
}

.contentHeaderContact {
    display: flex;
    flex-direction: column;
}

.contentHeaderContact a {
    display: flex;
    text-decoration: none;
    color: rgba(34, 43, 62, 1);
    font-size: 17px;
    font-weight: 600;
    font-family: 'Gilroy';
    line-height: 20px;

    transition: 0.5s;
}

.contentHeaderContact a:hover{
    color: rgba(202, 155, 83, 1);

}

.contentHeaderContact a:nth-child(1)::before{
    content: url(../images/footer/phone.png);
}

.contentHeaderContact a:nth-child(2)::before{
    content: url(../images/footer/phone.png);
}

.imgNavBar {
    width: 20px;
    height: 20px;
}


.navBarFAQMobail {
    display: none;
}

/* button-all */

/* end-button-all */

.red {
    border: 1px solid red;
}

a {
    text-decoration: none;
}

.backdropFilter {
    backdrop-filter: blur(10px);
}

.btn-vector {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    font-size: 18px;
    color: white;
    background: transparent; /* Изначально прозрачный фон */
    border: none;
    cursor: pointer;
    border-radius: 50px; /* Закруглённая форма кнопки */
    overflow: hidden; /* Для скрытия заливки */
    transition: color 0.4s ease; /* Плавная смена цвета текста */
}

.btn-vector .circle {
    position: absolute;
    left: 0px; /* Смещение круга влево */
    width: 45px; /* Размер круга */
    height: 45px;
    border: 2px solid rgba(239, 192, 121, 1); /* Пустой круг с золотой рамкой */
    border-radius: 50%;
    transition: opacity 0.4s ease, transform 0.4s ease; /* Эффект исчезновения круга */
    z-index: 1; /* Круг выше заливки */
}

.btn-vector .text {
    position: relative;
    z-index: 2; /* Текст выше заливки и круга */
    white-space: nowrap; /* Предотвращение переноса текста */
    font-size: 15px;
    letter-spacing: 4%;
}

.btn-vector::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, rgba(239, 192, 121, 1), rgba(239, 192, 121, 1)); /* Красная заливка */
    z-index: 0; /* Заливка ниже текста */
    transition: width 0.4s ease; /* Плавная заливка */
}

.btn-vector:hover .circle {
    opacity: 0; /* Исчезновение круга */
    transform: scale(0.8); /* Уменьшение круга перед исчезновением */
}

.btn-vector:hover::before {
    width: 100%; /* Полная заливка кнопки */
}

.btn-vector:hover {
    color: white; /* Текст остаётся белым */
}
/* container_header */

.container_header {
    width: 100%;
    background-color: white;
    top: 0;
    left: 0;
    transition: all 0.4s ease-in-out; /* Плавный переход */
}

.container_header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(0); /* Остаётся на месте */
    z-index: 2000;
}

.btn_header {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(202, 155, 83, 1);

    color: rgba(202, 155, 83, 1);
    font-size: 12px;
    font-weight: 600;
    transition: 1s;
}

.btn_header:hover {
    background: rgba(202, 155, 83, 1);
    color: white;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link {
    color: rgba(34, 43, 62, 1);
    font-size: 17px;
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(202, 155, 83, 1);
}

.navlink {
    padding: 15px 0px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(151, 151, 151, 0.1);
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 2500;
}

.navlink p {
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #878787;
}

.btn_navLink {
    background: none;
    width: max-content;
    color: rgba(202, 155, 83, 1);
    border: none;

    font-size: 17px;
    font-weight: 500;
}

.btn_navLink::before {
    content: url(../images/icons/Vector.png);
    margin-right: 10px;
    display: inline-block;
}

.network-link {
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    color: #878787;
    transition: 0.5s;
}

.network-link:hover {
    text-decoration: none;
    color: #E52647;
}

/* =====================================================================================container_header_inner" */

.container_header_inner {
    background: url('../images/background/Main\ page\ \(1\).png') no-repeat;
    background-size: cover;
    background-position: center;
}

.container_header_inner h2 {
    color: white;
    font-size: 56px;
    font-family: 'Gilroy';
    font-weight: 600;
    line-height: 60px;
}

.container_header_inner p {
    color: rgba(255, 255, 255, 0.801);
    font-size: 17px;
}

.container_header_inner .btn {
    color: white;
    font-size: 17px;

}

.headerContentInner {
    margin-bottom: 24px;
}

.block_header_inner {
    margin-bottom: 56px;
    padding-left: 32px;
    border-left: 1.5px solid rgba(255, 255, 255, 0.5);
}


.container_header_inner_content {
    padding: 400px 0px;
    overflow: hidden;

    position: relative;
}

.content_header_inner {
    left: 20px;
    position: absolute;
    top: -10%;
    opacity: 0;
    transition: top 1s ease, opacity 0.5s ease; /* Плавный переход */
}


/* =================================================================================container_about */

.container_about {
    background: rgba(244, 244, 239, 1);
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.content_about {
    padding: 400px 0px 430px 0px;
}

.container_about h1 {
    font-size: 56px;
    font-weight: 600;
}

.container_about p {
    font-size: 17px;
    font-weight: 500;
    color: #5B667A;
}

.imgHomeDariya {
    width: 400px;
    height: 450px;
}

/* ============animation-Content-about============== */

.blockWidth {
    height: 100%;
    width: 80%;
    position: absolute;
    overflow: hidden;
}

.blockWidth::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 1.5px; /* Толщина границы */
    background: linear-gradient(to left, rgb(194, 194, 194), rgba(194, 194, 194, 0));
    transform: scaleX(0); /* Скрываем градиент */
    transform-origin: left; /* Анимация начинается слева */
    transition: transform 3s ease; /* Используем transition вместо animation */
}

.blockWidth::after {
    content: "";
    position: absolute;
    bottom: 28%; /* Размещаем у нижней границы */
    left: 0;
    width: 100%;
    z-index: 0;
    height: 1.5px; /* Толщина нижней границы */
    background: linear-gradient(to left, rgb(194, 194, 194), rgba(194, 194, 194, 0));
    transform: scaleX(0); /* Скрываем градиент */
    transform-origin: left; /* Анимация начинается слева */
    transition: transform 3s ease; /* Используем transition вместо animation */
}

.blockWidth.animate-border::before,
.blockWidth.animate-border::after {
    transform: scaleX(1); /* Анимация расширения градиента */
}

.blockHeight {
    position: absolute;
    overflow: hidden;
    height: 100%;
    width: 70%;
}

.blockHeight::before {
    content: "";
    position: absolute;
    top: 0;
    /* Градиент начинается сверху */
    left: 66%;
    z-index: 10;
    width: 1.5px;
    /* Полная ширина блока */
    height: 100%;
    /* Высота псевдоэлемента */
    background: linear-gradient(to top, rgb(194, 194, 194), rgba(194, 194, 194, 0));
    /* Градиент сверху вниз */
    transform: scaleY(0);
    /* Изначально невидим */
    transform-origin: top;
    /* Анимация начинается с верхнего края */
    transition: transform 3s ease;
}

.blockHeight::after {
    content: "";
    position: absolute;
    top: 0;
    right: 10%;
    z-index: 1000;
    width: 1.5px;
    /* Полная ширина блока */
    height: 100%;
    /* Высота псевдоэлемента */
    background: linear-gradient(to top,rgba(194, 194, 194, 0), rgb(194, 194, 194));
    /* Градиент сверху вниз */
    transform: scaleY(0);
    /* Изначально невидим */
    transform-origin: bottom;
    /* Анимация начинается с верхнего края */
    transition: transform 3s ease;
}

.blockHeight.animate-border::before,
.blockHeight.animate-border::after {
    transform: scaleY(1); /* Начало анимации */
}

/* ============END-animation-Content-about============== */

.content_img {
    position: relative;
    z-index: 1000;
}

.text_content {
    z-index: 2000;

    top: 25%;
    width: 40%;
    left: 0%;
    position: absolute;
    
    transition: 2s; /* Плавное появление */
    
}

.content_img {
    top: 20%;
    right: 15%;
    position: absolute;
    

    opacity: 0;
    transition: 3s;
}

.quote {
    color: rgba(91, 102, 122, 1);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px);
    
    width: 30%;
    padding: 20px;

    position: absolute;
    top: 60%;
    right: 20%;
    z-index: 1500;

    opacity: 0;
    transition: 2s;
}

.header_quote {
    margin-bottom: 10px;
}

.main_quote {
    border-bottom: 1px solid rgba(218, 218, 215, 1);
    margin-bottom: 10px;
}


.text-about {
    padding-left: 50px;

    border-left: 2px solid rgba(239, 192, 121, 1);
}

.container_about button {
    color: rgba(34, 43, 62, 1);
}

.container_about button:hover {
    color: white;
}

/* ===============================================================container-working */

.headerWorking {
    margin-bottom: 72px;
}

.containerWorking {
    position: relative;
    padding: 120px 0px 195px 0px;
    background:
    81% 100% no-repeat url(../images/a-b/R.png),
    43% 100% no-repeat url(../images/a-b/T.png),
    12% 100% no-repeat url(../images/a-b/C.png),
    77% 22% no-repeat url(../images/a-b/O.png), 
    46% 22% no-repeat url(../images/a-b/R.png),
    12% 22% no-repeat url(../images/a-b/P.png),
    rgba(255, 255, 255, 1);
}

.mainWorking {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(2, auto);
    justify-content: space-between;
    row-gap: 50px;
}

.mainWorking h4 {
    font-size: 20px;
    font-family: 'Gilroy';
    font-weight: 700;
    line-height: 24px;
    color: rgba(34, 43, 62, 1);
}

.mainWorking p {
    font-size: 17px;
    font-family: 'Gilroy';
    font-weight: 500;
    line-height: 20px;
    color: rgba(91, 102, 122, 1);
    padding-left: 40px;
}


.blockWorking1 {
    width: 361px;
    height: 176px;
}

.blockWorking1 h4::before {
    content: "01";
    color: rgba(239, 192, 121, 1);

    margin-right: 15px;
}

.blockWorking2 {
    width: 346px;
    height: 176px;
}

.blockWorking2 h4::before {
    content: "02";
    color: rgba(239, 192, 121, 1);

    margin-right: 15px;
}

.blockWorking3 {
    width: 347px;
    height: 176px;
}

.blockWorking3 h4::before {
    content: "03";
    color: rgba(239, 192, 121, 1);

    margin-right: 15px;

}

.blockWorking4 {
    width: 366px;
    height: 176px;
}

.blockWorking4 h4::before {
    content: "04";
    color: rgba(239, 192, 121, 1);

    margin-right: 15px;
}

.blockWorking5 {
    width: 392px;
    height: 176px;
}

.blockWorking5 h4::before {
    content: "05";
    color: rgba(239, 192, 121, 1);

    margin-right: 15px;
}
/* =================================================================Services */
.container_services {
    padding: 100px 0px;
    background: linear-gradient(#213A55, #16283B);
}


.headerServices {
    margin-bottom: 50px;
    color: white;
}

.headerServices h2 {
    color: #FFFFFF;
}

.mainServices {
    width: max-content;
    margin-bottom: 50px;
    margin: 0px auto 50px auto;
}

.blockServices {
    width: 407px;
    height: 375px;
    padding: 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: 1s;
}

.blockServices:hover {
    box-shadow: inset 0px -120px 120px -120px #EFC079;
}





.blockServices1 {
    background: 100% 100% / 100% 100% no-repeat url(../images/services/Group\ 60.png);
}

.blockServices2 {
    background: 100% 100% / 100% 100% no-repeat url(../images/services/Group\ 59.png);
}

.blockServices3 {
    background: 100% 100% / 100% 100% no-repeat url(../images/services/Group\ 58.png);
}

.blockServices4 {
    background: 100% 100% / 100% 100% no-repeat url(../images/services/Group\ 63.png);
}

.blockServices5 {
    background: 100% 100% / 100% 100% no-repeat url(../images/services/Group\ 64.png);
}

.blockServices6 {
    background: 100% 100% / 100% 100% no-repeat url(../images/services/Group\ 65.png);
}

.blockServices7 {
    background: 100% 100% / 100% 100% no-repeat url(../images/services/Group\ 61.png);
}

.blockServices8 {
    background: 100% 100% / 100% 100% no-repeat url(../images/services/Group\ 62.png);
}

.blockServices9 {
    background: 100% 100% / 100% 100% no-repeat url(../images/services/Group\ 42.png);
}

.textServices {
    width: 100%;
    color: white;
    font-size: 26px;
    border-left: 2px solid white;
    padding: 5px 14px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}



.blockServices {
    width: 407px;
    height: 375px;
    padding: 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: 1s;
    position: relative; /* Обязательно, чтобы позиционировать содержимое внутри блока */
}

.blockServices:hover {
    box-shadow: inset 0px -100px 100px -100px #EFC079;
}

.blockServices:hover .circle-btn .circle {
    transform: translateX(40px); /* Смещение круга вправо */
    background-color: #EFC079; /* Заливка круга */
}

.blockServices:hover .circle-btn .arrow {
    color: white; /* Стрелка становится белой */
}

.circle-btn {
    position: absolute; /* Позиционируем кнопку внутри блока */
    bottom: 20px; /* Расстояние от нижнего края */
    right: 20px; /* Расстояние от правого края */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Разделение круга и стрелки */
    width: 100px;
    height: 100px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    overflow: hidden; /* Чтобы анимация не выходила за границы */
}

.circle {
    margin: 0px;
    position: relative;
    width: 40px; /* Размер круга */
    height: 40px;
    border: 2px solid #EFC079; /* Рамка круга */
    border-radius: 50%;
    background: transparent;
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.arrow {
    margin: 0;
    position: absolute;
    top: 40%;
    left: 25%;
    transform: translateY(-50%); /* Центрирование стрелки */
    font-size: 50px;
    color: #EFC079;
    transition: color 0.4s ease; /* Плавное изменение цвета стрелки */
}

  /* .contentServices2 {
    display: none;
  } */

  .contentServices2.d-none {
  display: none;
}

/* =================================================================END-Services */

/* ===========================================================container_customer_assistance */

.container_customer_assistance {
    color: white;
    padding: 120px 0px 144px 0px;

    background: 100% 100% / 50% 100% no-repeat url(../images/background/Photo.png),
    100% 100% / 100% 100% no-repeat url(../images/background/Background.png);
}

.blockCustomer p:nth-child(2) {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Gilroy';
    line-height: 24px;
    color: rgba(255, 255, 255, 1);
}

.blockCustomer p:nth-child(3) {
    font-size: 17px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.container_customer_assistance h2 {
    font-size: 56px;
    font-weight: 600;
    font-family: 'Gilroy';
    line-height: 60px;
    color: rgba(244, 244, 239, 1);
}



.container_progressBar {
    position: relative;
}

.label {
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    position: absolute;
}

.label2 {
    left: 42%;
    top: 55%;
    /* translate: -50% -50%; */
    position: absolute;
}

.loader-container {
    position: relative;
    padding: 150px 100px;
    width: max-content;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #EFC079;
  }
  
  
  .percentage {
    font-size: 48px;
    font-weight: bold;
    color: white;
  }
  
  .description {
    font-size: 17px;
    color: rgba(255, 255, 255, 1);
    line-height: 22px;
    font-weight: 400;
    font-family: 'Gilroy';
}

  .line-loader {
    position: absolute;
    top: 50%;
    left: 55%;
    width: 70%;
    border: 1px solid #EFC079;
    transform: translateY(-50%);
  }

/* ===========================================================================Container-client================ */

.containerClient {
    background: #F4F4EF;
    padding: 93px 0px 130px 0px;
}

/* ========================================================================container_about_in_numbers */
.footerSectionMobail5 {
    display: none;
}

.contentSection5 {
    padding: 100px 0px;
}

.headerSection5 {
    margin-bottom: 50px;
}

.mainSection5 {
    padding: 32px;
    box-shadow: -10px 10px 10px rgba(77, 79, 100, 0.07);
}

.mainSection5 p:nth-child(1) {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Gilroy';
    line-height: 24px;
    color: rgba(26, 26, 26, 1);
}

.mainSection5 p:nth-child(2) {
    font-size: 17px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 22px;
    color: rgba(91, 102, 122, 1);
}

.footerSection5 h1 {
    font-size: 72px;
    font-weight: 600;
    color: #EFC079;
}

.footerSection5 span {
    font-size: 50px;
    color: #EFC079;
}

.footerSection5 p {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: rgba(26, 26, 26, 1);
    font-family: 'Gilroy';
}
/* ===================Animation-linear-number */

.lineBlockNumber1 {
    position: relative;
    height: 40px;
}

.lineBlockNumber2 {
    position: relative;
    height: 40px;
}

.lineBlockNumber3 {
    position: relative;
    height: 40px;
}

.lineBlockNumber4 {
    position: relative;
    height: 40px;
}

.blockWidthNumber {
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: hidden;
}


.blockWidthNumber::after {
    content: "";
    position: absolute;
    bottom: 0px; /* Размещаем у нижней границы */
    left: 0;
    width: 100%;
    z-index: 0;
    height: 1.5px; /* Толщина нижней границы */
    background: rgba(218, 218, 215, 1);
    transform: scaleX(0); /* Скрываем градиент */
    transform-origin: left; /* Анимация начинается слева */
    transition: transform 2s ease; /* Используем transition вместо animation */
}

.blockWidthNumber.animate-border::after {
    transform: scaleX(1); /* Анимация расширения градиента */
}

.blockHeightNumber {
    height: 100%;
    width: 100%;
    position: absolute;
    overflow: hidden;
}

.blockHeightNumber::before {
    content: "";
    position: absolute;
    top: 0; /* Градиент начинается сверху */
    left: 0%;
    z-index: 0;
    width: 1.5px; /* Полная ширина блока */
    height: 100%; /* Высота псевдоэлемента */
    background: rgba(218, 218, 215, 1); /* Градиент сверху вниз */
    transform: scaleY(0); /* Изначально невидим */
    transform-origin: top; /* Анимация начинается с верхнего края */
    transition: transform 1s ease;
}

.blockHeightNumber.animate-border::before {
    transform: scaleY(1); /* Начало анимации */
}

.circleNumber {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    top: 90%;
    left: -2px;
    background: rgba(34, 43, 62, 1);

    opacity: 0;
    transform: scale(1); /* Лёгкое уменьшение размера */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Плавная анимация */
}

.circleNumber.visible {
    opacity: 1;
    transform: scale(1); /* Возвращаем нормальный размер */
}

.contentNumber {
    opacity: 0;
    transition: 1s;
}

/* ===================================================End-animation-linear-number */

/* ================================================containerSection6 */

.containerSection6 {
    padding: 120px 0px;
    background: rgba(244, 244, 239, 1);
    overflow-x: hidden;
    position: relative;

}

.headerSection6 h1{
    margin: 0px;
    padding: 0px;
    font-size: 48px;
    font-weight: 600;
}

.imgSeciton6 {
    position: relative;
    opacity: 0;
    transition: 2s;
}

.imgSeciton6.visible {
    opacity: 1;
}


.itemSection {
    position: relative;
    transform: translateX(100%); /* Скрыт за пределами экрана */
    opacity: 0;
    transition: transform 1s ease, opacity 0.5s ease;
    border-left: 1.5px solid rgba(202, 155, 83, 1);
    padding-left: 20px;
    margin-bottom: 30px;
}

.itemSection.visible {
    transform: translateX(0); /* Перемещаем в видимую область */
    opacity: 1;
}

.itemSection p:nth-child(1) {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Gilroy';
    line-height: 24px;
    color: rgba(34, 43, 62, 1);
}

.itemSection p:nth-child(2) {
    font-size: 17px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 20px;
    color: rgba(34, 43, 62, 0.85);
}

.blockHeightSection6 {
    position: absolute;
    overflow: hidden;
    top: 0;
    height: 100%;
    width: 100%;
}

.blockHeightSection6::before {
    content: "";
    position: absolute;
    top: 0;
    /* Градиент начинается сверху */
    left: 15%;
    width: 2px;
    /* Полная ширина блока */
    height: 100%;
    /* Высота псевдоэлемента */
    background: linear-gradient(to top, rgba(194, 194, 194, 1), rgba(194, 194, 194, 0));
    /* Градиент сверху вниз */
    transform: scaleY(0);
    /* Изначально невидим */
    transform-origin: top;
    /* Анимация начинается с верхнего края */
    transition: transform 3s ease;
}

.blockHeightSection6::after {
    content: "";
    position: absolute;
    top: 0;
    left: 37.5%;
    width: 2px;
    /* Полная ширина блока */
    height: 100%;
    /* Высота псевдоэлемента */
    background: linear-gradient(to top,rgba(194, 194, 194, 0), rgb(194, 194, 194));
    /* Градиент сверху вниз */
    transform: scaleY(0);
    /* Изначально невидим */
    transform-origin: bottom;
    /* Анимация начинается с верхнего края */
    transition: transform 3s ease;
}

.blockHeightSection6.animate-border::before,
.blockHeightSection6.animate-border::after {
    transform: scaleY(1); /* Начало анимации */
}

/* ================================================endContainerSerction6 */

/* container_reviews */

.container_reviews {
    padding: 120px 0px 198px 0px;
    background: rgba(255, 255, 255, 1);
}

.contentReviews {
    box-shadow: 0px 10px 20px rgba(77, 79, 100, 0.07);
    border-radius: 3px;
}

.contentReviews .content_reviews:nth-child(1) {
    border: none;
}

.container_reviews h2 {
    font-size: 56px;
    font-weight: 600;
    font-family: 'Gilroy';
    line-height: 60px;
}

.content_reviews {
    border-left: 1px solid rgba(218, 218, 215, 1);
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    width: 400px;
}

.content_reviews p {
    font-family: 'Gilroy';
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
}

/* ========================================================================media */
.container_mediaAboutUs {
    padding: 120px 0px;
    background: linear-gradient(#213A55, #16283B);

    color: white;
}

.container_mediaAboutUs time {
    border-bottom: 1.5px solid rgba(239, 192, 121, 1);
    padding-bottom: 10px;
}

.container_mediaAboutUs h1 {
    font-size: 56px;
    font-weight: 700;
}

.contentMedia {
    max-width: 1229px;
    width: 100%;
    margin: 0 auto;
}

.contentMedia h2 {
    line-height: 60px;
    font-size: 56px;
    font-weight: 600;
    font-family: 'Gilroy';
    color: #FFFFFF;
}

.blockMedia1 {
    position: relative;
    width: 605px;
    height: 348px;
    overflow-y: hidden;
    background: 100% 100% / 100% 100% no-repeat url(../images/media/image1.png);
}

.blockMedia1 .textMedia {
    position: absolute;
    bottom: -50px;

    backdrop-filter: blur(10px);
    padding: 10px;
    color: white;
    transition: 1s;
}

.blockMedia1 .textMedia.active {
    bottom: 0px;
}

.blockMedia2 {
    position: relative;
    width: 296px;
    height: 348px;
    overflow-y: hidden;
    background: 100% 100% / 100% 100% no-repeat url(../images/media/snapedit_1736246784051\ 1.png);
}

.blockMedia2 .textMedia {
    position: absolute;
    bottom: -70px;
    backdrop-filter: blur(10px);
    padding: 10px;
    color: white;
    transition: 1s;
}

.blockMedia2 .textMedia.active {
    bottom: 0px;
}

.blockMedia3 {
    position: relative;
    width: 296px;
    height: 348px;
    overflow-y: hidden;
    background: 100% 100% / 100% 100% no-repeat url(../images/media/3\ посилання.png);
}

.blockMedia3 .textMedia {
    position: absolute;
    bottom: -155px;
    backdrop-filter: blur(10px);
    padding: 10px;
    color: white;
    transition: 1s;
}

.blockMedia3 .textMedia.active {
    bottom: 0px;
}

.blockMedia4 {
    position: relative;
    width: 296px;
    height: 348px;
    overflow-y: hidden;
    background: 100% 100% / 100% 100% no-repeat url(../images/media/image\ \(2\).png);
}

.blockMedia4 .textMedia {
    position: absolute;
    bottom: -50px;
    backdrop-filter: blur(10px);
    padding: 10px;
    color: white;
    transition: 1s;
}

.blockMedia4 .textMedia.active {
    bottom: 0px;
}

.blockMedia5 {
    position: relative;
    width: 296px;
    height: 348px;
    overflow-y: hidden;
    background: 100% 100% / 100% 100% no-repeat url(../images/media/5\ посилання.png);
}

.blockMedia5 .textMedia {
    position: absolute;
    bottom: -70px;
    backdrop-filter: blur(10px);
    padding: 10px;
    color: white;
    transition: 1s;
}

.blockMedia5 .textMedia.active {
    bottom: 0px;
}

.blockMedia6 {
    position: relative;
    width: 605px;
    height: 348px;
    overflow-y: hidden;
    background: 100% 100% / 100% 100% no-repeat url(../images/media/6\ посилання.png);
}

.blockMedia6 .textMedia {
    position: absolute;
    bottom: -20px;
    backdrop-filter: blur(10px);
    padding: 10px;
    color: white;
    transition: 1s;
}

.blockMedia6 .textMedia.active {
    bottom: 0px;
}

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

.container_faq {
    background: #F4F4EF;
    padding: 100px 0px;
}


.linkNavBarFAQ {
    font-size: 17px;
    font-weight: 600;
    font-family: 'Gilroy';
    line-height: 20px;
    color: rgba(34, 43, 62, 1);
    transition: 1s;
}

.linkNavBarFAQ:hover {
    color: #CA9B53;
    cursor: pointer;
}

.linkNavBarFAQ.active {
    color: #CA9B53;
}

.contentFAQ {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-in 0.2s, visibility 0s linear 0.2s;
}

.contentFAQ.visible {
    max-height: 500px; /* Задать достаточно большое значение */
    opacity: 1;
    visibility: visible;
}


.blockContentFAQ {
    border-left: 1.5px solid #CA9B53;
    padding-left: 20px;
    margin-bottom: 35px;
}

.blockContentFAQ p:nth-child(1) {
    color: rgba(34, 43, 62, 1);
    font-size: 20px;
    font-weight: 700;
    font-family: 'Gilroy';
    line-height: 24px;
    margin-bottom: 8px;
}

.blockContentFAQ p:nth-child(2) {
    color: rgba(91, 102, 122, 1);
    font-size: 17px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 20px;
}

.blockContentFAQ.visible{
    display: block;
}


/* =============================================ContainerForm */

.successSend {
    display: none;
    padding: 70px 0px;
}

.successSendModal {
    display: none;
}



.container_form {
    padding: 100px 0px;
    background: url(../images/background/5U0A1202\ \(1\)\ 1.png) no-repeat;
    background-size: cover;
}

.container_form h2 {
    color: rgba(255, 255, 255, 1);
    font-size: 56px;
    font-weight: 600;
    font-family: 'Gilroy';
    line-height: 60px;
}

.container_form h2:nth-child(2) {
    display: none;
}

.container_form p:nth-child(4) {
    display: none;
}

.container_form p:nth-child(3) {
    display: none;
}

.successSend p:nth-child(3) {
    display: block;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 20px;
    color: rgba(91, 102, 122, 1);
}

.successSend p:nth-child(4) {
    display: block;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 20px;
    color: rgba(91, 102, 122, 1);
}

.container_form p {
    color: rgba(255, 255, 255, 0.838);
    font-size: 20px;
    font-weight: 700;
    font-family: 'Gilroy';
    line-height: 24px;
}

.contentForm {
 padding: 30px 40px;
 border-radius: 5px;
 background: rgba(255, 255, 255, 0.904);
}

.contentForm h1 {
    color: #222B3E;
    font-size: 32px;
    font-weight: 600;
}

.contentForm form {
    display: flex;
    flex-direction: column;
    color: #222B3E;
    font-size: 14px;
    font-weight: 500;
}

.contentForm form input {
    padding: 8px 16px;
    border: 0px;
    border-radius: 5px;
    background: white;
    color: #AEADBA;
    font-size: 14px;
    font-weight: 500;
}

.contentForm form textarea {
    padding: 8px 16px;
    border: 0px;
    border-radius: 5px;
    background: white;
    color: #AEADBA;
    font-size: 14px;
    font-weight: 500;
}

.contentForm p:nth-child(3) {
    display: block;
}

.btnForm {
    background-color: #28a745;
    color: #fff;
    padding: 10px 0px;

    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btnForm:hover{
    background-color: #218838;
}

/* =================================================================loader============================= */

.blockLoadingSendForm {
    padding: 100px 0px;
    display: none;
}

.blockLoadingSendForm.visible {
    display: block;
}

.blockLoadingSendForm h3{
    font-size: 20px;
}

.form-loader {
    display: block; /* Лоадер скрыт по умолчанию */
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #007bff; /* Цвет вращающейся части */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* =================================================================loaderModal============================= */

.blockLoadingSendFormModal {
    padding: 50px 0px;
    display: none;
}

.blockLoadingSendFormModal.visible {
    display: block;
}

.blockLoadingSendFormModal h3{
    font-size: 20px;
}

.form-loader {
    display: block; /* Лоадер скрыт по умолчанию */
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top-color: #007bff; /* Цвет вращающейся части */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* =========================================================container_footer */

.container_footer {
    padding: 100px 0px;
}

.container_footerMobail {
    display: none;
}

.headerFooter {
    border-bottom: 2px solid #E4E2E2;
}

.container_footer h2 {
    color: rgba(34, 43, 62, 1);
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    font-family: 'Gilroy';
}

.blockContact {
    display: flex;
    flex-direction: column;
    align-items: start;
}


.blockContact p {
    display: flex;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Gilroy';
    color: rgba(91, 102, 122, 1);
    /* line-height: 20px; */
    white-space: normal; /* Разрешает перенос строк */
    word-break: break-word; /* Переносит слова, если они не помещаются */
    line-height: 1.5; /* Делаем текст более читаемым */
}

.btnFooter {
    background: #CA9B53;
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blockContact a{
    display: flex;
}

.blockContact p:nth-child(1) {
    color: rgba(34, 43, 62, 1);
    font-size: 20px;
    font-weight: 700;
    font-family: 'Gilroy';
    line-height: 24px;
}

.blockContact p:nth-child(7) {
    margin-top: 20px;
    color: rgba(34, 43, 62, 1);
    font-size: 20px;
    font-weight: 700;
    font-family: 'Gilroy';
}

.blockContact p:nth-child(6)::before {
    content: url(../images/contact/sotialMedia.png);
    margin-right: 10px;
}

.blockContact a:nth-child(2)::before {
    content: url(../images/footer/buildings.png);
    margin-right: 10px;
}

.blockContact a:nth-child(3)::before {
    content: url(../images/footer/envelope.png);
    margin-right: 10px;
}

.blockContact a:nth-child(4)::before {
    content: url(../images/footer/phone.png);
    margin-right: 10px;
}

/* .blockContact a:nth-child(5)::before {
    content: url(../images/footer/phone.png);
    margin-right: 10px;
} */

.blockContact a:nth-child(5)::before {
    content: url(../images/footer/telegram.png);
    margin-right: 10px;
}

.blockContact a:nth-child(7)::before {
    content: url(../images/contact/instagram.png);
    margin-right: 10px;
}

.blockContact a:nth-child(8)::before {
    content: url(../images/contact/facebook.png);
    margin-right: 10px;
}

.blockContact a:nth-child(9)::before {
    content: url(../images/contact/tiktok.png);
    margin-right: 10px;
}

.container_footer a {
    text-decoration: none;
    color: rgba(91, 102, 122, 1);
    font-size: 17px;
    font-weight: 500;
    font-family: 'Gilroy';
    line-height: 20px;

    transition: 0.5s;
}

.container_footer a:hover {
    color: rgba(202, 155, 83, 1);
}

.firstContent {
    display: none;
}

.firstContent.visible {
    display: block;
}

.nextContent {
    display: none;
}

.nextContent.visible {
    display: block;
}

.containerModalForm {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.464);
}

.containerModalForm.visible {
    display: block;
    position: fixed;
    z-index: 2000;
    top: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.464);
}

.contentModalForm {
    width: 25%;
    margin: 5% auto;
}

.btnClose {
    background: none;
    border: none;
}

.btnModal {
  width: 100%;  
  font-size: 17px;
  line-height: 20px;
  font-weight: 600;
  color: #222B3E;
  font-family: 'Gilroy';
  padding: 10px 44px;
  border-radius: 4px;
  border: none;
  background: #EFC079;
  transition: 1s;
}

.btnModal:hover {
    background: #CA9B53;
}

.mapProctor {
    width: 100%;
}