/*** RESET ***/
:root{
	--redColor: #ff131d;
	--redColorHover: #ab1a21;
	--yellowColor: #ffc600;
	--yellowColorHover: #ffa600;
	--purpleColor: #9366dd;
	--greenColor: #56ab36;
	--blueColor: #0153ad;
	--gray100: #f5f5f5;
	--gray400: #848484;
	--gray500: #020e28;
	--primaryFont: "Outfit", sans-serif;
	--secondaryFont: "DM Sans", sans-serif;
}

html,body{
	margin:0;
	padding:0;
	font-size:16px;
	line-height:100%;
}

body{
	line-height: 100%;
	font-family: var(--secondaryFont);
	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%;
	font-family: var(--primaryFont);
}
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%;
}
p: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(--redColor);
	--btnColorHover: var(--redColorHover);
	--btnTextColor: #FFF;
	display: inline-block;
	position: relative;
	border-radius: 5px;
	background: var(--btnColor);
	color: var(--btnTextColor);
	border: none;
	cursor: pointer;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 16px;
	padding: 20px 30px;
	line-height: 20px;
	text-align: center;
	box-shadow: inset 0 -4px 0 rgba(0,0,0,0.5);
	transition: all 0.5s;
}
.button:hover{
	background: var(--btnColorHover);
}
.yellow_button.button{
	--btnColor: var(--yellowColor);
	--btnColorHover: var(--yellowColorHover);
}

.section_title{
	font-weight: 600;
	font-size: 45px;
	color: currentColor;
	margin-bottom: 20px;
}

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

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

/*** HEADER MENU ***/
#header_menu{
	font-size: 16px;
	gap: 30px;
	text-transform: uppercase;
	font-family: var(--primaryFont);
	font-weight: 600;
	color: var(--blueColor);
}


/*** MOBILE MENU ***/

/*** FOOTER ***/
#footer{
	background: var(--gray500);
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
	padding: 30px 0;
}
/*** LANDING SECTION ***/
.landing_section{
	height: calc(100vh - 70px);
	color: #FFF;
	overflow: hidden;
}
.landing_section .container{
	z-index: 2;
}
.landing_slider{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.landing_slide{
	position: relative;
	height: calc(100vh - 70px);
	background-size: cover;
	background-position: center;
}
.landing_slide::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}
.landing_section h1{
	font-size: 45px;
}
.landing_section p{
	font-size: 24px;
    font-weight: bold;
    color: var(--redColor);
}
.landing_section ul{
	display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    list-style: none;
    padding: 0;
    gap: 15px;
}
.landing_section ul li{
	position: relative;
	display: inline-block;
	padding:10px 15px 10px 45px;
	background: var(--greenColor);
	color: #FFF;
	border-radius: 10px;
	line-height: 150%;
}
.landing_section ul li::before{
	content: '';
    position: absolute;
    top: calc(50% - 12px);
    left: 10px;
    width: 24px;
    height: 24px;
    background-image: url(../images/check-mark.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.landing_footer{
	padding: 30px;
	background:rgba(0, 0, 0, 0.8);
	border-radius: 30px;
}
.landing_footer p{
	font-size: 22px;
	font-weight: bold;
}
.form_column{
	position: relative;
	z-index: 5;
}
.landing_section .form_wrapper .button{
	--btnColor: var(--gray500);
	--btnColorHover: var(--gray500);
	--btnTextColor: #FFF;
	padding: 15px 0;
}
.form_wrapper .gform_heading{
	display: none;
}
.form_wrapper .gform_wrapper.gravity-theme input[type=text],
.form_wrapper .gform_wrapper.gravity-theme input[type=email],
.form_wrapper .gform_wrapper.gravity-theme textarea,
.form_wrapper .gform_wrapper.gravity-theme select{
	border: none;
	background: rgba(0, 0, 0, 0.4);
	color: #FFF;
	height: 40px;
	border-radius: 5px;
}
.form_wrapper .gform_wrapper.gravity-theme .gfield_label{
	color: #FFF;
	font-weight: normal;
	font-size: 14px;
}
.form_wrapper .gform_wrapper.gravity-theme .gfield_required{
	color:#FFF
}

/*** SERVICES SECTION ***/
.services_section_header h3{
	color: var(--redColor);
}
.services_boxes_wrapper{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 0.5s;
}
.services_grid_item{
	padding-top: 100%;
	cursor: pointer;
}
.services_grid_item::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}
.col:not(:last-child) .services_grid_item{
	border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.services_grid_item_content{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px;
	color: #FFF;
}
.services_grid_item .index{
	position: absolute;
	top:30px;
	right: 30px;
	font-size: 40px;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	border:2px solid #FFF;
	border-radius: 50%;
}
.open_icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 20px;
	background: var(--gray100);
	color: var(--gray500);
	border-radius: 5px;
}
.services_grid_item_content h3{
	font-size: 30px;
}
.services_grid_item_content .content_wrapper {
	height: 90px;
}

.lightbox{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
}
.lightbox_active{
	opacity: 1;
	visibility: visible;
}
.lightbox_overlay{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}
.lightbox_content{
	position: relative;
	width: calc(100% - 40px);
	max-width: 600px;
	padding: 40px;
	border-radius: 15px;
	background: #FFF;
	color: var(--gray500);
}
.lightbox_content h2{
	font-size: 30px;
}
.close_lightbox{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: var(--redColor);
	cursor: pointer;
}
.lightbox_content .form_wrapper .gform_wrapper.gravity-theme .gfield_label {
	color: var(--gray500);
}

/*** FEATURES SECTION ***/
.features_section{
	padding: 110px 0;
}
.features_grid_item_content_wrapper{  
	padding: 40px;
}
.icon_wrapper{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--redColor);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	z-index: 2;
}
.icon_wrapper img{
	width: 40px;
	height: 40px;
}
.features_grid_item_content_wrapper h3{
	font-size: 22px;
	line-height: 120%;
}
.features_grid_item_content_wrapper p{
	font-size: 20px;
}

