/*-----------------------------------------------------------------------------------
	Dekalb Community Television
	About: At DeKalb Community Television, our mission is to provide high-quality television. 
	Author: x
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Bloc Mask */

.bloc-bg-mask{
	position: absolute;
	width:100%;
	height: 100%;
	text-align:center;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
	align-items: flex-start;
}
.svg-mask{
	width:100%;
	height: 100%;
	fill-rule: evenodd;
	fill:#000000;
}


/* Flip Edge Divider */

.bloc-divider-flip-x svg{
	transform:scale(-1,1);
}
.bloc-divider-flip-y svg{
	transform:scale(1,-1);
}
.bloc-divider-flip-x.bloc-divider-flip-y svg{
	transform:scale(-1,-1);
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}
.bg-repeat{
	background-repeat:repeat!important;
}


/* Video Background Styles */

.video-bg-container, .bloc-video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: -50%;
	overflow: hidden;
	transform: translateX(-50%);
	-webkit-transform:translateX(-50%);
}
.bloc-video, .video-bg-container iframe{
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-darken-strong::before{
	background: rgba(0,0,0,0.8);
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}

/* Row Margin Offsets */

.voffset{
	margin-top:30px;
}


/* = NavBar
-------------------------------------------------------------- */

.navbar-dark .nav .dropdown-menu .nav-link{
	color: rgb(64, 64, 64);
}
/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}

/* Nav Special Classes */
.nav-special{
	overflow-y:scroll;
}
.nav-special .site-navigation{
	top:0;
	left:0;
	width:100%;
	position: relative!important;
	max-width: 100%!important;
	z-index: 1000;
}
.nav-special .nav > li{
	width:100%;
	background: none!important;
	border:0!important;
}
.nav-special.collapsing{
	-webkit-transition: none;
	transition: none;
	height:100%!important;
	background: none!important;
}
.nav-special .navbar-nav .dropdown-menu.show{
	position: relative!important;
	transform: none!important;
	float: none;
	width: 100%;
	margin-top: 0;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
}
.nav-special .nav .dropdown-menu .nav-link{
	color:#FFF;
}
.blocsapp-special-menu{
	position: absolute;
	z-index:10000;
}
.nav-special.fullscreen-nav .caret,.nav-special.fullscreen-nav .dropdown-menu .dropdown .caret{
	border-width: 8px;
}
.nav-special .navbar-nav .show>.nav-link{
	color:#FFF;
}

/* Animate Menu Symbol */
.navbar-toggle{
	transition: all .1s linear;
}
.selected-nav{
	opacity: 0;
	transform: scale(0.3);
	transition: all .1s linear;
}


/* Special Menu Close Button */
.close-special-menu{
	position: absolute;
	display: block;
	width: 25px;
	height:25px;
	top:16px;
	right:10px;
	z-index: 10000;
}
.nav-invert .sidebar-nav .close-special-menu{
	left:260px;
}
.close-special-menu .close-icon{
	display: block;
	width:100%;
	height:1px;
	transform: rotate(45deg);
	margin-top:12px;
}
.close-special-menu .close-icon:after{
	content:"";
	display:inherit;
	width:inherit;
	height:inherit;
	background: inherit;
	transform: rotate(90deg);
}
.lock-scroll{
	overflow:hidden;
	transition: background .3s linear;
}
.nav-special::-webkit-scrollbar{
	-webkit-appearance: none;
	width:0;
	height:0;
}
.nav-special .dropdown-menu .dropdown .caret{
	border-top-color: rgba(255,255,255,.8);
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	margin: 0 0 0 5px;
	float: none;
}
.blocsapp-special-menu .site-navigation.pull-right{
	float:none!important;
}

/* Nav Special Close Button */
.close-special-menu .close-icon{
	background:#fff;
}
.blocsapp-special-menu blocsnav{
	background: #000;
}

