section.contact-banner {
    position: relative;
    width: 100%;
    float: left;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(139.37deg, rgba(0, 0, 0, 0.5) 41.16%, rgba(151, 191, 19, 0.5) 97.37%);
}
.contact-banner-overlay .container {
    max-width: 82%;
}
section.contact-banner .contact-banner-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top left;
}
section.contact-banner .contact-banner-bg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background-position: center;
    background-size: cover;
}
.contact-banner-outer-overlay{
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
    left: 0;
    top: 0;
    background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}
.contact-banner-overlay {
    position: absolute;
    top: 52%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    text-align: left;
}
.contact-banner-overlay h1 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 70px;
}
.contact-banner-overlay h1 span{
    color: #97BF13;
}
.contact-banner-overlay h3 {
    color: #fff;
}
.contact-banner-overlay h5 {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
.contact-banner-overlay h5 span{
    color: #97BF13;
}
.contact-banner-overlay p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
}
.contact-banner-overlay p span {
    color: #97BF13;
}
.contact-banner-overlay .content-mode-style-2 h1 span,
.contact-banner-overlay .content-mode-style-2 p span,
.contact-banner-overlay .content-mode-style-2 h5 span{
    color: #71E5D2;
}


section.social-banner-link {
    background-color: #F2F4EC;
}
.social-banner-link-in {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    gap: 0 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.contact-email-link, .contact-phone-link {
    padding: 30px;
    background-image: url(../../images/contact-email-icon.svg);
    background-repeat: no-repeat;
    background-position: 30px 28px;
    padding-left: 110px;
    background-size: 59px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.contact-phone-link {
    background-image: url(../../images/contact-phone-icon.svg);
}
.contact-email-link a, .contact-phone-link a {
    display: block;
    font-size: 19px;
    transition: all 0.3s ease;
    width: 100%;
}
.contact-email-link a:hover, 
.contact-phone-link a:hover {
    color: #97BF13;
}
.social-banner-link-in label {
    width: 100%;
    font-size: 14px;
    color: #77808B;
    font-weight: normal;
    display: block;
    margin-bottom: 12px;
}
.social-banner-link-in .contact-social-out-link label{
    color: #fff;
}
.contact-social-out-link {
    background-color: #97BF13;
    border-radius: 0 5px 5px 0;
    padding: 30px 35px;
    transform: translateX(1px);
}
ul.contact-social-links {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.contact-social-links li {
    float: left;
    margin-right: 35px;
}
ul.contact-social-links li:last-child {
    margin-right: 0;
}
ul.contact-social-links li a,
ul.contact-social-links li img {
    float: left;
}
ul.contact-social-links li img {
    height: 32px;
    transition: all 0.3s ease;
}
ul.contact-social-links li img:hover {
    opacity: .7;
}

@media only screen and ( max-width: 1199px) {
    .contact-email-link, .contact-phone-link {
        width: calc(50% - 30px);
    }
    .contact-social-out-link {
        border-radius: 0 0 5px 5px;
        transform: translateX(0px);
        flex-grow: 1;
        text-align: center;
    }
    ul.contact-social-links li {
        float: none;
        display: inline-block;
        margin-right: 20px;
    }
    .social-banner-link-in {
        transform: translateY(-25%);
    }
}

@media only screen and ( max-width: 961px) {
    .contact-banner-overlay h1 {
        font-size: 58px;
    }
    .contact-email-link a, .contact-phone-link a {
        font-size: 18px;
    }
}

@media only screen and ( max-width: 768px) {
    .contact-banner-overlay h1 {
        font-size: 48px;
    }
    .contact-banner-overlay h1 {
        margin-bottom: 10px;
    }
    .contact-email-link, .contact-phone-link {
        width: 100%;
        min-height: 110px;
    }
    .social-banner-link-in {
        transform: translateY(-60px);
    }
    section.contact-banner {
        height: 50vh;
    }
}