/* ============
	
	1. CUSTOM CSS
	2. CLIENTE CSS
	
============ */


/* ===============
	
	+++++++++++++
	1. CUSTOM CSS
	+++++++++++++
	
=============== */



/* ============
	GENERALES
============ */
body {
	font-family: sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	line-height: 1.45;
}



a {
    color: #7c7c7c;
}


/* ============
	TEXTOS
============ */






/* ===================
	UTILIDADES
=================== */
.bg-light {
	background-color: #f8f9fa;
}

.fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1030;
}

.label-hidden {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    overflow: hidden;
    padding: 0;
	position: absolute;
    white-space: nowrap;
    width: 1px;
}

.lead {
  font-size: 1.25rem;
}


/* ================== 
	BOTONES
==================  */

.btn-borde {
    background-color: transparent;
    font-weight: 500;
}


.btn-light {
    border-color: #fff;
    color: #fff;
}

.btn-dark {
    border-color: #3a3a3a;
    color: #ffffff;
}

.btn-green {
    background-color: #4FAF55;
    border-color: #4FAF55;
    color: #fff;
}

.btn-green:hover {
    background-color: #449849;
    border-color: #449849;
    color: #fff;
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
  color: #fff;
}

.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
  background-color: #545b62;
  border-color: #4e555b;
  color: #fff;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-group {
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  vertical-align: middle;
}

.btn-group > .btn {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}

.btn-group > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus, 
.btn-group > .btn:active, 
.btn-group > .btn.active {
  z-index: 1;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}








/* =========================
			NAVBAR
============================ */

.nav-scroller {
	position: relative;
	z-index: 2;
	height: 2.75rem;
	overflow-y: hidden;
}

.nav-scroller .nav {
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}
      














/* ===================
	PORTADA
=================== */

.portada.mb-call {
	margin-bottom: 52px;
}







/* ===================
	FOOTER
=================== */

.footer {
	color: #fff;
	padding-bottom: 1rem;
	padding-top: 1rem;
}

.footer a {
	color: #fff;
}


.footer-img {
	max-width: 300px;
}


.whatsapp {
    padding: 0.8rem;
    border-radius: 50%;
    background-color: #00E676;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
}

.whatsapp img {
    width: 35px;
    height: auto;
}








/* =================
	
	+++++++++++++++
	2. CLIENTE CSS
	+++++++++++++++
	
================= */



:root {
	--c-1: #070b4a;
	--c-2: #393C6E;
	
	/* OPACIDADES */
	--c-2o5: rgba(57,60,110,0.5);
	
	
	
	--c-b: #000;
	--c-w: #fff;
	--c-g: #5b5b5b;
	
	
	/* FUENTES */
	
	--f-1: 'Montserrat', sans-serif;
	--f-2: 'Aleo', serif;
	
}

/* ============
	GENERALES
============ */

body {
	color: var(--c-g);
	font-family: var(--f-1);
	padding-top: 80px;
}

p {
	line-height: 1.5;
	text-align: justify;
}

a {
	text-decoration: none;
}

ul li,
ol li {
	text-align: justify;
}



/* ==============
	UTILIDADES
================= */

.bg-1 {
	background-color: var(--c-1);
}

.c-1 {
	color: var(--c-1);
}


.columns-2 {
	columns: 1 auto;
}

@media screen and (min-width:768px) {
	.columns-2 {
		columns: 2 auto;
	}	
}




ul li::marker,
ol li::marker {
	color: var(--c-1);
}



/* ==============
	BOTONES
================= */

.btn {
    --bs-btn-border-width: 2px;
    position: relative;
}


.btn-primary {
    --bs-btn-color: var(--c-w);
    --bs-btn-bg: var(--c-2);
    --bs-btn-border-color: var(--c-2);
    --bs-btn-hover-color: var(--c-w);
    --bs-btn-hover-bg: var(--c-1);
    --bs-btn-hover-border-color: var(--c-2);
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: var(--c-w);
    --bs-btn-active-bg: var(--c-1);
    --bs-btn-active-border-color: var(--c-2);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--c-w);
    --bs-btn-disabled-bg: var(--c-1);
    --bs-btn-disabled-border-color: var(--c-2);
}


.btn-icon {
	margin-left: 16px;
	transform: translate(-5px, -1px);
	transition: transform cubic-bezier(0.785, 0.135, 0.15, 0.86) .7s
}