/* Full Screen Navigation */
.nav-special.fullscreen-nav{
	width: 100%;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	z-index: 1000;
	position: fixed;
	transition: all .2s linear;
}
 .nav-special.fullscreen-nav.open-up{
	transform: translateY(1000px);
}
 .nav-special.fullscreen-nav.open-down{
	transform: translateY(-1000px);
}
 .nav-special.fullscreen-nav.open-left{
	transform: translateX(-1000px);
}
 .nav-special.fullscreen-nav.open-right{
	transform: translateX(1000px);
}
 .nav-special.fullscreen-nav .nav > li a,.nav-special.fullscreen-nav .nav .dropdown-menu > li > a{
	color:rgba(255,255,255,.8);
	text-align: center;
	font-size: 28px;
}
 .nav-special.fullscreen-nav .nav > li a:hover{
	color:#FFF;
}
 .open.nav-special.fullscreen-nav{
	opacity: 1;
	transition: all .2s linear;
}
.nav-special.fullscreen-nav .site-navigation{
	text-align:center;
	margin-top:10%!important;
}
.nav-special.fullscreen-nav .close-special-menu{
	right:20px;
}
 .open.nav-special.fullscreen-nav.open-left,  .open.nav-special.fullscreen-nav.open-right,  .open.nav-special.fullscreen-nav.open-down, .open.nav-special.fullscreen-nav.open-up{
	transform: translateY(0);
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}
/* = Bric adjustment margins
-------------------------------------------------------------- */

.mg-clear{
	margin:0;
}
.mg-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-rd{
	border-radius: 40px;
}
.btn-glossy{
	border:1px solid rgba(0,0,0,.09);
	border-bottom-color:rgba(0,0,0,.2);
	text-shadow:0 1px 0 rgba(0,0,1,.2);
	box-shadow: 0 1px 3px rgba(0,0,1,.35), inset 0 1px 0 0 rgba(255,255,255,.4), inset 0 1px 0 2px rgba(255,255,255,.08);
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	 background-image: -o-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
	background-image: linear-gradient(bottom, rgba(0,0,0,.07) 0%, rgba(255,255,255,.07) 100%);
}
.btn-style-none,.btn-style-none:hover,.btn-style-none:active,.btn-style-none:focus{
	background:none;
	box-shadow: none;
	padding:0;
}
.btn-wire{
	background:transparent!important;
	border:2px solid transparent;
}
.btn-wire:hover{
	background:transparent!important;
	border:2px solid transparent;
}
.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}

/* = Icons
-------------------------------------------------------------- */
.icon-sm{
	font-size:18px!important;
}
.icon-md{
	font-size:30px!important;
}
.icon-lg{
	font-size:60px!important;
}

/*  Image Protection */
.img-protected{
	-webkit-touch-callout: none;
}



/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}

/* = Forms
-------------------------------------------------------------- */

.form-control{
	border-color:rgba(0,0,0,.1);
	box-shadow:none;
}



/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.close{
	color:#000;
	opacity:0.5;
}
.close:hover{
	opacity:1;
}

/* Toggle Visibility */
.toggled-item{
	transition: height 350ms ease-in-out, padding 350ms ease-in-out, opacity 350ms ease-in-out;
	overflow: hidden;
}
.toggled-item-hidden{
	padding-top:0!important;
	padding-bottom:0!important;
	border-top:0!important;
	border-bottom:0!important;
	outline:0!important;
	opacity: 0;
}

