@import "typography.css";

:root {
	--primary: #ef8026;
	--info: #3041c4;
	--white: #ffffff;
	--black: #212121;
	--text-strong: #2c2e30;
	--text-light: #54565a;
	--dark-invert: #c9cdd5;
	--grey: #9fa3a7;
	--base-invert: #151c32;
	--steel: #7e8085;
	--base: #fffaf1;
	/* --base: #f9fafb; */
	--WorkSans: "Work Sans";
}

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

ul,
ol {
	list-style: none;
}

a {
	color: var(--info);
	font-size: 18px;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	line-height: 1.44;
}

body {
	font-family: "Work Sans", sans-serif;
	font-size: 16px;
	color: #252227;
}

html,
body {
	height: 100%;
}

main {
	padding-top: 64px;
}

h1,
h2,
h3 {
	line-height: 0.88;
}

@media (min-width: 1024px) {
	main {
		padding-top: 129px;
	}
}

.p-top {
	padding-top: 4rem;
}

hr {
	margin: 0;
}

.d-flex {
	display: flex;
}

@media (min-width: 769px) {
	.d-none-769 {
		display: none;
	}
}

.justify-content-center {
	justify-content: center;
}

.justify-content-between {
	justify-content: space-between;
}

.justify-content-around {
	justify-content: space-around;
}

.flex-wrap {
	flex-wrap: wrap;
}

.text-center {
	text-align: center;
}

.text-primary {
	color: var(--primary);
}

.text-steel {
	color: var(--steel);
}

.flecha {
	margin-top: 7rem;
}
.p-relative {
	position: relative;
}

.h1-web {
	font-size: 80px;
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	line-height: 0.98;
	letter-spacing: -0.5px;
	color: var(--white);
}

.Text-Style {
	font-size: 34px;
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	color: var(--text-strong);
}

.title-primary {
	font-size: 34px;
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.35;
	letter-spacing: normal;
	color: var(--text-strong);
}
@media (max-width: 576px) {
	.title-primary {
		font-size: 22px;
	}
}

.title-secondary {
	font-size: 16px;
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	color: var(--text-light);
}
.title-principal {
	font-size: 64px;
	font-weight: bold;
	color: var(--text-strong);
}
.title-26-primary {
	font-size: 26px;

	font-weight: bold;
	color: var(--primary);
}

.h3-web {
	font-size: 24px;
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	color: var(--text-strong);
}
.h1-description-web {
	font-size: 24px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.42;
	letter-spacing: normal;
	color: var(--dark-invert);
}

.p-30-web {
	font-size: 24px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.25;
	letter-spacing: normal;
	color: var(--text-light);
}

.link {
	color: var(--info);
	font-size: 18px;
	font-stretch: normal;
	font-style: normal;
	font-weight: bold;
	letter-spacing: normal;
	line-height: 1.44;
	text-decoration: underline;
}

.p-web {
	font-size: 16px;
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.5;
	letter-spacing: normal;
	color: var(--text-light);
}
.p-22 {
	font-size: 22px;

	color: var(--text-strong);
	line-height: 1.64;
}
.p-16-web {
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: 1.5;
	letter-spacing: normal;
	color: var(--text-light);
}
.p-white {
	color: var(--white);
}
.f-bold {
	font-weight: bold !important;
}
.g-width {
	width: 100% !important;
}
.m-0 {
	margin: 0 !important;
}
.m-0-auto {
	margin: 0 auto;
}
.mx-2 {
	margin-right: 2rem;
	margin-left: 2rem;
}
.px-2 {
	padding-right: 2rem;
	padding-left: 2rem;
}
.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.pt-10 {
	padding-top: 10 !important;
}
/*botones*/
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn-primary {
	width: 160px;
	height: 48px;
	border-radius: 2px;
	background-color: var(--primary);
	color: var(--white);
	font-size: 18px;
	font-weight: bold;
	font-style: normal;
	text-align: center;
}
.btn-primary:hover {
	color: white;
	background-color: #f29a54;
}