/*** TESTIMONIALS ***/
.testimonials_section{
	padding: 90px 0;
	background: var(--gray100);
}
.testimonial_logo img{
	width: 40%;
}
.testimonials_slider .swiper-slide{
	padding: 0 10px;
	height: auto;
	display: flex;
}
.testimonials_grid_item{
	padding: 40px;
	border-radius: 15px;
	background: #FFF;
	margin-top: 35px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.testimonials_grid_item i{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top:0;
	left:calc(50% - 35px);
	width: 70px;
	height: 70px;
	font-size: 40px;
	color: var(--blueColor);
	border: 3px solid var(--blueColor);
	border-radius: 50%;
	transform: translateY(-50%);
}
.testimonials_grid_item .content_wrapper{
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.testimonials_grid_item .content_wrapper p{
	font-size: 18px;
	line-height: 150%;
}
.testimonials_slider .swiper-pagination{
	position: relative;
	bottom: inherit;
	top: inherit;
	margin-top: 20px;
}

/** FORM SECTION **/
.form_section{
	padding: 90px 0;
	background-color: #23466c;
	background-size: cover;
	background-position: center;
	color: #FFF;
}
.form_section::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}
.form_section .container{
	z-index: 2;
}
.form_section .form_wrapper {
	padding: 40px;
	border:1px solid #FFF;
	border-radius: 15px;
	background: rgba(0, 0, 0, 0.4);
}
.form_section .form_wrapper .gform_wrapper.gravity-theme input[type=text],
.form_section .form_wrapper .gform_wrapper.gravity-theme input[type=email],
.form_section .form_wrapper .gform_wrapper.gravity-theme textarea,
.form_section .form_wrapper .gform_wrapper.gravity-theme select{
	background: rgba(255,255,255, 0.3);
	color:#FFF
}
.form_section .form_wrapper .gform_wrapper.gravity-theme input[type=text]::placeholder,
.form_section .form_wrapper .gform_wrapper.gravity-theme input[type=email]::placeholder,
.form_section .form_wrapper .gform_wrapper.gravity-theme textarea::placeholder,
.form_section .form_wrapper .gform_wrapper.gravity-theme select::placeholder{
	color: rgba(255,255,255, 0.7);
}
.form_wrapper .button{
	--btnColor: var(--redColor);
	--btnColorHover: var(--redColorHover);
	padding: 15px 0;
}

/*** TEXT IMAGE SECTION ***/
.text_image_section{
	padding: 90px 0;
	background: var(--gray100);
}
.text_image_section .content_wrapper p{
	font-size: 20px;
	line-height: 150%;
}
.text_image_section img{
	border-radius: 30px;
}
.form_step_item_image{
	width: 90px;
	height:90px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #FFF;
	border-radius: 50%;
}
.form_step_item_image img{
	width:55%;
}
.form_step_item_image .index{
	position: absolute;
	width: 30px;
	height: 30px;
	top: -10px;
	right: -5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
	background: var(--redColor);
	border-radius: 50%;
}
.form_step_item h4{
	font-size:25px
}

/*** STATS SECTION ***/
.stats_section{
	padding: 60px 0;
	background: var(--yellowColor);
}
.stats_section .stats_number{
	font-size: 45px;
	line-height: 100%;
	font-weight: bold;
}
.stats_section .stats_title{
	font-size: 20px;
	line-height: 100%;
	font-weight: bold;
}

/*** CONTENT GRID SECTION ***/
.content_grid_section{
	padding: 90px 0;
}
.content_grid_item_image{
	padding-top: 70%;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}

/*** CTA SECTION ***/
.cta_section{
	padding: 90px 0;
	background: var(--yellowColor);
}
.cta_section .section_title{
	line-height: 120%;
}

/*** FORM LIGHTBOX ***/
.form_lightbox{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}
.form_lightbox.active{
	opacity: 1;
	visibility: visible;
}
.form_lightbox_content{
	position: absolute;
	top: 50%;
	left: 50%;
	width:calc(100% - 40px);
	max-width: 600px;
	max-height: calc(100vh - 100px);
	overflow: auto;
	padding: 40px;
	background: #FFF;
	border-radius: 15px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	transform: translate(-50%, -50%);
}
.form_lightbox_overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}
.gform_heading{
	display: none !important;
}

@media(max-width:992px) {
	.landing_section{
		height: auto;
		padding: 40px 0;
	}
	.landing_slide{
		height: 100%;
	}
	.landing_section h1 {
		font-size: 40px;
	}
	.landing_section ul {
		font-size: 16px;
		align-items: center;
	}
	.landing_section .form_wrapper{
		padding:30px;
		background: var(--redColor);
		border-radius: 15px;
	}
	#header_logo {
		width: 120px;
	}
	#header_main {
		height: 70px;
	}
	#page_wrapper {
		padding-top: 70px;
	}
	.section_title {
		font-size: 30px;
	}
	.form_lightbox_content {
		padding: 20px;
	}
}

