@import url('fonts.css');
/* GLOBAL STYLES
-------------------------------------------------- */
:root {
	--sh-blue: #0f5fa6;
	--sh-blue-dark: #0b3f6e;
	--sh-green: #3aa839;
	--sh-green-dark: #2c8a2b;
	--sh-navy: #0b2d4d;
}
body {
	color: #5a5a5a;
	font-family: 'Source Sans Pro', sans-serif;
}
h1, h2, h3, h4, h5 {
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	letter-spacing: 0.3px;
}
a {
	color: var(--sh-blue);
}
.btn-capsul {
	border-radius: 30px;
}
.btn-aqua {
	background: var(--sh-green);
	color: #fff;
}
.btn-aqua:hover {
	background: var(--sh-green-dark);
	color: #fff;
}
.btn-dark-blue {
	background: var(--sh-navy);
	color: #fff;
}
.btn-dark-blue:hover {
	background: var(--sh-blue-dark);
	color: #fff;
}
.relative-box {
	position: relative
}
section {
	float: left;
	width: 100%;
	padding: 80px 0;
}
/* Loader
-------------------------------------------------- */

.loaders {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex: 0 1 auto;
	flex-direction: row;
	flex-wrap: wrap;
}
.loaders .loader {
	box-sizing: border-box;
	display: flex;
	flex: 0 1 auto;
	flex-direction: column;
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis: 25%;
	max-width: 25%;
	height: 200px;
	align-items: center;
	justify-content: center;
}
.loader {
	display: table;
	height: 100%;
	position: fixed;
	width: 100%;
	z-index: 1200;
}
.loader-bg {
	background: var(--sh-navy)
}
.loader-inner {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
/* TOP HEADER
-------------------------------------------------- */


.navbar.top-bar {
	border-radius: 0;
	padding: 12px 0;
	z-index: 16;
}
.navbar-toggler {
	border: 1px solid #fff;
	color: #fff;
	position: absolute;
	right: 21px;
}
.sps {
	padding: 1em .5em;
	position: fixed;
	top: 0;
	left: 0;
	transition: all 0.25s ease;
	width: 100%;
}
.sps--abv {
	background-color: transparent;
	color: #000;
	margin-top: 0;
}
.sps--blw {
	background-color: rgba(255, 255, 255, 0.97);
	box-shadow: 0 2px 12px rgba(0,0,0,0.1);
	color: #333;
}
.top-bar.sps--blw .nav-link {
	color: var(--sh-navy);
	text-shadow: none;
}
.top-bar.sps--blw .nav-link:hover {
	color: #fff;
}
.sps--blw .navbar-brand img {
	filter: none;
}
.top-bar .navbar-brand {
	color: #fff;
	font-size: 26px;
	font-weight: 500;
	padding: 0;
	display: flex;
	align-items: center;
}
.top-bar .navbar-brand img {
	height: 62px;
	width: auto;
	margin-right: 10px;
	filter: drop-shadow(0 1px 2px rgba(0,0,0,0.55)) drop-shadow(0 0 10px rgba(0,0,0,0.35));
}
.top-bar a.navbar-brand span {
	color: var(--sh-green);
}
.top-bar a.navbar-brand:hover {
	color: var(--sh-green);
}
.top-bar .nav-link {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	padding: 12px 18px;
	text-shadow: 0 1px 3px rgba(0,0,0,0.55);
	transition: color 0.2s ease;
}
.top-bar .navbar-nav .nav-item {
	margin: 0
}
.top-bar .nav-link:hover, .top-bar .nav-item.active a {
	background: var(--sh-green);
	color: #fff;
	border-radius: 3px;
}
/* CUSTOMIZE THE CAROUSEL / HERO
-------------------------------------------------- */

.hero-block {
	margin-bottom: 0;
	min-height: 100vh;
	position: relative;
	background-image:
		radial-gradient(ellipse 620px 260px at 0% 0%, rgba(255,255,255,0.8), rgba(255,255,255,0) 70%),
		linear-gradient(rgba(11,45,77,0.55), rgba(11,45,77,0.7)),
		url("../img/hero-bg.jpg");
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: top left, center, center;
	background-size: auto, auto, cover;
	width: 100%;
	display: flex;
	align-items: center;
}
.hero-block .hero-caption {
	z-index: 10;
	background: rgba(255,255,255,0.95);
	text-shadow: none;
	padding: 40px 50px;
	box-shadow: 20px 20px 43px rgba(0, 0, 0, 0.35);
	color: #222;
	max-width: 620px;
	margin: 140px 0 60px;
	border-radius: 6px;
}
.hero-block .hero-caption h1 {
	font-weight: 500;
	color: var(--sh-navy);
	margin-bottom: 15px;
}
.hero-block .hero-caption p {
	font-size: 17px;
	margin-bottom: 20px;
}
/* CALL TO ACTION
-------------------------------------------------- */
.cta-block {
	background: var(--sh-blue);
	padding: 30px 0;
	color: #fff;
}
.cta-block h4 {
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 28px;
}
.cta-block p {
	margin-bottom: 0;
	font-size: 18px;
}
/* ABOUT SECTION
-------------------------------------------------- */

.about-home-block h2 {
	color: #4c4c4c;
	font-size: 36px;
	margin: 0 0 10px;
}
.about-home-block h2 small {
	color: var(--sh-green);
	display: block;
	text-transform: uppercase;
	font-size: 24px;
}
.about-home-block .lead {
	font-size: 17px;
	line-height: 27px;
	text-align: justify;
}
.about-home-block .img-fluid {
	border-radius: 8px;
}
.about-img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}
/* VENTAJAS / FEATURES LIST
-------------------------------------------------- */
.advantages-sec {
	background: #f5f5f5;
}
.advantages-sec h2 {
	color: #4c4c4c;
	font-weight: 400;
	text-align: center;
	margin-bottom: 50px;
}
.advantages-sec h2 small {
	color: var(--sh-green);
	display: block;
	line-height: 27px;
	margin-top: 10px;
}
.advantages-sec .row {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 50px;
}
@media (min-width: 768px) {
	.advantages-sec .row {
		grid-template-columns: 1fr 1fr;
	}
}
.advantage-item {
	display: flex;
	align-items: flex-start;
	float: none;
	width: auto;
	margin-bottom: 30px;
}
.advantage-item i {
	color: var(--sh-green);
	font-size: 26px;
	margin-right: 18px;
	margin-top: 3px;
	flex: 0 0 auto;
}
.advantage-item h4 {
	font-size: 19px;
	margin-bottom: 6px;
	color: #333;
}
.advantage-item p {
	font-size: 15px;
	line-height: 22px;
	margin: 0;
	text-align: justify;
}
/* SERVICE SECTION
-------------------------------------------------- */

