/*** RESET ***/
:root{
	--redColor: #ff3366;
	--orangeColor: #ff8c00;
	--yellowColor: #ffc600;
	--purpleColor: #9366dd;
	--greenColor: #89f262;
	--blueColor: #3589fc;
	--darkBlueColor: #033363;
	--gray100: #f4f5fb;
	--gray200: #dee7eb;
	--gray300: #939fac;
	--gray400: #596068;
	--gray500: #222250;
	--primaryFont: "Kanit", sans-serif;
	--secondaryFont: "Playfair Display", serif;
	--swiper-pagination-color:var(--accentColor);
}
 
html,body{
	margin:0;
	padding:0;
	font-size:16px;
	line-height:100%;
}

body{
	line-height: 100%;
	font-family: var(--primaryFont);
	color: var(--gray500);
	background: #FFF;
}

*{
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5{
	width:100%;
	display: inline-block;
	margin: 0 0 10px 0;
	line-height: 100%;
}
p{
	display: inline-block;
	width: 100%;
	font-size: 16px;
	margin: 0 0 20px 0;
	line-height: 150%;
}
ul, ol{
	font-size: 16px;
	line-height: 150%;
	margin: 0 0 20px 0;
}
p:last-child,
ul:last-child,
ol:last-child{
	margin-bottom: 0;
}
img{
	max-width: 100%;
	border:none;
	outline:none;
}
a{
	color: currentColor;
}
a, a:hover{
	text-decoration:none
}
.svg_icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
}
input,
select,
textarea,
button{
	font-family: var(--primaryFont);
	outline: none;
}
::-webkit-scrollbar {
	width: 5px;
}
::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
}

/*** MISC ***/
#page_wrapper{
	float:left;
	width:100%;
	overflow: hidden;
	padding-top: 90px;
}
.button{
	--btnColor: var(--blueColor);
	--btnColorHover: var(--darkBlueColor);
	--btnTextColor: #FFF;
	display: inline-block;
	position: relative;
	background: var(--btnColor);
	color: var(--btnTextColor);
	border: none;
	cursor: pointer;
	font-size: 16px;
	border-radius: 0;
	padding: 10px 30px;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.5s;
}
.button:hover{
	background: var(--btnColorHover);
}
.button.ghost_button{
	background: none;
	border:1px solid var(--btnColor);
	color: var(--btnColor);
}
.button.ghost_button:hover{
	background: var(--btnColor);
	color: var(--btnTextColor);
}
.big_button{
	padding: 20px 40px;
	font-size: 20px;
}

/*** BUTTON COLORS ***/
.orange_button{
	--btnColor: var(--orangeColor);
	--btnColorHover: var(--orangeColor);
	--btnTextColor: #FFF;
}

.section_title{
	font-weight: normal;
    font-size: 30px;
    color: currentColor;
    margin-bottom: 20px;
    font-family: var(--secondaryFont);
}
.section_subtitle{
	font-size: 20px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--redColor);
}

/*** GRAVITY FORMS ***/
.gform_description:empty{
	display: none;
}

/*** HEADER ***/
#header{
	position: fixed;
	top:0;
	left:0;
	color: var(--gray500);
	background: #FFF;
	transition: all 0.5s;
	z-index: 99;
}
.admin-bar #header{
	top:32px;
}
.float_active #header{
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
#header_main{
	height: 90px;
}
#header_logo{
	display: inline-block;
	width:180px;
}

/*** HEADER MENU ***/
#header_menu{
	list-style: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
}
.button_li{
	padding: 10px 20px;
	background: var(--redColor);
	color: #FFF;
	border-radius: 5px;
}

/*** MOBILE MENU ***/

/*** FOOTER ***/
#footer{
	padding: 30px 0;
	background: var(--gray500);
	color: #FFF;
	font-size: 12px;
	font-weight: 300;
	text-align: center;
}
#whatsapp_trigger{
	position:fixed;
	bottom:10px;
	right:10px;
	width:90px;
	height:90px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	font-size:50px;
	color:#FFF;
	background:#128c7e;
	border-radius:50%;
	z-index:999;
}


/*** LANDING SECTION ***/
.landing_section{
	padding: 150px 0;
    color: #FFF;
    background-size: cover;
    background-position: center;
}
#gracias{
	padding: 250px 0;
}
.landing_section::after{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, var(--darkBlueColor), var(--darkBlueColor));
    opacity: 0.5;
}
.landing_section .container{
	z-index: 2;
}
.landing_section h1{
	font-size: 45px;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2), 2px 2px 0 rgba(0, 0, 0, 0.2), 3px 3px 0 rgba(0, 0, 0, 0.2);
}
.landing_section .content_wrapper p{
	font-size: 22px;
	font-weight: 300;
}
.landing_form_section .form_wrapper{
	padding: 40px 25px;
    background: #b31746;
    border-radius: 20px;
}
.gform_wrapper.gravity-theme .gform_footer input{
	margin:0 !important;
}
.gform_wrapper.gravity-theme .gform_footer{
	padding-bottom:0 !important;
}
.landing_form_section .gform_wrapper.gravity-theme input[type=text], 
.landing_form_section .gform_wrapper.gravity-theme input[type=email], 
.landing_form_section .gform_wrapper.gravity-theme input[type=tel], 
.landing_form_section .gform_wrapper.gravity-theme textarea {
    border-radius: 5px;
    padding: 0 15px !important;
    line-height: 55px !important;
    font-size: 18px !important;
    border: none;
}
.landing_form_section ul{
	font-size: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
	line-height: 120%;
}
.landing_form_section::after{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.2);
}


