/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    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: #246deb;
    border-radius: 50px;
}

/* 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: #ffffff;
}

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;
}

/* Container */
.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: 1500px;
    }
}

/* Navbar */
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 50px 0;
}

.navbar__links{
    display: flex;
    align-items: center;
}

.navbar__links ul{
    display: flex;
    align-items: center;
    gap: 45px;
}

.navbar__links li{
    font-size: 18px;
    list-style: none;
    font-weight: 500;
}

.navbar__links a{
    color: #9d9d9d;
    transition: .3s;
}

.navbar__links .active{
    font-weight: 600;
    color: #ffffff;
    transition: .3s;
}

.navbar__links a:hover{
    color: #ffffff;
    transition: .3s;
}

.navbar__brand h5{
    font-weight: 800;
    color: white;
}

.navbar__btn{
    margin-left: 10px;
    background: #246deb;
    color: white!important;
    padding: 18px 60px 18px;
    font-size: 16px;

}

.navbar__links img{
    width: 20px;
    margin-right: -10px;
    filter: invert(98%) sepia(7%) saturate(135%) hue-rotate(331deg) brightness(115%) contrast(100%);
}

.navbar__toggle{
    display: none;
}

.navbar__btn{
    display: flex;
    align-items: center;
    gap: 30px;
}

@media only screen and (max-width: 1300px) {
    nav{
        padding: 50px 0;
    }

    .navbar__links{
        display: none;
    }

    .navbar__links ul{
        flex-direction: column;
        gap: 20px;
        padding-left: 0;
    }

    .navbar__links li{
        margin: 5px 0;
    }

    .navbar__links a{
        color: #828080;
    }

    .navbar__links .active, .navbar__links a:hover{
        color: #ffffff;
    }

    .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: #1e1e1e;
        width: 85%;
        top: 130px;
        padding: 40px 20px;
    }
}

/* Header */
header{
    padding: 30px 0 0;
    background-image: url('../img/header.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

header h1{
    color: white;
    font-size: 50px;
    font-weight: 700;
}

header h2{
    margin-top: -18px;
    color: #868686;
    font-size: 50px;
    font-weight: 700;
}

header p{
    color: #848383;
    margin-top: 20px;
    width: 80%;
    font-weight: 400;
    margin-bottom: 60px;
}

.header__img{
    align-self: flex-end;
    width: 100%;
}

.btn__section{
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
    margin-bottom: 100px;
}

.btn{
    color: white!important;
    border-radius: 0;
    padding: 17px 70px;
    display: flex;
    gap: 20px;
    border: none!important;
}

.btn__blue{
    background: #246deb!important;
}

.btn__blue:hover{
    background: #3177f0;
}

.btn__pink{
    background: #e71ab7!important;
}

.btn__pink:hover{
    background: #f134c5;
}

.btn img{
    width: 20px;
    filter: invert(98%) sepia(7%) saturate(135%) hue-rotate(331deg) brightness(115%) contrast(100%);
}

.btn__gray{
    background: #515151!important;
}

.btn__gray:hover{
    background: #3a3939;
}

@media only screen and (max-width: 1300px) {
    header{
        padding: 20px 7% 0;
    }

    .header__content{
        padding: 100px 0;
    }

    header h1{
        font-size: 35px;
    }

    header h2{
        margin-top: -13px;
        font-size: 30px;
    }

    .header__img{
        display: none;
    }

    .btn{
        color: white!important;
        border-radius: 0;
        padding: 16px 48px;
    }

}

/* Footer */
footer{
    background-color: #061022;
    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: white;
    font-weight: 600;
    margin-bottom: 20px;
}

footer li{
    list-style: none;
}

footer h6{
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 500;
    font-size: 14px;
}

footer li a{
    color: #828282;
    font-weight: 500;
    transition: .3s;
}

footer li a:hover{
    color: white;
    transition: .3s;
}

.footer-long{
    margin-top: 40px;
    border-top: 1px solid rgba(128, 128, 128, 0.11);
    padding-top: 30px;
}

.footer-long p{
    font-weight: 500;
    font-size: 14px;
    color: #8990a0;
}

.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;
}

.spaceis__info{
    font-size: 12px;
    margin-top: 18px;
    color: white;
    font-weight: 500;
}

.spaceis__info a{
    color: white;
}

@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;
    }
}
