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

    ------------
    Version 0.1.23

*/

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

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

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

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


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

/* Container */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
}

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

.container-fluid--full{
    max-width: 100%;
}

@media (min-width: 1600px) {
    .container-fluid--full {
        max-width: 1920px;
    }
}

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

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

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

    background-image: url("../img/bgMain.png");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Navbar */
.navbar{
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.navbar__brand{
    position: relative;
    padding-right: 60px;
    margin-right: 0px;
    align-items: center;
}

.navbar__brand img{
    width: 110px;
}

.navbar__brand::after{
    align-items: center;
    content: "";
    height: 50px;
    width: 2px;
    background-color: var(--navbarBorder);
    position: absolute;
    right: 0;
    top: 25%;
}

.navbar__nav{
    position: relative;
    margin-top: 12px;
    display: flex;
    gap: 0px;
}

.navbar__nav li{
    list-style: none;
    padding: 0 30px;
}

.navbar__nav a{
    text-decoration: none;
    font-weight: normal;
    font-size: 14px;
    color: var(--navbarStatic);
    transition: .3s;
}

.nav__active{
    font-weight: 600!important;
    color: var(--activeColor)!important;
}

.navbar__nav li:hover a{
    font-weight: 500!important;
    transition: .3s;
    color: var(--activeColor)!important;
}

.indicator{
    transition: transform 0.3s ease;
    position: absolute;
    display: none;
}

.indicator__active{
    display: flex;
}

.nav__active::before, .indicator::before{
    content: "";
    position: absolute;
    display: block;
    height: 60px;
    min-width: 80px;
    top: -63px;
    margin-left: -22px;
    z-index: 0;
}

.nav__active::after, .indicator::after{
    content: "";
    z-index: 1;   display: block;
    position: absolute;
    background: var(--activeColor);
    height: 2px;
    min-width: 80px;
    width: 80px;
    top: -23px;
    margin-left: -18px;
}

.indicator::after{
    margin-left: -10px;
}

.indicator::before{
    margin-left: -10px;
}

.nav__active::after{
    margin-left: 0px;
}


.nav__active::before{
    margin-left: 1px;
}

.navbar__online{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-weight: normal;
    font-size: 13px;
    color: var(--navbarOnline);
}

.navbar__online b{
    font-weight: bold;
    font-size: 13px;
    color: var(--activeColor);
}

.online__blob{
    scale: 0.8;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background-color: rgba(110, 255, 115, 0);
    border: 2px solid rgb(173, 200, 53);
    border-radius: 50px;
    margin-right: 8px;
    animation: animate 3s linear infinite;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.online__circle{
    position: absolute;
    border: 2px solid rgb(173, 200, 53);
    width: 18px;
    height: 18px;
    border-radius: 50px;
    animation: animate 3s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.online__circle--circle{
    background-color: rgb(173, 200, 53);
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    animation: animate 3s linear infinite;
}

@keyframes animate{
    0%{
        box-shadow:0 0 0 0 #20332C,0 0 0 0 #20332C;
        transform:scale(.7)
    }
    40%{
        box-shadow:0 0 0 15px #ff6d4a00,0 0 0 0 rgba(101, 148, 86, 0.54);
        transform:scale(.9)
    }
    80%{
        box-shadow:0 0 0 15px #ff6d4a00,0 0 0 15px #ff6d4a00;
        transform:scale(.8)
    }
    100%{
        box-shadow:0 0 0 0 #ff6d4a00,0 0 0 10px #ff6d4a00;
        transform:scale(.7)
    }
}

.navbar__menu{
    filter: brightness(0) invert(1);
    display: none;
    opacity: .7;
}

/* Responsive */
@media only screen and (max-width: 1100px) {
    .navbar{
        padding: 40px 6%;
    }

    .navbar__menu{
        display: block;
    }

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

    .navbar__brand::after{
        content: "";
        background: transparent;
    }

    .navbar__nav{
        display: none;
    }

    .navbar__nav--active{
        display: block;
        position: absolute;
        top: 110px;
        background: var(--navbarActive);
        width: 89%;
        padding: 40px;
        border-radius: 18px;
    }

    .navbar__nav li{
        list-style: none;
        padding: 8px 0px;
    }

    .navbar__nav a{
        text-decoration: none;
        font-weight: normal;
        font-size: 14px;
        transition: .3s;
    }

    .indicator{
        transition: transform 0.3s ease;
        position: absolute;
        display: none;
    }

    .indicator__active{
        display: flex;
    }

    .nav__active::before, .indicator::before{
        display: none;
    }

    .nav__active::after, .indicator::after{
        display: none;
    }

    .nav__active::after{
        margin-left: -54px;
    }

    .nav__active::before{
        margin-left: -20px;
    }

    .navbar__online{
        display: none;
    }
}

/* Footer */
.footer{
    margin-top: 100px;
}

.copyright{
    font-weight: 500;
    font-size: 14px;
    color: var(--activeColor);
    padding-bottom: 10px;
}

.footer__up{
    padding-top: 40px;
    border-top: 1px solid var(--navbarBorder);
    margin-bottom: 90px;
}

.footer__navbar{
    display: flex;
    justify-content: right;
}

.footer__nav{
    display: flex;
    gap: 50px;
}

.footer__nav li, .footer__nav a{
    list-style: none;
    text-decoration: none;
    font-weight: normal;
    font-size: 14px;
    color: rgba(203, 203, 203, 0.55);
    transition: .3s;
}

.footer__nav a:hover{
    font-weight: 400!important;
    color: var(--activeColor);
}

.footer__nav a.active{
    transition: .3s;
    font-weight: 600!important;
    color: var(--activeColor);
}

.eula{
    font-weight: normal;
    font-size: 14px;
    color: var(--eula);
    margin-bottom: 50px;
}

.footer__btnSection{
    display: flex;
    gap: 17px;
}

.footer__btn{
    border-radius: 8px;
    background: var(--footerBtn);
    font-weight: normal;
    font-size: 12px;
    text-decoration: none;
    padding: 12px 30px;
    color: var(--navbarStatic);
    transition: .3s;
}

.footer__btn:hover{
    transition: .3s;
    background: var(--footerBtnHover);
}

.footer__center{
    margin-bottom: 50px;
}

.copy--second{
    font-weight: normal;
    font-size: 14px;
    color: var(--eula);
    opacity: 0.6;
}

.footer__down{
    padding-bottom: 70px;
}



.spaceisSection{
    display: flex;
    justify-content: flex-end;
}

.spaceis{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    font-size: 14px;
    color: var(--spaceis);
    transition: .3s;
    text-decoration: none;
}

.spaceis:hover{
    transition: .3s;
    color: white;
}

.spaceis img{
    width: 30px;
    margin-right: 5px;
}

.spaceis h6{
    font-weight: 500;
    font-size: 12px;
    color: var(--eula);
    opacity: 0.54;
}

/* Responsive */
@media only screen and (max-width: 900px) {
    .footer{
        margin-top: 80px;
        padding: 0 5%;
    }

    .footer__up{
        margin-bottom: 90px;
    }

    .footer__navbar{
        display: flex;
        justify-content: left;
        margin-bottom: 50px;
    }

    .footer__nav li:nth-child(1){
        margin-left: -30px;
    }

    .spaceisSection{
        display: flex;
        justify-content: flex-start;
    }

    .spaceis{
        margin-top: 20px;
    }

}

@media only screen and (max-width: 1100px) {
    .footer{
        margin-top: 80px;
        padding: 0 5%;
    }
}