/*-----------------------------------------------------------------------------------
	DEEP.MSP 2022
	Author: Admin
	Version: 1.1
	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;}

/* = 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-xxl{
	padding:200px 20px;
}
.bloc-xl{
	padding:150px 20px;
}
.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = 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;
}


/* Group Styles */

.bloc-group{
	display:flex;
}
.bloc-tile-2{
	width:50%;
}
.bloc-tile-3{
	width:33.33333333%;
}
.bloc-tile-4{
	width:25%;
}
.bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
	width:100%;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* 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-br-edge{
	background-position: bottom right!important;
	background-repeat: no-repeat;
}


/* 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 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;
}
.voffset-lg{
	margin-top:80px;
}


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

/* 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-sm{
	margin-top:10px;
	margin-bottom:5px;
}
.mg-md{
	margin-top:10px;
	margin-bottom:20px;
}
.mg-lg{
	margin-top:10px;
	margin-bottom:40px;
}
img.mg-sm,img.mg-md,img.mg-lg{
	margin-top: 0;
}
img.mg-sm{
	margin-bottom:10px;
}
img.mg-md{
	margin-bottom:30px;
}
img.mg-lg{
	margin-bottom:50px;
}

/* = 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-clean{
	border:1px solid rgba(0,0,0,.08);
	border-bottom-color:rgba(0,0,0,.1);
	text-shadow:0 1px 0 rgba(0,0,1,.1);
	box-shadow: 0 1px 3px rgba(0,0,1,.25), inset 0 1px 0 0 rgba(255,255,255,.15);
}
.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-xl{
	padding: 16px 40px;
	font-size: 28px;
}
.dropdown a .caret{
	margin:0 0 0 5px}.btn-dropdown .dropdown-menu .dropdown{
	padding: 3px 20px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}
.icon-lg{
	font-size:60px!important;
}
.icon-xl{
	font-size:100px!important;
}
.icon-round{
	margin:0 auto;
	border:2px solid transparent;
	border-radius: 50%;
	padding: 32px 30px 26px 30px;
	min-width:80px;
}
.icon-square{
	margin:0 auto;
	border:2px solid transparent;
	padding: 32px 30px 26px 30px;
	min-width:80px;
}
.icon-semi-rounded-a{
	margin:0 auto;
	border:2px solid transparent;
	border-radius: 20px 0;
	padding: 32px 30px 26px 30px;
	min-width:80px;
}
.icon-semi-rounded-b{
	margin:0 auto;
	border:2px solid transparent;
	border-radius: 0 20px;
	padding: 32px 30px 26px 30px;
	min-width:80px;
}
.icon-round.icon-md,.icon-square.icon-md,.icon-rounded.icon-md{
	min-width: 92px;
}
.icon-round.icon-lg,.icon-square.icon-lg,.icon-rounded.icon-lg{
	min-width: 122px;
}
.icon-round.icon-xl,.icon-square.icon-xl,.icon-rounded.icon-xl{
	min-width: 162px;
}

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

/* = Text & Icon Styles
-------------------------------------------------------------- */
.lg-shadow{
	text-shadow:0 2px 5px rgba(0,0,0,.5);
}


/* = 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%;
}
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}


/* Scroll FX */
.scroll-fx-in-range{
	will-change: opacity;
}


