@charset "utf-8";
/*
Theme Name: Can You Hear Me Now?
Author: Salem Media Group
Author URI: https://salemmedia.com
Description: WordPress theme for the Can You Hear Me Now? Website.
Version: 1.0.0
Text Domain: canyouhearmenow
*/

@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

@import url('assets/css/normalize.min.css');



:root {
    --body-text-color: #ddd;
    --can-red: #bb2222;
    --can-red-hover: #b5160a;
    --can-teal: #19dadc;
    --can-teal-hover: #1be7e9;
    --heading-color:#fff;
    --link-color: #1be7e9;
    --border-radius: 2px;
    --text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    --filter-shadow: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
    --transition-all: all 0.2s ease;
}

html{scroll-behavior: smooth;}

body{font-size:16px; color:var(--body-text-color); font-family:  'Source Sans 3', Arial, Helvetica, sans-serif; background-color:#000;}

input, textarea, select, button{font-family: 'Source Sans 3', Arial, Helvetica, sans-serif; font-size: 16px !important;}

/*================================================
	Header
==================================================*/
.header{
    position: fixed;
    z-index: 500;
    width: 100%;
    top:0;
    left:0;
    background-color: rgba(0,0,0,1);
    transition: background-color 0.3s ease;  
}
.header.scrolled {
    background-color: rgba(17,17,17,1);
}
.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

@media (max-width: 780px) {
    .header_inner {
       height: 60px; 
    }
}
@media (max-width: 780px) {
    .header_inner {
       height: 60px; 
    }
}

/*================================================
	Main
==================================================*/
.main{
    width:100%;
    height:100%;
    min-height: 800px;
    position: relative;
    background-image: url("assets/images/main-bg.jpg");
    background-position: top center;
    background-repeat: no-repeat;
}
/*
.main::before {
    content: '';
    display: block;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, black, transparent);
    position: absolute;
    top: 0;
    left: 0;
}
*/
.site_width{
    max-width: 1260px;
    padding:0 30px;
    margin:0 auto;
    position: relative;
}

.header .site_width {
    z-index: 200;
}


@media (max-width: 780px) {
    .main{
        font-size: 87.5%;
    }
    .site_width{
        padding:0 20px;
    }
}

/*================================================
	Navigation
==================================================*/
/*  Main Nav ==============================*/
.header_nav_wrap,
.main_nav_wrap,
.main_nav,
.main_nav li,
.main_nav li a{
    height: 100%;
    display: flex;
    align-items: center;
}
.header_nav_wrap{
    column-gap: 20px;
    justify-content: space-between;
    width: 100%;
}
.main_nav{
    align-items: center;
    column-gap: 10px;
}
.main_nav li a{
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1em;
    text-decoration: none;
    padding: 0 10px;
    text-shadow: var(--text-shadow);
}
.main_nav li a:hover{
    color:var(--link-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 1150px) {
    .main_nav_wrap {
        display: none;
    }
}

/* Logo */
.main_logo{
    display: block;
    height:40px;
    width: auto;
}

@media (max-width: 780px) {
    .main_logo {
        height: 30px;
    }
}


/*  Button Nav ==============================*/
.button_nav_wrap,
.button_nav,
.button_nav li{
    display: flex;
    height: 100%;
}
.button_nav_wrap{
    justify-content: flex-end;
    align-items: center;
    color: #fff;
    text-shadow: var(--text-shadow);
    position: relative;
}

/* tickets and watch dates */
.button_nav_wrap .tickets {
    position: absolute;
    bottom: -27px;
    left: -24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 0px;
}

.button_nav_wrap .watch {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 0px;
    position: absolute;
    right: 59px;
    bottom: -27px;
}

.button_nav_wrap .label {
    display: flex;
    align-items: center;
    justify-content: center;
}
.button_nav_wrap .logo{
    height: 14px;
    display: block;
    width: auto;
    margin-left: 5px;
    filter: var(--filter-shadow);
}
.button_nav_wrap .date {
    color: #ffd71e;
    font-size: 1.125em;
    font-weight: 500;
}

.scrolled .tickets,
.scrolled .watch{
    display: none;
}

.button_nav {
    list-style: none;
    column-gap: 10px;
}
.button_nav li {
    align-items: center;
}
.button_nav li a {
    display: flex;
    color: #fff;
    background-color: var(--can-red);
    text-decoration: none;
    padding: 10px 16px;
    text-shadow: var(--text-shadow);
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.25em;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.button_nav li a:hover{
    background-color: var(--can-red-hover);
}
@media (max-width: 1100px) {
    .button_nav_wrap{
        font-size:87.5%;
    }
    .button_nav_wrap .tickets,
    .button_nav_wrap .watch{
        bottom: -18px;
    }
    .button_nav_wrap .logo{
        height:11px;
    }
}
@media (max-width: 780px) {
    .button_nav_wrap .tickets,
    .button_nav_wrap .watch{
        bottom: -28px;
    }

}
@media (max-width: 600px) {
    .button_nav_wrap{
        margin-left: 10px;
    }
    .button_nav_wrap .tickets,
    .button_nav_wrap .watch{
        bottom: -31px;
    }
    .button_nav_wrap .tickets{
        left: -28px;
    }
    .button_nav_wrap .watch{
        right: 39px;
    }
    .button_nav{
        width: 100%;
        justify-content: center;
    }
    .button_nav li a{
        padding: 0 10px;
        font-size: 14px;
        height: 42px;
    }
}
@media (max-width: 480px) {
/*
    .button_nav li a{
        max-width:90px;
    }
*/
    .button_nav_wrap .watch{
        right: 0;
    }
}


/*  Mobile Nav ==============================*/
/* Menu Btn */
.mobile_nav_menu_btn {
    display: none;
    width: 30px;
    height: 22px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    background: none;
    border: none;
}
.mobile_nav_menu_btn .menu_icon,
.mobile_nav_menu_btn .menu_icon::before,
.mobile_nav_menu_btn .menu_icon::after {
    display: flex;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
    content: '';
    align-items: center;
    justify-content: center;
}
.mobile_nav_menu_btn .menu_icon::before {
    top: -8px;
}
.mobile_nav_menu_btn .menu_icon::after {
    top: 8px;
}

.mobile_nav_menu_btn.open .menu_icon {
    background: transparent;
}
.mobile_nav_menu_btn.open .menu_icon::before {
    transform: rotate(45deg);
    top: 0;
}
.mobile_nav_menu_btn.open .menu_icon::after {
    transform: rotate(-45deg);
    top: 0;
}

@media (max-width: 1150px) {
    .mobile_nav_menu_btn {
    display: block;
    }
}
@media (max-width: 780px) {
    .mobile_nav_menu_btn {
        width:24px;
    }
}
/*
@media (max-width: 600px) {
    .mobile_nav_menu_btn {
        display: none;
    }
}
*/

/* Side Navigation */
.mobile_nav_wrap {
    position: fixed;
    left: -255px;
    top: 0;
    height: 100%;
    width: 250px;
    background-color: var(--can-red);
    color: white;
    padding-top: 85px;
    transition: var(--transition-all);
    z-index: 400;
}

.mobile_nav_wrap.open {
    left: 0;
}

.mobile_nav_wrap ul {
    list-style: none;
}

.mobile_nav_wrap ul li {
    padding: 15px 20px;
}

.mobile_nav_wrap ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

@media (max-width: 600px) {
    .mobile_nav_wrap {
        width:100vw;
        left: -101vw;
    }
}








/*================================================
	Footer Purchase Buttons
==================================================*/
.purchase_button_wrap {
    background: #101d20;
    padding: 16px 0;
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}
.purchase_button_container{
    list-style: none;
    column-gap: 10px;
    display: flex;
    justify-content: space-between;
    max-width: 1260px;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
}
.purchase_button_box{
    display: flex;
    height: 100%;
    align-items: center;
    width: 50%;
}
.purchase_button_box a {
    display: flex;
    color: #fff;
    background-color: var(--can-red);
    text-decoration: none;
    padding: 0px 16px;
    text-shadow: var(--text-shadow);
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.5em;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 60px;
    flex-direction: column;
}
.purchase_button_box a span {
    display: block;
    width: 100%;
    font-size: 0.75em;
}
.purchase_button_box a:hover {
    background-color: var(--can-red-hover);
}

@media (max-width: 900px) {
    .purchase_button_wrap{
    font-size: 87.5%;
    }
}
@media (max-width: 780px) {
    .purchase_button_wrap{
        padding: 12px 0 20px;
        font-size: 68.75%;
    }
    .purchase_button_container {
        padding: 0px 10px;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 10px;
    }
    .purchase_button_box {
        width:48%;
    }
    .purchase_button_box a {
        height: 42px;
    }
}





/*================================================
	Title Section
==================================================*/
.title_section{
    position: relative;
    padding-top: 80px;
}
/*
.title_section::after {
    content: '';
    width: 100%;
    height: 120px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, black, transparent);
    z-index: 1;
    opacity: 0.8;
    display: block;
}
*/

.title_section .site_width {
    z-index: 2;
}

.title_content_wrap {
    position: relative;
    /*height: calc(100vh - 80px);*/
    display: flex;
    align-items: center;
    padding: 3rem 0 6rem;
}

.title_content_wrap .poster_wrap{
width:60%;
padding-left:20px;
position: absolute;
top: -3vw;
right: 0;
z-index: 1;
/*mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 60%,rgba(0,0,0,0) 100%);*/
mask-image: linear-gradient(to bottom, transparent 0%,#000000 20%,#000000 80%,transparent 100%);
}
.title_content_wrap .poster_wrap img{
width:100%;
height: auto;
mask-image: linear-gradient(to right, #000000 80%,transparent 100%);
}

.title_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    gap: 2em;
    position: relative;
    z-index: 5;
    padding-bottom: 1rem;
}

.title_content .tagline,
.tagline_mobile{
    font-size: clamp(1rem, 0.606vw + 0.773rem, 1.25rem);
    color: var(--can-teal);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 400;
    text-transform: uppercase;
}
.tagline_mobile{
    width: 100%;
    display: none;
}

.title_content .title{
    display: block;
    width: 100%;
}
.title_content .title img{
    display: block;
    height: auto;
    width: 100%;
    margin: 0 auto;
}
.poster_wrap .poster_mobile{
    display: none;
}

.title_content .title img.short {
    max-width: 360px;
}
.title_content .title img.tall{
    display: none;
}

.title_content_wrap .trailer_btn {
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    font-size: 24px;
    column-gap: 10px;
    color: #fff;
    text-shadow: var(--text-shadow);
    border: 1px solid var(--can-teal-hover);
    background: rgba(25, 218, 220, 0.7);
    width: 240px;
    display: flex;
    text-transform: uppercase;
    font-weight: 500;
    line-height: normal;
    margin-top: 10px;
    transition: var(--transition-all);
}
.title_content_wrap .trailer_btn .play_icon {
    position: relative;
    display: flex;
    width: 34px;
    height: 34px;
    border: 2px solid #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    transform-origin: center;
    z-index: 3;
}
.title_content_wrap .trailer_btn .play_icon::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid #fff;
    left: 10px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}
.title_content_wrap .trailer_btn:hover,
.title_content_wrap .trailer_btn:focus{
    background: var(--can-teal-hover);
    cursor: pointer;
}

.title_content_wrap .trailer_btn-mobile{
    display: none;
}


.available{
    font-size: clamp(1rem, 0.606vw + 0.773rem, 1.25rem);
    color:#fff;
    text-align: center;
    margin-top: 2rem;
}
.available img{
    display: inline-block;
    height: 15px;
    margin: 0px 2px;
}
.available-mobile{
    display: none;
    width: 100%;
}

@media (max-width: 1050px) {
    .title_content_wrap .poster_wrap{
        position: relative;
    }
    .title_content_wrap .trailer_btn{
        padding: 10px 0;
        width: 220px;
    }
}
@media (max-width: 780px) {
    .title_section{
        padding-top:60px;
        /*padding-bottom: 6em;*/
    }
    .title_content{
        padding: 6vw 0 0 0;
        width: 22%;
        align-items: end;
    }
    .title_content_wrap{
        align-content: space-evenly;
        /*height: 90vh;
        padding-top: 1rem;*/
        flex-wrap: wrap;
        justify-content: center;
    }
    .title_content .title img.short {
        display: none;
    }
    .title_content .title img.tall{
        display: block;
        max-width: 150px;
    }
    .title_content .tagline{
        display: none;
    }
    .title_content_wrap .trailer_btn-desktop {
        display: none;
    }
    .title_content_wrap .trailer_btn-mobile{
        display: flex;
        margin: 2rem auto 0;
    }
    .title_content_wrap .poster_wrap {
        position: relative;
        width: 62%;
        top: -3vw;
    }
    .tagline_mobile {
        display: flex;
    }
    .available-mobile{
        display: block;
    }
    .available-main{
        display: none;
    }
    .available img{
        height:13px;
    }
}

@media (max-width: 600px) {
    .title_content{
        width: 30%;
    }
    .title_content_wrap .trailer_btn{
        font-size: 18px;
        width: 190px;
    }
    .title_content_wrap .trailer_btn .play_icon{
        width:24px;
        height:24px;
    }
    .title_content_wrap .trailer_btn .play_icon::before{
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 9px solid #fff;
        left: 7px;
    }
    .title_content_wrap .poster_wrap{
        width: 60%;
    }
    .poster_wrap .poster_mobile{
        display: block;
    }
    .poster_wrap .poster_main{
        display: none;
    }
}
@media (max-width: 480px) {
    .title_content_wrap {
       /*/height: 80vh;*/
    }
}





/*================================================
	Signup Section
==================================================*/
.signup_section {
    background-color: var(--can-red);
    padding: 3em 0;
    position: relative;
    z-index: 3;
}
.signup_content_wrap {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 0 1em;
    grid-template-columns: 1fr 310px;
    max-width: 1010px;
    margin: 0 auto;
}
.signup_text {
    display: flex;
    align-items: center;
    font-weight: 500;
    text-shadow: var(--text-shadow);
    color:#efefef;
    line-height: 1.3;
    font-size: clamp(1rem, 1.379vw + 0.397rem, 1.5rem);
}
.signup_text img {
    display: block;
    width: 30px;
    height: auto;
    margin-right: 14px;
    filter: var(--filter-shadow);
}
.signup_form {
    display: grid;
    grid-template-columns: 200px 110px;
    position: relative;
}
.signup_form .signup_field {
    background-color: #fff;
    border: none;
    border-radius: 2px 0 0 2px;
    font-size: 1em;
    color: #111;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 10px;
    width: 100%;
}
#submitBtn{
    border: none;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background: #000;
    border-radius: 0 2px 2px 0;
    width: 100%;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
#submitBtn:hover {
    background: #111;
}

/* error messages */
label.error {
    position: absolute;
    top: 52px;
    background: #a66464;
    color: #fff;
    text-shadow: var(--text-shadow);
    border-radius: 3px;
    padding: 5px 10px;
}
.subscribe_alert {
    color: #fff;
    border-radius: 3px;
    padding: 5px 10px;
    text-shadow: var(--text-shadow);
}
.subscribe_alert strong{
    font-weight:600;
}
.subscribe_alert.subscribe_alert_success {
    background: #2ba218;
}
.subscribe_alert.subscribe_alert_fail{
    background:#a66464;
}

@media (max-width: 780px) {
    .signup_section{
        padding: 1.5em 0;
    }
    .signup_content_wrap{
        display: flex;
        flex-direction: column;
    }
    .signup_text{
        margin-bottom:16px;
    }
    .signup_text .shorten{
        display: none;
    }
}
@media (max-width: 500px) {
    .signup_form{
        width: 100%;
        grid-template-columns: 1fr 110px;
    }
}



/*================================================
	Site Sections
==================================================*/
.site_sections_wrap {
    position: relative;
    padding-bottom: 20rem;
    background-image: url("assets/images/bottom-bg.jpg");
    background-position: center bottom -13rem;
    background-repeat: no-repeat;
}

.site_section {
    padding: 7em 0 0 0;
    position: relative;
    scroll-margin-top: 30px;
}
.section_content_wrap{
    position: relative;
    z-index: 5;
}
.section_heading {
    color: var(--heading-color);
    font-family: 'League Gothic', 'Source Sans 3', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 7vw - 0.6rem, 3.125rem);
    margin-bottom: 2rem;
    display: block;
}
.section_width {}


@media (max-width: 900px) {
    .site_section {
        padding: 6em 0 0 0;
    }
}
@media (max-width: 780px) {
    .section_heading{
        text-align: center;
    }
    .site_sections_wrap::after {
        background-size: 1360px;
        background-position: left -310px center;
    }

}
@media (max-width: 600px) {
    .site_section {
        padding: 5em 0 0 0;
    }
}

/* Pages ==================================================*/
.site_section-page{}

.site_section-page:first-child{
    padding-top:10em;
}


.post_content {
    font-size: 1.25em;
    line-height: 1.4;
}
.post_content h1,
.post_content h2,
.post_content h3,
.post_content h4,
.post_content h5,
.post_content h6{
display:block;
margin-bottom:1em;
line-height:1.3;
padding-top:10px;
}
.post_content h1{
font-size:clamp(1.5rem, 3.5vw, 2rem);
}
.post_content h2{
font-size:clamp(1.375rem, 3.5vw, 1.75rem);
}
.post_content h3{
font-size:clamp(1.25rem, 3.5vw, 1.5rem);
}
.post_content h4,
.post_content h5,
.post_content h6{
font-size:1.125em;
}
.post_content p,
.post_content ul,
.post_content ol,
.post_content blockquote{
line-height: 1.5;
}
.post_content p{
margin-bottom:1.5em;
}
.post_content p:last-child{
 margin:0;
}
.post_content blockquote{
padding:0 2em;
font-style:italic;
color:#888888;
margin-bottom:1.5em;
}
.post_content a{
color: var(--link-color);
text-decoration: underline;
}
.post_content ul{
list-style-type:square;
padding-left:2em;
}
.post_content ul > li > ul{
list-style-type:circle;
padding-bottom:10px;
padding-top:10px;
}
.post_content ol{
list-style-type:decimal;
padding-left:2em;
}
.post_content ol > li > ol{
list-style-type:lower-alpha;
padding-left:2em;
padding-bottom:10px;
padding-top:10px;
}
.post_content ul li,
.post_content ol li{
padding-bottom:1.5em;
}
/* Images */
.post_content img{
margin:0 auto;
display:block;
height:auto;
}
.post_content img.aligncenter,
.post_content img.alignnone{
margin:1em auto;
display:block;
max-width:100%;
height:auto;
}
.post_content p:first-child > img.aligncenter,
.post_content p:first-child > img.alignnone{
margin:0 auto 1em;
}
.post_content img.alignleft{
float:left;
margin-right:30px;
margin-bottom:10px;
margin-top:5px;
display:block;
max-width:40%;
height:auto;
}
.post_content img.alignright{
float:right;
margin-left:23px;
margin-bottom:10px;
margin-top:5px;
display:block;
max-width:40%;
height:auto;
}
/* Images with captions */
.post_content div img{
margin:0 auto 1.5em;
display:block;
}
.post_content div.alignleft{
float:left;
margin-right:20px;
margin-bottom:10px;
margin-top:5px;
max-width:40% !important;
}
.post_content div.alignright{
float:right;
margin-left:20px;
margin-bottom:10px;
margin-top:5px;
max-width:40% !important;
}
.post_content div.aligncenter,
.post_content div.alignnone{
margin:0 auto 1.5em;
}
.post_content div.alignleft img,
.post_content div.alignright img{
display:block;
width:100%;
height:auto;
margin-bottom:10px;
}
.post_content div.aligncenter img,
.post_content div.alignnone img{
margin:0 auto 10px;
display:block;
width:100%;
max-width:640px;
height:auto;
}
.post_content .wp-caption-text{
font-size:12px;
color:#727272;
display:block;
width:100%;
max-width:500px;
margin:0 auto;
text-align:center;
line-height:1;
padding-bottom:0;
}

@media (max-width: 700px) {
	.post_content img.alignleft,
	.post_content img.alignright{
	float:none;
	margin:0 auto 1.5em;
	max-width:100%;
	}
	.post_content div.alignleft,
	.post_content div.alignright{
	float:none;
	margin:0 auto 1.5em;
	max-width:100% !important;
	}
}


/*================================================
	About Film
==================================================*/
.site_section-about {}



/*================================================
	The cast
==================================================*/
.featuring_wrap {
    display: grid;
    gap: 4rem 3rem;
    grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
}
.featuring_box {
    display: flex;
    flex-direction: column;
    row-gap: 13px;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 1.25em;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    
}
.featuring_box img {
    display: block;
    width: 100%;
    height: auto;
    transition: var(--transition-all);
}
.featuring_box img:hover{
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .featuring_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .featuring_box {
        max-width: 250px;
    }
}



/*================================================
	Trailers and Pics
==================================================*/
/* Slider ================================*/
.slider_wrap {
    position: relative;
}
.slick-list{
    z-index: 10;
}
.slick-slide{
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-all);
    position: relative;
}
.slick-slide.slick-current {
    opacity: 1;
}

