/* ===========================
   БАЗОВІ СТИЛІ
=========================== */
body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #1e1e1e;
}
html, body {
    overflow-x: hidden;
}
/* ===========================
   ГОЛОВНЕ МЕНЮ / HERO
=========================== */
.language a, .language p{
    display: none;
}
.main_block{
    width: 84%;
    height: calc(100vh - 80px);
    background: #1e1e1e;
    padding: 0px 8%;
    color: white;
    display: flex;
    flex-direction: column;
    /* виправлено помилку з радіусом, логіка збережена */
}

.header_block{
    position: sticky;
    top: 0;
    width: 84%;
    background: #1e1e1e;
    height: 80px;
    display: flex;
    flex-direction: row;
    color: white;
    padding: 0 8%;
    z-index: 10000;
}

.logo{
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.logo p{
    font-size: 20px;
    font-weight: 900;
    font-family: Arial, Helvetica, sans-serif;
}

.language{
    flex-grow: 4;
}

.navigation,.contact_us{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.navigation{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    column-gap: 20px;
}

.language{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 35px;
}

.block_button{
    display: flex;
    flex-direction: row;
    flex-grow: 1;
}

.block_button a,.navigation a{
    outline: none;
    text-decoration: none;
    color: white;
    border-bottom: 2px solid #1e1e1e;
    transition: 0.2s;
}

.button_contact_us{
    width: 180px;
    height: 50px;
    border-radius: 10px;
    border: none;
    transition: 0.6s;
    border: 2px solid white;
}

.block_information_mein{
    width: 100%;
    height: calc(100vh - 90px);
    display: flex;
    flex-direction: row;
    align-items: center;
    /* зберігаємо флекс-логіку, додаємо можливість переносів */
    flex-wrap: wrap;
}

.inform_main{
    width: 60%;
    height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 0px 60px 0px;
    z-index: 2;
}

.img_main{
    height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

h1{
    font-size: 50px;
    margin: 0;
}
h2{
    font-size: 18px;
    font-weight: 300;
    width: 600px;
    max-width: 100%;
}
.h2_2{
    display: none;
}
.button_twice{
    margin-top: 20px;
    width: 400px;
    height: max-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* залишаємо флекс, без grid */
    flex-wrap: nowrap;
    gap: 0;
}

.button_contact_us_2,.view_vacancies{
    width: 190px;
    height: 50px;
    border-radius: 10px;
}
.button_contact_us_2{
    border: none;
    border: 2px solid white;
    transition: 0.2s;
}
.view_vacancies{
    background: #1e1e1e;
    border: 2px solid white;
    color: white;
    transition: 0.2s;
}
.fonb{
    width: 40%;
}
.fon{
    position: relative;
    right: 100px;
    width: 650px;
    height: auto;
}

/* ===========================
   БУРГЕР-МЕНЮ
=========================== */
.burger-checkbox {
  position: absolute;
  visibility: hidden;
}
.burger_main{
    display: none;
}
.burger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
}
.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: white;
}
.burger::before {
  top: 0;
  box-shadow: 0 11px 0 white;
  transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.burger::after {
  bottom: 0;
  transition: bottom .3s .15s, transform .3s;
}
.burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
}
.menu-list {
  position: fixed;              /* фіксуємо до екрана */
  top: 0;
  right: -100%;                 /* повністю за екраном */
  width: 100%;
  height: 100vh;
  background: #1e1e1e;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;

  transition: right 0.3s ease;  /* замість transform */
}

.menu-list li{
    width: 100%;
}
.menu-item {
  display: block;
  padding: 8px;
  color: white;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}
.menu-item:hover {
  background: rgba(255,255,255,.2)
}
.burger-checkbox:checked ~ .menu-list {
  right: 0;                     /* плавно заїжджає */
}
/* Показуємо бургер при екрані ≤ 1050px */
@media (max-width: 1050px) {
  .burger {
    display: flex;
  }
  .navigation {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: #1e1e1e;
    padding: 30px 0;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }
  .navigation.show {
    transform: translateY(0);
  }
  .navigation a {
    font-size: 20px;
    color: white;
  }
}

/* ===========================
   ХОВЕР-СТИЛІ ДЛЯ HERO
=========================== */
.button_contact_us:hover, .button_contact_us_2:hover{
    background: #1e1e1e;
    color: white;
    transition: 0.6s;
}
.view_vacancies:hover{
    background: white;
    color: #1e1e1e;
    transition: 0.6s;
}
.navigation a:hover{
    border-bottom: 2px solid white;
    transition: 0.2s;
}

/* ===========================
   ПЕРШИЙ БЛОК "ЧОМУ МИ?"
=========================== */
.first_info_block_why_we{
    width: 84%;
    padding: 70px 8% 0px 8%;
    display: flex;
    flex-direction: row;
    background: #1e1e1e;
}

.why_we{
    width: 30%;
    min-width: 300px;
    display: flex;
    align-items: center;
}
.why_we h2{
    margin: 0;
    width: max-content;
    font-size: 55px;
    font-weight: bolder;
    color: white;
}

.block_info{
    width: 70%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;                 /* твоя логіка переносу збережена */
}
.info_one,.info_two,.info_tree,.info_fore{
    border-radius: 30px;
    background: #1e1e1e;
    border: 3px solid;
    flex: 1 1 200px;               /* флекс-режим карток, без grid */
    padding: 30px;
    color: white;
    transition: border-color 0.3s ease;
}
.info_one div,.info_two div,.info_tree div{
    height: 50px;
}
.info_one, .info_two, .info_tree {
    overflow: hidden; /* щоб нічого не вилізало за рамки */
}
.info_one .img4 {
    position: relative;
    right: 30px;
    bottom: 10px;
    width: 100%;      /* розтягуємо по ширині */
    height: auto;
    object-fit: cover;
    z-index: 1;/* щоб картинка не деформувалась */
}
.info_two .img4 {
    position: relative;
    bottom: 30px;
    left: 30px;
    width: 100%;       /* розтягуємо по ширині */
    height: auto;
    object-fit: cover; /* щоб картинка не деформувалась */
    transform: rotate(180deg);
    z-index: 1;
}
.info_tree .img4 {
    position: relative;
    bottom: 0;
    left: 30px;
    width: 100%;       /* розтягуємо по ширині */
    height: auto;
    object-fit: cover; /* щоб картинка не деформувалась */
    transform: scaleX(-1);
    z-index: 1;
}
.bord{
    display: flex;
    flex-direction: row;
}
.border_one * {
    position: relative;
    z-index: 5;
}

.img5{
    position: relative;
    overflow: hidden;
}
.img5 img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;       /* розтягуємо по ширині */
    height: auto;
    object-fit: cover; 
}
.info_tree .img4{
    z-index: 1;
}
.info_one h3,.info_one p,.info_two h3,.info_two p,.info_tree h3,.info_tree p {
    position: relative;
    z-index: 2;
    color: white;
}
.info_one{
    color: #1e1e1e;
}
.info_two,.info_one,.info_tree,.info_fore{
    color: white;
}
.info_one div, .info_two div, .info_tree div{
    border: 0;
}
.block_info h3{
    font-size: 30px;
    margin-bottom: 0px;
    color: wh;
}

