html, body {
    margin: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}

h1 {
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 96px;
    line-height: 96px;
    letter-spacing: 0;
    font-weight: bold;
    color: #22334D;
}

h2 {
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 64px;
    line-height: 64px;
    letter-spacing: 0;
    font-weight: bold;
    color: #22334D;
}

h3 {
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: 0;
    font-weight: normal;
}

h3.bold {
    font-weight: bold;
}

h4 {
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: normal;
}

h4.bold {
    font-weight: bold;
}

p {
    margin: 0;
}

div, p, a, input {
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: normal;
    text-decoration: none;
    color: #1E1E1E;
}
a:hover {
    color: #22334D;
}


div.p2, p.p2, a.p2 {
    font-size: 14px;
    line-height: 24px;
}

div.bold, p.bold, a.bold, input.bold, span.bold {
    font-weight: bold;
}

input, button {
    outline: none;
    border: none;
    background-image: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

::placeholder {
    color: #1E1E1E;
    opacity: 1;
}

/*buttons*/

.button-shaped {
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 60px;
    padding-right: 35px;
    height: 67px;
    background-repeat: no-repeat;
    background-image: url("../assets/shaped-button-bg.svg");
    font-weight: bold;
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0;
    color: white;
    text-decoration: none;
}

.button-shaped:hover {
    background-image: url("../assets/shaped-button-bg-hover.svg");
    color: white;
}

.button-shaped.reverse {
    padding-left: 30px;
    padding-right: 60px;
    background-image: url("../assets/shaped-button-bg-reverse.svg");
}

.button-shaped.reverse:hover {
    background-image: url("../assets/shaped-button-bg-reverse-hover.svg");
}


.button-shaped img {
    margin-right: 24px;
}

.button-with-icon {
    display: block;
    position: relative;
    width: 67px;
    height: 67px;
    border-radius: 14px;
    background-color: #29A181;
}

.button-with-icon.orange {
    background-color: #E95722;
}

.button-with-icon.white {
    background-color: #FFFFFF;
}

.button-with-icon:hover {
    background-color: #22334D;
}

.button-with-icon img.icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


.button-regular {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    height: 67px;
    border-radius: 14px;
    background-color: #29A181;
    font-weight: bold;
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0;
    color: white;
    text-decoration: none;
}

.button-regular.red {
    background-color: #EE4503;
}

.button-regular.white {
    background-color: #FFFFFF;
}

.button-regular:hover {
    background-color: #232F51;
    color: white;
}

.button-regular.small {
    padding-left: 18px;
    padding-right: 18px;
    height: 47px;
}

.button-regular img {
    margin-right: 24px;
    width: 20px;
    height: 20px;
    object-position: center;
    object-fit: contain;
}


/*end - buttons*/

ul {
    margin: 0;
    padding: 0;
}

div, a, p, h1, h2, h3, h4, h5, h6 {
    box-sizing: border-box;
}

.hidden-mobile {
    display: block;
}

.visible-mobile {
    display: none !important;
}

.header {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky-header + .page-content {
    padding-top: 96px;
}


.header-wrapper {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-position: center;
    background-size: cover;
    position: relative;
}

.content-wrapper {
    padding-left: 120px;
    padding-right: 120px;
}

.separator {
    width: calc(100% - 240px);
    height: 1px;
    background: #D9D9D9;
    margin: auto;
}

.content-wrapper.full-page {
    padding: 0;
}

.header-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header .logo-link {
    display: block;
    position: relative;
    height: 95px;
    width: auto;
}

.header .logo-link img.logo {
    position: relative;
    width: auto;
    height: 95px;
    object-position: center;
    object-fit: cover;
}

.menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    height: 96px;
    box-shadow: 0 4px 30px 0 rgb(35 47 81 / 8%)
}

.menu-wrapper .logo-wrapper {
    visibility: hidden;
    opacity: 0;
    transition: opacity .15s ease-in;
}

.menu-wrapper.sticky .logo-wrapper {
    visibility: visible;
    opacity: 1;
}


.menu-logo-link {
    display: block;
    position: relative;
    height: 57px;
    width: auto;
}

.menu-logo-link img.logo {
    position: relative;
    width: auto;
    height: 100%;
    object-position: center;
    object-fit: cover;
}


.menu-buttons-container {
    display: flex;
    align-items: center;
    justify-content: center;
}


ul.menu-items {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    flex: 1;
}

li.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: bold;
    margin-left: 12px;
    margin-right: 12px;
    padding-right: 22px;
    cursor: pointer;
    color: #22334D;
}

