
.beyond-tv-page .container{
    padding-top: 50px;
    padding-bottom: 50px;
}
.beyond-tv-page .row:not(.blogs){
    --columns: 2;
    --gap: 20px;
    display: flex;
    flex-direction: row;
    gap: var(--gap);
}
    .beyond-tv-page .row:not(.blogs) .column{
        display: flex;
        flex-direction: column;
        width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
    }


.green-gradient{
    background: linear-gradient(180deg,rgba(179,252,42,0.36) 0%,rgba(255,255,255,0) 100%);
}
.gradient{
    background: var(--gradient-bg-horizontal);
}


.beyond-tv-page input[type=submit]{
    background-color: var(--bodyColor);
}

/* .beyond-tv-page a.btn,
.beyond-tv-page .btn{
    align-self: baseline;
    background: #9ccc50;
    transition: all 300ms ease 0ms;
}
.beyond-tv-page a.btn:after,
.beyond-tv-page .btn:after{
    content: ">";
    margin-left: -13px;
    opacity: 0;
    transition: all 300ms ease 0ms;
}
.beyond-tv-page a.btn:hover,
.beyond-tv-page .btn:hover{

}
.beyond-tv-page a.btn:hover:after,
.beyond-tv-page .btn:hover:after{
    margin: 0;
    padding-left: 15px;
    opacity: 1; 
} */

.btn-box{
    text-align: center;
}


/* .beyond-tv-page .slider{} */
    /* .beyond-tv-page .slider .slick-arrow{} */
    .beyond-tv-page .slider .slick-arrow{
        position: absolute;
        top: calc(50% - 22.5px);
        width: 30px;
        height: 45px;
        z-index: 5;
        cursor: pointer;
        opacity: 0;
        transition: transform .3s, opacity .3s;
    }
    .beyond-tv-page .slider .slick-arrow.slick-prev{
        left: 15px;
        transform: translateX(-30px);
    }
    .beyond-tv-page .slider .slick-arrow.slick-next{
        right: 15px;
        transform: translateX(30px);
    }
        .beyond-tv-page .slider .slick-arrow .line{
            position: absolute;
            top: calc(50% - 1.5px);
            display: inline-block;
            width: 100%;
            height: 3px;
            background: #666;
            border-radius: 2px;
            transform-origin: 1px center;
        }
        .beyond-tv-page .slider .slick-arrow.slick-next .line{
            transform-origin: calc(100% - 1px) center;
        }
        .beyond-tv-page .slider .slick-arrow .line:first-child{ transform: rotate(45deg); }
        .beyond-tv-page .slider .slick-arrow .line:last-child{ transform: rotate(-45deg); }
        .beyond-tv-page .slider:hover .slick-arrow.slick-prev,
        .beyond-tv-page .slider:hover .slick-arrow.slick-next{
            transform: translate(0);
            opacity: 1;
        }
    .beyond-tv-page .slider .slick-dots{
        position: absolute;
        bottom: 15px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 10px;
        margin: 0;
        padding: 0!important;
    }
        .beyond-tv-page .slider .slick-dots li{
            list-style-type: none;
            margin: 0;
        }
            .beyond-tv-page .slider .slick-dots li button{
                min-width: initial;
                width: 10px;
                height: 10px;
                padding: 0;
                border-radius: 50%;
                font-size: 0;
                background-color: rgba(0,0,0,.3);
            }
            .beyond-tv-page .slider .slick-dots li.slick-active button{
                background: var(--gradient-bg-horizontal-scroll) padding-box, var(--gradient-bg-horizontal-scroll) border-box;
                background-repeat: repeat-x;
                background-size: 400% 100%;
                animation: scrollingbg 4s infinite cubic-bezier(0.25, 0, 0, 1);
            }




.beyond-tv-page .cta-banner .cta-banner-inner{
    max-width: 100%;
    width: 500px;
    padding: 55px 0;
    text-align: left;
}
    .beyond-tv-page .cta-banner .cta-banner-inner .logo{
        margin-bottom: 20px;
    }
    .beyond-tv-page .cta-banner .cta-banner-inner h1{
        font-size: 38px;
    }
    .beyond-tv-page .cta-banner .cta-banner-inner .seperator{
        display: block;
        width: 100%;
        height: 1px;
        margin: 30px 0 40px;
        background: #7CDA24;
    }
    /* .beyond-tv-page .cta-banner .cta-banner-inner a.btn{
        border: 1px solid;
        border-color: #7CDA24!important;
        color: #7CDA24!important;
        background-color: transparent;
    } */