.slick-slide .video_info {
    display: flex;
    width: 660px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 10%;
    z-index: 2;
}
.slick-slide .video_info .video_title {
    color: #fff;
    background: var(--can-red);
    display: inline-block;
    padding: 10px 5%;
    font-size: clamp(0.875rem, 1.429vw + 0.446rem, 1.125rem);
    font-weight: 600;
    text-shadow: var(--text-shadow);
}

.slick-slide .play_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    transform-origin: center;
    z-index: 3;
}
.slick-slide .play_icon::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 36px solid #fff;
    left: 23px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
}

.slick-slide img {
    display: block;
    width: 100%;
    max-width:660px;
    height: auto;
    margin:0 100px;
    opacity:0.8;
    transition: var(--transition-all);
}
.slick-slide.slick-current:hover img {
    opacity: 1;
}

/* Slider nav dots */
.slider_dots_wrap {
    margin-top: 30px;
}
.slick-dots {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    column-gap: 20px;
    margin-top: 30px;
}
.slick-dots li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-dots button {
    background: #fff;
    width: 12px;
    height: 12px;
    border: 0;
    font-size: 0 !important;
    border-radius: 50%;
    opacity: 0.3;
    transition: var(--transition-all);
    cursor: pointer;
    color: transparent;
}
.slick-active button {
    background: var(--can-red-hover);
    opacity: 1;
}