.btn-secondary {
	color: var(--primary);
	width: 220px;
	height: 48px;
	line-height: 48px;;
	border-radius: 2px;
	background-image: linear-gradient(
			to top,
			rgba(255, 255, 255, 0.5),
			rgba(255, 255, 255, 0)
		),
		linear-gradient(to bottom, var(--white), var(--white));
	font-size: 18px;
	font-weight: bold;
	font-style: normal;
}
.btn-secondary:hover {
	color: var(--primary);
	background-image: linear-gradient(
			to top,
			rgba(255, 255, 255, 0.5),
			rgba(255, 255, 255, 0)
		),
		linear-gradient(
			to bottom,
			rgba(255, 255, 255, 0.8),
			rgba(255, 255, 255, 0.8)
		);
}

.btn-info {
	height: 48px;
	border-radius: 2px;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.1),
		inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
	background-blend-mode: overlay, normal;
	background-image: linear-gradient(
			to top,
			rgba(255, 255, 255, 0.5),
			rgba(255, 255, 255, 0)
		),
		linear-gradient(to bottom, #3040c4, #3040c4);
	color: var(--white);
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
}
.btn-info:hover {
	background-image: linear-gradient(
			to top,
			rgba(255, 255, 255, 0.5),
			rgba(255, 255, 255, 0)
		),
		linear-gradient(to bottom, #5661c0c2, #5661c0);
}

/*lineas*/
.line-primary {
	background-color: var(--primary);
	height: 2px;
	width: 389px;
}
.line-base {
	background-color: #c2c2c2b4;
	height: 0.5px;
}

.g-bb--gray {
	border-bottom: solid 1px rgba(200, 200, 200, 0.5);
}

.g-br--gray {
	border-right: solid 1px rgba(200, 200, 200, 0.5);
}

/*background*/
.background-base {
	background-color: var(--base);
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.background-info {
	background-color: var(--info);
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.background-white {
	background-color: var(--white);
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.background-base-invert {
	background-color: var(--base-invert);
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.background-primary {
	background-color: var(--primary);
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.pt-0-5 {
	padding-top: 0.5rem;
}
.pb-0-5 {
	padding-bottom: 0.5rem;
}
.pt-1 {
	padding-top: 1rem;
}
.pb-1 {
	padding-bottom: 1rem;
}
.pt-2 {
	padding-top: 2rem;
}
.pb-2 {
	padding-bottom: 2rem;
}
.pt-3 {
	padding-top: 3rem;
}
.pb-3 {
	padding-bottom: 3rem;
}
.pt-4 {
	padding-top: 4rem;
}
.pb-4 {
	padding-bottom: 4rem;
}
.pt-5 {
	padding-top: 5rem;
}
.pb-5 {
	padding-bottom: 5rem;
}
.pt-6 {
	padding-top: 6rem;
}
.pb-6 {
	padding-bottom: 6rem;
}
.pt-7 {
	padding-top: 7rem;
}
.pb-7 {
	padding-bottom: 7rem;
}
.pb-8 {
	padding-bottom: 8rem;
}

.header-space {
	padding-top: 30px;
}

.h-100 {
	height: 100%;
}

/*contenedor*/
.contenedor {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (min-width: 768px) {
	.contenedor {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.contenedor {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.contenedor {
		max-width: 1200px;
	}
}

@media screen and (min-width: 1024px) {
	.navbar,
	.navbar-menu,
	.navbar-start,
	.navbar-end {
		align-items: center;
	}
	.header-space {
		padding-top: 80px;
	}
}

/*estilos del menu principal*/
a.navbar-item:hover {
	background-color: inherit;
	color: var(--primary);
}
a.navbar-item {
	background-color: inherit;
	color: #2b292d;
	font-weight: normal;
}

.navbar,
.navbar-brand {
	height: 100%;
	align-items: center;
}
/*top header*/
.top-header {
	display: none;
}
@media (min-width: 1024px) {
	.top-header {
		padding: 3px 0;
		display: block;
	}
	.top-header__text {
		font-size: 12px;
		color: var(--white);
	}

	.top-header__text a {
		font-size: inherit;
		color: var(--white);
	}

	.top-header .contenedor {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.top-header img {
		width: 26px;
		margin-right: 16px;
	}
}

/*termino de top header*/
.header {
	height: 64px;
	box-shadow: 0 4px 16px 0 rgba(44, 50, 65, 0.08);
	background-color: var(--white);
	position: fixed;
	width: 100%;
	z-index: 2;
}

.navbar__logo {
	margin-left: 16px;
	width: 120px;
	height: 46.4px;
}

.navbar-burger {
	height: 100%;
	margin-right: 20px;
	width: 18px;
}
.navbar-link:not(.is-arrowless)::after {
	display: none;
}
@media (max-width: 1024px) {
	.navbar-dropdown {
		display: none;
	}
}

@media (min-width: 1024px) {
	.navbar-menu {
		margin-right: 2rem;
	}
	.navbar-link:not(.is-arrowless)::after {
		display: block;
	}
	.header {
		height: auto;
	}
	.navbar,
	.navbar-brand {
		height: 90px;
	}

	.navbar__logo {
		height: 60px;
		width: 159px;
		margin-left: 2rem;
	}
}

.navbar-item.has-dropdown {
	margin-right: 2.5rem;
}
/*estilos para el menu desplegable*/
@media (max-width: 1023px) {
	.navbar-end {
		margin-left: 16px;
	}
	.navbar-item {
		font-size: 22px;
		line-height: 46px;
		padding: 0;
	}

	.navbar-btn .btn-primary {
		background-color: initial;
		font-size: 22px;
		font-weight: bold;
		color: var(--primary);
		padding: 0;
		justify-content: end;
	}
	.navbar-menu.is-active {
		height: calc(100vh - 64px);
	}
}

/*estilos del footer*/
.footer__br {
	display: none;
}

.footer-menu {
	font-size: 18px;
	line-height: 1.67;
	letter-spacing: normal;
	margin: 18px 0 30px 0;
}
.footer-menu__item {
	margin-bottom: 5px;
}

.footer-menu__link {
	color: rgba(84, 86, 90, 0.6);
}

.end-footer__link {
	color: rgba(84, 86, 90, 0.6);
}

.end-footer__menu {
	display: flex;
}
.end-footer__item {
	margin-right: 19px;
}

.end-footer {
	margin-top: 14px;
	margin-bottom: 24px;
}

.footer__container-icon {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 30px;
}
.footer__title-icon {
	font-size: 18px;
	line-height: 25px;
	text-align: center;
}

.footer__title-icon .text-primary {
	font-size: 20px;
}

.section-footer__container-max {
	margin-top: 40px;
}

.footer__icon {
	margin-bottom: 20px;
}

.footer-menu__title {
	font-size: 22px;
}
.footer-menu__container {
	padding-right: 25px;
}
@media (max-width: 576px) {
	.footer__br {
		display: block;
	}
	.section-footer__text {
		display: none;
	}

	.footer__container-description {
		margin-bottom: 31px;
		text-align: center;
	}

	.footer-menu {
		width: 265px;
		height: 100%;
	}

	.end-footer {
		margin-top: 14px;
		margin-bottom: 24px;
	}
	.end-footer__container-menu--2 {
		margin-top: 30px;
	}
}
@media (min-width: 576px) {
	.section-footer__container {
		display: flex;
		justify-content: space-around;
		margin-top: 20px;
	}
	.end-footer__container {
		display: flex;
		justify-content: space-between;
	}
	.section-footer__text {
		display: none;
	}
}
@media (min-width: 992px) {
	.section-footer__text {
		display: block;
		width: 300px;
	}

	.section-footer__container-max {
		display: flex;
		justify-content: space-between;
	}
	.section-footer__container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.footer__container-icon {
		justify-content: flex-start;
		flex-direction: row;
	}
	.footer__title-icon {
		text-align: left;
	}

	.footer__icon {
		margin-right: 15px;
		margin-bottom: 0px;
	}
}
/*termino del footer*/
/*seccion trabajemos juntos*/

.trabajemos__text {
	margin: 20px 0;
}
@media (min-width: 768px) {
	.trabajemos__text {
		margin: 30px 0;
		width: 50%;
		margin-right: 51px;
		font-size: 22px;
		line-height: 1.14;
	}
	.trabajemos-container {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

.check-list {
	list-style: none;
}
.check-list li {
	position: relative;
	padding-left: 2em;
	margin-bottom: 16px;
}
.check-list li:before {
	content: ""; /* placeholder for the SVG */
	position: absolute;
	left: 0; /* place the SVG at the start of the padding */
	width: 3em;
	height: 2em;
	background: url("img/svg/check-mark.svg") no-repeat;
}

.g-recaptcha {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.g-recaptcha iframe {
	height: 78px;
}
