@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;800&family=Source+Sans+Pro&display=swap');
@font-face {
    font-family: Rubik Regular;
    src: url('../fonts/Rubik-Regular.ttf');
}
@font-face {
    font-family: Rubik Medium;
    src: url('../fonts/Rubik-Medium.ttf');
}
@font-face {
    font-family: Rubik Bold;
    src: url('../fonts/Rubik-Bold.ttf');
}
@font-face {
    font-family: NutmegBlackItalic;
    src: url('../fonts/NutmegHeadline-BlackItalic.otf');
}
@font-face {
    font-family: NutmegExtraBoldItalic;
    src: url('../fonts/NutmegHeadline-ExtraBoldItalic.otf');
}
@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

body {
    margin: 0;
    padding: 0;
}

p,
ul {
    font-family: Rubik Regular;
    font-size: 1.2rem;
    line-height: 1.2;
    text-align: left;
}
p li,
ul li {
    margin-top: 10px;
}
@media (max-width: 475px) {
    p,
    ul {
        font-size: 1rem;
    }
}

ul {
    padding-left: 20px;
}

h1 {
    font-size: 4.2rem;
    text-align: left;
    line-height: 1.2;
    font-family: NutmegExtraBoldItalic;
    font-weight: unset;
    text-transform: uppercase;
    margin: 25px 0;
    white-space: nowrap;
}
h1 mark {
    color: white;
    background-color: #0085fe;
}
@media (max-width: 768px) {
    h1 {
        font-size: 3.7rem;
    }
}
@media (max-width: 576px) {
    h1 {
        font-size: 11.5vw;
        line-height: 1.3;
    }
}

h2 {
    color: black;
    font-size: 1.8rem;
    text-align: left;
    line-height: 1;
    font-family: NutmegExtraBoldItalic;
    font-weight: unset;
    margin: 30px 0;
}
@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
        text-align: center;
    }
}
@media (max-width: 576px) {
    h2 {
        font-size: 1.2rem;
    }
}

.red-txt {
    color: #cc0000;
}

.blue-txt {
    color: #0085fe;
}

img {
    width: 100%;
    height: auto;
}

.cta-primary {
    display: inline-block;
    background-color: #cc0000;
    color: white;
    text-decoration: none;
    padding: 15px 50px;
    margin: 20px 0;
    border-radius: 10px;
    font-family: NutmegBlackItalic;
    text-transform: uppercase;
    font-size: 1.3rem;
    transition: all 0.2s;
    letter-spacing: 0.7;
}
.cta-primary:hover {
    background-color: white;
    box-shadow: inset 0px 0px 0px 3px #cc0000;
    color: #cc0000;
}
@media (max-width: 768px) {
    .cta-primary {
        font-size: 1.2rem;
        padding: 12px 50px;
    }
}
@media (max-width: 320px) {
    .cta-primary {
        font-size: 0.8rem;
        padding: 7px 55px;
        border-radius: 5px;
    }
}

.container {
    padding: 50px 0;
    border-bottom: 5px solid #e9e9e9;
}

.content {
    width: 80%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
@media (max-width: 768px) {
    .content {
        width: 90%;
        text-align: center;
    }
}

.single-block {
    width: 60%;
}
@media (min-width: 1280px) {
    .single-block {
        width: 40%;
    }
}
@media (max-width: 768px) {
    .single-block {
        width: 90%;
    }
}
.single-block h2 {
    text-align: center;
}

.wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
}
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
    }
}
@media (min-width: 1280px) {
    .wrapper {
        -moz-column-gap: 70px;
        column-gap: 70px;
    }
}

.column {
    flex: 1;
}

header {
    margin: 0 auto !important;
    padding: 0 !important;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
    border-bottom: 0 !important;
}
header .content {
    flex-direction: row;
}
@media (max-width: 768px) {
    header .content {
        flex-direction: column;
    }
    header .content .logo {
        margin: 10px 0 5px 0;
    }
    header .content .cta-primary {
        margin: 5px 0 10px 0;
    }
}

