.contact-section {
    background: rgb(245, 245, 245);
    padding: 60px 0;

}

.contact-section-container {
    display: flex;
}

.message-heading {
    width: 55%;
    ccolor: rgb(0, 0, 0);
    font-family: Inter;
    font-size: 36px;
    font-weight: 500;
}

.contacts-block {
        border-radius: 15px;
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block-wrapper{
    display: flex;
    flex-direction: column;

}

.contact-block-title {
    color: rgb(0, 0, 0);
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
     margin-bottom: 20px;
}

.contact-block-text {
        color: rgb(0, 0, 0);
    font-family: Inter;
    font-size: 20px;
    font-weight: 300;

}

@media (max-width: 991px) {
    .contact-section-container {
        flex-direction: column;
    }

    .message-heading {
        width: 100%;
        margin-bottom: 40px;
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .contact-section{
        padding: 30px 0;
    }

    .message-heading {
        font-size: 20px;
    }

    .contacts-block {
        padding: 10px;
        gap: 15px;
    }

    .contact-block-title {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .contact-block-text {
        font-size: 12px;
    }


}
