.contact_wrapper__left h3 {
    text-transform: capitalize;
    font-size: 44px;
    font-weight: 700;
}

.contact_wrapper__left p {
    margin-top: 1rem;
}

.contact_wrapper__right {
    background-color: var(--black-color);
    padding: 2rem;
    border-radius: 10px;
}

.contact_wrapper__right h3 {
    font-size: 36px;
    font-weight: 600;
    color: var(--white-color);
}

.contact_input {
    margin-top: 1rem;
}

.contact_input input,
.contact_input textarea {
    width: 100%;
    margin-top: 10px;
    border: 1px solid #ccc;
    outline: none;
    width: 100%;
    padding: 10px;
}

.contact_input button {
    width: 100%;
    border-radius: 0;
}

.contact_input button:hover {
    background-color: var(--main-color);
    color: #000;
}

.contact_map__content iframe {
    width: 100%;
}

@media(max-width:992px) {
    .contact_wrapper__right {
        margin-top: 2rem;
    }
}

@media(max-width:768px) {
    .contact_wrapper__left h3 {
        font-size: 28px;
    }

    .contact_wrapper__left p {
        font-size: 14px;
        margin-top: 10px;
        line-height: 25px;
    }
    .contact_wrapper__right h3{
        font-size: 25px;
    }

    .contact_wrapper__right {
        padding: 1rem 1rem 2rem 1rem;
    }
}