/*
    Img
*/
.yayasan_logo {
    background-image: url('../assets/img/isi_logo.png');
    width: 5rem;
    height: 5rem;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.server-solid {
    background-image: url('../assets/img/server-solid.svg');
    width: 5rem;
    height: 10rem;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center;
    align-items: center;
    display: inline-flex;
    /*border: 1px solid red;*/
}

/*
    Base
*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

body {
    background-color: var(--body-color);
    color: var(--text-color);
    transition: .4s;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

h1,
h2,
h3 {
    color: var(--title-color);
    font-weight: var(--font-bold);
}

ul {
    list-style: none;
}

.bordered-button {
    text-decoration: none;
    border-radius: 1em;
}

.flex-column {
    display: inline;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
}

.sekolah-logo {
    height: 6rem;
    margin-bottom: 8px;
}

/*Theme*/
/*Variables Dark Theme*/
body.dark-theme {
    --first-color-dark: hsl(var(--hue), 8%, 20%);
    --title-color: hsl(var(--hue), 4%, 95%);
    --text-color: hsl(var(--hue), 4%, 75%);
    --body-color: hsl(var(--hue), 8%, 12%);
    --first-color-lighten-footer: hsl(var(--hue), 8%, 16%);
    --container-color: hsl(var(--hue), 8%, 16%);
}

/*Button Dark/Light*/
.change-theme {
    color: var(--title-color);
    font-size: 1.15rem;
    cursor: pointer;
}

.nav_btns {
    display: inline-flex;
    align-items: center;
    column-gap: 1rem;
}

/*----------
Color changes in some parts of the website of
the website, in dark theme  
----------*/

.dark-theme,
.dark-theme .questions {
    background-color: var(--first-color-dark);
}

.dark-theme .product_circle,
.dark-theme .footer_subscribe {
    background-color: var(--container-color);
}

.dark-theme .scroll-header {
    box-shadow: 0 1px 4px hsl(var(--hue), 4%, 4%, .3);
}

/*Reusable CSS Classes*/
.section {
    padding: 0.8rem 0 0 0;
}

.section_title {
    font-size: var(--big-font-size);
}

.section_title-center {
    text-align: center;
}

.section_title-center-color {
    text-align: center;
    color: var(--first-color);
}

.container {
    max-width: 968px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
}

.main {
    background-color: var(--milk);
    overflow: hidden;
}


/*----HEADER----*/

.header {
    width: 100%;
    background-color: var(--body-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
}


/*-----NAV-----*/

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_logo,
.nav_toggle,
.nav_close {
    color: var(--title-color);
}

.nav_logo {
    font-weight: 700;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
    transition: .3s;
}

.nav_logo-icon {
    font-size: 1.15rem;
    color: var(--first-color);
}

.nav_logo:hover {
    color: var(--first-color);
}

.nav_toggle {
    display: inline-flex;
    font-size: 1.25rem;
    cursor: pointer;
}

@media screen and (max-width: 747px) {
    .nav_menu {
        position: fixed;
        background-color: var(--container-color);
        width: 80%;
        height: 100%;
        top: 0;
        right: -100%;
        box-shadow: -2px -0 4px hsla(var(--hue), 24%, 15%, .1);
        padding: 4rem 0 0 3rem;
        border-radius: 1rem 0 0 1rem;
        transition: .3s;
        z-index: var(--z-fixed);
    }
}

.nav_close {
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    cursor: pointer;
}

.nav_list {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.nav_link {
    color: var(--title-color);
    font-weight: var(--font-medium);
    transition: .3s;
}

.nav_link:hover {
    color: var(--first-color);

}

/*Footer_link*/
.footer_link {
    color: var(--title-color);
    font-weight: var(--font-medium);
    transition: .3s;
    text-decoration: none;
}

.footer_link:hover {
    color: var(--first-color);
}

/*Show menu*/
.show-menu {
    right: 0;
}

/*Change background header*/
.scroll-header {
    box-shadow: 0 1px 4px hsla(var(--hue, 4%, 15%, .1));
}

/*Active link*/
.active-link {
    position: relative;
    color: var(--first-color);
}

.active-link::after {
    content: '';
    position: absolute;
    bottom: -.5rem;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: var(--first-color);

}

/*-----------Buttons-----------*/
.button {
    text-decoration: none;
    display: inline-block;
    background-color: var(--leaf);
    color: #fff;
    padding: .6rem 1rem;
    margin-top: .5rem;
    border-radius: .5rem;
    font-weight: var(--font-medium);
    transition: .3s;
}

.button:hover {
    background-color: var(--Eggshell);
    font-weight: var(--font-bold);
    color: var(--leaf);
    outline: solid .5px;
    outline-color: var(--leaf);
}

.button_icon {
    transition: .3s;
}

.button:hover .button_icon {
    transform: translateX(.25rem);
}

.button--flex {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    column-gap: .5rem;
}

.button--link {
    color: var(--first-color);
    font-weight: var(--font-medium);
}

.button--link:hover .button_icon {
    transform: translateX(.25rem);
}

/*-----------About-----------*/
.tentang_container {
    row-gap: 2rem;
    margin-top: 2.5rem;
}

.tentang_container-mg {
    row-gap: 2rem;
    margin-top: 2.5rem;
}

.tentang_data {
    display: inline-block;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}

.tentang_opening {
    position: relative;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.tentang_img {
    padding-top: 4rem;
    margin-bottom: 1rem;
    width: 20%;
    justify-self: center;
}

.tentang_img-mg {
    width: 280px;
    justify-self: center;
}

.tentang_title {
    margin-bottom: var(--mb-1);
}

.tentang_description {
    line-height: var(--line-height-1);
    font-weight: var(--font-medium);
}

.tentang_details {
    display: grid;
    row-gap: 1rem;
    margin-bottom: var(--mb-2-5)
}

.tentang_details-description {
    display: inline-flex;
    column-gap: .5rem;
    font-size: var(--small-font-size);
}

.tentang_details-icon {
    font-size: 1rem;
    color: var(--first-color);
    margin-top: .15rem;
}

/*-----------Seteps-----------*/

.steps_container {
    gap: 2rem;
    padding-top: 1rem;
}

.steps_title {
    color: #fff;
}

.steps_card {
    background-color: var(--container-color);
    padding: 2rem 1rem 2rem 1rem;
    width: 13rem;
    border-radius: 1rem;
    border: 2px solid var(--Gray);
}

.steps_card-title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5)
}

.steps_card-description {
    font-size: var(--small-font-size);
    line-height: var(--line-height-1);
}

.steps_card:hover {
    background-color: #EDEDED;
}

.steps_card:hover .steps_card-number {
    transform: translateY(-.25rem);
}

/*=============== FOOTER ===============*/
footer {
    background-color: var(--milk);
}

.footer_container {
    row-gap: 3rem;
}

.footer_logo {
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--title-color);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: var(--mb-2-5);
    text-decoration: none;
    transition: .3s;
}

.footer_logo-icon {
    font-size: 1.15rem;
    color: var(--first-color);
}

.footer_logo:hover {
    color: var(--first-color);
}

.footer_title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1-5);
}