li.menu-item:after {
    content: "";
    display: block;
    background-image: url("../assets/menu-dropdown-icon.svg");
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 11px;
    height: 12px;
}

li.menu-item:hover {
    color: #E95722;
}

li.menu-item:hover:after {
    background-image: url("../assets/menu-dropdown-icon-up.svg");
}

li.menu-item:first-child {
    margin-left: 0;
}

li.menu-item:last-child {
    margin-right: 0;
}

li.menu-item .sub-menu-wrapper {
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    left: -15px;
    padding-top: 5px;
    min-width: calc(100% + 15px);
}

li.menu-item .sub-menu-items {
    position: relative;
    background: white;
    padding: 24px 15px 15px;
    box-shadow: 0 4px 30px 0 rgb(35 47 81 / 8%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: none;
    color: #E95722;
    list-style-type: none;
    min-width: 100%;
}


li.menu-item .sub-menu-items .sub-menu-item {
    white-space: nowrap;
    margin-bottom: 16px;
    line-height: 13px;
}

li.menu-item .sub-menu-items .sub-menu-item:last-child {
    margin-bottom: 0;
}


li.menu-item .sub-menu-items .sub-menu-item a {
    font-family: "franklin-gothic-urw", sans-serif;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: bold;
    color: #E95722;
}


.search-icon {
    width: 24px;
    height: 24px;
    object-position: center;
    object-fit: contain;
    margin-left: 32px;
    margin-right: 32px;
    display: none;
}


@media only screen and (max-width: 1700px) {
    .content-wrapper {
        padding-left: 50px;
        padding-right: 50px;
    }

    .separator {
        width: calc(100% - 100px);
    }

    .content-wrapper.full-page {
        padding: 0;
    }

    .button-with-icon {
        width: 57px;
        height: 57px;
    }

    .button-regular {
        height: 57px;
        font-size: 14px;
        line-height: 24px;
    }


    h1 {
        font-size: 66px;
        line-height: 66px;
    }

    h2 {
        font-size: 50px;
        line-height: 50px;
    }

    h3 {
        font-size: 26px;
        line-height: 26px;
    }

    h4 {
        font-size: 20px;
        line-height: 24px;
    }

    div, p, a, input {
        font-size: 16px;
        line-height: 26px;
    }

    div.p2, p.p2, a.p2 {
        font-size: 12px;
        line-height: 20px;
    }

    li.menu-item {
        font-size: 14px;
        line-height: 16px;
    }

    li.menu-item .sub-menu-items .sub-menu-item a {
        font-size: 12px;
        line-height: 16px;
    }

}

@media only screen and (min-width: 993px) {
    li.menu-item:hover .sub-menu-items {
        display: block;
    }
}

@media only screen and (max-width: 992px) {

    .hidden-mobile {
        display: none !important;
    }

    .visible-mobile {
        display: block !important;
    }

    .button-with-icon {
        width: 57px;
        height: 57px;
    }

    .button-regular {
        height: 57px;
        font-size: 14px;
        line-height: 24px;
    }

    .button-shaped {
        height: 56px;
        font-size: 14px;
        line-height: 34px;
    }

    h1 {
        font-size: 40px;
        line-height: 46px;
    }

    h2 {
        font-size: 32px;
        line-height: 32px;
    }

    h3 {
        font-size: 24px;
        line-height: 34px;
    }

    h4 {
        font-size: 20px;
        line-height: 30px;
    }

    div, p, a, input {
        font-size: 16px;
        line-height: 26px;
    }

    div.p2, p.p2, a.p2 {
        font-size: 12px;
        line-height: 20px;
    }


    .content-wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }

    .separator {
        width: calc(100% - 48px);
    }

    .content-wrapper.full-page {
        padding: 0;
    }

    .header-wrapper {
        display: none;
    }

    .menu-wrapper {
        justify-content: space-between;
        position: fixed;
        top: 0;
        width: 100%;
    }

    .menu-wrapper .logo-wrapper {
        visibility: visible;
        opacity: 1;
    }

    .page-content {
        padding-top: 96px;
    }


    .menu-wrapper .logo-wrapper {
        visibility: visible;
        opacity: 1;
    }

    .menu-logo-link {
        height: 44px;
    }

    ul.menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: calc(100vh - 96px);
        background-color: #E95722;
        overflow-y: scroll;
        padding: 100px 67px 67px;
    }

    .menu-wrapper.active ul.menu-items {
        display: block;
    }

    .lang-selector {
        display: none;
    }

    .search-icon {
        display: none;
    }

    .mobile-ticket-button {
        height: 47px;
    }

    .mobile-buttons-container {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .menu-wrapper .menu-toggle img {
        width: 32px;
        height: 32px;
        object-position: center;
        object-fit: contain;
        margin-left: 20px;
    }

    .menu-wrapper .menu-toggle img.expand {
        display: block;
    }

    .menu-wrapper .menu-toggle img.collapse {
        display: none;
    }

    .menu-wrapper.active .menu-toggle img.expand {
        display: none;
    }

    .menu-wrapper.active .menu-toggle img.collapse {
        display: block;
    }

    .menu-mobile-title {
        color: white;
        padding-bottom: 24px;
        border-bottom: 1px solid white;
        margin-bottom: 10px;
    }

    li.menu-item {
        display: block;
        margin: 0;
        padding: 0;
        color: white;
        margin-top: 32px;
    }

    li.menu-item:after {
        background-image: url("../assets/menu-dropdown-icon-white.svg");
        top: 3px;transform: translateY(0);
    }

    li.menu-item:hover {
        color: #FFFFFF;
    }

    li.menu-item:hover:after {
        background-image: url("../assets/menu-dropdown-icon-white.svg");
    }

    li.menu-item.direct a {
        color: white;
        font-weight: bold;
        display: block;
        width: 100%;
    }

    li.menu-item.direct:after {
        transform: translateY(0) rotate(-90deg);
        top: 4px;
    }

    li.menu-item.direct:hover:after {
        background-image: url("../assets/menu-dropdown-icon-white.svg");
    }

    li.menu-item .sub-menu-wrapper {
        position: relative;
        bottom: 0;
        left: 0;
        transform: translateY(0);
        min-width: unset;
        padding-top: 0;
    }

    li.menu-item .sub-menu-items {
        position: relative;
        padding: 0;
        color: #FFFFFF;
        display: none;
        list-style-type: none;
        background: none;
        border-radius: unset;
        box-shadow: unset;
    }

    li.menu-item.active .sub-menu-items {
        display: block;
    }


    li.menu-item .sub-menu-items .sub-menu-item {
        margin-bottom: 0;
        margin-top: 24px;
    }


    li.menu-item .sub-menu-items .sub-menu-item a {
        font-weight: normal;
        color: #FFFFFF;
    }

    .mobile-menu-social-icons {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        margin-top: 50px;
    }

    .mobile-menu-social-icons .social-icon {
        margin-right: 24px;
    }

    .mobile-menu-social-icons .social-icon:last-child {
        margin-right: 0;
    }
}


.no-top-padding {
    padding-top: 0 !important;
}

.no-bottom-padding {
    padding-bottom: 0 !important;
}

.video-js {
    position: relative !important;
    width: 100% !important;
    padding-top: 50% !important;
    height: auto !important;
    border-radius: 14px;
    overflow: hidden;
}

.vjs-poster {
    position: absolute !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.vjs-poster img {
    object-fit: cover !important;
}

.vjs-control-bar {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.video-js .vjs-time-control {
    color: white;
}

.video-js .vjs-picture-in-picture-control {
    color: white;
}

.video-js .vjs-picture-in-picture-control:hover {
    color: green;
}

.video-js .vjs-fullscreen-control {
    color: white;
}

.video-js .vjs-fullscreen-control:hover {
    color: green;
}

.menu-buttons-container.hidden-mobile .button-shaped {
    margin-left: 32px;
}