.hero {
    width: 100%;
}

.hero-default {
    position: relative;
    height: 100vh;
    background-size: cover !important;
    background-position: top !important;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-default::before {
    display: block;
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0) 70%);
    background: linear-gradient(90deg,rgb(0, 0, 0) 0%, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.48) 60%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.hero-default .content {
    position: relative;
    z-index: 5;
    margin: auto 0;
    max-width: var(--main-window-width);
    width: var(--main-window-width);
}


/* CONTENT */
.hero-default .content h1,
.hero-default .content p,
.hero-default .content .content-btns {
    margin: 0;
}

.hero-default h1,
.hero-default p
 {
    color: var(--content-default);
}

.hero-default .content p {
    font-size: 2rem;
    font-weight: 100;
    margin-top: 1rem;
    max-width: 500px;
}

.hero-default .content .content-btns {
    margin-top: 1.7rem;
    display: flex;
    gap: 10px;
}

.hero-default .content-btns .second-btn {
    padding: 12px 34px;
}

.button.first-btn:hover {
    padding: 12px 34px;
}
.button.first-btn:hover + .second-btn{
    padding: 12px 24px;
}


.photo-credit {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
}
.photo-credit p {
    margin: 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.638);
}



/* ICON LOTTIE */
#btn-down-hero {
    filter: invert(1);
    position: absolute;
    bottom: 3vh;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    transition: 0.3s ease;
}
#btn-down-hero:hover {
    transform: translateX(-50%) rotate(180deg) scale(1.2);
}
dotlottie-player {
    max-width: 140px;
}





@media (max-width: 1275px) {
    .hero-default .content {
        position: relative;
        z-index: 5;
        margin: auto 0;
        max-width: var(--small-window-width);
        width: var(--small-window-width);
    }
}


@media (max-width: 1050px) {

    .hero-default {
        background-position-x: 70% !important;
    }

    .hero-default::before {
        background: linear-gradient(90deg,rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.56) 50%, rgba(0, 0, 0, 0) 70%);
    }
    
    .hero-default .content {
        font-size: 2.5rem;
        max-width: 90%;
    }

    .hero-default .content h1 {
        font-size: 2rem;
    }

    .hero-default .content p {
        font-size: 1.3rem;
    }

    .hero-default .content a {
        font-size: 1rem;
    }
}