/* .beyond-tv-page section.btv-information{} */
    .beyond-tv-page section.btv-information h2{
        margin-bottom: 45px;
    }
    .beyond-tv-page section.btv-information .row{
        --columns: 4;
        --gap: 45px;
        justify-content: center;
    }
    .beyond-tv-page section.btv-information .row .column{
        max-width: 100%;
        width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
        text-align: center;
    }
    .beyond-tv-page section.btv-information .row.color-boxes .column:nth-child(1) div.has-bg{ background: linear-gradient(180deg,#1c6eb7 0%,rgba(255,255,255,0) 100%); }
    .beyond-tv-page section.btv-information .row.color-boxes .column:nth-child(2) div.has-bg{ background: linear-gradient(180deg,#624ab1 0%,rgba(255,255,255,0) 100%); }
    .beyond-tv-page section.btv-information .row.color-boxes .column:nth-child(3) div.has-bg{ background: linear-gradient(180deg,#992a90 0%,rgba(255,255,255,0) 100%); }
    .beyond-tv-page section.btv-information .row.color-boxes .column:nth-child(4) div.has-bg{ background: linear-gradient(180deg,#ff8001 0%,rgba(255,255,255,0) 100%); }
        .beyond-tv-page section.btv-information .row .column .has-bg{
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
            padding: 20px;
            border-radius: 34px 34px 0 0;
            overflow: hidden;
        }
            .beyond-tv-page section.btv-information .row .column .has-bg .icon{
                max-width: 100%;
                width: 100px;
                margin: 0 auto 20px;
            }
            .beyond-tv-page section.btv-information .row .column .has-bg h3{
                font-size: 26px;
                font-weight: 400;
            }
            .beyond-tv-page section.btv-information .row .column .has-bg p{ font-size: 20px; }

@media(max-width: 1400px){
    .beyond-tv-page section.btv-information .row{
        --columns: 2;
        --gap: 20px;
    }
}


/* .beyond-tv-page section.btv-features{} */
    .beyond-tv-page section.btv-features .row{
        --columns: 3;
        --gap: 30px;
    }
        .beyond-tv-page section.btv-features .row .column{
            justify-content: space-between;
        }
            .beyond-tv-page section.btv-features .feature{
                display: inline-block;
                width: 100%;
                margin-bottom: 20px;
                padding: 20px;
                text-align: left;
                color: #FFF;
                border-radius: 12px;
            }
            .beyond-tv-page section.btv-features .column:nth-child(1) .feature:nth-child(1){ background: linear-gradient(180deg, #1c6eb7, #000); }
            .beyond-tv-page section.btv-features .column:nth-child(1) .feature:nth-child(2){ background: linear-gradient(180deg, #624ab1, #000); }
            .beyond-tv-page section.btv-features .column:nth-child(2) .feature:nth-child(1){ background: linear-gradient(180deg, #992a90, #000); }
            .beyond-tv-page section.btv-features .column:nth-child(2) .feature:nth-child(2){ background: linear-gradient(180deg, #fe0000, #000); }
            .beyond-tv-page section.btv-features .column:nth-child(3) .feature:nth-child(1){ background: linear-gradient(180deg, #ff8001, #000); }
            .beyond-tv-page section.btv-features .column:nth-child(3) .feature:nth-child(2){ background: linear-gradient(180deg, #cbd92c, #000); }
                .beyond-tv-page section.btv-features h3{
                    font-size: 24px;
                    font-weight: 400;
                }
                .beyond-tv-page section.btv-features .feature p{
                    font-size: 18px;
                }
                /* .beyond-tv-page section.btv-features ul{} */
                    .beyond-tv-page section.btv-features ul li{
                        margin-bottom: 5px;
                        font-size: 16px;
                        font-weight: 500;
                        color: #FFF;
                    }


/* .beyond-tv-page section.btv-design{} */
    .beyond-tv-page section.btv-design .row{
        --columns: 3;
        --gap: 60px;
    }
    .beyond-tv-page section.btv-design .row:nth-of-type(1){
        margin-bottom: 40px;
    }
    .beyond-tv-page section.btv-design .row:nth-of-type(2){
        --columns: 2;
        justify-content: center;
    }
        .beyond-tv-page section.btv-design .row .column p{
            font-size: 18px;
            font-weight: 500;
            text-align: center;
        }
        .beyond-tv-page section.btv-design .row .column span.greentext{
            background-color: #f2f2f2;
            margin-bottom: 10px;
            padding: 15px;
            color: #365c38;
            font-size: 20px;
            font-weight: 700;
        }
        .beyond-tv-page section.btv-design .row .column .image{
            text-align: center;
        }
        .beyond-tv-page section.btv-design .row:nth-of-type(1) .image{
            margin-bottom: 20px;
        }
            .beyond-tv-page section.btv-design .row .column .image img{
                max-width: 100%;
                width: 400px;
            }
    

section.btv-system{
    background-color: #1c6eb7;
}
    section.btv-system .row{
        --gap: 40px;
    }
        section.btv-system .row .column:first-child{
            width: 320px;
        }
        section.btv-system .row .column:last-child{
            width: calc(100% - 360px);
        }
            section.btv-system .row .column .image{
                margin-bottom: 20px;
            }
            section.btv-system .slider-box{
                min-height: 220px;
            }

/* section.btv-signage{} */
    section.btv-signage .row{
        --gap: 60px;
    }
        /* section.btv-signage .row .column{} */
            section.btv-signage .row .column ul{
                padding-left: 40px;
            }
                section.btv-signage .row .column ul li{
                    margin-bottom: 0;
                }
            section.btv-signage .row .column .slider{
                max-width: 100%;
                width: 430px;
                margin: 0 auto;
            }
            section.btv-signage .row .column .slider:nth-of-type(2){
                width: 220px;
                margin-top: 20px;
            }


section.btv-housekeeping{
    background-color: #624ab1;
}
    section.btv-housekeeping .row{ --gap: 60px; }
    .beyond-tv-page section.btv-housekeeping .row:not(.blogs) .column:first-child{
        width: calc(40% - 30px);
    }
    .beyond-tv-page section.btv-housekeeping .row:not(.blogs) .column:last-child{
        width: calc(60% - 30px);
        margin-bottom: 30px;

    }
    section.btv-housekeeping .grey-box{
        margin: 0 0 0;
        padding: 12px 12px;
        /* background-color: #6B6B6B; */
        border-radius: 10px;
        color: #FFF;
    }
    section.btv-housekeeping .grey-box:first-child{ margin-top: auto; }
        section.btv-housekeeping .grey-box h3{
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 10px;
        }
        section.btv-housekeeping .grey-box p{
            font-size: 18px;
        }
        section.btv-housekeeping .grey-box p:last-child{ margin-bottom: 0; }


        /* section.btv-evacuator{} */
            section.btv-evacuator .row:nth-of-type(1){
                margin-bottom: 15px;
            }
                section.btv-evacuator .row:nth-of-type(1) .column:nth-child(1){
                    width: 40%;
                }
                    section.btv-evacuator .row:nth-of-type(1) .column:nth-child(1) img{
                        width: 100%;
                    }
                section.btv-evacuator .row:nth-of-type(1) .column:nth-child(2){
                    width: calc(60% - var(--gap));
                }
                    section.btv-evacuator .row:nth-of-type(1) .column p{
                        font-size: 24px;
                    }
            section.btv-evacuator .row:nth-of-type(2){
                --columns: 2;
                --gap: 60px;
            }
            /* section.btv-evacuator .column{} */
            section.btv-evacuator .grey-box{
                height: 100%;
                margin: 0 0 15px;
                padding: 8px 15px;
                border-radius: 10px;
                color: #FFF;
            }
            section.btv-evacuator .column:first-child .grey-box{ background-color: #1c6eb7; }
            section.btv-evacuator .column:last-child .grey-box{ background-color: #624ab1; }
                section.btv-evacuator .grey-box h3{
                    font-size: 24px;
                    font-weight: 400px;
                }
                section.btv-evacuator .grey-box li{
                    font-size: 16px;
                    font-weight: 500;
                    color: #FFF;
                }
                section.btv-evacuator .grey-box h3{
                    margin-bottom: 15px;
                }
                section.btv-evacuator .grey-box ul{
                    margin-bottom: 0;
                }
                    section.btv-evacuator .grey-box li{
                        margin-bottom: 0;
                    }



/* section#demoform{} */
    section#demoform #gform_wrapper_7{
        background: var(--gradient-bg-horizontal);
        border: 1px solid #FFF;
        border-radius: 15px;
    }


@media(max-width: 768px){
    .beyond-tv-page section.btv-features .row,
    .beyond-tv-page section.btv-design .row:nth-of-type(1),
    .beyond-tv-page section.btv-design .row:nth-of-type(2),
    section.btv-system .row,
    section.btv-signage .row,
    section.btv-housekeeping .row,
    section.btv-evacuator .row:nth-of-type(1),
    section.btv-evacuator .row:nth-of-type(2){
        --columns: 1;
    }
    section.btv-evacuator .row:nth-of-type(1) .column:nth-child(1),
    section.btv-evacuator .row:nth-of-type(1) .column:nth-child(2),
    section.btv-system .row .column:first-child,
    section.btv-system .row .column:last-child{ width: 100%; }
    .beyond-tv-page section.btv-features .row .column{ gap: var(--gap); }

    .beyond-tv-page section.btv-features .feature{
        margin: 0;
    }
}