/* =========================== HEROS =========================== */
.heros {
    width: 100%;
    height: 100%;
    padding-top: 100px;
}

.heros .hero {
    padding: 20px;
    width: 100%;
    height: 100%;
    color: var(--ColorText);
}

.heros .hero span {
    font-size: 16px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heros .hero h1 {
    font-size: 90px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    width: 60%;
    line-height: 10rem;
    margin: 20px 0;
}

.heros .hero p {
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 200;
    opacity: .7;
}

@media screen and (max-width: 992px) {
    .heros .hero h1 {
        width: 90%;
        font-size: 45px;
    }
}

/* =========================== ABOUT =========================== */
.about {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 2% 20px 2%;
}

.about .abouts {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about .abouts .left,
.about .abouts .right {
    width: 50%;
    height: 100vh;
    border-radius: 10px;
}

.about .abouts .right {
    color: var(--ColorText);
    background-color: var(--BGCard);
    padding: 60px;
}

.about .abouts .right span {
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about .abouts .right h1 {
    margin-top: 120px;
    font-size: 50px;
    line-height: 6rem;
    font-weight: 200;
}

.about .abouts .right .text {
    display: flex;
    gap: 2rem;
    margin-top: 60px;
}

.about .abouts .right a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 16px;
    font-weight: 300;
    margin-top: 40px;
    letter-spacing: 1.2px;
    color: var(--ColorText);
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.about .abouts .right .spin {
    transition: all .3s ease-in-out;
}

.about .abouts .right a:hover {
    color: var(--ColorText);
}

.about .abouts .right a:hover>.spin {
    color: var(--ColorText);
    transform: rotate(0);
}

.about .abouts .right a i {
    transform: rotate(-45deg);
    font-size: 25px;
}

.about .abouts .right .text .text_left span,
.about .abouts .right .text .text_right span {
    font-size: 14px;
    font-weight: 200;
}

.about .abouts .left1 {
    background: url('../assets/img/setigi1.jpg');
    background-position: center;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.about .abouts .left2 {
    position: relative;
    background: url('../assets/img/umkm4.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about .abouts .left3 {
    position: relative;
    background: url('../assets/img/umkm1.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about .abouts .left4 {
    position: relative;
    background: url('../assets/img/bl.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about .abouts .left1::before,
.about .abouts .left2::before,
.about .abouts .left3::before,
.about .abouts .left4::before {
    content: "";
    background: rgba(0, 4, 10, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}



@media screen and (max-width: 1410px){
    .about .abouts .left, 
    .about .abouts .right {
        width: 50%;
        height: 100vh;
    }
    
    .about .abouts .right {
        color: var(--ColorText);
        background-color: var(--BGCard);
        padding: 40px;
        border-radius: 20px;
    }
    
    .about .abouts .right span {
        font-size: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .about .abouts .right h1 {
        margin-top: 100px;
        font-size: 30px;
        line-height: 4rem;
        font-weight: 300;
    }

    
    .about .abouts .left1,
    .about .abouts .left2,
    .about .abouts .left3,
    .about .abouts .left4 {
        background-position: center;
    }
}

@media screen and (max-width: 900px) {
    .about .abouts {
        flex-direction: column;
    }
    
    .about .abouts .left,
    .about .abouts .right {
        width: 100%;
        height: 90vh;
    }
    
    .about .abouts .right {
        color: var(--ColorText);
        background-color: var(--BGCard);
        padding: 40px;
        border-radius: 3px;
        height: 100%;
    }
}

@media screen and (max-width: 440px) {
    .about .abouts .left,
    .about .abouts .right {
        width: 100%;
        padding: 30px;
        height: 100%;
    }

    .about .abouts .left {
        height: 40vh;
        background-size: cover;
    }
}
