/* @font-face{ font-family: NombreFont; src: url(fonts/NombreFont-Bold.otf); } */
@font-face{ font-family: "FugazOne"; src: url("../fonts/FugazOne-Regular.otf"); }
@font-face{ font-family: "Futura"; src: url("../fonts/Futura-Medium-01.otf"); }

:root {
	--color-gray: #e2e2e2;
	--color-dark-gray: #5b5b5d;
	--color-yellow: #eba915;
	--color-purple: #ac1481;
	--color-pink: #d63180;
	--color-green: #00a12a;
	--color-green-2: #1c9139;
	--color-blue: #00a6e2;
	--color-aqua-blue: #1ba593;
	--color-blue-hard: #004d81;
	--color-orange: #ef8807;
	--color-red: #d10715;
}
/*=============================================================================
GENERAL
=============================================================================*/
.floating-social {
	color: #FFF;
	background-color: #000;
	position: fixed;
	padding: 8px;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	z-index: 10;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.floating-contact {
	height: 200px;
	color: #FFF;
	background-color: var(--color-blue);
	position: fixed;
	padding: 8px;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	z-index: 10;
	right: 0;
	top: 35%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	writing-mode: vertical-rl;
}

.floating-contact::after{
	content: '';
	width: 100%;
	height: 200px;
	filter: blur(15px);
	z-index: -1;
	position: absolute;
	right: 0;
	top: 0;	
}

.floating-contact:active {
	/* transform: scale(0.9) rotate(3deg); */
	transition: 0.5s;
  }

.rotate-180{
	transform: rotate(180deg)
}


.button {
	height: 200px;
	color: #FFF;
	position: fixed;
	padding: 8px;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	z-index: 10;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	writing-mode: vertical-rl;
	border-width: 0;
	background: transparent;
	font: inherit;
  }
  
  .button-top {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 0;
	padding: 8px 16px;
	transform: translateY(0);
	text-align: center;
	color: #fff;
	text-shadow: 0 -1px rgba(0, 0, 0, .25);
	transition-property: transform;
	transition-duration: .2s;
	-webkit-user-select: none;
	user-select: none;
  }
  
  .button:active .button-top {
	transform: translateY(6px);
  }
  
  .button-top::after {
	content: '';
	position: absolute;
	z-index: -1;
	border-radius: 4px;
	width: 100%;
	height: 100%;
	box-sizing: content-box;
	text-align: center;
	color: #fff;
	box-shadow: inset 0 0 0px 1px rgba(255, 255, 255, .2), 0 1px 2px 1px rgba(255, 255, 255, .2);
	transition-property: border-radius, padding, width, transform;
	transition-duration: .2s;
  }
  
  .button:active .button-top::after {
	border-radius: 6px;
	padding: 0 2px;
  }
  
  .button-bottom {
	position: absolute;
	z-index: -1;
	bottom: 4px;
	left: 4px;
	border-radius: 16px;
	/*padding-top: 6px;
	*/width: calc(100% - 8px);
	height: calc(100% - 10px);
	box-sizing: content-box;
	background-color: var(--color-blue);
	background-image: radial-gradient(4px 8px at 4px calc(100% - 8px), rgba(255, 255, 255, .25), transparent), radial-gradient(4px 8px at calc(100% - 4px) calc(100% - 8px), rgba(255, 255, 255, .25), transparent), radial-gradient(16px at -4px 0, white, transparent), radial-gradient(16px at calc(100% + 4px) 0, white, transparent);
	/* box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5), inset 0 -1px 3px 3px rgba(0, 0, 0, .4); */
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5), inset 0 -1px 3px 3px rgba(0, 0, 0, .4);
	transition-property: border-radius, padding-top;
	transition-duration: .2s;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	-ms-border-radius: 16px;
	-o-border-radius: 16px;
}
  
  .button:active .button-bottom {
	border-radius: 10px 10px 8px 8px / 8px;
	padding-top: 0;
  }
  
  .button-base {
	position: absolute;
	z-index: -2;
	top: 4px;
	left: 0;
	border-radius: 12px;
	width: 100%;
	height: calc(100% - 4px);
	background-color: transparent;
	/* box-shadow: 0 1px 1px 0 rgba(255, 255, 255, .75), inset 0 2px 2px rgba(0, 0, 0, .25); */
  }