/* Slider nav arrows */
.slider_arrow_wrap {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 15;
    bottom: 0;
    max-width: 860px;
    left: 50%;
    transform: translateX(-50%);
}
.slider_arrow_wrap button {
    border: 0;
    background: none;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-all);
    opacity: 0.5;
    position: absolute;
    top: -270px;
    left: 0;
}
.slider_arrow_wrap .slick-next {
    right: 0;
    left: auto;
}
.slider_arrow_wrap button svg {
    height: 50px;
    width: auto;
    display: block;
}
.slider_arrow_wrap button:hover{
opacity: 1;
}

.slick-next svg{
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.slick-next:hover svg {
  transform: translateX(8px);
}

.slick-prev svg{
display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.slick-prev:hover svg{
transform: translateX(-8px);
}

@media (max-width: 1000px) {
    .slick-slide{
        margin:0;
    }
    .slide_content{
        width:560px;
    }
    .slider_arrow_wrap{
        max-width: 96%;
    }
    .slider_arrow_wrap button {
        top: -240px;
    }
}
@media (max-width: 850px) {
    .slide_content{
        width:auto;
    }
    .slider_arrow_wrap{
        max-width: 75%;
    }
    .slider_arrow_wrap button {
        top: auto;
        bottom: -10px;
    }
}
@media (max-width: 780px) {
    .slick-slide{
        font-size:75%;
    }
    .slick-slide .play_icon{
        transform: translate(-50%, -50%) scale(75%);
    }
}
@media (max-width: 700px) {
    .slick-slide .video_info {
        width:92vw;
    }    
    .slick-slide img {
        width:92vw;
        margin:0 50px;
        max-width: none;
    }
    .slider_arrow_wrap{
        max-width: 92%;
    }
}
@media (max-width: 480px) {
    .slick-slide{
        font-size:62.5%;
    }
    .slick-slide .play_icon{
        transform: translate(-50%, -50%) scale(62.5%);
    }
}


/* Modal ================================*/
#slideModal {
    display:none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    left: 0;
    z-index: 1000;
}
.modal-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#modal-body-content {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px;
    position: relative;
}
.modal-close {
    font-size: 50px;
    font-weight: 200;
    position: absolute;
    top: 10px;
    right: 10px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    border: 1px solid #fff;
    color: #fff;
    opacity: 0.4;
    transition: var(--transition-all);
    cursor: pointer;
}
.modal-close:hover{
    opacity: 1;
    border-color: var(--can-red-hover);
    background: var(--can-red-hover);
}

