#sports-page , 
#sports-index {
    position: relative;
    font-family: 'Montserrat';
    max-width: 1920px;
    margin: 0 auto;
}

div#sports-page p {
    margin-bottom: 1rem;
}

div#sports-page .main-content a {
    color: black;
}


/*****************
SPORTS INDEX
*****************/

.sports-index-wrapper {
    max-width: 1900px;
    margin: 0 auto 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

div#sports-index header {
    padding: 2rem 1rem;
}

div#sports-index header p {
    margin-bottom: 12px;
}

div#sports-index header .title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

div#sports-index header .description {
    text-align: center;
    line-height: 1.25rem;
}

.sports-index-wrapper.featured {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}

.sports-index-wrapper.featured .sport-link {
    width: 100%;
    margin-bottom: 10px;
}

.sports-index-wrapper .sport-link {
    position: relative;
    width: 95%;
    color: #000;
}


.sports-index-wrapper .sport-link img {
    width: 100%;
    height: 100%;
    transition: filter .1s ease-in;
    object-fit: cover;
}

.sports-index-wrapper .sport-link:hover img {
    filter: brightness(0.5);
}

.sports-index-wrapper .sport-link > div {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 85%;
    padding: 8px 0;
    font-size: 18px;
    text-align: center;
    background-color: rgba(255,255,255, 0.8);
    transition: all .12s ease-in;
}


.sports-index-wrapper .sport-link:hover > div {
    padding: 16px 0;
    font-weight: 600;
    background-color: rgba(255,255,255, 1);
}

.sports-index-wrapper .sport-link > div > span {
    display: block;
    height: 0;
    padding: 0 1rem;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1rem;
    overflow: hidden;
}

.sports-index-wrapper .sport-link:hover > div > span {
    height: auto;
    margin-top: 5px;
}

@media(min-width: 768px){

    .sports-index-wrapper {    
        justify-content: flex-start;
    }

    .sports-index-wrapper .sport-link {
        width: 50%;
    }    
}

@media(min-width: 960px){
    .sports-index-wrapper .sport-link {
        width: 33.33%;
    }


    .sports-index-wrapper.featured {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%;
        margin: 0 auto;
    }

    .sports-index-wrapper.featured .sport-link {
        width: unset;
        flex-grow: 1;
        margin-bottom: 20px;
    }
    
}

/*****************
SPORTS PAGE
*****************/
.hero-section.scrolled::after {
    filter: blur(5px); 
}

.main-content {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    color: black;
    z-index: 5;
    margin: 0 auto;
}


/* To hide the fix hero CTA */
div#newslettersignupcont,
.templatepaymentoptions, 
.footer {
    position: relative;
    z-index: 15;
}


@media (min-width: 768px) {

    .main-content {
        width: 100%;
        background: white;
        padding: .5rem 2rem;
    }

}

.hero-image {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    overflow: hidden;
}


/***************************
** HERO SECTION **
/***************************/
.hero-section {
    box-sizing: border-box;
    display: flex;
    height: 108vh;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    transition: all .2s ease-in;
    padding-top: 40vh;
}

@supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */
    .hero-section {
        background-attachment:scroll;
    }
}

.hero-section::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    height: 110vh;
    position: absolute;
    top: 0%;
    width: 100%;
    content: '';
    z-index: 1;
}

.hero-section::after {
    position: absolute;
    width: 100%;
    height: 105vh;
    content: '';
    top: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: filter 0.3s ease; 
    filter: blur(0px); 
    z-index: 0; 
}

.hero-body-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
    position: relative;
    color: white;
    font-size: 1.2rem;
    transition: padding 0.1s ease-in-out;
    z-index: 5;
}


