/* ======================== */
/* === Parallax Section === */
/* ======================== */

#parallax-section {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 140px;
}

#parallax-section .text {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    text-align: center;
    width: 100%;
}

#parallax-section .text h2 {
    width: 530px;
    margin-left: auto;
    margin-right: auto;
}

#parallax-section .text p {
    font-size: 24px;
    line-height: 34px;
    margin: 0 auto 50px;
    width: 675px;
}

#parallax-section .text a {
    width: 200px;
}

#parallax-section .parallax-window {
    min-height: 600px;
    background: transparent;
}


/* ===================== */
/* === Media Queries === */
/* ===================== */

/* Extra Large devices (desktops, less than 1281px) */
@media (max-width: 1280.98px) {

    #parallax-section .parallax-window {
        min-height: 500px;
    }

}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

    #parallax-section .parallax-window {
        min-height: 450px;
    }

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

    #parallax-section .parallax-window {
        min-height: 400px;
    }

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

    #parallax-section .text h2 {
        width: 100%;
        padding: 0 40px;
    }

    #parallax-section .text p {
        width: 100%;
        padding: 0 40px;
        font-size: 22px;
        line-height: 32px;
    }

    #parallax-section .parallax-window {
        min-height: 350px;
    }

}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

    #parallax-section .parallax-window {
        min-height: 300px;
    }

}







