/*** RESET ***/
:root{
	--redColor: #ff2e70;
	--yellowColor100: #FEF8EB;
	--yellowColor: #F7B32F;
	--purpleColor: #9366dd;
	--greenColor: #89f262;
	--blueColor: #2E67C2;
	--blueColor100: #e9f6ff;
	--blueColor200: #E7EEF8;
	--blueColor600: #364A6C;
	--gray100: #f2f2f2;
	--gray200: #e6e6e6;
	--gray300: #939fac;
	--gray400: #596068;
	--gray500: #181C25;
	--gray800: #0D1526;
	--primaryFont: "DM Sans", sans-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%;
	font-weight: 400;
}
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
}
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{
	padding-top: 80px;
}
.container{
	max-width: 1140px;
}
.button{
	--btnColor: var(--blueColor600);
	--btnColorHover: var(--blueColor);
	--btnTextColor: #FFF;
	display: inline-block;
	position: relative;
	border-radius: 6px;
	background: var(--btnColor);
	color: var(--btnTextColor);
	border: none;
	cursor: pointer;
	font-size: 16px;
	padding: 15px 20px;
	line-height: 20px;
	text-align: center;
	font-weight: 700;
	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);
}
.white_button{
	--btnColor: #FFF;
	--btnColorHover: var(--blueColor);
	--btnTextColor: var(--blueColor);
}
.white_button:hover{
	--btnTextColor: #FFF;
}

.section_title{
	font-weight: 700;
	font-size: 40px;
	margin-bottom: 30px;
}
.section_title strong{
	color: var(--blueColor);
}
.section_subtitle{
	font-size: 20px;
	color: var(--accentColor);
	font-weight: normal;
}
.color_scheme_dark{
	background: var(--gray800);
	color: #FFF;
}

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

/*** HEADER ***/
#header{
	position: fixed;
	top:0;
	left:0;
	color: var(--gray500);
	background: #FFF;
	transition: color 0.5s;
	z-index: 99;
}
.admin-bar #header{
	top:32px;
}
#header_main{
	height: 80px;
}
#header_logo{
	display: inline-block;
	width: 215px;
	max-width: 100%;
}

/*** HEADER MENU ***/
#header_menu{
	gap: 10px;
	list-style: none;
    font-size: 16px;
    font-weight: 500;
}
#header_menu > li > a{
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0 10px;
	height: 80px;
	transition: all 0.3s;
}
#header_menu > li > a:hover{
	color: var(--blueColor);
}
#header_menu > li > a::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	border-radius: 4px 4px 0 0;
	background: var(--blueColor);
	opacity: 0;
	transition: all 0.3s;
}
#header_menu > li:hover > a::after{
	opacity: 1;
}
#header_menu > .has-mega-menu > a{
	padding-right: 30px;
}
.has-mega-menu > a::before{
	content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    top: calc(50% - 7px);
    right: 5px;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mega-menu-wrapper{
	position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #FFF;
    padding: 20px 0 50px 0;
    box-shadow: inset 0 5px 10px -5px rgba(0, 0, 0, 0.1);
	transform:translateY(-30px);
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
}
.admin-bar .mega-menu-wrapper {
    top: 112px;
}
.mega-menu{
	list-style: none;
}
.mega-menu > li > a{
	display: block;
	font-weight: 700;
	font-size:18px;
	margin-bottom: 20px;
}
.mega-menu .sub-menu{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 15px;
}
.mega-menu .sub-menu a{
	transition: all 0.3s;
}
.mega-menu .sub-menu a:hover{
	color: var(--blueColor);
}

/*** MOBILE MENU ***/
#menu_trigger{
	position: relative;
	width: 25px;
	height: 16px;
	cursor: pointer;
}
#menu_trigger::after{
	content: '';
	position: absolute;
	top:calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger::after{
	transform: translateX(100%);
	opacity: 0;
}
#menu_trigger i{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
#menu_trigger i::before{
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::before{
	transform: translate(0px, 6px) rotate(45deg);
}
#menu_trigger i::after{
	content: '';
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::after{
	transform: translate(0px, -8px) rotate(-45deg);
}

