*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--color-white: #fff;
	--color-white-100: #efefef;
	--color-yellow: #ffdb5d;
	--color-green: #008c44;
	--color-green-dark: #056232;
	--color-gray: #333;
	--color-black: #2e2e2e;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	/* font-family: "Montserrat", sans-serif; */
	font-family: "Inter", sans-serif;
	font-style: normal;
	margin: 0;
	background: linear-gradient(
		180deg,
		var(--color-white-100) 0%,
		rgba(239, 239, 239, 0) 100%
	);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
	-ms-interpolation-mode: bicubic;
	display: inline-block;
	vertical-align: middle;
}

.ff--roboto-con {
	font-family: "Roboto Condensed", sans-serif;
}

.ff--roboto {
	font-family: "Roboto", sans-serif;
}

.customContainer {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
}

@media only screen and (min-width: 1024px) {
	.customContainer {
		max-width: 1440px;
		padding: 0 20px;
	}
}

@media only screen and (min-width: 1280px) {
	.customContainer {
		padding: 0 60px;
	}
}

.customButton {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 30px;
	width: max-content;
	height: 44px;
	padding: 0 16px;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px;
	border-radius: 32px;
	text-decoration: none;
	cursor: pointer;
}

.customButton--white {
	color: var(--color-green);
	border: 1px solid var(--color-green);
	background-color: var(--color-white);
}

.customButton--yellow {
	color: var(--color-green);
	border: 1px solid var(--color-yellow);
	background-color: var(--color-yellow);
}

.customButton--green {
	min-width: 180px;
	color: var(--color-white);
	border: 1px solid var(--color-green);
	background-color: var(--color-green);
}

.customButton--center {
	margin: 0 auto;
}

/* Headings */
.heading--90 {
	font-size: 48px;
	font-style: normal;
	font-weight: 800;
	line-height: 52px;
	letter-spacing: -0.48px;
}

.heading--48 {
	font-size: 36px;
	font-style: normal;
	font-weight: 800;
	line-height: 38px;
	letter-spacing: -0.72px;
}

