.container-fluid{
    padding: 0;
    margin: 0;
}

.orange-span{
    color: var(--orange);
}

/* section 1 */
#sec1{
    background: linear-gradient(180deg, rgba(28, 156, 208, 0.85) 0%, rgba(9, 28, 54, 0.85) 75.73%), url("/static/images/marketing/contact-hero.e0bb83114239.jpg");
    width: 100%;
    min-height: 719px;
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: top;
    justify-content: center;
}

#sec1 .content{
    max-width: var(--mw-header);
    height: 100%;
    align-items: center;
    display: flex;
    margin: 0 auto;
    padding: 100px 20px 20px 20px;
}

#sec1 .content .content-text{
    max-width: var(--mw-content);
    text-align: center;
    margin: 0 auto;
}

#sec1 .content .content-text h1{
    color: white;
    font-size: 72px;
    font-family: 'Raleway-Bold';
    line-height: 1.5;
}

#sec1 .content .content-text h5{
    color: white;
    font-size: 24px;
    font-family: 'Raleway-Medium';
    max-width: 880px;
    margin-bottom: 40px;
    line-height: 1.5;
    margin: 0 auto;
}

/* section 2 */
#sec2{
    width: 100%;
    min-height: 1070px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lightgrey);
    position: relative;
}

#sec2 .form-holder{
    position: absolute;
    top: -155px;
    width: 752px;
    margin: 0 auto;
    background-color: var(--off-white);
    border-top: 16px solid var(--orange);
    border-bottom: 16px solid var(--orange);
    padding: 20px 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

#sec2 .form-holder form{
    padding: 20px 0;
}

#sec2 .form-holder .contact-submit{
    width: 100%;
    height: 52px;
    color: white;
    background-color: var(--navy);
    font-family: 'Raleway-Bold';
    font-size: 24px;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: 0.3s ease;
}

#sec2 .contact-submit:hover{
    background-color: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}
#sec2 .contact-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(253, 145, 75, 0.5);
}

#sec2 p {
    text-align: center;
    font-size: 14px;
    font-family: 'Raleway-Medium';
    color: var(--navy);
}

#sec2 p a{
    color: var(--blue);
    transition: 0.3s ease;
}

#sec2 p a:hover,
#sec2 .go-back-button:hover
{
    color: var(--blue-hover);
}

#sec2 .go-back-button{
    text-align: center;
    font-size: 14px;
    font-family: 'Raleway-Medium';
    color: var(--blue);
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-decoration: none;
    max-width: 100px;
}

.form-label{
    color: var(--navy);
    font-size: 18px;
    font-family: 'Raleway-Medium';
}
#sec2 .form-holder textarea.form-control,
#sec2 .form-holder input.form-control{
    padding: 20px 20px;
    border-radius: 0;
    background-color: var(--lightgrey);
    font-size: 16px;
    font-family: 'Raleway-Medium';
}

#sec2 .form-holder textarea.form-control::placeholder,
#sec2 .form-holder input.form-control::placeholder{
    color: var(--darkgrey);
    font-size: 16px;
    font-family: 'Raleway-Medium';
}

@media(max-width: 900px){
    #sec1{
        overflow: hidden;
        min-height: 518px;
    }

    #sec1 .content .content-text{
        max-width: 710px;
        min-height: 246px;
    }

    #sec1 .content .content-text h1{
        font-size: 45px;
        line-height: 1.5;
    }

    #sec1 .content .content-text h5{
        font-size: 18px;
        margin-top: 20px;
        max-width: 616px;
    }

    #sec2 .form-holder{
        max-width: 596px;
        width: calc(100% - 40px);
        min-width: 250px;
        top: -100px;
    }
}

@media(max-width: 600px){

    #sec1{
        width: 100%;
        min-height: 564px;
        align-items: center;
        justify-content: center;
    }

    #sec1 .content{
        max-width: var(--mw-content);
        padding: 60px 10px;
        align-items: center;
    }

    #sec1 .content .content-text{
        max-width: 673px;
        text-align: center;
        align-items: center;
    }

    #sec1 .content .content-text h1{
        font-size: 36px;
    }

    #sec2{
        min-height: 920px;
    }
    #sec2 .form-holder{
        padding: 20px 10px;
    }

    #sec2 .form-holder textarea.form-control,
    #sec2 .form-holder input.form-control{
        padding: 10px 10px;
        font-size: 14px;
    }
}