/* Contact */
.contact {
    width: 90%;
    margin: 20px auto 0px auto;
    background-color: var(--secondary);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.contact-div {
    margin: auto;
    display: grid;
    grid-template-columns: 45% 45%;
    align-items: center;
    justify-content: space-between;
}

.contact-left h3 {
    color: var(--text-primary);
    font-weight: var(--fw-xl);
    margin-bottom: 20px;
}

.contact-div .form-control {
    background-color: transparent;
    font-size: 14px;
    font-weight: var(--fw-sm);
    border-radius: 0px;
    border-bottom: 1px solid var(--light-dark) !important;
    border: none;
    padding: 10px 5px;
}

.form-control:focus {
    box-shadow: none !important;
    outline: none !important;
}

.contact-right {
    background-color: var(--sub);
    width: 100%;
    height: 100%;
    padding: 50px;
    border-radius: 10px;
}

.contact-right .contact-us-ct h5 {
    color: var(--secondary);
    font-weight: var(--fw-xl);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-right .contact-us-ct h6 {
    color: var(--text-secondary);
    font-weight: var(--fw-sm);
    margin-bottom: 5px;
    line-height: 25px;
}

.contact-right .contact-us-ct h5:hover,
.contact-right .contact-us-ct h6:hover {
    transition: var(--transition);
    color: var(--secondary);
}

@media screen and (min-width: 1098px) {

    /* Contact */
    .contact-div {
        width: 95%;
    }

    .contact-left h3 {
        font-size: 30px;
    }

    .contact-right .contact-us-ct h5 {
        font-size: 16px;
    }

    .contact-right .contact-us-ct h6 {
        font-size: 14px;
    }

}

@media screen and (min-width: 767px) and (max-width: 1098px) {

    /* Contact */
    .contact-div {
        width: 95%;
    }

    .contact-left h3 {
        font-size: 25px;
    }

    .contact-right .contact-us-ct h5 {
        font-size: 16px;
    }

    .contact-right .contact-us-ct h6 {
        font-size: 14px;
    }

}

@media screen and (max-width: 767px) {

    /* Contact */
    .contact-div {
        width: 98%;
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }

    .contact-left h3 {
        text-align: center;
        font-size: 25px;
    }

    .contact-right {
        padding: 25px;
    }

    .contact-right .contact-us-ct h5 {
        font-size: 14px;
    }

    .contact-right .contact-us-ct h6 {
        font-size: 12px;
    }

}