/* 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;
}

/* 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;
}
.illustration-section-title{
	font-size:43px;
	line-height:px;
	width:100%;
	margin-top:-50px;
	margin-bottom:23px;
	padding-top:0px;
}
.row-padding-top{
	padding-top:0px;
}
.bloc-divider-t-fill{
	fill:#FEFFFF;
	height:242px;
	width:100%;
}
.bloc-divider-b-fill{
	fill:#FEFFFF;
	height:461px;
}
.img-margin-top{
	margin-bottom:-96px;
	margin-top:-70px;
}
.sm-img-waves-br-style{
	max-width:100%;
	width:260px;
	margin-left:490px;
	margin-right:490px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	height:270px;
	display:block;
	align-items:center;
	align-content:center;
	border-radius:6px 6px 6px 6px;
}
.m-img-cookie-consent-br-style{
	position:absolute;
	display:block;
	max-width:100%;
	width:200px;
	left:127px;
	bottom:150px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	margin:0px 0px 0px 0px;
	border-radius:6px 6px 6px 6px;
}
.m-img-inline-svg-br-style{
	max-width:100%;
	width:150px;
	bottom:150px;
	display:block;
	position:absolute;
	right:0px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	border-radius:6px 6px 6px 6px;
}
.sm-img-overlay-br-style{
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	bottom:330px;
	right:546px;
	position:absolute;
	display:block;
	max-width:100%;
	width:100px;
	border-radius:6px 6px 6px 6px;
}
.m-img-image-compare-br-style{
	max-width:100%;
	width:260px;
	position:absolute;
	display:block;
	top:-400px;
	align-items:center;
	align-content:center;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	left:-50px;
	border-radius:6px 6px 6px 6px;
}
.m-img-snap-scroll-br-style{
	max-width:100%;
	width:200px;
	position:absolute;
	display:block;
	top:150px;
	right:381px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	align-items:center;
	align-content:center;
	border-radius:6px 6px 6px 6px;
}
.sm-img-particles-br-style{
	max-width:100%;
	width:200px;
	display:block;
	position:absolute;
	left:279px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	align-items:center;
	align-content:center;
	top:300px;
	border-radius:6px 6px 6px 6px;
}
.img-hover-tilt-br-style{
	align-content:center;
	justify-content:center;
	max-width:100%;
	width:260px;
	position:absolute;
	display:block;
	bottom:-150px;
	right:0px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	border-radius:6px 6px 6px 6px;
}
.sm-img-anim-shapes-br-style{
	max-width:100%;
	width:200px;
	display:block;
	position:absolute;
	top:-250px;
	right:127px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	justify-content:center;
	align-content:center;
	border-radius:6px 6px 6px 6px;
}
.m-img-countdown-br-style{
	justify-content:center;
	align-content:center;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	position:absolute;
	display:block;
	left:-160px;
	top:120px;
	max-width:100%;
	width:250px;
	border-radius:6px 6px 6px 6px;
}
.block-z-index{
	z-index:1000;
}
.p-style{
	font-size:20px;
	width:55.48%;
}
.heading-row-01{
	min-height:500px;
}
.img-phishi-style{
	width:200px;
	height:204px;
}
.navbar-brand img{
	height:200px;
}
.h1-bloc-4-style{
	font-size:45px;
	padding-top:0px;
	margin-top:-161px;
	letter-spacing:3px;
}
.gradient-24{
	background:linear-gradient(141deg, #FF9449   1%, #B83193  59%, #8E00FF 99%);
	fill:transparent;
}
.img-24monitori-style{
	width:400px;
	padding-top:90px;
}
.bloc-divider-b-bloc-7-fill{
	fill:#FFFFFF;
	height:251px;
	width:100%;
}
.h2-margin-bottom{
	margin-bottom:97px;
}
.h2-style{
	width:100%;
	padding-right:0px;
	font-size:41px;
}
.p-bloc-7-style{
	font-size:20px;
	text-indent:0px;
	margin-left:45px;
	padding-right:50px;
}
.bloc-34965-padding-left{
	padding-left:8px;
}
.bloc-0-padding-right{
	padding-right:202px;
	padding-top:150px;
}
.h3-bloc-9-style{
	font-size:30px;
}
.h3-5-style{
	font-size:65px;
}
.bloc-bloc-9-padding-left{
	padding-left:303px;
}
.h2-bloc-9-style{
	font-size:38px;
	width:100%;
	padding-right:1px;
}
.divider-padding-left{
	padding-left:190px;
}
.feat-card{
	margin-bottom:80px;
	padding:10px 10px 10px 10px;
	border-radius:20px 20px 20px 20px;
}
.h2-padding-bottom{
	padding-bottom:50px;
}
.icon-back{
	background-color:#9109F9;
	background-size:auto auto;
	position:relative;
	bottom:50px;
	box-shadow:0px 19px 25px rgba(0,0,0,0.50);
	padding:10px 10px 10px 10px;
	border-radius:10px 10px 10px 10px;
	border-width:10px 10px 10px 10px;
}
.bloc-divider-t-bloc-7-fill{
	fill:#FFFFFF;
	height:500px;
}
.bloc-divider-t-bloc-9-fill{
	fill:#FFFFFF;
}
.bloc-divider-b-bloc-9-fill{
	fill:#FFFFFF;
}
.bloc-divider-b-0-fill{
	fill:#5F5EF2;
	height:450px;
}
.bloc-divider-t-style{
	height:1000px;
	width:100%;
	fill:#5F5EF3;
}
.dropshad{
	text-shadow:0px 3px 20px #000000;
}
.bloc-divider-b-bloc-13-style{
	height:460px;
	fill:#28A6E1;
}
.bloc-0-padding-left{
	padding-left:101px;
	padding-right:0px;
}
.bloc-divider-t-bloc-14-style{
	height:324px;
	fill:#28A6E1;
}
.img-padding-bottom{
	padding-bottom:0px;
	margin-bottom:21px;
	margin-top:-141px;
	padding-top:0px;
}
.feat-sub-header{
	font-size:20px;
}
.feat-header{
	font-weight:bold;
}
.orang-gradient-bg{
	background:linear-gradient(74deg, #FFC107  0%, #FF4C00 98%);
	background-blend-mode:multiply;
}
.app-shadow{
	box-shadow:0px 31px 35px rgba(0,0,0,0.16),0px 0px 2px rgba(0,0,0,0.09);
}
.cta-card{
	padding:60px 60px 0px 60px;
	border-radius:30px 30px 30px 30px;
}
.row-bloc-14-padding-top{
	padding-top:101px;
	margin-bottom:150px;
}
.h2-bloc-14-style{
	font-size:40px;
}
.bloc-divider-t-bloc-14-fill{
	fill:#F8F8FD;
	height:183px;
}
.word-shadow{
	text-shadow:0px 10px 20px rgba(0,0,0,0.41);
}
.bloc-divider-b-style{
	height:306px;
	width:100%;
	fill:#FFFFFF;
}
.row-bloc-18-padding-top{
	padding-top:0px;
	margin-top:-200px;
}
.row-bloc-18-margin-top{
	margin-top:55px;
}
.h3-margin-top{
	padding-top:10px;
}
.h3-style{
	font-size:40px;
	font-family:"Lato";
	font-weight:100;
	margin-bottom:50px;
}
.p-margin-bottom{
	margin-bottom:0px;
}
.h3-28-style{
	font-family:"Lato";
	font-weight:100;
}
.h3-30-style{
	font-family:"Lato";
	font-weight:100;
}
.thintext{
	font-family:"Lato";
	font-weight:100;
	color:#000000!important;
}
.h1-margin-bottom{
	margin-top:-195px;
	padding-bottom:200px;
	font-size:60px;
	margin-bottom:-193px;
}
.bloc-divider-b-bloc-20-fill{
	fill:#FFFFFF;
	height:847px;
}
.bloc-divider-t-bloc-20-fill{
	fill:#FFFFFF;
	height:167px;
}
.img-style{
	width:600px;
	margin-top:8px;
	margin-bottom:-2px;
	padding-top:0px;
	padding-bottom:30px;
}
.bloc-padding-right{
	padding-right:0px;
}
.form-margin-right{
	margin-right:162px;
	width:100%;
}
.bloc-padding-left{
	padding-left:0px;
	margin-bottom:25px;
}
.btn-margin-top{
	margin-top:15px;
	margin-bottom:15px;
}
.p-bloc-11-style{
	font-size:25px;
}
.h3-27-style{
	font-family:"Lato";
	font-weight:100;
}
.h3-32-style{
	font-family:"Lato";
	font-weight:100;
}
.h3-34-style{
	font-family:"Lato";
	font-weight:100;
}
.h3-33-style{
	font-family:"Lato";
	font-weight:100;
}
.bloc-bloc-18-padding-left{
	padding-left:70px;
	margin-top:-260px;
}
.p-bloc-19-style{
	width:94.59%;
}
.cta-card-img{
	padding-bottom:25px;
	padding-left:82px;
}
.row-style{
	width:100%;
}
.red{
	border-color:#FF0000!important;
	border-style:_NS:2040;
}
.bloc-0-bloc-9-padding-left{
	padding-left:147px;
}
.divider{
	border-color:#FF0000!important;
	border-radius:1px 1px 1px 1px;
	border-width:1px 1px 1px 1px;
}
.map{
	opacity:0.5;
	caret-color:#000000;
}
.map:hover{
	opacity:1.0;
}
.bloc-bloc-14-padding-left{
	padding-left:20px;
}
.img-hack-padding-bottom{
	padding-bottom:0px;
}
.img-bloc-8-style{
	width:993px;
}
.bloc-30039-padding-left{
	padding-left:115px;
}
.bloc-31170-padding-right{
	padding-right:11px;
}
.p-11-style{
	width:80.05%;
	font-size:20px;
}
.img-grap-style{
	width:718px;
}
.h1-style{
	letter-spacing:px;
}
.btn-style{
	width:34.44%;
	margin-right:-7px;
}
.icon-padding-right{
	padding-right:20px;
}
.white-txt{
	color:#FFFFFF!important;
}
.feat-card-icon{
	width:50px;
	background:linear-gradient(0deg, #9809FF 0%, #8B45FD 100%);
	border-radius:10px 10px 10px 10px;
}
.feat-card-icon-pos{
	position:absolute;
	left:0px;
	right:0px;
	top:-25px;
}
.img-image-compare-br-style{
	position:relative;
	display:block;
	align-items:center;
	align-content:center;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	left:-450px;
	top:-400px;
	border-radius:6px 6px 6px 6px;
}
.img-19-style{
	width:220px;
	height:222px;
}
.img-anim-shapes-br-style{
	max-width:100%;
	width:200px;
	display:block;
	position:absolute;
	top:350px;
	right:127px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	justify-content:center;
	align-content:center;
	border-radius:6px 6px 6px 6px;
}
.img-13-style{
	width:250px;
}
.img-overlay-br-style{
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	bottom:30px;
	right:346px;
	position:absolute;
	display:block;
	max-width:100%;
	width:100px;
	border-radius:6px 6px 6px 6px;
}
.link-style{
	width:200px;
}
.img-phishing-v2-style{
	width:200px;
}
.img-waves-br-style{
	max-width:100%;
	width:260px;
	margin-left:490px;
	margin-right:490px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	height:270px;
	display:block;
	align-items:center;
	align-content:center;
	border-radius:6px 6px 6px 6px;
}
.img-cookie-consent-br-style{
	position:absolute;
	display:block;
	max-width:100%;
	width:200px;
	left:127px;
	bottom:150px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	margin:0px 0px 0px 0px;
	border-radius:6px 6px 6px 6px;
}
.img-inline-svg-br-style{
	max-width:100%;
	width:150px;
	bottom:150px;
	display:block;
	position:absolute;
	right:0px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	border-radius:6px 6px 6px 6px;
}
.img-snap-scroll-br-style{
	max-width:100%;
	width:200px;
	position:absolute;
	display:block;
	top:250px;
	right:381px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	align-items:center;
	align-content:center;
	border-radius:6px 6px 6px 6px;
}
.img-particles-br-style{
	max-width:100%;
	width:200px;
	display:block;
	position:absolute;
	left:279px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	align-items:center;
	align-content:center;
	top:300px;
	border-radius:6px 6px 6px 6px;
}
.img-countdown-br-style{
	justify-content:center;
	align-content:center;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	position:absolute;
	display:block;
	left:-160px;
	top:120px;
	max-width:100%;
	width:250px;
	border-radius:6px 6px 6px 6px;
}
.img-9-style{
	width:230px;
	height:232px;
}
.sm-img-hover-tilt-br-style{
	align-content:center;
	justify-content:center;
	max-width:100%;
	width:260px;
	position:absolute;
	display:block;
	bottom:-150px;
	right:0px;
	box-shadow:0px 8px 34px rgba(0,0,0,0.78);
	border-radius:6px 6px 6px 6px;
}
.app-feature-header{
	font-weight:bold;
}
.img-rounded-right{
	border-top-right-radius:20px;
	border-bottom-right-radius:20px;
}
.ransom-bg{
	background-blend-mode:multiply;
	background-color:#FFFFFF;
}
.img-rounded-left{
	padding:9px 9px 9px 9px;
	border-radius:20px 0px 0px 20px;
}
.bloc-30663-padding-left{
	padding-left:75px;
}
.white-btn{
	color:#9713FE!important;
	font-size:16px;
	background-color:#FFFFFF;
	margin-bottom:20px;
}
.cta-card-img-left{
	border-style:_popUpItemAction:;
	position:relative;
	width:100%;
	border-top-right-radius:10px;
	border-bottom-left-radius:30px;
	right:60px;
}
.img-email-compromi-style{
	width:595px;
	border-radius:50px 50px 50px 50px;
}
.e-comp-left{
	padding-left:14px;
}
.type-style{
	font-size:64px;
	text-align:center;
	font-weight:bold;
	display:block;
	color:#FFFFFF!important;
}
.p-bloc-4-style{
	font-size:20px;
	font-weight:bold;
}
.link{
	color:rgba(2,158,251,0.75)!important;
	cursor:auto;
}
.link:hover{
	color:#029EFB!important;
	text-decoration:underline!important;
}
.bk-loc{
	position:relative;
	float:right;
	top:-200px;
}
.img-local-backup-style{
	width:875px;
	padding-left:0px;
}
.bk-nas{
	top:-200px;
	position:absolute;
	z-index:-500;
	right:-10px;
	flex-direction:row;
	justify-content:flex-end;
}
.bk-clo{
	position:relative;
	top:-600px;
}
.bak-hype{
	top:-500px;
}
.img-nas-backup-style{
	width:674px;
}
.img-cloud-backup-style{
	height:580px;
}
.p-padding-left{
	padding-left:50px;
}
.h5-style{
	font-size:15px;
}
.list-padding-left{
	padding-left:74px;
}
.img-complianceli-style{
	width:783px;
}
.img-39-style{
	width:400px;
}
.img-38-style{
	width:319px;
	height:51px;
}
.img-g-suite-backup-margin-top{
	margin-top:12px;
	width:951px;
}
.p-36-style{
	font-size:16px;
}
.p-bloc-36-style{
	width:50%;
	font-size:20px;
}
.bloc-bloc-36-padding-right{
	padding-right:2px;
}
.row-padding-right{
	padding-right:0px;
	padding-left:0px;
	margin-left:-199px;
}
.h2-bloc-36-style{
	font-size:35px;
}
.bloc-22653-padding-left{
	padding-left:0px;
	padding-right:1px;
	margin-bottom:-1px;
}
.img-32-style{
	border-radius:0px 0px 0px 0px;
}
.row-padding-left{
	padding-left:0px;
	margin-left:-300px;
}
.img-edr-timeli-margin-left{
	width:583px;
	margin:20px -72px 20px -25px;
	border-radius:20px 20px 20px 20px;
}
.btn-margin-bottom{
	margin-bottom:20px;
	background-color:transparent;
}
.h2-16-style{
	width:75.45%;
}
.bloc-divider-t-bloc-43-fill{
	fill:#FFFFFF;
}
.bloc-divider-b-bloc-43-fill{
	fill:#FFFFFF;
}
.icon-fw{
	background-color:#0066FF;
	background-size:length;
	position:relative;
	bottom:50px;
	box-shadow:0px 10px 25px rgba(0,0,0,0.50);
	padding:10px 10px 10px 10px;
	border-radius:10px 10px 10px 10px;
	border-width:10px 10px 10px 10px;
}
.scool-fw{
	padding-right:20px;
	padding-left:20px;
}
.purp-gradient-bg{
	background:linear-gradient(274deg, #B17EFA 0%, #902FEE 100%);
	background-blend-mode:multiply;
}
.orang-gradient-bg-copy-1{
	background:linear-gradient(274deg, #902FEE 0%, #B17EFA 98%);
}
.p-bloc-2-style{
	width:71.16%;
	font-size:16px;
}
.bloc-bloc-2-padding-right{
	padding-right:1px;
	padding-left:0px;
}
.row-bloc-2-style{
	width:100%;
}
.bloc-bloc-2-padding-left{
	padding-left:269px;
}
.navtxt{
	font-size:20px;
}
.p-bloc-6-style{
	width:15.18%;
	padding-left:0px;
	margin-left:484px;
}
.h5-bloc-9-style{
	font-size:23px;
}
.h4-bloc-43-style{
	font-size:20px;
}
.sermentxt{
	font-size:18px;
}
.navbar-nav li a{
	font-size:16px;
}
.html-widget-padding-bottom{
	padding-bottom:25px;
}
.img-padding-left{
	margin-left:219px;
	margin-bottom:50px;
	padding-top:25px;
}
.p-bloc-27-style{
	width:88.51%;
}
.img-bloc-26-style{
	width:990px;
}

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

/* Background colour styles */

