/**
----------- FONTS ------------
**/

/* Montserrat */

@font-face {
	font-family: Montserrat;
	src: url(../fonts/Montserrat/Light.ttf);
	font-weight: 300;
}

@font-face {
	font-family: Montserrat;
	src: url(../fonts/Montserrat/Regular.ttf);
	font-weight: 400;
}

@font-face {
	font-family: Montserrat;
	src: url(../fonts/Montserrat/Medium.ttf);
	font-weight: 500;
}

@font-face {
	font-family: Montserrat;
	src: url(../fonts/Montserrat/SemiBold.ttf);
	font-weight: 600;
}

@font-face {
	font-family: Montserrat;
	src: url(../fonts/Montserrat/Bold.ttf);
	font-weight: 700;
}

@font-face {
	font-family: Montserrat;
	src: url(../fonts/Montserrat/Black.ttf);
	font-weight: 900;
}

/* Sailors */

@font-face {
	font-family: Sailors;
	src: url(../fonts/Sailors/Regular.ttf);
	font-weight: 400;
}

/**
----------- Variables ------------
**/

:root {
	/* Colors */
	--main-white: #fafafa;
	--main-primary: #2a2d46;
	--main-secondary: #f85729;
	--main-grey: #707070;
	--main-yellow: #f9ef5b;
	--main-green: #c0f95b;
	--main-aqua: #5bf9ba;
	--main-ligth-blue: #5beef9;
	--main-blue: #5bbef9;
	--main-red: #ff8d9c;

	/* Dimensions */
	--main-navbar-height: 100px;
	--main-border-radius: 8px;
}

/**
----------- Normalization ------------
**/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	font-size: 14px;
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-weight: 400;
	color: var(--main-primary);
}

/**
----------- General ------------
**/

.nav-mobile {
	display: none;
}

.container {
	width: 90%;
	margin: 0 auto;
}

main .section {
	width: 100%;
	min-height: 100vh;
}

main .section-container {
	width: 90%;
	margin: 0 auto;
	padding: 10vh 0;
}

main .section-title {
	display: flex;
	justify-content: center;
}

main .section-title h1 {
	position: relative;
	font-size: 1.8em;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 10vh;
}

main .section-title h1::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 150%;
	width: 30%;
	height: 4px;
	background-color: var(--main-secondary);
	transform: translateX(-50%);
}

main .panels .panel {
	width: 100%;
	margin-bottom: 4em;
	padding: 2em;
	font-weight: 500;
	text-align: center;
	letter-spacing: 1.2px;
	border-radius: var(--main-border-radius);
	box-shadow: 0 10px 20px -3px rgba(42, 45, 70, 0.1),
		0 0 5px rgba(42, 45, 70, 0.2);
}

main .panels .panel.yellow {
	background-color: var(--main-yellow);
}
main .panels .panel.green {
	background-color: var(--main-green);
}
main .panels .panel.aqua {
	background-color: var(--main-aqua);
}
main .panels .panel.ligth-blue {
	background-color: var(--main-ligth-blue);
}
main .panels .panel.blue {
	background-color: var(--main-blue);
}
main .panels .panel.red {
	background-color: var(--main-red);
}

/**
----------- Header ------------
**/

header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}

header .nav-close {
	display: none;
}

header.nav-fixed {
	position: fixed;
	width: 100%;
	height: 120px;
	background: linear-gradient(
		0deg,
		rgba(220, 220, 220, 0) 0%,
		rgba(220, 220, 220, 0.5) 25%,
		rgba(220, 220, 220, 0.75) 50%,
		rgba(220, 220, 220, 1) 100%
	);
}

header .navbar {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--main-navbar-height);
}

header .navbar .logo {
	display: flex;
	align-items: flex-end;
	width: 80px;
	height: var(--main-navbar-height);
	transition: transform 0.2s ease-in-out;
}

header .navbar .logo svg {
	width: 80px;
}

