@charset "UTF-8";
.navbar-fixed-top.opaque {
	top: 0;
	margin-top: 0;
}
.navbar-brand img.logo {
	max-width: 250px;
	max-height: 70px;
}
.section-bg-2 {
	background: unset;
}
textarea.register-comment {
	max-width: 520px;
}
#contact_form3 input.register-input,
#contact_form3 select.register-input,
#contact_form3 textarea.register-comment,
#contact_form3 input.register-submit {
	display: block;
}
#cta_phone input[name="phone"] {
	width: 100%;
	max-width: calc(100% - 100px);
	height: 65px;
	padding: 0 20px;
	border: 2px solid #fff;
	background-color: transparent;
	-moz-border-radius: 5px 0 0 5px;
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px;
	color: #fff;
	font-size: 16px;
	margin: 0;
}
#cta_phone input.submit {
	width: 100px;
	height: 65px;
	background: #fff;
	border: none;
	color: #1089D4;
	display: inline;
	margin: 0 0 0 -5px;
	-moz-border-radius: 0 5px 5px 0;
	-webkit-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
	font-size: 17px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	vertical-align: top;
	transition: background-color .25s ease-in-out;
	-moz-transition: background-color .25s ease-in-out;
	-webkit-transition: background-color .25s ease-in-out;
	cursor: pointer;
}
select.register-input option {
	background-color: #fff;
	color: #000;
}
select.contact-input {
	width: 96%;
	height: 50px;
	padding-left: 2%;
	padding-right: 2%;
	margin-bottom: 12px;
	color: #727272;
	background-color: #f6f7f8;
	border: 1px solid #ececec!important;
	font-size: 14px;
	-webkit-border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}