.bgc-bright-cerulean{
	background-color:#29A8E1;
}
.bgc-black{
	background-color:rgba(0,0,0,0.027451);
}
.bgc-tangerine-yellow{
	background-color:#FFCE00;
}

/* Text colour styles */

.tc-prussian-blue{
	color:#183A56!important;
}
.tc-ucla-blue{
	color:#577592!important;
}
.tc-red{
	color:#F90000!important;
}
.tc-black{
	color:#000000!important;
}
.tc-vivid-violet{
	color:#9809FF!important;
}
.bgc-{
	background-color:#FFFFFF;
}
.tc-bright-cerulean{
	color:#29A8E1!important;
}
.tc-white{
	color:rgba(255,255,255,0.8)!important;
}
.tc-black-2{
	color:rgba(0,0,0,0.701961)!important;
}
.tc-black-3{
	color:rgba(0,0,0,0.85098)!important;
}

/* Button colour styles */

.btn-tangerine-yellow{
	background:#FFCE00;
	color:rgba(0,0,0,.5)!important;
}
.btn-tangerine-yellow:hover{
	background:#cca500!important;
	color:rgba(0,0,0,.5)!important;
}
.btn-cornflower-blue{
	background:#569EF9;
	color:#FFFFFF!important;
}
.btn-cornflower-blue:hover{
	background:#457ec7!important;
	color:#FFFFFF!important;
}
.btn-vivid-violet{
	background:#9809FF;
	color:#FFFFFF!important;
}
.btn-vivid-violet:hover{
	background:#7a07cc!important;
	color:#FFFFFF!important;
}