header .navbar .logo:hover {
	transform: scale(1.1);
}

header .navbar .menu,
header .navbar .contact {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
}

header .navbar .menu {
	transform: translateX(7%);
}

header .navbar .menu .item,
header .navbar .contact .item {
	padding: 0 1.2em;
}

header .navbar .contact .social-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .navbar .menu .item .link,
header .navbar .contact .item .link {
	position: relative;
	font-size: 0.85em;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--main-primary);
	transition: font-size 0.2s ease-in-out;
}

header .navbar .menu .item .link::after,
header .navbar .contact .item .link::after {
	content: '';
	position: absolute;
	bottom: 180%;
	left: 50%;
	width: 40%;
	height: 2px;
	transform: translateX(-50%);
	background-color: var(--main-secondary);
	transition: opacity 0.2s ease-in-out;
	opacity: 0;
}

header .navbar .menu .item .link:hover,
header .navbar .contact .item .link:hover {
	font-size: 0.95em;
}

header .navbar .contact .item .link.social:hover,
header .navbar .contact .item .link.social:hover {
	font-size: 1.4em;
}

header .navbar .menu .item .link:hover::after,
header .navbar .contact .item .link:hover::after {
	opacity: 1;
}

/**
----------- Hero Section ------------
**/

main {
	width: 100%;
	z-index: 1;
}