select.contact-input option:checked {
    background: #f6f6f6;
    box-shadow: 0 0 10px 100px #f0f0f0 inset;
}
.card-header h5 .btn-link {
	white-space: normal;
	position: relative;
	width: calc(100% - 20px);
	padding-right: 10px;
}
.card-header h5 .btn-link::after {
	content: "-";
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	text-align: center;
}
.card-header h5 .btn-link.collapsed::after {
	content: "+";
}
.hidden {
	display: none !important;
}
.show {
	display: inline-block !important;
}
/* Inicio - Boton de llamadas */
.llamada-moviles {
	position: fixed;
	z-index: 999!important;
	display: none;
	transition: all ease-in-out .6s;
	left: 50%;
	bottom: 0px;
	width: auto;
	transform: translateX(-50%);
}
.llamada-moviles a {
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 25px;
	text-align: center;
	border-radius: 100%;
	color: #fff;
	background: #2184d3 !important;
	cursor: pointer;
	margin: 0 5px;
	border: 2px solid #fff;
	box-sizing: content-box;
}
.whatsapp-moviles {
	position: fixed;
	bottom: 125px;
	right: 25px;
	z-index: 9999!important;
	transition: all ease-in-out .6s;
	margin-bottom: 0;
}
.whatsapp-moviles a {
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 25px;
	text-align: center;
	border-radius: 100%;
	color: #fff;
	background: #25d366;
	cursor: pointer;
	margin: 0 5px;
	border: 2px solid #fff;
	box-sizing: content-box;
}
.llamada-moviles a:hover i, .whatsapp-moviles a:hover i {
	color: #fff;
}
.llamada-moviles .bgcolor-whatsapp, .bgcolor-whatsapp {
	background: #25d366 !important;
}
.llamada-moviles .bordercolor-whatsapp, .bordercolor-whatsapp {
	border-color: #25d366 !important;
}
.button-pulse:not(.bgcolor-whatsapp) {
	box-shadow: 0 0 0 0 rgba(33, 132, 211, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}
.button-pulse.bgcolor-whatsapp {
	box-shadow: 0 0 0 0 rgba(37, 211, 102, 1);
	transform: scale(1);
	animation: pulseWhatsapp 2s infinite;
}
@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(33, 132, 211, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}
@keyframes pulseWhatsapp {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}
/* Fin - Botón de llamadas */
/* Inicio - efecto en botón */
.shake {
	animation: shake-animation 4s ease infinite !important;
	transform-origin: 50% 50%;
}
@keyframes shake-animation {
	0% { transform:translate(0,0) }
	/*1.78571% { transform:translate(5px,0) }
	3.57143% { transform:translate(-5px,0) }
	5.35714% { transform:translate(5px,0) }
	7.14286% { transform:translate(-5px,0) }
	8.92857% { transform:translate(5px,0) }
	10.71429% { transform:translate(-5px,0) }/**/
	2% { transform:translate(5px,0) }
	4% { transform:translate(-5px,0) }
	6% { transform:translate(5px,0) }
	8% { transform:translate(-5px,0) }
	10% { transform:translate(5px,0) }
	12% { transform:translate(-5px,0) }
	14% { transform:translate(5px,0) }
	16% { transform:translate(-5px,0) }
	18% { transform:translate(5px,0) }
	20% { transform:translate(-5px,0) }
	22% { transform:translate(5px,0) }
	24% { transform:translate(-5px,0) }
	26% { transform:translate(5px,0) }
	28% { transform:translate(-5px,0) }
	30% { transform:translate(5px,0) }
	32% { transform:translate(0,0) }
	100% { transform:translate(0,0) }
}
/* Fin - efecto en botón */
/* Inicio - CTA lateral llamada/whatsapp */
#ctaSidebarScroll {
	left: 0;
	max-width: 360px;
	text-align: center;
	background-color: rgba(255, 255, 255, .9);
	z-index: 999990;
	border: 1px solid #aaa;
	border-radius: 0 15px 15px 0;
	-o-border-radius: 0 15px 15px 0;
	-ms-border-radius: 0 15px 15px 0;
	-moz-border-radius: 0 15px 15px 0;
	-webkit-border-radius: 0 15px 15px 0;
	box-shadow: 1px 1px 10px rgb(120 120 120 / 50%);
	-o-box-shadow: 1px 1px 10px rgb(120 120 120 / 50%);
	-ms-box-shadow: 1px 1px 10px rgb(120 120 120 / 50%);
	-moz-box-shadow: 1px 1px 10px rgb(120 120 120 / 50%);
	-webkit-box-shadow: 1px 1px 10px rgb(120 120 120 / 50%);
	top: 50% !important;
	transform: translateY(-50%) !important;
	-o-transform: translateY(-50%) !important;
	-ms-transform: translateY(-50%) !important;
	-moz-transform: translateY(-50%) !important;
	-webkit-transform: translateY(-50%) !important;
}
/* Fin - CTA lateral llamada/whatsapp */
/* Responsive  */
/* Min  */
/* Between */
@media (min-width: 576px) and (max-width: 767px) {
	.hidden-sm {
		display: none !important;
	}
	.show-sm {
		display: inline-block !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.hidden-md {
		display: none !important;
	}
	.show-md {
		display: inline-block !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-lg {
		display: none !important;
	}
	.show-lg {
		display: inline-block !important;
	}
}
@media (min-width: 1200px) {
	.hidden-xl {
		display: none !important;
	}
	.show-xl {
		display: inline-block !important;
	}
}
/* Max */
@media (max-width: 768px) {
	.testim-inner {
		margin-bottom: 20px;
	}
	.footer-top i {
		margin-top: 0 !important;
	}
}
@media (max-width: 767px) {
	.section-blue,
	.section-grey, 
	.section-white,
	.section-bg-2 {
		padding: 40px 0;
	}
	.main-services {
		margin-top: 25px;
	}
	.testim-inner {
		margin-top: 80px;
		margin-bottom: 0px;
	}
	.testim-inner.first {
		margin-top: 40px;
	}
	.footer-top {
		padding-bottom: 40px;
	}
	.llamada-moviles {
		display: block;
	}
	.whatsapp-moviles {
		bottom: 0;
		display: none;
	}
	.footer {
		padding-bottom: 80px;
	}
}
@media (max-width: 575px) {
	.hidden-xs {
		display: none !important;
	}
	.show-xs {
		display: inline-block !important;
	}
}
@media (max-width: 375px) {
	.section-white {
		padding: 40px 0 !important;
	}
}