.contact_section__heading h3 {
    font-size: 34px;
    font-weight: 600;
    text-transform: capitalize;
    color: white;
}

.contact_section__heading p {
    font-size: 18px;
    color: white;
    max-width: 500px;
    margin-top: 12px;
}

.office_address {
    margin-top: 2rem;
}

.office_address__name h3 {
    font-size: 26px;
    text-transform: capitalize;
    color: var(--white-color);
}

.office_address__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

.office_address__info a {
    display: flex;
    gap: 10px;
    align-items: center;
}

.office_address__info a {
    color: white;
    font-size: 18px;
}

.office_address__info a:hover {
    color: var(--main-color);
}

.office_address__info a i {
    color: var(--white-color);
    font-size: 22px;
}

.contact_section {
    background-color: #E94256 !important;
}

.contact_section__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}


.contact_section__right-heading {
    border: 1px solid pink;
    padding: 1rem;
    border-bottom: 0;
}

.contact_section__right-heading h3 {
    font-size: 25px;
    color: white;
}

.contact_section__right form {
    border-top: 0 !important;
    border: 1px solid white;
}

.contact_input input,
.contact_input textarea {
    border: 1px solid white;
    width: 100%;
    outline: none;
    padding: 1rem;
}

.form_submit {
    padding: 1rem;
}

.form_submit button {
    background-color: var(--main-color);
    width: 100%;
    border: 1px solid var(--main-color);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.map_wrapper iframe {
    width: 100%;
}

@media(max-width:992px) {
    .contact_section__right {
        margin-top: 2rem;
    }
}

@media(max-width:768px) {
    .contact_section__heading h3 {
        font-size: 25px;
    }

    .contact_section__heading p {
        font-size: 15px;
        margin-top: 5px;
    }

    .office_address__name h3 {
        font-size: 22px;
    }

    .office_address__info a {
        font-size: 16px;
    }

    .contact_section__right-heading h3 {
        font-size: 20px;
    }
}