/*-----------------------------------------------------------------------------------
	Siebens
	About: Siebens, contadores públicos y consultores de negocio
	Author: Fernando Aguilar Vergara
	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;
}


/* Sizes */

.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 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;
}


/* Background Textures */

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


/* 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-md{
	margin-top:50px;
}


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

.navbar-dark .nav .dropdown-menu .nav-link{
	color: rgb(64, 64, 64);
}
/* = Sticky Nav
-------------------------------------------------------------- */

.sticky-bloc.sticky,.sticky-nav.sticky{
	position:fixed;
	z-index:1000;
	transition: all .2s ease-out;
}
.sticky-nav.sticky{
	box-shadow: 0 1px 2px rgba(0,0,0,.3);
}
/* 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);
}
.navbar-toggle.menu-icon-rounded-bars{
	margin-top:7px!important;
}
/* 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;
}
.mg-lg{
	margin-top:10px;
	margin-bottom:40px;
}

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

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

.btn-sq{
	border-radius: 0px;
}
.btn-style-none,.btn-style-none:hover,.btn-style-none:active,.btn-style-none:focus{
	background:none;
	box-shadow: none;
	padding:0;
}
.btn-xl{
	padding: 16px 40px;
	font-size: 28px;
}
.a-block{
	width:100%;
	text-align:left;
	display: inline-block;
}
.text-center .a-block{
	text-align:center;
}
.dropdown a .caret{
	margin:0 0 0 5px}.btn-dropdown .dropdown-menu .dropdown{
	padding: 3px 20px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}
.icon-round{
	margin:0 auto;
	border:2px solid transparent;
	border-radius: 50%;
	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;
}


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


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

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


.carousel-nav-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.carousel-caption-center{
	top: 50%;
	bottom: initial;
	transform: translateY(-50%);
}


/* 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:"Lato";
	font-weight:300;
}
.container{
	max-width:1140px;
}
.h1-style{
	font-size:60px;
	font-family:"Lato";
	font-weight:900;
	color:#ffffff;
}
.hotel-about-text-box{
	max-width:500px;
	margin-right:auto;
	margin-left:auto;
}
.hotel-brand-text-span{
	font-style:italic;
	color:#521B92!important;
}
.h1-2-style{
	font-size:50px;
}
.freelancer-small-text{
	font-family:"Lato";
	font-size:14px;
	color:#FEFFFF!important;
	line-height:20px;
	font-weight:300;
}
.freelancer-black-button{
	background-color:#000000;
	font-family:"PT Serif";
	color:#FEFFFF!important;
	font-size:14px;
	font-weight:normal;
	text-transform:none;
	line-height:22px;
	padding-right:28px;
	padding-left:28px;
	border-width:0px 0px 0px 0px;
}
.freelancer-black-button:hover{
	background-color:#424242;
}
.freelancer-email-field{
	font-family:"Lato";
	font-weight:300;
	font-size:14px;
	line-height:22px;
	border-style:solid;
	border-color:#EAEAEA!important;
	color:#000000!important;
	border-radius:0px 0px 0px 0px;
	border-width:1px 1px 1px 1px;
}
.freelancer-email-field:hover{
	border-color:#5E5E5E!important;
}
.freelancer-email-field:active{
	border-color:#000000!important;
}
.freelancer-page-title{
	font-family:"Lato";
	font-weight:700;
	font-size:60px;
	line-height:70px;
}
.freelancer-check-box{
	margin-bottom:15px;
}
.mini-button{
	background-color:#0095FF;
	text-transform:uppercase;
	font-family:"Poppins";
	font-weight:700;
	color:#FFFFFF!important;
	padding:12px 28px 10px 28px;
	border-width:0px 0px 0px 0px;
}
.mini-button:hover{
	background-color:#0075C7;
	color:#FEFFFF!important;
}
.mini-form-check{
	margin-top:28px;
	margin-bottom:28px;
}
.mini-button-contact{
	background-color:rgba(0,0,0,0.53);
	text-transform:capitalize;
	font-family:"Lato";
	font-weight:300;
	color:#FFFFFF!important;
	border-style:_popUpItemAction:;
	margin:15px 15px 15px 15px;
	padding:12px 28px 10px 28px;
	border-width:0px 0px 0px 0px;
}
.mini-button-contact:hover{
	background-color:rgba(0,0,0,0.78);
	color:#FEFFFF!important;
	font-family:"Lato";
	font-weight:700;
}
.h3-style{
	width:85.35%;
}
.footer-link{
	font-family:"Lato";
	font-weight:300;
}
.footer-link:hover{
	font-family:"Lato";
	font-weight:300;
}
.footer-link:visited{
	font-family:"Lato";
	font-weight:300;
}
.enterprise-bold-text{
	font-weight:700;
}
.enterprise-products-icon{
	margin-bottom:20px;
	font-size:50px;
}
.enterprise-product-card{
	box-shadow:0px 0px 28px rgba(0,0,0,0.2);
	margin-right:10px;
	margin-left:10px;
	border-style:solid;
	border-color:rgba(3,40,101,0.0)!important;
	padding:28px 28px 28px 28px;
	border-width:2px 2px 2px 2px;
}
.enterprise-product-card:hover{
	border-color:rgba(0,102,204,0.7)!important;
}
.bloc-divider-b-style{
	height:300px;
	fill:#FFFFFF;
}
.h1-4-style{
	font-family:"Lato";
	font-weight:700;
}
.p-style{
	font-size:20px;
}
.h1-bloc-6-style{
	font-family:"Lato";
	font-weight:700;
}
.p-bloc-6-style{
	font-size:20px;
}
.p-8-style{
	font-size:20px;
}
.p-9-style{
	font-size:20px;
}
.p-10-style{
	font-size:20px;
}
.p-11-style{
	font-size:20px;
}
.img-style{
	width:627px;
}
.p-15-style{
	font-size:24px;
	width:100%;
}
.row-style{
	width:100%;
}
.p-17-style{
	width:100%;
}
.h1-acción-social-style{
	font-family:"Lato";
	font-weight:700;
}
.p-14-style{
	font-size:30px;
	width:82.8%;
}
.h1-7-style{
	font-family:"Lato";
	font-weight:700;
}
.p-3007-style{
	font-size:26px;
}
.h1-8-style{
	font-family:"Lato";
	font-weight:900;
	font-size:60px;
}
.h1-9-style{
	font-family:"Lato";
	font-weight:700;
	font-size:30px;
}
.p-16-style{
	font-size:24px;
	letter-spacing:px;
}
.h3-bloc-10-style{
	font-family:"Lato";
	font-weight:700;
	font-size:30px;
}
.service-button{
	background-color:#008E00;
	font-family:"Lato";
	font-weight:700;
	text-transform:uppercase;
	font-size:12px;
	letter-spacing:0.05em;
	padding-right:28px;
	padding-left:28px;
	line-height:22px;
	color:#FEFFFF!important;
	border-width:0px 0px 0px 0px;
}
.service-button:hover{
	color:#FEFFFF!important;
	background-color:#007900;
}
.service-footer-icon{
	background-color:#000000;
	color:#FEFFFF!important;
	margin-bottom:7px;
	border-width:0px 0px 0px 0px;
}
.service-icon-footer-div{
	margin-top:-65px;
}
.service-card-footer{
	font-family:"Lato";
	font-weight:300;
	margin:80px 5px 5px 5px;
}
.h2-style{
	font-size:50px;
	font-family:"Lato";
	font-weight:700;
}
.text-span-color{
	color:#000000;
}
.h2-color{
	color:#ffffff;
	font-family:"Lato";
	font-weight:700;
}
.startup-button{
	background-color:#666CD5;
	color:#FEFFFF!important;
	padding-right:28px;
	padding-left:28px;
	font-size:18px;
	line-height:36px;
	font-weight:bold;
	border-width:0px 0px 0px 0px;
}
.startup-button:hover{
	background-color:#7980FF;
	color:#FEFFFF!important;
}
.startup-bold{
	font-weight:bold;
}
.startup-black-icon{
	font-size:100px;
	margin-bottom:28px;
	margin-top:28px;
	color:transparent!important;
	background-clip:text!important;
	-webkit-background-clip:text!important;
	background-color:#000000;
}
.card-body-style{
	height:242px;
	margin:0px 0px 84px 0px;
}
.startup-solid-icon{
	font-size:100px;
	margin-bottom:28px;
	margin-top:28px;
	color:transparent!important;
	background-clip:text!important;
	-webkit-background-clip:text!important;
	background-color:#000000;
}
.h2-bloc-22-style{
	width:100%;
}
.card{
	border-style:none;
}
.card:hover{
	box-shadow:0px 2px 18px #BBBBBB;
}
.card-body-bloc-19-style{
	height:325px;
}
.p-bloc-23-style{
	font-family:"Lato";
	font-weight:900;
	font-size:40px;
}
.p-64-style{
	font-size:20px;
}
.link-style{
	font-weight:bold;
}
.link-bloc-23-style{
	font-weight:bold;
}
.carousel-style{
	width:100%;
	background-size:length;
	color:#000000!important;
	text-decoration:none;
	caret-color:#000000;
	margin:0px 0px 0px 0px;
	padding:0px 0px 39px 0px;
}
.p-66-style{
	font-family:"Lato";
	font-weight:700;
	font-size:40px;
	width:100%;
}
.p-68-style{
	font-family:"Lato";
	font-weight:700;
	font-size:28px;
}
.p-69-style{
	font-size:20px;
}
.p-bloc-26-style{
	line-height:18px;
}
.p-71-style{
	line-height:18px;
}
.h3-bloc-26-style{
	font-size:20px;
	letter-spacing:0px;
}
.indica{
	background-color:#666666;
	width:69px;
	left:180px;
	border-style:_popUpItemAction:;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	border-radius:10% 10% 10% 10%;
}
.p-74-style{
	font-family:"Lato";
	font-weight:700;
	font-size:28px;
}
.p-75-style{
	font-size:20px;
}
.h3-33-style{
	font-size:20px;
}
.p-76-style{
	font-family:"Lato";
	font-weight:700;
	font-size:40px;
}
.p-77-style{
	font-family:"Lato";
	font-weight:300;
	font-size:22px;
}
.container-div-style{
	width:54.69%;
}
.container-div-0-style{
	width:56.25%;
}
.butt_nav{
	color:#FEFFFF!important;
	font-family:"Lato";
	font-weight:300;
	background-color:rgba(255,255,255,0.29);
	font-size:18px;
	margin:0px 0px 0px 0px;
	padding:5px 5px 5px 5px;
	border-radius:10px 10px 10px 10px;
}
.butt_nav:hover{
	font-family:"Lato";
	font-weight:700;
}
.col_ic{
	max-width:58px;
	margin:0px 0px 0px 0px;
}
.p-bloc-4-style{
	width:100%;
	font-size:15px;
}

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

/* Swatch Variables */
:root{
	
	--swatch-var-7437:#1A1918;
	
	--swatch-var-2283:#FEFFFF;
	
	--swatch-var-6225:#F8F8F8;
	
	--swatch-var-386:#171717;
	
	--swatch-var-4792:#444444;
	
	--swatch-var-5068:#000000;
	
	--swatch-var-2255:#424242;
	
	--swatch-var-3211:#282828;
	
	--swatch-var-3707:#0096FF;
	
	--swatch-var-7217:#151515;
	
	--swatch-var-4733:#0066CC;
	
	--swatch-var-4501:rgba(255,255,255,0.9);
	
	--swatch-var-7999:#976E51;
	
	--swatch-var-6676:#EAEAEA;
	
	--swatch-var-1644:rgba(255,255,255,1.0);
	
	--swatch-var-4906:#111111;
	
	--swatch-var-1083:#7980FF;
	
	--swatch-var-2376:#0C778B;
	
}


