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

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

*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;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;
}

::-webkit-scrollbar-thumb {
    background-color: #0945e6;
    border-radius: 0px;
}

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

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

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

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

body {
    font-family: 'Montserrat';
    font-weight: 500;
    height: 100%;
    overflow-x: hidden;
    background-color: #0b0b0b;
}

a{
    text-decoration: none;
}

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

/* Navbar */
nav{
    position: absolute;
    width: 100%;
    z-index: 2;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 50px 7%;
}

.navbar img{
    max-width: 100px;
    margin-top: -260px;
    margin-bottom: -100px;
    margin-left: 60px;
}

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

.navbar__brand a{
    display: flex;
    align-items: center;
    gap: 40px;
}

.status{
    color: black;
    display: flex;
    align-items: center;
}

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

.status span{
    color: rgb(49, 49, 49);
}

.online__circle{
    position: absolute;
    border: 2px solid rgba(110, 255, 115, 0.74);
    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: rgba(110, 255, 115, 0.74);
    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 #20332C;
        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 ul{
    margin-top: 15px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.navbar li{
    font-size: 15px;
    list-style: none;
}

.navbar li:nth-last-child(1){
    background-color: black;
    padding: 8px 33px;
    border-radius: 12px;
    font-size: 14px;
}

.navbar li:nth-last-child(1) a{
    color: white;
}

.navbar li:nth-last-child(1):hover{
    background-color: #313131;
    transition: .3s;
}

.navbar li:nth-last-child(1):hover  a{
    color: white;
    transition: .3s;
}

.navbar li a{
    color: black;
    transition: .3s;
}

.navbar .active, .navbar li a:hover{
    color: #747474;
    transition: .3s;
}

.navbar__brand a{
    font-size: 14px;
    color: white;
}

.navbar__toggle{
    display: none;
}

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

@media only screen and (max-width: 1400px) {
    .navbar{
        flex-direction: column;

        padding: 50px 0;
    }

    .navbar__toggle{
        display: block;
        color: black;
    }

    .navbar__brand{
        padding: 0 7%;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .navbar__nav{
        display: none;
    }

    .navbar ul{
        margin-top: 40px;
        width: 100%;
        padding: 50px 10% 60px;
        background-color: white;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .navbar__nav--active{
        display: flex;
        width: 100%;
    }
}

/* Header */
header{
    background-image: url('../img/background.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.header__content{
    padding: 330px 7% 510px;
}

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

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

header img{
    width: 500px;
    position: absolute;
    top: -250px;
    right: 0;
}

header h1{
    margin-top: 20px;
    font-size: 80px;
    font-weight: 800;
    color: black;
}

header p{
    margin-bottom: -30px;
    margin-top: 70px;
    line-height: 20px;
    font-size: 20px;
    font-weight: 400;
    color: #424242;
}

.btn__section{
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

button{
    background-color: #0945e6;
    color: white;
    width: 180px;
    padding: 15px 40px;
    border-radius: 14px;
    border: none;
    font-size: 14px;
    font-weight: 500;
}

button:hover{
    background-color: #313131;
    transition: .3s;
}

.btn__transparent{
    background-color: black;
    color: white;
}

@media only screen and (max-width: 1200px) {
    .header__content{
        padding: 170px 7% 340px;
    }

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

    header img{
        width: 280px;
        position: static;
        margin-bottom: 50px;
    }

    header h1{
        font-size: 30px;
    }

    .btn__transparent{
        padding: 10px 0px;
    }

}

/* Footer */
footer{
    background: linear-gradient(rgba(241, 241, 241, 0) 0%, rgba(131, 123, 177, 0.055) 64.42%, #464646 100%);
}

.footer__content{
    padding: 30px 7%;
}

footer img{
    margin-top: 50px;
    margin-left: -100px;
    width: 270px;
}

.menu--border{
    padding-left: 90px;
    border-left: 1px solid rgba(128, 128, 128, 0.18);
}

.menu h5{
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}

.menu ul{
    margin-left: -15px;
    color: #A3A3A3;
}

.menu li{
    margin: 4px 0;
}

.menu a{
    font-size: 15px;
    color: #A3A3A3;
    transition: .3s;
}

.menu a:hover{
    color: white;
    transition: .3s;
}

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

.copy{
    color: white;
}

.social{
    margin-bottom: 20px;
}

.social ul{
    display: flex;
    gap: 27px;
}

.social li{
    list-style: none;
}

.social img{
    width: 25px;
    filter: invert(60%) sepia(75%) saturate(9%) hue-rotate(321deg) brightness(94%) contrast(92%);
}

@media only screen and (max-width: 1200px) {
    footer img{
        margin-top: 50px;
        margin-left: 22px;
        width: 270px;
    }
    button{
        width: 140px;
    }
    header h1{
        margin-top: 140px;
        font-size: 40px;
    }
    .footer__content{
        padding: 20px 7% 80px;
    }

    .footer__end{
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 50px;
    }

    footer img{
        margin-bottom: 30px;
    }

    .menu h5{
        margin-top: 30px;
    }

    .menu--border{
        padding-left: 10px;
        border-left: 0;
    }

    .social{
        margin-left: -30px;
    }
}