@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500&display=swap');

/* Backgrounds */
body {
	font-family: 'Poppins', sans-serif;
}

.bg-purple {
	background-color: #859fe5;
}
.bg-white {
	background-color: #fff;
}
/* Containers */
.container-home {
	max-width: 1800px;
}
.navbar-nav {
	margin: 0 auto;
}
.active {
	background-color: #1d2b37 !important;
	border-radius: 6px;
}
.slogan-banner {
    background-color: #0e3e6b;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 15px;
    letter-spacing: 2px;
    font-weight: 500;
}
/* Header Menu */
.logo-img {
	width: 200px;
}
.nav-link {
	text-transform: uppercase;
	color: #092c62;
	font-weight: 600;
	letter-spacing: -0.5px;
	font-size: 14px;
}
.dropdown-item {
	text-transform: uppercase;
    color: #092c62;
    font-weight: 600;
    letter-spacing: -0.5px;
    font-size: 14px;
}

/* Colors */
.color-white {
	color: #fff;
}
.color-blue {
	color: #58adf5;
}
/* H */ 
.text-h1 {
	font-size: 2rem;
	font-weight: 600;
}
h4 {
	font-weight: 600;
}
/* Buttons */
.btn-big {
	font-size: 0.8rem;
	letter-spacing: 4px;
	padding-left: 45px;
	padding-right: 45px;
	padding-top: 13px;
	padding-bottom: 13px;
	font-weight: 600;
	background-color: #000;
}
.btn-big:hover {
	background-color: #71bbff;
	color: #1d2b37;
}
/* Banners */
.home-banner {
	background-image: url("../images/banners/home2.png");
	height: 825px;
	padding-top: 5%;
    background-repeat: no-repeat;
    background-size: auto;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
.home-desc {
	font-size: 13px;
	padding: 2%;
    border-radius: 15px;
	color: #fff;
	background-color:rgba(14, 62, 107, 0.7);
}

/* Footer */
footer {
	background-color: #1d2b37;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	color: #fff;
}
.footer-menu {
	margin-left: 0px;
	padding-left: 0px;
}
.footer-menu li {
	list-style: none;
	font-weight: 300;
	font-size: 0.9rem;
	line-height: 2;
}
.text-copy {
	font-size: 12px;
	color: #a2a5a9;
}
.footer-links  {
	color: #fff;
	text-decoration: none;
}
.footer-links:hover {
	color: #889fe5;
}

/* X-Small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.text-h1 {
		font-size: 4rem;
	}
	.btn-big {
	font-size: 1.5rem;	
}
	.logo-img {
		width: auto;
	}
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
	
}