#mobile_menu_wrapper{
	position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 80px);
    background: var(--gray100);
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
    z-index: 99;
}
.menu_open #mobile_menu_wrapper{
	visibility: visible;
	opacity: 1;
}
#mobile_menu{
	margin:0 0 80px;
	padding: 0;
	font-size: 25px;
	font-weight: 400;
	list-style: none;
}
#mobile_menu > li > a{
	display: inline-block;
	position: relative;
}
#mobile_menu .has-mega-menu > a::before{
	right: -30px;
    transform: rotate(-90deg);
}
.back_to_menu{
	display: none;
}

/*** FOOTER ***/
#footer_main{
	padding: 80px 0;
	background:var(--blueColor600);
	color: #FFF;
}
.footer_widget .wp-block-image{
	margin: 0;
}
.widget_title{
	margin-bottom: 30px;
}
.footer_widget ul{
	display: flex;
	flex-direction: column;
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}
#footer_bottom_bar{
	background:var(--gray800);
	color: #FFF;
	padding: 20px 0;
	font-size: 12px;
	font-weight: 400;
}

/*** LANDING SECTION ***/
.landing_section {
    padding: 170px 0;
    background-size: cover;
    background-position: center;
    color: #FFF;
    position: relative;
    overflow: hidden;
}

.video_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.background_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.background_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.landing_section .container {
    z-index: 3;
}

.landing_section h1 {
    font-weight: 700;
    font-size: 56px;
    line-height: 130%;
}

.landing_section p {
    font-size: 18px;
}

/*** METHODOLOGIES SECTION ***/
.methodologies_section{
	padding: 100px 0;
	background-size: 100% auto;
	background-position: top center;
	background-repeat: no-repeat;
}
.methodologies_section .icons_grid{
	margin: 50px 0;
}
.methodologies_section .icon_item h3{
	font-size: 18px;
	font-weight: 700;
	line-height: 130%;
}
.methodologies_section .content_wrapper{
	font-size: 12px;
}

/*** SERVICES SECTION ***/
.services_section{
	padding: 80px 0 80px;
}
.service_item_image{
	padding-top: 60%;
	background-size: cover;
	background-position: center;
	border-radius: 10px 10px 0 0;
}
.service_item h3{
	font-size: 20px;
	font-weight: 700;
	line-height: 130%;
}
.readmore{
	color: var(--blueColor);
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.readmore i{
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(../images/arrow-right.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.3s;
}
.readmore:hover i{
	transform: translateX(5px);
}

/*** FEATURES SECTION ***/
.features_section{
	padding: 100px 0;
	background:var(--gray800);
	color: #FFF;
}
.box_item{
	background:var(--blueColor600);
	color: #FFF;
	border-radius: 10px;
	padding: 40px;
}
.boxes_grid .col:nth-child(even) .box_item{
	background:#FFF;
	color: var(--gray500);
}
.boxes_grid .col:nth-child(1) .box_item{
	padding-bottom: 240px;
}
.boxes_grid .col:nth-child(4){
	margin-top: -65px;
}
.boxes_grid .col:nth-child(3) .box_item{
	padding-bottom: 240px;
}

/*** CONTACT FORM SECTION ***/
.contact_form_section{
	padding: 80px 0;
	background:var(--gray800)
}
.form_wrapper .gform_wrapper.gravity-theme input[type=text],
.form_wrapper .gform_wrapper.gravity-theme input[type=email],
.form_wrapper .gform_wrapper.gravity-theme input[type=tel],
.form_wrapper .gform_wrapper.gravity-theme textarea,
.form_wrapper .gform_wrapper.gravity-theme select{
	border-radius: 6px;
	border: 1px solid rgba(29, 69, 114, 0.2);
	padding: 0 20px;
	height: 45px;
}
.form_wrapper .gform_wrapper.gravity-theme textarea{
	padding: 20px;
}
.form_wrapper .gform_wrapper.gravity-theme .gform_footer{
	justify-content: center;
}
.form_wrapper .gform_wrapper.gravity-theme .gform_footer .button{
	padding: 15px 50px;
}
.contact_form_section .section_title{
	font-size: 32px;
	margin-bottom: 25px;
	color: white;
}
.gfield {
	position: relative;
}
.gform_wrapper.gravity-theme .gfield_label.gfield_label_before_complex{
	border-radius: 6px;
    border: 1px solid rgba(29, 69, 114, 0.2);
    padding: 0 20px;
    height: 45px;
    width: 100%;
    background: #FFF;
    display: flex;
    align-items: center;
    font-weight: 400;
    color: #757575;
	cursor: pointer;
}
.gform_wrapper.gravity-theme .gfield_label.gfield_label_before_complex.checked{
	color: var(--gray500);
}
.ginput_container_checkbox{
	position: absolute;
	display: none;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #FFF;
    border: 1px solid var(--gray200);
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
	z-index: 9;
}
.gfield_checkbox > *{
	padding: 10px;
	border-bottom: 1px solid var(--gray200);
}
.gfield_checkbox label{
	cursor: pointer;
}


/*** ABOUT SECTION ***/
.about_section{
	padding: 100px 0;
	background-image: url(../images/about_bg.png);
	background-size: 100% auto;
	background-position: top center;
	background-repeat: no-repeat;
}
.about_section .image_wrapper img{
	border-radius: 10px;
}
.about_section .content_wrapper p{
	font-size: 18px;
}
.helpful_link_item{
	background: #FFF;
	padding: 30px;
	border: 1px solid rgba(24, 28, 37, 0.2);
	border-radius: 10px;
}

/*** TESTIMONIALS ***/
.testimonials_section{
	padding: 80px 0;
	background-image: url(../images/testimonials_bg.png);
	background-size: 100% 100%;
	background-position: bottom center;
	background-repeat: no-repeat;
}
.testimonial_item{
	padding:40px;
	border-radius: 10px;
	background:var(--yellowColor100);
}
.testimonial_item p{
	font-size: 18px;
}
.testimonial_item_content{
	padding-top: 70px;
}
.testimonial_item_content::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	background-image:url(../images/quotes_icon.svg);
	background-size: 50px;
	background-position: center;
	background-repeat: no-repeat;
}
.testimonial_item_meta{
	margin-top: 30px;
	padding-top: 30px;
}
.testimonial_item_meta::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 4px;
	background: var(--yellowColor);
	border-radius: 10px;
}
.testimonial_item_meta h3{
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
}
.testimonials_slider .swiper-slide{
    height: auto;
}
.swiper-pagination{
	position: relative;
    margin-top: 50px;
}
.swiper {
	--swiper-pagination-bullet-size:10px;
	--swiper-pagination-bullet-inactive-color:var(--blueColor);
	--swiper-pagination-color:var(--blueColor);
}
.swiper-pagination-bullet{
	border-radius: 99px;
	transition: all 0.3s;
}
.swiper-pagination-bullet-active{
	width: 35px;
}

