.homeHero {
    position: relative;
    height: 100vh;
}

.homeHero.come-in .stars img, .homeHero.visible .stars img {
    animation: animate-y-translate 0.8s ease-out forwards;
}

.homeHero.come-in .stars img#hs1, .homeHero.visible .stars img#hs1 {
    transform: translateY(-350px);
    animation-delay: 0.3s;
}

.homeHero.come-in .stars img#hs2, .homeHero.visible .stars img#hs2 {
    transform: translateY(-250px);
    animation-delay: 0.5s;
}

.homeHero.come-in .stars img#hs3, .homeHero.visible .stars img#hs3 {
    transform: translateY(-450px);
    animation-delay: 0.7s;
}

.homeHero.come-in .stars img#hs4, .homeHero.visible .stars img#hs4 {
    transform: translateY(-150px);
    animation-delay: 0.9s;
}

.homeHero.come-in .hero-lock .lock, .homeHero.visible .hero-lock .lock {
    transform: translateY(-500px);
    animation: animate-y-translate ease-out 0.6s 0.7s forwards;
}

.homeHero.come-in .hero-lock .lock-star, .homeHero.visible .hero-lock .lock-star {
    animation: showScale ease-out 0.5s 0.8s forwards;
}

.homeHero.come-in .title, .homeHero.visible .title {
    animation: showScale ease-in-out 0.5s 1s forwards;
}

.homeHero .stars img {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.homeHero .stars img#hs1 {
    top: 50%;
    left: 75%;
}

@media only screen and (max-width: 769px) {
    .homeHero .stars img#hs1 {
        top: 10%;
        left: 63%;
    }
}

@media only screen and (max-width: 600px) {
    .homeHero .stars img#hs1 {
        height: 70px;
        top: 11%;
        left: 65%;
    }
}

.homeHero .stars img#hs2 {
    top: 35%;
    left: 50%;
}

@media only screen and (max-width: 769px) {
    .homeHero .stars img#hs2 {
        top: 46%;
    }
}

@media only screen and (max-width: 600px) {
    .homeHero .stars img#hs2 {
        height: 100px;
        top: 36%;
        left: 55%;
    }
}

.homeHero .stars img#hs3 {
    top: 30%;
    left: 35%;
}

@media only screen and (max-width: 991px) {
    .homeHero .stars img#hs3 {
        left: 30%;
    }
}

@media only screen and (max-width: 769px) {
    .homeHero .stars img#hs3 {
        top: 44%;
        left: 20%;
    }
}

@media only screen and (max-width: 600px) {
    .homeHero .stars img#hs3 {
        height: 75px;
        top: 41%;
        left: 18%;
    }
}

.homeHero .stars img#hs4 {
    top: 40%;
    left: 20%;
}

@media only screen and (max-width: 991px) {
    .homeHero .stars img#hs4 {
        display: none;
    }
}

@media only screen and (max-width: 769px) {
    .homeHero .stars img#hs4 {
        display: none;
    }
}

.homeHero .hero-lock {
    position: absolute;
    width: 110px;
    top: 20%;
    left: calc((100% - 110px) / 2);
}

@media only screen and (max-width: 600px) {
    .homeHero .hero-lock {
        top: 16%;
    }
}

@media only screen and (max-width: 360px) {
    .homeHero .hero-lock {
        width: 90px;
        left: calc((100% - 90px) / 2);
    }
}

.homeHero .hero-lock .lock {
    opacity: 0;
    visibility: hidden;
}

@media only screen and (max-width: 600px) {
    .homeHero .hero-lock .lock {
        height: 350px;
    }
}

.homeHero .hero-lock .lock-star {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: -58px;
    left: 6px;
}

@media only screen and (max-width: 600px) {
    .homeHero .hero-lock .lock-star {
        height: 100px;
        bottom: -50px;
        left: 32px;
    }
}

@media only screen and (max-width: 360px) {
    .homeHero .hero-lock .lock-star {
        left: 18px;
    }
}

.homeHero .title {
    position: absolute;
    left: 35%;
    bottom: 20%;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    width: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media only screen and (max-width: 1400px) {
    .homeHero .title {
        left: 30%;
    }
}

@media only screen and (max-width: 991px) {
    .homeHero .title {
        left: 25%;
    }
}

@media only screen and (max-width: 769px) {
    .homeHero .title {
        bottom: inherit;
        top: 14%;
        left: 15%;
    }
}

@media only screen and (max-width: 380px) {
    .homeHero .title {
        left: 8%;
    }
}

.homeHero .title h1 {
    font-size: 21px;
    margin: 0 0 15px;
    word-spacing: -2px;
}

@media only screen and (max-width: 500px) {
    .homeHero .title h1 {
        font-size: 20px;
    }
}

.homeHero .title span {
    font-size: 60px;
    line-height: 56px;
    background: #d3ad6e;
    background: -moz-linear-gradient(top, #d3ad6e 16px, #09090a 56px);
    background: -webkit-gradient(left top, left bottom, color-stop(16px, #d3ad6e), color-stop(56px, #09090a));
    background: -webkit-linear-gradient(top, #d3ad6e 16px, #09090a 56px);
    background: -o-linear-gradient(top, #d3ad6e 16px, #09090a 56px);
    background: -ms-linear-gradient(top, #d3ad6e 16px, #09090a 56px);
    background: linear-gradient(to bottom, #d3ad6e 16px, #09090a 56px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: "Sabatica";
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .homeHero .title span {
        background: transparent;
        color: #d3ad6e;
    }
}

@media only screen and (max-width: 769px) {
    .homeHero .title span {
        font-size: 45px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 500px) {
    .homeHero .title span {
        font-size: 30px;
        line-height: 30px;
    }
}

.homeHero .title .text {
    font-family: "Sabatica";
    margin-top: 5px;
    font-size: 18px;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 8px, #000 28px);
    background: -webkit-gradient(left top, left bottom, color-stop(8px, #fff), color-stop(28px, #000));
    background: -webkit-linear-gradient(top, #fff 8px, #000 28px);
    background: -o-linear-gradient(top, #fff 8px, #000 28px);
    background: -ms-linear-gradient(top, #fff 8px, #000 28px);
    background: linear-gradient(to bottom, #fff 8px, #000 28px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .homeHero .title .text {
        background: transparent;
        color: white;
    }
}

@media only screen and (max-width: 500px) {
    .homeHero .title .text {
        font-size: 15px;
    }
}

.homeHero .more {
    position: absolute;
    left: 50%;
    bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    cursor: pointer;
    line-height: 20px;
    animation: bounceMore 1s infinite forwards;
}

.homeHero .more svg {
    fill: #fff;
    width: 21px;
    height: 19px;
    display: block;
    margin: 0 auto;
    margin-top: 0px;
}

@media only screen and (max-width: 600px) {
    .homeHero .more {
        bottom: 10px;
        left: 46%;
    }
}