/* Header */
.header-container{
    position: sticky;
    top: 0;
    background-color: var(--White);
    z-index: 99999;
}

.header {
    padding: 32px 30px 25px 30px;
    justify-content: space-between;
    background-color: var(--White);
}

@media screen and (max-width: 1279px) {
    .header__desktop-menus,
    .header__desktop-menus-visit-demo-site-btn {
        display: none;
    }

    .support-all__image--main {
        padding: 0px;
    }

    .support-all__image--main-odds {
        padding: 30px 0px;
    }
    
    .support-all__image{
        display: flex;
        justify-content: flex-end;
    }

    .support-all__image--main-crypto,
    .support-all__image--main-languages{
        max-width: 230px;
    }

    .build-sb__card-logo-desktop{
        display: none;
    }

    .winning__card:last-child{
        margin-bottom: 0px;
    }

    .solutions__card:last-child {
        margin-bottom: 80px;
    }

    .global-market__card-info{
        margin-top: 80px;
    }
}

/* Navigation Dropdown */
.nav__mobile {
    background-color: var(--White);
    position: fixed;
    padding: 32px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
    z-index: 99999;
    box-shadow: 0px 0.482px 1.06px -0.917px rgba(0, 0, 0, 0.08),
        0px 1.831px 4.028px -1.833px rgba(0, 0, 0, 0.08),
        0px 8px 17.6px -2.75px rgba(0, 0, 0, 0.07);
    overflow-y: auto;
    max-height: 80vh;
}

.nav__mobile .text {
    color: var(--Gray);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 14px;
}

.nav__mobile-solutions {
    display: flex;
    padding: 10px 14px;
    gap: 10px;
}

.nav__mobile-solutions-text.active {
    color: var(--Blue) !important;
}

.nav__mobile-solutions-text {
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
}

.nav__visit-demo-site-btn {
    background-color: var(--Blue);
    color: var(--White);
    min-width: 195px;
    width: fit-content;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.1px;
    box-shadow: 0px;
    border: 0px;
    border-radius: 10px;
}

.nav__mobile-solutions-expanded {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.nav__mobile-solutions-expanded-title {
    color: var(--Black);
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid var(--Blue);
}

.nav__mobile-solutions-expanded-label {
    color: var(--Gray);
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 600;
}

/* Landing Page Hero */
.hero {
    position: relative;
    margin-bottom: 80px;
}

.hero__bg-content {
    padding-top: 100px;
    padding-bottom: 80px;
    background-image: radial-gradient(
            ellipse farthest-corner,
            transparent,
            transparent,
            white
        ),
        url("../images/landing-page-hero-bg.svg");
    background-position: 50% 15%;
    background-repeat: no-repeat;
}

.hero__main-text {
    padding: 0px 32px;
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    text-shadow: 8px 12px 24px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.hero__main-text-alt--color {
    color: var(--Blue);
}

.hero__sub-text {
    padding: 0px 32px;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
    color: var(--Gray);
}

.hero__image-overlay-container--mobile {
    position: relative;
    height: 315px;
    overflow: hidden;
    width: 100vw;
}

.hero__image-overlay-container--mobile img {
    position: absolute;
    max-width: none;
}

.hero__image-overlay-container--mobile > .ipad-image {
    left: 10%;
    width: 478px;
    height: 315px;
}

.hero__image-overlay-container--mobile > .asian-layout-image {
    top: 39px;
    left: 20%;
    width: 421px;
    height: 237px;
}

.hero__image-overlay-container--desktop {
    display: none;
}

/* Logo Carousel */
.logocarousel {
    margin-bottom: 108px;
    overflow: hidden;
}

.logocarousel__banner {
    width: 2277px;
    font-size: 0;
}

.logocarousel__banner > img {
    margin-right: 80px;
    max-width: 127px;
    max-height: 65px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.logocarousel__first-logo {
    -webkit-animation: bannermove 22s linear infinite;
    -moz-animation: bannermove 22s linear infinite;
    -ms-animation: bannermove 22s linear infinite;
    -o-animation: bannermove 22s linear infinite;
    animation: bannermove 22s linear infinite;
}

@keyframes bannermove {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -2275px;
    }
}

@-moz-keyframes bannermove {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -2275px;
    }
}

@-webkit-keyframes bannermove {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -2275px;
    }
}

@-ms-keyframes bannermove {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -2275px;
    }
}