/* Background colour styles */

.bgc-5068{
	background-color:var(--swatch-var-5068);
}
.bgc-6225{
	background-color:var(--swatch-var-6225);
}
.bgc-4501{
	background-color:var(--swatch-var-4501);
}
.bgc-6676{
	background-color:var(--swatch-var-6676);
}

/* Text colour styles */

.tc-1644{
	color:var(--swatch-var-1644)!important;
}
.tc-4792{
	color:var(--swatch-var-4792)!important;
}
.tc-386{
	color:var(--swatch-var-386)!important;
}
.tc-2255{
	color:var(--swatch-var-2255)!important;
}
.tc-5068{
	color:var(--swatch-var-5068)!important;
}
.tc-2283{
	color:var(--swatch-var-2283)!important;
}
.tc-4906{
	color:var(--swatch-var-4906)!important;
}
.tc-3211{
	color:var(--swatch-var-3211)!important;
}
.tc-7217{
	color:var(--swatch-var-7217)!important;
}

/* Link colour styles */

.ltc-1644{
	color:var(--swatch-var-1644)!important;
}
.ltc-1644:hover{
	color:#CCCCCC!important;
}
.ltc-2283{
	color:var(--swatch-var-2283)!important;
}
.ltc-2283:hover{
	color:#CBCCCC!important;
}