/* ===========================
   ДРУГИЙ БЛОК ІНФОРМАЦІЇ
=========================== */
.second_info_block{
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
    background: #1e1e1e;
}

.border_info_block{
    width:75%;
    height: max-content;
    border: 3px solid white;
    border-radius: 40px;
    margin-top: 200px;
    padding: 30px 4%;
    color: white;
}
.border_info_block h2{
    font-size: 55px;
    font-weight: 600;
    margin: 30px 0 30px 0;
}
.border_info_block button, .about_us{
    width: 200px;
    height: 50px;
    border-radius: 10px;
    background: white;
    border: 2px solid white;
    color: #1e1e1e;
    font-weight: bold;
    transition: 0.6s;
}
.border_info_block button:hover{
    background: #1e1e1e;
    color: white;
    transition: 0.6s;
}

.info_border{
    margin-top: 70px;
    margin-bottom: 30px;
    width: 100%;
    height: max-content;
    display: flex;                   /* флекс-логіка залишена */
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;                 /* дозволяємо перенос карток */
}
.info_border div{
    flex-grow: 1;
    width: 365px;
    background: white;
    border-radius: 30px;
    color: #1e1e1e;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info_border div h3{
    font-size: 30px;
}
.border_one, .border_two{
    height: 230px;
}
.border_tree{
    height: max-content;
    max-height: 230px;
}
.border_one h3,.border_two h3{
    margin: 0;
}
.border_one p,.border_two p{
    margin: 20px 0 0 0 ;
}
.border_tree h3{
    margin-bottom: 0;
}
.border_tree p{
    margin-bottom: 30px;
}

/* ===========================
   ТРЕТІЙ БЛОК ІНФОРМАЦІЇ
=========================== */