/** CIRCLE LANDING SECTION ***/
.circle_landing_section{
	padding: 100px 0;
	color: #FFF;
}
.circle_landing_section::before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 120%;
	background-image: url(../images/circle_landing_bg.png);
	background-size: 100% 100%;
}
.circle_landing_section h1{
	font-size: 56px;
	line-height: 130%;
}
.circle_landing_section p{
	font-size: 18px;
}

/*** TEXT IMAGE SECTION ***/
.text_image_section{
	padding: 80px 0;
	z-index: 2;
}
.text_image_section .image_wrapper img{
	border-radius: 10px;
}

/*** QUOTE BOX SECTION ***/
.quote_box_section{
	padding: 60px 0;
}
.quote_box_section .quote_box{
	padding: 40px;
	background: var(--blueColor200);
	border-radius: 10px;
}
.quote_box_section .quote_box .content_wrapper{
	color: var(--blueColor600);
	padding-top: 60px;
}
.quote_box_section .quote_box .content_wrapper p{
	font-size: 32px;
	font-weight: 700;
	line-height: 130%;
}
.quote_box_section .quote_box .content_wrapper::before{
	content: '';
	position: absolute;
	top: -20px;
	left: calc(50% - 40px);
	width: 80px;
	height: 80px;
}
.quote_box_section .quote_box .author{
	margin-top: 40px;
	padding-top: 30px;
	font-size: 24px;
	color: var(--blueColor600);
}
.quote_box_section .quote_box .author::before{
	content: '';
	position: absolute;
	top: 0;
	left: calc(50% - 35px);
	width: 70px;
	height: 4px;
	background: var(--blueColor);
	border-radius: 10px;
}

