/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.23

*/

/* 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: rgb(0, 0, 0);
    border-radius: 0px;
}

/* Website style */
* {
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    height: 100%;
    overflow-x: hidden;
    background-color: #0E101E;
    background-image: url('../img/bg.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: top;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.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: 1300px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1170px;
    }
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px;
    }
}

/* Navbar */
.navbar{
    padding: 60px 0;
}

.navbar, .navbar__desktop, .navbar__desktop .navbar--brand ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar--brand ul li{
    margin: 12px 30px 0;
    list-style: none;
}

.navbar--brand ul li a{
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    color: #b9b9b9;
    transition: .3s;
}

.navbar--brand .active, .navbar--brand ul li a:hover{
    color: white;
    transition: .3s;
}

.navbar--brand .line{
    border-left: 1px solid #374251;
    height: 30px;
}

.navbar--brand .brand{
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    margin-left: -53px!important;
}

.navbar--btnColor{
    border-radius: 50px;
    background: #6629ab;
    padding: 20px 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: .3s;
}

.navbar--btnColor:hover{
    transform: scale(1.02);
    transition: .3s;
}

.navbar--btnColor svg{
    margin-left: 25px;
}

.navbar__mobile{
    display: none;
}

@media only screen and (max-width: 1100px) {
    .navbar__desktop{
        display: none;
        flex-direction: column;
    }

    .navbar__mobile{
        display: block;
    }

    .navbar__links--active{
        width: 88%;
        display: block;!important;
        backdrop-filter: blur(60px);
        --webkit-backdrop-filter: blur(30px);
        background-color: rgba(19, 26, 35, 0.6);
        position: absolute;
        top: 120px;
        padding: 40px;
        border-radius: 40px;
    }

    .navbar{
        padding: 60px 6%;
    }

    .navbar, .navbar__desktop, .navbar__desktop .navbar--brand ul{
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    .navbar--brand ul li{
        margin-left: -30px;
    }

    .navbar--brand .line{
        border-top: 1px solid #374251;
        border-left: 0px;
        width: 30px;
    }

    .navbar--brand .brand{
        margin-left: 0px!important;
    }

    .navbar--btnColor{
        margin-top: 20px;
        justify-content: space-between;
    }
}

/* Header */
.header__content{
    padding: 60px 0;
}

.title{
    font-weight: bold;
    font-size: 63px;
    line-height: 80px;
    color: #fff;
}

.description{
    margin-top: 40px;
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    color: #d4d4d4;
}

@media only screen and (max-width: 1100px) {
    .title{
        font-size: 43px;
        line-height: 50px;
    }

    .description{
        margin-top: 30px;
    }

    .header__content{
        padding: 20px 6%;
    }
}

.btn__section{
    margin-top: 80px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.btn__section a{
    text-decoration: none;
    font-weight: 500;
    color: #b5b5b5;
}

.btn--headerWhite{
    border-radius: 50px;
    background: white;
    padding: 24px 50px;
    color: #000!important;
    transition: .3s;
}

.btn--headerWhite:hover{
    transform: scale(1.04);
    transition: .3s;
}

.btn--headerWhite svg{
    margin-left: 25px;
}

.btn--headerTransparent svg{
    margin-right: 22px;
}

.social__section{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
    font-weight: 500;
    font-size: 15px;
    color: #707070;
}

.social__section a{
    transition: .3s;
}

.social__section a:hover{
    opacity: .7;
    transition: .3s;
}

.sm--line{
    width: 40px;
    height: 2px;
    background: #707070;
}

.float--right{
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

.card__info{
    position: relative;
    width: 100%;
    padding: 50px 50px 35px;
    margin-bottom: 30px;
    border-radius: 53px;
    backdrop-filter: blur(30px);
    --webkit-backdrop-filter: blur(30px);
    background-color: rgba(19, 26, 35, 0.6);
}

.card__info--content{
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
}

.card__info--badge{
    width: 74px;
    height: 74px;
    min-width: 74px;
    min-height: 74px;
    border-radius: 37px;
    background: #242d37;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card__info--text h3{
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
}

.card__info--text{
    font-weight: normal;
    font-size: 14px;
    line-height: 26px;
    color: #d4d4d4;
}

.rotate{
    position: absolute;
    left: -130px;
    bottom: 90px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(181, 181, 181, 0.27);
    font-weight: 500;
    transform: rotate(-90deg);
}

@media only screen and (max-width: 1200px) {
    .float--right{
        margin-top: 70px;
    }
}

@media only screen and (max-width: 1100px) {
    .rotate{
        display: none;
    }
    .card__info--content{
        flex-direction: column;
    }
}

.rotate--line{
    width: 50px;
    height: 2px;
    border-top: 2px solid rgba(181, 181, 181, 0.42);
}

.slider{
    margin-top: 40px;
}

/* Swiper */
.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide img {
    display: block;
    width: 122px;
    margin-bottom: 20px;
    text-align: center;
    object-fit: cover;
}

.swiper-slide .second{
    margin-bottom: 60px;
}

.swiper{
    position: relative;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0px;
    left: 0;
    width: 100%;
    text-align: left;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    min-width: 15px;
    min-height: 15px;
}

.swiper-pagination-bullet{
    border-radius: 8px!important;
    background: #1e2138;
}

.swiper-pagination-bullet-active{
    background: #8C66CF;
}

@media only screen and (max-width: 1200px) {
    .operators{
        padding: 80px 7%;
    }

    .swiper-slide img {
        width: 132px;
        margin-bottom: 100px;
    }
}



/* Responsive */
@media only screen and (max-width: 1100px) {
}