:root {
    --primary: #ff8a00;
    --bg: #010101;
}
* {
    font-family: "Poppins", sans-serif;
}
.lucky-font {
    font-family: "Luckiest Guy", cursive;
}
.nabla-font {
    font-family: "Nabla", cursive;
}
.chewy-font {
    font-family: "Chewy", cursive;
}
.jockey-font {
    /* color: #ff8a00; */
    color: black;
    letter-spacing: 3px;
    font-family: "Jockey One", sans-serif;
}
.arabic-font {
    font-family: "Noto Sans Arabic", sans-serif;
}
.jf-shadow {
    color: #78bef2;
    text-shadow: 0 0 18px black;
}
.odibee-font {
    font-family: "Odibee Sans", cursive;
}
.bg-button-primary {
    background-color: #ff8a00;
    color: #fff6e4;
}
.bg-button-secondary {
    background-color: #fff6e4;
    color: #ff8a00;
}

.text-button-primary {
    color: #fff6e4;
}
.text-button-secondary {
    color: #ff8a00;
}
.active-nav {
    text-decoration: underline;
    color: #ff8a00 !important;
}
/* Apa Itu SIBETA */
.row {
    margin-left: 0;
    margin-right: 0;
}
.desc-container p {
    font-size: 1rem;
}
.desc-image {
    text-align-last: right;
    place-self: center;
}
nav {
    box-shadow: 0px 0px 10px 0px black !important;
}
/* End */

/* Card Materi */
.card-materi {
    /* background-color: #fff6e4; */
}
.card-materi-body {
    /* transition: 1s; */
    background-color: white;
    box-shadow: 0px 4px 0px #5f4110;
}
.card-materi-body:hover {
    color: white;
    /* transform: translate(0px, 4px); */
    /* box-shadow: none; */
}
.materi-success {
    background-color: #00d26a;
}
.materi-success:hover {
    background-color: #00d26a !important;
}
.bg-card {
    display: flex;
    background-color: #24d3c6 !important;
}
.bg-card img {
    align-self: center;
    margin: auto;
}
.floating {
    animation-name: floating;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}
/* COVER */
/* .cover-bg {
    height: 92vh;
    background-color: #78bef2;
}
.bg-cover {
    height: 92vh;
    background: url("../img/bg_sibeta.jpg");
    background-size: 100% !important;
    background-repeat: no-repeat !important;
} */
/* Hero Content */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("../img/hero-cover.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    background: linear-gradient(
        0deg,
        rgba(248, 249, 250, 1) 8%,
        rgba(255, 255, 255, 0) 50%
    );
}

.hero .content {
    padding: 1.4rem 7%;
    max-width: 60rem;
}
.hero .content h1 {
    font-size: 9rem;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(1, 1, 3, 0.5);
    line-height: 1.2;
}
.hero .content h1 span {
    color: var(--primary);
}
.hero .content h2 {
    font-size: 4rem;
    line-height: 1.4;
    font-weight: 100;
    text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
    /* mix-blend-mode: difference; */
}
.hero .content .cta {
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.4rem;
    color: #fff;
    background-color: var(--primary);
    border-radius: 0.5rem;
    box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
/* Hero Section */

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(0, -20px);
    }
    100% {
        transform: translate(0, -0px);
    }
}
footer {
    box-shadow: 0px 0px 10px 0px black !important;
    background-color: var(--primary);
    text-align: center;
    padding: 1.4rem 0 0.8rem;
    margin-top: 3rem;
}
footer .sosials {
    padding: 0.5rem 0;
}
footer .sosials a {
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
    margin: 1rem;
}
footer .sosials a:hover,
footer .links a:hover {
    color: #fff !important;
    text-decoration: underline;
}
footer .links {
    margin-bottom: 0.8rem;
}
footer .links a {
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
    text-decoration: none;
    padding: 0.7rem 1rem;
}
footer .credit {
    font-size: 0.8rem;
}
footer .credit a {
    color: var(--bg);
    font-weight: 700;
}

/* Media Queries */
/* Laptop */
@media (max-width: 1366px) {
    html {
        font-size: 75%;
    }
}
/* Tablet */
@media (max-width: 768px) {
    html {
        font-size: 62.5%;
    }
}
/* Mobile */
@media (max-width: 450px) {
    html {
        font-size: 55%;
    }
    .navbar-collapse {
        padding-left: 1rem !important;
        margin-left: 0 !important;
    }
}
