/*-----------------------------------------------------------------------------------
	Iptical
	Author: Rane Dawson
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#050505;
    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;}}

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'01Digitall';
	src: url('./fonts/01Digitall/01%20Digitall.ttf');
	src: url('./fonts/01Digitall/01%20Digitall.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'Inter28pt-Light';
	src: url('./fonts/Inter28pt-Light/Inter_28pt-Light.ttf');
	src: url('./fonts/Inter28pt-Light/Inter_28pt-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'Inter28pt-Thin';
	src: url('./fonts/Inter28pt-Thin/Inter_28pt-Thin.ttf');
	src: url('./fonts/Inter28pt-Thin/Inter_28pt-Thin.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'Inter18pt-Bold';
	src: url('./fonts/Inter18pt-Bold/Inter_18pt-Bold.ttf');
	src: url('./fonts/Inter18pt-Bold/Inter_18pt-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'Inter18pt-Light';
	src: url('./fonts/Inter18pt-Light/Inter_18pt-Light.ttf');
	src: url('./fonts/Inter18pt-Light/Inter_18pt-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

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


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


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

.b-divider{
	border-top:1px solid rgba(0,0,0,.1);
	border-bottom:1px solid rgba(0,0,0,.1);
}


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

/* = Sticky Nav
-------------------------------------------------------------- */

.sticky-nav.sticky{
	position:fixed;
	top:0;
	z-index:1000;
	box-shadow:0 1px 2px rgba(0,0,0,.3);
	 transition: all .2s ease-out;
}
/* 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;
}

/* Side Bar Navigation */
.nav-special.sidebar-nav{
	position: fixed;
	right: -300px;
	top: 0;
	bottom: 0;
	width: 300px;
	z-index: 1000;
	transition: all .2s linear;
}
.nav-invert .nav-special.sidebar-nav{
	right: auto;
	left: -300px;
}
 .nav-special.sidebar-nav .site-navigation{
	margin-top:15px;
	padding-left:15px;
}
.nav-special.sidebar-nav .nav > li a{
	color:rgba(255,255,255,.8);
}
 .nav-special.sidebar-nav .nav > li a:hover{
	color:#FFF;
}
 .open.nav-special.sidebar-nav{
	right: 0;
	transition: all .2s linear;
}
.nav-invert .open.nav-special.sidebar-nav{
	left: 0;
	transition: all .2s linear;
}
.navbar-toggler:focus{
	box-shadow:none;
}
;
	