.third_info_block{
    width: 84%;
    min-height: calc(100vh - 100px);
    height: max-content;
    background: #1e1e1e;
    color: white;
    padding: 80px 8%;
}
.third_info_block h2{
    width: 100%;
    text-align: center;
    font-size: 55px;
    font-weight: 600;
    margin: 0;
}

.third_text{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.third_text p{
    width: 60%;
    text-align: center;
    font-size: 20px;
}
.flex_third_block{
    width: 100%;
    height: max-content;
    min-height: 300px;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.flex{
  width: calc(30% - 60px);
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px 30px;
}
.flex_logo{
    width: 100%;
    height: 100px;
}
.flex_logo img{
    width: 90px;
    height: 100px;
}
.flex_text{
    color: #1e1e1e;
    gap: 20px;
}
.flex_text h3{
    font-size: 25px;
    font-weight: 900;
    margin: 0;
}
.flex_text_button{
    margin-right: 20px;
    width: 250px;
    height: 50px;
    border-radius: 10px;
    font-size: 15px;
    color: #1e1e1e;
    background: white;
    border: 2px solid white;
    transition: 0.3s; 
}

.flex_text_button:hover{
    background: #1e1e1e;
    color: white;
    transition: 0.3s;
}
/* ===========================
   ЧЕТВЕРТИЙ БЛОК ІНФОРМАЦІЇ
=========================== */

.forth_info_block{
    width: 84%;
    padding: 100px 8% 50px 8%;
    display: flex;
    flex-direction: row;
    background: #1e1e1e;
}
.block_forth{
    width: 50%;
    color: white;
}
.forth_info_block h2{
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: rgba(206, 206, 206, 0.4);
}
.block_forth h3{
    font-size: 50px;
    margin-top: 30px;

}
.forth_div{
    display: flex;
    flex-direction: row;
}

.feedback_block{
    width: 50%;
    display: flex;
    justify-content: end;
    margin-top: 30px;
    flex-direction: column;
    align-items: end;
    position: relative;            /* ✅ щоб абсолютні елементи позиціонувались від цього блоку */
}

.feedback_text_block{
    width: 70%;
    min-height: 370px;
    border-radius: 40px;
    background: #1e1e1e;
    padding: 40px 45px;
    position: relative;            /* ✅ більше НЕ absolute */
    overflow: hidden;
    border: 2px solid white;
}

/* Кожен відгук */
.feedback_text_block > div{
    display: none;                 /* приховано за замовчуванням */
    opacity: 0;
    transition: opacity .35s ease; /* плавна поява/зникання */
}
.feedback_text_block > div.active{
    display: block;
    opacity: 1;
}

.stars img{
    width: 150px;
}

.feedback_text_block h3{
    margin: 0;
    font-size: 18px;
    color: #f3f3f3;
    line-height: 1.3;
}
.feedback_text_block p{
    margin: 40px 0 0;
    line-height: 1.6;
    color: rgba(255,255,255,.9);
}
.feedback_text_block div h3{
    font-size:25px;
}

.arrow{
    width: calc(70% + 80px);
    height: 120px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.arrow_left,.arrow_right{
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;               /* ✅ курсор-рука */
    user-select: none;
    transition: transform .15s ease, background .2s ease;
}
.arrow_left:hover,.arrow_right:hover{
    transform: translateY(-2px);
    background: rgba(30, 30, 30, 0.8);
}
.arrow_left img,
.arrow_right img{
    width: 45%;
}

/* ===========================
   ФУТЕР
=========================== */

.footer{
    width: 84%;
    height: 320px;
    background: #1e1e1e;
    padding: 80px 8%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    color: white;
}
.info_footer_text{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
}
.text_footer{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text_footer h1{
    font-size: 45px;
}
.nav,.info_footer,.grafic_footer{
    width: 25%;
}
.nav,.info_footer,.grafic_footer{
    padding-left: 30px;
}
.nav h3{
    font-size: 20px;
}
.info_footer h3,.grafic_footer h3{
    font-size: 17px;
    font-weight: bolder;
}
.nav p,.info_footer p,.grafic_footer p{
    font-size: 14px;
}
.nav{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 50px;
}
.nav a,.info_footer a{
    text-decoration: none;
    color: white;
}
.info_footer a{
    font-size: 14px;
}
.nav h3{
    margin-bottom: 5px;
}
.nav a{
    width: max-content;
    border-bottom: 2px solid #1e1e1e;
    transition: 0.2s;
}
.text_footer button{
    width: 60%;
    height: 50px;
    border-radius: 10px;
    margin-top: 25px;
    border: 2px solid white;
    transition: 0.4s;
}

.text_footer button:hover{
    background: #1e1e1e;
    color: white;
    transition: 0.4s;
}
.nav a:hover{
    border-bottom: 2px solid white;
    transition: 0.2s;
}
.img6{
    position: absolute;
    overflow: hidden;
}
.img6 img{
    position: relative;
    bottom: 32px;
    right: -620px;
    width: 47%;
}
.vacancy_index{
    width: 84%;
    padding: 0px 8%;
    background: #1e1e1e;
}
.vacancy1{
    margin: 20px;
    padding: 20px 15px;
    border: 3px solid white;
    border-radius: 10px
}
.vacancy1 p{
    margin-left: 20px;
    margin-right: 20px;
    color: rgb(255, 255, 255, 0.3);
    font-weight: 600;
}
.vacancy_index h2{
    width: 100%;
    margin: 0;
    color: white;
    font-size: 50px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 70px;
}
.vacancy1 .flex_text{
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
/* прихований текст */
.flex_text_p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease;
}

/* розкритий блок */
.vacancy1.open .flex_text_p {
    max-height: 2000px;
    opacity: 1;
}

/* інші p зникають */
.vacancy1.open p:not(.flex_text_p) {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

/* оформлення відкритого тексту */
.vacancy1.open .flex_text_p {
    border-radius: 14px;
    backdrop-filter: blur(4px);
    line-height: 1.6;
    font-size: 17px;
    color: #fff;
    margin-top: 15px;
}


/* кнопка "Надіслати заявку" */
.send_request_btn {
    width: calc(100% - 40px);
    background: white;
    color: #1e1e1e;
    padding: 25px 0px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
    /* Нові відступи */
    margin: 30px 20px;
}

.send_request_btn:hover{
    background: #1e1e1e;
    color: white;
    border: 2px solid white;
    transition: 0.3s;
}
.vacancy1 h3{
    margin-left: 20px;
}
.flex_text span{
    color: rgb(255, 255, 255, 0.3);
    margin-left: 20px;
    font-size: 18px;
}
.flex_text a{
    color: white;
    text-decoration: none;
    font-size: 15px;
    margin-right: 20px;
    font-weight: 600;
}
/* =========
==================
   АДАПТАЦІЯ 
=========================== */
.info_fore div{
    display: none;
}

/* приховуємо навігацію на планшетах, як у тебе */
@media (max-width: 1050px){
    .inform_main {
        width: 100%;
    }
    .vacancy1 .flex_text{
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .flex_text_button{
        margin-left: 20px;
        margin-bottom: 10px;
        width: calc(100% - 40px);
    }
    .feedback_text_block{
        min-height: 230px;
    }
    .img6 img{
        position: relative;
        bottom: 30px;
        right: -500px;
    }
    .bord{
        width: 100%;
    }
    .bord div{
        width: 100%;
        margin-top: 20px
    }
    .h2_2{
        display: block;
        text-align: center;
        width: 100%;
        margin-bottom: 0;
    }
    .navigation, .language,.contact_us{
        display: none;
    }
    .h2_1{
        display: none;
    }
    .first_info_block_why_we{
        width: 100%;
        display: flex;
        flex-direction: column;      /* залишаємось у flex */
        align-items: center;
        padding: 50px 0 0 0;
    }
    .block_info{
        width: 84%;
    }
    .why_we h2{
        margin-bottom: 50px;
        text-align: center;
    }
    .why_we{
        min-width: max-content;
        width: auto;
    }
    .inform_main h1{
        font-size: 40px;
    }
    .inform_main h2{
        font-size: 20px;
        width: 100%;
    }
    .button_twice{
        width: 70%;
        display: flex;      /* твоя початкова логіка */
        align-items: center;
        margin-top: 50px;
        gap: 20px;                   /* невеликий відступ між кнопками */
    }
    .button_contact_us_2, .view_vacancies{
        width: 100%;
        height: 120px;
        font-size: 30px;
    }
    .inform_main{
        height: max-content;
    }
    .main_block{
        height: calc(100vh - 70px);
        display: flex;
        justify-content: center;
    }
    .header_block{
        height: max-content;
    }
    .block_information_mein{
        height: max-content;
    }
    .border_info_block h2{
        width: 100%;
    }
    .button_twice button{
        height: 70px;
        font-size: 20px;
    }
    .forth_info_block{
        display: flex;
        flex-direction: column;
    }
    
    .block_forth,.feedback_block{
        width: 100%;
    }
    .feedback_block{
        align-items: center;
    }
    .block_button{
        display: none;
    }
    .burger_main{
        display: flex;
        justify-content: center;
        align-items: center;
    }

}
@media (max-width: 1419px){
    .info_two .img4{
        position: relative;
        bottom: 40px;
        left: 30px;
        width: 255px;
        margin-left: auto;
    }
    .info_one .img4{
        position: relative;
        top: -53px;
        right: 47px;
        width: 255px;
    }
    .info_tree .img4{
        position: relative;
        top: -60px;
        left: 30px;
        width: 255px;
    }
    .info_fore .img4{
        position: relative;
        top: -45px;
        left: -50px;
        width: 255px;
        transform: scaleY(-1);
    }
    .info_fore div{
        display: flex;
        flex-direction: column;
        height: 50px;
    }
    .info_fore{
        overflow: hidden;
    }
    .img6 img{
        position: relative;
        width: 35%;
        right: -570px;
    }
}
/* дрібніший брейкпоінт — тільки флекс-переноси */
@media (max-width: 1200px){
    .second_info_block{
        height: max-content;
    }
    .img6 img{
        position: relative;
        top: 10px;
        width: 30%;
    }
    .info_border{
        display: flex;
        flex-direction: column;     /* стек карток у колонку */
        align-items: stretch;
        margin-top: 40px;
    }
    .info_border div{
        width: calc(100% - 60px);
    }
    .border_info_block button{
        display: none;
    }
    .flex{
        width: 100%;
    }
    .third_text p{
        width: 100%;
    } 
    .footer{
        display: flex;
        flex-direction: column;
        height: max-content;
    }
    .text_footer{
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
    }
    .info_footer_text{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .info_footer_text div,.info_footer_text .nav{
        margin: 0;
        padding: 0;
    }
    .nav,.info_footer,.grafic_footer{
        width: max-content;
    }
}
@media (max-width: 1050px){
    .info_fore div{
        display: none;
    }
    .fon{
        display: none;
    }
    .border_info_block{
        width: 83%;
        border: none;
        margin-top: 0px;
    }
    .about_us_blok p{
        width: 100%;
    }
    .img6 img{
        display: none;
    }
    .third_info_block{
        padding-top: 0;
    }
}
@media (max-width: 993px){
    .info_tree .img4{
        position: relative;
        left: 125px;
    }
    .info_two .img4{
        position: relative;
        left: 125px;
    }
}
@media (max-width: 950px){
    .info_fore div{
        display: block;
    }
    .info_tree .img4{
        position: relative;
        left: 115px;
    }
    .info_two .img4{
        position: relative;
        left: 115px;
    }
}
/* мобільні корекції заголовку на hero */
@media (max-width: 750px){
    .inform_main h1{
        font-size: 40px;
        margin-top: 0px;
    }
    .button_twice{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .flex{
        width: 100%;
    }
    .forth_info_block{
        padding: 50px 8% 50px 8%;
    }
    .block_forth h2{
        font-size: 15px;
    }
    .block_forth h3{
        font-size: 20px;
        margin-top: 10px;
    }
    .feedback_text_block div h3{
        font-size: 20px;
    }
    .feedback_text_block div p{
        font-size: 15px;
        margin-top: 20px;
    }
    .info_footer_text div{
        width: 100%;
        text-align: center;
    }
    .nav,.text_footer p{
        display: none;
    }
    .info_tree .img4{
        position: relative;
        left: 25px;
    }
    .info_two .img4{
        position: relative;
        left: 25px;
    }
}
@media (max-width: 895px){
    .info_tree .img4{
        position: relative;
        left: 90px;
    }
    .info_two .img4{
        position: relative;
        left: 90px;
    }
}
@media (max-width: 785px){
    .info_tree .img4{
        position: relative;
        left: 40px;
    }
    .info_two .img4{
        position: relative;
        left: 40px;
    }
}
@media (max-width: 654px){
    .info_tree .img4{
        position: relative;
        left: 255px;
    }
    .info_two .img4{
        position: relative;
        left: 255px;
    }
}
@media (max-width: 560px){
    .info_tree .img4{
        position: relative;
        left: 180px;
    }
    .info_two .img4{
        position: relative;
        left: 180px;
    }
}
@media (max-width: 470px){
    .info_tree .img4{
        position: relative;
        left: 110px;
    }
    .info_two .img4{
        position: relative;
        left: 110px;
    }
}
@media (max-width: 360px){
    .info_tree .img4{
        position: relative;
        left: 10px;
    }
    .info_two .img4{
        position: relative;
        left: 10px;
    }
}

/* коли рамка не потрібна на мобільних (зберігаємо твою логіку) */
