/* Document Default */
@media screen {
    /* Header */
    header{position:relative;width:100%;padding-top:58px;background: var(--background-dark);display:flex;flex-direction:column;align-items:center;justify-content:flex-start;z-index:10;}
    header.header_odd{
        background: transparent;
    }
    .header_title{padding:5%; width:100%;}
    .header_default, .header_text{text-align:center;}
    .header_custom h1,
    .header_default h1{line-height:1.2;font-size:24px;text-align:center;margin-bottom:3%;line-height:1.2;font-style:italic;z-index:1}
    .header_default h1.h1_manager{margin-bottom: 16px;}
    .header_custom h2,
    .header_default h2{font-size:20px;line-height:1.2;text-align:center;line-height:1.2;font-style:italic;z-index:1}
    .header_default h2.subtitle,
    .header_custom .subtitle{
        font-size: 17px;
        font-weight: 400;
    }
    .header_call_to_action{width:100%;background:var(--background-dark);display:flex;flex-direction:row;align-items:center;justify-content:center}
    .header_call_to_action_content{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:0}

    .header_page,
    .header_page .wrapper{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .header_page h1{
        color: white;
        font-size: 28px;
    }

    .header_cta{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap:8px;
        border:1px solid #323232;
        padding: 16px;
        border-radius: 8px;
        cursor: pointer;
    }
    .header_cta:hover{
        border-color: #707070;
    }
    .header_cta_pt{
        background-image: url('/frontend/static/images/www/header_cta_pt_bg.jpg');
        background-position: right;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .header_cta_oc{
        background-image: url('/frontend/static/images/www/header_cta_oc_bg.jpg');
        background-position: right;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .header_cta_bc{
        background-image: url('/frontend/static/images/www/header_cta_bc_bg.jpg');
        background-position: right;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .header_cta h4{
        color: white;
        font-size: 16px;
        text-transform: uppercase;
    }

    .header_cta .button{
        padding: 2px 8px;
        width: auto;
        font-size: 14px;
        height: 28px;
        white-space: nowrap;
    }
    .header_cta:hover .button{
        background: blue;
    }

    .pad_4pt{
        padding-top:32px;
    }
    .pad_32t{
        padding: 32px 0 0 0;
    }

    /* Video Iframe */
    .header_video_container{position:relative;margin:0;width:100%;border:0 solid #000;background:#000;border-radius:0;transition:width .3s,padding-top .3s,border-width .3s,border-radius .3s}
    
    /* Referral Form */
    .header_referral_form{background:black;width:100%;border-radius:0;margin:0;-webkit-box-shadow:0 0 18px -6px #000000;box-shadow:0 0 18px -6px #000000;border:1px solid rgba(255,255,255,.1);color:var(--background-dark-label);transition:width .3s,border-radius .3s,margin .3s}
    .header_referral_form_title{padding:16px;border-bottom:1px solid #1e1e1e;display:flex;flex-direction:row;align-items:center;justify-content:center;color:inherit}
    .header_referral_form_title h3{margin:0;font-size:18px;color:inherit;font-weight:600}
    .header_form_body{padding:16px}
    .header_form_body p{padding:4px;font-size: 14px; color:white;}
    .header_form_footer{padding:16px;border-top:1px solid #1e1e1e;display:flex;flex-direction:row;align-items:center;justify-content:flex-start}
    .header_form_footer button{height:auto;width:100%;font-size:16px;font-weight:600;background:var(--active-color);border-radius:6px;border:none;padding:12px;color:white;cursor:pointer}
    .header_form_footer .btn_flex_group{
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
    .header_form_footer .btn_flex_group svg{
        border: 2px solid #333;
        border-radius: 6px;
    }
    .header_form_footer .btn_flex_group a:hover svg{
        border-color: var(--active-color);
    }
    .header_form_footer_flex{
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }
    /* Section Defaults */
    section{padding:8% 0;display:flex;flex-direction:column;align-items:center;justify-content:center}
    section.section_nopad{
        padding: 0;
    }
    .section_odd{background:white}
    .section_dark{background:black}
    .section_dark h2{color:white}
    .section_content {
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
        top:32px;
        opacity: 0;
        transition:top .7s, opacity .7s;
        will-change: left, opacity;
    }
    .section_heading.section_content{
        margin-bottom: 4%;
        font-size: 28px;
    }
    .section_content.animate{
        top:0px;
        opacity: 1;
    }
    .section_content h2{position:relative;font-size:20px;text-transform:uppercase;font-weight:600}
    .section_content h2::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        height: 3px;
        background: blue;
        z-index: 0;
        width: 0px;
        transition: width .7s;
        will-change: width;
    }    
    .section_content h2.center{align-self:center; text-align: center;}
    .section_content h2.center::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        height: 3px;
        background: blue;
        margin-left: -25px;
        z-index: 0;
        width: 0px;
        transition:width .7s;
        will-change: width;
    }
    .section_content.animate h2::after,
    .section_content.animate h2.center::after{
        width:50px;
    }
    .section_content h3{
        margin-top: 6px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 1.2;
        font-size: 14px;
    }
    .section_heading.section_content h2{
        font-size: 30px;
        font-weight: bold;
    }
    .section_heading.section_content h3{
        font-size: 26px;
        font-weight: 400;
        width: 100%;
        text-align: center;
        text-transform: capitalize;
    }
    .acronim{
        font-weight: bold;
    }
    .section_content p{font-size:14px}
    .modal ul,
    .section_content ul{list-style:none;list-style-position:inside;font-size:15px}
    .modal li,
    .section_content li{list-style:none;display:table-row}
    .modal li{
        color: #eee;
        height: 32px;
    }
    .modal ul li::before,
    .section_content > ul > li::before{content:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="12px" height="12px"><g fill="green"><path d="M48.54,15.35,22.16,41.73a5,5,0,0,1-7.08,0L1.47,28.11A5,5,0,0,1,8.54,21L18.62,31.11,41.46,8.27a5,5,0,0,1,7.08,7.08Z"/></g></svg>');display:table-cell;text-align:right;padding-right:9px}
    .section_images {position: relative;}
    .map_iframe,
    .section_images img{border-radius:8px;overflow:hidden;outline:4px solid rgba(0,0,0,.1);-webkit-box-shadow:0 0 40px -15px #000000;box-shadow:0 0 40px -15px #000000;font-size:0}
    .section_content li .title{
        font-weight: bold;
        font-size: 14px;
    }
    .section_iframe{
        flex: 1;
        width: 100%;
    }
    .map_iframe_container{
        position: relative;
        width: 100%;
        padding-top: 100%; /* Maintain a 1:1 aspect ratio */
    }
    .map_iframe{
        position: absolute;
        top:0;
        left:0;
        width: 100%;
        height: 100%;
    }
    .tour_iframe{
        position: relative;
        width: 100%;
        height: 450px;
    }
    .tour_iframe iframe{
        width: 100%;
        position: absolute;
        top:0;
        left: 0;
    }
    .tour_overlay{
        width: 100%;
        height: 100%;
        position: absolute;
        top:0;
        left: 0;
        background: rgba(0,0,0,.5);
        z-index: 2;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .tour_overlay.hidden{
        display: none;
    }
    .tour_enter_button{
        width: auto;
    }

    .picture_square {
        position: relative;
        width: 100%;
        padding-top:100%;
        background: #000;
    }
    .picture_square img{
        position: absolute;
        top:0;
        left: 50%;
        transform: translateX(-50%) scale(1);
        transition: transform 0.3s ease;
        will-change: transform;
        background: #000;
        
    }
    .picture_square:hover img{
        transform: translateX(-50%) scale(1.08);
        transition: transform 0.3s ease;
        will-change: transform;
    }
    
    ul.ul_{
       display: flex;
       flex-direction: column;
       align-items: flex-start;
       justify-content: flex-start;
       gap: 10px;
    }
    ul.ul_ li:before{
        display:inline;
    }
    /* Section Double Today */

    /* Section Join Today */
    .section_join_today.content_padding{padding:0 4%}
    .section_join_today{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:24px}
    .section_join_today_data{width:100%;flex:1;display:flex;flex-direction:row;align-items:center;justify-content:center;gap:4%}
    .section_join_today_counter{position:relative;background:#0783fe;width:100%;padding-bottom:36%;border-radius:6px;overflow:hidden;text-align:center}
    .section_join_today_counter.happy_clients {
        position: relative;
        background: #0783fe url('/frontend/static/images/site/happy_clients.jpg') center center no-repeat;
        background-size: auto;
        box-shadow: inset 0 0 0 2000px rgba(54, 154, 255, .9);
        background-size: cover;
        color: white;
        left: -20px;
        opacity: 0;
        transition:left .5s, opacity .5s;
        will-change: left, opacity;
    }
    .section_join_today_counter.happy_clients.animate{
        left:0px;
        opacity: 1;
    }
    .section_join_today_counter.fat_loss {
        position: relative;
        background: #0783fe url('/frontend/static/images/site/fat_loss.jpg') center center no-repeat;
        background-size: auto;
        box-shadow: inset 0 0 0 2000px rgba(54, 154, 255, .9);
        background-size: cover;
        color: white;
        right: -20px;
        opacity: 0;
        transition:right .5s, opacity .5s;
        will-change: right, opacity;
    }
    .section_join_today_counter.fat_loss.animate{
        right:0px;
        opacity: 1;
    }
    .section_join_today_counter_content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%}
    .section_join_today_counter_content .counter{font-size:24px;font-weight:600}
    .section_join_today_counter_content h3{font-size:13px;font-weight:600}
    .section_join_today_counter.content_grid{
        min-height: 120px;
    }

    .section_join_today_counter.content_grid .icon{
        display: inline-block;
        width: 27px;
    }

    .section_join_today_counter.content_grid h2{
        font-size: 20px;
        text-transform: uppercase;
    }

    /* Section 70% */

    /* Section Success Stories */
    .section_70p{width:70%;flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center}
    .section_success_stories{width:100%;flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center}

    /* Image Carousel */
    .carousel {
        position: relative;
        width: 100%;
        min-width: 100vw;
        max-width: 100vw;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 24px 0;
        overflow-y: hidden;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 8px;
        left:90%;
        transition:left .5s;
        will-change: left;
    }
    .carousel.animate{
        left:0%;
    }  
    .carousel_item{margin:8px;padding:4px;min-width:278px;max-width:320px;-webkit-box-shadow:-1px 12px 22px -26px rgb(0 0 0 / 75%);box-shadow:-1px 12px 32px -26px rgb(0 0 0 / 75%);scroll-snap-align:start;background:black;border-radius:6px;font-size:0}

    /* Section Reviews */
    .section_erafit_bg{background:black url('/frontend/static/images/signup/app/erafit_bg.jpg');background-position-x:0;background-position-y:0;box-shadow:inset 0 0 0 2000px rgba(0,0,0,.8);background-repeat:repeat;background-attachment:scroll;background-size:auto;background-attachment:fixed;background-position:center;background-repeat:no-repeat;background-size:100%}
    .section_erafit_bg .section_content h2{
        font-size: 32px;
    }
    
    
    .section_review_container{background:black url('/frontend/static/images/site/reviews_bg_ls_all.jpg');background-position-x:0;background-position-y:0;box-shadow:inset 0 0 0 2000px rgba(0,0,0,.5);background-repeat:repeat;background-attachment:scroll;background-size:auto;background-attachment:fixed;background-position:center;background-repeat:no-repeat;background-size:100%}
    .section_reviews{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:32px}
    .section_reviews_group{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px}
    .section_reviews_group .icon svg{width:34px}
    .section_reviews_group a{display:block;width:202px;max-width:240px;text-decoration:none;display:flex;flex-direction:row;align-items:center;justify-content:flex-start;gap:8px;border:1px solid black;border-top-width:3px;padding:8px 16px;border-radius:6px;background:white}
    .section_reviews_group a.yelp {
        position: relative;
        color: #c1272d;
        border-color: #c1272d;
        opacity: 0;
        top:40px;
        transition:opacity .6s, top 1s;
        will-change: opacity;
        z-index: 0;
    }
    .section_reviews_group a.yelp.animate{
        opacity: 1;
        top:0;
    }
    
    .section_reviews_group a.google {
        position: relative;
        color: #008623;
        border-color: #008623;
        z-index:10;
        opacity: 0;
        top:40px;
        transition:opacity .6s, top 1s;
        will-change: opacity;
    }

    .section_reviews_group a.google.animate{
        opacity: 1;
        top:0;
    }
    
    .section_reviews_group a.facebook {
        position: relative;
        color: #475993;
        border-color: #475993;
        opacity: 0;
        top:40px;
        transition:opacity .6s, top 1.5s;
        will-change: opacity;
        z-index: 0;
    }

    .section_reviews_group a.facebook.animate{
        opacity: 1;
        top:0;
    }
    .section_reviews_group .icon{width:40px;font-size:0}
    .section_reviews_group .title{font-weight:600;font-size:14px}
    .review_stars{display:flex;flex-direction:row;align-items:center;justify-content:flex-start}
    .review_stars .star{display:block;width:14px;margin-right:4px}
    .review_stars .score{font-weight:600}

    /* Section Featues */
    .section_features{display:flex;flex-direction:row;align-items:center;justify-content:center;gap:32px}
    .section_features.align_start{
        align-items: flex-start;
    }
    .section_features .section_images {
        /* width: 60%; */
        flex:1;
        display: flex;
        flex-direction: row;
        align-self: center;
        justify-content: center;
    }
    .section_features .section_content{width:40%}

    /* Section TEAM */
    /* .section_features.feature_team .section_images{
        width:40%;
    }
    .section_features.feature_team .section_content{
        width:60%;
    } */

    /* Section Training Plans */
    .trainig_plan_float_main {
        position: relative;
        opacity: 0;
        width: 90%;
        transition:opacity .6s, width .6s;
        will-change: opacity, width;
    }
    .trainig_plan_float_main.animate{
        opacity: 1;
        width: 100%;
    }
    
    img.trainig_plan_float_right {
        width: 20%;
        position: absolute;
        top: 50%;
        left: 0%;
        opacity: 0;
        transform: translate(0, -50%);
        transition: top .3s ease-out, left .3s ease-out, opacity .3s ease-out;
        outline: 4px solid rgba(255, 255, 255, .25);
        transition-delay: 150ms;
        transition-property: opacity, left;
        transition-timing-function: ease-out;
        transition-duration: .6s;
        will-change: opacity, left;
    }
    img.trainig_plan_float_right.animate {
        left: -6%;
        opacity: 1;
    }
    
    img.trainig_plan_float_left {
        width: 20%;
        position: absolute;
        top: 50%;
        right: 0%;
        opacity: 0;
        transform: translate(0, -50%);
        transition: top .3s ease-out, right .3s ease-out, opacity .3s ease-out;
        outline: 4px solid rgba(255, 255, 255, .25);
        transition-delay: 150ms;
        transition-property: opacity, right;
        transition-timing-function: ease-out;
        transition-duration: .6s;
        will-change: opacity, right;
    }
    img.trainig_plan_float_left.animate {
        right: -6%;
        opacity: 1;
    }

    /* Section Nutrition Plans */
    .nutrition_plan_float_main{position:relative;width:90%;transition:opacity .6s,width .6s;will-change:opacity,width}
    .nutrition_plan_float_main.animate{opacity:1;width:100%}
    img.nutrition_plan_float_bottom{width:60%;position:absolute;opacity:0;top:87%;left:6%;outline:4px solid rgba(255,255,255,.25);transition-delay:150ms;transition-property:opacity,top,left;transition-timing-function:ease-out;transition-duration:.6s;will-change:opacity,top,left}
    img.nutrition_plan_float_bottom.animate{opacity:1;top:67%}
    img.nutrition_plan_float_main_right{width:20%;position:absolute;top:50%;right:-20%;opacity:0;transform:translate(0,-50%);outline:4px solid rgba(255,255,255,.25);transition-delay:150ms;transition-property:opacity,right;transition-timing-function:ease-out;transition-duration:.6s;will-change:opacity,left}
    img.nutrition_plan_float_main_right.animate{right:-10%;opacity:1}

    /* Section Check-in */
    .check_in_main{position:relative;opacity:0;width:90%;transition:opacity .6s,width .6s;will-change:opacity,width}
    .check_in_main.animate{opacity:1;width:100%}
    img.check_in_bottom {
        width: 53%;
        position: absolute;
        top: 114%;
        right: 5%;
        opacity: 0;
        transform: translateY(-50%);
        outline: 4px solid rgba(255, 255, 255, .3);
        transition-delay: 150ms;
        transition-property: opacity, top, right;
        transition-timing-function: ease-out;
        transition-duration: .6s;
        will-change: opacity, top, right
    }
    
    img.check_in_bottom.animate {
        top: 87%;
        right: 5%;
        opacity: 1
    }
    img.check_in_left{width:20%;position:absolute;top:50%;left:0;transform:translate(0,-50%);opacity:0;outline:4px solid rgba(255,255,255,.3);transition-delay:150ms;transition-property:opacity,left;transition-timing-function:ease-out;transition-duration:.6s;will-change:opacity,left}
    img.check_in_left.animate{left:-6%;opacity:1}

    /* Section Community */
    .community_main{position:relative;width:90%;opacity:0;transition:opacity .6s,width .6s;will-change:opacity,width}
    .community_main.animate{opacity:1;width:100%}
    img.community_right{width:20%;position:absolute;top:50%;right:0;opacity:0;transform:translate(0,-50%);outline:4px solid rgba(255,255,255,.3);transition-delay:150ms;transition-property:opacity,right;transition-timing-function:ease-out;transition-duration:.6s;will-change:opacity,right}
    img.community_right.animate{right:-6%;opacity:1}

    /* Section Other Features */
    
    
    img.other_features_center {
        position: relative;
        top: 0;
        width: 32%;
        opacity: 1;
        outline: 4px solid rgba(255, 255, 255, .3);
        z-index: 9;
        transition:opacity .6s, width .6s;
        will-change: opacity, width;
        background: black;
    }

    .other_features_center.animate{
        opacity: 1;
        width: 42%;
    }

    .other_features_main {
        position: absolute;
        width: 26%;
        top: 49.5%;
        left: 40%;
        transform: translateY(-50%);
        transition-property: left, width;
        transition-timing-function: ease-out;
        transition-duration: .6s;
        will-change: left, width;
        background: black;
    }
    img.other_features_main.animate {
        left: 0%;
        width: 36%;
    }
    
    .other_features_right {
        position: absolute;
        width: 26%;
        top: 49.5%;
        left: 40%;
        transform: translateY(-50%);
        transition-property: left, width;
        transition-timing-function: ease-out;
        transition-duration: .6s;
        will-change: left, width;
        background: black;
    }
    .list_as_featured {
        list-style: none;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap:8px;
    }

    img.other_features_right.animate {
        left: 65%;
        width: 36%;
    }
    /* Section Devices */
    img.devices{outline:none;box-shadow:none}
    img.devices_desktop{
        position: absolute;
        width: 50%;
        top:50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity:0;
        transition-property: width, opacity;
        transition-timing-function: ease-out;
        transition-duration: .6s;
        will-change: width, opacity;
    }
    img.devices_desktop.animate {
        width: 90%;
        opacity:1;
    }

    img.devices_laptop{
        position: absolute;
        width: 70%;
        bottom: -3%;
        right: -25%;
        opacity:0;
        transition-delay: 300ms;
        transition-property: right, opacity;
        transition-timing-function: ease-out;
        transition-duration: .6s;
        will-change: right, opacity;
    }

    img.devices_laptop.animate {
        right: -15%;
        opacity:1;
    }

    img.devices_tablet{
        position: absolute;
        width: 30%;
        bottom: -3%;
        left: -17%;
        opacity:0;
        transition-delay: 300ms;
        transition-property: left, opacity;
        transition-timing-function: ease-out;
        transition-duration: .6s;
        will-change: left, opacity;
        z-index: 5;
    }
    img.devices_tablet.animate {
        left: -7%;
        opacity:1;
    }

    img.devices_phone{
        position: absolute;
        width: 20%;
        bottom: -6%;
        left: 0%;
        opacity:0;
        transition-delay: 500ms;
        transition-property: left, opacity;
        transition-timing-function: ease-out;
        transition-duration: .6s;
        will-change: left, opacity;
        z-index: 10;
    }
    img.devices_phone.animate {
        left: 15%;
        opacity:1;
    }

    .coaches_grid{
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        border-radius: 16px;
        overflow: hidden;
        -webkit-box-shadow: 0 0 10px -5px #000;
        box-shadow: 0 0 10px -5px #000;
    }
    .coaches_grid_content {
        text-align: center;
        padding: 0 8px;
    }
    .coaches_grid_content h2{
        font-size: 18px;
    }
    .coaches_grid_content h3{
        font-size: 11px;
        text-transform: uppercase;
        margin-top: 4px;
    }
    .coaches_grid_content p{
        font-size: 14px;
        margin-top: 10px;
    }
    .coaches_grid button{
        width: 100%;
        border-radius: 0;
    }

    .modal.modal_video,
    .modal.modal_video_view,
    .modal.modal_image_viewer{
        overflow-y: hidden;
        overflow-x: hidden;
        -webkit-overflow-scrolling: none;
        scroll-behavior: none;
    }
    .modal.modal_video_view,
    .modal.modal_image_viewer{
        background: rgba(0, 0, 0, 0.8);
    }

    .modal_image_viewer .modal_close,
    .modal_video_view .modal_close{
        position: absolute;
        right: 16px;
        top: 16px;
        z-index: 2000;
        border-radius: 6px;
        background-color: rgba(0, 0, 0, 0.8);
    }
    .modal_image_viewer_render,
    .modal_video_view_player{
        width: 100%;
        height: 100%;
        max-width: 100vw;
        max-height: 100vh;
        display: flex;
        flex-direction:row;
        align-items: center;
        justify-content: center;
    }
    .modal_image_viewer_render picture,
    .modal_image_viewer_render picture img,
    .modal_video_view_player video{
        max-width: 100vw; /* Set maximum width to viewport width */
        max-height: 100vh; /* Set maximum height to viewport height */
        width: auto;
        height: auto;
        object-fit: contain;
    }
    

    .modal_image_viewer_render picture.landscape img,
    .modal_image_viewer_render picture.portrait img{
        height: 100vh;
        width: 100vw;
        object-fit: contain;
    }

    .modal_image_viewer_render .loading_icon{
        width: 50px;
    }

    .how_it_works_container{
        width: 100%;
    }
    .how_it_works{
        text-align: center;
        padding: 16px 8px;
        width: 100%;
        min-width: 200px;
        border-radius: 8px;
        border:1px solid #f6f6f6;
        box-shadow: 0 0 30px -20px #000;
    }
    .how_it_works span{
        white-space: nowrap;
    }

    .faq_container{
        max-width: 100%;
    }
    .faq_heading {
        padding: 8px 16px;
        background: var(--active-color);
        color: white;
        border-radius: 6px;
        transition: border-radius 0.3s linear;
    }
    .faq_heading:hover{
        background: blue;
    }
    .faq_content{
        background: #eee;
        display: flex;
        flex-direction: column;
        gap:8px;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s linear, opacity 0.3s ease, visibility 0s linear 0.3s;
        border-radius: 0px 0 6px 6px;
    }

    .faq_item.open .faq_heading{
        border-radius: 6px 6px 0px 0;
    }
    .faq_item.open .faq_content{
        max-height: 800px; /* approximate max height */
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s linear, opacity 0.3s ease, visibility 0s linear 0.3s;
    }

    .faq_item{
        margin-bottom:4px;
        cursor: pointer;
    }

    .faq_content_inner{
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .faq_content_inner p{
        font-size: 16px;
        line-height: 18px;
    }
}

/* Landscape XXS */
/* For small phones eg.: iPhone 5 */
@media screen and (orientation:landscape) and (max-width: 692px) {

    /* Header */
    .header_video_container{margin:4%;margin-bottom:0;width:calc(100% - 8%);border-width:4px;background:#000;border-radius:6px}

    /* Referral Form */
    .header_referral_form{width:calc(100% - 8%);border-radius:8px;margin:4%;transition:width .3s,border-radius .3s,margin .3s}

    /* Section Defaults */
    section{padding:8% 0}
    section.section_small_pad{padding: 4% 0;}

    /* Section Join Today */
    .section_join_today_counter_content .counter{font-size:32px;font-weight:600}
    .section_join_today_counter_content h3{font-size:16px;font-weight:600}

    /* Section Features */
    .section_features{flex-direction:column;}
    /* .section_features .section_images, */
    .section_features .section_content{width:90%}
 
}


/* Landscape XS */
@media screen and (orientation:landscape) and (min-width: 693px) and (max-width:926px) {
    /* Header */
    .header_title{padding:3%;}
    .header_custom h1,
    .header_default h1{font-size:28px;}
    .header_custom h2,
    .header_default h2{font-size:22px;}
    .header_video_container{margin:4%;margin-bottom:0;width:calc(100% - 8%);border-width:4px;background:#000;border-radius:6px}
    .header_referral_form{width:calc(100% - 8%);border-radius:8px;margin:4%;transition:width .3s,border-radius .3s,margin .3s}
    
    /* Section Defaults */
    section{padding:8% 0}
    section.section_small_pad{padding: 4% 0;}

    /* Section Join Today */
    .section_join_today{flex-direction:row;align-items:center;justify-content:center}
    .section_reviews_group{flex-direction:row}

    /* Section Reviews */
    .section_review_container{padding:6% 0}

    /* Section Features */
    .section_features{gap:10%}
    /* .section_features .section_images{width:50%} */
    .section_features .section_content{width:50%}
}

/* Landscape SM */
@media screen and (orientation:landscape) and (min-width:927px) and (max-width:1112px) {
    
    /* Header */
    .header_title{padding:4%;}
    .header_custom h1,
    .header_default h1{font-size:28px;}
    .header_custom h2,
    .header_default h2{font-size:22px;}
    .header_call_to_action_content{display:flex;flex-direction:row;align-items:center;justify-content:center;gap:16px;padding:4%}
    .header_video_container{margin-bottom:0;border-width:4px;background:#000;border-radius:6px}
    .header_referral_form{width:calc(100% - 8%);max-width:370px;border-radius:8px;margin:0;transition:width .3s,border-radius .3s,margin .3s}
    
    /* Section Defaults */
    section{padding:4% 0}
    section.section_small_pad{padding: 4% 0;}

    /* Section Join Today */
    .section_join_today{flex-direction:row;align-items:center;justify-content:center;gap:8%}
    .section_join_today_counter{padding-bottom:30%}

    /* Section Review */
    .section_reviews_group{flex-direction:row}
    .section_review_container{padding:6% 0}

    /* Section Features */
    .section_features{gap:10%}
    /* .section_features .section_images{width:50%} */
    .section_features .section_content{width:50%}
   
}

/* Landscape MD */
@media screen and (orientation:landscape) and (min-width:1113px) and (max-width:1366px) {

    /* Defaults */
    .section_content h2{font-size:24px}
    .section_content h3{font-size:18px}
    .section_content p{font-size:16px}
    .button {width: auto;}

    /* Header */
    .header_title{
        padding:3%;
        max-width: 1070px;
    }
    .header_custom h1{font-size:32px;}
    .header_default h1{font-size:32px;margin-bottom:4%;}
    .header_custom h2,
    .header_default h2{font-size:26px;}
    .header_call_to_action_content{display:flex;flex-direction:row;align-items:center;justify-content:center;gap:16px;padding:4%}
    .header_video_container{margin-bottom:0;border-width:4px;background:#000;border-radius:6px}
    .header_referral_form{width:calc(100% - 8%);max-width:400px;border-radius:8px;margin:0;transition:width .3s,border-radius .3s,margin .3s}
    
    /* Section Defaults */
    section{padding:4% 0}
    section.section_small_pad{padding: 4% 0;}

     /* Section Join Today */
    .section_join_today{flex-direction:row;align-items:center;justify-content:center;gap:8%}
    .section_join_today_counter{padding-bottom:30%}

    /* Section Reviews */
    .section_reviews_group{flex-direction:row}
    .section_review_container{padding:6% 0}

    /* Section Features */
    .section_features{gap:10%}
    /* .section_features .section_images{width:55%} */
    .section_features .section_content{width:45%}
}

/* Landscape LG */
@media screen and (orientation:landscape) and (min-width:1367px) {
    
    /* Defaults */
    .section_content h2{font-size:24px}
    .section_content h3{font-size:18px}
    .section_content p{font-size:16px}
    .button {width: auto;}

    /* Header */
    .header_title{padding:3% 0; max-width: 1194px;}
    .header_custom h1{font-size:36px;}
    .header_default h1{font-size:36px;margin-bottom:4%;}
    .header_custom h2,
    .header_default h2{font-size:28px;}
    .header_call_to_action_content{display:flex;flex-direction:row;align-items:center;justify-content:center;gap:16px;padding:4% 0}
    
    /* Video Iframe */
    .header_video_container{margin-bottom:0;border-width:4px;background:#000;border-radius:6px}
    
    /* Referral Form */
    .header_referral_form{width:calc(100% - 8%);max-width:400px;border-radius:8px;margin:0;transition:width .3s,border-radius .3s,margin .3s}
    
    /* Section Defaults */
    section{padding:4% 0}
    section.section_small_pad{padding: 4% 0;}

    .content_padding_4{
        padding: 0;
    }

    /* Section Join Today */
    .content_padding,
    .section_join_today.content_padding{padding:0}
    .section_join_today{flex-direction:row;align-items:center;justify-content:center;gap:8%}
    .section_join_today_counter{padding-bottom:30%}

    /* Section Reviews */
    .section_reviews_group{flex-direction:row}
    .section_review_container{padding:5% 0}

    /* Section Features */
    .section_features{gap:10%}
    /* .section_features .section_images{width:55%} */
    .section_features .section_content{width:45%}
}

/* CSS Mobile First for portrait mode */
@media screen and (orientation:portrait) {
    
    .section_features.nutrition_plans,
    .section_features.community{
        flex-direction: column-reverse;
    }

    /* Header */
    .header_default h1{margin-bottom:5%;}


    .section_review_container {
        background: black url('/frontend/static/images/site/reviews_bg_pt_xs.jpg');
        background-position-x: 0%;
        background-position-y: 0%;
        box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5);
        background-repeat: repeat;
        background-attachment: scroll;
        background-size: auto;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
    }

    /* Section Training Plans */
    .section_features{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:32px;
    }
    .section_features.section_reverse{flex-direction:column-reverse;}

    /* .section_features .section_images, */
    .section_features .section_content{
        width: 95%;
    }

    /* Section Nutrition Plans */
    img.nutrition_plan_float_bottom {
        width: 60%;
        position: absolute;
        opacity: 0;
        top: 50%;
        left: -15%;
        outline: 4px solid rgba(255, 255, 255, .25);
        transition-delay: 150ms;
        transition-property: opacity, top, left;
        transition-timing-function: ease-out;
        transition-duration: .6s;
        will-change: opacity, top, left;
    }
    img.nutrition_plan_float_bottom.animate {
        opacity: 1;
        left: -10%;
        top:50%;
    }

    /* Section Check-in */
    img.check_in_bottom {
        width: 53%;
        position: absolute;
        top: 74%;
        right: 5%;
        opacity: 0;
        transform: translateY(-50%);
        outline: 4px solid rgba(255, 255, 255, .3);
        transition-delay: 150ms;
        transition-property: opacity, top, right;
        transition-timing-function: ease-out;
        transition-duration: .6s;
        will-change: opacity, top, right
    }
    
    img.check_in_bottom.animate {
        top: 74%;
        right: -6%;
        opacity: 1;
    }
    
}

/* Portrait XXS */
/* For small phones eg.: iPhone 5 */
@media screen and (orientation:portrait) and (max-width: 374px){

    /*******
    * CUSTOMIZATIONS
    *****/
    .section_70p{width:100%;}
}

/* Portrait XS */
@media screen and (orientation:portrait) and (min-width: 375px) and (max-width:599px){

    .section_70p{width:100%;}

    /* Video Iframe */
    .header_video_container{margin:4%;margin-bottom:0;width:calc(100% - 8%);border-width:4px;background:#000;border-radius:6px}
    
    /* Referral Form */
    .header_referral_form{width:calc(100% - 8%);border-radius:8px;margin:4%;transition:width .3s,border-radius .3s,margin .3s}

    /* Section Join Today */
    .section_join_today{gap:32px}
}

/* Portrait SM */
@media screen and (orientation:portrait) and (min-width:600px) and (max-width:799px) {
    
    .section_70p{width:100%;}

    /* Header */
    .header_custom h1{font-size:28px;}
    .header_default h1{font-size:28px;margin-bottom:4%;}
    .header_custom h2,
    .header_default h2{font-size:22px;}
    .header_video_container{margin:4%;margin-bottom:0;width:calc(100% - 8%);border-width:4px;background:#000;border-radius:6px}

    /* Referral Form */
    .header_referral_form{width:calc(100% - 8%);border-radius:8px;margin:4%;transition:width .3s,border-radius .3s,margin .3s}

    /* Section Defaults */
    section{padding:8% 0}
    section.section_small_pad{padding: 4% 0;}

    /* Section Join Today */
    .section_join_today{flex-direction:row;align-items:center;justify-content:center}
    .section_review_container{background:black url('/frontend/static/images/site/reviews_bg_pt_md.jpg');background-position-x:0;background-position-y:0;box-shadow:inset 0 0 0 2000px rgba(0,0,0,.5);background-repeat:repeat;background-attachment:scroll;background-size:auto;background-attachment:fixed;background-position:center;background-repeat:no-repeat;background-size:100%}

    /* Section Features */
    .section_reviews_group{flex-direction:row}
    .section_review_container{padding:16% 0}
}

/* Portrait MD */
@media screen and (orientation:portrait) and (min-width:800px) and (max-width:1023px) {
    
    .section_features.nutrition_plans,
    .section_features.community{
        flex-direction: row;
    }

    /* Defaults */
    .section_content h2{font-size:24px}
    .section_content h3{font-size:18px}
    .section_content p{font-size:16px}
    .button {width: auto;}

    .section_features.section_reverse {
        flex-direction: row;
      }

    /* Header */
    .header_custom h1{font-size:28px;}
    .header_default h1{font-size:28px;margin-bottom:4%;}
    .header_custom h2,
    .header_default h2{font-size:22px;}

    /* Video Iframe */
    .header_video_container{margin:4%;margin-bottom:0;width:calc(100% - 8%);border-width:4px;background:#000;border-radius:6px}

    /* Referral Form */
    .header_referral_form{width:calc(100% - 8%);border-radius:8px;margin:4%;transition:width .3s,border-radius .3s,margin .3s}

    /* Section Defaults */
    section{padding:8% 0}
    section.section_small_pad{padding: 4% 0;}

    /* Section Join Today */
    .section_join_today{flex-direction:row;align-items:center;justify-content:center}

    /* Section Reviews */
    .section_reviews_group{flex-direction:row}
    .section_review_container{padding:16% 0}
    .section_review_container{background:black url('/frontend/static/images/site/reviews_bg_pt_md.jpg');background-position-x:0;background-position-y:0;box-shadow:inset 0 0 0 2000px rgba(0,0,0,.5);background-repeat:repeat;background-attachment:scroll;background-size:auto;background-attachment:fixed;background-position:center;background-repeat:no-repeat;background-size:100%}

    /* Section Features */
    .section_features{flex-direction:row;gap:8%}
    /* .section_features .section_images{width:50%} */
    .section_features .section_content{width:50%}

    /* Section Nutrition Plans */
    img.nutrition_plan_float_bottom{width:60%;position:absolute;opacity:0;top:87%;left:6%;outline:4px solid rgba(255,255,255,.25);transition-delay:150ms;transition-property:opacity,top,left;transition-timing-function:ease-out;transition-duration:.6s;will-change:opacity,top,left}
    img.nutrition_plan_float_bottom.animate{opacity:1;top:67%;left:6%}

    /* Section Check-in */
    img.check_in_bottom{width:53%;position:absolute;top:114%;right:5%;opacity:0;transform:translateY(-50%);outline:4px solid rgba(255,255,255,.3);transition-delay:150ms;transition-property:opacity,top,right;transition-timing-function:ease-out;transition-duration:.6s;will-change:opacity,top,right}
    img.check_in_bottom.animate{top:94%;right:5%;opacity:1}

    .header_form_footer_flex{
        flex-direction: row;
    }
}

/* Portrait LG */
@media screen and (orientation:portrait) and (min-width:1024px) {
    
    .section_features.nutrition_plans,
    .section_features.community{
        flex-direction: row;
    }

    /* Defaults */
    .section_content h2{font-size:24px}
    .section_content h3{font-size:18px}
    .section_content p{font-size:16px}
    .button {width: auto;}
    
    /* Header */
    .header_custom h1{font-size:32px;}
    .header_default h1{font-size:32px;margin-bottom:4%;}
    .header_custom h2,
    .header_default h2{font-size:28px;}
    .header_video_container{
        margin: 4%;
        margin-bottom: 0;
        width: calc(100% - 8%);
        border-width: 4px;
        background: #000;
        border-radius: 6px;
    }

    .header_referral_form{
        width: calc(100% - 8%);
        border-radius: 8px;
        margin: 4%;
        transition: width .3s, border-radius .3s, margin .3s;
    }

    /* Section Defaults */
    section{padding:8% 0}
    section.section_small_pad{padding: 4% 0;}

    /* Section Join Today */
    .section_join_today{flex-direction:row;align-items:center;justify-content:center}

    /* Section Reviews */
    .section_review_container{background:black url('/frontend/static/images/site/reviews_bg_pt_md.jpg');background-position-x:0;background-position-y:0;box-shadow:inset 0 0 0 2000px rgba(0,0,0,.5);background-repeat:repeat;background-attachment:scroll;background-size:auto;background-attachment:fixed;background-position:center;background-repeat:no-repeat;background-size:100%}
    .section_reviews_group{flex-direction:row}
    .section_review_container{padding:12% 0}

    /* Section Features */
    .section_features{flex-direction:row;gap:10%}
    /* .section_features .section_images{width:50%} */
    .section_features .section_content{width:50%}

    /* Section Nutrition Plans */
    img.nutrition_plan_float_bottom{width:60%;position:absolute;opacity:0;top:87%;left:6%;outline:4px solid rgba(255,255,255,.25);transition-delay:150ms;transition-property:opacity,top,left;transition-timing-function:ease-out;transition-duration:.6s;will-change:opacity,top,left}
    img.nutrition_plan_float_bottom.animate{opacity:1;top:67%;left:6%}

    /* Section Check-in */
    img.check_in_bottom{width:53%;position:absolute;top:114%;right:5%;opacity:0;transform:translateY(-50%);outline:4px solid rgba(255,255,255,.3);transition-delay:150ms;transition-property:opacity,top,right;transition-timing-function:ease-out;transition-duration:.6s;will-change:opacity,top,right}
    img.check_in_bottom.animate{top:94%;right:5%;opacity:1}

    .header_form_footer_flex{
        flex-direction: row;
    }
}