/* Image */
#modal-body-content img {
    display: block;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
}

/* Video */
.modal_video_wrap{
    width: 100%;
    margin:0 auto;
    position: relative;
    z-index: 5;
    max-width: 1020px;
}
.modal_video_wrap div{
    padding:56.25% 0 0 0;
    position:relative;
}
.modal_video_wrap iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border: 0;
}

/* loading spinner */
.spinner::before{
    content:'';
    position: absolute;
    z-index: 1;
    left:auto;
    right:auto;
    border: 7px solid rgba(255, 255, 255, 0.2);
    border-left-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 700px) {
    #modal-body-content {
        padding:20px;
    }
}


/*================================================
	Watch - Streaming options
==================================================*/
.site_section-watch{}

/* Watch =================================*/
.watch_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.watch_box{
    position: relative;
}
.watch_box-poster{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    min-width: 200px;
}
.watch_box-poster img {
    display: block;
    max-width: 100%;
    height: auto;
}
.watch_box-locations{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    padding-left: 40px;
}

.watch_box_locations_wrap {
    display: flex;
    flex-direction: column;
    row-gap: 2em;
    width: 100%;
}
.watch_box_location {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 160px;
    gap: 20px 12px;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.4);
    padding-bottom: 2em;
}
.watch_box_location:last-child {
    border: none;
}
.watch_box-locations .label {
    font-size: clamp(1.5rem, 11.25vw - 3.672rem, 2.75rem);
    font-weight: 600;
    display: flex;
    width: 100%;
    color: #fff;
}
.watch_box-locations .label .logo {
    display: block;
    width: auto;
}
.watch_box_location-salemnow .logo {
    height: clamp(24px, 11.25vw - 4rem, 32px);
}
.watch_box_location-rumble .logo {
    height: clamp(30px, 11.25vw - 4rem, 42px);
}
.watch_box_location-gjw .logo {
    height: clamp(40px, 11.25vw - 4rem, 52px);
}
.watch_box_location-amazon .logo {
    height: clamp(30px, 11.25vw - 4rem, 42px);
}
.watch_box-locations .date {
    font-weight: 600;
    color: #ffd71e;
    text-align: center;
    font-size: clamp(1.75rem, 12.5vw - 3.969rem, 3rem);
}
.watch_box-locations .btn {
    display: flex;
    color: #fff;
    background-color: var(--can-red);
    text-decoration: none;
    padding: 0.5em 0;
    text-shadow: var(--text-shadow);
    border-radius: var(--border-radius);
    justify-content: center;
    font-size: 1.5em;
    font-weight: 500;
}
.watch_box-locations .btn:hover {
    background-color: var(--can-red-hover);
}

