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;
}

.block {
    display: block;
}

/* HEADER */

.header {
    margin-top: 24px;
    z-index: 9;
}

.header-menu-li {
    float: left;
}

.header-menu-li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    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;
}

.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% */
}

.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: #fff;
    box-shadow: 0px 0px 4px 0px #d3d3d3;
    z-index: 9;
}

.nj-box {
    margin: 15px 0;
    display: flex;
    align-items: center;
}

.nj-box img {
    margin-right: 13px;
    margin-left: 25px;
}

.new-joiner-wrapper {
    padding: 0 10px;
}

@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-col {
        width: 100%;
    }
    .footer-wrapper {
        padding-top: 60px;
        padding-bottom: 20px;
    }
}