.main-banner {
    background-image: url('../img/Final4MainBanner.webp');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: black;
}
@media (max-width: 768px) {
    .main-banner {
        background-image: url('../img/Final4MobileBanner.webp');
        background-position: bottom center;
    }
}
.main-banner .content {
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px 0;
}
.main-banner .content p {
    color: white;
    font-size: 1.3rem;
    font-family: NutmegExtraBoldItalic;
    margin: 0;
}
.main-banner .content p span {
    font-family: NutmegBlackItalic;
}
@media (max-width: 768px) {
    .main-banner .content p {
        font-size: 1.3rem;
    }
}
@media (max-width: 576px) {
    .main-banner .content p {
        font-size: 1.2rem;
    }
}
@media (max-width: 475px) {
    .main-banner .content p {
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    .main-banner .content .cta-primary {
        margin: 120px auto 0;
    }
}
@media (max-width: 576px) {
    .main-banner .content .cta-primary {
        margin: 80px auto 0;
    }
}
@media (max-width: 475px) {
    .main-banner .content .cta-primary {
        margin: 40px auto 0;
    }
}
.main-banner .content .cta-primary:hover {
    background-color: unset;
    box-shadow: inset 0px 0px 0px 3px white;
    color: white;
}
.main-banner .content .wrapper {
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 768px) {
    .main-banner .content .wrapper {
        margin: 130px 0 0;
    }
}
@media (max-width: 576px) {
    .main-banner .content .wrapper {
        margin: 150px 0 0;
    }
}
@media (max-width: 475px) {
    .main-banner .content .wrapper {
        margin: 153px 0 0;
    }
}
.main-banner .content .wrapper .hero-img {
    height: 50px;
}
.main-banner .content .wrapper .hero-img img {
    width: auto;
    height: 100%;
}
@media (max-width: 768px) {
    .main-banner .content .wrapper .hero-img {
        margin-top: 40px;
        height: 50px;
    }
}
@media (max-width: 576px) {
    .main-banner .content .wrapper .hero-img {
        height: 40px;
    }
}
@media (max-width: 475px) {
    .main-banner .content .wrapper .hero-img {
        height: 30px;
    }
}
@media (max-width: 320px) {
    .main-banner .content .wrapper .hero-img {
        margin-top: 20px;
        height: 27px;
    }
}

.sportsbook {
    padding: 50px 0 30px 0;
    border-bottom: 0;
}

footer {
    margin: 0 auto !important;
    padding: 0 0 50px 0 !important;
}
footer .content .payment-methods {
    margin: 20px 0;
    width: 350px;
    height: auto;
}
@media (max-width: 375px) {
    footer .content .payment-methods {
        width: 100%;
    }
}
footer .content .wrapper .footer-icons {
    width: 160px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
@media (max-width: 768px) {
    footer .content .wrapper .footer-icons {
        width: 40%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        margin: auto;
    }
}
footer .content .wrapper p {
    color: #858585;
    text-align: center;
    line-height: 1.6;
}
footer .content .wrapper p span {
    font-size: 0.7rem;
}
@media (min-width: 1280px) {
    footer .content .wrapper p {
        width: 50%;
    }
}
@media (max-width: 768px) {
    footer .content .footer-wrapper {
        flex-direction: row;
        align-items: center;
    }
}

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

.prop_sheet_container {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 100px;
    padding: 50px 0;
}

.prop_sheet_img {
    background-image: url('../img/cardDesk.webp');
    background-size: cover;
    width: 409px;
    height: 244px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prop_sheet_img_title_container {
    display: flex;
    flex-direction: column;
    background-color: rgb(42, 139, 242);
}

.prop_sheet_img_title {
    color: white;
    font-family: 'Rubik', sans-serif;
    font-weight: bolder;
    font-size: 40px;
}

.prop_sheet_text_container {
    width: 600px;
    font-family: 'Source Sans Pro';
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.prop_sheet_subtitle {
    font-family: 'Source Sans Pro';
}

.prop_sheet_ol {
    width: 90%;
}

.prop_sheet_button {
    font-family: 'Source Sans Pro';
    background-color: rgb(203, 0, 0);
    color: white;
    font-weight: bolder;
    padding: 10px 70px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
}

.prop_sheet_link {
    text-decoration: underline;
}

.prop_sheet_link {
    color: black;
}

.prop_sheet_play_now {
    color: white;
    text-decoration: none;
}

@media (max-width: 950px) {
    .prop_sheet_container {
        flex-direction: column;
        padding: 50px 20px;
    }
    .prop_sheet_text_container {
        width: 100%;
        min-width: 100%;
    }
    .prop_sheet_img {
        width: 100%;
    }
} /*# sourceMappingURL=styles.css.map */
