/* similar styles */
.orange-button{
    background-color: var(--orange);
    color: white;
    font-family: 'Raleway-Bold';
    font-size: 21px;
    text-decoration: none;
    padding: 15px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    margin: 0 auto;
}

.orange-button:hover{
    background-color: var(--orange-hover);
    color: white;
}

/* section 1 */
#sec1{
    background: linear-gradient(0.63deg, rgba(28, 156, 208, 0.85) 0.56%, rgba(9, 28, 54, 0.85) 125.26%), url("/static/images/marketing/faq/faq-desktop.jpg");
    width: 100%;
    min-height: 558px;
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

#sec1 .content .content-text{
    max-width: 673px;
    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: 563px;
    margin-bottom: 40px;
    line-height: 1.5;
    margin: 0 auto;
}

#sec2 {
    background-color: var(--lightgrey);
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    border-bottom: 16px solid var(--orange);
}

#sec2 .content{
    width: var(--mw-content);
    margin: 0 auto;
    min-height: 400px;
}

#sec2 .content .content-text{
    padding-bottom: 30px;
}

#sec2 .content .list-group{
    padding-bottom: 40px;
}

#sec2 .content .content-text h1{
    font-family: 'Raleway-Bold';
    font-size: 45px;
    color: var(--navy);
}

#sec3 {
    background: linear-gradient(95.42deg, rgba(9, 28, 54, 0.6) 0%, rgba(28, 156, 208, 0.6) 100.57%), url("/static/images/cta2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 445px;
    display: flex;
    align-items: center;
    background-position: top;
}

#sec3 .content {
    margin: 80px auto;
}

#sec3 .content .content-text {
    color: white;
    text-align: center;
    max-width: 43vw;
}

#sec3 .content .content-text h2 {
    margin-bottom: 20px;
    font-family: 'Raleway-Bold';
}

#sec3 .content .content-text p {
    margin-bottom: 40px;
    font-family: 'Raleway-Medium';
}

@media(max-width: 900px){

    #sec1{
        width: 100%;
        min-height: 444px;
        background-position: center;
    }

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

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

    #sec1 .content .content-text h5{
        font-size: 18px;
        margin-bottom: 38px;
    }

    #sec2 .content .content-text h1{
        font-size: 32px;
        text-align: center;
        margin: 0 auto;
    }

    #sec3 {
        min-height: 359px;
    }

    #sec3 .content {
        margin: 64px auto;
    }

    #sec3 .content .content-text {
        max-width: 54vw;
    }
}

@media(max-width: 600px){
    #sec1{
        width: 100%;
        min-height: 413px;
    }

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

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

    #sec1 .content .content-text h5{
        font-size: 18px;
        margin-bottom: 40px;
    }

    #sec2 {
        padding: 20px 0;
    }

    #sec2 .content .content-text h1{
        font-size: 24px;
    }

    #sec3 {
        background-position: center;
    }

    #sec3 .content .content-text {
        max-width: 93vw;
    }

    #sec3 .content .content-text h2 {
        color: white;
    }
}

@media(min-width: 1440px) {
    #sec1 {
        background: linear-gradient(0.63deg, rgba(28, 156, 208, 0.85) 0.56%, rgba(9, 28, 54, 0.85) 125.26%), url("/static/images/marketing/faq/faq-desktop.jpg") 50% -150px;
        background-blend-mode: multiply;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #sec3 {
        background: linear-gradient(95.42deg, rgba(9, 28, 54, 0.6) 0%, rgba(28, 156, 208, 0.6) 100.57%), url("/static/images/cta2.jpg") 100% -250px;
        background-blend-mode: multiply;
        background-size: cover;
        background-repeat: no-repeat;
    }
}