/* Hide Object */
.object-hidden{
	display:none;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
.navbar-logo{
	text-transform:none;
	text-decoration:none;
	font-size:20px;
}
.btn-join-now-style{
	border-radius:7px 7px 7px 7px;
}
.img-style{
	width:103px;
}
.bloc-fill{
	fill:var(--swatch-var-508);
}
.textbg{
	background:linear-gradient(0deg, #000000 0%, #68FF9E 53%);
	background-clip:content-box!important;
	-webkit-background-clip:content-box!important;
}
.h2-style{
	width:100%;
	text-shadow:0.00px 1.00px 2px #000000;
}
.bloc-0-fill{
	fill:var(--swatch-var-508);
}
.btn-buy-now-style{
	font-weight:bold;
	background-color:var(--swatch-var-508);
}
.btn-6-style{
	font-weight:bold;
}
.btn-7-style{
	font-weight:bold;
}
.btn-8-style{
	font-weight:bold;
}
.vidbak{
	z-index:-10;
	position:absolute;
	border-radius:1px 1px 1px 1px;
}
.h4-style{
	font-size:16px;
}
.h4-get-the-app-style{
	font-size:16px;
}
.h4-follow-us-style{
	font-size:16px;
}
.feat-card-icon{
	width:50px;
	background:linear-gradient(0deg, #176B3A 0%, #3CFF33  100%);
	border-radius:10px 10px 10px 10px;
}
.feat-card-icon-pos{
	position:absolute;
	left:0px;
	right:0px;
	top:-60px;
}
.feat-card{
	margin-bottom:80px;
	padding:10px 10px 10px 10px;
	border-radius:20px 20px 20px 20px;
	background-color:var(--swatch-var-7504);
}
.img-3-style{
	width:90px;
}
.img-4-style{
	width:90px;
}
.img-cms-ic-style{
	width:90px;
}
.img-6-style{
	width:90px;
}
.frame{
	width:230px;
	border-style:solid;
	border-color:var(--swatch-var-3788)!important;
}
.p-bloc-pricing-style{
	font-size:120px;
}
.p-11-style{
	font-size:14px;
}
.p-12-style{
	font-size:14px;
}
.p-15-style{
	font-size:14px;
}
.p-16-style{
	font-size:14px;
}
.p-17-style{
	font-size:14px;
}
.p-20-style{
	font-size:14px;
}
.p-21-style{
	font-size:14px;
}
.p-22-style{
	font-size:15px;
}
.p-25-style{
	font-size:14px;
}
.p-26-style{
	font-size:14px;
}
.p-27-style{
	font-size:14px;
}
.html-widget-style{
	width:58.67%;
}
.bloc-bloc-4-fill{
	fill:var(--swatch-var-7504);
}
.iconbak{
	background-color:var(--swatch-var-3993);
	background:linear-gradient(0deg, var(--swatch-var-3993) 7%, var(--swatch-var-508) 66%);
	z-index:5;
	overflow:hidden;
	border-radius:5px 5px 5px 5px;
	padding:10px 10px 10px 10px;
}
.fram2{
	border-style:solid;
	border-color:var(--swatch-var-3993)!important;
	backdrop-filter:blur(0px);
	-webkit-backdrop-filter:blur(0px);
	box-shadow:0.00px -1.00px 2px #000000;
	height:540px;
}
.bloc-bloc-3-fill{
	fill:var(--swatch-var-508);
}
.round vid{
	z-index:1;
	border-radius:1px 1px 1px 1px;
	border-width:22px 22px 22px 22px;
	overflow:hidden;
}
.round-vid{
	z-index:1;
	overflow:hidden;
	padding:5px 5px 5px 5px;
	margin-top:1px;
	border-style:solid;
	border-radius:5px 5px 5px 5px;
}
.btn{
	border-radius:10px 10px 10px 10px;
}
.roundvid{
	border-radius:10px 10px 10px 10px;
	border-width:0px 0px 0px 0px;
	overflow:hidden;
	z-index:10;
}
.img-dtv-logo-style{
	border-radius:5px 5px 5px 5px;
}
.h4-book-now-style{
	font-size:22px;
}
.frame2{
	top:10px;
	border-radius:10px 10px 10px 10px;
	padding:50px 50px 50px 50px;
}
.btn-submit-style{
	border-radius:5px 5px 5px 5px;
}
.textblur{
	backdrop-filter:blur(4px);
	-webkit-backdrop-filter:blur(4px);
}
.bloc--bloc-footer-fill{
	fill:var(--swatch-var-3993);
}
.btn-style{
	border-radius:5px 5px 5px 5px;
}
.container-div-margin-bottom{
	margin-bottom:16px;
	padding-bottom:0px;
}
.green-bg-gradient{
	background:linear-gradient(68deg, var(--swatch-var-508) 0%, #49AFFF 100);
}
.text-trans-gradient{
	background-clip:text!important;
	-webkit-background-clip:text!important;
	color:transparent!important;
	background-color:var(--swatch-var-7504);
}
.bak4{
	background:linear-gradient(0deg, var(--swatch-var-1847) 0%, var(--swatch-var-508) 100%);
}
.bloc-padding-bottom{
	padding-bottom:0px;
}
.bloc-0-padding-top{
	padding-top:250px;
}
.h5-margin-bottom{
	width:100%;
}
.bloc-0-bloc-4-fill{
	fill:var(--swatch-var-508);
}
.container-div-margin-top{
	padding:-10px -10px -10px -10px;
	position:relative;
}
.bloc-0-bloc-3-fill{
	fill:var(--swatch-var-1847);
}
.p-style{
	font-size:9px;
}
.bloc-17021-fill{
	fill:var(--swatch-var-508);
}
.bloc-bloc-11-fill{
	fill:var(--swatch-var-508);
}
.h3-8-style{
	font-size:20px;
}
.bloc-38231-fill{
	fill:var(--swatch-var-1847);
}
.codemod1{
	font-weight:bold;
}
.btn-live-style{
	width:24.12%;
	padding-left:0px;
	margin-left:8px;
	margin-right:10px;
	border-radius:5px 5px 5px 5px;
}
.bloc-bloc-10-fill{
	fill:var(--swatch-var-3993);
}
.bloc-bloc-16-fill{
	fill:var(--swatch-var-3993);
}
.h3-bloc-10-style{
	font-size:51px;
}
.vidframe{
	left:10px;
	top:10px;
	right:10px;
	bottom:10px;
	z-index:10;
	border-radius:5px 5px 5px 5px;
	overflow:hidden;
}
.html-widget-0-style{
	opacity:1.0;
	z-index:20;
}
.bloc-bloc-15-fill{
	fill:var(--swatch-var-508);
}
.h1-style{
	font-size:34px;
}
.btn--bloc-footer-style{
	border-radius:0px 0px 0px 0px;
}
.liveframe{
	border-radius:10px 10px 10px 10px;
	z-index:10;
	overflow:hidden;
}
.p-bloc-3-style{
	font-size:16px;
}
.row-style{
	width:41.27%;
	margin-left:250px;
	padding-left:49px;
}
.h3-style{
	width:100%;
	font-size:15px;
}
.p-8-style{
	font-size:14px;
}
.cardv2{
	height:260px;
	background-color:var(--swatch-var-3202);
	color:var(--swatch-var-1847)!important;
}
.h4-1-style{
	font-size:18px;
}
.txtsdow{
	text-shadow:0.00px 1.00px 1px #000000;
}
.container-div-min-height{
	min-height:100px;
}
.list-style{
	opacity:1.0;
}
.bloc-style{
	width:100%;
}
.bloc-bloc-4-style{
	width:100%;
}
.p-48-style{
	width:79.84%;
}
.p-bloc-4-style{
	width:100%;
	font-size:9px;
}
.container-div-bloc-4-min-height{
	min-height:57px;
	margin-bottom:-10px;
}
.h3-bloc-4-style{
	font-size:25px;
}
.img-bloc-4-style{
	width:80px;
}
.img-8-style{
	width:80px;
}
.img-9-style{
	width:80px;
}
.img-10-style{
	width:80px;
}
.p-42-style{
	font-size:15px;
}
.p-46-style{
	font-size:15px;
}
.img-11-style{
	width:80px;
}
.img-12-style{
	width:80px;
}
.img-13-style{
	width:80px;
}
.img-14-style{
	width:180px;
}
.img-15-style{
	width:80px;
}
.img-16-style{
	width:80px;
}
.h4-bloc-4-style{
	font-size:16px;
}
.card-body-bloc-4-style{
	height:214px;
}
.img-bloc-20-style{
	width:100px;
}
.h6-style{
	font-size:6px;
}
.card-body-36-style{
	height:285px;
}
.h6-bloc-20-style{
	font-size:11px;
}
.bloc-bloc-20-fill{
	fill:var(--swatch-var-3993);
}
.card-body-40-style{
	height:286px;
}
.text-blue-gradient{
	background-clip:text!important;
	-webkit-background-clip:text!important;
	background:linear-gradient(88deg, #61E1A3, #2F7DFF);
	color:transparent!important;
}
.h3-basic -style{
	font-size:22px;
}
.card5{
	width:200px;
	height:440px;
}
.row-bloc-20-style{
	width:100%;
}
.row-42-style{
	width:96.29%;
}
.h6-5-style{
	font-size:10px;
}
.h4-bloc-20-style{
	font-size:12px;
}
.h4-22-style{
	font-size:17px;
}
.h3-basic-option-style{
	font-size:19px;
}
.h6-4-style{
	font-size:11px;
}
.h6-6-style{
	font-size:11px;
}
.h6-details-style{
	font-size:12px;
}
.card-body-35-style{
	height:301px;
}
.p-bloc-5-style{
	font-size:14px;
}
.container-div-options-style{
	min-height:466px;
}
.h3-modal-heading-style{
	font-size:18px;
}
.h6-bloc-19-style{
	font-size:12px;
}
.h6-66-style{
	font-size:12px;
}
.h6-67-style{
	font-size:12px;
}
.h6-68-style{
	font-size:12px;
}
.h6-69-style{
	font-size:12px;
}
.h6-70-style{
	font-size:12px;
}
.h6-71-style{
	font-size:12px;
}
.h6-72-style{
	font-size:12px;
}
.img-bloc-28-style{
	width:500px;
}
.bloc-bloc-28-fill{
	fill:var(--swatch-var-3993);
}
.bloc-0-bloc-28-fill{
	fill:var(--swatch-var-7504);
}
.img-2-style{
	width:152px;
}
.bloc-bloc-2-fill{
	fill:var(--swatch-var-508);
}
.bloc-bloc-2-padding-right{
	padding-right:99px;
}
.h3-bloc-2-style{
	font-size:30px;
}
.h5-style{
	font-size:16px;
}
.vidshadow{
	box-shadow:0.00px 2.00px 2px #000000;
}
.p-3-style{
	width:81.13%;
}
.h3-3-style{
	width:82.31%;
}
.bloc-31535-fill{
	fill:var(--swatch-var-508);
}
.text-purple-gradient{
	background-clip:text!important;
	-webkit-background-clip:text!important;
	background:linear-gradient(88deg, #FF7D5A, #9853F6);
	color:transparent!important;
}
.bloc-43238-fill{
	fill:var(--swatch-var-508);
}
.h3-bloc-3-style{
	font-size:30px;
}
.container-div-bloc-3-min-height{
	min-height:33px;
}
.p-37-style{
	font-size:14px;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-2869:rgba(0,0,0,0.05);
	
	--swatch-var-3788:rgba(46,246,34,1.00);
	
	--swatch-var-7504:rgba(241,246,237,0.73);
	
	--swatch-var-149:rgba(69,87,245,1.00);
	
	--swatch-var-1955:rgba(21,20,20,1.00);
	
	--swatch-var-3993:rgba(126,217,86,1.00);
	
	--swatch-var-1847:rgba(255,255,255,1.00);
	
	--swatch-var-458:rgba(0,0,0,1.00);
	
	--swatch-var-3202:rgba(0,0,0,0.03);
	
	--swatch-var-508:rgba(20,92,159,1.00);
	
	--swatch-var-6521:rgba(255,255,255,0.50);
	
	--swatch-var-7710:rgba(0,0,0,0.00);
	
	--swatch-var-5783:rgba(0,0,0,0.2);
	
	--swatch-var-6718:rgba(255,255,255,0.498039);
	
}


/* Background colour styles */

.bgc-3993{
	background-color:var(--swatch-var-3993);
}
.bgc-508{
	background-color:var(--swatch-var-508);
}
.bgc-1847{
	background-color:var(--swatch-var-1847);
}
.bgc-3202{
	background-color:var(--swatch-var-3202);
}
.bgc-6521{
	background-color:var(--swatch-var-6521);
}

/* Text colour styles */

.tc-1847{
	color:var(--swatch-var-1847)!important;
}
.tc-508{
	color:var(--swatch-var-508)!important;
}
.tc-1955{
	color:var(--swatch-var-1955)!important;
}
.tc-458{
	color:var(--swatch-var-458)!important;
}

/* Button colour styles */

.btn-c-508{
	background:var(--swatch-var-508);
	color:#FFFFFF!important;
}
.btn-c-508:hover{
	background:#00296C!important;
	color:#FFFFFF!important;
}
.btn-c-3993{
	background:var(--swatch-var-3993);
	color:rgba(0,0,0,.5)!important;
}
.btn-c-3993:hover{
	background:#4BA623!important;
	color:rgba(0,0,0,.5)!important;
}
.wire-btn-c-458{
	color:var(--swatch-var-458)!important;
	border-color:var(--swatch-var-458)!important;
}

/* Link colour styles */

.ltc-1955{
	color:var(--swatch-var-1955)!important;
}
.ltc-1955:hover{
	color:#000000!important;
}
.ltc-1847{
	color:var(--swatch-var-1847)!important;
}
.ltc-1847:hover{
	color:#CCCCCC!important;
}
.ltc-3993{
	color:var(--swatch-var-3993)!important;
}
.ltc-3993:hover{
	color:#4BA623!important;
}
.ltc-508{
	color:var(--swatch-var-508)!important;
}
.ltc-508:hover{
	color:#00296C!important;
}
.ltc-149{
	color:var(--swatch-var-149)!important;
}
.ltc-149:hover{
	color:#1224C2!important;
}

/* Icon colour styles */

.icon-3993{
	color:var(--swatch-var-3993)!important;
	border-color:var(--swatch-var-3993)!important;
}
.icon-1847{
	color:var(--swatch-var-1847)!important;
	border-color:var(--swatch-var-1847)!important;
}
.icon-1955{
	color:var(--swatch-var-1955)!important;
	border-color:var(--swatch-var-1955)!important;
}
.icon-508{
	color:var(--swatch-var-508)!important;
	border-color:var(--swatch-var-508)!important;
}

/* Bloc image backgrounds */

.bg-rs-w-1968-h-833{
	background-image:url("img/rs=w-1968,h-833.jpeg");
	background-image: -webkit-image-set(url("img/rs=w-1968,h-833.webp") 1x,
url("img/rs=w-1968,h-833.webp") 2x);background-image: image-set(url("img/rs=w-1968,h-833.jpeg") 1x,
url("img/rs=w-1968,h-833.jpeg") 2x,url("img/rs=w-1968,h-833.webp") 1x,
url("img/rs=w-1968,h-833.webp") 2x);
}
.bg-rs-w-1968-h-1312{
	background-image:url("img/rs=w-1968,h-1312.jpeg");
	background-image: -webkit-image-set(url("img/rs=w-1968,h-1312.webp") 1x,
url("img/rs=w-1968,h-1312.webp") 2x);background-image: image-set(url("img/rs=w-1968,h-1312.jpeg") 1x,
url("img/rs=w-1968,h-1312.jpeg") 2x,url("img/rs=w-1968,h-1312.webp") 1x,
url("img/rs=w-1968,h-1312.webp") 2x);
}



/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.bloc-padding-right{
		padding-right:10px;
		padding-left:96px;
	}
	.bloc-bloc-4-fill{
		fill:var(--swatch-var-7504);
	}
	.container-div-margin-bottom{
		padding-bottom:0px;
	}
	.h5-margin-bottom{
		margin-bottom:8px;
		padding-bottom:0px;
		padding-top:0px;
	}
	.bloc-0-padding-top{
		padding-top:199px;
	}
	.card-style{
		width:100%;
	}
	.card-body-style{
		height:213px;
	}
	.img-platform-logos-style{
		width:300px;
	}
	.bloc-bloc-13-padding-bottom{
		padding-bottom:0px;
		margin-bottom:0px;
	}
	.row-padding-bottom{
		padding-bottom:0px;
		margin-bottom:0px;
	}
	.bloc-0-padding-bottom{
		padding-bottom:0px;
	}
	.p-bloc-4-style{
		font-size:8px;
	}
	.bloc-38231-fill{
		fill:var(--swatch-var-3993);
	}
	.h3-style{
		font-size:11px;
	}
	.p-8-style{
		font-size:11px;
	}
	.bloc-0-margin-bottom{
		margin-bottom:-44px;
	}
	.row-margin-bottom{
		margin-bottom:35px;
	}
	.h2-style{
		font-size:38px;
	}
	.h2-1-style{
		font-size:22px;
	}
	.h4-1-style{
		font-size:17px;
	}
	.container-div-min-height{
		min-height:349px;
	}
	.fram2{
		height:660px;
	}
	.h4-bloc-4-style{
		font-size:16px;
	}
	.h6-bloc-20-style{
		font-size:9px;
		margin:1px 1px 1px 1px;
	}
	.h6-style{
		font-size:6px;
	}
	.cardsz{
		height:520px;
	}
	.card-body-bloc-20-style{
		height:300px;
	}
	.card-body-40-style{
		height:298px;
	}
	.card-body-38-style{
		height:300px;
	}
	.row-42-style{
		width:200%;
	}
	.card5{
		height:500px;
		width:150px;
	}
	.card-body-35-style{
		height:307px;
	}
	.h3-basic-option-style{
		font-size:12px;
	}
	.h4-bloc-20-style{
		font-size:12px;
	}
	.h6-5-style{
		font-size:10px;
	}
	.h4-22-style{
		font-size:14px;
	}
	.h6-4-style{
		font-size:10px;
	}
	.round-vid{
	}
	.roundvid{
	}
	.bloc-bloc-2-fill{
		fill:var(--swatch-var-508);
	}
	.h3-bloc-2-style{
		font-size:18px;
	}
	.p-bloc-2-style{
		font-size:12px;
	}
	.h5-style{
		font-size:12px;
	}
	.p-bloc-3-style{
		width:100%;
		font-size:16px;
	}
	.bloc-0-margin-top{
		margin-top:185px;
	}
	.bloc-0-bloc-4-fill{
		fill:var(--swatch-var-508);
	}
	.card-body-11-style{
		height:1252px;
	}
	.row-style{
		width:45.48%;
		padding-left:0px;
		margin-right:0px;
	}
	.bloc--bloc-footer-padding-right{
		padding-right:0px;
	}
	.p-37-style{
		font-size:8px;
	}
	
}

@media (max-width: 767px){
	.feat-card{
		margin-bottom:60px;
	}
	.bloc-padding-right{
		padding-left:29px;
	}
	.img-style{
		width:80px;
	}
	.html-widget-style{
		width:100%;
	}
	.btn-bloc-5-style{
		font-weight:bold;
	}
	.roundvid{
		border-radius:-10px -10px -10px -10px;
	}
	.h2-style{
		font-size:35px;
	}
	.container-div-margin-bottom{
		padding-bottom:1px;
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-508)!important;
		fill:var(--swatch-var-508)!important;
	}
	.field-style{
		width:100%;
	}
	.h5-margin-bottom{
		padding-top:0px;
	}
	.bloc-0-padding-top{
		padding-top:0px;
		margin-top:0px;
	}
	.bloc-38231-fill{
		fill:var(--swatch-var-1847);
	}
	.p-margin-bottom{
		margin-bottom:0px;
		padding-bottom:0px;
		font-size:14px;
	}
	.uploadwig{
	}
	.bloc-0-margin-bottom{
		padding-bottom:44px;
	}
	.container-div-min-height{
		min-height:57px;
	}
	.container-div--bloc-footer-style{
		width:27.08%;
	}
	.container-div-0-style{
		width:29.17%;
	}
	.fram2{
		height:800px;
	}
	.h6-style{
		font-size:7px;
	}
	.card-body-36-style{
		height:295px;
	}
	.card-body-bloc-20-style{
		height:295px;
	}
	.card-body-40-style{
		height:295px;
	}
	.card-body-35-style{
		height:332px;
	}
	.card-body-37-style{
		height:295px;
	}
	.card-body-38-style{
		height:295px;
	}
	.row-42-style{
		width:100%;
	}
	.card5{
		width:170px;
		height:500px;
	}
	.h3-basic-option-style{
		font-size:15px;
	}
	.h4-bloc-20-style{
		font-size:14px;
	}
	.h6-4-style{
		font-size:12px;
	}
	.h6-5-style{
		font-size:7px;
	}
	.h4-22-style{
		font-size:16px;
	}
	.h6-6-style{
		font-size:11px;
	}
	.h6-bloc-20-style{
		font-size:11px;
	}
	.p-15-style{
		font-size:14px;
	}
	.p-17-style{
		font-size:14px;
	}
	.h4-1-style{
		font-size:10px;
	}
	.row-margin-top{
		margin-top:64px;
	}
	.p-14-style{
		font-size:14px;
	}
	.p-20-style{
		font-size:14px;
	}
	.p-bloc-3-style{
		width:50%;
	}
	
}

@media (max-width: 575px){
	.navbar-logo{
		font-size:18px;
	}
	.footer-link{
		text-align:center;
	}
	.btn-join-now-style{
		border-radius:5px 5px 5px 5px;
	}
	.bloc-padding-right{
		padding-right:0px;
		padding-left:0px;
	}
	.html-widget-style{
		width:100%;
	}
	.h2-style{
		font-size:30px;
		text-shadow:0.00px 0.00px 0px #000000;
	}
	.textblur{
	}
	.bloc-11002-padding-top{
		padding-top:402px;
	}
	.blocsapp-special-menu blocsnav{
		background-color:var(--swatch-var-149);
	}
	.bloc-0-padding-top{
		padding-top:0px;
	}
	.bloc-margin-bottom{
		margin-bottom:91px;
	}
	.btn-more-info-style{
		border-radius:5px 5px 5px 5px;
	}
	.bloc-0-padding-bottom{
		padding-bottom:516px;
		margin-bottom:-126px;
	}
	.btn-live-style{
		width:33.33%;
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-1955)!important;
		fill:var(--swatch-var-1955)!important;
	}
	.fram2{
	}
	.p-margin-bottom{
		padding-bottom:88px;
	}
	.html-widget-bloc-17-margin-bottom{
		padding-bottom:0px;
		padding-top:0px;
	}
	.bloc-margin-top{
		padding-top:0px;
	}
	.p-8-style{
		font-size:12px;
	}
	.h3-style{
		font-size:14px;
	}
	.h4-1-style{
		font-size:11px;
	}
	.h6-style{
		font-size:10px;
	}
	.card-body-36-style{
		height:292px;
	}
	.card5{
		width:300px;
		height:640px;
	}
	.h6-5-style{
		font-size:12px;
	}
	.h4-22-style{
		font-size:16px;
	}
	.img-bloc-20-style{
		width:224px;
	}
	.row-42-style{
		width:140%;
	}
	.h4-bloc-20-style{
		font-size:16px;
	}
	.h3-basic-option-style{
		font-size:21px;
	}
	.img-bloc-4-style{
		width:268px;
	}
	.p-bloc-3-style{
		width:100%;
	}
	.p-bloc-5-style{
		font-size:14px;
	}
	.bloc-options-margin-bottom{
		margin-bottom:40px;
	}
	.bloc-26812-margin-bottom{
		margin-bottom:40px;
	}
	.bloc-47615-margin-bottom{
		margin-bottom:40px;
	}
	.bloc-19016-margin-bottom{
		margin-bottom:40px;
	}
	.bloc-28630-margin-bottom{
		margin-bottom:40px;
	}
	.h3-33-style{
		font-size:21px;
	}
	
}

