/* ----- BASE ----- */
html{
    font-size: 16px;
}
*, ::after, ::before {
    box-sizing: border-box;
}
body{
    -webkit-font-smoothing: antialiased;
    font-size: 1.2rem;
    line-height: 1.75rem;
    margin: 0;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    background-color: #010920;
}
body.overflow{
    overflow: hidden;
}
img{
    max-width: 100%;
    width: auto;
    height: auto;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
a{
    text-decoration: none;
    transition: 0.4s;
    color: #fff;
}
.page-wrap{
    overflow: hidden;
}
.container{
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0 1rem;
}
.row{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1rem;
}
.col{
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    padding: 0 1rem;
}
/* ----- /BASE ----- */
/*  */
/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6, p{
    margin-top: 0;
}
h1, h2, h3, h4, h5{
    font-family: 'Poppins', sans-serif;
}
h1{
    font-size: 4.5rem;
    line-height: 4.9375rem;
    font-weight: 600;
    letter-spacing: 3.1px;
    margin-bottom: 1.5rem;
}
h2{
    font-size: 2.125rem;
    line-height: 3rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1.4rem;
}
h4{
    font-size: 1.25rem;
    line-height: 1.6875rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
h5{
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: capitalize;
}
h6{
    font-size: 1rem;
    line-height: 1.4375rem;
    font-weight: 800;
    letter-spacing: 0.45px;
    margin-bottom: 1.3rem;
}

.lead{
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: 0.48px;
}
/* ----- /TYPOGRAPHY ----- */
/*  */
/* ----- BUTTONS ----- */
.btn{
    display: inline-block;
    font-weight: 600;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    transition: 0.4s;
}
.btn-outline-gradient{
    background-image: linear-gradient(45grad, #5BC9E7, #F73FCF);
    padding: 1px;
}
.btn-outline-gradient span{
    background-color: #010920;
    padding: 0.7rem 2rem;
    letter-spacing: 0.4px;
    display: block;
    border-radius: 0.5rem;
}
.btn-outline-gradient:hover span{
    background-color: transparent;
}
.btn-gradient{
    font-size: 1.125rem;
    text-transform: uppercase;
    border: 1px solid rgb(255 255 255 / 50%);
    border-radius: 0.8125rem;
    background-image: linear-gradient(to right, #59CFE9, rgb(166 103 246 / 80%), #FD3DCE);
    padding: 0.9rem 3.7rem;
    letter-spacing: 3px;
}
.btn-gradient:hover{
    background-image: linear-gradient(to left, #59CFE9, rgb(166 103 246 / 80%), #FD3DCE);
}
/* ----- /BUTTONS ----- */
/*  */
/* ----- HEADER ----- */
.header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 3rem 0rem;
    z-index: 1000;
}
.header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .header-nav{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.header .header-nav .menu{
    display: flex;
    flex-wrap: wrap;
}
.header .btn {
    margin-left: 2.6rem;
}
.header .menu li {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0.3px;
    margin-left: 2.6rem;
}
.header .menu a:hover {
    color: #59CFE9;
}
.dropdown {
    position: relative;
    margin-left: 1rem;
}
.dropdown .dropdown-btn {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    width: 3.5rem;
    text-align: left;
    background-image: url(../img/arrow-bottom-white.svg);
    background-repeat: no-repeat;
    background-position: 90% center;
    cursor: pointer;
}
.dropdown .dropdown-menu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
    background-color: #010920;
    min-width: 9.2rem;
    margin-top: 0.6rem;
    left: 0;
    border-radius: 0.75rem;
}
.dropdown .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
}
.dropdown .dropdown-menu li {
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1.1rem;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
}
.dropdown .dropdown-menu li:last-child {
    border-bottom: 0;
}
.dropdown .dropdown-menu li a{
    transition: 0.4s;
}
.dropdown .dropdown-menu li:hover a{
    color: #59CFE9;
}
/* ----- HEADER ----- */
/*  */
/* ----- SECTION BANNER ----- */
.section-banner {
    padding-top: 12.7rem;
    padding-bottom: 10rem;
    background: linear-gradient(to bottom, black 90%, #010920 100%);
    position: relative;
    min-height: 51.6875rem;
}
.section-banner:before{
    content: '';
    background-image: url(../images/banner-bg.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: left top;
    background-size: 84% 99%;
    z-index: 2;
}
.section-banner .content-col {
    flex: 0 0 53%;
    max-width: 53%;
    z-index: 10;
}
.section-banner p {
    max-width: 31rem;
}
.section-banner .btn {
    margin-top: 3.5rem;
}
.section-banner .image-col video {
    position: absolute;
    right: -3.8rem;
    top: -9.3rem;
    width: 47rem;
    height: 42.2rem;
    z-index: 1;
}
.section-banner .image-col:before{
    content: '';
    width: 17.6875rem;
    height: 17.0625rem;
    background: rgba(89, 207, 233, 0.65);
    filter: blur(6.3rem);
    position: absolute;
    top: 3%;
    right: 7%;
    display: block;
    transform: rotate(-150.32deg);
    z-index: -1;
    display: none;
}
.section-banner .image-col:after{
    content: '';
    background: #FFFFFF;
    filter: blur(1.4rem);
    width: 1.1875rem;
    height: 1.1875rem;
    position: absolute;
    right: 0%;
    top: -9%;
    display: block;
}
/* ----- /SECTION BANNER ----- */
/*  */
/* ----- SECTION CARDS ----- */
.section-cards {
    padding-top: 9rem;
    position: relative;
    padding-bottom: 15rem;
}
.section-cards .col{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 1.1rem;
}
.card{
    border-radius: 2.6875rem;
    position: relative;
    z-index: 10;
    height: 14.4rem;
}
.card:before{
    content: '';
    background-image: linear-gradient(45grad, #5BC9E7, #F73FCF);
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 2.6875rem;
    z-index: -1;
    opacity: 0.6;
}
.card .card-content {
    background: #010920;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 10;
    border-radius: 2.6875rem;
}
.card .card-content:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3rem);    
    z-index: -1;
    border-radius: 2.6875rem;
}
.card span{
    font-size: 1.125rem;
    line-height: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-top: -0.3rem;
}
.card .small-text{
    font-size: 0.875rem;
    letter-spacing: 3.1px;
    text-transform: capitalize;
    margin-top: -0.3rem;
}
.card .text-green{
    color: #78FB7D;
    margin-left: 0.2rem;
}
.card .count{
    font-weight: 400;
    margin: 1.3rem 0 1.2rem;
}
.section-cards .row {
    margin: 0 -0.9rem;
}
.card h5{
    margin-bottom: 1.5rem;
    margin-top: -0.5rem;
    text-align: center;
}
.section-cards::before,
.section-cards::after{
    content: '';
    width: 27.375rem;
    height: 26.4375rem;
    background: rgba(130, 60, 219, 0.5);
    opacity: 0.5;
    filter: blur(6rem);
    transform: rotate(-150.32deg);
    position: absolute;
    left: -5.5rem;
    top: 0;
    z-index: 20;
}
.section-cards::after{
    background: rgba(82, 81, 198, 0.4);
    left: auto;
    top: auto;
    right: -5.4rem;
    bottom: -4rem;
}
/* ----- /SECTION CARDS ----- */
/*  */
/* ----- SECTION IMAGE CONTENT ----- */
.section-image-content {
    padding-top: 6.5rem;
    padding-bottom: 6rem;    
}
.section-image-content .content-col {
    padding-left: 1.1rem;
    flex: 0 0 50%;
    max-width: 50%;
}
.progress-bar {
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 0.2rem;
}
.progress-bar > span:last-child{
    font-family: 'Montserrat', sans-serif;
    text-align: right;
    flex: 0 0 2.1rem;
    max-width: 2.1rem;
}
.progress-bar .progress {
    height: 0.25rem;
    border-radius: 0.25rem;
    position: relative;
    background: rgb(217 217 217 / 52%);
    width: 24rem;
    margin-right: 1rem;
}
.progress-bar > span:first-child {
    flex: 0 0 6.3rem;
    max-width: 6.3rem;
    margin-right: 1rem;
}
.progress-bars {
    margin-bottom: 1.7rem;
}
.section-image-content .content-col p {
    max-width: 33rem;
    letter-spacing: 0.1px;
}
.progress-bar .progress span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 0.25rem;
    background: linear-gradient(72.68deg, #823CDB 12.78%, #59CFE9 63.08%, #78FB7D 93.26%);
}
.section-image-content .image-col {
    padding-left: 4.3rem;
    position: relative;
}
.section-image-content .image-col:before {
    content: '';
    background: rgba(89, 207, 233, 0.15);
    filter: blur(9rem);
    transform: rotate(-150.32deg);
    width: 42.6875rem;
    height: 41.25rem;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -3rem;
}
.section-image-content lottie-player{
    width: 33.125rem;
    height: 31.25rem;
}
/* ----- /SECTION IMAGE CONTENT ----- */
/*  */
/* ----- SECTION EXPERTISE ----- */
.section-expertise {
    padding-top: 10.8rem;
    position: relative;
    padding-bottom: 9rem;
}
.section-expertise .title {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 46rem;
}
.section-expertise h2 {
    margin-bottom: 2.4rem;
}
.section-expertise .title p {
    letter-spacing: 2px;
}
.section-expertise .col{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 1.6rem;
}
.section-expertise .row {
    margin: 0 0.6rem;
}
.section-expertise:before{
    content: '';
    width: 61.625rem;
    height: 59.5625rem;
    background: rgba(82, 81, 198, 0.4);
    opacity: 0.5;
    filter: blur(243px);
    transform: rotate(-150.32deg);
    position: absolute;
    top: 11rem;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.expertise-box{
    border-radius: 1rem;
    position: relative;
    z-index: 10;
    display: block;
    margin-bottom: 3rem;
}
.expertise-box:before{
    content: '';
    background-image: linear-gradient(45grad, #5BC9E7, #F73FCF);
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.6;
    transition: 0.4s;
}
.expertise-box .box-content {
    background: #010920;
    width: 100%;
    position: relative;
    z-index: 10;
    border-radius: 1rem;
    transition: 0.4s;
    text-align: center;
    padding: 2.7rem 1.8rem;
    height: 19.9rem;
}
.expertise-box .box-content:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3rem);    
    z-index: -1;
    border-radius: 1rem;
    transition: 0.4s;
}
.expertise-box:hover{
    box-shadow: 0px 2px 14px rgba(20, 23, 120, 0.659408);
}
.expertise-box:hover .box-content{
    background: transparent;
    padding: 2.2rem 1.8rem;
}
.expertise-box:hover .box-content:before{
    background-color: transparent;
    backdrop-filter: none;    
}
.expertise-box:hover:before{
    opacity: 1;
    background: linear-gradient(to bottom, #59CFE9 0.25%, rgba(166, 103, 247, 0.8) 62.91%, #FD3DCE 123.01%);
}
.expertise-box .icon-wrap svg path{
    transition: 0.4s;
}
.expertise-box:hover .icon-wrap svg path{
    fill: #fff;
}
.expertise-box .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    margin-bottom: 1.4rem;
}
.expertise-box p{
    font-weight: 300;
    line-height: 1.375rem;
    letter-spacing: 0.1px;
    margin-bottom: 0;
}
.expertise-box p:after {
    content: '';
    display: block;
    width: 4.625rem;
    border-radius: 0.125rem;
    height: 0.25rem;
    background: linear-gradient(72.68deg, #823CDB 12.78%, #59CFE9 63.08%, #78FB7D 93.26%);
    margin: 1.6rem auto 0;
    transition: 0.4s;
}
.expertise-box:hover p:after{
    background: #FFFFFF;
}
/* ----- /SECTION EXPERTISE ----- */
/*  */
/* ----- SECTION OUT MISSION ----- */
.section-our-mission {
    padding-top: 13.5rem;
    padding-bottom: 11rem;    
}
.section-our-mission h2 {
    font-size: 4.5rem;
    line-height: 4.9375rem;
    margin-bottom: 2.4rem;
}
.section-our-mission p {
    letter-spacing: 0.4px;
}
.section-our-mission .btn {
    margin-top: 3.6rem;
}
.section-our-mission .content-col {
    flex: 0 0 50%;
    max-width: 50%;
}
.section-our-mission .image-col {
    padding-left: 3.8rem;
}
/* ----- /SECTION OUT MISSION ----- */
/*  */
/* ----- FOOTER ----- */
.footer{
    position: relative;
    margin-top: 7.2rem;
}
.footer::before{
    content: '';
    background: linear-gradient(90deg, rgba(89, 207, 233, 0.5) 0%, rgba(166, 103, 247, 0.4) 51.04%, rgba(202, 98, 153, 0.4) 73.96%, rgba(253, 61, 206, 0.5) 100%);
    filter: blur(2rem);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: -1rem;
    display: block;
}
.footer::after{
    content: '';
    opacity: 0.6;
    background: linear-gradient(45grad, #5BC9E7, #F73FCF);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    margin: -1px;
}
.footer .footer-content::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(1.4rem);
}
.footer .footer-content{
    padding: 3rem 0;
    background-color: #010920;
}
.footer .container{
    z-index: 10;
    position: relative;
    padding: 0 2.1rem;
}
.footer .row {
    align-items: center;
    justify-content: space-between;
}
.footer .copy {
    color: #D9DBE1;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
}
.footer .footer-social {
    display: flex;
    align-items: center;
}
.footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 10%);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 1rem;
}
.footer .footer-social a:hover{
    background: linear-gradient(90deg, #59CFE9 0%, rgba(166, 103, 247, 0.8) 51.04%, #FD3DCE 100%);
}
.footer .footer-social a img {
    max-height: 54%;
    object-fit: contain;
}
/* ----- /FOOTER ----- */
/*  */
/* ----- SECTION HOW TO BUY ----- */
.section-how-to-buy h6 {
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}
.section-how-to-buy h2 {
    font-size: 4rem;
    line-height: 4.5rem;
    margin-bottom: 3rem;
}
.section-how-to-buy .nav-tabs .nav-item {
    display: flex;
    position: relative;
    margin-bottom: 1.25rem;
}
.section-how-to-buy .nav-tabs .nav-item .number {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-right: 1rem;
}
.section-how-to-buy .nav-tabs .nav-item p{
    flex: 1;
}
.section-how-to-buy .nav-tabs .nav-item .number:before {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px;
    top: -1px;
    border-radius: 50%;
    background-image: linear-gradient(45grad, #5BC9E7, #F73FCF);
    z-index: -1;
}
.section-how-to-buy .nav-tabs .nav-item .number:after {
    content: '';
    background: #010920;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: -1;
}
.section-how-to-buy .nav-tabs .nav-item.active .number:after {
    opacity: 0;
}
.section-how-to-buy .nav-tabs .nav-item a{
    color: #59CFE9;
}
.section-how-to-buy .nav-tabs .nav-item:before {
    content: '';
    height: 100%;
    position: absolute;
    bottom: -2rem;
    border-left: 1px dashed #fff;
    opacity: 0.5;
    left: 0.95rem;
}
.section-how-to-buy .nav-tabs .nav-item:last-child:before {
    display: none;
}
.section-how-to-buy .nav-tabs .nav-item.active:after {
    content: '';
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0.95rem;
    width: 1px;
    background-image: linear-gradient(45grad, #5BC9E7, #F73FCF);
}
.section-how-to-buy .btn-wrap {
    display: flex;
    align-items: center;
    margin-left: 3rem;
}
.section-how-to-buy .btn-wrap img {
    max-width: 10rem;
    margin-left: 2rem;
}
.section-how-to-buy .content-col {
    flex: 0 0 60%;
    max-width: 60%;
}
.section-how-to-buy .btn-wrap .btn {
    padding: 0.9rem 1.7rem;
}
/* ----- /SECTION HOW TO BUY ----- */
/*  */
/* ----- MEDIA ----- */
@media(min-width: 576px){
    .container{
        max-width: 540px;        
    }
}
@media(min-width: 768px){
    .container{
        max-width: 720px;        
    }
}
@media(min-width: 992px){
    .container{
        max-width: 960px;
    }
}
@media(min-width: 1200px){
    .container{
        max-width: 1250px;        
    }
}
@media(max-width: 1439px){
    /* ----- SECTION BANNER ----- */
    .section-banner .image-col video {
        right: 0.2rem;
        top: -3.3rem;
        width: 42rem;
        height: 37.2rem;
    }
    .section-banner .content-col {
        flex: 0 0 55.5%;
        max-width: 55.5%;
    }
    /* ----- /SECTION BANNER ----- */
    .dropdown .dropdown-menu {
        right: 0;
        left: auto;
        margin-top: 1.2rem;
    }
}
@media(max-width: 1199px){
    /* ----- SECTION BANNER ----- */
    .section-banner .content-col {
        flex: 0 0 55.5%;
        max-width: 55.5%;
    }
    .section-banner .image-col video {
        right: -1.8rem;
        top: -4.3rem;
        width: 34rem;
        height: 34.2rem;
    }
    .section-banner p {
        max-width: 29rem;
    }
    .section-banner {
        padding-bottom: 5rem;
        min-height: 49rem;
    }
    .section-banner:before{
        background-size: 77% 77%;
    }
    .section-banner .image-col:before {
        width: 10.6875rem;
        height: 10.0625rem;
        top: 6%;
        right: 10%;
        filter: blur(5.3rem);
    }
    .section-banner .image-col:after {
        width: 0.8875rem;
        height: 0.8875rem;
        right: 0%;
        filter: blur(1.1rem);
        top: -10%;
    }
    /* ----- /SECTION BANNER ----- */
    /*  */
    /* ----- SECTION CARDS ----- */
    .section-cards .col {
        padding: 0 1rem;
    }
    .section-cards .row {
        margin: 0 -1rem;
    }
    .section-cards {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .section-cards::before, .section-cards::after {
        width: 24.375rem;
        height: 23.4375rem;
        filter: blur(4rem);
    }
    /* ----- /SECTION CARDS ----- */
    /*  */
    /* ----- SECTION IMAGE CONTENT ----- */
    .section-image-content .image-col:before {
        width: 29.6875rem;
        height: 26.25rem;
        right: -3rem;
        filter: blur(4rem);
    }
    /* ----- /SECTION IMAGE CONTENT ----- */
    /*  */
    /* ----- SECTION EXPERTISE ----- */
    .section-expertise {
        padding-top: 6.8rem;
        padding-bottom: 3rem;        
    }
    .section-expertise .col {
        padding: 0 1rem;
    }
    .section-expertise .row {
        margin: 0 -1rem;
    }
    .section-expertise:before {
        width: 49.625rem;
        height: 39.5625rem;
        filter: blur(7rem);
        top: 9rem;
        left: -5rem;
    }
    /* ----- /SECTION EXPERTISE ----- */
    /*  */
    /* ----- SECTION OUR MISSION ----- */
    .section-our-mission {
        padding-top: 6.5rem;
        padding-bottom: 5rem;
    }
    /* ----- /SECTION OUR MISSION ----- */
    /*  */
    .section-image-content lottie-player{
        width: 24.125rem;
    }
    /*  */
    /* ----- SECTION HOW TO BUY ----- */
    .section-how-to-buy .btn-wrap .btn {
        padding: 0.9rem 1.7rem;
    }
    .section-how-to-buy .content-col {
        flex: 0 0 56%;
        max-width: 56%;
    }
    .section-how-to-buy .btn-wrap img {
        position: absolute;
        right: -5rem;
    }
    .section-how-to-buy .btn-wrap {
        position: relative;
    }
    .section-how-to-buy .content-col {
        flex: 0 0 100%;
        max-width: 100%;
        order: 2;
    }
    .section-how-to-buy .btn-wrap img {
        position: static;
    }
    .section-how-to-buy .image-col {
        text-align: center;
    }
    .section-how-to-buy {
        padding-top: 5rem;
    }
    .section-how-to-buy h6, .section-how-to-buy h2 {
        text-align: center;
    }
    .section-how-to-buy h2 {
        margin-bottom: 1rem;
    }
    /* ----- /SECTION HOW TO BUY ----- */
    /*  */
    
}
@media(max-width: 1023px){
    /* ----- SECTION BANNER ----- */
    .section-banner .content-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 3rem;
    }
    .section-banner .image-col video {
        position: static;
        margin: 0 auto;
        display: block;
    }
    .section-banner {
        text-align: center;
    }
    .section-banner:before{
        background-size: 88% 46%;
        background-position-x: -120%;
    }
    .section-banner .btn {
        margin-top: 1.5rem;
    }
    .section-banner p {
        margin: 0 auto 1rem;
    }
    /* ----- /SECTION BANNER ----- */
    /*  */
    /* ----- SECTION CARDS ----- */
    .section-cards .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .section-cards .row {
        justify-content: center;
    }
    .card {
        margin-bottom: 2rem;
    }
    .section-cards {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
    /* ----- /SECTION CARDS ----- */
    /*  */
    /* ----- SECTION IMAGE CONTENT ----- */
    .section-image-content .content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .section-image-content .image-col {
        padding: 0 1rem;
        text-align: center;
    }
    .section-image-content .image-col:before {
        right: 0;
        left: 0;
        margin: auto;
    }
    /* ----- /SECTION IMAGE CONTENT ----- */
    /*  */
    /* ----- SECTION EXPERTISE ----- */
    .section-expertise {
        padding-top: 2.8rem;
    }
    .section-expertise .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .section-expertise .row {
        justify-content: center;
    }
    .expertise-box {
        margin-bottom: 2rem;
    }
    .section-expertise:before {
        left: -2rem;
    }
    /* ----- /SECTION EXPERTISE ----- */
    /*  */
    /* ----- SECTION OUR MISSION ----- */
    .section-our-mission .content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .section-our-mission .image-col {
        padding: 0 1rem;
        text-align: center;
        margin-bottom: -2rem;
    }
    .section-our-mission {
        padding-top: 3rem;
        text-align: center;
        padding-bottom: 2rem;
    }
    .section-our-mission .btn {
        margin-top: 1.6rem;
    }
    /* ----- /SECTION OUR MISSION ----- */
    /*  */
}
@media(max-width: 767px){
    h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    h2 {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
    .lead {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .btn-gradient {
        font-size: 1rem;
    }
    .row {
        margin: 0;
    }
    /* ----- HEADER ----- */
    .header {
        padding: 2rem 0;
    }
    .header .logo {
        width: 8rem;
        display: flex;
        align-items: center;
        height: 1.3rem;
    }
    .header .header-nav{
        position: fixed;
        max-height: 0;
        height: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        display: block;
        background-color: #010920;
        z-index: 100;
        padding: 6rem 0;
        text-align: center;
    }
    .header .menu-btn{
        position: relative;
        width: 1.5rem;
        height: 1.3rem;
        display: block;
        z-index: 1000;
    }
    .header .menu-btn span{
        width: 1.5rem;
        height: 2px;
        border-radius: 0.75rem;
        background: linear-gradient(to right, #59CFE9, rgba(166, 103, 247, 0.8), #FD3DCE);
        display: block;
        transition: 0.4s;
        margin-bottom: 0.4rem;
    }
    .header .menu-btn span:last-child{
        margin-bottom: 0;
    }
    .header.menu-open .menu-btn span {
        transform: rotate(45deg);
        position: absolute;
        top: 0.5rem;
    }
    .header.menu-open .menu-btn span:last-child {
        transform: rotate(-45deg);
    }
    .header.menu-open .menu-btn span:nth-child(2) {
        display: none;
    }
    .header.menu-open .header-nav {
        max-height: 100vh;
        visibility: visible;
        opacity: 1;
    }
    .header .header-nav .menu {
        flex-direction: column;
    }
    .header .btn {
        margin: 0 auto;
    }
    .header .menu li {
        margin: 0 auto 2rem;
    }
    /* ----- /HEADER ----- */
    /*  */
    /* ----- SECTION BANNER ----- */
    .section-banner {
        padding-top: 9rem;
    }
    .section-banner:before{
        background-size: 100%;
        background-position-x: 0;
    }
    .section-banner .image-col video {
        width: auto;
        height: auto;
        max-width: 100%;
    }
    /* ----- /SECTION BANNER ----- */
    /*  */
    /* ----- SECTION CARDS ----- */
    .section-cards .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .section-cards .row{
        margin: 0;
    }
    /* ----- /SECTION CARDS ----- */
    /*  */
    /* ----- SECTION IMAGE CONTENT ----- */
    .section-image-content {
        padding-top: 3rem;
    }
    /* ----- /SECTION IMAGE CONTENT ----- */
    /*  */
    /* ----- SECTION EXPERTISE ----- */
    .section-expertise .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .section-expertise .row{
        margin: 0;
    }
    .section-expertise:before {
        left: -12rem;
        top: 0;
        width: 59.625rem;
        height: 50.5625rem;
    }
    /* ----- /SECTION EXPERTISE ----- */
    /*  */
    /* ----- SECTION OUR MISSION ----- */
    .section-our-mission h2 {
        font-size: 2rem;
        line-height: 3rem;
        margin-bottom: 1.4rem;
    }
    /* ----- /SECTION OUR MISSION ----- */
    /*  */
    /* ----- FOOTER ----- */
    .footer .row {
        justify-content: center;
    }
    .footer .copy {
        margin-bottom: 1rem;
    }
    .footer .footer-social a {
        margin: 0 0.5rem;
    }
    .dropdown .dropdown-menu {
        left: 0;
        right: 0;
        max-width: 10rem;
        margin: 0.8rem auto;
    }
    .dropdown {
        margin-left: 0;
        margin-top: 1.5rem;
    }
    /* ----- /FOOTER ----- */
    /*  */
    /* ----- SECTION HOW TO BUY ----- */
    .section-how-to-buy h2 {
        font-size: 2rem;
        line-height: 3rem;
    }
    .section-how-to-buy h6 {
        font-size: 0.875rem;
        line-height: 1.125rem;
    }
    .section-how-to-buy .btn-wrap {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
    }
    .section-how-to-buy .btn-wrap .btn {
        padding: 0.9rem 0.9rem;
    }
    .section-how-to-buy .btn-wrap img {
        margin: 1.5rem auto 0;
    }
    /* ----- SECTION HOW TO BUY ----- */
    /*  */
}
/* ----- /MEDIA ----- */
/*  */
/*  */