/* =========================== SERVICE =========================== */

.service {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}

.service .card {
    width: 30%;
    background-color: var(--BGCard);
    height: auto;
    border-radius: 3px;
    color: var(--ColorText);
    font-family: var(--font1);
    padding: 20px;
    border: 1px solid var(--BGCardHover);
    cursor: pointer;
}

.service .card span {
    font-size: 20px;
    font-weight: 200;
    opacity: .6;
}

.service .card h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 5px;
}

.service .card p {
    font-size: 14px;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 30px;
}

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

.service .card .spin {
    transition: all .3s ease-in-out;
}

.service .card a:hover {
    color: var(--ColorText);
}

.service .card a:hover>.spin {
    color: var(--ColorText);
    transform: rotate(0);
}

.service .card a i {
    transform: rotate(-45deg);
    font-size: 25px;
}


@media screen and (max-width: 992px) {
    .service .card {
        width: 25%;
    }

    .service {
        width: 100%;
        height: 100%;
        background: var(--BGBody);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .service .card {
        width: 100%;
    }

    .service .card:nth-child(1) {
        margin-top: 20px;
    }
}


/* =========================== ADS =========================== */
.ads {
    width: 100%;
    height: 100%;
}

.ads .ads_logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0px 20px;
}

.ads .ads_logo .adds {
    width: 48%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.ads .ads_logo .adds img {
    width: 20%;
}

.ads .ads_logo .adds:nth-child(2) img:nth-child(1) {
    width: 15%;
}

.ads .ads_logo .adds img:nth-child(3) {
    width: 8%;
}

@media screen and (max-width: 768px) {
    .ads .ads_logo {
        width: 100%;
        height: 100%;
        gap: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 0px 20px;
    }

    .ads .ads_logo .adds {
        width: 100%;
    }
}


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

.about .left,
.about .right {
    width: 50%;
    height: 100vh;
}

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

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

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

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

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

.about .left {
    background: url('../assets/img/bl.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 3px;
    position: relative;
}

.about .left::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 {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        gap: 2rem;
        padding: 0 2% 20px 2%;
    }

    .about .left,
    .about .right {
        width: 50%;
        height: 100vh;
    }

    .about .right {
        color: var(--ColorText);
        background-color: var(--BGCard);
        padding: 40px;
        border-radius: 3px;
    }

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

    .about .right h1 {
        margin-top: 100px;
        font-size: 30px;
        line-height: 4rem;
        font-weight: 300;
    }
}

@media screen and (max-width: 900px) {
    .about {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0 2% 20px 2%;
    }

    .about .left,
    .about .right {
        width: 100%;
        height: 90vh;
    }

    .about .right {
        color: var(--ColorText);
        background-color: var(--BGCard);
        padding: 40px;
        border-radius: 3px;
        height: 100%;
    }
}

@media screen and (max-width: 440px) {

    .about .left,
    .about .right {
        width: 100%;
        height: 90vh;
    }

    .about .left {
        height: 60vh;
        background-position: center;
        background-size: cover;
    }

    .about .right {
        color: var(--ColorText);
        background-color: var(--BGCard);
        padding: 30px;
        border-radius: 3px;
        height: 100%;
    }
}

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

.abouts .left,
.abouts .right {
    width: 50%;
    height: 100vh;
}

.abouts .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.abouts .left .card {
    width: 100%;
    background-color: var(--BGCard);
    border-radius: 10px;
    padding: 35px;
    font-size: 20px;
    color: var(--ColorText);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.abouts .left .card:hover {
    background-color: var(--BGCardHover);
}

.abouts .left .card i {
    color: var(--BGCardHover);
    font-size: 30px;
    color: var(--ColorText);
}

.abouts .left .card .text {
    padding-right: 60px;
}

.abouts .left .card .text h1 {
    font-size: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.abouts .left .card .text span {
    font-size: 14px;
    font-weight: 200;
}

.abouts .right {
    background: url('../assets/img/umkm2.jpg');
    background-position: center;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 3px;
}

.abouts .right::before {
    content: "";
    background: rgba(0, 4, 10, 0.3);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}


@media screen and (max-width: 992px) {
    .abouts {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 2% 20px 2%;
    }

    .abouts .left,
    .abouts .right {
        width: 100%;
        height: 100vh;
    }

    .abouts .left .card {
        padding: 35px 25px;
    }

    .abouts .right {
        border-radius: 3px;
        height: 70vh;
    }
}

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

    .abouts .left .card {
        padding: 25px;
    }

    .abouts .right {
        border-radius: 10px;
        background-position: center;
        background-size: cover;
        height: 60vh;
    }
}


/* =========================== WORKS =========================== */
.works {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.works .text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
    margin-bottom: 20px;
}

.works .text h1 {
    text-transform: uppercase;
    font-size: 40px;
    color: var(--ColorText);
    font-weight: 200;
}

.works .text a {
    display: flex;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ColorText);
    gap: 1rem;
    align-items: center;
}

.works .text a:hover>i {
    transform: rotate(0deg);
}

.works .text a i {
    transform: rotate(-45deg);
    font-size: 25px;
    transition: all .3s ease-in-out;
}

.works .work_card {
    width: 100%;
    height: 100%;
}

.works .work_card .work:nth-child(1) {
    background: url('../assets/img/delegan1.webp');
    margin-bottom: 2rem;
    width: 100%;
    height: 90vh;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.works .work_card .work:nth-child(2) {
    background: url('../assets/img/gosari.jpg');
    margin-bottom: 2rem;
    width: 100%;
    height: 90vh;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.works .work_card .work:nth-child(3) {
    background: url('../assets/img/setigi1.jpg');
    margin-bottom: 2rem;
    width: 100%;
    height: 90vh;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.works .work_card .work:nth-child(4) {
    background: url('../assets/img/bl.webp');
    width: 100%;
    height: 90vh;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

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

.works .work_card .work {
    padding: 60px;
    height: 100%;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.works .work_card .work span img {
    width: 10%;
}

.works .work_card .work .text {
    z-index: 3;
}

.works .work_card .work .text span {
    padding: .8rem 3rem;
    color: var(--ColorText);
    background-color: #5555558f;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 5px;
}

.works .work_card .work .text h1 {
    font-size: 100px;
    font-weight: 300;
    letter-spacing: 1px;
}


@media screen and (max-width: 992px) {
    .works .text {
        flex-direction: column;
        align-items: center;
    }

    .works .work_card {
        width: 100%;
        height: 100%;
    }

    .works .work_card .work:nth-child(1),
    .works .work_card .work:nth-child(2),
    .works .work_card .work:nth-child(3),
    .works .work_card .work:nth-child(4) {
        height: 70vh;
        background-position: center;
    }

    .works .work_card .work {
        padding: 30px;
    }

    .works .work_card .work span img {
        width: 20%;
    }

    .works .work_card .work .text {
        display: flex;
        align-items: flex-start;
    }

    .works .work_card .work .text h1 {
        font-size: 65px;
    }

    .works .work_card .work .text span {
        margin-top: 25px;
    }
}

@media screen and (max-width: 440px) {

    .works .work_card .work:nth-child(1),
    .works .work_card .work:nth-child(2),
    .works .work_card .work:nth-child(3),
    .works .work_card .work:nth-child(4) {
        height: 50vh;
        background-attachment: local;
    }
}

/* =========================== LINK =========================== */

.link {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.link .card {
    width: 30%;
    background-color: var(--BGCard);
    height: auto;
    border-radius: 3px;
    color: var(--ColorText);
    font-family: var(--font1);
    padding: 20px;
    border: 1px solid var(--BGCardHover);
    cursor: pointer;
}

.link .card:hover {
    background-color: var(--BGCardHover);
}

.link .card .arrow {
    display: flex;
    margin-bottom: 60px;
    align-items: center;
    justify-content: space-between;
}

.link .card .arrow i {
    font-size: 25px;
}

.link .card span {
    font-size: 20px;
    font-weight: 200;
    opacity: .6;
}

.link .card h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 5px;
}

.link .card p {
    font-size: 14px;
    font-weight: 200;
    line-height: 1.5;
}

@media screen and (max-width: 992px) {
    .link .card {
        width: 25%;
    }
}


@media screen and (max-width: 835px) {
    .link {
        width: 100%;
        height: 100%;
        background: var(--BGBody);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .link .card {
        width: 100%;
    }
}



/* =========================== BLOG =========================== */
.blog {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog .blogs {
    width: 100%;
    height: 100%;
}

.blog .blogs .blogger {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font1);
    font-weight: 200;
    color: var(--ColorText);
}

.blog .blogs .blogger .texts {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 2%;
    justify-content: space-between;
    align-items: center;
}

.blog .blogs .blogger .texts h1 {
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 200;
}

.blog .blogs .blogger .texts a {
    font-size: 18px;
    font-weight: 200;
    color: var(--ColorText);
    display: flex;
    text-transform: uppercase;
    align-items: center;
    gap: 1rem;
}

.blog .blogs .blogger .texts a:hover>i {
    transform: rotate(0deg);
}

.blog .blogs .blogger .texts a i {
    transform: rotate(-45deg);
    font-size: 25px;
    transition: all .3s ease-in-out;
}

.blog .blogs .blogger .wrap {
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
}

.blog .blogs .blogger .wrap .card {
    background: var(--BGCard);
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    cursor: pointer;
    border: 1px solid var(--BorderCard);
}

.blog .blogs .blogger .wrap .card img {
    width: 80%;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog .blogs .blogger .wrap .card .text {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    justify-content: flex-start;
}

.blog .blogs .blogger .wrap .card .text h1 {
    font-size: 24px;
    font-weight: 300;
}

.blog .blogs .blogger .wrap .card .text span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: .6;
    letter-spacing: 1px;
    margin-bottom: 8px;
}


.blog .blogs .blogger .wrap .card .text p {
    text-align: start;
    font-size: 14px;
    margin-top: 10px;
}

.blog .blogs .blogger .wrap .card .text a {
    padding: 10px 30px;
    border-radius: 5px;
    width: 40%;
    margin: 20px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--BGButton);
    border: 1px solid var(--BorderCard);
    color: var(--ColorButton);
    font-weight: 400;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.blog .blogs .blogger .wrap .card .text a:hover {
    background-color: #fff;
    color: var(--BGBody);
}

@media screen and (max-width:992px) {
    .blog .blogs .blogger h1 {
        font-size: 80px;
        padding-top: 40px;
    }

    .blog .blogs .blogger p {
        font-size: 18px;
        text-transform: capitalize;
        font-weight: 200;
    }

    .blog .blogs .blogger .wrap .card .text a {
        width: 40%;
    }

    .blog .blogs .blogger .wrap .card {
        width: 100%;
        padding: 10px 0 40px 0;
    }
}

@media screen and (max-width: 835px) {
    .blog .blogs .blogger .texts {
        flex-direction: column;
    }
}

@media screen and (max-width: 640px) {
    .blog .blogs .blogger .wrap .card .text a {
        width: 80%;
    }
}