.hero-heading {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0px 10px;
    margin-bottom: 20px;
    gap: 2rem;
    z-index: 5;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-text h1 {
    font-size: 30px;
    color: white;
}

.hero-text h2 {
    font-size: 14px;
}

.hero-body-content .copy {
    position: relative;
    padding: 0px 10px;
    margin-top: 20px;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.84px;
    z-index: 5;
}


.customer-service {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 0 10px;
    padding: 1rem;
    font-size: 13px;
    line-height: 21px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    z-index: 5;
}

.customer-service .icon {
    width: 20px;
}

@media (min-width: 620px) {

        
    .hero-body-content .copy {
        position: relative;
        max-width: 75%;
        margin-bottom: 30px;
        padding: 0px 20px;
        font-size: 20px;
        line-height: 130%;
        font-style: normal;
        font-weight: 500;
        letter-spacing: -0.84px;
        z-index: 5;
    }
}

@media (min-width: 960px) {

    .hero-section {
        height: 120vh;
        padding-top: 0vh;
    }
    
    .hero-section::before {
        background: linear-gradient(to top, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0) 100%);
        height: 120vh;
    }

    .hero-body-content {
        position: relative;
        display: block;
        color: white;
        font-size: 1.2rem;
        transition: padding 0.1s ease-in-out;
        z-index: 5;
        padding-bottom: 30px;
    }

    .hero-heading {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        padding: 0px 20px;
        margin-bottom: 40px;
        gap: 0;
        z-index: 5;
    }
    

    .hero-text h1 {
        font-size: 90px;
        font-weight: 900;
        color: white;
    }
    
    .hero-text h2 {
        padding: 0 10px;
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 15px;
        color: white;
    }
    
    .hero-body-content .copy {
        max-width: 60%;
    }

    .customer-service {
        box-sizing: border-box;
        position: relative;
        max-width: 50%;
        display: flex;
        align-items: center;
        gap: 4rem;
        margin: 0 20px;
        padding: 1rem;
        font-size: 16px;
        line-height: 21px;
        background: rgba(255,255,255,0.2);
        border-radius: 6px;
        z-index: 5;
    }

}




@media (min-width: 1200px) {
    
    .hero-body-content {
        max-width: 1900px;
        margin: 0 auto;
    }

    
    .hero-body-content .copy {
        max-width: 50%;
    }

    .hero-body-content .copy,
    .customer-service {
        max-width: 45%;
    }

    .customer-service {
        padding: 2rem;
    }

}




@media(min-width:768px) and (min-height: 600px) {    
    .hero-body-content {
        padding-top: 30vh;
    }
}

@media (min-width:768px) and (min-height: 750px) {    
    .hero-body-content {
        padding-top: 50vh;
    }
}

@media (min-width:768px) and (min-height: 850px) {    
    .hero-body-content {
        padding-top: 53vh;
    }
}


@media (min-width:768px) and (min-height: 950px) {    
    .hero-body-content {
        padding-top: 60vh;
    }
}
/***************************
** HERO SECTION END **
/***************************/



/***************************
** JUMPLINKS **
/***************************/

.jump-links {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #10061D;
    color: white;
    font-family: 'Montserrat';
    width: 100%;
    z-index: 999;
}

.jump-links.open span.menu {
    display: none;
}

.jump-links span.menu {
    display: block;
    padding: 12px 0px;
    width: 100%;
    text-align: center;
}
.jump-links span.menu svg {
    width: 100%; 
    display: flex; 
    align-items:center; 
    justify-content: center;
}

.jump-links div {
    display: none;
    text-align: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 14px;
    padding: 15px 0;
}

.jump-links.open div {
    display: flex;
    justify-content: center;
}


.jump-links div .highlight {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #10061D;
    border-radius: 5px;
    transition: background .3s ease-in-out;
}

.jump-links div.active > .highlight {
    background: #477EFF;

}

.jumplink-heading {
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: -0.56px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transform: translateX(-8px);
}

.jumplink-heading::before {
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
    background: #477EFF;
    border-radius: 5px;
    margin-right: 3px;
    transform: translateX(-120%);
}


@media (min-width: 768px) {
    .jump-links {
        flex-direction: row;
        justify-content: center;
        gap: 2.5rem;
    }

    
    .jump-links div {
        display: flex;
        padding: 25px 20px;
        text-align: left;
    }

    .jump-links span.menu {
        display: none;
    }
    
    
}

@media (min-width: 960px) {

    
    .jumplink-heading {
        margin-bottom: 40px;
    }

}

/***************************
** JUMPLINKS END **
/***************************/



/***************************
/* BLOCKS STYLING */
/***************************/



/***** GENERAL STYLES *******/


#sports-page .content-heading {
    font-size: 18px;
    font-weight: 500;
}


#sports-page .content-copy {
    font-size: 12px;
    line-height: 16.8px;
}


#sports-page .cta {
    font-size: 13px;
    display: inline-flex;
    padding: 10px;
    border: solid 2px black;
    font-weight: 600;
    color: black;
    transition: all .15s ease-in;
    justify-content: center;
    text-align: center;
    line-height: 1.3rem;
}


#sports-page .cta:hover {
    text-decoration: none;
    background: black;
    color: white;
}


@media (min-width: 768px) {
    
    #sports-page .content-heading {
        font-size: 24px;
    }

    #sports-page .content-copy {
        font-size: 14px;
        line-height: 18.8px;
    }

    #sports-page .cta {
        font-size: 13px;
        padding: 15px;
    }
        
}

@media (min-width: 960px) {
    
    #sports-page .content-heading {
        font-size: 28px;
    }

    #sports-page .content-copy {
        font-size: 16px;
        line-height: 20.8px;
    }

    #sports-page .cta {
        font-size: 15px;
        padding: 20px;
    }
        
}

