/* Hero section */

#hero {
    position: relative;
    height: 100svh;
    width: 100%;
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.10); /* semi-transparent black overlay */
    z-index: 2; /* make sure the overlay is on top of the image */
}

.hero__background-image--wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__background-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.scroll-down-indicator__wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-down-indicator {
    margin-top: 15px;
    width: 30px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    position: relative;
}

.scroll-down-indicator::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ffffff;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: scroll 2.5s infinite;
    animation: scroll 2.5s infinite;
}

@-webkit-keyframes scroll {
    0% {
        bottom: 80%;
        opacity: 1;
    }
    100% {
        bottom: 20%;
        opacity: 0;
    }
}

@keyframes scroll {
    0% {
        bottom: 80%;
        opacity: 1;
    }
    100% {
        bottom: 20%;
        opacity: 0;
    }
}


.hero__logo--wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero__logo {
    object-fit: contain;
}

.hero__logo--width {
    width: 600px;
}


@media only screen and (max-width: 1200px) {
    .hero__logo--width {
        width: 50vw;
    }
}

@media only screen and (max-width: 600px) {
    .hero__logo--width {
        width: 85vw;
    }
}

/* End hero section */