section.contact-banner{
    height: 450px;
    color:#fff;
    .text-box{
        background: rgba(0,0,0,.3);
        .text-box-inner{
            top:40%;
            text-align: center;
            padding: 0 3em;
        }
    }
    h1{
        font-size: 1.8em;
        font-weight: 700;
        line-height: 2.5em;
    }
}
section.contact-form{
    background-color: rgb(244, 244, 244);
    position: relative;
    .form-container{
        top:-6em;
        position: relative;
        margin: 0 2em;
        background-color: white;
        z-index: 1000;
        text-align: center;
        form{
            margin: 0 auto;
            max-width: 660px;
            padding: 2em;
        }
    }
    .form-header{
        margin: 0 auto;
        max-width: 660px;
        padding: 2em;
        h2{
            font-size: 1.6em;
            font-weight: 700;
            line-height: 2.5em;
            text-align: center;
        }
        .divider{
            max-width: 2em;
            margin: 0 auto;
            background-color: rgba(0,0,0,.1);
        }
        .p1{
            margin-top: 1.5em;
        }
    }
    .agreement{
        margin-top: 2em;
        a{
            color: var(--primary-color);
        }
    }
}
section.contact-location{
    background-color: rgb(244, 244, 244);
    padding: 2em 2em 6em 2em;
    .inner{
        background: white;
        padding: 2em;
        text-align: center;
    }
    h3{
        font-size: 1.2em;
        font-weight: 700;
        line-height: 2.5em;
    }
    .p1{
        line-height: 3em;
    }
    a.button{
        background: var(--primary-color);
        color: white;
        display: block;
        border-radius: 1.5em;
        line-height:2.5em;
        font-size:.8em;
    }
}

section.contact-banner2{
    position: relative;
    height: 840px;
    color:#fff;
    .banner{
        height: 450px;
    }
    .text-box{
        background: rgba(0,0,0,.5);
        .text-box-inner{
            left:50%;
            h1{
                font-weight: 700;
            }
        }
    }
    .section-bg-left{
        position: absolute;
        top: 8em;
        width: 100%;
        img{
            object-position: 50% 56%;
            width: 400px;
            height: 650px;
        }
        .text-box-inner{
            position: absolute;
            left:42%;
            right:5%;
            top:60%;
            color: rgb(43, 45, 66);
            line-height: 2em;
        }
    }
}

section.testimonials{
    padding: 4em 2em;
    h1{
        padding-bottom: 1em;
    }
    th,td{
        border-width: 1px;
    }
    th{
        text-align: center;
    }
    background: rgba(255, 186, 8, .2);
    .inner-box{
        width: 80%;
        margin: 0 auto;
    }
    h2{
        color: rgb(85, 85, 85);
        line-height: 4em;
    }
    .btn-box{
        text-align: center;
        padding-top:3em;
    }
    .button{
        background: var(--primary-color);
        color: white;
        border-radius: 1.5em;
        line-height:2.5em;
        font-size:1em;
        padding: 0 2em;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .section-bg-left{
        display: none;
    }
    section.contact-banner2{
        height: auto;
        .text-box{
            .text-box-inner{
                left:5%;
            }
        }
    }
}