html {
    color: #222;
    font-size: 1em;
    line-height: 1.4
}

:root {
    scroll-behavior: initial;
}

@font-face {
    font-family: 'feather';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/feather/feather.eot?1gafuo');
    src: url('../fonts/feather/feather.eot?1gafuo#iefix') format('embedded-opentype'), url('../fonts/feather/feather.woff2?1gafuo') format('woff2'), url('../fonts/feather/feather.ttf?1gafuo') format('truetype'), url('../fonts/feather/feather.woff?1gafuo') format('woff'), url('../fonts/feather/feather.svg?1gafuo#feather') format('svg');
}

.icon {
    font-family: 'feather';
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
}

.icon--arrow-left:before {
    content: '\e901';
}

.icon--menu:before {
    content: '\e903';
}

.icon--cross:before {
    content: '\e117';
}



:root {
    --color-nullcon-blue: #234B9C;
    --color-nullcon-blue-light: #eaf1ff;
    --color-nullcon-red: #C81438;
    --color-tiger-eye: #DD9933;
    --color-offwhite: #F4F2F6;
    --color-offwhite-2: #FAFAFA;
    --color-offwhite-3: #F1F1F1;
    --color-dark: #2e2626;
    --color-charcoal: #36454F;
    --color-graphite-dark: #232323;
    --color-graphite: #323232;
    --color-grey: #777;
    --color-black: #191919;
    --color-text: #3b3b3b;
    --color-text-2: #aaadb3;
    --color-bg: #151823;
    --black-0: rgba(0, 0, 0, 0);
    --black-50: rgba(0, 0, 0, .5);
    --black-100: rgba(0, 0, 0, 1);
    --white-0: rgba(256, 256, 256, 0);
    --white-50: rgba(256, 256, 256, .25);
    --white-100: rgba(256, 256, 256, 1);

    --blue-gradient: linear-gradient(180deg, #234B9C 0%, #1F2A5D 100%);
    --dawn-gradient: linear-gradient(180deg, #F7E9E2 0%, #DADEF1 100%);
    --purple-gradient: linear-gradient(179deg, #3022B7 0%, #772983 100%);
}


body,
html {
    width: 100%;
    overflow-x: hidden
}

body {
    color: var(--color-text);
    font-family: 'Work Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: #FFFFFF;
    letter-spacing: .5px
}

/* RESET
******/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
}

img {
    max-width: 100%;
}

.overflow-hidden {
    overflow: hidden !important
}

/******/


:active,
:focus {
    outline: transparent
}

button:focus {
    outline: 0
}

div {
    position: relative;
    display: block
}

p {
    padding: 0;
    margin: 0
}

a {
    color: var(--color-nullcon-blue);
    text-decoration: underline;
    opacity: 1;
    font-weight: 600;
    transition: all .3s ease-out
}

a:focus,
a:hover {
    color: var(--color-nullcon-blue);
    text-decoration: underline;
    opacity: 0.7;
}

h3,
h4,
h5 {
    margin: 0;
    font-weight: 700;
    color: var(--color-black)
}

h1,
h2 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0
}

strong {
    font-weight: 600;
    color: var(--color-nullcon-green);
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid var(--color-nullcon-green);
    margin: 1em 0;
    padding: 0
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

textarea {
    resize: vertical
}

label {
    margin-bottom: 8px;
}

.browserupgrade {
    margin: .2em 0;
    background: #ccc;
    color: #000;
    padding: .2em 0
}

.translate-x {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.translate-y {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.translate-xy {
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.transition-2 {
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.transition-3 {
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.transition-4 {
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out
}

.light-font {
    font-weight: 300 !important
}

.regular-font {
    font-weight: 400 !important
}

.italic-font {
    font-style: italic !important
}

.medium-font {
    font-weight: 500 !important
}

.semi-bold {
    font-weight: 600 !important
}

.bold-font {
    font-weight: 700 !important
}

.extra-bold-font {
    font-weight: 900 !important
}

.mt-10,
.my-10 {
    margin-top: 6rem !important
}

.r-mb-0 {
    margin-bottom: 0rem !important
}

.r-mb-1 {
    margin-bottom: .5rem !important
}

.r-mb-2 {
    margin-bottom: 1rem !important
}

.r-mb-3 {
    margin-bottom: 1.5rem !important
}

.r-mb-4 {
    margin-bottom: 2rem !important
}

.r-mb-5 {
    margin-bottom: 2.5rem !important
}

.r-mb-6 {
    margin-bottom: 3rem !important
}

.r-mb-7 {
    margin-bottom: 3.5rem !important
}

.r-mb-8 {
    margin-bottom: 4rem !important
}

.r-mb-9 {
    margin-bottom: 4.5rem !important
}

.r-mb-10 {
    margin-bottom: 5rem !important
}

.r-mb-11 {
    margin-bottom: 5.5rem !important
}

.r-mb-12 {
    margin-bottom: 6rem !important
}

.r-mb-13 {
    margin-bottom: 6.5rem !important
}

.r-mb-14 {
    margin-bottom: 7rem !important
}

.r-mb-15 {
    margin-bottom: 7.5rem !important
}

.r-mb-16 {
    margin-bottom: 8rem !important
}

.r-mt-0 {
    margin-top: 0rem !important
}

.r-mt-1 {
    margin-top: .5rem !important
}

.r-mt-2 {
    margin-top: 1rem !important
}

.r-mt-3 {
    margin-top: 1.5rem !important
}

.r-mt-4 {
    margin-top: 2rem !important
}

.r-mt-5 {
    margin-top: 2.5rem !important
}

.r-mt-6 {
    margin-top: 3rem !important
}

.r-mt-7 {
    margin-top: 3.5rem !important
}

.r-mt-8 {
    margin-top: 4rem !important
}

.r-mt-9 {
    margin-top: 4.5rem !important
}

.r-mt-10 {
    margin-top: 5rem !important
}

.r-mt-11 {
    margin-top: 5.5rem !important
}

.r-mt-12 {
    margin-top: 6rem !important
}

.r-mt-13 {
    margin-top: 6.5rem !important
}

.r-mt-14 {
    margin-top: 7rem !important
}

.r-mt-15 {
    margin-top: 7.5rem !important
}

.r-mt-16 {
    margin-top: 8rem !important
}

.r-mr-0 {
    margin-right: 0rem !important
}

.r-mr-1 {
    margin-right: .5rem !important
}

.r-mr-2 {
    margin-right: 1rem !important
}

.r-mr-3 {
    margin-right: 1.5rem !important
}

.r-mr-4 {
    margin-right: 2rem !important
}

.r-mr-5 {
    margin-right: 2.5rem !important
}

.r-mr-6 {
    margin-right: 3rem !important
}

.r-mr-7 {
    margin-right: 3.5rem !important
}

.r-mr-8 {
    margin-right: 4rem !important
}

.r-mr-9 {
    margin-right: 4.5rem !important
}

.r-mr-10 {
    margin-right: 5rem !important
}

.r-mr-11 {
    margin-right: 5.5rem !important
}

.r-mr-12 {
    margin-right: 6rem !important
}

.r-mr-13 {
    margin-right: 6.5rem !important
}

.r-mr-14 {
    margin-right: 7rem !important
}

.r-mr-15 {
    margin-right: 7.5rem !important
}

.r-mr-16 {
    margin-right: 8rem !important
}

.r-ml-0 {
    margin-left: 0rem !important
}

.r-ml-1 {
    margin-left: .5rem !important
}

.r-ml-2 {
    margin-left: 1rem !important
}

.r-ml-3 {
    margin-left: 1.5rem !important
}

.r-ml-4 {
    margin-left: 2rem !important
}

.r-ml-5 {
    margin-left: 2.5rem !important
}

.r-ml-6 {
    margin-left: 3rem !important
}

.r-ml-7 {
    margin-left: 3.5rem !important
}

.r-ml-8 {
    margin-left: 4rem !important
}

.r-ml-9 {
    margin-left: 4.5rem !important
}

.r-ml-10 {
    margin-left: 5rem !important
}

.r-ml-11 {
    margin-left: 5.5rem !important
}

.r-ml-12 {
    margin-left: 6rem !important
}

.r-ml-13 {
    margin-left: 6.5rem !important
}

.r-ml-14 {
    margin-left: 7rem !important
}

.r-ml-15 {
    margin-left: 7.5rem !important
}

.r-ml-16 {
    margin-left: 8rem !important
}


.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.shake {
    animation-name: shake;
}

@keyframes shake {

    from,
    to {
        transform: translate3d(0, 0, 0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0);
    }
}

/*Color classes*/
.txt-white {
    color: #fff !important
}

.txt-blue {
    color: var(--color-nullcon-blue) !important
}

.txt-black {
    color: var(--color-black) !important
}

.txt-orange {
    color: var(--color-tiger-eye) !important
}

.txt-red {
    color: var(--color-nullcon-red) !important
}

/* Custom styles */
.logo {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
}

.logo-div {
    width: 60px;
}

.navbar {
    padding: 0 40px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar.nav-shadow {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px 0px;
}

.navbar-nav .nav-item {
    vertical-align: middle;
    padding-top: 22px;
    padding-bottom: 16px;
}

.navbar-expand-md .navbar-nav .nav-link,
.dropdown-item {
    display: inline-block;
    position: relative;
    padding: 2px 20px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;

}

.dropdown-item {
    display: block;
    color: var(--color-black);
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: rgba(221, 153, 51, .6);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--color-black);
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .dropdown-item:focus,
.navbar-light .dropdown-item:hover {
    color: var(--color-black);
    text-decoration: none;
}

.navbar-toggler {}

.navbar-close {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-close {
    display: block;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    display: none;
}

.menu-inner {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(221, 153, 51, .6);
    -webkit-transform: translateX(-103%);
    transform: translateX(-103%);
}

.menu-inner-txt {
    z-index: 2;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-link.active .menu-inner,
.dropdown-item.active .menu-inner {
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
}

.dropdown-item.active,
.dropdown-item:active {
    color: #3b3b3b;
    text-decoration: none;
    background-color: #fff;
}

/* Mobile menu */

.mobile-menu {
    position: fixed;
    display: none;
    left: 0;
    background: #1c1d22;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.menu__wrap {
    position: absolute;
    top: 4.5em;
    bottom: 0;
    overflow: hidden;
    width: 100%;
}

.menu__level {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow: hidden;
    overflow-y: scroll;
    width: calc(100% + 50px);
    height: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.menu__level:focus {
    outline: none;
}

.menu__level--current {
    visibility: visible;
}

.menu__item {
    display: block;
    width: calc(100% - 50px);
}

.menu__link {
    font-weight: 600;
    position: relative;
    display: block;
    padding: 1em 2.5em 1em 1.4em;
    color: #bdbdbd;
    -webkit-transition: color 0.1s;
    transition: color 0.1s;
    font-size: 1.2rem;
}

.menu__link[data-submenu]::after {
    content: '\e904';
    font-family: 'feather';
    position: absolute;
    right: 0;
    padding: 0.25em 1.25em;
    color: #dd9933;
}

.menu__link:hover,
.menu__link:focus,
.menu__link[data-submenu]:hover::after,
.menu__link[data-submenu]:focus::after {
    color: #dd9933;
}

.menu__link--current::before {
    content: '\00B7';
    font-size: 1.5em;
    line-height: 0;
    position: absolute;
    top: 50%;
    left: 0.5em;
    height: 4px;
    color: #dd9933;
}

[class^='animate-'],
[class*=' animate-'] {
    visibility: visible;
}

.animate-outToRight .menu__item {
    -webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
    animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToRight {
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes outToRight {
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.animate-outToLeft .menu__item {
    -webkit-animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
    animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToLeft {
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes outToLeft {
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.animate-inFromLeft .menu__item {
    -webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
    animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes inFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.animate-inFromRight .menu__item {
    -webkit-animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
    animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes inFromRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.menu__breadcrumbs {
    font-size: 1rem;
    position: relative;
    padding: 2.5em 3.75em 1.5em 1.5em;
}

.menu__breadcrumbs a {
    font-weight: bold;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #dd9933;

}

.menu__breadcrumbs a:last-child {
    pointer-events: none;
}

.menu__breadcrumbs a:hover,
.menu__breadcrumbs a:focus {
    color: #dd9933;
}

.menu__breadcrumbs a::after {
    content: '\e902';
    font-family: 'feather';
    display: inline-block;
    padding: 0 7px;
    color: #fff;
    opacity: 0;

}

.menu__breadcrumbs a:not(:last-child)::after {
    opacity: 1;
}

.menu__breadcrumbs a:not(:last-child):hover::after,
.menu__breadcrumbs a:not(:last-child):focus::after {
    color: #dd9933;
    ;
}

.menu__back {
    font-size: 1.05em;
    position: absolute;
    z-index: 100;
    top: 0;
    right: 2.25em;
    margin: 0;
    padding: 1.365em 0.65em 0 0;
    cursor: pointer;
    color: #dd9933;
    border: none;
    background: none;
}

.menu__back--hidden {
    pointer-events: none;
    opacity: 0;
}

.menu__back:hover,
.menu__back:focus {
    color: #fff;
    outline: none;
}


/* Open and close buttons */

.action {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: none;
    background: none;
}

.action:focus {
    outline: none;
}

.action--open {
    font-size: 1.5em;
    top: 16px;
    left: 1em;
    display: none;
    color: #666;
    position: fixed;
    z-index: 1000;
}

.action--close {
    font-size: 1.1em;
    top: 1.25em;
    right: 1em;
    display: none;
    color: #dd9933;
}


.menu--open {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.menu-social {
    position: absolute;
    bottom: 128px;
    width: 100%;
}


/* Main container */

.main-container {
    width: 100%;
    position: relative;
    display: block;
    min-height: 100vh;
}

.main-container section {
    position: relative;
}

.opening-section {
    width: 100%;
    height: calc(100vw / 1.8);
    margin-top: 75px;
    background-color: var(--color-offwhite-2);
    
}

.body-section {
    padding: 48px 0;
}

.raised-txt-head {
    position: absolute;
    width: 100%;
    z-index: 0;
    top: 40%;
    font-size: 21.25rem;
    font-weight: 900;
    color: var(--color-offwhite-2);
    letter-spacing: 40px;
    text-align: center;
    line-height: 1;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.raised-txt {
    font-size: 9.375rem;
    letter-spacing: 15px;
    font-weight: 900;
    line-height: 1;
    color: var(--color-offwhite-2);
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 2.25rem;
    text-transform: uppercase;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 32px;
}

.landing-slider-wrap {
    width: 100%;
    top: 220px;
    overflow: visible;
}

.banner-wrap {}

.banner-container {
    width: 1070px;
    margin: 0 auto;
    height: 340px;
    margin-top: 56px;
}

.new-banner-container {
    width: 600px;
    margin: 0 auto;
    height: 340px;
    margin-top: 56px;
}

.banner-top {
    z-index: 2;
    width: 600px;
}

.banner-side {
    position: absolute;
    left: 590px;
    top: 0;
    width: 480px;
    min-height: 300px;
    z-index: 1;
    background: #FFFFFF;
    box-shadow: 12px 20px 30px 0 rgba(0, 0, 0, 0.20);
    border-radius: 6px;
    padding: 2rem;
}

.banner-bottom {
    position: absolute;
    left: 60px;
    top: 310px;
    width: 480px;
    max-height: 210px;
    z-index: 1;
    background: #FFFFFF;
    box-shadow: 12px 20px 30px 0 rgba(0, 0, 0, 0.20);
    border-radius: 6px;
    padding: 2rem;
}

.banner-slider {
    position: absolute;
    bottom: 5rem;
    box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.50);
    border-radius: 6px;
    overflow: hidden;
    margin: 1.25rem;
    width: 560px;
    height: 440px;
    z-index: 1;
    background-color: #fff;
}

.banner-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slider-video {
    position: absolute;
    width: auto;
    height: 100%;
    margin: auto;
    display: block;
    transform: translateX(-50%);
    left: 50%;
}

.banner-clock-wrap {
    width: 100%;
    height: 340px;
    background-image: var(--dawn-gradient);
    box-shadow: 16px 20px 30px 0 rgba(0, 0, 0, 0.20);
    border-radius: 6px;
}

.banner-clock {
    position: absolute;
    left: 50%;
    padding: 1.5rem;
    text-align: center;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer-item {
    margin: 0 20px;
}

.timer-value {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-black);
}

.timer-caption {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: var(--color-nullcon-blue);
}

.banner-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-tiger-eye);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-graphite);
    margin-bottom: 12px;
}

.banner-venue {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.banner-link-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    flex-flow: wrap;
}

.hero-link-wrap {
    width: 100%;
    display: flex;
    justify-content: start;
    flex-flow: wrap;
    position: absolute;
    bottom: 32px;
    z-index: 2;
}

.after-movie-wrap {
    width: 100%;
    height: 400px;
    background-image: url(../img/after-movie.jpeg);
    background-size: cover;
    background-position: center;
    box-shadow: rgba(0, 0, 0, 20) 4px 6px 30px 0px;
    display: flex;
    align-items: center;
}

.after-movie-container {
    width: 100%;
    position: absolute;
    z-index: 3;
}

.popup-youtube {
    position: relative;
    display: block;
    width: 64px;
    height: 64px;
    background-image: url(../img/play-btn.svg);
    background-size: cover;
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons*/
.nullcon-btn {
    vertical-align: baseline;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    overflow: visible;
    padding: 10px 20px;
    background-image: var(--blue-gradient);
    border-radius: 4px;
}

.nullcon-btn:hover,
.nullcon-btn:focus {
    color: #fff;
    text-decoration: none;
}

.btn-first {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: nowrap row;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.arrow-svg {
    display: inline-block;
    margin-right: 10px;
    width: 10px;
    height: 14px;
}

.arrow-svg path {
    fill: #fff;
}

.btn-second {
    padding-left: 0;
    padding-right: 25px;
    overflow: hidden;
}

.btn-second,
.btn-fourth {
    display: block;
    position: relative;
}

.btn-third {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .6);
    -webkit-transform: translateX(-103%);
    transform: translateX(-103%);
}

.btn-fourth {
    z-index: 2;
}

.null-icon {
    position: relative;
    display: inline-block;
    width: 20px;
    margin-right: 8px;
}

.null-icon img {
    width: 100%;
}

.link-btn {
    color: var(--color-black);
    background-image: none;
    padding: 10px 4px;
    text-transform: uppercase;
}

.white .link-btn {
    color: #fff;
}

.link-btn .arrow-svg path {
    fill: var(--color-tiger-eye);
}

.link-btn .btn-third {
    background-color: rgba(221, 153, 51, .6);
}

.link-btn:hover,
.link-btn:focus {
    color: var(--color-black);
}

.white .link-btn:hover,
.white .link-btn:focus {
    color: #fff;
}

.link-btn:after {
    content: "";
    width: 9px;
    height: 8px;
    background-image: url(../img/square-blue.svg);
    background-size: cover;

}

.white .link-btn:after {
    background-image: url(../img/square-white.svg);

}

.link-btn:last-child:after {
    display: none;
}


/* Home About */
.home-about-slider {
    width: 100%;
    height: 400px
}

.home-about-img {
    width: 100%;

}

.home-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-about-detail {
    width: 100%;
    padding: 48px 32px;
    min-height: 300px;
}

.home-about-detail:after {
    content: "";
    top: 0;
    left: -96px;
    position: absolute;
    width: calc(100% + 250px);
    height: 100%;
    z-index: -1;
    background-image: var(--dawn-gradient);
}

.side-lines {
    width: 140px;
    position: absolute;
    right: 0;
    top: 0;
}

/* Home Package */
.package-box {
    width: 100%;
    height: 300px;
    border-radius: 6px;
    box-shadow: 4px 6px 20px 0 rgba(0, 0, 0, 0.50);
    overflow: hidden;
}

.package-img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.package-img-overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
}

.package-img-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #3377DD 0%, #E88038 99%);
    mix-blend-mode: color;
}

.package-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.package-detail {
    width: 100%;
    height: 100%;
    padding: 24px;
    position: absolute;
    z-index: 2;
}

.package-txt-1 {
    margin-bottom: 4px;
    color: #fff;
    font-size: 1rem;
}

.package-txt-2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.package-txt-3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.event-slider {
    overflow: visible;
}

.event-slider.swiper-horizontal>.swiper-pagination-bullets {
    bottom: -40px;
}

.swiper-pagination-bullet {
    opacity: 1;
    background-color: var(--color-grey);
}

.swiper-pagination-bullet-active {
    background-color: var(--color-tiger-eye);
}

/* Home Sponsors */
.sponsor-grid {
    margin: 0 auto;
}



.filter-wrap {
    display: flex;
    padding-bottom: 32px;
    justify-content: start;
    flex-wrap: wrap;
}

.filter-inner {
    display: flex;
    align-items: center;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 32px;
    justify-content: center;
}

.filter-items {
    display: flex;
}

.filter-item {
    padding: 12px;
    background-color: var(--color-offwhite-3);
    margin: 10px;
    cursor: pointer;
    transition: 0.3s all ease;
    opacity: 1;
    min-width: max-content;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
    text-align: center;
    border-radius: 6px;
    box-shadow: none;
    background-image: none;
    text-transform: uppercase;
}

.filter-item:hover {
    opacity: 0.7;
}

.filter-item.is-checked {
    background-image: linear-gradient(180deg, #234B9C 0%, #1F2A5D 100%);
    box-shadow: 4px 6px 20px 0 rgba(0, 0, 0, 0.50);
    color: #fff;
}

.filter-next,
.filter-previous {
    display: flex;
    align-items: center;
    top: 0;
    position: absolute;
    right: 0px;
    bottom: 32px;
    padding-left: 42px;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out 0s;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 25%, rgba(255, 255, 255, 0.9) 50%, rgb(255, 255, 255) 75%);
    opacity: 1;
}

.filter-next {}

.filter-previous {
    padding-right: 42px;
    padding-left: 0;
    left: 0;
    right: initial;
}

.filter-next button,
.filter-previous button {
    background: transparent;
    overflow: visible;
    padding: 0;
    border: none;
    cursor: pointer;
    margin: 2px;
    pointer-events: all;
}

.home-sponsor-item {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #fff;
    transform-origin: center;
    box-shadow: 20px 20px 40px 1px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-sponsor-item.big {
    width: 300px;
    height: 300px;
}

.home-sponsor-item.small {
    width: 150px;
    height: 150px;
}

.home-sponsor-item img {
    padding: 12px;
    width: 90%;
}


.social-stats {
    position: static;
    letter-spacing: 0;
    font-size: 4rem;
    text-align: center;
    color: rgba(0, 212, 255, 1);
    background: linear-gradient(180deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 27%, rgba(0, 212, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 20px 40px var(--color-offwhite-2);
}


.social-media-stats ul li span:nth-child(2) {
    font-size: 1.2rem;
    color: var(--color-charcoal);
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-media-stats ul li span:last-child {
    font-size: 1rem;
    color: var(--color-grey);
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.circle-blue {
    position: relative;
    z-index: -1;
    padding: 1rem;
    border-radius: 50%;
    clip-path: circle(35%);
    background-color: #234B9C;
}

.homage-slider {
    overflow: visible;
}

.homage-wrap {
    display: inline-block;
    vertical-align: middle;
    padding: 20px;
    width: 49%;
}

.homage-head {
    width: 114px;
    padding-top: 77px;
    float: left;
}

.homage-img {}

.homage-img img {
    position: relative;
    width: 114px;
    height: auto;
    z-index: 1;
    display: block;
}

.homage-quote {
    position: absolute;
    top: 0;
    right: -77px;
    width: 140px;
    height: 140px;
}

.homage-text-holder {
    display: inline-block;
    vertical-align: middle;
    float: left;
    width: calc(100% - 114px);
    padding-left: 104px;
}

.quote-author {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.homage-slider.swiper-horizontal>.swiper-pagination-bullets {
    bottom: -40px;
}

.homage-text-fixed {
    display: block;
    height: 320px;
    overflow-y: scroll;
    position: relative;
}



.newsletter-wrap {
    width: 100%;
    background-image: linear-gradient(180deg, #F7E9E2 0%, #DADEF1 100%);
    box-shadow: 4px 6px 20px 0 rgba(0, 0, 0, 0.50);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    align-items: center;
}

/* Typography */
.copy-1 {
    font-size: 1.5rem;
    color: var(--color-nullcon-blue);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.copy-txt {
    margin-bottom: 1rem;
    font-weight: 400;
}

.copy-2 {
    color: var(--color-grey);
    font-weight: 600;
}

.copy-3 {
    font-size: 1.75rem;
    color: var(--color-black);
    font-weight: 700;
    margin-bottom: 20px;
}

.copy-4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.copy-5 {
    font-weight: 600;
    color: var(--color-text);
}

.copy-6 {
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.2;
}

.copy-7 {
    font-size: 1.275rem;
    color: var(--color-nullcon-blue);
    line-height: 1.2;
    font-weight: 600;
}

.copy-8 {
    font-size: 1.5rem;
    color: var(--color-text);
    font-weight: 600;
}

.copy-9 {
    font-size: 1rem;
    color: var(--color-nullcon-blue);
    line-height: 1.2;
    font-weight: 600;
}

.copy-10 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.slant-caption {
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
    color: var(--color-nullcon-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-grey);
}

.caution-txt {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-nullcon-red);
    margin: 24px 0;
}

/* Footer */
.footer-logo {
    width: 50%;
}

.footer-section {
    position: relative;
    display: block;
    padding: 4rem 0 2rem 0;
    background-image: var(--blue-gradient);
    overflow: hidden;
}

.footer-section:before {
    background: transparent url(../img/null-raised-text.svg) no-repeat top/cover;
    content: "";
    margin: 0 auto;
    opacity: .03;
    top: -150px;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100vw;
    height: calc(100vw / 1.896);
    text-align: center;
    z-index: 0;
}

.footer-menu {
    margin-bottom: 8px;
}

.footer-txt {
    width: 100%;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.scroll-down {
    color: #fff;
    cursor: s-resize;
    padding: 45px 0;
    right: 6vw;
    bottom: 0;
    position: absolute;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 3;
}

.scroll-down {
    left: 50%;
    width: 100px;
    margin-left: -50px;
}

.scroll-up {
    transform: rotate(180deg);
    padding: 0;
    bottom: initial;
    cursor: n-resize;
}

.scroll-down i {
    display: block;
    margin: auto;
    position: relative;
    width: 35px;
    height: 84px;
    text-align: center;
}

.scroll-down i:before {
    background: #fff;
    content: "";
    margin: 0 auto;
    right: 0;
    left: 0;
    position: absolute;
    width: 1px;
    height: 60px;
    top: 0;
    transition: all .3s cubic-bezier(.77, 0, .175, 1);
    z-index: 1;
}

.scroll-down svg.arrow {
    margin: 0 auto;
    right: 0;
    left: 0;
    position: absolute;
    width: 7px;
    height: 5px;
    top: 66px;
    transition: top .2s cubic-bezier(.77, 0, .175, 1);
    z-index: 1;
}

.scroll-down svg.circle {
    opacity: .5;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 35px;
    height: 35px;
    transform: rotate(-90deg);
    z-index: 0;
}

.scroll-down svg.circle circle {
    stroke: #fff;
    stroke-dasharray: 95;
    stroke-dashoffset: 0;
    transition: all .6s ease-in
}

.scroll-down svg.arrow g path {
    transition: fill .2s cubic-bezier(.77, 0, .175, 1);
}

.scroll-down:hover i:before {
    background: var(--color-tiger-eye);
    height: 75px
}

.scroll-down:hover svg.arrow {
    top: 75px
}

.scroll-down:hover svg.arrow g path {
    fill: var(--color-unlisted-blue);
}

.scroll-down:hover svg.circle circle {
    stroke-dashoffset: 95
}

.social-desktop-menu {
    display: block;
}

.social-desktop-menu li {
    display: inline-block;
    margin-right: 8px;
}

.social-desktop-menu li a {
    color: #fff;
    display: block;
    padding: 5px 0;
    text-decoration: none;
    border: 1px solid hsla(0, 0%, 100%, .3);
    border-radius: 100%;
    position: relative;
    width: 36px;
    height: 36px;

}

.social-desktop-menu li a svg {
    margin: auto;
    max-width: 12px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: auto;
    text-align: center;
}

.social-desktop-menu li a:hover {
    border-color: #fff;
}

/* Form Elements */
.form-input {
    display: inline-block;
    width: 300px;
    border: none;
    border-radius: 6px;
    background-color: #fff;
    padding: 6px 10px;
}

.newsletter-input-wrap {
    display: flex;
    justify-content: end;
}

.newsletter-btn {
    display: inline-block;
    background-image: var(--blue-gradient);
    color: #fff;
    font-weight: 600;
    padding: 7px 10px;
    border-radius: 6px;
    opacity: 1;
    transition: all 0.3s ease;
    border: none;
    -webkit-appearance: unset;
    font-size: 1rem;
    margin-left: -16px;
}

.newsletter-btn:hover {
    opacity: 0.7;
}

/* CTA section */
.cta-section {
    width: 100vw;
    background-image: url(../img/home-cta.jpg);
    background-size: cover;
}

/* Hero Section*/
.hero-section {
    width: 100%;
    height: calc(100vw / 2.666);
    margin-top: 70px;
    background-color: var(--color-offwhite-2);
    background-image: url(../img/home/berlin/Berlin-9.JPG);
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 20) 4px 6px 30px 0px;
    background-position: 50% 50%;
}

.hero-section-goa {
    width: 100%;
    height: calc(100vw / 2.666);
    margin-top: 70px;
    background-color: var(--color-offwhite-2);
    background-image: url(../img/event/Goa-Banner26.webp);
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 20) 4px 6px 30px 0px;
    background-position: 50% 70%;
}

.hero-overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.40) 100%);
}

.hero-overlay-1-goa {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.40) 100%);
    opacity: 0.9;
}

.hero-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #234B9C 0%, #1F2A5D 100%);
    mix-blend-mode: overlay;
}

.hero-overlay-3 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.40) 100%); */
}

.hero-detail {
    width: 100%;
    padding: 24px;
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.hero-caption {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 5.625rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    text-transform: uppercase;
    line-height: 1;
}

/* Conference Speakers*/
.speaker-grid,
.trainer-grid,
.reviewer-grid,
.recording-grid {
    width: 100%;
}

.speaker-grid:after,
.trainer-grid:after,
.reviewer-grid:after,
.recording-grid:after {
    content: '';
    display: block;
    clear: both;
}

.speaker-gutter-sizer {
    width: 40px;
}

.speaker-card,
.reviewer-card,
.trainer-card,
.team-card,
.recording-card {
    width: 48%;
    height: 330px;
    background-image: linear-gradient(180deg, #F7E9E2 0%, #DADEF1 100%);
    border-radius: 20px;
    float: left;
    margin: 20px 0;
    box-shadow: none;
    padding: 24px;
    transition: all .8s cubic-bezier(.23, 1, .32, 1);
    cursor: pointer;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;

}

.custom-speaker-grid .speaker-card {
    /* width: 98%;*/
    margin: 8px;
}

.reviewer-card,
.recording-card {
    width: 30%;
    min-height: 380px;
    height: auto;
}

.recording-card {
    min-height: 320px;
}

.speaker-card:hover,
.reviewer-card:hover,
.trainer-card:hover,
.team-card:hover,
.recording-card:hover {
    box-shadow: 27px 23px 107px -6px rgba(0, 0, 0, 0.32);
    transform: scale(1.05);
}

.speaker-card-left,
.reviewer-card-left .recording-card-left {
    width: 200px;
    height: 100%;
    flex-basis: 200px;
    flex-grow: 0;
    flex-shrink: 0;
}

.reviewer-card-left,
.recording-card-left {
    width: 100%;
    margin: 0 auto;
}

.speaker-details-slider,
.reviewer-details-box {
    width: 100%;
    height: 100%;
}

.recording-details-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.speaker-details-slider.swiper-horizontal>.swiper-pagination-bullets,
.speaker-profile-slider.swiper-horizontal>.swiper-pagination-bullets {
    bottom: -6px;
}

.speaker-slide,
.reviewer-slide,
.recording-slide {
    width: 100%;
}


.speaker-thumbnail,
.reviewer-thumbnail {
    width: 110px;
    height: 110px;
    margin: 6px auto 10px auto;

}

.speaker-thumbnail:before,
.reviewer-thumbnail:before {
    content: '';
    border-radius: 50%;
    display: block;
    width: 114px;
    height: 114px;
    background-image: var(--blue-gradient);
    top: -2px;
    left: -2px;
    position: absolute;
    z-index: 0;
}

.speaker-thumbnail img,
.reviewer-thumbnail img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    z-index: 1;
    position: relative;
}


.speaker-social,
.reviewer-social,
.recording-links-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 12px;
}

.speaker-social-item,
.reviewer-social-item,
.recording-link {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    width: 32px;
    height: 32px;
    margin: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
    color: #fff;
}

.recording-link {
    width: 48px;
    height: 48px;
    margin: 10px;
}


.speaker-social-item img,
.reviewer-social-item img,
.recording-link img {
    width: 50%;
}

.speaker-social-item:hover,
.reviewer-social-item:hover,
.recording-link:hover {
    transform: scale(1.2);
    background: rgba(0, 0, 0, 0.3);
}

.speaker-description {
    height: 100px;
    overflow: hidden;
    margin-top: 32px;
}

.speaker-talks {
    flex-grow: 1;
    flex-shrink: 1;
}

.speaker-talks .nullcon-btn {
    position: absolute;
    bottom: 0;
}

.speaker-img {
    width: 100%;
}

.speaker-img img {
    width: 100%;
    box-shadow: -6px 6px 25px 0 rgba(0, 0, 0, 0.50);
}

.speaker-left {}

.speaker-left.fixed {
    position: fixed;

}

.speaker-left .speaker-social {
    justify-content: start;
}

.page-description-box {
    margin-bottom: 32px;
    padding: 0 24px;
}



.speaker-left-description {
    margin: 24px 0;
}

.dot-square-pattern:before {
    content: "";
    width: 200px;
    height: 80px;
    right: 0;
    top: 0;
    background: transparent url(../img/dot-pattern-1.svg) repeat 0 0;
    position: absolute;
    z-index: 0;
}

.back-btn {
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

.back-btn i {
    width: 9px;
    height: 16px;
    background-image: url(../img/go-back.svg);
    background-size: cover;
    display: inline-block;
    top: 3px;
    position: relative;
    margin-right: 4px;
    transform: translateX(0);
    transition: all 0.3s ease-out;
}

.back-btn:hover i {
    transform: translateX(-6px);
}

/* Training */
.training-item {
    font-weight: 600;
    margin-bottom: 8px;
}

.training-item:before {
    content: "";
    width: 9px;
    height: 8px;
    background-image: url(../img/square-blue.svg);
    background-size: cover;
    display: inline-block;
    margin-right: 8px;
    top: -1px;
    position: relative;
}

.trainer-bio-box {
    padding: 24px;
    background-image: var(--dawn-gradient);
    border-radius: 6px;
}

.training-nav {
    margin-bottom: 32px;
}

.training-nav a {
    position: relative;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: var(--color-text);
}

.training-nav a:hover,
.training-nav a.active {
    color: var(--color-nullcon-blue);

}

.training-nav a.active {
    font-weight: 600;
}

.training-nav a:before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../img/chevrons-right.svg);
    background-size: cover;
    display: inline-block;
    margin-right: 8px;
    top: 3px;
    position: relative;
}

.training-nav a:hover:before {
    background-image: url(../img/chevrons-right-blue.svg);
}

/* CFP */
.hscroll {
    overflow-x: auto;
}

.null-table {
    width: 100%;
    table-layout: fixed;
    margin: 32px 0;
    font-size: 0.875rem;
}

.null-table.no-fixed-table {
    table-layout: auto;
}

.table-header,
.table-header-2 {
    text-align: center;
    font-weight: 600;
    color: #fff;
    background-image: var(--blue-gradient);
    text-transform: uppercase;
}

.table-header-2 {
    color: #3b3b3b;
    background-image: var(--dawn-gradient);
}

.table-header th,
.table-header-2 th {
    padding: 22px 16px;
    border-right: 1px solid var(--color-offwhite);
}

.table-header th:first-child,
.table-header-2 th:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.table-header th:last-child,
.table-header-2 th:last-child {
    border: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.table-body {
    color: var(--color-text);
    text-align: center;
    font-weight: 500;
    top: 16px;
    position: relative;
}

.table-body tr {
    background-color: #fff;
    margin-bottom: 16px;

}

.table-with-border .table-body tr {
    border-bottom: 1px solid var(--color-text);
}

.table-body tr.gradient-row {
    background-image: var(--dawn-gradient);
}

.table-spacer {
    height: 16px;
}

.table-sub-head {
    font-size: 0.75rem;
    color: var(--color-tiger-eye);
    border-top: 1px solid #fff;
}

.table-body tr.grey-row {
    background-color: var(--color-offwhite-3);
}

.table-body td {
    padding: 16px 8px;
    border-right: 1px solid var(--color-text);
    font-weight: 500;

}

.table-body td:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.table-body td:last-child {
    border: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.table-checkmark {
    width: 24px;
    height: 24px;
    background-image: url(../img/checkmark.svg);
    background-size: cover;
    margin: 0 auto;
}

.table-cross {
    width: 24px;
    height: 24px;
    background-image: url(../img/close-red.svg);
    background-size: cover;
    margin: 0 auto;
}

.sold-out {
    padding: 4px 10px;
    border: 2px solid var(--color-nullcon-red);
    color: var(--color-nullcon-red);
    margin-top: 4px;
    font-weight: 600;
    display: inline-block;
}

.full-img {
    width: 100%;
}

.full-img img {
    width: 100%;
}

.null-accordion .accordion-button:not(.collapsed) {
    background-image: var(--dawn-gradient);
    color: var(--color-nullcon-blue);

}

.null-accordion .accordion-button {
    font-weight: 600;
    color: var(--color-text);
}

.null-accordion .accordion-button::after {
    background-image: url(../img/arrow-down.svg);

}

.null-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.null-accordion .accordion-item {
    margin-bottom: 24px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.20);
    border: none;
    border-radius: 4px;
}

.bullet-list,
.numbered-list,
.api-data ul,
.api-data ol {
    padding-left: 24px;
    padding-top: 12px;
}

.bullet-list li,
.api-data ul li {
    list-style: disc;
    margin-bottom: 16px;
}

.api-data ol li {
    list-style: decimal;
    margin-bottom: 16px;
}

.numbered-list li {
    list-style: decimal;
    margin-bottom: 16px;
}

.circle-list {
    margin-top: 16px;
    padding-left: 24px;
}

.circle-list li {
    list-style: circle;
    margin-bottom: 16px;
}

/* CTF */
.nullcon-nav.nav-pills .nav-link {
    padding: 16px;
    background-color: var(--color-offwhite-3);
    margin: 10px;
    cursor: pointer;
    transition: 0.3s all ease;
    opacity: 1;
    min-width: max-content;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
    text-align: center;
    border-radius: 6px;
    box-shadow: none;
    background-image: none;
    text-transform: uppercase;
}

.nullcon-nav.nav-pills .nav-link.active,
.nullcon-nav.nav-pills .show>.nav-link {
    background-image: linear-gradient(180deg, #234B9C 0%, #1F2A5D 100%);
    box-shadow: 4px 6px 20px 0 rgba(0, 0, 0, 0.50);
    color: #fff;
}

.nullcon-list {}

.nullcon-list li {
    list-style: none;
    margin-bottom: 16px;
}

.nullcon-list li:before {
    content: "";
    width: 9px;
    height: 8px;
    background-image: url(../img/square-blue.svg);
    background-size: cover;
    display: inline-block;
    margin-right: 8px;
    top: -2px;
    position: relative;
}

/* Event */
.event-side-head {
    margin-bottom: 24px;
}

.event-side-head img {
    width: 24px;
    margin-right: 10px;
}

.event-timeline {
    display: flex;
    width: 100%;
    justify-content: center;
    clear: both;

}

.event-time-left {
    flex: 0 0 auto;
    width: 49%;
    padding: 16px 0;
    padding-right: 56px;
    text-align: right;
}

.event-time-middle {
    display: flex;
    flex-flow: column;
    align-items: stretch;
    position: relative;
    width: 2px;
    background-image: var(--purple-gradient);
}

.event-time-right {
    flex: 0 0 auto;
    width: 49%;
    padding: 16px 0;
    padding-left: 56px;
}

.event-timeline:first-child {}

.event-timeline:first-child .event-time-middle:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-image: var(--purple-gradient);
    margin-left: -3px;
}

.event-timeline:last-child .event-time-middle:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-image: var(--purple-gradient);
    margin-left: -3px;
    position: absolute;
    bottom: 0;
}

.tl-item {}

.tl-date {
    font-size: 1rem;
    color: var(--color-grey);
    font-weight: 600;
    top: 6px;
}

.tl-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 12px;
}

.tl-countdown .timer-value {
    font-size: 0.75rem;
}

.tl-countdown .timer-caption {
    font-size: 0.75rem;
}

.tl-countdown .timer-item {
    margin: 0 4px;
}

.tl-countdown .timer-item:last-child {
    margin-right: 0;
}

.tl-capsule {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 12px;
    background-image: var(--dawn-gradient);
    border-radius: 4px;
    display: inline-block;
}

.event-time-left .tl-item:after,
.event-time-right .tl-item:before {
    content: "";
    width: 40px;
    height: 2px;
    background-image: var(--purple-gradient);
    display: block;
    position: absolute;
    right: -56px;
    top: 18px;
}

.event-time-right .tl-item:before {
    right: initial;
    left: -56px;
}

/* Sponsors */
.sponsor-wrap {
    width: 100%;
}

.sponsor-card {
    width: 100%;
    border-bottom: 1px solid var(--color-grey);
    margin-top: 32px;
}

.sponsor-card:last-child {
    border-bottom: none;
}

.sponsor-img {
    width: 60%;
    margin: 0 auto;
    position: relative;
    display: block;

}

.txt-capsule {
    background-color: var(--color-offwhite-3);
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 20px;
    display: inline-block;
    margin: 24px 0;
}

.txt-capsule-big {
    background-color: var(--color-offwhite-3);
    color: var(--color-nullcon-blue);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 30px;
    display: inline-block;
    margin: 24px 0;
}

/* Venue */
#gallery--getting-started {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: 1fr .5fr .5fr;
    position: relative;
    width: 100%;
}

#gallery--getting-started figure {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
}

#gallery--getting-started a {
    display: block;
    height: 100%;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
    width: 100%;
}



#gallery--getting-started figure:first-child {
    grid-row: span 2;
}

#gallery--getting-started figure img {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

/*Team*/
.team-card {
    width: 100%;
    min-height: 380px;
    height: auto;
}

/*For Media*/
.side-img {
    width: 300px;
    height: 300px;
    border: 6px solid var(--color-nullcon-blue);
    border-radius: 50%;
    overflow: hidden;
}

.side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
}

/* contact us */
.form-box {
    position: relative;
    margin-bottom: 2px;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    max-width: 31.25rem;
    margin: 0 auto;
}

.form-box-full {
    max-width: 100%;
}

.input-label {
    position: absolute;
    z-index: 5;
    top: 1rem;
    left: 1.5rem;
    color: #979797;
}

.title-sponsors {
    width: 300px;
    height: 300px;
}

.input-text {
    width: 100%;
    outline: none;
    background-color: var(--color-nullcon-blue-light);
    border: none;
    float: none;
    display: block;
    border-radius: 4px;
    font-size: 1.4rem;
    padding: 2.5rem 1.5rem 2.5rem;
    position: relative;
    z-index: 1;
}

.invalid-tip {
    font-size: 0.825rem;
    display: none;
    text-align: right;
    position: absolute;
    z-index: 10;
    left: 2.5rem;
    right: 2.5rem;
    bottom: 1rem;
    color: var(--color-nullcon-red);
}

.form-box-radio .invalid-tip {
    color: var(--color-nullcon-red);
    text-align: center;
    bottom: -0.5rem;
}

.input-textarea {
    font-size: 1.4rem;
    width: 100%;
    height: 11.25rem;
    padding: 2.5rem 1.5rem 2.5rem;
    display: block;
    border: none;
    color: var(--color-graphite-dark);
    background-color: var(--color-nullcon-blue-light);
}

/* Scholorship */

.white-td {
    background-color: #fff !important;
}

.small-banner-wrap {
    width: 100%;
    height: auto;
    background-image: linear-gradient(180deg, #F7E9E2 0%, #DADEF1 100%);
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: none;
    padding: 0 0 24px 0;
    transition: all .8s cubic-bezier(.23, 1, .32, 1);
    box-shadow: 27px 23px 107px -6px rgba(0, 0, 0, 0.32);
}

/* .small-banner-wrap:hover {
    box-shadow: 27px 23px 107px -6px rgba(0, 0, 0, 0.32);
    transform: scale(1.05);
} */

.small-banner {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.small-banner img {
    width: 100%;
}

/* For you */
.foryou-box {
    min-height: 350px;
    height: auto;
}

.foryou-box .package-img-overlay-1 {
    background: rgba(0, 0, 0, 0.50);
}

/* Archives */
.archive-box {
    display: block;
    position: relative;
    height: 200px;
    margin: 20px 0;
}

.archive-detail {
    display: flex;
    align-items: center;
}

.archive-banner-wrap {
    width: 100%;
    height: 200px;
    background-image: linear-gradient(180deg, #F7E9E2 0%, #DADEF1 100%);
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: none;
    transition: all .8s cubic-bezier(.23, 1, .32, 1);
}

.archive-banner-wrap:hover {
    box-shadow: 27px 23px 107px -6px rgba(0, 0, 0, 0.32);
    transform: scale(1.05);
}

.archive-banner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.archive-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    display: block;
    position: relative;
}

.archive-banner-wrap:after {
    content: "";
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    z-index: 1;
    background-color: #000;
}

.archive-txt {
    width: 100%;
    z-index: 1;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
}

/***************************/




.hidden {
    display: none !important
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit
}

.invisible {
    visibility: hidden
}

.clearfix:after,
.clearfix:before {
    content: " ";
    display: table
}

.clearfix:after {
    clear: both
}

.hr {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    color: black;
    text-align: center;
    height: 1.5em;
    opacity: 0.5;
}

.hr:before {
    content: "";
    background: linear-gradient(to right, transparent, #818078, transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}

.hr:after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    padding: 0 0.5em;
    line-height: 1.1em;
    color: #000000;
    background-color: #fcfcfa;
    font-size: 1.5rem;
    font-weight: 600;
  }

.bug-rules {
    padding-left: 50px !important;
}

.bug-rules li {
    margin-bottom: 8px !important;
}

.flowchart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step {
    display: flex;
    align-items: center;
}

@media print {

    *,
    :after,
    :before {
        background: 0 0 !important;
        color: #000 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important
    }

    a,
    a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: ""
    }

    pre {
        white-space: pre-wrap !important
    }

    blockquote,
    pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img,
    tr {
        page-break-inside: avoid
    }

    h2,
    h3,
    p {
        orphans: 3;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }
}


.fixed-anchors {
    position: fixed;
    top: 3.5rem
}


.floating-doc-btn {
    float: right;
    right: -2rem;
    display: flex;
    justify-content: center;
    top: 46vh;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 25px 0 0 25px;
    z-index: 99;
}


.floating-doc-btn button {
    padding: 0.8rem;
    border: none;
    background-color: transparent;
    clip-path: circle(40%);
    transition-duration: 0.5s;
}

.floating-doc-btn button:hover {
    background-color: var(--color-grey);
}

.floating-doc-btn button svg {
    transition: all 0.5s ease-in-out;
}

.open {
    transform: rotateY(180deg);
}

.training-doc h3 {
    text-align: center;
}

.training-doc {
    padding: 1rem;
    height: 100vh;
    position: relative;
    background-color: rgba(255, 255, 255, 1);
    float: right;
    right: -2rem;
    width: 0;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 20px 40px 30px;
    border-radius: 25px 0 0 25px;
    z-index: 99;
    overscroll-behavior: contain;
}

.training-doc ul {
    padding: 0.5rem;
    display: flex;
    height: 80%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    overflow-x: hidden;
    overflow-y: scroll;
    overscroll-behavior: contain
}


.training-doc ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    height: fit-content;
}

.training-doc ul li {
    display: flex;
    min-width: 70%;
    /* justify-content: flex-start; */
    font-size: 15px;
    gap: 1rem;
    font-weight: 300;
    padding: 0.4rem 0.8rem;
    transition: all 0.5s ease-in-out;
    border-radius: 25px;
}

.training-doc ul li a {
    /* display: flex; */
    text-align: start;
    color: black;
    text-decoration: none;
}

.training-doc ul li:hover {
    background-color: var(--color-grey);
}

.training-doc ul li a::before {
    content: " ";
    width: 16px;
    height: 16px;
    background-image: url(../img/chevrons-right.svg);
    background-size: cover;
    display: inline-block;
    margin-right: 8px;
    top: 3px;
    position: relative;
    z-index: 999;
}

.float-active {
    background-image: var(--blue-gradient);
}

.float-active a {
    color: white !important;
}

.floating-fixed {
    position: fixed;
}

.training-doc ul::-webkit-scrollbar {
    width: 10px;
    height: 80vh;
}

.training-doc ul::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 5px;
}

.training-doc ul::-webkit-scrollbar-thumb::after {
    content: "";
    padding: 2px;
    clip-path: circle(40%);
}