.fs-1 { font-size: 1rem; }
.fs-18{font-size: 18px !important;}
body { overflow-x: hidden; position: relative; font-size: 14px !important; font-family: "Futura"; }
html { overflow-x: hidden; }
.font-fugaz { font-family: "FugazOne"; }
.font-futura { font-family: "Futura"; }
*::-moz-selection { background: var(--color-blue); color: #FFF; text-shadow: none; }
*::selection { background: var(--color-blue); color: #FFF; text-shadow: none; }
.bg-gray { background-color: var(--color-gray);  }
.bg-yellow { background-color: var(--color-yellow); }
.bg-purple { background-color: var(--color-purple); }
.bg-pink { background-color: var(--color-pink); }
.bg-green { background-color: var(--color-green); }
.bg-green-2 { background-color: var(--color-green-2); }
.bg-blue { background-color: var(--color-blue); }
.bg-aqua-blue { background-color: var(--color-aqua-blue); }
.bg-blue-hard { background-color: var(--color-blue-hard); }
.bg-gray { background-color: var(--color-gray); }
.bg-red { background-color: var(--color-red); }
.bg-orange { background-color: var(--color-orange); }
.bg-force-color { background-color: var(--bg-menu) !important; }
.text-black { color: #000; }
.text-yellow { color: var(--color-yellow); }
.text-purple { color: var(--color-purple); }
.text-pink { color: var(--color-pink); }
.text-green { color: var(--color-green); }
.text-blue { color: var(--color-blue); }
.text-blue-hard { color: var(--color-blue-hard); }
.text-gray { color: var(--color-gray); }
.text-red { color: var(--color-red); }
.text-orange { color: var(--color-orange); }
.text-aqua-blue { color: var(--color-aqua-blue); }
.fill-gray * { fill: rgb(92, 92, 92); }

.btn-black {
	color: #FFF;
	background-color: #000;
	border: 1px solid #000;
}
.btn-black:active,
.btn-black:hover,
.btn-black:focus {
	color: #000;
	background-color: #FFF;
}

.btn-blue {
	color: #FFF;
	background-color: var(--color-blue);
	border: 1px solid var(--color-blue);
}
.btn-blue:active,
.btn-blue:hover,
.btn-blue:focus {
	color: var(--color-blue);
	background-color: #FFF;
}

.btn-purple {
	color: #FFF;
	background-color: var(--color-purple);
	border: 1px solid var(--color-purple);
}
.btn-purple:active,
.btn-purple:hover,
.btn-purple:focus {
	color: var(--color-purple);
	background-color: #FFF;
}
/*=============================================================================
THANKS PAGE
=============================================================================*/
.thanks-page { height: 60vh; }
.thanks-page img { width: 400px; max-width: 100%; }
/*=============================================================================
NAVBAR
=============================================================================*/
.navbar {
	margin-bottom: 0;
	border: none;
	border-radius: 0;
	position: absolute;
	width: 100%;
	z-index: 10;
}
/* colores items menu */
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link {
	color: #FFF;
	border-bottom: 2px solid transparent;
}
.navbar-dark .navbar-nav .active .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
	color: #FFF;
	border-color: #FFF;
}
/* colores items menu */
/* separación items menu */
.navbar-nav > .nav-item {
	font-size: 14px;
	padding-left: 7px;
	padding-right: 7px;
}
.nav-link { padding: 3px 1rem !important; }
/* separación items menu */
.navbar-brand img,
.navbar-brand svg { width: 200px; }
.nb-item-btn .nav-link { padding: 6px 20px !important; }
.nb-item-btn .nav-link.btn-orange {
	background-color: var(--color-orange);
	border: 2px solid transparent;
}
.nb-item-btn:hover .nav-link.btn-orange { border-color: 2px solid #FFF; }
.dropmenu-custom{
	background: rgba(255,255,255,0.5);
	border-radius: 0px;
}
/*=============================================================================
COVERS
=============================================================================*/
.bg-cover-index {
	height: 850px;
	min-height: 600px;
	background-image: url("../img/home/01Banner.jpg");
}
.bg-cover-aboutus {
	height: 400px;
	min-height: 400px;
	background-image: url("../img/nosotros/01Banner.png");
}
.bg-cover-services {
	height: 400px;
	min-height: 400px;
	background-image: url("../img/interior-servicios/01.jpg");
}
.bg-cover-estudios-pre {
	height: 400px;
	min-height: 400px;
	background-image: url("../img/estudios-predisenados/01.jpg");
}
.bg-cover-serv-empr {
	height: 400px;
	min-height: 400px;
	background-image: url("../img/servicios-empresariales/01.jpg");
}
.bg-cover-serv-pymes {
	height: 400px;
	min-height: 400px;
	background-image: url("../img/servicio-pymes/01.png");
}
.bg-cover-serv-publico {
	height: 400px;
	min-height: 400px;
	background-image: url("../img/servicio-publico/01.png");
}
.bg-cover-quoting {
	height: 400px;
	min-height: 400px;
	background-image: url("../img/cotizaciones/01.png");
}
.bg-cover-blog {
	height: 400px;
	min-height: 400px;
	background-image: url("../img/blogs/blog.png");
}
.bg-cover-blog-internal {
	height: 400px;
	min-height: 400px;
	background-attachment: fixed;
}
.bg-cover-blog-internal > .bg-filter {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	mix-blend-mode: multiply;
	position: absolute;
	left: 0;
	top: 0;
	visibility: visible;
	opacity: 1;
}
/*=============================================================================
HOME
=============================================================================*/
.home-banner-text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}
.h3-bigger-custom { font-size: 3.65rem; }
.home-banner-text p { line-height: 1em; }
.next-section {
	width: 50px;
	height: 50px;
	color: #e7a616;
	background-color: #FFF;
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.next-section svg {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}
.tns-nav {
	/* text-align: center; */
	margin: 10px 0px;
}
.tns-nav > [aria-controls] {
	width: 9px;
	height: 9px;
	padding: 0;
	margin: 0 5px;
	border-radius: 50%;
	background: #ddd;
	border: 0;
}
.tns-nav > .tns-nav-active {
	background: #999;
}
.tns-controls {
	width: 90px;
	text-align: center;
	margin-bottom: 10px;
	position: absolute;
	right: 15px;
	bottom: 25px;
	z-index: 2;
	outline: unset;
}
.tns-controls > [data-controls] { position: absolute; }

.tns-controls > [data-controls="next"] { right: 0; }
.tns-controls > [data-controls="prev"] { left: 0; }
.tns-controls [aria-controls] {
	width: 35px !important;
	height: 35px !important;
	margin: 0;
	padding: 0;
	height: 2.5em;
	background-color: #c8c8c8 !important;
	border-radius: 3px;
	border: 0;
}
.tns-controls [aria-controls]:hover svg *,
.tns-controls [aria-controls]:active svg *,
.tns-controls [aria-controls]:focus svg * {
	fill: var(--color-yellow) !important;
}
.red-controls .tns-controls *,
.orange-controls .tns-controls *,
.blue-controls .tns-controls * { color: #929292; }
.red-dots .tns-nav > [aria-controls],
.orange-dots .tns-nav > [aria-controls],
.orabluenge-dots .tns-nav > [aria-controls] {
	background-color: #b5b5b5;
}
.red-dots .tns-nav > .tns-nav-active {
	background-color: var(--color-red);
}
.blue-dots .tns-nav > .tns-nav-active {
	background-color: var(--color-blue);
}
.orange-dots .tns-nav > .tns-nav-active {
	background-color: var(--color-yellow);
}
.tns-outer [data-action] { display: none; }
.home-service {
	position: relative;
	overflow: hidden;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-blend-mode: multiply;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
}
.home-service .bg-filter, .bg-filter {
	width: 100%;
	height: 100%;
	left: 0;
	position: absolute;
	visibility: hidden;
	opacity: 0;
}
.home-service .btn-plus {
	position: absolute;
	bottom: 20px;
	right: 20px;
}
.btn-plus a { color: #FFF !important; text-decoration: unset !important; }
/* Servicio 1 */
.h-service-1 { height: 616px; background-image: url("../img/home/02Spredisenado.jpg"); }
.home-service.h-service-1 { background-color: var(--color-pink); }
.home-service:hover { background-blend-mode: unset; }
.home-service.h-service-1 .bg-filter { background-color: var(--color-pink); }
.home-service.h-service-1:hover .bg-filter { visibility: visible; opacity: 0.5; }
/* Servicio 1 */
/* Servicio 2 */
.h-service-2 { height: 300px; background-image: url("../img/home/03Sempresarial.jpg"); }
.home-service.h-service-2 { background-color: var(--color-green); }
.home-service:hover { background-blend-mode: unset; }
.home-service.h-service-2 .bg-filter { background-color: var(--color-green); }
.home-service.h-service-2:hover .bg-filter { visibility: visible; opacity: 0.5; }
/* Servicio 2 */
/* Servicio 3 */
.h-service-3 { height: 300px; background-image: url("../img/home/04Spymes.jpg"); }
.home-service.h-service-3 { background-color: var(--color-purple); }
.home-service:hover { background-blend-mode: unset; }
.home-service.h-service-3 .bg-filter { background-color: var(--color-purple); }
.home-service.h-service-3:hover .bg-filter { visibility: visible; opacity: 0.5; }
/* Servicio 3 */
/* Servicio 4 */
.h-service-4 { height: 300px; background-image: url("../img/home/05Spublico.jpg"); }
.home-service.h-service-4 { background-color: var(--color-yellow); }
.home-service:hover { background-blend-mode: unset; }
.home-service.h-service-4 .bg-filter { background-color: var(--color-yellow); }
.home-service.h-service-4:hover .bg-filter { visibility: visible; opacity: 0.5; }
/* Servicio 4 */

.home-service.h-service-1 .lh-custom,
.home-service.h-service-2 .lh-custom,
.home-service.h-service-3 .lh-custom,
.home-service.h-service-4 .lh-custom {
	width: 100%;
	left: 0;
	line-height: 30px;
	position: absolute;
	text-align: center;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
}
.home-service.h-service-1 .lh-custom { 
	top: 570px; 
}

.home-service.h-service-1:hover .lh-custom { 
	top: -40px;
	background: rgba(255, 255, 255, 0.4);
	text-shadow: 1px 1px 2px black;
	border-radius: 12px;
}

.home-service.h-service-1:hover .optimizar { 
	display: none;
}

.home-service.h-service-1:hover .customer { 
	position: relative;
	top: -50px;
}

.home-service.h-service-2 .lh-custom { 
	top: 570px;
}

.home-service.h-service-2:hover .lh-custom { 
	top: -100px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	text-shadow: 1px 1px 2px black;
}

.home-service.h-service-2:hover .mercado { 
	display: none;
}

.home-service.h-service-2:hover .servicios { 
	position: relative;
	top: -85px;
}

.home-service.h-service-3 .lh-custom { 
	top: 570px;
}

.home-service.h-service-3:hover .lh-custom { 
	top: -25px;
	background: rgba(255, 255, 255, 0.4);
	text-shadow: 1px 1px 2px black;
	border-radius: 12px;
}

.home-service.h-service-3:hover .participantes { 
	display: none;
}

.home-service.h-service-3:hover .reclu { 
	position: relative;
	top: -100px;
}

.home-service.h-service-4 .lh-custom { 
	top: 570px;
}

.home-service.h-service-4:hover .lh-custom { 
	top: -90px;
	background: rgba(255, 255, 255, 0.4);
	text-shadow: 1px 1px 2px black;
	border-radius: 12px;
}

.home-service.h-service-4:hover .developer { 
	display: none;
}

.home-service.h-service-4:hover .incubadora { 
	position: relative;
	top: -100px;
}

.btn-white-transparent {
	color: #FFF;
	background-color: rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.8);
}
.btn-simlate-expansion {
	width: 40px;
	color: transparent !important;
	position: absolute;
	right: 0;
	border: 1px solid rgba(255, 255, 255, 0.8);
}
.home-service:hover .btn-simlate-expansion { width: 130px; }
.fc-quoting { color: #FFF !important; background-color: transparent !important; border: 2px solid #FFF; }
.fc-quoting::placeholder { color: #ccc; opacity: 1; }
.fc-quoting:-ms-input-placeholder { color: #ccc; }
.fc-quoting::-ms-input-placeholder { color: #ccc; }
.quoting-form label { letter-spacing: 3px; }
.lh-custom { line-height: 30px; }
.lh-custom-2 { line-height: 45px; }
.lh-custom-3 { line-height: 30px; }
.about-compromise-more {
	position: absolute;
	bottom: 1rem;
	right: 3rem;
}
.hr-red { border-bottom: 3px solid var(--color-red); }
.hr-red.hr-dashed {
	font-size: 14px;
	border-style: dotted;
}
.img-floating { z-index: 2; }
.img-1 { top: -35px; left: 1rem; }
.img-2 { left: -18px; }
.img-3 { top: -30px; right: -15px; }
.img-4 { top: -15px; right: -30px; }
.img-5 { top: 0; left: -80px; mix-blend-mode: multiply; }
.img-6 { top: 10%; left: 10%; }
.img-7 { top: -80px; left: -60px; }
.img-8 { top: -55px; right: -60px; }
.img-9 { bottom: 60%; left: 30%; z-index: 1; }
.img-10 { bottom: -75%; right: -10%; z-index: 1; }
.img-9-services { bottom: 100px; left: 345px; z-index: 1; }
.img-10-services { bottom: -75px; right: -10%; z-index: 1; }
.img-11 { top: 8px; right: 5%; z-index: 1; mix-blend-mode: multiply; }
.img-12 { top: 10%; left: -18px; z-index: 1; }
.img-13 { bottom: -15px; right: -40px; z-index: 1; }
.img-14 { bottom: 0; right: -32px; z-index: 1; }
.img-15 { bottom: 260px; right: -75px; z-index: 1; }
.img-16 {
	top: -40px;
	left: -100px;
	z-index: 1;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}
.img-17 { top: 0; right: 55px; z-index: 1; }
.img-18 { bottom: 0; left: 1rem; z-index: 1; }
.img-19 { bottom: 1rem; left: 3rem; z-index: 1; }
.img-20 { bottom: 1rem; left: -20rem; z-index: 1; mix-blend-mode: multiply; }
.img-21 { top: 0; left: 15px; z-index: 1; }
.img-22 { top: 15%; left: -15px; z-index: 1; }
.img-23 { bottom: -45px; right: -40px; z-index: 1; }
.img-24 { left: -100px; top: 50px; z-index: 5; mix-blend-mode: multiply; pointer-events: none; }
.img-25 { right: -50px; bottom: -300px; z-index: 5; mix-blend-mode: multiply; pointer-events: none; }
.img-26 { left: -20px; bottom: -30px; z-index: 0; }
.img-27 { right: -33px; bottom: 0; z-index: -1; }
.img-28 {
	top: 50%;
	left: -25px;
	z-index: -1;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.img-29 { right: -40px; bottom: -35px; z-index: 1; }
.img-30 { top: 0; right: -25px; z-index: 1; }
.img-31 { bottom: 0; left: 0; z-index: 1; }
.img-32 { bottom: 0; left: 25px; z-index: 1; }
.img-33 { top: -10px; right: -25px; z-index: 1; }
.img-34 { top: -50px; left: -25px; z-index: 1; }
.img-35 { top: -50px; right: -65px; z-index: 1; }
.img-36 { bottom: -22px; left: -70px; z-index: 1; }
.img-37 { bottom: -60px; right: -120px; z-index: 1; }
.img-38 { top: 40px; right: -10px; z-index: 1; }
.img-39 { bottom: 60%; left: 38%; z-index: 1; }
.img-40 { bottom: 60%; left: 28%; z-index: 1; }
.img-41 {
	top: 50%;
	left: -23%;
	z-index: 0;
	mix-blend-mode: multiply;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.img-42 { right: -50px; bottom: 50px; z-index: 5; mix-blend-mode: multiply; pointer-events: none; }
.img-43 {
	top:  50%;;
	right: -5rem;
	z-index: 1;
	mix-blend-mode: multiply;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}


.img-999 { bottom: 30px; left: -35px; z-index: 1; }

.btn-home-compromise {
	width: 50px;
	height: 50px;
	color: #fff !important;
	background-color: var(--color-yellow);
	position: absolute;
	bottom: -2.35rem;
	left: 50%;
	mix-blend-mode: multiply;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	z-index: 4;
}
.btn-home-compromise:hover,
.btn-home-compromise:active,
.btn-home-compromise:focus { opacity: 1; }

.btn-quoting {
	width: 50px;
	height: 50px;
	color: #fff !important;
	background-color: var(--color-blue-hard);
	position: relative;
	bottom: -1rem;
	left: 50%;
	mix-blend-mode: multiply;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	z-index: 4;
}

.blog-img {
	width: 500px;
	height: 250px;
	max-width: 100%;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
/*=============================================================================
HOME POPUP
=============================================================================*/
.custom-popup {
	width: 500px;
	max-width: 100%;
	position: fixed;
	bottom: -1000px;
	right: 200px;
	background-color: #FFF;
	z-index: 16000003;
	box-shadow: 0px 0 20px rgba(0,0,0,0.3);
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	transition: .2s;
	-webkit-transition: .6s;
	-moz-transition: .6s;
	-ms-transition: .6s;
	-o-transition: .6s;
}
.custom-popup.open { bottom: 0; }
.cp-btn { font-size: 20px; }
.cp-text { font-size: 17px; }
.close-custom-popup {
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
}
/*=============================================================================
ABOUT
=============================================================================*/
.ns-about { bottom: -25px !important; }
.next-section.ns-about { color: #222; }
.next-section.ns-about:hover,
.next-section.ns-about:active,
.next-section.ns-about:focus { color: #e7a616; }
.next-section.ns-about-paragraph {
	color: #FFF;
	background-color: var(--color-yellow);
	bottom: -25px !important;
}

.zi-minus-10 { z-index: -10; }
.bg-video-section {
	height: 700px;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.video-background {
  background: #FFF;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -99;
}
.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
	/* min-height: 100%; */
  pointer-events: none;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
@media (min-aspect-ratio: 16/9) {
  .video-foreground { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground { width: 300%; left: -100%; }
}
.play-ico {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	opacity: 0.6;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
}
.bg-video-section:hover,
.bg-video-section:hover .play-ico { cursor: pointer; }
.bg-video-section:hover .play-ico { opacity: 1; }
.my-slider-about-container .tns-controls {
	width: 100%;
	height: 0;
	position: absolute;
	top: 33%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.my-slider-about-container .tns-controls > [data-controls="next"] { right: -30px; }
.about-slider-text { letter-spacing: 3px; }
label { letter-spacing: 3px; }
.fc-custom {
	background-color: rgba(255, 255, 255, 0.6);
	border-color: rgba(255, 255, 255, 0.6);
}
.next-section-container {
	width: 100%;
	position: relative;
	bottom: 1rem;
	height: 100px;
	text-align: center;
}
.next-section-container .next-section { top: 0; }
.next-section-container span {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	font-size: 1rem;
}
/*=============================================================================
SERVICES
=============================================================================*/
.bg-public-service {
	height: 300px;
	background-image: url("../img/interior-servicios/05.jpg");
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center;
}
.price-info { position: absolute; bottom: 1rem; left: 3rem; }
.service-container .lh-custom-2,
.service-container h2 {
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
}
.service-container .lh-custom-2 { top: 500px; position: absolute; }
.service-container:hover .lh-custom-2 { top: 0; position: relative; }
.service-view-more { position: absolute; bottom: 0; }
.services-background { width: 100%; height: 90%; bottom: 0; }
.img-orange-1 {
	width: 80%;
	height: 150px;
	right: -20px;
	top: 1rem;
	background-color: var(--color-orange);
	mix-blend-mode: multiply;
	position: absolute;
	z-index: 0;
}
.img-orange-2 {
	width: 100%;
	height: calc( 150px - 1rem );
	left: -300px;
	bottom: 0;
	background-color: var(--color-orange);
	mix-blend-mode: multiply;
	position: absolute;
	z-index: 0;
}
.accordion *:not(svg, .h1) { font-size: 14px; }
.accordion.service-accordion .card-header { padding: 0; }
.accordion.service-accordion .card-header h3 { font-weight: normal; }
.accordion.service-accordion .card-header h3 button.btn-link {
	width: 100%;
	display: block;
	padding: 1.3rem 1.25rem;
	text-align: left;
	color: #000;
}
.accordion.service-accordion .card-header { background-color: #FFF; }
.accordion.service-accordion .card {
	margin-bottom: 1rem;
	background-color: transparent;
	border: unset;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
.accordion.service-accordion .card:last-child { margin-bottom: 0; }
.accordion-collapse-ico {
	width: 80px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	color: #FFF;
	background-color: var(--color-yellow);
	font-size: 25px !important;
	border-color: var(--color-yellow);
	border-left: 5px solid var(--color-gray);
	pointer-events: none;
}
.accordion.service-accordion .card-body ul > li { margin-bottom: 20px; }
.accordion.service-accordion .card-body ul { line-height: 45px; }

[class*="service-"] {
	/* position: relative; */
	overflow: hidden;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-blend-mode: multiply;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
}
.service-1 { height: 300px; background-image: url("../img/home/02Spredisenado.jpg"); }
.service-1, .service-1 .bg-filter { background-color: var(--color-yellow); }
.service-1:hover { background-blend-mode: unset; }
.service-1:hover .bg-filter { visibility: visible; opacity: 0.5; }
.service-1, .service-1 .bg-filter .fondo1{ background-color: var(--color-yellow); }

.service-2 { height: 300px; background-image: url("../img/home/03Sempresarial.jpg"); }
.service-2, .service-2 .bg-filter { background-color: var(--color-purple); }
.service-2:hover { background-blend-mode: unset; }
.service-2:hover .bg-filter { visibility: visible; opacity: 0.5; }
.service-2, .service-2 .bg-filter .fondo3{ background-color: var(--color-purple); }

.service-3 { height: 300px; background-image: url("../img/home/04Spymes.jpg"); }
.service-3, .service-3 .bg-filter { background-color: var(--color-purple); }
.service-3:hover { background-blend-mode: unset; }
.service-3:hover .bg-filter { visibility: visible; opacity: 0.5; }

.service-4 { height: 300px; background-image: url("../img/home/05Spublico.jpg"); }
.service-4, .service-4 .bg-filter { background-color: var(--color-green); }
.service-4:hover { background-blend-mode: unset; }
.service-4:hover .bg-filter { visibility: visible; opacity: 0.5; }
.service-4, .service-4 .bg-filter .fondo4{ background-color: var(--color-green); }

.service-view-more { position: absolute; overflow: unset; }

.bg-red-transp { border: 1px solid #df0817; }
.bg-red-transp:hover, .bg-red-transp.active { color: #FFF; background-color: #df0817; text-decoration: unset; }

.bg-yellow-transp { border: 1px solid #febf02; }
.bg-yellow-transp:hover, .bg-yellow-transp.active { color: #FFF; background-color: #febf02; text-decoration: unset; }

.bg-aqua-transp { border: 1px solid #0dcb98; }
.bg-aqua-transp:hover, .bg-aqua-transp.active { color: #FFF; background-color: #0dcb98; text-decoration: unset; }

.bg-aqua-2-transp { border: 1px solid #87d5cc; }
.bg-aqua-2-transp:hover, .bg-aqua-2-transp.active { color: #FFF; background-color: #87d5cc; text-decoration: unset; }

.bg-purple-transp { border: 1px solid #731e8e; }
.bg-purple-transp:hover, .bg-purple-transp.active { color: #FFF; background-color: #731e8e; text-decoration: unset; }

.custom-angle-down {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.custom-angle-down.rotate-180 {
	transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
	-moz-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	-o-transform: translateY(-50%) rotate(180deg);
}
.img-responsive-custom ul { padding-left: 15px; }
.menu-item-container-row {
	overflow-x: hidden;
	transition: .2s;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
}
.menu-item-container-row:hover { overflow-x: auto; }
.menu-item-container { width: var(--menu-width); flex: 0 0 var(--menu-width); max-width: var(--menu-width); }
.menu-item-custom { width: 200px; float: left; text-align: center; }
.mic-custom { width: 350px; }
.mic-custom { width: 350px; }
/*=============================================================================
CONTACTO
=============================================================================*/
.contact-section { padding-top: 121px; }
/*=============================================================================
FOOTER
=============================================================================*/
.footer-domain { letter-spacing: 20px; }
.footer-subscribe, .footer-copyright { letter-spacing: 5px; }
.fc-newsletter { border-color: #000; }
.social-icons a { color: #000; }
.social-icons a.si-fb:hover,
.social-icons a.si-fb:active,
.social-icons a.si-fb:focus {
	color: #4267B2;
}
.social-icons a.si-tw:hover,
.social-icons a.si-tw:active,
.social-icons a.si-tw:focus {
	color: #1DA1F2;
}
.social-icons a.si-yt:hover,
.social-icons a.si-yt:active,
.social-icons a.si-yt:focus {
	color: #FF0000;
}
.social-icons a.si-wa:hover,
.social-icons a.si-wa:active,
.social-icons a.si-wa:focus {
	color: #36b549;
}
.social-icons a:hover > svg {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
}
/*=============================================================================
BLOG
=============================================================================*/
.blog-simulate-thumb {
	width: 100%;
	height: 235px;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.reset-text * {
	font-weight: normal !important;
}
/*=============================================================================
MEDIA
=============================================================================*/
/* 1920 x 1080 */
@media( max-width: 1920px ) {}

/* 1600 x 900*/
@media( max-width: 1600px ) {}

/* 1440 x 900 */
@media( max-width: 1440px ) {
	.bg-cover-index { height: 600px; min-height: 600px; }
	.bg-video-section { height: 500px; }
}

/* 1280 x 800 */
@media( max-width: 1280px ) {
	.service-container .lh-custom-2 { line-height: 30px; }
}
@media(max-width: 1200px){
	.mr-custom{padding-right: 75px;}
}

/* 990 x 1000 */
@media( max-width: 991px ) {
	.footer-domain { letter-spacing: 15px; }
	/* .navbar { background-color: #FFF !important; } */
	.navbar-brand { margin: 0 auto; }
	.navbar-toggler { position: absolute; left: 1rem; top: 1rem; }
	.nb-item-btn .nav-link.btn-orange { color: #FFF; }
	.navbar-brand img,
	.navbar-brand svg { width: 125px; }
	.bg-cover-index {
		background-color: #e1a31a;
		height: 100vh; min-height: 100vh;
		background-position: 80% 200px;
		-webkit-background-size: auto 100%;
		-moz-background-size: auto 100%;
		-o-background-size: auto 100%;
		background-size: auto 100%;
	}
	.home-banner-btn-contact { width: 100%; position: absolute; bottom: 22%; }
	.h3-bigger-custom { font-size: 3rem; }
	.home-banner-text {
		top: 10%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
	}
	.tns-nav { text-align: center; }
	.navbar-dark .navbar-toggler { color: #FFF; border-color: transparent; }
	.navbar-collapse.collapse.show { background-color: var(--bg-menu); }
	.navbar-collapse { padding-bottom: 1rem; }
	.bg-cover-index > .home-banner-text { height: 100%; }
	.bg-cover-index > .home-banner-text > div { height: 100%; }
	.contact-section { padding-top: 76px; }
	
}

/* 767 x 414 */
@media( max-width: 767px ) {
	.footer-domain { letter-spacing: 5px; font-size: 13px !important; }
	.img-floating { display: none; }
	.h-service-1 { height: 300px; }
	.bg-cover-index { background-position: 73% 200px; }

	.home-service.h-service-1 p.h4 {
		position: relative;
		top:0;
		transition: .2s;
		-webkit-transition: .2s;
		-moz-transition: .2s;
		-ms-transition: .2s;
		-o-transition: .2s;
	}
	.home-service.h-service-1:not(.h-service-not):hover p.h4 { position: relative; top: -80px; }
	.home-service.h-service-1:not(.h-service-not):hover .lh-custom { top: -15px; }
	.h3-bigger-custom { font-size: 2.5rem; }
	.floating-social { display: none; }
	.video-background {
		background: url("../img/fondordm.jpg") no-repeat center center fixed;
		-webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
	  background-position: 18% 50%;
	}
	.services-ts .tns-nav {
		width: auto;
		display: inline-block;
		position: absolute;
		left: -20px;
		top: 50%;
		transform: rotate(90deg);
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		-o-transform: rotate(90deg);
	}
	.blogs-ts.services-ts .tns-nav,
	.mvo-ts.services-ts .tns-nav { left: -30px !important; }
	.compromise-text-mobile {
		background-image: url("../img/home/06Compromiso.jpg");
		padding-left: 45px !important;
		padding-right: 45px !important;
		background-position: center;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	.compromise-text-mobile .bg-blue { background-color: transparent; }
	.compromise-text-mobile > * { color: #FFF; }

	.footer-subscribe { font-size: 10px; }
	.footer-copyright { font-size: 13px; letter-spacing: initial; }
	.img-7 { display: block; top: -65px; right: -35px; left: auto; }
	.img-8 { display: block; top: 50%; right: 5%; }
	.img-11 {
		display: block;
		top: 50%;
		left: 90%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
}
	.img-20 {
		display: block;
		width: 85%;
		left: auto;
		right: -200px;
		top: 18%;
	}
	.lh-custom-2 { line-height: 30px; font-size: 1rem; }

	.bg-cover-aboutus { background-position: 78% center; }
	.img-experience {
		width: 40%;
		float: left;
		margin-left: -15px !important;
		position: relative;
	}
	.img-partners {
		width: 40%;
		float: right;
		margin-right: -15px !important;
		position: relative;
	}
	.bg-aqua-blue.partners-bg-purple { background-color: var(--color-purple); }

	.service-mobile {
		height: 350px;
		background-position: center;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	.service-mobile-1 { background-image: url("../img/home/02Spredisenado.jpg"); }
	.service-mobile-2 { background-image: url("../img/interior-servicios/03.jpg"); }
	.service-mobile-3 { background-image: url("../img/interior-servicios/04.jpg"); }
	.service-mobile-4 { background-image: url("../img/home/05Spublico.jpg"); }
	.price-info { left: 1rem; }
	.img-orange-1 { width: 100%; height: 180px; right: auto; left: 1.25rem; }
	.img-orange-2 { width: 100%; height: 154px; right: 0.7rem; left: auto; }

	.service-description { font-size: 1rem; line-height: 35px; }
	.accordion-collapse-ico { font-size: 18px !important; width: 50px; }
	.accordion.service-accordion .card-body ul { line-height: 35px; padding-left: 1rem; }
	.accordion.service-accordion .card-body ul > li { margin-bottom: 1rem; }
	.custom-popup { right: 0; }
}

/* 576 x 320 */
@media( max-width: 576px ) {
	.bg-cover-index { background-position: 68% 200px; }
	.bg-cover-aboutus { background-position: 78% center; }
	.cp-title { font-size: 20px; }
	.cp-btn { font-size: 18px; }
	.close-custom-popup { top: 5px; right: 5px; }
}

/*media 320*/
@media(max-width:320px){
	.title-size{
		font-size: 14px !important;
	}

	.subtitle-size{
		font-size: 13px !important;
	}

	.title-size1{
		font-size: 13px !important;
	}

	.title-size2{
		font-size: 11px !important;
	}
}




/*
	@media( max-width: 1920px ) {}
	@media( max-width: 1600px ) {}
	@media( max-width: 1440px ) {}
	@media( max-width: 1366px ) {}
	@media( max-width: 1280px ) {}
	@media( max-width: 1024px ) {}
	@media( max-width: 736px ) {}
	@media( max-width: 667px ) {}
	@media( max-width: 640px ) {}
	@media( max-width: 568px ) {}
*/