/* Icon colour styles */

.icon-dark-pastel-green{
	color:#00CD29!important;
	border-color:#00CD29!important;
}
.icon-vivid-violet{
	color:#9809FF!important;
	border-color:#9809FF!important;
}
.icon-black{
	color:#000000!important;
	border-color:#000000!important;
}
.icon-white{
	color:rgba(255,255,255,0.8)!important;
	border-color:rgba(255,255,255,0.8)!important;
}
.icon-prussian-blue{
	color:#183A56!important;
	border-color:#183A56!important;
}

/* Bloc image backgrounds */

.bg-DEEP-stats-bg{
	background-image:url("img/DEEP-stats-bg.webp");
}

/* = Custom Bric Data
-------------------------------------------------------------- */

.smartnav{
	position:fixed;
	top:0;
	right:0;
	left:0;
	z-index:1030;
	-webkit-overflow-scrolling:touch;
}
.smartnav .navbar-nav>.nav-item a.nav-link{
	border:0 solid transparent}.scrolled-down{
	transform:translateY(-100%);
	transition:all .3s ease-in-out}.scrolled-up{
	transform:translateY(0);
	transition:all .3s ease-in-out}.img-text-overlay-container{
	position:relative;
}
.text-label-overlay{
	position:absolute;
	top: 50%;
	transform: translateY(-50%);
	width:100%;
	 text-align:center;
	font-size:40px;
}
.text-overlay-light-text{
	color:rgba(255,255,255,.5);
}
#particles-js{
	position: absolute;
	height:100%;
	width: 100%;
	left: 0;
	right:0;
	top:0;
	bottom: 0;
}


