@import url("./all.css");

body {
    background-color: #fff;
}

.hero_home {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero_home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.content_hero {
    width: 100%;
    height: 100%;
    position: absolute;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content_hero h1 {
    font-size: 40px;
    line-height: 50px;
}

.desc_hero {
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.cek_paket_link {
    color: white;
    font-size: 17px;
}

.btn_home {
    background-color: var(--orange);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    gap: 5px;
}

.btn_home i {
    font-size: 17px;
}

.text_btn_home {
    font-size: 15px;
    font-weight: 600;
}

.section_image_l_text_r {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin-top: 100px;
}

.section_text_r_image_l {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin-top: 100px;
}

.sit_content_img {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sit_content_txt {
    flex: 1;
}

.img_sit {
    width: 80%;
}

.app_store {
    display: flex;
    flex-direction: row;
    /* gap: 10px; */
}

.app_store img {
    height: 45px;
    display: flex;
}

.sit_content_txt p {
    font-size: 15px;
    color: #909090;
}

.sit_content_txt h1 {
    font-size: 20px;
    color: var(--orange);
    margin-bottom: 5px;
}

.brand {
    width: 100%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand h1 {
    font-size: 25px;
    color: #000;
    margin-bottom: 5px;
    text-align: center;
}

.brand p {
    font-size: 15px;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.brand_img {
    width: 80%;
    display: flex;
}

.bg_grey {
    width: 100%;
    background-color: #fafafa;
    padding: 1px 0 100px 0;
    margin-top: 100px;
}

.img_brand_2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.img_brand_2 img {
    width: 100%;
    display: flex;
}

.grid_blog {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.content_blog {
    -webkit-box-shadow: 0px 4px 6px 4px rgba(228, 228, 228, 1);
    -moz-box-shadow: 0px 4px 6px 4px rgba(228, 228, 228, 1);
    box-shadow: 0px 4px 6px 4px rgba(228, 228, 228, 1);
    border-radius: 10px;
}

.content_blog img {
    width: 100%;
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: cover;
}

.content_blog_text {
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.titlecontent_blog_text {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.content_blog_text p {
    font-size: 13px;
    color: #000;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}

.content_blog_text h5 {
    text-align: right;
    padding: 5px 10px;
    color: #fff;
    background-color: #0da77c;
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
    display: inline;
}

.grid_rating {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.content_rating {
    -webkit-box-shadow: 0px 4px 6px 4px rgba(228, 228, 228, 1);
    -moz-box-shadow: 0px 4px 6px 4px rgba(228, 228, 228, 1);
    box-shadow: 0px 4px 6px 4px rgba(228, 228, 228, 1);
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
}

.cr_fp {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    object-fit: cover;
}

.content_rating h5 {
    margin-top: 10px;
    font-size: 16px;
    color: var(--orange);
    margin-bottom: 10px;
}

.cr_star {
    height: 20px;
}

.content_rating p {
    margin-top: 10px;
    font-size: 13px;
}

/* RESPONSIVE */
@media only screen and (max-width: 900px) {
    .hero_home {
        height: calc(100vh - 160px);
    }

    .hero_home img {
        display: flex;
    }

    .content_hero {
        padding: 0 20px;
        box-sizing: border-box;
    }

    .content_hero h1 {
        font-size: 25px;
        line-height: 35px;
    }

    .desc_hero {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .cek_paket_link {
        color: white;
        font-size: 14px;
    }

    .btn_home i {
        font-size: 15px;
    }

    .text_btn_home {
        font-size: 15px;
        font-weight: 600;
    }

    .section_image_l_text_r {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin-top: 100px;
    }

    .section_text_r_image_l {
        flex-direction: column-reverse;
        align-items: center;
        gap: 50px;
        margin-top: 100px;
    }

    .sit_content_txt {
        flex: 1;
        padding: 0 20px;
    }

    .app_store img {
        height: 40px;
        display: flex;
    }

    .sit_content_txt p {
        font-size: 14px;
        color: #909090;
    }

    .sit_content_txt h1 {
        font-size: 17px;
        color: var(--orange);
        margin-bottom: 5px;
    }

    .brand {
        padding: 0 20px;
        box-sizing: border-box;
    }

    .brand h1 {
        font-size: 17px;
        color: #000;
        margin-bottom: 5px;
        text-align: center;
    }

    .brand p {
        font-size: 14px;
        color: #000;
        text-align: center;
        margin-bottom: 20px;
    }

    .brand_img {
        width: 100%;
        display: flex;
    }

    .img_brand_2 {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .grid_blog {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .content_blog_text p {
        font-size: 13px;
        color: #000;
        text-align: left;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 15px;
    }

    .grid_rating {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
}