/*** Boxes Carousel Section ***/
.boxes_carousel_section{
	background-image: url(../images/boxes_bg.png);
	background-size: 100% auto;
	background-position: bottom center;
	background-repeat: no-repeat;
}
.content_box{
	padding: 40px;
	background: var(--blueColor600);
	color: #FFF;
	border-radius: 10px;
}
.boxes_carousel .swiper-slide{
	height: auto;
	display: flex;
}
.content_box h3{
	line-height: 130%;
}
.boxes_carousel_section{
	padding: 80px 0;
}

/*** SIMPLE CONTENT SECTION ***/
.simple_content_section{
	padding: 80px 0;
	position: relative;
	z-index: 2;
}

/*** TITLE CONTENT SECTION ***/
.title_content_section{
	padding: 80px 0;
	background: var(--gray800);
	color: #FFF;
}

/*** MAP LANDING SECTION ***/
.map_landing_section{
	background-color:var(--blueColor100);
	background-image: url(../images/map_landing_bg.png);
	background-size: 100% 100%;
	background-position: top center;
	background-repeat: no-repeat;
}
.map_landing_section::before{
	display: none;
}
.map_wrapper{
	padding-top: 80%;
	border-radius: 20px;
	overflow: hidden;
}
.map_wrapper iframe,
.map_wrapper #map{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*** REGULAR PAGE ***/
.page-template-default #header{
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.page_content_wrapper{
	padding: 50px 0;
}
.page_content_wrapper .page_title{
	font-size: 56px;
	font-weight: 700;
	line-height: 130%;
	margin-bottom: 50px;
}
.page_content h2, 
.page_content h3, 
.page_content h4, 
.page_content h5, 
.page_content h6{
	margin:20px 0;
}

/*** MESSAGE BOX SECTION ***/
.message_box{
	padding: 40px;
    background: #E7EEF8;
    border-radius: 10px;
    border-left: 8px solid var(--blueColor);
}
.message_box p{
	font-size: 24px;
	color: #2F5187;
	font-weight: 500;
}

/*** CHECKLIST BOXES GRID ***/
.checklist_boxes_grid_section{
	padding: 100px 0;
}
.check_icon{
	display: inline-block;
	width: 80px;
	height: 80px;
	background-image: url(../images/check_icon.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.content_boxes_section{
	padding: 80px 0;
	background: var(--gray800);
	color: #FFF;
}
.content_boxes_section h3{
	font-size: 24px;
	font-weight: 700;
	line-height: 130%;
	margin-bottom: 15px;
}

@media(min-width:992px) {
	li:hover .mega-menu-wrapper{
		transform:translateY(0);
		visibility: visible;
		opacity: 1;
	}
}

@media(max-width:992px) {
	
	.admin-bar #header {
		top: 47px;
	}
	
	.admin-bar.float_active #header {
		top: 0;
	}
	.section_title {
		font-size: 30px;
	}
	.landing_section {
		padding: 110px 0;
	}
	.landing_section h1 {
		font-size: 34px;
	}
	.landing_section p {
		font-size: 16px;
	}
	.methodologies_section .icon_item h3 {
		font-size: 14px;
	}
	.boxes_grid .col:nth-child(1) .box_item {
		padding-bottom: 40px;
	}
	.box_item,
	.boxes_grid .col:nth-child(1) .box_item,
	.boxes_grid .col:nth-child(3) .box_item{
		padding: 30px;
	}
	.boxes_grid .col:nth-child(4) {
		margin-top: 20px;
	}
	.mega-menu-wrapper{
		z-index: 99;
	}
	.mega-menu-wrapper.open{
		transform: translateY(0);
		visibility: visible;
		opacity: 1;
	}
	.mega-menu{
		max-height: calc(100dvh - 150px);
		overflow: auto;
	}
	.about_landing_section h1 {
		font-size: 32px;
	}
	.about_landing_section::before {
		width: 160%;
		height: 100%;
	}
	.quote_box_section .quote_box .content_wrapper p {
		font-size: 18px;
	}
	.quote_box_section .quote_box .author {
		font-size: 18px;
	}
	.circle_landing_section h1 {
		font-size: 31px;
	}
	.circle_landing_section,
	.checklist_boxes_grid_section{
		overflow: hidden;
	}
	.circle_landing_section::before {
		width: 200%;
		height: 100%;
	}
	.check_icon{
		width: 65px;
		height: 65px;
	}
}

.wp-block {
  max-width: 100% !important;
 }

.edit-post-visual-editor__content-area {
  overflow: auto !important;
  overflow-x: hidden !important;
}