/* = 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){
	.img-24monitori-style{
		width:400px;
	}
	.bloc-divider-b-bloc-7-fill{
		height:200px;
	}
	.app-shadow{
	}
	.cta-card{
	}
	.bloc-divider-b-bloc-20-fill{
		width:100%;
		height:288px;
	}
	.bloc-0-padding-right{
		padding-right:1px;
		padding-top:87px;
		margin-top:-1px;
	}
	.bloc-bloc-9-padding-left{
		padding-left:231px;
	}
	.bloc-34965-padding-left{
		padding-left:9px;
		padding-right:1px;
	}
	.bloc-divider-t-bloc-7-fill{
		height:200px;
	}
	.bloc-divider-b-0-fill{
		height:185px;
	}
	.bloc-divider-b-bloc-13-style{
		height:413px;
	}
	.bloc-divider-t-bloc-14-style{
		height:170px;
	}
	.bloc-divider-t-fill{
		height:196px;
	}
	.illustration-section-title{
		padding-top:126px;
	}
	.bloc-divider-b-fill{
		height:336px;
	}
	.img-rounded-right{
		border-bottom-left-radius:0px;
		border-top-left-radius:0px;
	}
	.feature-details-col{
		margin-bottom:40px;
		text-align:center;
	}
	.cta-card-img-left{
	}
	.img-padding-left{
		padding-left:97px;
		padding-bottom:52px;
	}
	.cta-card-img{
		padding-left:60px;
	}
	.img-email-compromi-style{
		padding-bottom:15px;
		padding-left:14px;
	}
	.p-bloc-6-style{
		margin-left:269px;
		padding-left:0px;
		padding-right:1px;
		width:26.88%;
	}
	
}

@media (max-width: 767px){
	.img-24monitori-style{
		width:300px;
	}
	.bloc-divider-b-bloc-7-fill{
		height:200px;
	}
	.feat-card{
		margin-bottom:60px;
	}
	.app-shadow{
	}
	.cta-card{
		padding:30px 30px 0px 30px;
	}
	.bloc-bloc-9-padding-left{
		padding-left:3px;
	}
	.h2-bloc-9-style{
		padding-left:100px;
	}
	.bloc-34965-padding-left{
		padding-left:0px;
	}
	.bloc-divider-t-bloc-7-fill{
		height:159px;
	}
	.bloc-divider-t-bloc-14-style{
		height:177px;
	}
	.illustration-section-title{
		padding-top:206px;
	}
	.bloc-0-padding-left{
		padding-left:0px;
	}
	.h1-bloc-4-style{
		padding-top:82px;
	}
	.bloc-divider-b-fill{
		height:339px;
	}
	.bloc-divider-t-fill{
		height:521px;
	}
	.sm-img-waves-br-style{
		margin-right:188px;
		width:160px;
		height:170px;
		display:block;
		position:relative;
		bottom:140px;
		right:180px;
	}
	.m-img-cookie-consent-br-style{
		position:absolute;
		left:77px;
		bottom:140px;
	}
	.m-img-image-compare-br-style{
		left:-10px;
		top:-200px;
	}
	.m-img-snap-scroll-br-style{
		right:11px;
		top:140px;
		width:140px;
	}
	.sm-img-particles-br-style{
		left:279px;
	}
	.m-img-countdown-br-style{
		left:5px;
		top:420px;
	}
	.m-img-inline-svg-br-style{
		bottom:450px;
	}
	.sm-img-overlay-br-style{
		right:226px;
	}
	.img-image-compare-br-style{
		left:-10px;
		top:-200px;
	}
	.img-overlay-br-style{
		right:226px;
	}
	.img-24-style{
		width:150px;
		height:159px;
	}
	.sm-img-hover-tilt-br-style{
		bottom:-10px;
	}
	.img-monitori-style{
	}
	.img-rounded-right{
		border-top-right-radius:15px;
		border-bottom-right-radius:15px;
	}
	.feature-details-col{
		text-align:center;
	}
	.img-rounded-left{
		border-top-left-radius:15px;
		border-bottom-left-radius:15px;
	}
	.cta-card-img-left{
		right:30px;
	}
	.img-padding-left{
		padding-bottom:81px;
	}
	.img-email-compromi-style{
		padding-bottom:10px;
	}
	.cta-card-img{
		padding-left:0px;
	}
	.p-bloc-6-style{
		width:36.69%;
		margin-left:172px;
	}
	
}

@media (max-width: 575px){
	.h1-bloc-4-style{
		padding-top:88px;
	}
	.img-24monitori-style{
		height:390px;
		width:200px;
	}
	.bloc-divider-b-bloc-7-fill{
		height:150px;
	}
	.app-shadow{
	}
	.cta-card{
		padding:20px 20px 0px 20px;
	}
	.h2-bloc-9-style{
		padding-left:15px;
	}
	.img-bloc-8-style{
		padding-left:0px;
	}
	.bloc-34965-padding-left{
		padding-left:2px;
		padding-right:1px;
	}
	.illustration-section-title{
		padding-right:1px;
		width:96.45%;
	}
	.bloc-divider-b-0-fill{
		height:76px;
	}
	.bloc-divider-t-fill{
		height:335px;
	}
	.img-fwic-style{
		height:107px;
		width:100px;
	}
	.img-phishi-style{
		width:140px;
		height:144px;
	}
	.img-bloc-5-style{
		width:100px;
		height:107px;
	}
	.img-dr-back-style{
		width:100px;
		height:107px;
	}
	.img-24-style{
		height:159px;
		width:150px;
	}
	.img-monitori-style{
		width:160px;
		height:170px;
	}
	.m-img-cookie-consent-br-style{
		left:1px;
	}
	.img-acce-style{
		width:100px;
		height:107px;
	}
	.sm-img-particles-br-style{
		left:179px;
	}
	.sm-img-overlay-br-style{
		right:26px;
		bottom:260px;
	}
	.sm-img-waves-br-style{
		right:80px;
	}
	.sm-img-anim-shapes-br-style{
		top:-150px;
		right:27px;
	}
	.img-anim-shapes-br-style{
		top:-150px;
		right:27px;
	}
	.img-overlay-br-style{
		right:26px;
		bottom:260px;
	}
	.h1-margin-bottom{
		padding-top:37px;
	}
	.white-txt{
	}
	.bloc-bloc-18-padding-left{
		padding-left:17px;
	}
	.img-rounded-right{
		border-bottom-right-radius:10px;
		border-top-right-radius:10px;
	}
	.img-rounded-left{
		border-bottom-left-radius:10px;
		border-top-left-radius:10px;
	}
	.cta-card-img-left{
		right:20px;
	}
	.img-padding-left{
		padding-bottom:79px;
		padding-left:57px;
	}
	.cta-card-img{
		padding-left:0px;
	}
	.img-margin-left{
		margin-left:-23px;
	}
	.img-email-compromi-style{
		width:236px;
		height:152px;
	}
	.p-bloc-6-style{
		margin-left:56px;
		width:64.44%;
	}
	
}