.footer-logo-title {
    margin-top: .3rem;
}

.footer_subscribe {
    background-color: var(--first-color-lighten);
    padding: .75rem;
    display: flex;
    justify-content: space-between;
    border-radius: .5rem;
}

.footer_input {
    width: 70%;
    padding: 0 .5rem;
    background: none;
    color: var(--text-color);
    border: none;
    outline: none;
}

.footer_button {
    padding: 1rem;
}

.footer_data {
    display: grid;
    row-gap: .75rem;
}

.footer_information {
    font-size: var(--small-font-size);
}

.footer_social {
    display: inline-flex;
    column-gap: .75rem;
}

.footer_social-link {
    font-size: 1rem;
    color: var(--text-color);
    transition: .3s;
    text-decoration: none;
}

.footer_social-link:hover {
    transform: translateY(-.25rem);
}

.footer_cards {
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
}

.footer_card {
    width: 35px;
}

.footer_copy {
    text-align: center;
    font-size: var(--smaller-font-size);
    color: var(--container-color);
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    background-color: var(--first-color-alt);
}

/*--------------- SCROLL UP ---------------*/
.scrollup {
    position: fixed;
    background-color: var(--first-color);
    right: 1rem;
    bottom: -30%;
    display: inline-flex;
    padding: .5rem;
    border-radius: .25rem;
    z-index: var(--z-tooltip);
    opacity: .8;
    transition: .4s;

    text-decoration: none;
}