.heading--30 {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.heading-32 {
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: -0.64px;
}

.heading--32 {
	font-family: "Roboto Condensed";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 2.4px;
	text-transform: uppercase;
}

.heading--28 {
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.heading--24 {
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.12px;
}

.heading--20 {
	font-family: "Roboto Condensed";
	color: #333e33;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.05px;
}

.heading--16 {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.heading--14 {
	font-family: "Roboto", sans-serif;
	color: #333e33;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.035px;
}

@media only screen and (min-width: 1024px) {
	.heading--90 {
		font-size: 90px;
		line-height: 90px;
		letter-spacing: -0.9px;
	}

	.heading--50 {
		font-size: 50px;
		line-height: normal;
	}

	.heading--48 {
		font-size: 48px;
		line-height: 50px;
		letter-spacing: -0.96px;
	}

	.heading--32 {
		font-size: 32px;
		line-height: 42px;
		letter-spacing: 3.84px;
	}

	.heading--30 {
		font-size: 30px;
		font-weight: 600;
	}

	.heading--25 {
		font-size: 25px;
	}

	.heading--28 {
		font-size: 28px;
		line-height: 32px;
	}
}

.fw--400 {
	font-weight: 400;
}

.fw--500 {
	font-weight: 500;
}

.color--white {
	color: var(--color-white);
}

.color--yellow {
	color: var(--color-yellow);
}

.color--green {
	color: var(--color-green);
}

.color--green-dark {
	color: var(--color-green-dark);
}

.color--gray {
	color: var(--color-gray);
}

.color--black {
	color: var(--color-black);
}

.visibleDesktop {
	display: none;
}

@media only screen and (min-width: 1024px) {
	.visibleDesktop {
		display: block;
	}

	.visibleMobile {
		display: none;
	}
}

.bodyBckg {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
}



/* Header */
.sectionHeader {
	position: relative;
	width: 100%;
	background-color: #ffffff00;
	z-index: 2;
	transition: background 0.4s ease;
}

.sectionHeader__grid {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 10px 0;
}

.sectionHeader__logo {
	width: 60px;
}

@media only screen and (min-width: 1024px) {
	.sectionHeader {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 11;
	}

	.sectionHeader.scrolled {
		background-color: rgba(255, 255, 255, 0.8);
	}

	.sectionHeader__grid {
		justify-content: space-between;
		padding: 10px 0;
	}

	.sectionHeader__logo {
		width: 100px;
	}
}

/* sectionHero */
.sectionHero {
	margin-top: -100px;
}

.sectionHero__wrapper {
	position: relative;
}

.sectionHero__img img {
	width: 100%;
	height: auto;
}

.sectionHero__wrapper .customContainer {
	position: absolute;
	top: 0;
	padding: 150px 20px 0;
}

.sectionHero__content {
	position: relative;
	display: grid;
	row-gap: 18px;
	width: 100%;
	max-width: 382px;
	margin: 0 auto;
	text-align: center;
}

.sectionHero__content .heading--25 {
	max-width: 500px;
}

.sectionHero .customButton {
	margin: 0 auto;
}

@media only screen and (min-width: 1024px) {
	.sectionHero {
		margin-top: 0;
	}

	.sectionHero__wrapper {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.sectionHero__content {
		row-gap: 18px;
		max-width: 800px;
		margin: 0;
		text-align: left;
	}

	.sectionHero__wrapper .customContainer {
		top: 60%;
		left: 50%;
		transform: translate(-50%, -50%);
		padding: 0 20px;
	}

	.sectionHero .customButton {
		margin: 0;
	}
}

@media only screen and (min-width: 1280px) {
	.sectionHero__wrapper .customContainer {
		padding: 0 60px;
	}
}

/* sectionForm */
.sectionForm__wrapper {
	position: relative;
}

.sectionForm__grid {
	display: grid;
	text-align: center;
	row-gap: 42px;
}

.sectionForm__form {
	width: 100%;
	height: 100%;
	margin-top: 0;
	padding: 30px 16px;
	background: var(--color-white);
	box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	z-index: 11;
	/* background-color: var(--color-white-100); */
}

.sectionForm__form-title {
	display: grid;
	row-gap: 8px;
	padding-bottom: 32px;
}

.sectionForm__submit {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0 0;
}

.sectionForm__form .customButton {
	width: 100%;
	max-width: 250px;
	margin: 0 auto;
	padding: 0 32px;
}

.sectionForm__acceptance {
	font-family: "Open Sans", sans-serif;
	color: var(--color-gray);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}

.sectionForm__acceptance a {
	color: var(--color-green);
	font-weight: 600;
	text-decoration-line: underline;
}

.sectionForm__submit .back {
	display: flex;
	flex-direction: row;
	background: transparent;
	border: 0;
	column-gap: 6px;
	align-items: center;
	padding: 0;
	cursor: pointer;
}

.sectionForm__content iframe {
	border-radius: 12px;
	height: 300px;
}

.sectionForm__content {
	margin-top: -100px;
}

.sectionFormBottom {
	margin-bottom: 90px;
}

.sectionFormBottom .sectionForm__form {
	margin-top: 0;
}

.sectionFormBottom .sectionForm__grid {
	display: block;
}

.sectionFormBottom .sectionForm__form-title {
	text-align: center;
}

@media only screen and (min-width: 1024px) {
	.sectionForm__grid {
		display: grid;
		grid-template-columns: 4fr 3fr;
		column-gap: 24px;
		text-align: left;
	}

	.sectionForm__content iframe {
		height: 500px;
	}

	.sectionForm__content {
		margin-top: -30px;
	}

	.sectionForm__form {
		position: relative;
		height: auto;
		margin-top: -30px;
		padding: 40px 32px;
		border-radius: 16px;
		overflow: inherit;
		background-color: var(--color-white);
		z-index: 1;
	}

	.sectionForm__acceptance {
		padding-top: 0px;
	}

	.sectionForm__submit {
		display: block;
	}

	.sectionForm__form .customButton {
		margin: 0 auto;
	}
}

@media only screen and (min-width: 1280px) {
	.sectionForm__content,
	.sectionForm__form {
		margin-top: -80px;
	}
}

/* Form */
.form__group {
	display: grid;
	gap: 12px;
	margin-bottom: 12px;
}

.form__group-full .form__input {
	grid-column: 2 span;
}

.form__group label {
	display: block;
	width: 100%;
	font-size: 12px;
	text-align: left;
	font-style: normal;
	font-weight: 600;
	line-height: 16px;
	margin-bottom: 5px;
}

.form__input input[type="text"],
.form__input input[type="email"] {
	font-family: "Roboto", sans-serif;
	width: 100%;
	height: 40px;
	padding: 0 20px;
	color: var(--color-gray);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.08px;
	border: 0;
	border-radius: 6px;
	border: 1px solid #efecec;
}

.form__group select {
	font-family: "Roboto", sans-serif;
	display: block;
	width: 100%;
	height: 40px;
	padding: 0 20px;
	color: var(--color-gray);
	font-size: 16px;
	letter-spacing: 0.08px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	border: 0;
	border: 1px solid #efecec;
	border-radius: 6px;
	background-image: url(../img/arrow-down-green.png);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: calc(100% - 8px) center;
	appearance: none;
	-webkit-appearance: none;
	-ms-progress-appearance: none;
	-moz-appearance: none;
	background-color: var(--color-white);
}

.customError select {
	border-bottom: 1px solid #dc3545;
}

.form__group-error {
	display: flex;
	align-items: center;
	column-gap: 8px;
	padding: 4px 0 0;
	color: #dc3545;
	font-size: 12px;
	font-style: italic;
	font-weight: 400;
	line-height: 16px;
}

::-webkit-input-placeholder {
	font-family: "Roboto", sans-serif;
	color: #6c757d;
	font-size: 16px;
	font-weight: 400;
}

::-moz-placeholder {
	font-family: "Roboto", sans-serif;
	color: #6c757d;
	font-size: 16px;
	font-weight: 400;
}

:-ms-input-placeholder {
	font-family: "Roboto", sans-serif;
	color: #6c757d;
	font-size: 16px;
	font-weight: 400;
}

:-moz-placeholder {
	font-family: "Roboto", sans-serif;
	color: #6c757d;
	font-size: 16px;
	font-weight: 400;
}

@media only screen and (min-width: 1024px) {
	.form__group {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
		margin-bottom: 18px;
	}

	.form__group select {
		background-color: transparent;
	}
}

/* Icons */
.customIconCheck {
	display: inline-block;
	width: 14px;
	height: 13px;
	background-image: url(../img/check-circle.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

/* sr-only */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Swiper */
.sectionCarouselCards .swiper-button-prev:after,
.sectionCarouselCards .swiper-button-next:after {
	display: none;
}

.sectionCarouselCards .swiper-button-prev,
.sectionCarouselCards .swiper-button-next {
	position: relative;
	top: inherit;
	display: inline-block;
	width: 46px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	left: inherit;
	right: inherit;
	background-color: transparent;
}

.swiper-button-prev {
	background-image: url(../img/carousel/icon-prev.svg);
}

.swiper-button-next {
	background-image: url(../img/carousel/icon-next.svg);
}

/* sectionFooter */
.sectionFooter {
	position: relative;
	background-color: var(--color-white);
}

.sectionFooter__wrapper {
	padding: 70px 0 36px;
}

.sectionFooter__grid {
	display: grid;
	justify-content: center;
	row-gap: 20px;
}

.sectionFooter__logo {
	display: grid;
	row-gap: 20px;
}

.sectionFooter__logo img {
	width: 144px;
	margin: 0 auto;
}

.sectionFooter__logo a {
	text-decoration: none;
}

.sectionFooter__term {
	display: flex;
	flex-direction: column;
	text-align: center;
	row-gap: 10px;
}

.sectionFooter__term span {
	display: none;
}

.sectionFooter__social {
	display: grid;
	row-gap: 18px;
	justify-content: center;
	column-gap: 26px;
}

.sectionFooter__social a {
	text-decoration: none;
}

.sectionFooter__social div {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 30px;
}

.visibleMobile .sectionFooter__social {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.visibleMobile .sectionFooter__social img {
	width: auto;
}

.sectionFooter__social .logo {
	position: absolute;
	top: -116px;
	left: 50%;
	width: 78px;
	margin-left: -40px;
	height: auto;
}

.sectionFooter a {
	color: var(--color-black);
	text-decoration: none;
}

.sectionFooter .copy {
	padding: 23px 0;
	background-color: rgba(233, 238, 242, 0.5);
}

.sectionFooter .copy p {
	color: #333e33;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.sectionFooter__grid img {
	margin-bottom: 12px;
}

@media only screen and (min-width: 1024px) {
	.sectionFooter__grid {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	.sectionFooter__logo {
		margin-top: -150px;
	}

	.sectionFooter__logo img {
		width: 144px;
		margin: 0;
	}

	.sectionFooter__term {
		display: flex;
		flex-direction: row;
		text-align: left;
		column-gap: 10px;
	}

	.sectionFooter__term span {
		display: inline-block;
	}
}

/* Custom */
.alert {
	position: relative;
	padding: 1rem 1rem;
	margin: 1rem 0 0;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}
.alert.alert-danger {
	color: #842029;
	background-color: #f8d7da;
	border-color: #f5c2c7;
}
.alert.alert-info {
	color: #084298;
	background-color: #cfe2ff;
	border-color: #b6d4fe;
}
.alert.alert-success {
	color: #0f5132;
	background-color: #d1e7dd;
	border-color: #badbcc;
}

.sectionTextImage {
	padding-top: 40px;
	padding-bottom: 80px;
}

.sectionTextImage__info h2 {
	margin-bottom: 14px;
	text-align: center;
}

.sectionTextImage__info p {
	text-align: center;
}

.sectionTextImage__info p:last-child {
	text-align: left;
}

.sectionTextImage__info ul {
	margin: 30px 0;
}

.sectionTextImage__img {
	margin-top: 42px;
}

.sectionTextImage__img img {
	width: 100%;
	height: auto;
}

.sectionContact {
	background-color: #fed141;
	padding: 90px 0 21px;
}

@media only screen and (min-width: 1024px) {
	.sectionTextImage__grid {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		justify-content: center;
		column-gap: 24px;
		padding: 84px 0 0;
		text-align: left;
	}
	
	.sectionTextImage__grid p {
        height: 100%;
        font-size: 28px;
    }

	.sectionTextImage__img {
		margin-top: 0;
		padding: 0 30px;
	}

	.sectionTextImage__info h2 {
		margin-bottom: 14px;
		text-align: left;
	}

	.sectionTextImage__info p {
		text-align: left;
	}

	.sectionFooter__social {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.sectionFooter__social .logo {
		top: initial;
		bottom: -21px;
		left: 0;
		width: 78px;
	}

	.sectionContact {
		padding: 21px 0;
	}
}

/* sectionCarouselCards */
.sectionCarouselCards {
	margin-bottom: 110px;
}

.sectionCarouselCards__title {
	text-align: center;
	margin-bottom: 30px;
}

.sectionCarouselCards__img {
	width: 100%;
}

.sectionCarouselCards__slide {
	border: 1px solid #e9eef2;
	border-radius: 12px;
}

.sectionCarouselCards__info {
	background-color: #fff;
	padding: 12px 24px 30px;
	border-radius: 0 0 12px 12px;
}

.sectionCarouselCards__info .title {
	margin-bottom: 12px;
}

.sectionCarouselCards__info ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
	padding: 18px 0;
}

.sectionCarouselCards__info li {
	font-family: "Roboto", sans-serif;
	display: flex;
	flex-direction: column;
	row-gap: 6px;
	color: #6c757d;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: 14px;
	letter-spacing: 0.025px;
	list-style: none;
}

.sectionCarouselCards__info li img {
	margin: 0 auto;
}

.sectionCarouselCards__info li span {
	width: 70px;
	text-align: center;
	margin: 0 auto;
}

.sectionCarouselCards__info .price {
	margin-bottom: 12px;
}

.sectionCarouselCards__info .price span {
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.sectionCarouselCards__info .price + p {
	margin-bottom: 12px;
}

.sectionCarouselCards__info a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Roboto", sans-serif;
	width: 100%;
	max-width: 281px;
	height: 48px;
	margin: 0 auto;
	color: #00843d;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 18px;
	border: 1px solid #00843d;
	border-radius: 50px;
	letter-spacing: -0.098px;
	text-decoration: none;
}

.sectionCarouselCards .swiper-pagination-bullet {
	width: 30px;
	height: 3px;
	border-radius: 0;
	opacity: 1;
	background: rgba(0, 132, 62, 0.3);
}

.sectionCarouselCards .swiper-pagination {
	bottom: -30px !important;
}

.sectionCarouselCards .swiper-pagination-bullet-active {
	background: var(--color-green);
}

.sectionForm__form .customButton.disabled {
	opacity: 0.7;
	pointer-events: none;
}

@media only screen and (min-width: 1024px) {
	.sectionCarouselCards .swiper-pagination-bullet {
		width: 60px;
	}
}



@media only screen and (max-width: 769px) {
    .sectionHero__wrapper .customContainer{
        position: relative;
        top: 0;
        padding: 10px 20px 50px;
        background: #f5f3f2;
    }
    .referido_banner_white_text, .sectionForm__acceptance > .form__input {
        color: #212529 !important;
    }
}








