@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&family=Poppins:wght@200;300;400;700&display=swap');

/*
font-family: 'Oswald', sans-serif;
font-family: 'Poppins', sans-serif;
*/

html, body { width: 100%; height: 100%; margin:0; overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	position: relative;
	line-height: 1.5em;
	background: none;
	margin: 0px;
}
h1 { font-size: 50px; }
h2 { font-size: 40px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 17px; }

p {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.7em;
	font-weight: 400;
	margin: 0;

	-webkit-font-smoothing: antialiased;
		-moz-font-smoothing: antialiased;
}

li 	{ font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 400; }
small { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 400; }

a {
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
	cursor: pointer;

	-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		 -ms-transition: all 0.2s;
		  -o-transition: all 0.2s;
			  transition: all 0.2s;
}
a:hover, a:focus, a:visited { text-decoration: none; outline: none; }



/* CUST_AMINATION
============================================================================================================================== */

@-webkit-keyframes zoomIn {
	from { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3); }
	50% { opacity: 1; }
}

@keyframes zoomIn {
	from { opacity: 0; -webkit-transform: scale3d(.3, .3, .3); transform: scale3d(.3, .3, .3); }
	50% { opacity: 1; }
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}



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

.header {
	position: relative;
	z-index: 20;
}

.nav-main {
	position: relative;
	z-index: 30;
	background-color: #FFF;
}

.nav-main .navbar-nav .nav-link {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding-right: 10px;
	padding-left: 10px;
	color: #000;
}
@media only screen and (max-width: 1259.50px) { .nav-main .navbar-nav .nav-link { font-size: 14px; padding-right: 5px; padding-left: 5px; } }
@media only screen and (max-width: 1094.50px) { .nav-main .navbar-nav .nav-link { font-size: 12px; padding-right: 5px; padding-left: 8px; } }


.nav-main .navbar-nav .nav-link:focus, .nav-main .navbar-nav .nav-link:hover { background-color: #9f1c24; color: #FFF; text-decoration: none; }
.nav-main .dropdown-menu { background-color: #9f1c24; }
.nav-main .dropdown-item { color: #FFF; }
.nav-main .dropdown-item:focus, .dropdown-item:hover { background-color: #FFF; color: #000 !important; }

@media only screen and (max-width: 575.50px) {
	.navbar-toggler {
		width: 100%;
		float: none;
		margin-right: 0;
	}
}

.div_logo {
	position: relative;
	max-width: 150px;
	margin: -30px auto -55px;
}
@media only screen and (max-width: 575.50px) { .div_logo { margin: -15px auto 15px; } }



/* CAROUSEL
============================================================================================================================== */

.carousel_main {
	position: relative;
	/* margin-top: -90px; */
	z-index: 10;
}



/* FORMS
============================================================================================================================== */

label {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.form-control, .form-select {
	font-family: 'Poppins', sans-serif;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	border: 1px solid #FFF;
	background-color: #f7f7f7;
	border-radius: 0;
	padding: 15px 25px 15px 25px;

	-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		  -o-transition: all 0.2s;
		 -ms-transition: all 0.2s;
			  transition: all 0.2s;
}
.form-control:active, .form-control:hover, .form-select:active, .form-select:hover { border-color: #ff9800; color: #004ead; }
.form-control:focus, .form-select:focus { border-color: #ff9800; color: #004ead; -webkit-box-shadow: none; box-shadow: none; }

.table { font-family: 'Poppins', sans-serif; }


/* BUTTONS
============================================================================================================================== */

.btn-main {
	padding: 10px 30px 10px 30px;
	border-radius: 0;
	border: 1px solid #FFF;
	background-color: #901518 !important;
	color: #FFF;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 1px;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);

	-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		  -o-transition: all 0.2s;
		 -ms-transition: all 0.2s;
			  transition: all 0.2s;
}

.btn-main:hover, .btn-main:active, .btn-main:focus {
	border: 1px solid #FFF;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	background-color: #FFF !important;
	color: #000;
}

.btn-sml {
	padding: 8px 28px 8px 28px;
	font-size: 15px;
	border-radius: 0 10px 0 10px;
	border: 0;
}

.btn-sml:hover, .btn-sml:active, .btn-sml:focus { border: 0; }



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

footer {
	margin-top: 200px;
	background-color: #000;
	padding-top: 50px;
	padding-bottom: 50px;
}

footer h5, footer p { color: #FFF; }

footer a { color: #fef200; }
footer a:hover { color: #f11c20; }



/* OTHERS
============================================================================================================================== */

.bg-green { background-color: #006e51; }

.title h1, .title h2 {
    color: #001232;
    font-weight: 400;
    margin: 0;
}

.title h1 { font-size: 36px; }
.title h2 { font-size: 30px; }

.title h1 span { font-weight: 700; }
.title h2 span { color: #006e51; font-weight: 700; }



/* CONTACT DIV
============================================================================================================================== */

.contact-div {
	background-color: #001232;
	display: inline-block;
}
.contact-icon {
	background-color: #ffb52f;
	display: inline-block;
	float: left;
	padding: 14px 14px 14px 14px;
}
.contact-icon i {
	color: #001232;
	display: inline-block;
	font-size: 30px;
}
.contact-content-number { display: inline-block; }
.contact-content-number > h6 {
	color: #ffffff;
	font-size: 28px;
	font-weight: bold;
	padding: 6px 26px 11px;
	margin: 0;
}



/* BANNER
============================================================================================================================== */

.banner-wrapper {
	position: relative;
	overflow: hidden;
}

.banner-wrapper::before {
	position: absolute;
	content: "";
	background-color: #000;
	opacity: .40;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.banner-wrapper::after {
	border: 1px solid #FFF;
	bottom: 30px;
	content: "";
	left: 30px;
	position: absolute;
	right: 30px;
	top: 30px;
	transition: all 0.4s ease 0s;
	z-index: 9;
	pointer-events: none;
}

.banner-wrapper a img { width: 100%; }

.banner-content {
	position: absolute;
	bottom: 60px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 99;
	padding: 10px;
}

.banner-content > h2 {
	color: #ffffff;
	font-weight: bold;
	font-size: 26px;
	letter-spacing: .3px;
	margin: 0;
}

.banner-wrapper:hover::after {
	border: 3px dashed #FFF;
	left: 15px;
	bottom: 15px;
	right: 15px;
	top: 15px;
}

.banner-wrapper:hover .banner-content > h2 { animation: 700ms ease-in-out 0s normal none 1 running zoomIn; color: #fff600; }