.content-copy.base {
    font-size: 12px!important;
    line-height: 16.8px!important;
}

.content-copy.large {
    font-size: 15px!important;
    line-height: 25px!important;
}


@media (min-width: 768px) {
    .content-copy.base {
        font-size: 14px!important;
        line-height: 18.8px!important;
    }
    
    .content-copy.large {
        font-size: 17px!important;
        line-height: 27px!important;
    }
}

@media (min-width: 960px) {
    .content-copy.base {
        font-size: 16px!important;
        line-height: 20.8px!important;
    }
    
    .content-copy.large {
        font-size: 20px!important;
        line-height: 30px!important;
    }
}

@media (min-width: 1200px) {
        
    .content-copy.large {
        font-size: 25px!important;
        line-height: 35px!important;
    }
}



/***************************/


/***** SECTION HEADER *******/
.section-header {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .5rem;
    margin: 1rem 0;
}

.section-header .heading {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.section-header .jumplink-heading {
    width: 100%;
    margin-bottom: unset;
    order: 2;
    justify-content: center;
}

.section-header .content {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.section-header .heading a.cta {
    margin: 20px 0;
    order: 1;
}

.section-header .header-copy.base {
    font-size: 12px!important;
    line-height: 16.8px!important;
}

.section-header .header-copy {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: -0.9px;
    font-style: normal;
    font-weight: 500;
}

.section-header .images {
    box-sizing: border-box;
    width: 95%;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
}

.section-header .images img {
    max-width: 95%;
    height: auto;;
}




@media (min-width: 768px) {

    .section-header .header-copy {
        font-size: 17px;
        line-height: 27px;
    }

    .section-header .header-copy.base {
        font-size: 14px!important;
        line-height: 18.8px!important;
    }
}

@media (min-width: 960px) {

    .section-header  {    
        flex-direction: row;
        flex-wrap: wrap;
        margin: 1rem 0;
        padding: 1rem;
    }

    .section-header .heading  {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }  

    .section-header .jumplink-heading { 
        width: unset;
        order: 1;
    }

    
    .section-header .heading a.cta {
        order: 2;
    }

    .section-header .header-copy.base {
        font-size: 16px!important;
        line-height: 20.8px!important;
    }

    .section-header .header-copy {
        font-size: 20px;
        line-height: 30px;
    }

    .section-header .content {
        padding: unset;
    }
    
    .section-header .images img {
        max-width: 85%;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) { 

    .section-header .header-copy {
        font-size: 25px;
        line-height: 35px;
    }

    .section-header .images {
        width: 50%;
    }

    .section-header .content {
        width: 50%;
    }
}

/***** SECTION HEADER END *******/







/***** PRODUCTS SHOWCASE *******/
.products-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .5rem;
    margin: 1rem 0;
}

.products-showcase > .content {
    width: 95%;    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;

}

.products-showcase .content-heading {
    margin-bottom: 10px;
}

.products-showcase .products {
    width: 100%;
    max-width: 1920px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px auto;
    gap: .5rem;
}

.products-showcase .prod-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48%;
    color: black;
}

.products-showcase .cta {
    margin-top: 15px;
}

.products-showcase .prod-wrap:hover {
    text-decoration: none;
}

.products-showcase .prod-wrap img {
    width: 85%;
    margin: 0 auto;
    display: block;
}

.products-showcase .prod-wrap .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    line-height: 14px;
}


.products-showcase .prod-wrap .content .name {
    text-align: center;
    font-size: 13px;
    line-height: 15px;
}

.products-showcase .prod-wrap .content .price {
    margin-top: 5px;
    text-align: center;
}

.products-showcase .prod-wrap .content .stock {
    color: #05A400
}

@media (min-width: 600px) {

    .products-showcase .prod-wrap {
        width: 50%;
    }

    .products-showcase .prod-wrap .content {    
        font-size: 14px;
        line-height: 16px;
    }
    
    .products-showcase .prod-wrap .content .name {
        font-size: 16px;
        line-height: 18px;
    }

    .products-showcase .prod-wrap .content .price { 
        margin-top: unset;
    }

    .products-showcase .prod-wrap .content .price br {
        display: none;
    }
    
    
    .products-showcase .prod-wrap .image {
        margin-bottom: 15px;
    }


    .products-showcase .products {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
    }

    .products-showcase .prod-wrap {
        width: 50%;
    }
}

