/* =========================== HERO =========================== */
.heros {
    width: 100%;
    height: 100%;
    display: block;
    align-items: center;
    padding: 100px 2% 0 2%;
}

.heros .hero {
    width: 100%;
    color: var(--ColorText);
    position: relative;
    border-radius: 20px;
    height: 100vh;
    margin-bottom: 0;
    background: url('../assets/img/gresik1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(70%);
    display: flex;
    flex-direction: column;
}

.heros .hero::before {
    content: "";
    height: 100%;
    background: rgba(33, 33, 33, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.heros .hero h1 {
    font-size: 15rem;
    text-transform: uppercase;
    z-index: 10;
    filter: grayscale(0%);
    line-height: 15rem;
    font-weight: 200;
    margin: 120px 0 0 60px;
}

.heros .hero h1 span {
    margin-left: 120px;
}

.heros .hero .text {
    filter: grayscale(0%);
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 180px 10px 180px;
}

.heros .hero .text p {
    font-size: 20px;
    font-weight: 300;
    width: 70%;
}

.heros .hero .text a {
    display: flex;
    align-items: center;
    padding: 2rem 4rem;
    font-size: 22px;
    letter-spacing: 1px;
    gap: .5rem;
    color: var(--ColorText);
    text-transform: uppercase;
}

.heros .hero .text a i {
    font-size: 30px;
}

@media screen and (max-width: 1410px) {
    .heros .hero h1 {
        font-size: 10rem;
        text-transform: uppercase;
        line-height: 10rem;
        font-weight: 200;
        margin: 120px 0 0 60px;
    }

    .heros .hero h1 span {
        margin-left: 0px;
    }

    .heros .hero .text {
        padding: 60px;
    }
}

@media screen and (max-width: 992px) {
    .heros .hero h1 {
        font-size: 8rem;
        text-transform: uppercase;
        line-height: 8rem;
        font-weight: 200;
    }

    .heros .hero h1 span {
        margin-left: 0px;
    }

    .heros .hero {
        height: 85vh;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .heros .hero .text {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: space-between;
        padding: 40px;
    }

    .heros .hero .text p {
        font-size: 20px;
        font-weight: 300;
        padding: 2rem;
        width: 100%;
    }

    .heros .hero .text a {
        display: flex;
        align-items: center;
        padding: 2rem;
        font-size: 22px;
        letter-spacing: 1px;
        gap: .5rem;
        color: var(--ColorText);
        text-transform: uppercase;
    }

    .heros .hero .text a i {
        font-size: 30px;
    }
}

@media screen and (max-width: 440px) {
    ::-webkit-scrollbar {
        display: none;
    }

    .heros .hero h1 {
        font-size: 6rem;
        margin-left: 30px;
    }

    .heros .hero .text {
        padding: 20px;
    }

    .heros .hero .text p {
        font-size: 20px;
        width: 100%;
    }

    .heros .hero .text a i {
        font-size: 30px;
    }
}