.scrollup_icon {
    font-size: 1rem;
    color: #FFF;
}

.scrollup:hover {
    background-color: var(--first-color-alt);
    opacity: 1;
}

/* Show Scroll Up*/
.show-scroll {
    bottom: 3rem;
}

/* Scroll Bar*/
::-webkit-scrollbar {
    width: .6rem;
    background: hsl(var(--hue), 4%, 53%);
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--hue), 4%, 29%);
    border-radius: .5rem;
}

/*-----------------Breakpoins--------------*/
/*For small devices*/
@media screen and (max-width: 320px) {
    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }

    .beranda_title {
        font-size: var(--h1-font-size);
    }

    .steps_card {
        padding: 1.5rem;
    }

    .product_container {
        grid-template-columns: .6fr;
        justify-content: center;
    }
}

/*For medium devices*/
@media screen and (min-width: 576px) {

    .steps_container {
        grid-template-columns: repeat(2, 1fr);
    }

    .product_description {
        padding: 0 4rem;
    }

    .questions {
        min-height: 0;
    }

    .product_container {
        grid-template-columns: repeat(2, 170px);
        justify-content: center;
        column-gap: 5rem;
    }

    .footer_subscribe {
        width: 400px;
    }

}

@media screen and (min-width: 767px) {
    body {
        margin: 0;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
        column-gap: 3rem;
    }

    .nav_toggle,
    .nav_close {
        display: none;
    }

    .nav_list {
        flex-direction: row;
        column-gap: 3rem;
    }

    .nav_menu {
        margin-left: auto;
    }

    .beranda_container,
    .tentang_container,
    .tentang_container-mg,
    .questions_container,
    .contact_container,
    .footer_container {
        grid-template-columns: repeat(2, 1fr);
    }

    .beranda {
        padding: 10rem 0 5rem;
    }

    .beranda_container {
        align-items: center;
    }

    .beranda_img {
        width: 380px;
        order: 1;
    }

    .bernada_social {
        top: 30%;
    }

    .questions {
        min-height: 0;
    }

    .questions_container {
        align-items: flex-start;
    }

    .footer_container {
        column-gap: 3rem;
    }

    .footer_subscribe {
        width: initial;
    }
}

/*For large devices*/
@media screen and (min-width: 992px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .section {
        padding: 0.8rem 0 0 0;
    }

    .section_title-center {
        text-align: center;
    }

    .beranda {
        padding: 13rem 0 5rem;
        min-height: 100vh;
    }

    .beranda_img {
        width: 450px;
    }

    .beranda_description {
        padding-right: 7rem;
    }

    .tentang_img {
        width: 128px;
    }

    .steps_container {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps_card-title {
        font-size: var(--normal-font-size);
    }


    .product_description {
        padding: 0 16rem;
    }

    .product_container {
        padding: 4rem 0;
        grid-template-columns: repeat(3, 185px);
        gap: 4rem 6rem;
    }

    .product_img {
        width: 160px;
    }

    .product_circle {
        width: 110px;
        height: 110px;
    }

    .product_title,
    .product_price {
        font-size: var(--normal-font-size);
        text-align: center;
    }

    .questions {
        min-height: 0;
    }

    .questions_container {
        padding: 1rem 0 4rem;
    }

    .questions_title {
        margin-bottom: var(--mb-1-5);
    }

    .questions_group {
        row-gap: 2rem;
    }

    .questions_header {
        padding: 1rem;
    }

    .questions_description {
        padding: 0 3.5rem 2.25rem 2.75rem;
    }

    .footer_logo {
        font-size: var(--h3-font-size);
    }

    .footer_container {
        grid-template-columns: 1fr .5fr .5fr .5fr;
    }

    .footer_copy {
        margin: 7rem 0 0;
    }
}

@media screen and (min-width: 1200px) {
    .tentang_container {
        column-gap: 7rem;
    }

    .tentang_container-mg {
        column-gap: 7rem;
    }

    .scrollup {
        right: 3rem;
    }
}