main .hero-section {
	position: relative;
	background-image: url(../img/background.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

main .hero-section .hero-content {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: flex-start;
	height: 100vh;
	padding-top: 15vh;
	padding-bottom: 4vh;
}

main .hero-section .content {
	display: flex;
	width: 100%;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}

main .hero-section .content .title {
	font-family: 'Sailors';
	text-transform: uppercase;
	font-size: 6em;
	letter-spacing: 0.2em;
	margin-bottom: 0.1em;
	text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

main .hero-section .content .subtitle {
	font-family: 'Sailors';
	text-transform: uppercase;
	font-size: 3.1em;
	letter-spacing: 0.2em;
	color: var(--main-secondary);
	margin-bottom: 0.2em;
	text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

main .hero-section .content .auxiliary {
	font-size: 1.1em;
	text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

main .hero-section .cat {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 2em 0;
}

main .hero-section .cat .link {
	padding: 1.5em 5em;
	font-size: 0.8em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--main-white);
	background-color: var(--main-primary);
	border-radius: var(--main-border-radius);
	transition: transform 0.2 ease-in-out;
}

main .hero-section .cat .link:hover {
	transform: translateY(-4px) scale(1.1);
}

main .hero-section .cards {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

main .hero-section .cards .card {
	height: 35vh;
	width: 30%;
	border-radius: var(--main-border-radius);
	overflow: hidden;
	box-shadow: 0 65px 10px -45px rgba(42, 45, 70, 0.2),
		0 0 5px rgba(42, 45, 70, 0.2);
}

main .hero-section .cards .card:hover .image-container img {
	transform: scale(1.1);
}

main .hero-section .cards .card .image-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80%;
	overflow: hidden;
}

main .hero-section .cards .card .image-container .inner {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.2);
	z-index: 2;
}

main .hero-section .cards .card .image-container img {
	display: block;
	width: 100%;
	min-height: 100%;
	transition: transform 0.2s ease-in-out;
}

main .hero-section .cards .card .title {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 20%;
	width: 100%;
	background-color: var(--main-primary);
}

main .hero-section .cards .card .title p {
	color: var(--main-white);
	font-size: 0.95em;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}


/**
----------- About Section ------------
**/

main .about-section .content {
	width: 100%;
}

main .about-section .content .text {
	font-size: 1.1em;
	letter-spacing: 1.1px;
	line-height: 1.7;
	margin-bottom: 2.3em;
}

main .about-section .content .text span.bold {
	font-weight: 700;
}

main .about-section .content .subtitle {
	font-size: 1.5em;
	letter-spacing: 1.3px;
	width: 60%;
	margin-top: 3em;
	margin-bottom: 2.3em;
}

main .about-section .content img {
	width: 32vw;
	height: 32vw;
	float: right;
	margin-left: 3em;
	border-radius: 50%;
	-webkit-shape-outside: circle();
	shape-outside: circle();
}

main .about-section .content .list {
	list-style: none;
	margin-bottom: 2.5em;
}

main .about-section .content .list .item {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
}

main .about-section .content .list .item .list-icon {
	flex-shrink: 0;
	width: 0.7em;
	margin-right: 0.7em;
}

/**
----------- Services Section ------------
**/

main .services-section .content {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

main .services-section .content .texts {
	flex-basis: 45%;
}

main .services-section .content .texts .text {
	font-size: 1.1em;
	letter-spacing: 1.1px;
	line-height: 1.7;
	margin-bottom: 2.3em;
}

main .services-section .content .texts .list {
	list-style: none;
	margin-bottom: 2.5em;
}

main .services-section .content .texts .list .item {
	display: flex;
	align-items: center;
	margin-bottom: 2.5em;
}

main .services-section .content .texts .list .item .list-icon {
	flex-shrink: 0;
	width: 0.7em;
	margin-right: 0.7em;
}

main .services-section .content .panels {
	flex-basis: 45%;
}

main .services-section .cards {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

main .services-section .cards .card {
	width: 27.5vw;
	margin-top: 5vh;
	border-radius: var(--main-border-radius);
	box-shadow: 0 10px 20px -3px rgba(42, 45, 70, 0.1),
		0 0 5px rgba(42, 45, 70, 0.2);
}

main .services-section .cards .card .image {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30vh;
	overflow: hidden;
	border-top-left-radius: var(--main-border-radius);
	border-top-right-radius: var(--main-border-radius);
}

main .services-section .cards .card .image img {
	display: block;
	min-width: 100%;
	min-height: 100%;
}

main .services-section .cards .card .title {
	margin: 4em 0 3em 0;
	text-align: center;
}

main .services-section .cards .card .text {
	padding: 0 5em 5em;
	line-height: 2;
	font-size: 0.95em;
	text-align: center;
}

/**
----------- Commitment Section ------------
**/

main .commitment-section .content {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

main .commitment-section .content .panels,
main .commitment-section .content .texts {
	width: 45%;
}

main .commitment-section .content .texts .text {
	margin-bottom: 7em;
	line-height: 1.8;
	letter-spacing: 1.2px;
}

main .commitment-section .content .texts .image img {
	display: block;
	width: 100%;
}

/**
----------- Choose Us Section ------------
**/

main .choose-us-section {
	background-image: url(../img/choose_us/bg.png);
	background-size: cover;
	background-position: center;
}

main .choose-us-section .content {
	width: 50%;
}

main .choose-us-section .content .text {
	line-height: 1.8;
	font-size: 1.1em;
	letter-spacing: 1.3px;
}

main .choose-us-section .content .text.line-break {
	margin-bottom: 3em;
}

main .choose-us-section .content .text .bold {
	font-weight: 600;
}

main .choose-us-section .content .subtitle {
	margin-bottom: 1em;
}

main .choose-us-section .content .list {
	list-style: none;
}

main .choose-us-section .content .list .item {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
}

main .choose-us-section .content .list .item .list-icon {
	flex-shrink: 0;
	width: 0.7em;
	margin-right: 0.7em;
}

/**
----------- Capacitation Section ------------
**/

main .capacitation-section .cards .card {
	box-shadow: 0 10px 20px -3px rgba(42, 45, 70, 0.1),
		0 0 5px rgba(42, 45, 70, 0.2);
	padding: 2em;
	margin-bottom: 4em;
}

main .capacitation-section .cards .card .title {
	display: flex;
	align-items: center;
	margin-bottom: 2em;
	font-size: 1.2em;
}

main .capacitation-section .cards .card .title .icon {
	flex-shrink: 0;
	width: 0.7em;
	margin-right: 0.7em;
}

main .capacitation-section .cards .card .images {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

main .capacitation-section .cards .card .images .image {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 49%;
	height: 50vh;
	border-radius: 0.5em;
}

main .capacitation-section .cards .card .images .image img {
	display: block;
	min-height: 100%;
	width: 100%;
}

/**
----------- Contact Section ------------
**/

main .contact-section .contact-info {
	margin-bottom: 4em;
	text-align: center;
	letter-spacing: 1.2px;
}

main .contact-section .contact-info .title {
	font-weight: 400;
	font-size: 1.9em;
	margin-bottom: 1em;
}

main .contact-section .contact-info .text {
	font-weight: 600;
	font-size: 1.2em;
}

main .contact-form .form-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

main .contact-form .form-group .input-group {
	width: 48%;
}

main .contact-form .input-group .text {
	display: block;
	font-size: 1.1em;
	letter-spacing: 1.1px;
	margin-bottom: 0.5em;
}

main .contact-form .input-group .input-field {
	width: 100%;
	height: 3.5em;
	padding: 1em;
	border: 1px solid transparent;
	border-radius: 0.3em;
	box-shadow: 0 10px 20px -3px rgba(42, 45, 70, 0.1),
		0 0 5px rgba(42, 45, 70, 0.2);
	transition: border-color 0.2s ease-in-out;
}

main .contact-form .input-group .input-field:active,
main .contact-form .input-group .input-field:focus {
	outline: none;
	border: 1px solid rgba(248, 87, 41, 0.3);
}

main .contact-form .message-group {
	margin-top: 2em;
}

main .contact-form .message-group .input-field {
	min-width: 100%;
	max-width: 100%;
	min-height: 25vh;
	max-height: 25vh;
}

main .contact-form .form-action {
	float: right;
	margin-top: 2em;
	padding: 1.5em 5em;
	font-size: 0.8em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--main-white);
	background-color: var(--main-primary);
	border-radius: var(--main-border-radius);
	cursor: pointer;
	transition: transform 0.2 ease-in-out;
}

main .contact-form .form-action:hover {
	transform: translateY(-2px);
}


/**
----------- Footer Section ------------
**/

footer {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 7.5vh;
	padding: 5vh 0;
	background-color: var(--main-primary);
	color: var(--main-white);
	text-align: center;
}

footer .title {
	margin-bottom: 0.4em;
	font-family: 'Sailors';
	text-transform: uppercase;
	font-size: 5em;
	letter-spacing: 0.2em;
	text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

footer .subtitle {
	margin-bottom: 0.5em;
	font-family: 'Sailors';
	text-transform: uppercase;
	font-size: 2.5em;
	letter-spacing: 0.2em;
	color: var(--main-secondary);
	text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

footer .auxiliary {
	margin-bottom: 4em;
	font-size: 0.9em;
	letter-spacing: 1px;
	text-shadow: 0 2px rgba(0, 0, 0, 0.2);
}

footer .networks {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 7.5%;
	margin-bottom: 4em;
}

footer .networks .link {
	text-decoration: none;
	color: var(--main-white);
	font-size: 2.2em;
}

footer .copy {
	font-size: 1.2em;
	font-weight: 300;
	letter-spacing: 2px;
	margin-bottom: 4em;
}

footer .publc {
	font-size: 0.9em;
	font-weight: 300;
	letter-spacing: 1.7px;
}

footer .publc .link {
	text-decoration: none;
	font-weight: 400;
	color: var(--main-white);
	cursor: pointer;
}

@media screen and (max-width: 780px) {
	body {
		font-size: 11px;
	}

	.container {
		width: 70%;
	}

	main .section-container {
		padding: 7.5vh 0;
	}

	main .section-title h1 {
		margin-bottom: 10vh;
	}

	main .panels {
		margin: 5vh 0;
	}

	/**
	----------- Header ------------
	**/

	.nav-mobile {
		position: fixed;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 4em;
		padding: 0 1.5em;
		background-color: rgba(255, 255, 255, 0.6);
		z-index: 1;
		text-transform: uppercase;
		font-size: 1.2em;
		font-weight: 700;
		color: var(--main-primary);
	}

        .nav-mobile a {
		text-decoration: none;
		color: var(--main-primary);
	}

	header {
		position: fixed;
		height: 100vh;
		background-color: var(--main-white);
		transform: translateX(110%);
		transition: transform 0.25s ease-in-out;
	}

	header.nav-fixed {
		height: 100vh;
		background: var(--main-white);
	}

	header .nav-close {
		position: absolute;
		top: 30px;
		right: 50px;
		display: block;
		text-transform: uppercase;
		font-size: 1.1em;
		font-weight: 600;
	}

	header .navbar {
		flex-flow: column nowrap;
		justify-content: space-between;
		height: 100vh;
		padding: 10vh 0;
	}

	header .navbar .logo {
		width: 60px;
	}

	header .navbar .logo svg {
		width: 60px;
	}

	header .navbar .menu {
		flex-flow: column nowrap;
		justify-content: space-around;
		height: 50%;
	}

	header .navbar .contact {
		flex-flow: column nowrap;
		justify-content: space-around;
		align-items: center;
	}

	header .navbar .menu .item,
	header .navbar .contact .item {
		padding: 1.2em 0;
	}

	header .navbar .menu .item .link,
	header .navbar .contact .item .link {
		font-size: 1.1em;
	}

	header .navbar .contact .social-items .item {
		margin: 0 1.2em;
	}

	/**
	----------- Hero ------------
	**/

	main .hero-section .hero-content {
		height: auto;
	}

	main .hero-section .cards {
		flex-flow: column nowrap;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
		margin-top: 7vh;
	}

	main .hero-section .cards .card {
		height: 35vh;
		width: 100%;
		margin-bottom: 3em;
	}

	/**
	----------- About ------------
	**/

	main .about-section .content img {
		width: 50vw;
		height: 50vw;
	}

	main .about-section .content .subtitle {
		font-size: 1em;
		width: 90%;
	}

	/**
	----------- Services ------------
	**/

	main .services-section .content {
		flex-flow: column nowrap;
	}

	main .services-section .cards {
		flex-flow: column;
		justify-content: flex-start;
		align-items: center;
	}

	main .services-section .cards .card {
		width: 90%;
		margin-top: 7.5vh;
	}

	/**
	----------- Commitment Section ------------
	**/

	main .commitment-section .content {
		flex-flow: column;
		justify-content: flex-start;
		align-items: center;
	}

	main .commitment-section .content .panels,
	main .commitment-section .content .texts {
		width: 100%;
	}

	/**
	----------- Choose Us Section ------------
	**/

	main .choose-us-section {
		background-image: none;
		background-color: #90d2f9;
	}

	main .choose-us-section .content {
		width: 100%;
	}

	/**
	----------- Capacitation Section ------------
	**/

	main .capacitation-section .cards .card .title {
		display: flex;
		align-items: center;
		margin-bottom: 2em;
		font-size: 1.2em;
	}

	main .capacitation-section .cards .card .title .icon {
		flex-shrink: 0;
		width: 0.7em;
		margin-right: 0.7em;
	}

	main .capacitation-section .cards .card .images {
		flex-flow: column nowrap;
		justify-content: space-between;
		align-items: center;
	}

	main .capacitation-section .cards .card .images .image {
		width: 90%;
		height: 30vh;
		margin: 3em 0;
	}

	/**
	----------- Contact Section ------------
	**/

	main .contact-form {
		margin-top: 8em;
	}

	/**
	----------- Footer Section ------------
	**/

	footer .networks {
		width: 20%;
	}

	footer .copy {
		width: 60%;
	}
}