.contact_wrapper {
    padding: 80px 0;
}

.contact_wrapper__content,
.contact_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: left;
}

.contact_form {
    padding: 2rem;
    background-color: whitesmoke;
    border-radius: 10px;
}

.contact_input {
    margin-bottom: 12px;
}

.contact_input input::placeholder {
    color: var(--black-color);
}

.contact_input input,
.contact_input textarea {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid var(--black-color);
}

.send-btn {
    margin-top: 1.5rem;
}

.contact_wrapper__content h1 {
    font-size: 36px;
    font-weight: 500;
}

.contact_info {
    margin-top: 2rem;
}

.contact_info__details {
    margin-bottom: 2rem;
}

.contact_info__details p,
.contact_info__details a {
    color: var(--black-color);
    font-size: 17px;
}

.contact_info__details a:hover {
    color: var(--main-color);
}

.contact_info__details h6 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px !important;
}

.map_wrapper {
    padding-bottom: 80px;
}

.map_wrapper__iframe iframe {
    width: 100%;
    border-radius: 10px;
}

@media(max-width:768px) {
    .contact_wrapper {
        padding: 50px 0;
    }

    .contact_wrapper__content h1 {
        font-size: 28px;
    }

    .contact_info__details {
        margin-bottom: 1rem;
    }

    .contact_info {
        margin-top: 1rem;
    }

    .contact_form {
        margin-top: 1rem;
        padding: 20px;
    }

    .contact_info__details h6 {
        font-size: 17px;
    }

    .contact_info__details p,
    .contact_info__details a {
        font-size: 15px;
    }

    .map_wrapper {
        padding-bottom: 50px;
    }
}