.body{
    margin: 0;
    font-family: Verdana, Geneva, sans-serif;
    background: #e0e0e0;
}

.banner{
    position: fixed;        /* Главное свойство - фиксирует элемент */
    top: 0;                 /* Прижимаем к верхнему краю */
    left: 0;                /* Прижимаем к левому краю */
    right: 0;               /* Растягиваем на всю ширину */
    
    width: 100%;
    height: 100px;
    background: #C7D0CC;

    box-shadow: 0 2px 10px rgb(0, 0, 0);
    z-index: 1000;          /* Чтобы баннер был поверх всего */
}

.navigation{
    width: 100%;
    height: 70px;
    background: #00a8a86b;
    /* box-shadow: inset 0px 4px 20px rgb(0 0 0); */
    display: flex;

    margin-top: 100px;       /* Отступ сверху = высота баннера + небольшой запас */
    padding: 0px;
}

.link_services{
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid black;
    text-decoration: none;
    
    /* Одинаковый формат цветов */
    box-shadow: 0 5px 15px rgba(0,0,0,0);
    text-shadow: 0 5px 15px rgba(0,0,0,0);
    
    /* Простой transition для теста */
    transition: 
        box-shadow 0.5s ease,
        text-shadow 0.5s ease;
}

.link_services:hover {
box-shadow: -3px 8px 20px rgba(0, 0, 0, 1);
    text-shadow: -2px 4px 20px rgba(0,0,0,1);
}

.link_services:active{
    background: rgb(131 131 131);
    color: white;
}

.link_services_1{
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid black;
    text-decoration: none;
    
    /* Одинаковый формат цветов */
    box-shadow: 0 5px 15px rgba(0,0,0,0);
    text-shadow: 0 5px 15px rgba(0,0,0,0);
    
    /* Простой transition для теста */
    transition: 
        box-shadow 0.5s ease,
        text-shadow 0.5s ease;
}

.link_services_1:hover {
box-shadow: -3px 8px 20px rgba(0, 0, 0, 1);
    text-shadow: -2px 4px 20px rgba(0,0,0,1);
}

.link_services_1:active{
    background: rgb(131 131 131);
    color: white;
}

.conteiner{
    width: 80%;
    height: auto;
    background: rgb(224 224 224);
    margin: 0 auto;
    padding: 10px 10px 10px 10px;
    display: flex;
    flex-direction: row;
    gap: 0px 30px;
}

.left_aboutANDprise{
    width: 50%;
}

.about_text{
    margin: 0;
}

.right_form{
    width: 50%;
    background: aliceblue;
}

.form{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 580px;
    border: 2px solid yellowgreen;
}

.questionANDstar{
    width: 100%;
    display: flex;
}

.question{
    height: 155px;
    padding: 15px 0px;
}

.textarea_question{
    width: 300px;
    height: 150px;
    font-family: Verdana;
    font-weight: 700;
    font-size: 14px;
}

.star{
    padding: 13px 0px;
}

.redStar{
    color: red;
}

.name{
    height: 22px;
    padding: 15px 0px;
}

.input_name{
    width: 298px;
    font-family: Verdana;
    font-weight: 700;
    font-size: 14px;
}

.city{
    padding: 15px 0px;
}

.textarea_city{
    width: 300px;
    font-family: Verdana;
    font-weight: 700;
    font-size: 14px;
}

.number_phoneANDstar{
    width: 100%;
    display: flex;
}

.number_phone{
    padding: 15px 0px;
}

.number_phone_textarea{
    width: 300px;
    height: 32px;
    font-family: Verdana;
    font-weight: 700;
    font-size: 14px;
}

.time{
    padding: 15px 0px;
}

.time_textarea{
    width: 300px;
    font-family: Verdana;
    font-weight: 700;
    font-size: 14px;
}

.checkbox{
    padding: 15px 0px;
}


.send_letter{
    height: 36px;
    width: 178px;
    padding: 7px 0px 0px 67px;;
}

.buttomSEND_LETTER{
    width: 100%;
    height: 100%;
    font-size: 18px;
    background: linear-gradient(172deg, yellow, orange, red);
}

.tir-listANDprice{
    display: flex;
}

.tir-list{
    width: 75%;
}

.price{
    width: 25%;
    margin-block-start: 1em;
    padding-inline-start: 70px;
}



.basement{
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    background: rgb(175 172 172);
    gap: 0px 10px;
}

.basement_logo{
    width: 25%;
    padding: 20px 0px 0px 0px
}

.basement_useful{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px 0px;
    padding: 20px 0px 0px 0px
}

.useful_link{
    text-decoration: none;
}

.free_space{
    width: 25%;
    padding: 20px 0px 0px 0px
}