.mobile-bar {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    transition-duration: 0.2s;
    border: none !important;
    box-shadow: none !important;
}
.mobile-bar.scrolled {
    background-color: white;
    transition-duration: 0.2s;
}
.mobile-bar.open {
    background-color: white;
    transition-duration: 0.2s;
}
.mobile-bar .menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    width: 52px;
    position: absolute;
    right: 20px;
    margin-top: -8px;
}
.mobile-bar .mobile-logo {
    position: absolute;
    width: 140px;
    left: 27px;
    top: 25px;
}
.mobile-bar .logo-light { display: none; }
.mobile-bar .logo-dark { display: inline; }
/* Transparent pages (home/video heroes): show white logo when closed, swap to dark on scroll/open */
.is-home .mobile-bar .logo-light { display: inline; }
.is-home .mobile-bar .logo-dark { display: none; }
.is-home .mobile-bar.scrolled .logo-light,
.is-home .mobile-bar.open .logo-light { display: none; }
.is-home .mobile-bar.scrolled .logo-dark,
.is-home .mobile-bar.open .logo-dark { display: inline; }
.mobile-bar .line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
/* Transparent pages: white hamburger when closed; switch to black when menu open or scrolled */
.is-home .mobile-bar:not(.scrolled):not(.open) .line { stroke: white; }
.mobile-bar.scrolled .line,
.mobile-bar.open .line { stroke: black; }
.mobile-bar .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.mobile-bar .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.mobile-bar .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.mobile-bar .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.mobile-bar .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.mobile-bar .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.mobile-menu {
    position: fixed;
    z-index: 999;
    top: 63px;
    width: 100%;
    height: calc(100vh - 65px);
    left: 0;
    pointer-events: none;
    background-color: white;
    transition-duration: 0.2s;
    opacity: 0;
}

.mobile-menu.open {
    opacity: 1;
    transition-duration: 0.2s;
    pointer-events: auto;
}

.mobile-menu .menu-link {
    min-height: 50px;
    float: left;
    display: flex;
    align-items: center;
    font-family: 'Exensa', sans-serif;
    width: 100%;
    font-weight: 700;
    letter-spacing: -0.4px;
    text-transform: capitalize;
    font-size: 21px;
}

.mobile-menu .menu-link.icon {
    margin-bottom: 16px;
    min-height: 44px;
    font-size: 18px;
}
.mobile-menu .mobile-menu-icon {
    float: left;
    height: 40px;
    margin-top: 5px;
    margin-right: 13px;
    margin-left: -10px;
}
.mobile-menu .backMobileMenu {
    float: left;
    height: 34px;
    border-radius: 100px;
    padding-left: 25px;
    padding-right: 25px;
    font-family: 'LogikaNova', sans-serif;
    font-weight: 700;
    background: #ebebeb;
    color: black;
    margin-top: 30px;
    border: none;
    line-height: 32px;
}
.mobile-menu h4 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: -20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 23px;
    font-family: 'LogikaNova', sans-serif;
    font-weight: 400;
    letter-spacing: -1px;
}
.mobile-menu .menu-link.disabled {
    filter: grayscale(1);
    pointer-events: none;
    opacity: 0.6;
}
.mobile-menu .custom-tag {
    float: right;
    font-size: 15px;
    height: 24px;
    border-radius: 70px;
    background: #fec40c;
    line-height: 28px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 400;
    margin-top: 8px;
}
.mobile-menu .backMobileMenu img {
    height: 14px;
    float: left;
    margin-top: 10px;
    margin-right: 10px;
    opacity: 0.4;
}
.menu-link .container {
    position: relative;
    padding: 0px;
    /* Prevent any hairline/border on the right due to subpixel rendering/parallax */
    border-right: none !important;
    box-shadow: none !important;
    overflow: hidden;
    padding-right: 20px;
}
.mobileMenuSwiper {
    width: 100%;
    height: calc(100% - 100px);
    overflow: visible;
    background-image: linear-gradient(0deg, rgba(255,255,255,1), rgba(255,255,255,1)), url(../img/hero-bg.svg);
    background-size: cover;
    background-position: top left;
}
.mobileMenuSwiper .swiper-slide {
    padding: 20px;
    display: flex;
    align-items: center;
}
.menu-link span {
    margin-top: 10px;
    display: block;
    float: left;
    line-height: 21px;
    font-family: 'LogikaNova', sans-serif;
    color: black;
    font-weight: 400;
}
.menu-link span small {
    font-weight: 500;
    font-size: 12px;
    opacity: 0.7;
    color: gray;
}
.menu-link .mobile-item-arrow {
    height: 24px;
    margin-right: -6px;
    opacity: 0.3;
    position: absolute;
    right: 10px;
    top: calc(50% - 12px);
}
@media screen and (max-width: 992px) {
    .mobile-bar {
        display: block;
    }
    .cus-navbar {
        display: none;
    }
}

.footer {
    width: 100%;
    height: auto;
    min-height: 600px;
    background-color: #101010;
    overflow: hidden;
    margin-top: 22px;
    padding-top: 110px;
    margin-bottom: -8px;
    padding-bottom: 110px;
}
.footer .footer-logo {
    width: 145px;
}
.footer .content-container {
    padding-bottom: 60px;
    height: 100%;
    border-bottom: 1px solid #606060;
}
.footer .content-container p {
    width: 100%;
    max-width: 467px;
    font-family: var(--font-sans), sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: #C2C2C2;
    margin: 0px;
    margin-top: 30px;
}
.footer .content-container .custom-group {
    width: 100%;
    max-width: 493px;
    height: 72px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(237, 237, 237, 0.3);
    border-radius: 100px;
    margin-top: 50px;
    padding: 5px;
}
.footer .content-container .custom-group input {
    width: calc(100% - 172px);
    float: left;
    border-radius: 100px;
    background: transparent;
    font-family: var(--font-sans), sans-serif;
    padding-left: 20px;
    border: none;
    height: 56px;
}
.footer .content-container .custom-group button {
    width: 170px;
    height: 56px;
    float: left;
    font-family: var(--font-sans), sans-serif;
    color: white;
    background: #1364FE;
    margin-top: 2px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.04);
    border-radius: 100px;
    border: none;
}
.footer .content-container .custom-group button img {
    width: 24px;
    margin-top: -4px;
    display: inline;
}

.footer .footer-text {
    width: 100%;
    margin-top: 70px;
    margin-bottom: 70px;
}

.footer h4 {
    font-family: var(--font-sans), sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    width: 100%;
}
.footer a.footer-link {
    font-family: var(--font-sans), sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    width: 100%;
    line-height: 26px;
    color: #C2C2C2;
    margin-top: 20px;
    float: left;
    display: block;
    text-decoration: none;
    transition-duration: 0.25s;
}
.footer a.footer-link:hover {
    color: #1364FE;
    transition-duration: 0.25s;
}
.footer .copy {
    width: 100%;
    font-family: var(--font-sans), sans-serif;
    margin: 0px;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #C2C2C2;
}
.footer .socials {
    float: right;
    width: fit-content;
}
.footer .socials a {
    text-decoration: none;
    float: left;
    margin-left: 20px;
}

@media screen and (max-width: 992px) {
    .footer h4 {
        margin-top: 40px;
    }
}

