/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --hitam: #000;
    --biru: #3193F1;
    --merah: #F9322C;
    --white: #ffffff;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #f97316;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #407BFF;
    --secondary: #6c757d;
    --success: #26ff59;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #0f1729;


    --header-height: 3rem;

    /*========== Colors ==========*/
    --hue: 174;
    --sat: 63%;
    --first-color: hsl(var(--hue), var(--sat), 40%);
    --first-color-alt: hsl(var(--hue), var(--sat), 36%);
    --title-color: hsl(var(--hue), 12%, 15%);
    --text-color: hsl(var(--hue), 8%, 35%);
    --body-color: hsl(var(--hue), 100%, 99%);
    --container-color: #FFF;

    /*========== Font and typography ==========*/
    --body-font: 'Open Sans', sans-serif;
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;
    --tiny-font-size: .625rem;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 968px) {
    :root {
        --h1-font-size: 2.25rem;
        --normal-font-size: 12px;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

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

.logo__ {
    height: 55px;
    max-height: 55px;
    width: 55px;
    margin-right: 5px;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
    padding: 4.5rem 0 2rem;
}

.section__title {
    font-size: var(--h1-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section__height {
    height: 100vh;
}

/*=============== LAYOUT ===============*/
.container {
    max-width: 968px;
    margin-left: 1rem;
    margin-right: 1rem;
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 55px;
    background-color: var(--orange);
    z-index: var(--z-fixed);
    transition: .4s;
}

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

.nav__img {
    width: 32px;
    border-radius: 50%;
    margin-right: 5px;
    margin-left: 20px;
}


@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: var(--container-color);
        box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
        width: 100%;
        height: 4rem;
        padding: 0 1rem;
        display: grid;
        justify-content: center;
        border-radius: 1.25rem 1.25rem 0 0;
        transition: .4s;
    }

    .nav__link {
        flex-direction: column;
        align-items: center;
        row-gap: 4px;
        color: var(--orange);
        font-weight: normal;
        transition: all 0.3s ease;
    }

    .nav__list,
    .nav__link {
        display: flex;
        margin-top: 2px;
        margin-right: 10px;
        text-align: center !important;
    }

}

.nav__list {
    justify-content: space-between;
}


.nav__icon {
    font-size: 1.5rem;
}

/*Active link*/
.active-link {
    position: relative;
    color: var(--dark) !important;
    /* text-shadow: 0px 0px 12px rgba(15, 23, 41, 1),0px 0px 6px rgba(15, 23, 41, 1),0px 0px 25px rgba(15, 23, 41, 0.93); */
    transition: .3s;
}

/* Minimalist design, active link */
/* .active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
} */

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

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 320px) {
    .nav__name {
        display: none;
    }
}

/* For medium devices */
@media screen and (min-width: 576px) {
    .nav__list {
        justify-content: center;
        column-gap: 2rem;
    }
}

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

    .section {
        padding: 7rem 0 2rem;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
        /* 4.5rem */
    }

    .nav__img {
        display: none;
    }

    .nav__icon {
        display: none !important;
    }

    .nav__name {
        font-size: var(--normal-font-size);
        /* display: block; */
        /* Minimalist design, visible labels */
    }

    /* First design, remove if you choose the minimalist design */
    .active-link::before {
        content: '';
        position: absolute;
        bottom: -.35rem;
        width: 4px;
        height: 4px;
        background-color: var(--dark);
        border-radius: 50%;
    }

    /* Minimalist design */
    /* .active-link::before{
        bottom: -.75rem;
  } */
}


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

    .nav__logo {
        color: var(--title-color);
        font-weight: 600;
        margin-top: 0;
        font-size: 12px;
    }

    .nav__name {
        font-size: 12px;
        margin-top: 0px;
        /* display: none;*/
        /* Minimalist design, hidden labels */
    }
    .nav__list,
    .nav__link {
        display: flex;
    }
    .goog-te-gadget .goog-te-combo, .goog-te-gadget:active .goog-te-combo, .goog-te-gadget:focus .goog-te-combo {
        margin: 4px 0;
        background-color: var(--white);
        color: var(--orange);
        border: 0px solid transparent !important;
        width: 120px;
        border-radius: 5px;
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width:640px) {
    .nav__name {
        font-size: 10px;
        /* display: none;*/
        /* Minimalist design, hidden labels */
    }

    .nav__link:hover {
        color: var(--dark) !important;
    }
    .goog-te-gadget .goog-te-combo, .goog-te-gadget .goog-te-combo:active, .goog-te-gadget .goog-te-combo:focus {
        margin: 4px 0;
        background-color: var(--white);
        color: var(--orange);
        border: 0px solid transparent !important;
        width: 120px;
        border-radius: 5px;
        text-align: center;
        font-size: 12px;
    }
}

.VIpgJd-ZVi9od-ORHb {
    background-color: transparent !important;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
    left: 0;
    top: 0;
    height: 39px;
    width: 100%;
    z-index: 10000001;
    position: fixed;
    border: none;
    border-bottom: 1px solid #6B90DA;
    margin: 0;
    box-shadow: 0 0 8px 1px #999;
}