.btn:hover .btn-icon {
	transform: translate(5px, -1px);
}




/* ============
	TITULOS
============ */


.title-h1 {
	color: var(--c-b);
	font-family: var(--f-2);
	font-size: 2.4rem;
}


@media media screen and (min-width:768px) {
	.title-h1 {
		font-size: 3rem;
	}
}



.title-h2 {
	color: var(--c-2);
}




/* ============
	TEXTOS
============ */

@media screen and (min-width:992px) {
	.text-big {
		font-size: 20px;
	}	
}






/* ============
	NAVBAR
============ */

.navbar {
    background-color: var(--c-1);
    padding-bottom: 16px;
    padding-top: 16px;
}


.navbar-brand {
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-top: 0.5rem;
}


.navbar-brand img {
	display: block;
	width: 150px;
	height: auto;
}

@media screen and (min-width:992px) {
	.navbar-brand {
	    padding-left: 0;
	}
	
	.navbar-brand img {
		max-width: 150px;
		width: auto;
	}	
}



.navbar-toggler {
	border: none;
}


.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}





.nav-link {
	color: rgba(255,255,255,0.7);
	font-weight: 400;
	border-bottom: 1px solid rgba(255,255,255,0.7);
	font-size: 20px;
}

.nav-item.active .nav-link {
	color: var(--c-w);
}

@media (min-width: 992px) {
	
	.navbar-expand-lg .navbar-nav {
		margin-top: 26px;
	}
		
	.nav-link {
		position: relative;
		transition: color cubic-bezier(0.785, 0.135, 0.15, 0.86) .7s;
		border-bottom: none;
		font-size: 16px;
		font-weight: 500;
	}
	
	
	.nav-link::after {
		content: '';
		display: block;
		width: 0;
		height: 2px;
		background-color: rgba(255,255,255,0.7);
		position: absolute;
		bottom: 5px;
		left: 50%;
		opacity: 0;
		transform: translateX(-50%);
	/* 	transform: translateY(16px); */
		transition: all cubic-bezier(0.785, 0.135, 0.15, 0.86) .7s;
	}
	
	.nav-link:hover,
	.nav-item.active .nav-link {
		color: var(--c-w);
	}
	
	.nav-link:hover::after,
	.nav-item.active .nav-link::after {
		background-color: var(--c-w);
		opacity: 1;
	/* 	transform: translateY(0); */
		width: 100%
	}
	
	.navbar-expand-lg .navbar-nav .nav-link {
	    margin-right: var(--bs-navbar-nav-link-padding-x);
	    margin-left: var(--bs-navbar-nav-link-padding-x);
	    padding-left: 0;
	    padding-right: 0;
	}
	
	.nav-item:last-child .nav-link {
		margin-right: 0;
	}
}




.offcanvas {
	background-color: var(--c-2);
}


.offcanvas-title {
	color: var(--c-w);
}

.offcanvas.offcanvas-end {
	border-left: none;
}






.navbar-rrss {
	display: flex;
	justify-content: center;
	margin: 20px auto;
}

.navbar-rrss-item {
	display: flex;
	align-items: center;
	color: var(--c-w);
}

.navbar-rrss-item img {
	width: auto;
	height: 13px;
}

.navbar-rrss-item a {
	color: rgba(255,255,255,0.7);;
	text-decoration: none;
	font-size: 13px;
	transition: color cubic-bezier(0.785, 0.135, 0.15, 0.86) .7s;
}
.navbar-rrss-item a:hover {
	color: var(--c-w);
}


@media screen and (min-width:992px) {
	.navbar-rrss {
		position: absolute;
		top: 0;
		right: 0;
		margin: 0;
	}	
}




/* ============
	PORTADA
============ */

.portada {
	height: calc(100vh - 80px);
	background-image: url('../img/paginas/home/portada_ibest_controller_1.jpg');
	background-position: center 80%;
	background-repeat: no-repeat;
	background-size: cover;
}

.portada2 {
	background-image: url('../img/paginas/home/portada_ibest_controller_2.jpg');
}

.portada-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: var(--c-2o5);
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 20px;
}

