.custom-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: auto;
}
.btn-second {
    display: inline-flex;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 27px;
    padding: 0 22px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.57, 0.21, 0.69, 1.25);
    font-size: 18px;
    @include base.max-screen(767px) {
        padding: 0 35px;
        font-size: 16px;
        max-width: 100%;
    }
}
.btn-main-second {
    box-shadow: 0px 5px 0 0 #009357, inset 0px 3px 9px 0 rgba(91, 255, 157, 0.67);
    background-image: linear-gradient(-45deg, #00cd79, #009357);
    text-shadow: 0 0 5.6px #3c5b00;
    font-weight: 600;
    line-height: 1.11;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;

    &:hover {
        box-shadow: 0px 3px 0 0 #009357,
        inset 0px 3px 9px 0 rgba(91, 255, 157, 0.67);
        background-image: linear-gradient(0deg, #00cd79, #009357);
        transform: translateY(2px);
    }
}
.mt-2 { margin-top: 0.5rem; }   /* 8px */
.mt-3 { margin-top: 0.75rem; }  /* 12px */
.mt-6 { margin-top: 1.5rem; }   /* 24px */
.mt-10 { margin-top: 2.5rem; }  /* 40px */
@media (max-width: 767px) {
    .hidden-sm {display: none !important;}
}
@media (min-width: 768px) {
    .visible-sm {display: none !important;}
}



.hero {
    position: relative;
    min-height: 603px;
}
@media (max-width: 575px) {
    .hero {
        position: relative;
        min-height: 480px;
    }
}
.hero + .table-section {
    padding-top: 40px;
}
.hero .container {
    position: absolute;
    top: calc(50% - 35px);
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 575px) {
    .hero .container {
        top: calc(50% - 18px);
    }
}

.hero-bg,
.hero-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hero-bg video {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    height: 100%;
}
@media (max-width: 575px) {
    .hero-bg video {
        object-position: 27% center;
    }
}

.hero-img img {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    height: 100%;
}
@media (max-width: 575px) {
    .hero-img img {
        object-position: 27% center;
    }
}
@media (max-width: 767px) {
    .hero-img img.visible-lg {
        display: none;
    }
}
.hero-img img.hidden-lg {
    display: none;
}
@media (max-width: 767px) {
    .hero-img img.hidden-lg {
        display: block;
    }
}

.hero-content {
    max-width: 49.3%;
    width: 100%;
    padding: 15px;
    position: relative;
}
@media (max-width: 991px) {
    .hero-content {
        max-width: 100%;
    }
}

.hero-content__lights--vertical {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.hero-content__lights--horizontal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.hero-content__lights--horizontal::after,
.hero-content__lights--horizontal::before {
    height: 12px;
    width: calc(100% - 50px);
    content: "";
    position: absolute;
}

.hero-content__lights--vertical::after,
.hero-content__lights--vertical::before {
    width: 12px;
    height: 100%;
    content: "";
    position: absolute;
}

@keyframes lightsVertical {
    0% {
        background: url("../imgs/lights-v-off.png") repeat-y center top / 100% auto;
        opacity: 1;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        background: url("../imgs/lights-v.png") repeat-y center top / 100% auto;
        opacity: 1;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        background: url("../imgs/lights-v-off.png") repeat-y center top / 100% auto;
        opacity: 1;
    }
}

.hero-content__lights--vertical::before {
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
    animation: 2s lightsVertical infinite ease-in-out;
    background-size: 100% auto;
}
.hero-content__lights--vertical::after {
    top: 50%;
    transform: translateY(-50%);
    right: 2px;
    animation: 2s lightsVertical infinite ease-in-out;
    background-size: 100% auto;
}
@media (max-width: 575px) {
    .hero-content__lights--vertical::after {
        right: 1px;
    }
}

@keyframes lightsHorizontal {
    0% {
        background: url("../imgs/lights-h.png");
        background-position: center;
        background-repeat: repeat-x;
        background-size: auto 100%;
        opacity: 1;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        background: url("../imgs/lights-h-off.png");
        background-position: center;
        background-repeat: repeat-x;
        background-size: auto 100%;
        opacity: 1;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        background: url("../imgs/lights-h.png");
        background-position: center;
        background-repeat: repeat-x;
        background-size: auto 100%;
        opacity: 1;
    }
}

.hero-content__lights--horizontal::before {
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    animation: 2s lightsHorizontal infinite ease-in-out;
    background-size: auto 100%;
}
.hero-content__lights--horizontal::after {
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    animation: 2s lightsHorizontal infinite ease-in-out;
    background-size: auto 100%;
}
@media (max-width: 575px) {
    .hero-content__lights--horizontal::before,
    .hero-content__lights--horizontal::after {
        width: calc(100% - 45px);
    }
}

.hero-content__lights-holder {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-image: linear-gradient(
            to top,
            rgba(119, 0, 0, 1) 0%,
            rgba(119, 0, 0, 1) 1%,
            #340000 50%,
            rgba(119, 0, 0, 1) 100%
    );
    border: 4px solid transparent;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 0 1px #ffc090;
}
.hero-content__lights-holder::before {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    z-index: -5;
    margin: -5px;
    border-radius: 15px;
    background-image: linear-gradient(to top, #ec0000, #ff9393, #e20000, #ff0000, #ff5a5a);
}

.hero-content__body {
    position: relative;
    background-clip: padding-box;
    border: 4px solid transparent;
    border-radius: 10px;
    box-shadow: 0 0 0 1px #ffc090;
    z-index: 12;
}
.hero-content__body::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: -4px;
    border-radius: inherit;
    background-image: linear-gradient(to top, #ec0000, #ff9393, #e20000, #ff0000, #ff5a5a);
}
.hero-content__body .btn-holder {
    padding-top: 15px;
    position: relative;
    z-index: 12;
}
@media (max-width: 374px) {
    .hero-content__body .btn-holder .btn {
        font-size: 16px;
        width: 100%;
    }
}

.hero-content__body ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.hero-content__body ul li {
    text-shadow: 0.7px 1.9px 10px rgba(0, 0, 0, 0.67);
    font-size: 28.5px;
    font-weight: 500;
    line-height: 1.49;
    color: #ffffff;
    letter-spacing: -1.7px;
    padding-left: 27px;
    position: relative;
}
@media (max-width: 1399px) {
    .hero-content__body ul li {
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    .hero-content__body ul li {
        letter-spacing: -0.9px;
        font-size: 16px;
        padding-left: 21px;
        left: 1.69;
    }
}

.hero-content__body p {
    text-shadow: 0.7px 1.9px 10px rgba(0, 0, 0, 0.67);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.49;
    color: #ffffff;
    letter-spacing: -1.7px;
    position: relative;
}
.hero-content__body p a {
    color: #fff;
}

.hero-content__body ul li::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url("../imgs/checked.svg") no-repeat center / contain;
}
@media (max-width: 1399px) {
    .hero-content__body ul li::before {
        top: 8px;
        transform: none;
    }
}
@media (max-width: 575px) {
    .hero-content__body ul li::before {
        width: 14px;
        height: 14px;
        top: 5px;
    }
}

.hero-content__inner {
    padding: 30px 25px 40px;
    position: relative;
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(
            45deg,
            rgba(101, 1, 1, 1) 0%,
            rgba(146, 0, 0, 1) 49%,
            rgba(146, 0, 0, 1) 52%,
            rgba(101, 1, 1, 1) 100%
    );
}
@media (max-width: 575px) {
    .hero-content__inner {
        padding: 11px 20px 15px;
    }
}

.hero-title {
    text-shadow: none;
    filter: drop-shadow(0 1px 2px #000);
    background: linear-gradient(180deg, #feb68f 40%, #dc7d4f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #f9e8ca;
    font-size: 32.5px;
    text-transform: uppercase;
    letter-spacing: -2.3px;
    margin-bottom: 27px;
}
@media (max-width: 1399px) {
    .hero-title {
        font-size: 30px;
    }
}
@media (max-width: 575px) {
    .hero-title {
        line-height: 1;
        letter-spacing: -0.3px;
        margin-bottom: 21px;
    }
}
@media (max-width: 374px) {
    .hero-title {
        font-size: 25px;
    }
}

@media all and (-ms-high-contrast: none) {
    *::-ms-backdrop,
    .hero-title {
        background: transparent;
        color: #ffb891;
        text-shadow: 0 1px 2px #000;
    }
}

.hero-video {
    width: 80%;
    margin: 0 auto 30px;
    border-radius: 10px;
}

.wistia_embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.wistia_embed::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: -5px;
    border-radius: inherit;
    background-image: linear-gradient(-45deg, #b37118, #eee27f);
}
.wistia_embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.intro {
    background: #1b2941;
    padding: 35px 0 71px;
}
@media (max-width: 575px) {
    .intro {
        padding: 23px 0;
    }
}

.intro-content {
    border-radius: 20px;
    box-shadow: 0 0 27px 8.1px rgba(0, 0, 0, 0.3);
    background-color: #21314d;
    text-align: center;
    padding: 55px 70px 50px;
    position: relative;
    z-index: 3;
}
@media (max-width: 575px) {
    .intro-content {
        padding: 31px 20px 20px;
    }
}

.intro-content .section-header {
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .intro-content .section-header {
        margin-bottom: 10px;
    }
}

.intro-content .section-header p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 575px) {
    .intro-content .section-header p {
        font-size: 15px;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }
}

.intro-content .section-header p a {
    color: #00cd79;
}

.intro-content .section-title {
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 29px;
}
@media (max-width: 575px) {
    .intro-content .section-title {
        font-size: 18px;
        letter-spacing: -0.3px;
        margin-bottom: 17px;
    }
}

.intro-content__body h3 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 29px;
}
@media (max-width: 575px) {
    .intro-content__body h3 {
        font-size: 16px;
        margin-bottom: 18px;
        letter-spacing: -1px;
    }
}

.intro-content__items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.intro-content__items .item {
    border-radius: 29px;
    background-color: #1b2941;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 18px 0 16px;
    margin: 0 13px;
}
@media (max-width: 1199px) {
    .intro-content__items .item {
        margin: 0 5px;
    }
}
@media (max-width: 991px) {
    .intro-content__items .item {
        margin-bottom: 10px;
    }
}
@media (max-width: 575px) {
    .intro-content__items .item {
        height: 44px;
    }
}

.intro-content__items .item img {
    max-width: 38px;
    margin-right: 10px;
}
@media (max-width: 1199px) {
    .intro-content__items .item img {
        max-width: 30px;
    }
}
@media (max-width: 575px) {
    .intro-content__items .item img {
        margin-right: 5px;
    }
}

.intro-content__items .item span {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}
@media (max-width: 1199px) {
    .intro-content__items .item span {
        font-size: 16px;
    }
}
@media (max-width: 575px) {
    .intro-content__items .item span {
        font-size: 15px;
        letter-spacing: -0.3px;
    }
}
.table-section {
    background: #1b2941;
    padding-bottom: 80px;
}
@media (max-width: 575px) {
    .table-section {
        padding-bottom: 2px;
    }
}

.table-section .section-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    letter-spacing: -1.7px;
    margin-bottom: 23px;
}
@media (max-width: 991px) {
    .table-section .section-title {
        font-size: 22px;
        letter-spacing: -1.3px;
    }
}
@media (max-width: 575px) {
    .table-section .section-title {
        font-size: 20px;
        align-items: flex-start;
    }
}

.table-section .section-title img {
    max-width: 38px;
    margin-right: 10px;
}
@media (max-width: 991px) {
    .table-section .section-title img {
        max-width: 26px;
    }
}
@media (max-width: 575px) {
    .table-section .section-title img {
        max-width: 20px;
    }
}

.table-content {
    box-shadow: 0 0 27px 8.1px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
}
@media (max-width: 991px) {
    .table-content {
        max-width: 440px;
        margin: 0 auto;
        border: none;
        border-radius: 0;
        box-shadow: none;
        overflow: unset;
        text-align: center;
    }
}

.table-header {
    background-color: #2a3d5e;
    display: flex;
}
@media (max-width: 991px) {
    .table-header {
        display: none;
    }
}

.table-header .table-cell {
    height: 85px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.table-header .table-cell span {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.9px;
}
@media (max-width: 1199px) {
    .table-header .table-cell span {
        font-size: 14px;
    }
}

.table-row__body,
.table-header__body {
    display: flex;
    max-width: 45.4%;
    flex: 45.4%;
}
@media (max-width: 991px) {
    .table-row__body,
    .table-header__body {
        display: block;
        max-width: 100%;
    }
}

.table-row__footer,
.table-header__footer {
    display: flex;
    max-width: 40.7%;
    flex: 40.7%;
}
@media (max-width: 991px) {
    .table-row__footer,
    .table-header__footer {
        display: block;
        max-width: 100%;
    }
}

.table-row__header,
.table-header__head {
    max-width: 13.8%;
    flex: 0 0 13.8%;
}

.table-cell__score {
    max-width: 15.6%;
    flex: 0 0 15.6%;
}
@media (max-width: 991px) {
    .table-cell__score {
        max-width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .table-row__header {
        max-width: 100%;
    }
}

.score-label {
    display: none;
    text-transform: uppercase;
}
@media (max-width: 991px) {
    .score-label {
        display: inline-block;
    }
}

.ticket-label {
    display: none;
    text-transform: uppercase;
    font-size: 18px;
    color: #00cd79;
    letter-spacing: -1.4px;
    margin-bottom: 8px;
}
@media (max-width: 991px) {
    .ticket-label {
        display: block;
    }
}

.table-cell__bonus {
    max-width: 46%;
    flex: 0 0 46%;
}

.table-cell__code {
    max-width: 38.4%;
    flex: 0 0 38.4%;
}
@media (max-width: 991px) {
    .table-cell__code {
        max-width: 100%;
    }
}

.table-cell__features {
    max-width: 60.3%;
    flex: 0 0 60.3%;
}
@media (max-width: 991px) {
    .table-cell__features {
        max-width: 100%;
        margin-bottom: 14px;
        padding-left: 10px;
    }
}

.table-cell__link {
    max-width: 39.7%;
    flex: 0 0 39.7%;
}
@media (max-width: 991px) {
    .table-cell__link {
        max-width: 100%;
        padding: 0 20px 25px;
    }
}

@media (max-width: 1199px) {
    .table-cell__link .btn {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .table-cell__link .btn {
        width: 100%;
        font-size: 18px;
    }
}

.table-row {
    display: flex;
    min-height: 101px;
}

.table-cell {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .table-row {
        display: block;
        margin-bottom: 20px;
        box-shadow: 0 0 27px 8.1px rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        overflow: hidden;
    }
}

.table-row:not(:last-of-type) {
    border-bottom: 1px solid #3d5580;
}
@media (max-width: 991px) {
    .table-row:not(:last-of-type) {
        border: none;
    }
}

.table-row .table-cell {
    border-right: 1px solid #3d5580;
}
@media (max-width: 991px) {
    .table-row .table-cell {
        border: none;
        width: 100%;
    }
}

.table-row__footer .table-cell:last-of-type {
    border: none;
}

.table-row .table-cell__title {
    padding-left: 30px;
    position: relative;
}
@media (max-width: 991px) {
    .table-row .table-cell__title {
        padding-left: 0;
        min-height: 227px;
        margin-bottom: 20px;
    }
}

.table-row .table-cell__title:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 38px 38px 0 0;
    border-color: #00cd79 transparent transparent transparent;
    top: 0;
    left: 0;
    z-index: 22;
}
@media (max-width: 991px) {
    .table-row .table-cell__title:before {
        border-width: 68px 68px 0 0;
    }
}

.table-row .table-cell__title .casino-number {
    position: absolute;
    top: 1px;
    left: 6px;
    text-shadow: 0 0 3.8px #3c5b00;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    z-index: 23;
}
@media (max-width: 991px) {
    .table-row .table-cell__title .casino-number {
        top: 9px;
        left: 18px;
        font-size: 19px;
    }
}

.table-row .table-cell__title span > img {
    max-width: 100%;
    max-height: 76px;
    max-width: 80px;
    position: relative;
    z-index: 11;
}
@media (max-width: 991px) {
    .table-row .table-cell__title span > img {
        max-height: 150px;
        max-width: 200px;
        filter: drop-shadow(0px 0px 22.4px #000000)
        drop-shadow(0px 0px 22.4px #000000);
    }
}

.table-row .table-cell__score span {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.table-row .table-cell__bonus {
    padding: 0 20px 0 25px;
    justify-content: flex-start;
}
@media (max-width: 991px) {
    .table-row .table-cell__bonus {
        max-width: 100%;
        margin-bottom: 12px;
    }
}

.table-row .table-cell__bonus span {
    font-size: 15.5px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -1.1px;
}
@media (max-width: 1199px) {
    .table-row .table-cell__bonus span {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .table-row .table-cell__bonus span {
        font-size: 18px;
    }
}

.table-row .table-cell__bonus span em {
    font-style: normal;
    color: #00cd79;
}

.table-row .table-cell__bonus span br {
    display: none;
}
@media (max-width: 767px) {
    .table-row .table-cell__bonus span br {
        display: block;
    }
}

.table-row .table-cell__features {
    justify-content: flex-start;
}

@media (max-width: 991px) {
    .table-cell__bonus > span {
        width: 100%;
    }
}

.table-cell__bg {
    display: none;
}
@media (max-width: 991px) {
    .table-cell__bg {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 991px) {
    .table-cell__bg img {
        display: block;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        object-position: center;
        max-width: 100%;
        height: 100%;
    }
}

.table-cell__features ul {
    list-style-type: none;
    padding: 0 0 0 12px;
    margin: 0;
}

.table-cell__features ul li {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 21px;
    letter-spacing: -0.9px;
}
@media (max-width: 1299px) {
    .table-cell__features ul li {
        font-size: 14px;
    }
}
@media (max-width: 1199px) {
    .table-cell__features ul li {
        font-size: 12px;
    }
}
@media (max-width: 991px) {
    .table-cell__features ul li {
        font-size: 14px;
        text-align: left;
    }
}

.table-cell__features ul li:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 10px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../imgs/check.png") no-repeat
    center / contain;
}

.ticket {
    background: url("../imgs/ticket.png") no-repeat
    center / contain;
    display: block;
    width: 167px;
    height: 67px;
    padding-right: 35px;
}
@media (max-width: 1199px) {
    .ticket {
        width: 150px;
    }
}
@media (max-width: 991px) {
    .ticket {
        width: 218px;
        height: 91px;
        margin-bottom: 10px;
    }
}

.ticket-content {
    display: block;
    text-align: center;
    height: 100%;
    padding: 9px 10px;
}
@media (max-width: 991px) {
    .ticket-content {
        padding-top: 24px;
    }
}

.ticket-code {
    font-size: 14px;
    line-height: 0.94;
    color: #1b2941;
    letter-spacing: -0.9px;
}
@media (max-width: 1199px) {
    .ticket-code {
        font-size: 13px;
    }
}
@media (max-width: 991px) {
    .ticket-code {
        font-size: 18px;
    }
}

.ticket-content small {
    font-size: 12px;
    color: rgba(26, 39, 62, 0.7);
    letter-spacing: -0.9px;
    display: block;
    max-width: 90%;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .ticket-content small {
        font-size: 13px;
        max-width: 80%;
        display: block;
        margin: 0 auto;
    }
    .white-bg-mobile {
        background-color: rgba(250, 250, 250, 1);
        border-radius: 10px;
        padding: 0 10px;
    }
}
.tiles.light {
    background-color: #23334e;
}
.tiles {
    background-color: #1b2941;
    padding-top: 73px;
    padding-bottom: 80px;
}
@media (max-width: 991px) {
    .tiles {
        padding-top: 25px;
        padding-bottom: 45px;
    }
}

.tiles.dark-bg {
    background: #1b2941;
}

.tiles .section-header {
    text-align: center;
    margin-bottom: 59px;
}
@media (max-width: 991px) {
    .tiles .section-header {
        margin-bottom: 20px;
    }
}

.tiles .section-title {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 11px;
}
@media (max-width: 991px) {
    .tiles .section-title {
        font-size: 28px;
        letter-spacing: -1.2px;
        margin-bottom: 13px;
    }
}
@media (max-width: 767px) {
    .tiles .section-title {
        font-size: 22px;
    }
}

.tiles .section-header p {
    font-size: 24px;
    line-height: 1.33;
    color: #ffffff;
    letter-spacing: -1.3px;
}
@media (max-width: 1199px) {
    .tiles .section-header p {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .tiles .section-header p {
        font-size: 16px;
        max-width: 76%;
        margin: 0 auto;
    }
}
@media (max-width: 575px) {
    .tiles .section-header p {
        max-width: 100%;
    }
}

.tiles .section-header p a {
    color: #00cd79;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .tiles .col-3 {
        padding: 0 8.5px;
        padding-bottom: 14px;
        width: auto;
    }
}
@media (max-width: 575px) {
    .tiles .col-3 {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.tiles-holder {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .tiles-holder.row {
        display: flex;
    }
}
@media (max-width: 991px) {
    .tiles-holder.row {
        margin: 0 -8.5px;
        margin-bottom: 20px;
    }
}
@media (max-width: 575px) {
    .tiles-holder.row {
        margin-left: -15px;
        width: 100vw;
    }
}

@media (max-width: 991px) {
    .tiles-holder .slick-list {
        padding: 14px 0;
    }
}

.tiles-slider .slick-list {
    width: 100%;
}

.tile {
    position: relative;
    background-clip: padding-box;
    border-radius: 20px;
    padding-top: 72%;
    background: linear-gradient(to top, #a36a17, #e4da84);
    box-shadow: 5px 7px 16px #000;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .tile {
        margin-bottom: 7px;
    }
}
@media (max-width: 575px) {
    .tile {
        border-radius: 15px;
    }
}

.tile a {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border-radius: 15px;
    display: block;
}
@media (max-width: 575px) {
    .tile a {
        border-radius: 12px;
    }
}

.tile-img {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border-radius: inherit;
    overflow: hidden;
}
@media (max-width: 575px) {
    .tile-img {
        top: 3px;
        right: 3px;
        bottom: 3px;
        left: 3px;
    }
}

.tile-img img {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    height: 100%;
}

.tile-title {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translateX(-50%);
    display: inline-flex;
    text-shadow: 0.7px 1.9px 5.9px #000000;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    height: 46px;
    padding: 0 17px;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    border: 3px solid transparent;
    border-radius: 10px;
    background-clip: border-box;
    letter-spacing: -1.7px;
}
@media (max-width: 575px) {
    .tile-title {
        font-size: 20px;
    }
}
@media (max-width: 374px) {
    .tile-title {
        font-size: 12px;
        height: 34px;
    }
}

.tile-title > span {
    position: relative;
    z-index: 3;
}

.tile-title:before {
    position: absolute;
    content: "";
    border-radius: 10px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    background: #2c2e41;
    border-radius: 8px;
    z-index: 0;
}

.tile-title:after {
    position: absolute;
    content: "";
    border-radius: 10px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: -3px;
    background-image: linear-gradient(to top, #a26916, #e5db85);
    border-radius: 10px;
    z-index: -1;
}

@media all and (-ms-high-contrast: none) {
    *::-ms-backdrop,
    .tile-title {
        min-width: 250px;
    }
}

.tiles .btn-holder {
    text-align: center;
}

.tiles .btn-holder .btn {
    padding: 0 32px;
}

.info-section {
    background: #111b2d;
    position: relative;
    padding-top: 75px;
    padding-bottom: 104px;
}
@media (max-width: 767px) {
    .info-section {
        padding-top: 35px;
        padding-bottom: 40px;
    }
}

.info-section .row {
    align-items: center;
}

.info-section .row .info-content {
    padding: 0 15px;
}

.info-content__img,
.info-content__video {
    padding: 0 15px;
    max-width: 50%;
    flex: 0 0 50%;
}

.info-content__img {
    text-align: center;
}

.info-content__img img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 500px;
}

.info-content__video video {
    border-radius: 20px;
    width: 100%;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .info-content__img,
    .info-content__video {
        margin-top: 20px;
        padding: 0 5px;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .info-content__img {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .info-body .btn-holder {
        text-align: center;
    }
}

@media screen and (max-width: 575px) {
    .info-content__video video {
        border-radius: 0;
    }
}

.info-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
@media (max-width: 767px) {
    .info-img {
        position: static;
        margin-bottom: 25px;
    }
}

.info-img img {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    height: 100%;
}

.info-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
@media (max-width: 991px) {
    .info-content {
        max-width: 75%;
    }
}
@media (max-width: 767px) {
    .info-content {
        max-width: 100%;
    }
}

.info-section--alt {
    position: relative;
}

.info-section--right-align .info-content {
    margin-left: auto;
    order: 2;
}

.info-section--alt:before {
    position: absolute;
    content: "";
    height: 4px;
    width: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #cca144, #eee27f);
    z-index: 2;
}

.info-section--alt:after {
    position: absolute;
    content: "";
    height: 4px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to right, #b37118, #d5b253);
    z-index: 2;
}

.info-section--alt .info-content {
    max-width: 60%;
}
@media (max-width: 767px) {
    .info-section--alt .info-content {
        max-width: 100%;
    }
}

.info-section .section-header {
    margin-bottom: 27px;
}

.info-section .section-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -1.8px;
}
@media (max-width: 575px) {
    .info-section .section-title {
        font-size: 20px;
        margin-bottom: 12px;
        letter-spacing: -1.1px;
    }
}

.info-section .section-header p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .info-section .section-header p {
        font-size: 16px;
    }
}

.info-body h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.56;
    color: #00cd79;
    text-transform: uppercase;
    letter-spacing: -1.2px;
    margin-bottom: 9px;
    margin-top: 13px;
}

.info-body .btn-holder {
    padding-top: 20px;
    padding-bottom: 10px;
}

.info-body ul {
    padding: 0;
    list-style-type: none;
    margin: 10px 0 20px;
}

.info-body ul li {
    font-size: 18px;
    line-height: 1.56;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 20px;
    letter-spacing: -1px;
    position: relative;
}

.info-body ul li em {
    color: #fff;
    font-style: normal;
}

.info-body ul li:before {
    position: absolute;
    content: "";
    top: 12px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background: #00cd79;
}

.info-body p {
    color: #fff;
}

.info-body p:last-of-type {
    margin-bottom: 0;
}

.list-spaced li:not(:last-of-type) {
    margin-bottom: 28px;
}

.faq {
    background: #23334e;
    padding-top: 73px;
    padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
    .faq {
        padding-top: 26px;
        padding-bottom: 26px;
    }
}

.faq .section-header {
    margin-bottom: 7px;
}

.faq .section-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -1.46px;
    margin-bottom: 28px;
}

@media screen and (max-width: 767px) {
    .faq .section-title {
        font-size: 18px;
        letter-spacing: 0.14px;
        margin-bottom: 7px;
        line-height: 1.3;
    }
}

.faq .section-header p {
    font-size: 18px;
    line-height: 1.56;
    color: #ffffff;
    letter-spacing: -0.93px;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .faq .section-header p {
        font-size: 16px;
    }
}

.accordion {
    list-style: none;
    padding: 0;
}

.accordion-item__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    padding: 24px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    letter-spacing: -0.9px;
    cursor: pointer;
}

.accordion-item__toggle.active {
    border-bottom: 1px solid transparent;
}

@media screen and (max-width: 767px) {
    .accordion-item__toggle {
        font-size: 16px;
        padding: 20px 0;
    }
}

.accordion-item__toggle img {
    width: 16px;
    transform: rotateX(0deg);
    transition: all 0.2s ease-in-out;
    height: auto;
}

.accordion-item__toggle.active img {
    transform: rotateX(180deg);
}

.accordion-item__inner {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease;
}

.accordion-item__inner p, .accordion-item__inner li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: -0.9px;
    line-height: 1.6;
}

.accordion-item__inner ul {
    list-style: disc;
    padding-left: 30px;
}