#pageContent {
    width: 100vw;
    height: auto;
    top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#bannersGroup {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.bannerHolder {
    width: 100%;
    min-height: 100%;
    transition-duration: 1.5s;
}

.banner {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(75%);
}

.cta {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
    margin-top: -100vh;
}

.ctaText {
    font-family: 'Open Sans';
    font-size: 75px;
    font-weight: 900;
    text-align: center;
    user-select: none;
    text-shadow: 0px 4px 10px #000;
    transition-duration: 0s;
}

.ctaBtn {
    width: 300px;
    height: 50px;
    font-size: 25px;
    font-weight: 800;
    border-radius: 25px;
    background-color: rgba(200, 0, 0, 0.75);
    color: white;
    user-select: none;
}

.ctaBtn:hover {
    background-color: rgba(200, 0, 0, 1);
    cursor: pointer;
}

.ctaBtn[data-cta="bottom"] {
    background: rgba(200, 0, 0, 1);
}

.ctaBtn[data-cta="bottom"]:hover {
    background: rgba(185, 0, 0, 1);
}

#goDownArrow {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 50px;
    left: calc(50% - 25px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    animation: bounce 4s infinite;
}

.fa-angle-down {
    font-size: 50px;
    text-shadow: 0px 2px 8px #000;
    text-align: center;
}

#goDownOverlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    5% {
        transform: translateY(20px);
    }

    10% {
        transform: translateY(0);
    }

    15% {
        transform: translateY(20px);
    }

    20% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

#welcomeBox {
    width: 90vw;
    height: 250px;
    padding-inline: 5vw;
    padding-block: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, hsl(0, 0%, 93%), hsl(0, 0%, 99%), hsl(0, 0%, 93%));
    user-select: none;
}

#welcomeTitle {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

#welcomeText {
    width: 800px;
    margin-top: 0px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #444;
}

#servicesSection {
    width: 100vw;
    max-height: 800px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(90deg, hsl(0, 0%, 87%), hsl(0, 0%, 93%), hsl(0, 0%, 87%));
    user-select: none;
}

#servicesTitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

#servicesVideo {
    width: 90vw;
    max-width: 800px;
    margin-bottom: 50px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.6);
    z-index: 25;
}

#videoOverlay {
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
}

#aboutSection {
    width: 95vw;
    padding: 2.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(200, 0, 0, 1);
    background-image: linear-gradient(135deg, hsl(0, 100%, 32%), hsl(0, 74%, 45%), hsl(0, 100%, 32%));
    user-select: none;
}

#aboutUsTitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

#aboutUsText {
    width: 800px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 0px;
    color: #eee;
}

/* ------ Responsive Styles ------ */

@media (max-height: 600px) {
    .ctaText {
        font-size: 60px;
        transform: translateY(-30px);
    }

    .ctaBtn {
        font-size: 20px;
        transform: translateY(-30px);
    }

    #goDownArrow {
        bottom: 40px;
    }

    .serviceImg {
        height: 400px;
    }
    #servicesVideo {
        scale: 0.8;
    }
    .ctaBtn[data-cta="bottom"] {
        transform: translateY(-60px);
        scale: 0.8;
    }
}

@media (max-height: 500) {
    .ctaText {
        font-size: 60px;
        transform: translateY(-30px);
    }

    .ctaBtn {
        font-size: 20px;
        transform: translateY(-30px);
    }

    #goDownArrow {
        bottom: 20px;
    }

    .serviceImg {
        height: 300px;
    }
}

@media (max-height: 450) {
    .ctaText {
        font-size: 10px;
    }

    .ctaBtn {
        font-size: 16px;
        transform: translateY(-50px);
    }

    #goDownArrow {
        bottom: 0px;
    }

    .serviceImg {
        height: 250px;
    }
}

@media (max-width: 1000px) {
    #servicesHolder {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 80vw;
        max-width: 800px;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .serviceImg {
        width: 30vw;
        height: 400px;
    }

    .serviceInfo {
        width: 30vw;
        transform: translateY(-25px);
    }
}

@media (max-width: 800px) {
    #welcomeText {
        width: 90vw;
    }

    #aboutUsText {
        width: 90vw;
    }

    .serviceImg {
        height: 300px;
    }

    .ctaText {
        font-size: 60px;
    }
}

@media (max-width: 700px) {
    .service {
        width: 80vw;
        max-width: 800px;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .serviceImg {
        width: 75vw;
        height: 200px;
    }

    .serviceInfo {
        width: 75vw;
        transform: translateY(0px)
    }
}

@media (max-width: 650px) {
    .ctaText {
        font-size: 50px;
    }
}

@media (max-width: 550px) {
    .ctaText {
        font-size: 40px;
    }

    .ctaBtn {
        width: 280px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 450px) {
    .ctaText {
        font-size: 30px;
    }

    .ctaBtn {
        width: 250px;
        height: 40px;
        font-size: 18px;
    }

    #welcomeBox {
        height: 300px;
    }

    #aboutSection {
        padding: 5vw;
    }
}