.contact-section {
    padding: 10rem 0 22rem;
}

.contact-section::before {
    position: absolute;
    content: "";
    background-image: url(../images/contact-banner.png);
    top: -10rem;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
}

.contact-section p {
    font-size: 1.8rem;
    font-family: var(--body-font);
}

.heading-content p {
    font-size: 2rem;
}

.form-group {
    margin-bottom: 4rem;
}

.form-group label {
    font-size: 1.8rem;
    margin-bottom: .5rem;
    color: var(--light-1);
}

.form-control {
    height: 4rem;
    border-radius: .5rem;
    background-color: var(--primary-light) !important;
    padding: 1rem;
    border: 0;
    outline: 0;
    box-shadow: none !important;
    color: var(--light-1) !important;
    font-size: 1.6rem;
}

.form-control.textarea {
    min-height: 20rem;
}

.form-select {
    --bs-form-select-bg-img: url(../images/dropdown.svg);
}

.located-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.located-container .loacted-item {
    background: #1E1E1EF2;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0px 4px 4px 0px #00000040;

}


@media (max-width:767px) {
    .contact-section::before {
        background-position: center;
    }

    .contact-section {
        padding: 2rem 0 16rem;
    }

    .located-container {
        grid-template-columns: 1fr;
    }

    .contact-section p {
        font-size: 1.4rem;
        color: var(--light);
    }

    .heading-content p,
    .form-group label,
    .form-control {
        font-size: 1.4rem;
    }
}