.main_body_contacts_cl {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 0 1.5rem;
    padding-top: 15vh;
    gap: 5vh;
}

.catalog_names_contacts_cl {
    font-size: 6vh;
    font-weight: bold;
    /* background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: white;
    line-height: 1.2;
    animation: titleReveal 1s ease-out;
    padding-left: 4vw;
    padding-right: 4vw;
    text-align: center;
}

@media (max-width: 800px) {
    .catalog_names_contacts_cl {
        font-size: 3vh;
    }
}

/* =============== ГЛАВНЫЙ БЛОК =============== */

.contacts_block_cl {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 5vh;
}

.style_name_block_cl {
    font-size: 3.5vh;
    font-weight: bold;
    color: white;
}

@media (max-width: 700px) {
    .style_name_block_cl {
        font-size: 2.75vh;
    }
}

/* ----- Адрес ----- */

/* контакты */

.address_block_cont_cl {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

.address_block_cont_cl>div {
    width: 45%;
    height: auto;
    padding: 2.5%;
    background: var(--secondary);
    backdrop-filter: opacity(0.5);
    border-radius: 2vw;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 2vh;
}

.adress_sub_block_cl {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 1vw;
    font-size: 2.5vh;
}

.adress_sub_block_cl>svg {
    color: var(--accent);
}

.adress_sub_block_cl>span {
    color: white;
}

/* письма вам */

.letters_to_you_cl>input {
    width: 80%;
    height: 5vh;
    border: 1px gray solid;
    border-radius: 1vh;
    background-color: var(--primary);
    font-size: 3vh;
    padding-left: 1vw;
    color: white;
}

.letters_to_you_cl>textarea {
    width: 80%;
    height: 20vh;
    border-radius: 1vh;
    background-color: var(--primary);
    font-size: 3vh;
    resize: none;
    padding-left: 1vw;
    color: white;
}

@media (max-width: 700px) {
    .letters_to_you_cl>input {
        width: 100%;
    }

    .letters_to_you_cl>textarea {
        width: 100%;
    }
}

.send_a_message_cl {
    padding: 1vh;
    padding-left: 4vh;
    padding-right: 4vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1vh;
    background: linear-gradient(90deg, var(--accent), var(--accent), var(--accent), blueviolet);
    font-size: 2.5vh;
    font-weight: bold;
    transition: 300ms all;
}

.send_a_message_cl:hover {
    cursor: pointer;
    box-shadow: 0 0 10px blue, 0 0 20px blue, 0 0 40px blue;
}

/* ----- Адрес ----- */

.employee_block_cl {
    width: 100%;
    height: auto;
    margin-bottom: 15vh;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

.employee_unit_cl {
    width: 22.5%;
    height: auto;
    border-radius: 2vh;
    background-color: var(--gray_line_color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 2.5%;
    gap: 2vh;
}

.employee_unit_cl>div {
    width: 15vh;
    height: 15vh;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background-image: url(./specialists/specialist_1.png);
    background-size: cover;
}

.employee_unit_cl>b {
    font-size: 2.5vh;
}

.employee_unit_cl>span {
    font-size: 2.25vh;
    text-align: center;
    color: var(--gray_text_color);
}

.adress_sub_block_employee_cl {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 1vw;
    font-size: 2vh;
}

.adress_sub_block_employee_cl>svg {
    color: var(--accent);
}

.adress_sub_block_employee_cl>span {
    color: white;
}

@media (max-width: 1000px) {

    .contacts_block_cl {
        width: 95%;
    }

    .address_block_cont_cl>div {
        width: 47.5%;
    }

    .employee_block_cl {
        flex-wrap: wrap;
        gap: 5vh;
    }

    .employee_unit_cl {
        width: 47.5%;
    }
}

@media (max-width: 800px) {

    .address_block_cont_cl {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        gap: 3vh;
    }

    .address_block_cont_cl>div {
        width: 95%;
        padding: 5%;
    }

    .employee_block_cl {
        flex-direction: column;
        align-items: center;
        gap: 5vh;
    }

    .employee_unit_cl {
        width: 95%;
    }

    .adress_sub_block_employee_cl {
        width: 100%;
        justify-content: center;
    }
}

/* =============== ПАНЕЛЬ УПРАВЛЕНИЯ КОНТАКТАМИ =============== */

.contact_management_cl {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4vw;
}

.contact_management_cl>span {
    font-size: 2vh;
    font-weight: bold;
    text-decoration: underline;
    color: gray;
    transition: 300ms all;
    text-align: center;
}

.contact_management_cl>span:hover {
    cursor: pointer;
    color: var(--accent);
}

@media (max-width: 700px) {
    .contact_management_cl {
        flex-direction: column;
        margin-top: 8vh;
    }
}


/* =============== Сотруднечество =============== */

.cooperation_unit_cl {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.coo_unit_1_cl {
    font-size: 4vh;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 2.5px white, 0 0 5px white;
    margin-bottom: 2vh;
}

.coo_unit_2_cl {
    font-size: 2.5vh;
    color: white;
    margin-bottom: 1vh;
}

.coo_unit_4_cl {
    font-size: 3vh;
    font-weight: bold;
    color: white;
    margin-bottom: 1vh;
}

/* письма вам */

.coo_unit_3_cl {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2vh;
}

.coo_unit_3_cl>input {
    width: 80%;
    height: 5vh;
    border: none;
    border-radius: 1vh;
    background-color: var(--gray_line_color);
    font-size: 3vh;
    padding-left: 1vw;
    color: white;
}

.coo_unit_3_cl>textarea {
    width: 80%;
    height: 20vh;
    border-radius: 1vh;
    background-color: var(--gray_line_color);
    font-size: 3vh;
    resize: none;
    padding-left: 1vw;
    color: white;
}

@media (max-width: 700px) {
    .coo_unit_1_cl {
        font-size: 3vh;
    }

    .coo_unit_3_cl>input {
        width: 100%;
    }

    .coo_unit_3_cl>textarea {
        width: 100%;
    }

    .coo_unit_3_cl {
        width: 100%;
    }
}

/* =============== Согласие на обработку персональных данных =============== */

.data_consent_cl {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

/* --- мы на связи --- */

.we_are_in_touch_block_cl {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
}

.we_are_in_touch_cl {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-radius: 10px;
    border: 1px dashed gray;
    font-size: 2.5vh;
    font-weight: bold;
    color: gray;
    padding-left: 10px;
    padding-right: 15px;
    transition: 300ms all;
}

.we_are_in_touch_cl:hover {
    cursor: pointer;
    background-color: rgba(128, 128, 128, 0.25);
}