body {
    background: #f4f7fa;
    color: #1b1b1b;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/*======================================
    HERO BANNER
=======================================*/

.contact-banner {
    position: relative;
    background: url(https://storage.googleapis.com/giffycms-partnerlinksolutions.appspot.com/5662792157757440) center center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    margin-top: 4rem;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 68, 108, 0.234);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
}

.subtitle {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

.banner-content a {
    color: #fff;
    font-size: 20px;
    text-decoration: underline;
}

.banner-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.banner-content p {
    font-size: 22px;
    max-width: 620px;
}

/*======================================
    CONTACT SECTION
=======================================*/

.contact-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    /* gap: 60px; */
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.contact-content {
    background: #005b8f;
    color: #fff;
    padding: 60px 50px;
}

.small-title {
    color: #c9e6f7;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.contact-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin: 20px 0;
}

.contact-content p {
    color: #d9edf9;
    font-size: 17px;
}

.description1 {
    margin-bottom: 2rem;
}

/*======================================
    FORM
=======================================*/

.contact-form {
    padding: 3rem 5rem;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 500;
    color: #005b8f;
}

.form-group label span {
    color: #3333338f;
}

input,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #d7dde5;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: .35s;
    background: #fff;
}

input:focus,
select:focus {
    border-color: #0d5a85;
    box-shadow: 0 0 0 4px rgba(13, 90, 133, .15);
}

select[multiple] {
    min-height: 240px;
}

select option {
    padding: 12px;
}

.multi-select {
    position: relative;
    width: 100%;
}

.select-btn {
    height: 56px;
    border: 1px solid #d7dde5;
    border-radius: 10px;
    padding: 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: .3s;
}

.select-btn:hover {
    border-color: #0d5a85;
}

.btn-text {
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arrow {
    transition: .3s;
    font-size: 14px;
}

.multi-select.active .arrow {
    transform: rotate(180deg);
}

.list-items {
    position: absolute;
    bottom: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #d7dde5;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    display: none;
    max-height: 260px;
    overflow: auto;
    z-index: 999;
}

.multi-select.active .list-items {
    display: block;
}

.item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: .25s;
}

.item:hover {
    background: #f3f8fc;
}

.item input {
    width: 18px;
    height: 18px;
    accent-color: #0d5a85;
    cursor: pointer;
}

.item span {
    font-size: 15px;
    color: #333;
}

small {
    display: block;
    margin-top: 8px;
    color: #7b7b7b;
}

.contact-submit-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #005b8f;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    transition: all .35s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 91, 143, .15);
}

/* Shine Effect */
.contact-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: skewX(-25deg);
    transition: left .8s ease;
}

.contact-submit-btn:hover {
    background: #006fae;
    box-shadow: 0 8px 20px rgba(0, 91, 143, .25);
}

.contact-submit-btn:hover::before {
    left: 150%;
}

.contact-submit-btn:active {
    transform: none;
}

/*======================================
    PLACEHOLDER
=======================================*/

input::placeholder {
    color: #9aa5b1;
}

/*======================================
    RESPONSIVE
=======================================*/

@media(max-width:1100px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-content {
        text-align: center;
    }

    .contact-banner {
        /* min-height: 450px; */
    }

    .banner-content h1 {
        font-size: 52px;
    }

}

@media(max-width:768px) {

    .contact-banner {
        /* min-height: 380px; */
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content p {
        font-size: 18px;
    }

    .contact-section {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .contact-content,
    .contact-form {
        padding: 35px;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .contact-content h2 {
        font-size: 32px;
    }

}

@media(max-width:576px) {

    .container {
        width: 94%;
    }

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .contact-content,
    .contact-form {
        padding: 25px;
    }

    .contact-submit-btn {
        width: 100%;
    }

}