@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
* {
	font-family: "Poppins", sans-serif;
	box-sizing: border-box;
}
body {
	margin: 0;
	background-color: #f6f6f6;
	color: #3c3c3b;
}
.rectangle {
	position: absolute;
	top: 0;
	left: 0;
	width: 22.5%;
	height: 100%;
	margin: auto;
	background: #fff;
}
.orange-object {
	position: absolute;
	top: 0;
	right: 0;
	width: 16.5%;
	height: 17.5%;
	margin: auto;
	background: #fd5b00;
	border-radius: 0 0 0 20px;
}
.header {
	width: 100%;
	background-image: url(images/baner.JPG);
	background-position: center;
	background-size: cover;
	position: relative;
}
.brand {
	display: block;
	width: 150px;
}
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.5em;
	padding-left: 4em;
}
.nav-links {
	flex: 1;
	text-align: right;
}
.nav-links ul li {
	list-style-type: none;
	display: inline-block;
	padding: 5px 70px;
	position: relative;
}
.nav-links ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
}
.nav-links ul li::after {
	content: "";
	width: 0%;
	height: 2px;
	background: #fd5b00;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links ul li:hover::after {
	width: 100%;
}
.hero-btn {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.hero-btn:hover {
	border: 1px solid #fd5b00;
	background: #fd5b00;
	transition: 1s;
}
nav .fa {
	display: none;
}
@media (max-width: 1215px) {
	nav {
		padding: 1px;
	}
	.nav-links ul li {
		display: block;
		padding: 10px 0px 0px 0px;
		text-align: center;
	}
	.nav-links {
		position: fixed;
		background: #fd5b00;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	nav .fa {
		display: block;
		color: #fff;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	.nav-links ul {
		padding: 30px;
	}
	.brand {
		max-width: 80px;
		padding-left: 10px;
		padding-top: 5px;
	}
}

/*-------------------------------------------- GLOBAL CLASSS ------------------------------------------------------ */
.no-margin {
	margin: 0;
}
.row {
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}
.row-reverse {
	display: flex;
	width: 100%;
	padding-top: 6em;
}
@media (max-width: 1215px) {
	.row {
		flex-direction: column;
	}
	.orange-object {
		display: none;
	}
	.row-reverse {
		flex-direction: column-reverse;
	}
}
/*----------------------------------------------------- FOOTER ------------------------------------------------------- */
.footer {
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	background-color: black;
	color: #fff;
}
.footer-links ul {
	padding: 0;
}
.footer-links ul li {
	list-style-type: none;
}
.footer-links ul li a {
	color: #fff;
	text-decoration: none;
}
.footer img {
	max-width: 150px;
}
.footer-column {
	max-width: 25%;
	margin: auto;
	text-align: center;
}
.footer-copyright {
	padding: 20px 0 10px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 1215px) {
	.footer-column {
		padding-top: 20px;
		max-width: 75%;
	}
	.footer p {
		font-size: 12px;
	}
	.footer img {
		max-width: 100px;
	}
}
/*------------------------------------------------ ABOUT US PAGE ------------------------------------------------- */
.sub-header {
	height: 50vh;
	width: 100%;
	background-image: url(images/baner.JPG);
	background-position: center;
	background-size: cover;
	text-align: center;
	color: #fff;
}
.sub-header h1 {
	font-size: 50px;
}
.about-us {
	width: 80%;
	margin: auto;
	text-align: center;
}
.about-us h1 {
	font-size: 80px;
	font-weight: 600;
}
.about-us p {
	font-size: 20px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}
.mision-vision {
	width: 100%;
	margin: auto;
	padding-top: 80px;
}
.mision-vision h1 {
	font-size: 50px;
	font-weight: 600;
	padding-left: 0;
}
.mision-vision p {
	font-size: 20px;
	font-weight: 300;
	padding-left: 0;
}
.mv-col {
	width: 50%;
	margin: auto;
}
.mv-text {
	padding-left: 30px;
	padding-right: 30px;
}
.comprometidos {
	width: 80%;
	margin: auto;
	padding-top: 120px;
	padding-bottom: 100px;
	text-align: center;
}
.comprometidos h1 {
	font-size: 50px;
}
.comprometidos p {
	font-size: 20px;
}
.before-footer-baner {
	width: 100%;
	background-image: url(images/post_photo-03.png);
	background-position: center;
	background-size: cover;
	position: relative;
}
@media (max-width: 1215px) {
	.sub-header h1 {
		margin-top: 40px;
		font-size: 30px;
	}
	.mision-vision {
		text-align: center;
	}
	.mision-vision h1 {
		font-size: 30px;
	}
	.mision-vision p {
		font-size: 16px;
	}
	.mv-col {
		width: 80%;
	}
	.mv-text {
		padding: 0;
	}
	.about-us h1 {
		font-size: 30px;
	}
	.about-us p {
		font-size: 16px;
	}
	.comprometidos {
		text-align: center;
	}
	.comprometidos h1 {
		font-size: 30px;
	}
	.comprometidos p {
		font-size: 16px;
	}
	.before-footer-baner {
		width: 100%;
		max-height: 90px;
	}
}
/*------------------------------------------------CAROUSEL----------------------------------------------------------*/
.carousel-section {
	width: 80%;
	margin: auto;
	padding-top: 100px;
}
.slick-slide {
	margin: 0px 10px;
}
.slick-slide img {
	width: 100%;
}
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}
.slick-track:before,
.slick-track:after {
	display: table;
	content: "";
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir="rtl"] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}
/*-----------------------------------------------SERVICES------------------------------------------------*/
.sub-header-banerless {
	height: 40vh;
	width: 100%;
	background-position: center;
	background-size: cover;
	text-align: center;
	color: #3c3c3b;
}
.sub-header-banerless h1 {
	padding-top: 40px;
	font-size: 50px;
	width: 90%;
	margin: auto;
}
.brand-banerless {
	display: block;
	width: 150px;
}
.nav-links-banerless {
	flex: 1;
	text-align: right;
}
.nav-links-banerless ul li {
	list-style-type: none;
	display: inline-block;
	padding: 5px 70px;
	position: relative;
}
.nav-links-banerless ul li a {
	color: #3c3c3b;
	text-decoration: none;
	font-size: 20px;
}
.nav-links-banerless ul li::after {
	content: "";
	width: 0%;
	height: 2px;
	background: #fd5b00;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links-banerless ul li:hover::after {
	width: 100%;
}
.services {
	width: 80%;
	margin: auto;
	text-align: center;
}
.services h1 {
	font-size: 60px;
}
.services img {
	max-height: 150px;
}
.services-col {
	width: 33.3%;
	margin: auto;
}
.card {
	width: 40%;
	margin: auto;
	text-align: center;
}
.card-header {
	background-color: #fd5b00;
	color: #fff;
}
.card-body {
	background-color: #dadada;
	color: #1d1d1b;
	text-align: left;
}
.card h2 {
	font-size: 30px;
}
.card-body p {
	font-size: 20px;
	padding: 25px 20px 25px 20px;
}
.categories {
	width: 70%;
	margin: auto;
	padding-top: 100px;
	text-align: center;
}
.categories h1 {
	font-size: 30px;
	padding-bottom: 50px;
}
.categories img {
	max-width: 200px;
	background-color: #fff;
}
.download {
	width: 70%;
	margin: auto;
	text-align: center;
	padding-top: 80px;
	padding-bottom: 100px;
}
.download h1 {
	padding-bottom: 15px;
}
.hero-btn-contrast {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fd5b00;
	padding: 12px 34px;
	font-size: 20px;
	background: #fd5b00;
	position: relative;
	cursor: pointer;
	border-radius: 20px;
	box-shadow: 3px 3px 6px #999;
}
.hero-btn-contrast:hover {
	border: 1px solid #fd5b00;
	background: #fff;
	transition: 1s;
	color: #fd5b00;
}
@media (max-width: 1215px) {
	.nav-links-banerless ul {
		padding: 30px;
	}
	.nav-links-banerless ul li {
		display: block;
		padding: 10px 0px 0px 0px;
		text-align: center;
	}
	.nav-links-banerless ul li a {
		color: #fff;
		text-align: right;
	}
	.nav-links-banerless {
		position: fixed;
		background: #fd5b00;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	.banerless .fa-bars {
		display: block;
		color: #3c3c3b;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	.brand-banerless {
		max-width: 80px;
		padding-left: 10px;
		padding-top: 5px;
	}
	.sub-header-banerless h1 {
		padding-top: 50px;
		font-size: 30px;
	}
	.card {
		width: 80%;
	}
	.card h2 {
		font-size: 20px;
	}
	.card-body p {
		font-size: 16px;
	}
	.categories {
		width: 80%;
	}
	.categories h1 {
		font-size: 20px;
	}
	.categories img {
		max-width: 150px;
	}
	.categories h1 {
		font-size: 20px;
	}
	.download h1 {
		font-size: 20px;
	}
}
/*-------------------------------------------------------CONTACT US---------------------------------------------------*/
.contact-us {
	width: 80%;
	margin: auto;
	text-align: center;
}
.contact-col {
	width: 60%;
	margin: auto;
	text-align: center;
}
.text-input {
	width: 100%;
	padding: 15px;
	border: 0;
	border-radius: 20px;
	font-size: 20px;
}
.contact-col h1 {
	text-align: left;
}
.send {
	padding: 30px 0px 100px 0px;
}
@media (max-width: 1215px) {
	.contact-col {
		width: 80%;
	}
	.text-input {
		width: 100%;
		padding: 10px;
		border: 0;
		border-radius: 20px;
		font-size: 14px;
	}
}
/*-------------------------------------------------------MAIN PAGE---------------------------------------------------*/
.main-col-carousel {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	background-image: url(images/orange-circle.png);
	background-size: 500px 500px;
	background-repeat: no-repeat;
}
.main-col-text {
	margin-right: auto;
	text-align: left;
}
.main-btn {
	padding: 10px 0 0 50px;
}
.main-col-text h1 {
	margin-top: 0em;
	margin-bottom: 0em;
	padding-left: 50px;
	font-size: 120px;
}
.main-col-text h3 {
	max-width: 500px;
	margin: 0.4em 0 0 0;
	padding-left: 50px;
	font-size: 40px;
}
.main-col-text p {
	margin: 0;
	padding-left: 50px;
	font-size: 20px;
}
.main-content {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.main-sub-header-banerless {
	position: absolute;
	width: 100%;
	background-position: center;
	background-size: cover;
	text-align: center;
	color: #3c3c3b;
}
.main-sub-header-banerless h1 {
	padding-top: 40px;
	font-size: 50px;
	width: 90%;
	margin: auto;
}
.swiper {
	width: 500px;
}
.swiper img {
	width: 100%;
}
.social-icons {
	position: absolute;
	bottom: 30px;
	right: 50px;
}
.social-icons li {
	list-style: none;
	padding-top: 20px;
}
.social-icons li a {
	display: inline-block;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.2s ease-in-out;
}
.social-icons li a img {
	max-width: 31px;
}
.social-icons li a:hover {
	transform: translateX(-10px);
}

@media (max-width: 1215px) {
	.main-sub-header-banerless h1 {
		padding-top: 50px;
		font-size: 30px;
	}
	.main-col-carousel {
		margin: auto;
		text-align: center;
		background-image: url(images/orange-circle.png);
		background-size: 350px 350px;
		background-repeat: no-repeat;
	}
	.main-col-text {
		width: 80%;
		margin: auto;
		text-align: center;
	}
	.row-reverse .main-col-text h1 {
		font-size: 60px;
		padding: 0px;
	}
	.row-reverse .main-col-text h3 {
		margin: auto;
		padding: 0;
		font-size: 30px;
	}
	.row-reverse .main-col-text p {
		font-size: 20px;
		padding-left: 0px;
	}
	.social-icons {
		display: none;
	}
	.main-btn {
		padding: 20px 0px 50px 0px;
	}
	.swiper {
		width: 350px;
	}
}