/* Content Tint */
.content-tint{
	z-index: -1;
	transition: background .2s linear;
}
.content-tint.on{
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	background: transparent;
	z-index: 1001;
	background:rgba(0,0,0,.4);
}
.content-tint.on:hover{
	background:rgba(0,0,0,.1);
}
/* 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-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-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-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-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 Scale */
.img-fluid-up{
	min-width: 100%;
	height: auto;
}



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

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

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

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Roboto";
	color:#F5F5F5!important;
}
.container{
	max-width:1200px;
}
.p-hero{
	font-size:32px;
	width:75.38%;
	line-height:48px;
	font-family:"Montserrat";
}
.custom-btn{
	width:32%;
	color:#737A7A!important;
	background-position:center center;
}
.link-style{
	font-family:"01Digitall";
	font-size:24px;
	line-height:30px;
}
.navbar-nav li a{
	font-family:"01Digitall";
	color:var(--swatch-var-5243)!important;
	font-size:20px;
}
.h2-feature{
	width:100%;
	line-height:60px;
	color:#737A7A!important;
	font-size:52px;
	text-overflow:initial;
	font-family:"Inter28pt-Thin";
}
.p-style{
	width:69.98%;
}
.btn-button-style{
	width:32.9%;
}
.btn-3-style{
	width:32.36%;
}
.btn-style{
	width:62.44%;
	border-radius:20px 20px 20px 20px;
	border-color:#0083FF!important;
	letter-spacing:2px;
	font-size:18px;
	color:#737A7A!important;
	text-align:center;
	text-transform:none;
	text-decoration:none;
}
.hero-txt{
	background-clip:text!important;
	-webkit-background-clip:text!important;
	background-color:#650C0C;
}
.h1-style{
	font-size:125px;
	line-height:150px;
	font-family:"Roboto";
}
.creativity{
	filter:blur(1px);
	font-size:60px;
	color:#737A7A!important;
	font-family:"Roboto";
}
.scan{
	border-color:#C0C0C0!important;
	border-style:dashed;
	border-width:2px 2px 2px 2px;
	border-radius:20px 20px 20px 20px;
	height:300px;
}
.h3-1289-style{
	font-size:72px;
	line-height:80px;
	width:100%;
}
.row-style{
	width:69.24%;
}
.h3-999k-style{
	width:100%;
	font-size:40px;
}
.team-card{
	min-height:150px;
	box-shadow:inset 7.78px -7.78px 15px #0083FF;
	border-color:#737A7A!important;
	border-style:solid;
	border-width:1px 1px 1px 1px;
	border-radius:25px 25px 25px 25px;
}
.h3-john-doe-style{
	opacity:1.0;
	font-size:72px;
}
.h3-3-style{
	font-size:72px;
	line-height:80px;
	font-family:"01Digitall";
}
.h3-4-style{
	font-size:72px;
}
.h1-bloc-5-style{
	font-size:72px;
	line-height:80px;
	font-family:"01Digitall";
}
.securenow-btn{
	color:#7A7373!important;
	border-style:solid;
	border-color:#0083FF!important;
}
.btn-secure-now-style{
	width:13.24%;
}
.link-iptical-style{
	font-family:"01Digitall";
}
.p-svc{
	font-family:"Roboto";
	font-size:32px;
	line-height:48px;
}
.h3-list{
	font-family:"Inter18pt-Bold";
	font-size:10px;
}
.h3-5-style{
	font-family:"Montserrat";
	font-size:18px;
}
.h2-iptical-scan-lock-style{
	font-family:"01Digitall";
	font-size:48px;
	line-height:56px;
}
.p-bloc-2-style{
	font-family:"Outfit";
	font-size:18px;
	line-height:20px;
	width:100%;
}
.img-2-style{
	width:180px;
	height:180px;
}
.btn-lock-now-style{
	width:30%;
}
.h2-iptical-scan-style{
	font-family:"01Digitall";
}
.img-bloc-3-style{
	width:200px;
	height:200px;
}
.p-bloc-3-style{
	font-size:20px;
	font-family:"Montserrat";
}
.img-bloc-4-style{
	height:150px;
	width:150px;
}
.p-3-style{
	font-size:20px;
}
.img-nick-salem-style{
	width:200px;
}
.img-chad-freeman-style{
	width:200px;
}
.h3-bloc-16-style{
	font-family:"Inter";
}
.blocs-card-width{
	width:25%;
}
.h1-bloc-12-style{
	font-size:60px;
}
.h1-6-style{
	font-size:60px;
}
.h1-7-style{
	font-size:60px;
}
.p-11-style{
	font-size:18px;
}
.h1-8-style{
	font-size:60px;
}
.p-12-style{
	font-size:18px;
}
.h1-9-style{
	font-size:60px;
}
.p-13-style{
	font-size:18px;
}
.h1-10-style{
	font-size:60px;
}
.p-bloc-12-style{
	font-size:18px;
}
.img-purcha-style{
	width:150px;
	height:150px;
}
.img-refinan-style{
	width:150px;
	height:150px;
}
.img-bloc-10-style{
	width:150px;
	height:150px;
}
.p3-feature{
	font-size:20px;
	font-family:"Montserrat";
}
.menu-icon-nav-stroke{
	stroke:var(--swatch-var-5243)!important;
	fill:var(--swatch-var-5243)!important;
}
.p-feature{
	font-family:"Montserrat";
	font-size:20px;
}
.h2-bloc-5-style{
	font-size:48px;
	line-height:60px;
}
.h2-bloc-4-style{
	font-size:48px;
	line-height:60px;
}
.img-scan-style{
	width:150px;
	height:150px;
}
.p-2-style{
	font-family:"Montserrat";
	font-size:20px;
}
.h3-bloc-5-style{
	font-size:72px;
	line-height:80px;
	font-family:"01Digitall";
}
.content1{
	font-size:100px;
	font-weight:lighter;
}
.btn-securenow{
	color:var(--swatch-var-7247)!important;
	border-color:var(--swatch-var-5243)!important;
}
.btn-securenow:hover{
	color:var(--swatch-var-5243)!important;
}
.bloc-fill{
	fill:var(--swatch-var-3326);
}
.p-faq-style{
	font-family:"Montserrat";
	font-size:30px;
}
.p-6-style{
	font-size:30px;
	line-height:45px;
}
.p-7-style{
	font-size:30px;
	line-height:45px;
}
.hero-h1{
	color:transparent!important;
	background-image:url("img/security-bkg.jpg");
	background-image: -webkit-image-set(url("img/security-bkg.webp") 1x,
url("img/security-bkg.webp") 2x);background-image: image-set(url("img/security-bkg.jpg") 1x,
url("img/security-bkg.jpg") 2x,url("img/security-bkg.webp") 1x,
url("img/security-bkg.webp") 2x);
	background-clip:text!important;
	-webkit-background-clip:text!important;
	background-position:left top;
}
.btn-securenow:active{
	color:var(--swatch-var-5243)!important;
}
.h1-svc{
	font-family:"01Digitall";
	line-height:84px;
	font-size:72px;
}
.container-div-min-height{
	min-height:210px;
	width:82.37%;
}
.h1-hero{
	color:transparent!important;
	background:linear-gradient(0deg, #000000    0%, var(--swatch-var-3326) 100%);
	background-clip:text!important;
	-webkit-background-clip:text!important;
	font-size:124px;
	line-height:150px;
	text-align:center;
	font-family:"Inter28pt-Light";
}
.iptical{
	border-color:transparent!important;
	color:var(--swatch-var-7247)!important;
	font-size:22px;
	line-height:32px;
}
.sigma{
	background:linear-gradient(0deg, #C39439 9%, #114791 90%);
	color:transparent!important;
	background-clip:text!important;
	-webkit-background-clip:text!important;
}
.form-style{
	width:50%;
	text-align:left;
	align-content:center;
	align-items:center;
}
.forminput{
	color:var(--swatch-var-3014)!important;
	background-color:var(--swatch-var-2521);
	border-radius:15px 15px 15px 15px;
}
.h3-feature{
	font-family:"Roboto";
}
.link-terms-style{
	text-decoration:none;
}
.link-privacy-style{
	text-decoration:none;
}
.link-twitter-style{
	text-decoration:none;
}
.link-facebook-style{
	text-decoration:none;
}
.link-android-style{
	text-decoration:none;
}
.link-ios-style{
	text-decoration:none;
}
.link-the-team-style{
	text-decoration:none;
}
.link-contact-us-style{
	text-decoration:none;
}
.ipticalscan{
	font-family:"01Digitall";
}
.h1-iptical-scan-style{
	font-size:125px;
	line-height:150px;
}
.forminput:focus{
	background-color:var(--swatch-var-2521);
}
.menu-icon-0-stroke{
	stroke:var(--swatch-var-7247)!important;
	fill:var(--swatch-var-7247)!important;
}
.btn-style:hover{
	color:var(--swatch-var-5243)!important;
}
.p-quote{
	font-size:48px;
	line-height:72px;
}
.h3-style{
	font-family:"Inter18pt-Light";
	font-size:20px;
}
.footer-link{
	font-family:"Roboto";
	font-size:12px;
	text-align:center;
	color:var(--swatch-var-7247)!important;
}
.iptical-text{
	font-family:"01Digitall";
	color:var(--swatch-var-7247)!important;
	line-height:48px;
	font-size:32px;
}
.p-hero-style{
	font-family:"Montserrat";
}
.h1-ranedawson{
	font-size:28px;
	line-height:32px;
	font-family:"Montserrat";
}
.price-card{
	border-color:var(--swatch-var-5243)!important;
	border-style:none;
	background-color:var(--swatch-var-4107);
	border-width:2px 2px 2px 2px;
	background:linear-gradient(175deg, var(--swatch-var-4274) 0%, var(--swatch-var-2521) 100%);
	border-radius:25px 25px 25px 25px;
}
.divider-margin-left{
	margin-left:auto;
	margin-right:auto;
	background-color:var(--swatch-var-2521);
}
.btn-submit{
	border-color:var(--swatch-var-5243)!important;
	color:var(--swatch-var-7247)!important;
}
.btn-submit:hover{
	background-color:var(--swatch-var-5243);
	color:var(--swatch-var-5243)!important;
	border-color:var(--swatch-var-5243)!important;
}
.img-1-style{
	width:200px;
	height:200px;
	position:relative;
}
.h4-style{
	font-size:20px;
}
.navbar-logo{
	text-transform:none;
	text-decoration:none;
	font-size:20px;
}
.h4-iptical-style{
	font-family:"01Digitall";
	color:transparent!important;
	background:linear-gradient(0deg, #000000 0%, #FFFFFF 100%);
	background-clip:text!important;
	-webkit-background-clip:text!important;
	font-size:24px;
}
.h3-scan-style{
	font-family:"01Digitall";
	font-size:32px;
}
.h3-lock-style{
	font-family:"01Digitall";
	font-size:32px;
}
.p-cardtext{
	font-size:12px;
	text-align:left;
	color:var(--swatch-var-7247)!important;
	font-family:"Montserrat";
}
.h1-hero-xs{
	font-size:124px;
	font-family:"Inter28pt-Light";
}
.menu-icon-6942-stroke{
	stroke:var(--swatch-var-7247)!important;
	fill:var(--swatch-var-7247)!important;
}
.h4-11-style{
	font-family:"01Digitall";
}
.link-dallas-tx-style{
	text-decoration:none;
}
.h4-company-style{
	font-family:"Montserrat";
	font-size:20px;
}
.link-scan-style{
	text-decoration:none;
	font-weight:normal;
}
.link-lock-style{
	text-decoration:none;
	font-weight:normal;
}
.link-pricing-style{
	text-decoration:none;
	font-weight:normal;
}
.link-about-style{
	text-decoration:none;
}
.word-emphasis{
	color:var(--swatch-var-5243)!important;
}
.link-footer-3col-style{
	text-decoration:none;
}
.accordian-card{
	background-color:var(--swatch-var-2965);
}
.accordian-card-number{
	font-size:100px;
	font-weight:100;
	color:var(--swatch-var-3326)!important;
}
.link-01-style{
	text-decoration:none;
}
.link-02-style{
	text-decoration:none;
}
.link-03-style{
	text-decoration:none;
}
.link-04-style{
	text-decoration:none;
}
.link-05-style{
	text-decoration:none;
}
.link-06-style{
	text-decoration:none;
}
.accordian-content{
	color:var(--swatch-var-5243)!important;
}
.btn-5minutecall{
	color:var(--swatch-var-2869)!important;
	background-color:var(--swatch-var-3326);
}
.p-bloc-5-style{
	width:100%;
	font-family:"Inter28pt-Thin";
	font-size:60px;
}
.quotes{
	color:var(--swatch-var-5243)!important;
}
.bloc-divider-t-fill{
	fill:var(--swatch-var-5243);
}
.divider-background-color{
	background-color:var(--swatch-var-2521);
	margin-left:auto;
	margin-right:auto;
	height:.5px;
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-3503:rgba(39,14,208,1.00);
	
	--swatch-var-5243:rgba(0,131,255,1.00);
	
	--swatch-var-7247:rgba(115,122,122,1.00);
	
	--swatch-var-2869:rgba(0,0,0,1.00);
	
	--swatch-var-4107:rgba(255,255,255,1.00);
	
	--swatch-var-2496:rgba(0,0,0,1.00);
	
	--swatch-var-3538:rgba(23,61,239,1.00);
	
	--swatch-var-3326:rgba(153,155,155,1.00);
	
	--swatch-var-3014:rgba(249,249,249,1.00);
	
	--swatch-var-3021:rgba(243,243,243,1.00);
	
	--swatch-var-5032:rgba(238,238,238,1.00);
	
	--swatch-var-6171:rgba(234,234,234,1.00);
	
	--swatch-var-457:rgba(0,0,0,1.00);
	
	--swatch-var-2965:rgba(5,5,5,0.00);
	
	--swatch-var-6042:rgba(3,3,3,1.00);
	
	--swatch-var-4274:rgba(8,8,8,1.00);
	
	--swatch-var-6294:rgba(16,16,16,1.00);
	
	--swatch-var-2521:rgba(33,33,33,1.00);
	
	--swatch-var-4593:rgba(255,255,255,0.50);
	
	--swatch-var-3311:rgba(0,88,0,0.00);
	
	--swatch-var-6749:rgba(53,53,55,1.00);
	
}


/* Background colour styles */

.bgc-2869{
	background-color:var(--swatch-var-2869);
}
.bgc-2965{
	background-color:var(--swatch-var-2965);
}
.bgc-6171{
	background-color:var(--swatch-var-6171);
}

/* Text colour styles */

.tc-3014{
	color:var(--swatch-var-3014)!important;
}
.tc-5243{
	color:var(--swatch-var-5243)!important;
}
.tc-7247{
	color:var(--swatch-var-7247)!important;
}
.tc-3326{
	color:var(--swatch-var-3326)!important;
}
.tc-3538{
	color:var(--swatch-var-3538)!important;
}
.tc-3503{
	color:var(--swatch-var-3503)!important;
}

/* Button colour styles */

.wire-btn-c-5243{
	color:var(--swatch-var-5243)!important;
	border-color:var(--swatch-var-5243)!important;
}

/* Link colour styles */

.ltc-7247{
	color:var(--swatch-var-7247)!important;
}
.ltc-7247:hover{
	color:#404747!important;
}

/* Icon colour styles */

.icon-5243{
	color:var(--swatch-var-5243)!important;
	border-color:var(--swatch-var-5243)!important;
}

/* Bloc image backgrounds */

.bg-landing-bkg{
	background-image:url("img/landing-bkg.png");
}
.bg-IMG-6241-Original{
	background-image:url("img/IMG_6241_Original.jpg");
}



/* = 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){
	.p-hero{
		font-size:32px;
		width:75.91%;
	}
	.custom-btn{
		width:22.42%;
	}
	.h2-feature{
		width:100%;
		font-size:38px;
		line-height:48px;
	}
	.btn-secure-now-style{
		width:25.21%;
	}
	.h1-style{
		font-size:86px;
		line-height:100px;
	}
	.btn-style{
		width:48.7%;
	}
	.img-2-style{
		width:185px;
		height:185px;
	}
	.btn-lock-now-style{
		width:49.57%;
	}
	.blocs-card-width{
		width:50%;
	}
	.h1-svc{
		font-size:72px;
		line-height:84px;
	}
	.h2-feature-md{
		width:100%;
		line-height:48px;
		font-size:38px;
	}
	.link-contact-us-style{
		width:100%;
	}
	.p-cardtext{
		text-align:left;
	}
	.h1-hero-xs{
		font-size:150px;
		line-height:175px;
	}
	
}

@media (max-width: 767px){
	.p-hero{
		width:100%;
		font-size:24px;
	}
	.menu-icon-stroke{
		stroke:#C0C0C0!important;
		fill:#C0C0C0!important;
	}
	.h1-style{
		font-size:62px;
		line-height:84px;
	}
	.blocs-card-width{
		width:50%;
	}
	.menu-icon-nav-stroke{
		stroke:var(--swatch-var-5243)!important;
		fill:var(--swatch-var-5243)!important;
	}
	.h2-feature-sm{
		font-size:60px;
		line-height:72px;
	}
	.h2-feature{
		font-size:60px;
		line-height:72px;
	}
	.p-quote{
		font-size:22px;
	}
	.forminput{
		border-width:1px 1px 1px 1px;
	}
	.menu-icon-0-nav-stroke{
		stroke:var(--swatch-var-7247)!important;
		fill:var(--swatch-var-7247)!important;
	}
	.h1-hero-xs{
		font-size:124px;
	}
	.p-bloc-5-style{
		font-size:48px;
		line-height:60px;
	}
	.sidebar-nav{
		width:230px!important;
	}
	.nav-special.sidebar-nav .nav > li{
		width:80%;
	}
	.nav-invert .sidebar-nav .close-special-menu{
		left:200px;
	}
	
}

@media (max-width: 575px){
	.footer-link{
		text-align:center;
	}
	.custom-btn{
		width:55.19%;
	}
	.p-hero{
		font-size:20px;
		line-height:32px;
	}
	.h2-feature{
		width:100%;
		font-size:52px;
		line-height:60px;
	}
	.h1-style{
		font-size:48px;
		line-height:84px;
		width:100%;
	}
	.btn-secure-now-style{
		width:48.52%;
	}
	.p-svc{
		width:100%;
		font-size:23px;
	}
	.btn-style{
		width:40.7%;
	}
	.blocs-card-width{
		width:100%;
	}
	.h1-svc{
		font-size:72px;
	}
	.h1-hero-xs{
		font-size:63px;
		line-height:84px;
	}
	.p-quote{
		font-size:18px;
	}
	.navbar-logo{
		font-size:18px;
	}
	.p-bloc-5-style{
		font-size:40px;
	}
	
}