@media (max-width: 1000px) {
    .watch_wrap{
        flex-direction: column;
        row-gap: 30px;
    }
    .watch_box_location{
        grid-template-columns: 1fr 140px 140px;
    }
    .watch_box-locations{
        font-size: 75%;
        padding-left:0;
        width: 100%;
    }
}
@media (max-width: 780px) {
    .watch_wrap {
        flex-direction: column;
        row-gap: 30px;
    }
}
@media (max-width: 600px) {
    .watch_box_location{
        display: flex;
        flex-wrap: wrap;
    }
    .watch_box-locations .label{
        justify-content: center;
    }
    .watch_box-locations .btn{
        width: 48%;
        max-width: 200px;
    }
    .watch_box-locations .blank{
    display: none;
    }
}


/*================================================
	Footer
==================================================*/
.footer {
    background: #000;
    padding: 3em 0;
    position: relative;
    z-index: 20;
}
.footer_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_logo_wrap {
    font-size: 12px;
    color: #777;
}
.footer_logo_wrap .logo {
    display: block;
    height: 60px;
    width: auto;
}
.footer_logo_wrap .copyright{
    margin-top:12px;
}
.footer_nav_wrap{
    font-size: 14px;
    color: #777;
}
.footer_nav {
    list-style: none;
    display: flex;
    column-gap: 15px;
    flex-wrap: wrap;
    row-gap: 8px;
}
.footer_nav li a {
    color: #777;
    text-decoration: none;
}
.footer_nav li a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1000px) {
    .footer_content{
        flex-direction: column;
        row-gap: 20px;
    }
    .footer_logo_wrap {
        text-align: center;
    }
    .footer_logo_wrap .logo{
        margin:0 auto;
    }
    .footer_nav{
        justify-content: center;
    }
    #us-nat-optout {
        text-align: center;
    }
}





.grecaptcha-badge {
    visibility: hidden;
}