/*** STATS SECTION **/
.stats_section{
	background: var(--gray100);
}
.stats_item{
	margin-top: -50px;
	padding: 40px 30px 30px;
	background: #FFF;
	border-radius: 20px;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}
.stats_item::before{
	content:'';
	position: absolute;
	top: -25px;
	left:calc(50% - 25px);
	width: 50px;
	height: 50px;
	background: url(../images/check.svg) no-repeat center center/contain;
}
.stats_item_number{
	font-size: 35px;
	font-weight: 600;
	color: var(--redColor);
	line-height: 100%;
	margin-bottom: 10px;
}
.stats_item_title{
	font-size: 20px;
	color: var(--gray400);
	line-height: 100%;
}

/*** CTA ***/
.cta_section{
	padding: 80px 0 60px;
	background: var(--gray100);
}
.cta_section .section_title{
	padding:20px;
	background:var(--redColor);
	color:#FFF;
}
/*** LOGOS ***/
.logos_grid_section{
	padding: 80px 0;
}
/*** ICONS LIST ***/
.icons_list_section{
	padding: 80px 0;
	background: var(--gray100);
}
.icons_list_section .section_title {
	font-size: 26px;
	line-height: 130%;
}
.icons_list_item{
	padding: 15px;
    border: 1px solid var(--gray200);
    border-radius: 15px;
	background: #FFF;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.icons_list_item p{
	font-size: 20px;
	font-weight: 600;
	line-height: 120%;
}

/*** ICONS GRID ***/
.icons_grid_section{
	padding: 80px 0;
}
.icons_grid_item{
	margin-top: 40px;
	padding: 50px 20px 20px;
	background: var(--gray200);
	border-radius: 20px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.icons_grid_item_icon{
	position: absolute;
	top: 0;
	left: 50%;
	width: 90px;
	height: 90px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 5px solid #FFF;
	border-radius: 50%;
	background: var(--gray200);
	transform: translate(-50%, -50%);
}
.icons_grid_item_icon img{
	width: 50px;
}
.icons_grid_item_content p{
	font-weight: 600;
	font-size: 20px;
	line-height: 120%;
}

/*** TESTIMONIALS ***/
.testimonials_section{
	position: relative;
	padding: 80px 0;
	background-size: cover;
	background-position: center;
	background-color: #051730;
	color: #FFF;
}
.testimonial_item {
	padding: 30px;
	background: #FFF;
	border-radius: 20px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	color: var(--gray500);
}
.testimonial_item img{
	width: 150px;
}
.testimonials_grid .col:nth-child(even){
	transform: translateY(-50px);
}

/*** FORM SECTION ***/
.form_section{
	padding: 90px 0;
    background: var(--gray200);
}
.blob_wrapper::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 130%;
    height: 130%;
	transform: translate(-50%, -50%);
	background: url(../images/blob.png) no-repeat center center/contain;
}
.form_section_form{
	padding: 40px;
	background: #FFF;
	border-radius: 20px;
	z-index: 2;
}
.form_title{
	font-size: 30px;
}

/*** POPUP FORM ***/
.popup_form{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 99;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
}
.popup_form.active{
	visibility: visible;
	opacity: 1;
}
.popup_form_overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(34, 34, 80, 0.8);
}
.popup_form_content{
	position: relative;
	width:calc(100% - 40px);
	max-width: 600px;
	padding: 40px;
	background: #FFF;
	border-radius: 20px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.close_popup{
	position: absolute;
	width: 40px;
	height: 40px;
	top: 10px;
	right: 10px;
	background: url(../images/close.svg) no-repeat center center/contain;
	cursor: pointer;
}
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme textarea{
	border: 1px solid var(--gray300);
	border-radius:5px;
	padding:0 15px !important;
	line-height: 40px;
}

.videos_grid_section{
	padding: 80px 0;
}
.video_wrapper video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


@media(max-width:992px) {
	.landing_section h1 {
		font-size: 35px;
	}
	.landing_section .content_wrapper p {
		font-size: 18px;
	}
	.stats_section .boxes_grid {
		margin-top: -120px;
	}
	.stats_item {
		margin-top: 30px;
	}
	.section_title {
		font-size: 25px;
		line-height: 125%;
	}
	.testimonials_grid .col:nth-child(even) {
		transform: translateY(0);
	}
	.landing_section {
	    padding: 50px 0;
	}
}