/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.21

*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap');

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0);
    border-radius: 0px;
    background: #0a0a0b;
}

::-webkit-scrollbar-thumb {
    background-color: var(--default);
    border-radius: 0px;
}

:root{
    --background: #090a0b;
    --background--second: black;
    --default: #be3232;
    --text: white;
    --gray: #828282;
    --header--text: white;
    --header--img: url('../img/header-red.png');

    /*--spaceis--logo: brightness(0) saturate(100%) invert(0%) */
    /*sepia(4%) saturate(0%) hue-rotate(324deg) brightness(95%) */
    /*contrast(105%);*/
}

/* Website style */
* {
    padding: 0;
    margin: 0;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    overflow-x: hidden;
    background-color: var(--background);
}

a{
    text-decoration: none;
}

[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}
.aos-init[data-aos][data-aos].aos-animate {
    transform: unset;
}

.row-center{
    display: flex;
    align-items: center;
}

/* Navbar */

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__links ul{
    display: flex;
    gap: 45px;
}

.navbar__links li{
    font-size: 18px;
    list-style: none;
    font-weight: 500;
}

.navbar__links a{
    color: var(--header--text);
    opacity: 0.7;
    transition: .3s;
}

.navbar__links .active{
    font-weight: 600;
    opacity: 1;
    color: var(--header--text);
    transition: .3s;
}

.navbar__links a:hover{
    opacity: 1;
    color: var(--header--text);
    transition: .3s;
}

.navbar__brand h5{
    font-weight: 800;
    color: var(--header--text);
}

.navbar__brand img{
    width: 70px;
}

.navbar__toggle{
    display: none;
}

.navbar__btn{
    background-color: var(--default);
    padding: 15px 70px;
    color: var(--header--text)!important;
    font-size: 15px;
    transition: .4s;
}

.navbar__btn:hover{
    opacity: 0.7;
    transition: .4s;
}

.online{
    color: var(--header--text);
    opacity: 0.95;
}

.header-content-online {
    animation: animate 3s linear infinite;
    border-radius: 100%;
    margin-bottom: 3px;
    margin-right: 14px;
}

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 #67e872af, 0 0 0 0 #67e872af;
        transform: scale(0.70);
    }
    40% {
        box-shadow: 0 0 0 10px #ff6d4a00, 0 0 0 0 #67e872af;
        transform: scale(0.90);
    }
    80% {
        box-shadow: 0 0 0 10px #ff6d4a00, 0 0 0 10px #ff6d4a00;
        transform: scale(0.80);
    }
    100% {
        box-shadow: 0 0 0 0 #ff6d4a00, 0 0 0 10px #ff6d4a00;
        transform: scale(0.70);
    }
}

@media only screen and (max-width: 1400px) {
    .navbar__links{
        display: none;
    }

    .navbar__links ul{
        flex-direction: column;
        gap: 20px;
    }

    .navbar__links .active, .navbar__links a:hover{
        color: var(--text);
    }

    .navbar__brand{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar__toggle{
        display: block;
    }

    .navbar__toggle h5{
        font-weight: 500;
        font-size: 17px;
    }

    .navbar__links--active{
        display: block;
        position: absolute;
        z-index: 3;
        background-color: var(--background--second);
        width: 85%;
        top: 100px;
        padding: 40px 20px;
    }

    .navbar__links li:nth-last-child(1){
        margin-top: 20px;
    }
}

/* Header */
header {
    background-image: var(--header--img);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    padding: 50px 0% 50px;
}

.header__content{
    padding: 200px 0 250px;
}

header h1{
    font-weight: 600;
    color: var(--header--text);
    font-size: 70px;
}

header p{
    margin-top: 20px;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 100px;
}

.button__voucher{
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--header--text);
    font-weight: 500;
}

.hr{
    height: 5px;
    width: 80px;
    background-color: var(--default);
}

.header-right{
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 996px) {
    header{
        padding: 50px 7% 50px;
    }

    .header__content{
        padding: 100px 0 170px;
    }

    .header-right{
        display: flex;
        justify-content: flex-start;
    }

    .header-right img{
        width: 150px;
        margin-bottom: 40px;
    }

    header h1{
        font-size: 50px;
    }

    header p{
        font-size: 14px;
        margin-bottom: 50px;
    }

    .button__voucher{
        margin-bottom: 60px;
    }

}

/* Footer */
footer{
    background-color: var(--background--second);
    padding: 70px 0% 50px;
}

footer img{
    width: 80px;
}

.footer-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    justify-content: flex-start;
}

footer h5{
    color: var(--text);
    font-weight: 600;
    margin-bottom: 20px;
}

footer li{
    list-style: none;
}

footer h6{
    margin-top: 30px;
    color: var(--text);
    opacity: .7;
    font-weight: 500;
    font-size: 14px;
}

footer li a{
    color: var(--gray);
    font-weight: 500;
    transition: .3s;
}

footer li a:hover{
    color: var(--text);
    transition: .3s;
}

.footer-long{
    margin-top: 40px;
    border-top: 1px solid rgba(128, 128, 128, 0.11);
    padding-top: 30px;
}

.footer-long p{
    font-size: 14px;
}

.spaceis{
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    opacity: 0.3;
    transition: .3s;
    cursor: pointer;
}

.spaceis:hover{
    opacity: 1;
    transition: .3s;
}

.spaceis__img{
    width: 35px;
    filter: var(--spaceis--logo);
}

.spaceis__info{
    font-size: 12px;
    margin-top: 18px;
    color: var(--text);
    font-weight: 500;
}

.spaceis__info a{
    color: var(--text);
}

@media only screen and (max-width: 1100px) {
    footer{
        padding: 70px 7% 50px;
    }

    .footer-right{
        margin-top: 20px;
        align-items: flex-start;
        text-align: left;
    }

    .spaceis{
        margin-top: 10px;
        margin-bottom: 20px;
    }

    footer li{
        margin-left: -30px;
    }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
     --bs-gutter-x: 0rem;
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px;
    }
}