.contact-section {
    width: 100%;
    margin-top: 175px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section-container {
    gap: 64px;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.contact-left-block {
    display: flex;
    width: 523px;
    height: 655px;
    gap: 24px;
    flex-direction: column;
}

.contact-left-block-up {
    width: 523px;
    height: 425px;
    gap: 48px;
    border-radius: 24px;
    border-width: 1px;
    padding: 24px;
    border: 1px solid #E2E2E9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;

}

.contact-header-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    color: #242F4C;
    margin-bottom: 24px;
    font-style: normal;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-list li span {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;

    color: #48557A;
    transition: color 0.3s;
}

.contact-list a {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;

    color: #242F4C;
    transition: color 0.3s;
}

.contact-list li {
    display: flex;
}


.contact-list img {
    width: 42px;
    height: 42px;
    gap: 6px;
    border-radius: 12px;
    margin-right: 12px;
}

.social-media-blue {
    display: flex;
    flex-direction: column;
    gap: 24px;

}







.opening-hours {
    width: 523px;
    /* height: 206px; */
    gap: 48px;
    border-radius: 24px;
    border-width: 1px;
    padding: 24px;
    border: 1px solid #E2E2E9
}

.opening-hours h3 {
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    font-style: normal;
    color: #242F4C;
}




.contact-form {
    display: flex;
    width: 523px;
    height: 509px;
    gap: 24px;
    flex-direction: column;
    justify-content: center;
}

.contact-form-form {
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.contact-form h3 {
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    color: #242F4C;
}

.form-group-name {
    width: 523px;
    height: 78px;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.label-name {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    color: #242F4C;
}

.form-group-name input[type="text"] {
    width: 523px;
    height: 51px;
    gap: 5px;
    border-radius: 12px;
    padding: 16px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #242F4C;
    border: 1px solid #E2E2E9;
}

.form-group-em-ph {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.form-group-email {
    width: 250px;
    height: 78px;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.form-group-email input[type="email"] {
    width: 250px;
    height: 51px;
    gap: 5px;
    border-radius: 12px;
    padding: 16px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #242F4C;
    border: 1px solid #E2E2E9;

}

.form-group-phone {
    width: 250px;
    height: 78px;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.form-group-phone input[type="tel"] {
    width: 250px;
    height: 51px;
    gap: 5px;
    border-radius: 12px;
    padding: 16px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #242F4C;
    border: 1px solid #E2E2E9;
}

.form-group-message {
    width: 523px;
    height: auto;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.form-group-message textarea {
    width: 523px;
    height: 150px;
    border-radius: 12px;
    padding: 16px;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #242F4C;
    border: 1px solid #E2E2E9;
    resize: none;
}

.btn-submit {
    width: 523px;
    height: 51px;
    gap: 10px;
    border-radius: 12px;
    padding: 16px;
    background-color: #157DB1;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-submit:hover {
    background-color: #1269B3;
}


@media (max-width: 1200px) {
    .contact-content {
        flex-direction: column-reverse;
        gap: 84px;
    }
}

@media (max-width: 992px) {

}

@media (max-width: 768px) {

}

@media (max-width: 576px) {
    .contact-section-container,
    .contact-form,
    .form-group-name,
    .form-group-name input[type="text"],
    .form-group-email,
    .form-group-phone,
    .form-group-email input[type="email"],
    .form-group-phone input[type="tel"],
    .form-group-message,
    .form-group-message textarea,
    .btn-submit,
    .contact-left-block,
    .contact-left-block-up,
    .opening-hours {
        width: 100%;
    }
    .contact-section {
        padding: 10px;
    }
    .form-group-em-ph {
        flex-direction: column;
        gap: 24px;
    }
}