body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}
body{
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Barlow', sans-serif;
}
ul, ol, li {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
    display: inline-block;
}
span {
    display: inline-block;
}
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.justify-between {
    justify-content: space-between;
}
.justify-evenly {
    justify-content: space-evenly;
}
.justify-center {
    justify-content: center;
}
.items-center {
     align-items: center;
}
.items-baseline {
    align-items: baseline;
}
.align-center {
    align-self: center;
}
.items-end {
    align-items: end;
}
.container {
    width: 1250px;
    max-width: 100%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
.section-wrapper{
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
}
.text-uppercase{
    text-transform: uppercase;
}
.none {
    display: none !important;
}
.block {
    display: block;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

/* HEADER */
.header {
    margin-top: 24px;
    z-index: 9;
}
.header-menu-li{
    float: left;
}
.header-menu-li a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 30px;
}
.header-menu-li a.cta{
    margin-left: 50px;
    background-color: #00B4FF;
    border: 1px solid #00B4FF;
}
.header-menu-li a.cta, .cta {
    font-size: 18px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 0 12px;
}
.cta-white {
    border: 1px solid #fff;
    color: #fff;
    transition: all 500ms ease-in-out;
}
.cta-white:hover {
    background-color: #fff;
    color: #000;
}

.cta-blue {
    border: 1px solid #00B4FF;
    color: #fff;
    transition: all 300ms ease-in-out;
    background-color: #00B4FF;
}
.cta-blue:hover {
    background-color: #fff;
    color: #00B4FF;
}
.cta-transparent:hover{
    background-color: transparent;
}

.theme-color{
    color: #04B5FF;
}
.bx-wrapper{
    box-shadow: none;
    background-color: transparent;
    border: none;
    margin: 0;
}

/* Footer */
.footer-wrapper{
    background-image: url("../images/footer.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 130px;
    padding-bottom: 120px;
    color: #fff;
    font-family: 'Barlow', 'sans-serif';
}
.footer-wrapper a{
    color: #fff;
    margin-bottom: 24px;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
}
.footer-wrapper a:hover{
    text-decoration: underline;
}
.footer-col h2{
    margin-bottom: 36px;
}
.footer-name{
    margin-top: 15px;
    margin-bottom: 3px;
}
.footer-social-media{
    margin-top: 26px;
}
.footer-social-media a{
    margin-right: 16px;
}
.f-label{
    font-size: 20px;
    font-weight: 400;
}
.f-touch p{
    margin-bottom: 9px;
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px; /* 150% */
}
.f-touch img {
    max-width: 30px;
}
.f-touch .tdb-desc {
    margin-left: 20px;
}
.f-touch .tdb-desc h4 {
    font-size: 25px;
}
.footer-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.header-mobile{
    background-color: #1e2228;
    position: fixed;
    width: 300px;
    padding: 20px;
    left: 0;
    /* height: 100vh; */
    top: 0;
    bottom: 0;
    visibility: hidden;
    transition: left 0.7s ease-in-out, visibility 0.7s ease-in-out;
    left: -100rem;
}
.header-mobile.visible {
    visibility: visible;
    left: 0;
}
.header-mobile-menu-icon{
    color:#fff;
    margin: 20px;
}
.header-mobile .header-menu {
    flex-direction: column;
    margin-top: 20px;
    align-items: normal;
}
.header-mobile .header-menu-li a{
    margin-left: 0;
    padding: 10px 20px 10px 0;
}
.header-mobile .header-menu-li:last-child{
    margin-top: 10px;
}
.header-mobile .header-menu-li:last-child a{
    padding: 13px 30px;
}
body {
    position: relative;
}
.header-mobile-wrapper{
    display: none;
    position: absolute;
    justify-content: flex-end;
    width: 100%;
    z-index: 99;
}

button.plain {
    cursor: pointer;
    transition: all 200ms ease-in-out;
    vertical-align: middle;
    border: 0 none;
    background: none;
    padding: 0;
    margin: 0;
}
button.hamburger {
    display: inline-block;
    width: 24px;
    height: 22px;
    padding: 0;
    margin-left: 4px;
}
button.hamburger:before, button.hamburger:after {
    content: "";
}
button.hamburger:before,
button.hamburger span, 
button.hamburger:after{
    display: block;
    width: 100%;
    height: 3px;
    margin: 0 0 5px;
    transition: all 200ms ease-in-out;
    background: #fff;
}
button.hamburger.animate.active span {
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
}

button.hamburger.animate.active:before {
    transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -webkit-transform: translateY(8px) rotate(45deg);
}

button.hamburger.animate.active:after {
    transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -webkit-transform: translateY(-8px) rotate(-45deg);
}

/* New Joiner */
.new-joiner-wrapper {
    position: sticky;
    top: 0;
    background-color: #F4FCFF;
    /* box-shadow: 0px 0px 4px 0px #d3d3d3; */
    z-index: 9;
    color: #000;
    font-size: 14px;
    padding: 0 10px;
}
.nj-box {
    margin: 15px 0;
    display: flex;
    align-items: center;
}
.nj-box img {
    margin-right: 13px;
    margin-left: 25px;
}

.c-00B4FF {
    color: #00B4FF;
}
.title-2 {
    font-weight: 700;
    font-size: 40px;
    color: #262B32;
    text-transform: uppercase;
    text-align: center;
    margin-top: 68px;
    margin-bottom: 90px;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
    border: 2px solid #00B4FF;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner .75s linear infinite;
    animation: spinner .75s linear infinite;
}

@keyframes spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.ml-10 {
    margin-left: 40px;
}

@media (max-width: 1199px) {
    .footer-section {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col {
        margin-bottom: 40px;
    }
    .footer-col:nth-child(even) {
        padding-right: 50px;
    }
}

@media (max-width: 991px) {
    .header .header-menu {
        display: none;
    }
    .header-mobile-wrapper{
        display: flex;
    }

    .footer-section{
        flex-wrap: wrap;
    }
    .footer-wrapper{
        padding-top: 100px;
        padding-bottom: 60px;
    }
    /* .footer-col{
        width: 50%;
        margin-bottom: 40px;
    } */
    .footer-col:nth-child(1){
        order: 3;
    }
}

@media (max-width: 768px) {
    .footer-wrapper a {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .f-touch p{
        font-size: 16px;
        line-height: 22px;
    }
    .f-label{
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .footer-section {
        grid-template-columns: 1fr;
    }

    .footer-wrapper{
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .footer-col:nth-child(even) {
        padding-right: 0;
    }
}