@-o-keyframes bannermove {
    0% {
        margin-left: 0px;
    }
    100% {
        margin-left: -2275px;
    }
}

/* Statistics Counter */
.stats {
    margin: 80px 25% 160px;
    display: flex;
    justify-content: space-between;
    gap: 70px;
    flex-direction: column;
    align-items: flex-start;
}

.stats__counter-number {
    color: var(--Blue);
    font-size: 70px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.stats__counter-label {
    color: var(--Black);
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
}

/* Experience Excellence */
.expexcellence {
    padding: 0px 32px;
    margin-bottom: 100px;
}

.expexcellence__main-text {
    color: var(--Black);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.expexcellence__main-text--alt-color {
    color: var(--Blue);
}

.expexcellence__sub-text {
    color: var(--Gray);
    margin-bottom: 80px;
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
}

.expexcellence__request-demo-btn {
    background-color: var(--Blue);
    color: var(--White);
    padding: 16px 0px;
    max-width: 182px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1px;
    border-radius: 12px;
}

/* Solutions Provider */
.solutions {
    padding: 0px 32px;
}

.solutions__main-text {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
}

.solutions__main-text-alt--color {
    color: var(--Blue);
}

.solutions__sub-text {
    color: var(--Gray);
    margin-bottom: 80px;
    font-size: 15px;
    font-weight: 600;
}

.solutions__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 50px;
    border-radius: 24px;
    background-color: var(--White);
    border: 1px solid var(--LightGray);
    box-shadow: 0px 0.482px 1.06px -0.917px rgba(0, 0, 0, 0.08),
        0px 1.831px 4.028px -1.833px rgba(0, 0, 0, 0.08),
        0px 8px 17.6px -2.75px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.solutions__card-title,
.solutions__card-text {
    padding: 0px 30px;
}

.solutions__card-title {
    font-size: 17px;
    font-weight: 600;
    padding-top: 40px;
    margin-bottom: 18px;
}

.solutions__card-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 40px;
}

.solutions__learn-more-btn {
    background-color: var(--Blue);
    color: var(--White);
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    max-width: 191px;
    max-height: 48px;
    margin: 0px 0px 80px 30px;
}

.solutions__img-container {
    background-color: var(--Black);
    max-width: 100%;
    max-height: 400px;
    margin-left: 30px;
    padding-left: 22px;
    padding-top: 22px;
    border-radius: 48px 0px 0px 0px;
    border-bottom: 0px;
    border-right: 0px;
    box-sizing: border-box;
}

.solutions__img-container > img {
    max-width: 770px;
    max-height: 500px;
    flex-shrink: 0;
    box-sizing: border-box;
    border-radius: 24px 0px 0px 0px;
    -moz-border-radius: 24px 0px 0px 0px;
    -khtml-border-radius: 24px 0px 0px 0px;
    -webkit-border-radius: 24px 0px 0px 0px;
}

.winning {
    padding-top: 200px;
    background-color: var(--Black3);
    height: auto;
}
.winning__title-container {
    text-align: center;
    margin-bottom: 80px;
}
.winning__title {
    color: var(--White);
    text-align: center;
    text-shadow: 8px 12px 24px var(--Black2);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.winning__sub-title {
    color: var(--Gray2);
    text-shadow: 8px 12px 24px var(--Black2);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin: 0px 60px;
}
.winning__cards {
    width: 100%;
}
.winning__card {
    background-color: var(--Black1);
    border-radius: 24px;
    padding: 45px 24px 32px 24px;
    width: 80%;
    margin: 0px auto 28px;
}
.winning__card > .winning__card-logo {
    margin-bottom: 28px;
}
.winning__card > .winning__card-title {
    margin-bottom: 16px;
    color: var(--White);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
}
.winning__card > .winning__card-content {
    color: var(--Gray1);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
}

.services {
    padding: 150px 0px 200px;
    background-color: var(--Black3);
    height: auto;
}
.services__title-container {
    text-align: center;
    margin-bottom: 80px;
}
.services__title {
    color: var(--White);
    text-align: center;
    text-shadow: 8px 12px 24px var(--Black2);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.services_cards {
    width: 100%;
}
.services_card {
    background-color: var(--Black1);
    border-radius: 24px;
    padding: 45px 24px 32px 24px;
    margin: 14px;
    width: 80%;
    margin: auto;
    margin-bottom: 30px;
    padding: 40px 30px;
}

.services_card:last-child{
    margin-bottom: 0px;
}

.services_card > .services_card-logo {
    margin-bottom: 28px;
}
.services_card > .services_card-info > .services_card-info-title {
    margin-bottom: 16px;
    color: var(--White);
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
}
.services_card > .services_card-info > .services_card-info-content {
    color: var(--Gray1);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
}

.footer {
    width: 100%;
    height: auto;
    padding: 32px;
}
.footer__divider {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid var(--LightGray);
    img {
        margin: 35px 0px;
    }
}
.footer__divider > .footer__divider-reserve {
    color: var(--Gray);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer__divider > .footer__divider-reserve > p > span {
    color: var(--Blue);
}
.footer__item {
    display: flex;
    flex-direction: column;
    margin: 40px 0px;
}
.footer__item > .footer__item-title {
    color: var(--Dark);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}
.footer__item > .footer__item-content {
    color: var(--Gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    opacity: 0.65;
}
.footer__item-content.footer_link {
    display: flex;
    color: var(--Blue);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.global-market {
    width: 100%;
    height: auto;
    margin: 103px 0;
}
.global-market__cards {
    width: 100%;
}
.global-market__card {
    padding: 0px 24px;
    margin: 14px;
    width: 80%;
    margin: auto;
}
.global-market__card > .global-market__card-logo {
    margin-bottom: 28px;
    text-align: center;
}
.global-market__card > .global-market__card-logo > img {
    content: url("../images/svg_globe.svg");
    max-width: 100%;
}
.global-market__card
    > .global-market__card-info
    > .global-market__card-info-title {
    color: var(--Blue);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.global-market__card
    > .global-market__card-info
    > .global-market__card-info-sub-title {
    color: var(--Black);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.global-market__card
    > .global-market__card-info
    > .global-market__card-info-content {
    margin-top: 30px;
    color: var(--Gray);
    font-size: 14px;
}

.build-sb__btn-contact {
    margin-top: 40px;
    background-color: var(--Blue);
    color: var(--White);
    display: flex;
    height: 48px;
    padding: 16px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.build-sb {
    width: 100%;
    height: auto;
}
.build-sb__cards {
    width: 100%;
}
.build-sb__card {
    padding: 100px 32px 60px 32px;
    margin: auto;
}
.build-sb__card > .build-sb__card-logo {
    margin-bottom: 28px;
    text-align: center;
    display: flex;
}
.build-sb__card > .build-sb__card-logo > .ipad-image {
    content: url("../images/ipad-landscape.png");
    max-width: 100%;
}
.build-sb__card > .build-sb__card-logo > .asian-layout-image {
    content: url("../images/solutions-sportsbook-cut.png");
    position: absolute;
    width: 240px;
    height: 160px;
    padding-top: 10px;
    padding-left: 10px;
}

.build-sb__card > .build-sb__card-info > .build-sb__card-title {
    color: var(--Black);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.build-sb__card > .build-sb__card-info > .build-sb__card-sub-title {
    color: var(--Blue);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.build-sb__card > .build-sb__card-info > .build-sb__card-content {
    margin-top: 30px;
    color: var(--Gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.comprehensive {
    margin: 0 32px 100px;
}

.comprehensive__title {
    color: var(--Black);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.comprehensive__content {
    color: var(--Gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 80px;
}

.comprehensive__image {
    background-color: var(--Gray3);
    display: flex;
    justify-content: flex-end;
    border-radius: 16px;
    overflow: hidden;
    max-width: 420px;
    height: fit-content;
}

.bet-anytime {
    background-color: var(--Gray3);
    margin: 0 32px 35px;
    border-radius: 16px;
    padding: 30px 30px 0;
}

.bet-anytime__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bet-anytime__content {
    color: var(--Gray);
    font-size: 14px;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 50px;
}

.support-all {
    background-color: var(--Gray3);
    border-radius: 16px;
    margin: 0 32px 35px;
}

.support-all__title {
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    padding: 30px;
}

.support-all__content {
    color: var(--Gray);
    font-size: 14px;
    font-weight: 600;
    line-height: 27px;
    padding: 0 30px;
}

.support-all__image {
    overflow: hidden;
    border-radius: 20px;
}

.support-all__image--sub {
    padding: 0;
    position: relative;
    left: 24px;
}

/* Key Features */
.key-features {
    background-color: var(--Black3);
    background-image: radial-gradient(
        circle closest-side,
        var(--Blue1),
        var(--Black3)
    );
    padding: 200px 30px;
    margin-bottom: 151px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.key-features__title {
    color: var(--White);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.key-features__sub-title {
    color: var(--Gray2);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 138px;
}

.key-features__cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 130px;
}

.key-features__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.key-features__card > picture > img {
    width: 309px;
}

.key-features__card-title {
    gap: 16px;
}

.key-features__card-title-text {
    color: var(--White);
    font-size: 17px;
    font-weight: 600;
}

.key-features__card-title-icon {
    color: var(--White);
    width: 26px;
    max-width: 26px;
    height: 18px;
    max-height: 18px;
}

.key-features__text-content {
    color: var(--Gray2);
    text-align: center;
    text-shadow: 8px 12px 24px rgba(0, 0, 0, 0.05);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: -0.5px;
}

.key-features__card-info-icon {
    position: absolute;
    top: 60px;
    right: 15px;
    z-index: 99999;
}

.key-features__card-desc {
    background-color: var(--White);
    color: var(--Black);
    padding: 32px 30px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    position: absolute;
    transform: translateY(100%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    opacity: 0;
    transition: 0.5s;
    height: 300px;
    border-top: solid 3px red;
}

.key-features__card:hover .key-features__card-desc {
    opacity: 1;
    transform: translateY(37%);
}

.key-features__card-desc-alt-color {
    color: var(--Blue);
    font-weight: 600;
}

.key-features__card-desc.card-stats,
.key-features__card-desc.card-betbuilder,
.key-features__card-desc.card-parlay,
.key-features__card-desc.card-boosted {
    width: 309px;
}

/* Take A Virtual Tour */
.virtual-tour {
    padding: 0px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.virtual-tour__title {
    color: var(--Black);
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 80px;
}

.virtual-tour__title-alt-color {
    color: var(--Blue);
}

.virtual-tour__cards {
    display: flex;
    flex-direction: column;
}

.virtual-tour__card {
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 12px;
    width: 100%;
    height: auto;
    min-width: 276px;
    min-height: 198px;
    max-width: 276px;
    max-height: 198px;
    display: flex;
    align-items: flex-end;
    background-repeat: no-repeat;
    cursor: pointer;
}

.virtual-tour__card-content-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.virtual-tour__card-title {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.virtual-tour__card-title-main {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.virtual-tour__card-title-sub {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 144%;
}

.virtual-tour__card-cta {
    background-color: var(--BlackTransparent);
    padding: 14px 33px;
    border: 0.5px solid var(--White);
    border-radius: 12px;
}

.site__asian-classic {
    background-image: linear-gradient(
            to top,
            var(--Black),
            transparent,
            transparent
        ),
        url("/assets/images/site-asian1.png");
    background-size: 100%;
}

.site__asian-blazor {
    background-image: linear-gradient(
            to top,
            var(--Black),
            transparent,
            transparent
        ),
        url("/assets/images/site-asian2.png");
    background-size: 100%;
}

.site__asian-double-line {
    background-image: linear-gradient(
            to top,
            var(--Black),
            transparent,
            transparent
        ),
        url("/assets/images/site-asian2.png");
    background-size: 100%;
}

.site__euro-classic {
    background-image: linear-gradient(
            to top,
            var(--Black),
            transparent,
            transparent
        ),
        url("/assets/images/site-el1.png");
    background-size: 100%;
}

.site__euro-single-market {
    background-image: linear-gradient(
            to top,
            var(--Black),
            transparent,
            transparent
        ),
        url("/assets/images/site-el2-single.png");
    background-size: 100%;
}

.site__euro-dual-market {
    background-image: linear-gradient(
            to top,
            var(--Black),
            transparent,
            transparent
        ),
        url("/assets/images/site-el2-dual.png");
    background-size: 100%;
}

.site__euro-korean {
    background-image: linear-gradient(
            to top,
            var(--Black),
            transparent,
            transparent
        ),
        url("/assets/images/site-el2-korean.png");
    background-size: 100%;
}

.site__euro-africa {
    background-image: linear-gradient(
            to top,
            var(--Black),
            transparent,
            transparent
        ),
        url("/assets/images/site-africa.png");
    background-size: 100%;
}

.got-questions {
    width: 100%;
    height: auto;
    margin: 50px 0;
}

.got-questions__cards {
    width: 100%;
}

.got-questions__card {
    padding: 45px 24px 32px 24px;
    width: 80%;
    margin: auto;
}

.got-questions__card
    > .got-questions__card-info
    > .got-questions__card-info-title {
    margin-bottom: 16px;
    color: var(--Black);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
}

.got-questions__card > .got-questions__card-info {
    color: var(--Text_Body, #000);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    text-align: center;
}

.got-questions__card
    > .got-questions__card-info
    > .got-questions__card-info-content {
    margin-top: 30px;
    color: var(--Text_Paragraph, #4e616b);
}

.got-questions__btns {
    display: flex;
    flex-direction: column;
}

.got-questions__btn {
    margin-top: 20px;
    width: 100%;
    display: flex;
    height: 48px;
    padding: 16px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.got-questions__btn.contact {
    background-color: var(--Blue);
    color: var(--White);
}

.got-questions__btn.visit {
    background-color: var(--Secondary_Color, #f4f5f6);
    color: var(--Black);
    font-weight: 600;
}

.products {
    width: 100%;
    height: auto;
    margin-top: 100px;
}

.products__title {
    padding: 0px 32px;
    color: var(--Black);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 100px;
}
.products__carousel {
    width: 100vw;
    overflow: hidden;
    position: relative;
    padding-bottom: 10px;
    height: 300px;
}
.products__list {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    width: 100%;
    transition: 1s ease-in-out all;
}
.products__list > .product__card {
    min-width: 100%;
    height: auto;
    padding: 45px 50px 32px 50px;
    width: 80%;
    box-shadow: 0px 0.482px 1.06px -0.917px rgba(0, 0, 0, 0.08),
        0px 1.831px 4.028px -1.833px rgba(0, 0, 0, 0.08),
        0px 8px 17.6px -2.75px rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    margin: auto;
}
.product__head {
    display: flex;
    flex-direction: row;
}
.product__content {
    padding: 10px 0px;
    margin: 20px 0px;
}
.product__image {
    border-radius: 14px;
    background-color: #ececec;
    padding: 10px;
}
.product__title {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
}
.product__name {
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.product__subname {
    color: var(--Gray1);
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.product__item {
    display: flex;
    align-self: center;
}
.product__item > span {
    color: var(--Gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    margin-left: 10px;
}

.product__btn {
    width: 100%;
    display: flex;
    height: 48px;
    padding: 16px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 12px;
    background: var(--Blue);
    color: var(--White);
}

/* About Us Hero */
.about__hero {
    position: relative;
    margin-bottom: 0px;
}

.about__hero-bg-content {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: radial-gradient(
            ellipse farthest-corner,
            transparent,
            transparent,
            white
        ),
        url("../images/landing-page-hero-bg.svg");
    background-position: 50% 15%;
    background-repeat: no-repeat;
}

.about__hero-main-text {
    padding: 0px 32px;
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    text-shadow: 8px 12px 24px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.about__hero-main-text-alt--color {
    color: var(--Blue);
}

.about__hero-sub-text {
    padding: 0px 32px;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
    color: var(--Gray);
}

/* About Us - Our Mission */
.about__our-mission {
    display: flex;
    flex-direction: column;
    padding: 50px 32px 0px 32px;
    margin-bottom: 200px;
}

.about__our-mission-block {
    border-bottom: 1px solid var(--LightGray);
    padding-top: 50px;
    padding-bottom: 50px;
}

.about__our-mission-title {
    color: var(--Black);
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 30px;
}

.about__our-mission-description {
    color: var(--Gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
}

.about__our-mission-text-alt-color {
    color: var(--Blue);
    font-weight: 600;
}

.about__our-mission-title-alt-color {
    color: var(--Blue);
    font-weight: 700;
}

/* About Us - Core Services */
.about__core-services {
    padding: 0px 32px;
    margin-bottom: 105px;
}

.about__core-services-title {
    color: var(--Black);
    font-size: 28px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
}

.about__core-services-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.about__core-services-card {
    background-color: var(--Gray3);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
}

.about__core-services-card-text {
    display: flex;
    flex-direction: column;
}

.about__core-services-card-img {
    margin-bottom: 30px;
    max-width: 93px;
    max-height: auto;
}

.about__core-services-card-title {
    color: var(--Black);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about__core-services-card-text {
    color: var(--Gray1);
    font-size: 14px;
    font-weight: 600;
    line-height: 27px;
}

/* About Us - Got Questions */
.about__got-questions {
    padding: 0px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
}

.about__got-questions-title {
    color: var(--Black);
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.about__got-questions-text {
    color: var(--Gray);
    margin-bottom: 60px;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
    text-align: center;
}

.about__got-questions-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about__got-questions-contact-btn,
.about__got-questions-visit-faq-btn {
    width: 100%;
    max-width: 500px;
    padding: 11px 0px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.1px;
}

.about__got-questions-contact-btn {
    background-color: var(--Blue);
    color: var(--White);
    margin-bottom: 20px;
}

.about__got-questions-visit-faq-btn {
    background-color: var(--Gray4);
    color: var(--Black);
}

/* About Us - Building Sportsbook */
.about__building-sb {
    margin-bottom: 90px;
}

.about__building-sb-img-container {
    position: relative;
    width: 100vw;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.about__building-sb-img {
    width: 90%;
    max-width: 500px;
    height: auto;
}

.about__building-sb-content {
    width: 100%;
}

.about__building-sb-title {
    color: var(--Black);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    padding: 0px 32px;
}

.about__building-sb-title-alt-color {
    color: var(--Blue);
}

.about__building-sb-text {
    color: var(--Gray);
    padding: 0px 32px;
    margin-bottom: 60px;
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
}

.about__building-sb-req-btn {
    background-color: var(--Blue);
    color: var(--White);
    width: 180px;
    margin-left: 32px;
    max-width: 180px;
    height: 48px;
    max-height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.1px;
}
.faq__content {
    z-index: 1;
}
.faq-contact-bg {
    position: absolute;
    display: flex;
    overflow: hidden;
    justify-content: center;
    max-width: 1280px;
    height: 300px;
    z-index: 0;
}
.faq-contact-bg > img {
    transform: scale(4, 3.5);
}

.faq__content-title {
    margin: auto;
    padding: 100px 20px 20px 20px;
    color: var(--Black);
    text-align: center;
    text-shadow: 8px 12px 24px rgba(0, 0, 0, 0.05);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.faq__content-sub-title {
    text-align: center;
    padding: 20px;
    color: var(--Gray);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
}

.faq {
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
    padding: 30px;
    position: relative;
    transition: 0.3s ease;
    border-radius: 12px;
    border: 1px solid var(--LightGray);
    background: #fff;
}

.faq.active {
    background-color: var(--White);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq.active::before {
    color: var(--Blue);
    left: -30px;
    top: -10px;
    transform: rotateY(180deg);
}

.faq-title {
    color: var(--Black);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 35px 0 0;
}

.faq-text {
    display: none;
    margin: 30px 0 0;
}

.faq.active .faq-text {
    display: block;
}

.faq-toggle {
    align-items: center;
    background-color: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    height: 30px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 30px;
    top: 30px;
    width: 30px;
}

.faq.active .faq-toggle {
    background-color: #9fa4a8;
}

.faq-contact {
    margin: 20px 0;
    padding: 30px;
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--LightGray);
    color: var(--Black);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.faq-contact > .contact-btn {
    height: 48px;
    padding: 16px 30px;
    border-radius: 12px;
    background: var(--Blue);
    color: var(--White);
    margin-top: 10px;
    font-size: 16px;
}

/* Contact Us Hero */
.contact__hero {
    position: relative;
}

.contact__hero-bg-content {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: radial-gradient(
            ellipse farthest-corner,
            transparent,
            transparent,
            white
        ),
        url("../images/landing-page-hero-bg.svg");
    background-position: 50% 15%;
    background-repeat: no-repeat;
    margin-top: 50px;
}

.contact__hero-main-text {
    padding: 0px 32px;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    text-shadow: 8px 12px 24px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.contact__hero-main-text-alt--color {
    color: var(--Blue);
}

.contact__hero-sub-text {
    color: var(--Gray);
    padding: 0px 32px;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
}

/* Contact Us - Forms */
.contact__forms {
    padding: 0px 32px;
    margin-bottom: 142px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

.contact__forms-card {
    background-color: var(--Gray5);
    padding: 30px;
    border-radius: 18px;
}

.contact__forms-card-title {
    color: var(--Black);
    padding-bottom: 20px;
    font-size: 17px;
    font-weight: 600;
}

.contact__forms-card-description {
    color: var(--Gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    padding-bottom: 40px;
}

.contact__forms-card-contact-info {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
}

.contact__forms-card-contact-info-text {
    width: 90%;
    word-break: break-all;
    color: var(--Blue);
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
}

.contact__forms-input {
    background-color: var(--White);
}

.contact__forms-input-title {
    color: var(--Black);
    margin-bottom: 30px;
    font-size: 17px;
    font-weight: 600;
}

.contact__forms-input-fields {
    margin-bottom: 60px;
}

.contact__forms-input-field {
    color: var(--Gray);
    width: 100%;
    border: 0px;
    border-bottom: 1px solid var(--LightGray);
    padding: 17px 0px;
    font-size: 16px;
    font-weight: 400;
}

.contact__forms-input-field:focus {
    outline: none;
}

.contact__forms-send-msg-btn {
    background-color: var(--Blue);
    color: var(--White);
    padding: 11px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.1px;
    margin-top: 50px;
}

.tab-headers {
    display: flex;
    justify-content: space-between;
    padding: 0px 40px;
    overflow-x: auto;
}
.tab-header {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    color: var(--Black);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    text-wrap: nowrap;
}

.tab-header.active {
    border-bottom: 2px solid var(--Blue);
}

.tab-content {
    display: none;
    margin: 0px 32px;
}
.tab-content.active {
    display: block;
}

.common {
    width: 100%;
    height: auto;
}
.common__cards {
    width: 100%;
}
.common__card {
    padding: 140px 32px;
    margin: auto;
    display: flex;
    flex-direction: column-reverse;
}
.common__card > .common__card-logo {
    text-align: center;
    display: flex;
}

.common__card > .common__card-info > .common__card-title {
    color: var(--Black);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.common__card > .common__card-info > .common__card-content {
    margin-top: 30px;
    color: var(--Gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    padding-bottom: 80px;
}

.globe-content {
    overflow: hidden;
    transform: translateZ(0);
}
.globe-content__image {
    transform: scale(5, 5);
    margin-top: 100px;
    position: absolute;
    z-index: -1;
}
.globe-content__details {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.globe-content__details-title {
    color: var(--Black);
    text-align: center;
    text-shadow: 8px 12px 24px rgba(0, 0, 0, 0.05);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    padding: 100px 32px 40px 32px;
}
.globe-content__details-info {
    color: var(--Gray);
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    padding: 0px 32px;
    margin-bottom: 100px;
}

.globe-content__details-image{
    max-width: 1280px;
    margin: auto;
}

.globe-content__details > img {
    margin-top: 50px;
    max-width: 300px;
}

.language-modal {
    display: none;
    margin: 0 auto;
    max-width: 1100px;
    cursor: pointer;
}
.language-modal__container {
    position: absolute;
    right: 0;
    margin-right: 0px;
}
.language-modal__items {
    margin-top: 4px;
    margin-right: 10px;
    border-radius: 10px;
    width: 210px;
    height: 450px;
    background-color: white;
    float: right;
    overflow-y: auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}
.language-modal__item {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
}
.language-modal__item:hover {
    background-color: var(--Blue);
    color: var(--White);
}
.language-modal__item-label {
    margin-left: 10px;
}
.demo-header__color-and-layout > span {
    color: var(--White);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    align-self: center;
    display: none;
}
.demo-header__language {
    height: 32px;
    width: 60px;
    display: flex;
    align-items: center;
    margin-right: 0px;
    cursor: pointer;
}
.icon-layout-options {
    padding: 0px 6px;
    height: 100%;
    width: 50px;
}
.back-container {
    width: 120px;
    display: flex;
    align-items: center;
    color: var(--Text_Paragraph, #4e616b);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
}

/* Odds Feed */
.odds-feed__hero {
    position: relative;
}

.odds-feed__hero__bg-content {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: radial-gradient(
            ellipse farthest-corner,
            transparent,
            transparent,
            white
        ),
        url("../images/landing-page-hero-bg.svg");
    background-position: 50% 15%;
    background-repeat: no-repeat;
}

.odds-feed__hero__main-text {
    padding: 0px 32px;
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    text-shadow: 8px 12px 24px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.odds-feed__hero__sub-text {
    padding: 0px 32px;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
    color: var(--Gray);
}

.odds-feed__hero-cards {
    width: 100%;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.odds-feed__hero-card {
    background-color: var(--Gray3);
    padding: 45px 24px;
    min-width: 331px;
    max-width: 331px;
    min-height: 338px;
    max-height: 338px;
    border-radius: 24px;
}

.odds-feed__hero-card-icon {
    padding-bottom: 28px;
    max-width: 48px;
}

.odds-feed__hero-card-title {
    color: var(--Black);
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    padding-bottom: 16px;
}

.odds-feed__hero-card-text {
    color: var(--Gray);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
}

.odds-feed__api {
    width: 100%;
    padding: 0px 30px;
    margin-bottom: 200px;
}

.odds-feed__api-title {
    color: var(--Black);
    margin-bottom: 66px;
    text-shadow: 8px 12px 24px rgba(0, 0, 0, 0.05);
    font-size: 50px;
    font-weight: 600;
}

.odds-feed__api-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.odds-feed__api-card {
    background-color: var(--White);
    border: 1px solid var(--LightGray);
    border-radius: 24px;
    width: 100%;
    padding: 45px 24px;
}

.odds-feed__api-card-icon-container {
    margin-bottom: 28px;
    max-height: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.odds-feed__api-card-title {
    color: var(--Black);
    padding-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
}

.odds-feed__api-card-text {
    color: var(--Gray);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
}

.odds-feed__learn {
    padding: 0px 30px;
    margin-bottom: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.odds-feed__learn-title {
    color: var(--Black);
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.odds-feed__learn-text {
    max-width: 558px;
    margin-bottom: 60px;
    color: var(--Gray);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.odds-feed__learn-view-doc-btn {
    background-color: var(--Blue);
    color: var(--White);
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
}

.odds-feed__build-sb {
    width: 100%;
    padding: 0px 30px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.odds-feed__build-sb-text-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 60px;
}

.odds-feed__build-sb-title {
    color: var(--Black);
    padding-bottom: 45px;
    font-size: 50px;
    font-weight: 700;
}

.odds-feed__build-sb-title-alt-color {
    color: var(--Blue);
}

.odds-feed__build-sb-desc {
    color: var(--Gray);
    padding-bottom: 60px;
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
}

.odds-feed__build-sb-contact-btn {
    background-color: var(--Blue);
    color: var(--White);
    max-width: 142px;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
}

/* Dev Doc */
.dev-doc__hero {
    position: relative;
    /* margin-bottom: -50px; */
    padding: 0px 32px;
}

.dev-doc__hero__bg-content {
    padding-top: 172px;
    padding-bottom: 200px;
    background-image: url("../images/landing-page-hero-bg.svg");
    background-position: 50% 20%;
    background-clip: padding-box;
    background-repeat: no-repeat;
}

.dev-doc__hero__main-text {
    max-width: 905px;
    margin: 0px auto 40px auto;
    text-shadow: 8px 12px 24px rgba(0, 0, 0, 0.05);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
}

.dev-doc__hero__sub-text {
    color: var(--Gray);
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
}

.dev-doc__content {
    position: relative;
    padding: 0px 32px;
    margin: 0px auto 100px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dev-doc__nav-desktop {
    display: none;
}

.dev-doc__nav-item {
    background-color: var(--White);
    color: var(--Gray);
    padding: 16px 30px;
    margin-bottom: 5px;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.1px;
    border: 1px solid var(--LightGray);
    border-radius: 12px;
}

.dev-doc__nav-item.active {
    background-color: var(--LightBlue);
    color: var(--Blue);
    border: none;
}

.dev-doc__details {
    background-color: var(--White);
    position: relative;
    width: 100%;
    padding-top: 30px;
}

.dev-doc__details-title {
    color: var(--Black);
    padding-bottom: 25px;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--LightGray);
    font-size: 24px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.1px;
}

.dev-doc__details-content-block {
    margin-bottom: 35px;
    position: relative;
}

.dev-doc__details-sub-title {
    color: var(--Black);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0.1px;
}

.dev-doc__details-normal-text {
    color: var(--Black);
    font-size: 16px;
    font-weight: 400;
    line-height: 37px;
    letter-spacing: 0.1px;
    word-wrap: break-word;
}

.dev-doc__details-bullet-aligned {
    padding-left: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
}

.dev-doc__details-normal-text-highlighted {
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 37px;
    letter-spacing: 0.1px;
}

.dev-doc__details-normal-text-alt-color {
    color: var(--Blue);
    font-weight: 600;
}

.dev-doc__details-normal-text-alt-color.link {
    padding: 2px;
    text-decoration: underline;
}

.dev-doc__details-code {
    font-family: "Fira Code", monospace;
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.1px;
    word-wrap: break-word;
}

.dev-doc__details-code .tabbed {
    font-family: "Fira Code", monospace;
    padding-left: 20px;
}

.details-gray-bg {
    background-color: var(--Gray4);
    padding: 20px 25px;
}

.details-border-left {
    border-left: 4px solid var(--Gray);
}