/* Icon colour styles */

.icon-1644{
	color:var(--swatch-var-1644)!important;
	border-color:var(--swatch-var-1644)!important;
}
.icon-7999{
	color:var(--swatch-var-7999)!important;
	border-color:var(--swatch-var-7999)!important;
}
.icon-2376{
	color:var(--swatch-var-2376)!important;
	border-color:var(--swatch-var-2376)!important;
}

/* Bloc image backgrounds */

.bg-back2{
	background-image:url("img/back2.png");
	background-image: -webkit-image-set(url("img/back2.webp") 1x,
url("img/back2.webp") 2x);background-image: image-set(url("img/back2.png") 1x,
url("img/back2.png") 2x,url("img/back2.webp") 1x,
url("img/back2.webp") 2x);
}
.bg-nosotros{
	background-image:url("img/nosotros.jpg");
	background-image: -webkit-image-set(url("img/nosotros.webp") 1x,
url("img/nosotros.webp") 2x);background-image: image-set(url("img/nosotros.jpg") 1x,
url("img/nosotros.jpg") 2x,url("img/nosotros.webp") 1x,
url("img/nosotros.webp") 2x);
}
.bg-Cumplimiento{
	background-image:url("img/Cumplimiento.jpg");
	background-image: -webkit-image-set(url("img/Cumplimiento.webp") 1x,
url("img/Cumplimiento.webp") 2x);background-image: image-set(url("img/Cumplimiento.jpg") 1x,
url("img/Cumplimiento.jpg") 2x,url("img/Cumplimiento.webp") 1x,
url("img/Cumplimiento.webp") 2x);
}
.bg-proceso{
	background-image:url("img/proceso.jpg");
	background-image: -webkit-image-set(url("img/proceso.webp") 1x,
url("img/proceso.webp") 2x);background-image: image-set(url("img/proceso.jpg") 1x,
url("img/proceso.jpg") 2x,url("img/proceso.webp") 1x,
url("img/proceso.webp") 2x);
}
.bg-beneficios{
	background-image:url("img/beneficios.jpg");
	background-image: -webkit-image-set(url("img/beneficios.webp") 1x,
url("img/beneficios.webp") 2x);background-image: image-set(url("img/beneficios.jpg") 1x,
url("img/beneficios.jpg") 2x,url("img/beneficios.webp") 1x,
url("img/beneficios.webp") 2x);
}
.bg-BenefCF{
	background-image:url("img/BenefCF.jpg");
	background-image: -webkit-image-set(url("img/BenefCF.webp") 1x,
url("img/BenefCF.webp") 2x);background-image: image-set(url("img/BenefCF.jpg") 1x,
url("img/BenefCF.jpg") 2x,url("img/BenefCF.webp") 1x,
url("img/BenefCF.webp") 2x);
}
.bg-Tecnologia{
	background-image:url("img/Tecnologia.jpg");
	background-image: -webkit-image-set(url("img/Tecnologia.webp") 1x,
url("img/Tecnologia.webp") 2x);background-image: image-set(url("img/Tecnologia.jpg") 1x,
url("img/Tecnologia.jpg") 2x,url("img/Tecnologia.webp") 1x,
url("img/Tecnologia.webp") 2x);
}
.bg-contacto2{
	background-image:url("img/contacto2.jpg");
	background-image: -webkit-image-set(url("img/contacto2.webp") 1x,
url("img/contacto2.webp") 2x);background-image: image-set(url("img/contacto2.jpg") 1x,
url("img/contacto2.jpg") 2x,url("img/contacto2.webp") 1x,
url("img/contacto2.webp") 2x);
}
.bg-Contacto3{
	background-image:url("img/Contacto3.png");
	background-image: -webkit-image-set(url("img/Contacto3.webp") 1x,
url("img/Contacto3.webp") 2x);background-image: image-set(url("img/Contacto3.png") 1x,
url("img/Contacto3.png") 2x,url("img/Contacto3.webp") 1x,
url("img/Contacto3.webp") 2x);
}
.bg-back20{
	background-image:url("img/back20.png");
	background-image: -webkit-image-set(url("img/back20.webp") 1x,
url("img/back20.webp") 2x);background-image: image-set(url("img/back20.png") 1x,
url("img/back20.png") 2x,url("img/back20.webp") 1x,
url("img/back20.webp") 2x);
}
.bg-back3{
	background-image:url("img/back3.png");
	background-image: -webkit-image-set(url("img/back3.webp") 1x,
url("img/back3.webp") 2x);background-image: image-set(url("img/back3.png") 1x,
url("img/back3.png") 2x,url("img/back3.webp") 1x,
url("img/back3.webp") 2x);
}

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

