.parallax-img{
    background-image: url('/public/img/contact_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 400px;
    opacity: 0.2;
}

.contact-wrapper{
    position: relative;
}

.contact-title{
    font-size: 140px;
    line-height: 100%;
    color: #E7EAE6;
    margin-left: -10px;
}

.contact-label{
    line-height: 100%;
}

.contact-form{
   color: #FFF;
}

.contact-form .form-label{
    color: #FFF;
}


.contact-input:focus{
    outline-color:  var(--webcliff-color);
    box-shadow: 0 0 0 .15rem rgba(0, 255, 136, 0.4);
}

.contact-sec textarea{
    min-height: 100px;
}

.contact-btn{
    background-color: var(--webcliff-color);
    color: #FFF;
    box-shadow: rgba(2, 100, 105, 1) 0px 10px 20px -8px;
}

.contact-btn:hover{
    background-color: #00935b;
    color: #FFF;
    box-shadow: rgba(0, 147, 91, 1) 0px 10px 20px -8px;
}


.contact-sec .info-wrapper {
    width: 100%;
}

.contact-sec .info-wrapper i {
    font-size: 20px;
    float: left;
    width: 44px;
    height: 44px;
    background:  var(--webcliff-bg-color);
    color: var(--webcliff-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-top: 0.1rem;
}

.contact-sec .info-wrapper h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--webcliff-bg-color);
}

.contact-sec .info-wrapper p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--webcliff-bg-color);
}

.contact-sec .info-wrapper a{
    color: inherit;
    text-decoration: none;
}


.contact-sec .info-wrapper .email:hover i,
.contact-sec .info-wrapper .address:hover i,
.contact-sec .info-wrapper .facebook:hover i,
.contact-sec .info-wrapper .instagram:hover i,
.contact-sec .info-wrapper .phone:hover i {
    background: var(--webcliff-color);
    color: var(--webcliff-bg-color);
}

.contact-sec .info-wrapper .email:hover h4,
.contact-sec .info-wrapper .address:hover h4,
.contact-sec .info-wrapper .facebook:hover h4,
.contact-sec .info-wrapper .instagram:hover h4,
.contact-sec .info-wrapper .phone:hover h4 {
    color: var(--webcliff-color);
}

@media(max-width: 490px){
    .parallax-img{
        background-image: url('/public/img/contact_bg_sm.webp');
        height: 250px;
        background-attachment: unset;
        opacity: 0.5;
    }
    
    .contact-title{
        font-size: 40px;
        margin-left: auto;
    }
    
    .contact-request{
        font-weight: bolder;
    }
}

@media(min-width: 491px) and (max-width: 700px){
    .contact-title{
        font-size: 60px;
        margin-left: auto;
    }
}

@media(min-width: 701px) and (max-width: 800px){
    .contact-title{
        font-size: 70px;
        margin-left: auto;
    }
}

@media(min-width: 801px) and (max-width: 1199px){
    .contact-title{
        font-size: 90px;
        margin-left: auto;
    }
}