.contact_section__left h3 {
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
}

.contact_section__left {
    background-color: var(--yellow-color);
    padding: 2rem;
}

.contact_section__left p {
    font-size: 18px;
    margin-top: 12px;
    line-height: 30px;
    color: var(--white-color);
}

.contact_form {
    margin-top: 2rem;
}

.contact_form button {
    background-color: var(--main-color);

}

.contact_form input,
.contact_form textarea,
.contact_form .form-select,
.job-form input,
.job-form .form-select {
    width: 100%;
    border: 1px solid #ccc !important;
    margin-bottom: 12px;
    padding: 7px;
    outline: none !important;
    color: var(--black-color);
    font-weight: 500;
    outline: none !important;
}
.job-form button{
    width: 100%;
}

.contact_form input::placeholder,
.job-form input::placeholder,
.contact_form textarea::placeholder {
    color: var(--black-color);
}

.contact_section__right {
    position: sticky;
    top: 10rem;
}

.contact_section__right h3 {
    text-transform: capitalize;
    font-weight: 700;
    color: var(--main-color);
}

.contact_section__right p {
    margin-top: 12px;
    line-height: 1.6;
    font-size: 18px;
}

.company_info {
    margin-top: 2rem;
}

.company_info__box h6 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    color: var(--main-color);
}

.company_info__box {
    margin-bottom: 16px;
}

.company_info__box a {
    display: block;
    margin-top: 10px;
    color: #000;
}

.company_info__box a:hover {
    color: var(--main-color);
}

.map_wrapper iframe {
    width: 100%;
}

@media(max-width:1200px) {
    .contact_section__right {
        padding-left: 0;

    }
}

@media(max-width:992px) {
    .contact_section__right {
        margin-top: 2rem;
    }
}

@media(max-width:768px) {
    .contact_section__left {
        padding: 1.2rem 1rem;
    }

    .contact_form {
        margin-top: 1rem;
    }

    .contact_section__left h3 {
        font-size: 28px;
    }

    .contact_section__left p,
    .contact_section__right p {
        font-size: 14px;
        margin-top: 5px;
    }

    .company_info__box h6 {
        font-size: 16px;
    }

    .company_info__box a {
        margin-top: 5px;
        font-size: 14px;
    }

    .company_info {
        margin-top: 1rem;
    }

    .contact_form input,
    .contact_form textarea {
        margin-bottom: 10px;
        font-size: 14px;
    }
}