.social-link-bric a svg{
	transition: all 0.3s ease-in-out;
}
.social-hover-fade a:hover svg{
	opacity: 0.5;
}
.social-hover-grow a:hover svg{
	transform: scale(1.2);
}
.social-hover-shrink a:hover svg{
	transform: scale(0.9);
}
.social-hover-shadow a:hover svg{
	filter: drop-shadow(0px 6px 2px rgba(0,0,0,0.3));
	overflow: visible;
}


/* = 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;}
.object-hidden{display:none;}


/* = 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){
	.freelancer-page-title{
		font-size:45px;
		line-height:55px;
	}
	.enterprise-products-icon{
		font-size:40px;
	}
	.enterprise-product-card{
		margin-right:3px;
		margin-left:3px;
		padding:20px 3px 20px 3px;
	}
	.service-card-footer{
		margin-top:80px;
	}
	.startup-button{
	}
	.startup-black-icon{
		font-size:80px;
	}
	.startup-solid-icon{
		font-size:80px;
	}
	
	/* MD Row Margin Offsets */
	.voffset-clear-md{
		margin-top:0;
	}
		.voffset-md{
		margin-top:30px;
	}
	
}

@media (max-width: 767px){
	.text-right{
	}
	.text-left{
	}
	.text-center{
	}
	.freelancer-page-title{
		font-size:35px;
		line-height:45px;
	}
	.freelancer-contact-column{
		margin-bottom:50px;
	}
	.enterprise-products-icon{
		font-size:30px;
	}
	.enterprise-product-card{
		margin-right:3px;
		margin-left:3px;
		padding-right:3px;
		padding-left:3px;
	}
	.startup-button{
		padding-right:20px;
		padding-left:20px;
		line-height:30px;
	}
	
}

@media (max-width: 575px){
	.freelancer-page-title{
		font-size:28px;
		line-height:38px;
	}
	.footer-link{
		text-align:center;
	}
	.enterprise-product-card{
		margin-top:10px;
		margin-bottom:10px;
	}
	.h1-10-style{
		font-size:40px;
	}
	.h1-8-style{
		font-size:45px;
	}
	.h1-9-style{
	}
	.h3-bloc-10-style{
		font-size:22px;
	}
	
	/* Mobile Row Margin Offsets */
	.voffset-md-xs{
		margin-top:50px;
	}
	
}