@media (min-width: 960px) {

    .products-showcase {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .products-showcase .content {
        width: 65%;
    }

    .products-showcase.full-text .content {
        width: 80%;
    }
    
    .products-showcase .content-heading {
        margin-bottom: 30px;
    }
    
    .products-showcase .products {
        gap: 0;
        margin: 1rem 0;
        padding: 20px 0.5rem;
    }
    
    .products-showcase .prod-wrap {
        width: 25%;
        font-size: 13px;
    }
    
    .products-showcase .prod-wrap .image {
        max-width: 260px;
    }
    
    .products-showcase .prod-wrap .name {
        text-align: center;
    }

    .products-showcase .cta {
        font-size: 15px;
    }    

    .products-showcase.full-text .cta {
        margin-top: 1rem;
    }    
}



@media (min-width: 1200px) {
    .products-showcase {
        padding: 2rem;
        margin: 2rem 0;
    }

    .products-showcase .products {
        margin: 2rem 0;
    }

    .products-showcase .prod-wrap .image {
        max-width: unset;
    }
}

/***** PRODUCTS SHOWCASE END *******/




/***** TEXT-IMAGE SECTION *******/
.text-image-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0;
    padding: 1rem;
}

.text-image-section .content {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    padding: 1rem;
}

.text-image-section .content-copy p {
    margin-bottom: 5px !important;
}

.text-image-section .content .cta-wrap {
    text-align: center;
}

.text-image-section .image {
    order: 1;
    width: 100%;
}

.text-image-section .image img {
    max-width: 100%;
    height: auto;
}




@media (min-width: 768px) {

    .text-image-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .text-image-section .content {
        order: unset;
        width: 50%;
        row-gap: 2rem;
        padding: 2.4rem;
        box-sizing: border-box;
    }

    
    .text-image-section .content .cta-wrap {
        text-align: left;
    }


    .text-image-section .image {
        order: unset;
        width: 50%;
    }

    .text-image-section.img-right .content {
        order: 1
    }


    .text-image-section.img-right .image {
        order: 2
    }
    
}

/***** TEXT-IMAGE SECTION END *******/



/***** ICON/BRANDS & CONTENT SECTION *******/
.brands-section {
    box-sizing: border-box;
    width: 100%;
    max-width: 1920px;
    margin: 0.5rem 0;
    padding: 1rem;
}

.brands-section .heading {
    padding: 1rem;
}

.brands-boxes {
    max-width: 1920px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 95%;
    padding: 2rem 1rem;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: background .2s ease-in;    
}

.brand-item:hover {
    cursor: crosshair;
    background: #d9d9d9;
}

.brand-item .icon {
    width: 40%;
    display: flex;
    justify-content: center;
}

.brand-item .content {
    width: 50%;
}

.brand-item .icon img {
    max-width: 100%;
    width: 100px;
    height: auto;
}    

.brand-item .content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: .5rem 1rem;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    font-size: 13px;
    line-height: 18px;
}



.brand-item .content  .cta-wrap{
    text-align: center;
}

@media(min-width: 500px) {
    
    .brand-item {
        flex-direction: row;
    }
    .brand-item .icon img {
        width: 200px;
    }    
}

@media(min-width: 768px) {
    .brands-section {
        padding: 2rem 0;
    }

    .brand-item {
        width: 50%;
        padding: 3rem 1rem;
    }

}


@media(min-width: 960px) {

    .brands-section {
        padding: 1rem;
        margin: 1rem 0;
    }

    .brands-boxes {
        padding-top: 20px;
    }

    .brand-item {
        padding: 4rem 1rem;
    }
    
    .brand-item .icon {
        width: 50%;
    }

    .brand-item .content {
        width: 50%;
        padding: 2rem;
    }


    .brand-item .content .copy {
        transition: transform .2s ease-in;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        line-height: 20.8px;
    }
    
    .brand-item:hover .content .copy {
        transform: translateY(-88%);
    }
    
    .brand-item .content .cta-wrap {
        position: absolute;
        top: 50%;   
        display: block;
        opacity: 0;
        transform: translateY(0%);
        transition: all .2s ease-in;
    }
    
    .brand-item:hover .content .cta-wrap {   
        opacity: 1;
        transform: translateY(50%);
        cursor: pointer;
    }

}

.corner-borders {
    position: relative;
    background-color: #fff;
}


.corner-borders::before,
.corner-borders::after,
.corner-borders span::before,
.corner-borders span::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid #767676;
}

.corner-borders::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.corner-borders::after {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}

.corner-borders span::before {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
}

.corner-borders span::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}
  
  
/***** BRANDS SECTION *******/




/***** DIVIDER *******/

.sports-divider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem .25rem;
}

.sports-divider hr {
    flex-grow: 1;
}

@media( min-width: 960px){
    .sports-divider {
        margin: 1rem 0;
        padding: 1rem 0;
    }
}

/***** DIVIDER END *******/



/***** VIDEO *******/
.video-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}

.video-section .content-heading {
    margin-bottom: 1rem;
}

.video-embed {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/***** VIDEO END *******/