.portada-content-title {
	color: var(--c-w);
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    margin: 0;
    text-align: center;
    font-family: var(--f-2);
    text-transform: uppercase;
    text-shadow: 0px 0px 3px rgba(7,11,74,0.5);
}

.portada-content-subtitle {
	margin-top: 30px;
    color: var(--c-w);
    text-transform: uppercase;
    text-shadow: 0px 0px 3px rgba(7,11,74,0.5);
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}


@media screen and (min-width:768px) {
	.portada-content-title {
    	font-size: 50px;
    	line-height: 62px;
	}
	
	.portada-content-subtitle {
	    font-size: 22px;
	}
}


@media screen and (min-width:992px) {
	.portada-content-title {
    	font-size: 60px;
    	line-height: 72px;
	}
}





@keyframes scroll_2 {
  0%   { transform: translateY(0); opacity: 1; }
  25%  { opacity: 1; }
  75%  { transform: translateY(.75em); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}



.scroll-icon {
	display: block;
	position: relative;
	height: 3.5em;
	width: 2em;
	border: .2em solid #fff;
	border-radius: 1em;
	position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}



.scroll-icon__dot {
  display: block;
  position: absolute;
  left: 50%;
  background: #fff;
  height: .4em;
  width: .4em;
  top: .6em;
  margin-left: -.2em;
  border-radius: 50%;
  transform-origin: top center;
  backface-visibility: hidden;
  animation: scroll_2 2s ease-out infinite;
}





/* ==============
	BG CIRCULOS
================= */

.bg-circulos {
	background-image: url('../img/logotipos/circulos-o.png'), url('../img/logotipos/circulos-o.png');
	background-position: -150px -120px, calc(100% + 150px) calc(100% + 120px);
	background-size: 300px auto;
	background-repeat: no-repeat;
}







/* ============
	HERO BOX
============ */
.hero-box {
}



.hero-box h1 {
	margin-bottom: 0;
}


.hero-box-subtitle {
	color: var(--c-2);
	text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}








/* ============
	SLOGAN
============ */

.slogan-text {
	color: var(--c-w);
	font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
}





/* ============
	ICON BOX
============== */

.icon-box {
	margin-bottom: 32px;	
}


.icon-box-img {
	width: 80px;
	height: auto;
}

.icon-box-title {
	color: var(--c-b);
    font-weight: 500;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
}





/* ============
	VISION BOX
============== */

.vision-box {
	background-color: var(--c-1);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.vision-box-title {
	font-size: 40px;
	color: var(--c-w);
	text-align: center;
}

@media screen and (max-width:767px) {
	.vision-box {
		min-height: 250px;
		margin-bottom: 20px;
	}
}





/* ============
	ECONOMISTA
============== */

.economista-title {
	font-size: 1.3rem;
	color: var(--c-2);
}

.economista-title span {
	display: block;
	font-family: var(--f-2);
	font-size: 2rem;
	color: var(--c-1);
	text-transform: uppercase;
	margin-top: 16px;
}

.economista-img {
	border-radius: 50%;
	overflow: hidden;
	margin: 20px;
}


@media screen and (min-width:768px) {
	.economista-title {
		font-size: 1.5rem;
	}
	
	
	.economista-title span {
		font-size: 2rem;
		margin-top: 0;
	}
	
	.economista-img {
		margin: 40px 120px 0 120px;
	}
}



@media screen and (min-width:992px) {
	.economista-img {
		margin: 0;
	}
}


@media screen and (min-width:1200px) {
	.economista-img {
		margin: 60px;
	}
}




/* ============
	OFICINA
============== */

.oficina-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.oficina-content-title {
	font-weight: 500;
	text-align: center;
	color: var(--c-1);
	font-size: 1.25rem;
}


.oficina-content-text {
	text-align: center;
	color: var(--c-1);
	font-weight: 400;
}


.oficina-content-link {
	color: var(--c-1);
	text-decoration: none;
}

.oficina-content-link:hover {
	color: var(--c-1);
	text-decoration: underline;
}






/* ============
	FOOTER
============== */

.footer {
	background-color: var(--c-1);
}


.footer a:hover {
	color: #fff;
	text-decoration: underline;
}


.footer-img {
	margin-bottom: 30px;
}





/* ============
	SPINNER
============== */

@keyframes girar {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(359deg);
	}
}

.spinner {
	animation: girar 1s linear infinite;
}