.service-sec {
	background: var(--sh-green);
	color: #fff;
}
.service-sec h2 {
	display: block;
	font-weight: 400;
}
.service-sec h2 small {
	display: block;
	font-size: 22px;
	margin-top: 10px;
}
.service-sec i {
	border: 1px solid #fff;
	border-radius: 50%;
	font-size: 25px;
	margin-bottom: 20px;
	padding: 12px;
	width: 52px;
}
.service-sec h3 {
	font-size: 21px;
	font-weight: 500;
}
.service-sec p {
	line-height: 20px;
	padding: 0 20px;
	font-size: 15px;
}
.service-sec .row {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 20px;
}
@media (min-width: 576px) {
	.service-sec .row {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 992px) {
	.service-sec .row {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
.service-sec .service-block {
	margin-top: 45px;
	float: none;
	width: auto;
}
/* SECURE / TRUST SECTION
-------------------------------------------------- */
.secure-sec {
	background: var(--sh-navy);
	color: #dfe8f0;
}
.secure-sec h2 {
	color: #fff;
	font-weight: 400;
	text-align: center;
	margin-bottom: 20px;
}
.secure-sec h2 small {
	color: var(--sh-green);
	display: block;
	margin-top: 10px;
	font-size: 22px;
}
.secure-sec p {
	font-size: 16px;
	line-height: 26px;
}
.secure-sec .row {
	align-items: center;
}
.secure-sec img {
	border-radius: 8px;
}
/* QA SECTION
-------------------------------------------------- */
.qa-section {
	background: #f5f5f5;
}
.qa-section h2 {
	color: #4c4c4c;
	font-weight: 400;
	text-align: center;
	margin-bottom: 50px;
}
.qa-section h2 small {
	color: var(--sh-green);
	display: block;
	line-height: 27px;
	margin-top: 10px;
}
.qa-section .card-header h5 a.collapsed {
	color: var(--sh-blue);
}
.qa-section .card-header h5 a {
	color: var(--sh-green);
	font-weight: 500;
	font-size: 21px;
}
.qa-section .card-header h5 a:hover, .qa-section .card-header h5 a:focus {
	text-decoration: none;
}
.qa-section .card-header {
	background: #fff;
}
.qa-section .card {
	margin-bottom: 10px;
	border-radius: 6px;
	overflow: hidden;
}
/* CONTACT SECTION
-------------------------------------------------- */
.contact-sec {
	background: var(--sh-blue);
	color: #fff;
}
.contact-sec h2 {
	color: #fff;
	font-weight: 400;
	text-align: center;
	margin-bottom: 15px;
}
.contact-sec h2 small {
	color: #eaf3ff;
	display: block;
	line-height: 27px;
	margin-top: 10px;
}
.contact-sec .contact-info {
	text-align: center;
	margin-top: 30px;
}
.contact-sec .contact-info a {
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	display: inline-block;
	margin: 10px 25px;
}
.contact-sec .contact-info a:hover {
	color: var(--sh-navy);
	text-decoration: none;
}
.contact-sec .contact-info i {
	margin-right: 10px;
}
footer {
	float: left;
	background: var(--sh-navy);
	width: 100%;
	color: #fff;
	padding: 20px 0
}
footer a {
	color: #fff;
}
/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
.featurette-heading {
	font-size: 44px;
}
}
@media (max-width: 767px) {
.hero-block {
	min-height: 100vh;
}
.hero-block .hero-caption {
	margin: 110px 15px 40px;
	padding: 25px 25px;
}
.hero-block .hero-caption h1 {
	font-size: 27px;
}
.top-bar .navbar-nav {
	width: 100%;
	background: var(--sh-navy);
	margin-top: 20px;
}
.collapsing {
	transition-duration: 0s;
	overflow: none;
}
}
@media (max-width: 543px) {
.hero-block .hero-caption {
	margin: 110px 10px 30px;
}
}
