.main__banner {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../imgs/contact-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 50px 0;
}

.main__banner-heading {
    font-size: 40px;
    color: var(--white--color);
}

.contact__wrap {
    display: flex;
    justify-content: space-between;
}

.contact__info-wrap,
.contact__from {
    width: 48%;
}

.contact__inner {
    display: grid;
    gap: var(--global--gap);
}

.contact__info-wrap {
    display: grid;
    gap: var(--primary--gap);
}

.contact__info {
    min-width: 100%;
    height: 233px;
    background: var(--primary--bg--color);
    padding: 40px;
    border-top: 10px solid var(--primary--color);
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: var(--primary--gap);
}

.contact__info-img {
    display: block;
    width: 50px;
}

.contact__info-heading {
    font-size: 24px;
    color: var(--secondary--color);
}

.contact__icon-text {
    color: var(--primary--color);
    font-weight: var(--medium--fontweight);
}

.contact__from {
    display: grid;
    align-items: baseline;
    gap: var(--primary--gap);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 0px 10px #00000014;
}

.contact__input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    border-radius: 8px;
    border: solid 1px var(--primary--border--color);
    outline: none;
}

.contact__input:focus {
    border: solid 2px var(--primary--color);
}

.contact__msg {
    height: 160px;
    padding: 20px;
}

.contact__from-wrap {
    display: grid;
    gap: 6px;
}

.map__frame {
    border-radius: 24px;
}

/* -- Responsive -- */

@media (max-width: 991px) {
    .contact__wrap {
        flex-direction: column-reverse;
        gap: var(--global--gap);
    }

    .contact__info-wrap,
    .contact__from {
        width: 100%;
    }
}

@media (max-width: 786px) {
    .main__banner {
        height: 240px;
    }

    .global__mainheading {
        height: 100px;
        font-size: 40px;
    }

    .global__mainheading::before {
        height: 90px;
    }

    .contact__inner {
        gap: var(--primary--gap);
    }
}

@media (max-width: 576px) {
    .main__banner {
        height: 140px;
        margin: 20px 0;
    }

    .main__banner-heading {
        text-align: center;
        font-size: 30px;
    }

    .contact__wrap {
        min-width: 100%;
    }

    .global__mainheading {
        height: 60px;
        font-size: 32px;
    }

    .global__mainheading::before {
        height: 68px;
    }

    .global__subheading {
        font-size: 15px;
    }

    .contact__from,
    .contact__info {
        padding: 30px;
    }

    .contact__info {
        height: 180px;
    }

    .contact__icon-text {
        font-size: 14px;
    }
}

@media (max-width: 425px) {
    .contact__info-img {
        width: 40px;
    }
}