/*** RESET ***/
:root{
	--gw800: #FF2E70;
	--gw700: #FF9000;
	--gw600: #FFC600;
	--gw500: #00B4BD;
	--gw400: #9366DD;
	--gw300: #89F262;
	--gw200: #19E4FF;

	/* Neutral palette */
	--neutralWhite: #FFFFFF;
	--neutral100: #f9f9f9;
	--neutral200: #b7bec4;
	--neutral300: #99a7b3;
	--neutral400: #5c6c7b;
	--neutral500: #252525;

	--customColor400: #9BB2EE;
	--customColor500: #2995f3;
	--customColor600: #005299;
	--customColor700: #031e38;
	--customColor800: #dd1515;
	--customColor850: #bb1212;

	--primaryFont: "Roboto", sans-serif;
	--secondaryFont: "Montserrat", sans-serif;

	--wp--preset--font-size--small: 12px;
	--wp--preset--font-size--medium: 20px;
	--wp--preset--font-size--large: 24px;
	--wp--preset--font-size--x-large: 36px;
	--wp--preset--font-size--xx-large: 48px;

	--wp--preset--spacing--20: 30px;
	--wp--preset--spacing--30: 50px;
	--wp--preset--spacing--40: 70px;
	--wp--preset--spacing--50: 90px;
	--wp--preset--spacing--60: 130px;
	--wp--preset--spacing--70: 180px;
	--wp--preset--spacing--80: 220px;

	--containerWidth: 1290px;
	--headerHeight: 120px;
}

*{
	box-sizing: border-box;
}
html,body{
	margin:0;
	padding:0;
	font-size:16px;
	line-height:100%;
}

body{
	line-height: 100%;
	font-family: var(--primaryFont);
	color: var(--neutral500);
	background: var(--neutralWhite);
}
h1,
h2,
h3,
h4,
h5{
	margin: 0 0 10px 0;
	line-height: 100%;
	font-family: var(--secondaryFont);
}
p{
	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;
}
ul:empty,
ol:empty,
li:empty,
p:empty{
	display: none;
}
strong{
	font-weight: 600;
}
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);
}

/*** WP BLOCKS ***/

/* PADDING */
.padding-all-preset-spacing-0{
	padding: 0;
}
.padding-all-preset-spacing-20{
	padding: var(--wp--preset--spacing--20);
}
.padding-all-preset-spacing-30{
	padding: var(--wp--preset--spacing--30);
}
.padding-all-preset-spacing-40{
	padding: var(--wp--preset--spacing--40);
}
.padding-all-preset-spacing-50{
	padding: var(--wp--preset--spacing--50);
}
.padding-all-preset-spacing-60{
	padding: var(--wp--preset--spacing--60);
}
.padding-all-preset-spacing-70{
	padding: var(--wp--preset--spacing--70);
}
.padding-all-preset-spacing-80{
	padding: var(--wp--preset--spacing--80);
}
.padding-top-preset-spacing-0{
	padding-top: 0;
}
.padding-top-preset-spacing-20{
	padding-top: var(--wp--preset--spacing--20);
}
.padding-top-preset-spacing-30{
	padding-top: var(--wp--preset--spacing--30);
}
.padding-top-preset-spacing-40{
	padding-top: var(--wp--preset--spacing--40);
}
.padding-top-preset-spacing-50{
	padding-top: var(--wp--preset--spacing--50);
}
.padding-top-preset-spacing-60{
	padding-top: var(--wp--preset--spacing--60);
}
.padding-top-preset-spacing-70{
	padding-top: var(--wp--preset--spacing--70);
}
.padding-top-preset-spacing-80{
	padding-top: var(--wp--preset--spacing--80);
}
.padding-bottom-preset-spacing-0{
	padding-bottom: 0;
}
.padding-bottom-preset-spacing-20{
	padding-bottom: var(--wp--preset--spacing--20);
}
.padding-bottom-preset-spacing-30{
	padding-bottom: var(--wp--preset--spacing--30);
}
.padding-bottom-preset-spacing-40{
	padding-bottom: var(--wp--preset--spacing--40);
}
.padding-bottom-preset-spacing-50{
	padding-bottom: var(--wp--preset--spacing--50);
}
.padding-bottom-preset-spacing-60{
	padding-bottom: var(--wp--preset--spacing--60);
}
.padding-bottom-preset-spacing-70{
	padding-bottom: var(--wp--preset--spacing--70);
}
.padding-bottom-preset-spacing-80{
	padding-bottom: var(--wp--preset--spacing--80);
}

/* GRADIENT */
.gradient-gw400-to-gw700{
	background: linear-gradient(120deg, var(--gw400) 0%, var(--gw700) 100%);
}
.gradient-gw400-to-gw700-revert{
	background: linear-gradient(120deg, var(--gw700) 0%, var(--gw400) 100%);
}

/* IMAGES */
:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){
	border-radius: 8px;
}
.wp-block-video{
	border-radius: 8px;
	overflow: hidden;
}
.wp-block-video:last-child{
	margin-bottom: 0;
}

/* QUOTES */
.wp-block-quote{
	margin: 30px 0;
	padding: 0 0 0 30px;
	border-left: 4px solid var(--neutral300);
}
.wp-block-quote p{
	color: var(--neutral400);
	opacity: 0.8;
}

/* SEPARATORS */
.wp-block-separator{
	width: 100%;
	max-width: 1170px;
	margin:10px auto;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.1);
}
.wp-block-separator.has-neutral-100-background-color{
	border-color: var(--neutral100);
}
.wp-block-separator.has-neutral-200-background-color{
	border-color: var(--neutral200);
}
.wp-block-separator.has-neutral-300-background-color{
	border-color: var(--neutral300);
}
.wp-block-separator.has-neutral-400-background-color{
	border-color: var(--neutral400);
}
.wp-block-separator.has-neutral-500-background-color{
	border-color: var(--neutral500);
}

/*** TEXT COLORS ***/
/* GW Palette Colors */
.text-color---gw200{ color: var(--gw200); }
.text-color---gw300{ color: var(--gw300); }
.text-color---gw400{ color: var(--gw400); }
.text-color---gw500{ color: var(--gw500); }
.text-color---gw600{ color: var(--gw600); }
.text-color---gw700{ color: var(--gw700); }
.text-color---gw800{ color: var(--gw800); }

/* Neutral Colors */
.text-color---neutralWhite{ color: var(--neutralWhite); }
.text-color---neutral100{ color: var(--neutral100); }
.text-color---neutral200{ color: var(--neutral200); }
.text-color---neutral300{ color: var(--neutral300); }
.text-color---neutral400{ color: var(--neutral400); }
.text-color---neutral500{ color: var(--neutral500); }

/* Custom Colors */
.text-color---customColor400{ color: var(--customColor400); }
.text-color---customColor500{ color: var(--customColor500); }
.text-color---customColor600{ color: var(--customColor600); }
.text-color---customColor700{ color: var(--customColor700); }
.text-color---customColor800{ color: var(--customColor800); }

/*** BACKGROUND COLORS ***/
.bg-color---gw200{ background-color: var(--gw200); }
.bg-color---gw300{ background-color: var(--gw300); }
.bg-color---gw400{ background-color: var(--gw400); }
.bg-color---gw500{ background-color: var(--gw500); }
.bg-color---gw600{ background-color: var(--gw600); }
.bg-color---gw700{ background-color: var(--gw700); }
.bg-color---gw800{ background-color: var(--gw800); }

/* Neutral Colors */
.bg-color---neutralWhite{ background-color: var(--neutralWhite); }
.bg-color---neutral100{ background-color: var(--neutral100); }
.bg-color---neutral200{ background-color: var(--neutral200); }
.bg-color---neutral300{ background-color: var(--neutral300); }
.bg-color---neutral400{ background-color: var(--neutral400); }
.bg-color---neutral500{ background-color: var(--neutral500); }

/* Custom Colors */
.bg-color---customColor400{ background-color: var(--customColor400); }
.bg-color---customColor500{ background-color: var(--customColor500); }
.bg-color---customColor600{ background-color: var(--customColor600); }
.bg-color---customColor700{ background-color: var(--customColor700); }
.bg-color---customColor800{ background-color: var(--customColor800); }

/*** GRAVITY FORMS ***/
.gform_description:empty,
.gform_heading,
.gf_progressbar_wrapper{
	display: none !important;
}

/*** MISC ***/
.container{
	max-width: var(--containerWidth);
}
.wp-element-button,
.button{
	--btnColor: var(--customColor500);
	--btnColorHover: var(--customColor600);
	--btnTextColor: var(--neutralWhite);
	--btnTextColorHover: var(--neutralWhite);
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	gap: 10px;
	background-color:  var(--customColor500);
	color: var(--btnTextColor);
	border-radius: 5px;
	border: none;
	cursor: pointer;
	font-size: 14px;
	padding: 12px 18px;
	line-height: 20px;
	transition: all 0.3s;
	z-index: 1;
	overflow: hidden;
}
.wp-element-button:not(.has-neutral-white-background-color){
	background: transparent;
}
.wp-element-button:not(.has-neutral-white-background-color)::after{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to left, var(--customColor500) 0%, transparent 100%);
	transform: translateX(30%);
	transition: all 0.3s;
	border-radius: 5px;
	z-index: -1;
}
.wp-element-button:not(.has-neutral-white-background-color):hover::after{
	transform: translateX(0);
}
.wp-element-button:not(.has-neutral-white-background-color)::before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: var(--customColor600);
	z-index: -1;
}

.wp-element-button.has-neutral-white-background-color{
	background: transparent;
}
.wp-element-button.has-neutral-white-background-color::after{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to top, #7f7f7f 0%, transparent 100%);
	transform: translateY(0);
	transition: all 0.3s;
	border-radius: 5px;
	z-index: -1;
}
.wp-element-button.has-neutral-white-background-color:hover::after{
	transform: translateY(30%);
}
.wp-element-button.has-neutral-white-background-color::before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: var(--neutralWhite);
	z-index: -1;
}
.wp-element-button.has-neutral-white-background-color{
	background-image: linear-gradient(358deg, #7f7f7f 0%, #ffffff 100%);
}
.wp-element-button:hover,
.button:hover{
	background: var(--btnColorHover);
	color: var(--btnTextColorHover);
}
.is-style-outline .wp-element-button,
.outline_button.button{
	background: none;
	border:1px solid currentColor;
	color: currentColor;
}
.is-style-outline .wp-element-button:hover,
.outline_button.button:hover{
	background: var(--btnColor);
	color: var(--btnTextColor);
}
.is-style-readmore .wp-element-button{
	--btnTextColor: var(--customColor500);
	--btnTextColorHover: var(--customColor600);
	font-weight: 800;
	background: none;
	padding: 0;
}
.is-style-readmore .wp-element-button::after{
	content: '';
	width: 18px;
	height: 22px;
	background: url(../images/button_arrow.svg) no-repeat center center / contain;
}
.hover_box{
	transition: all 0.3s;
	&:hover{
		transform: scale(1.05);
	}
}

/*** HEADINGS ***/
.is-style-section_title{
	font-size: 38px;
	line-height: 110%;
	font-family: var(--secondaryFont);
}
h1.is-style-section_title{
	font-size: 62px;
}
.is-style-section_subtitle{
	font-size: 24px;
	font-weight: 600;
	line-height: 130%;
	font-family: var(--secondaryFont);
}
.is-style-checklist{
	padding:0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.is-style-checklist li{
	display: flex;
	align-items: start;
	gap: 10px;
	font-size: 20px;
	font-weight: 600;
}
.is-style-checklist li::before{
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-top: 8px;
	background-image: url(../images/check.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/*** HEADER ***/
#header_widgets_area{
	background: #011222;
	color: var(--neutralWhite);
	padding: 10px 0;
}
#header_placeholder{
	position: relative;
	height: var(--headerHeight);
	background: var(--customColor700);
}
#header{
	position: absolute;
	top:0;
	left:0;
	color: var(--neutralWhite);
    background: #031e38c2;
    transition: background-color 0.5s;
    backdrop-filter: blur(15px);
    z-index: 99;
}
.float_active #header{
	position: fixed;
	box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
}
.admin-bar.float_active #header{
	top: 32px;
}
#header_main{
	height: var(--headerHeight);
}
#header_logo{
	display: inline-block;
    width: 100px;
    max-width: 100%;
}

/*** HEADER MENU ***/
#header_menu{
	list-style: none;
    gap: 25px;
    font-size: 14px;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-transform: uppercase;
}
#header_menu > li{
	position: relative;
	line-height: 60px;
}
#header_menu .menu-item-has-children a{
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
#header_menu .menu-item-has-children a::after{
	content: '';
	width: 20px;
	height: 20px;
	background-image: url(../images/chevron-down-white.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#header_menu .sub-menu{
	position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: var(--neutralWhite);
	color: var(--customColor700);
    border-radius: 6px;
    padding:10px 0;
    list-style: none;
    text-align: left;
	font-size: 14px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
#header_menu > li:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
#header_menu .sub-menu a{
	display: inline-block;
	padding: 5px 15px;
}
#header_menu a{
	transition: all 0.3s;
}
#header_menu a:hover{
	color: var(--customColor500);
}

/*** MOBILE MENU ***/
#menu_trigger{
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
#menu_trigger::after{
	content: '';
	position: absolute;
	top:calc(50% - 1px);
	left: 50%;
	width: 25px;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
	transform: translateX(-50%);
}
.menu_open #menu_trigger::after{
	transform: translateX(100%);
	opacity: 0;
}
#menu_trigger i{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25px;
	height: 16px;
	transform: translate(-50%, -50%);
}
#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: absolute;
	top: 100%;
	left:0;
	width: 100%;
	background: var(--customColor700);
	color: var(--neutralWhite);
	z-index: 90;
	clip-path: inset(0 0 100% 0);
	transition: all 0.3s;
}
.menu_open #mobile_menu_wrapper{
	clip-path: inset(0 0 0 0);
}
body.menu_open{
	overflow: hidden;
}
#mobile_menu{
	display: flex;
    flex-direction: column;
    width: 100%;
	max-height: calc(100vh - var(--headerHeight));
	overflow: auto;
    list-style: none;
    line-height: 100%;
    font-size: 18px;
    font-weight: 400;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}
#mobile_menu > li{
	width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);

}
#mobile_menu > li > *{
	position: relative;
	width: 100%;
    display: block;
    line-height: 30px;
    padding: 10px 12px 10px 30px;
}
#mobile_menu > li:last-child{
	border-bottom: none;
}
#mobile_menu .sub-menu{
	position: relative;
    list-style: none;
    padding: 10px 30px;
    font-size: 80%;
    background: rgba(0, 0, 0, 0.5);
	display: none;
}
#mobile_menu .menu_item_wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 7px;
}
.submenu_trigger{
	display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/chevron-down-white.svg);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.3s;
}
.open .submenu_trigger{
	transform: rotate(180deg);
}
#mobile_menu .sub-menu li{
	width: 100%;
	padding: 5px 0;
}

/*** FOOTER ***/
#footer{
	background: linear-gradient(0deg, var(--customColor700) 0%, var(--customColor600) 100%);
	color: var(--neutralWhite);
}
#footer_widgets_area{
	padding: 70px 0;
}
#footer_widgets_area p,
#footer_widgets_area ul{
	font-size: 14px;
}
#footer_widgets_area .wp-block-social-links{
	font-size: 25px;
}
#footer_bottom_bar{
	padding: 40px 0;
	border-top:1px solid rgba(255, 255, 255, 0.30);
}
#footer_text{
	font-size: 12px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.5);
}
.footer_widget .wp-block-list{
	padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.footer_widget .wp-block-heading{
	font-size: 22px;
    font-weight: normal;
}
.icon_list_item p{
	width: calc(100% - 30px);
}
.footer_widget .has-custom-color-700-background-color{
	background:none !important;
}

/*** STEPS ***/
.step_icon{
	width: 100px;
	padding: 10px 0;
}
.step_label{
	font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
} 
.step_number{
	font-size: 33px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 100%;
}
.box_icon{
	width: 80px;
    height: 80px;
    background: var(--wp--preset--color--custom-color-600);
}

/*** ACCORDION ITEM COMPONENT ***/
.accordion_item_component{
	background-color: var(--neutralWhite);
    border: 1px solid var(--neutral200);
    border-radius: 8px;
}
.accordion_item_component .accordion_item_header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	cursor: pointer;
}
.accordion_item_component .accordion_item_header .wp-block-heading{
	font-size: 16px;
}
.accordion_item_component .accordion_item_header::after{
	content: '';
	width: 30px;
	height: 30px;
	background-image: url(../images/chevron-down.svg);
	background-size: 16px;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.3s;	
}
.accordion_item_component.open .accordion_item_header::after{
	transform: rotate(180deg);
}
.accordion_item_content{
	padding: 0 20px 20px 20px;
	display: none;
}
.services_grid a{
	display: flex;
}
.services_grid a .box_shadowed{
	width: 100%;
	transition: all 0.3s;
}
.services_grid a:hover .box_shadowed{
	background-color: var(--neutral100);
}
.hover_box > *{
	transition: border-color 0.3s;
}
.hover_box:hover > *{
	border-color:var(--customColor600) !important;
}

.map_component_map{
	aspect-ratio: var(--aspect-ratio);
}
/*** MEDIA QUERIES ***/
@media(max-width:992px) {
	:root{
		--headerHeight: 90px;
	}
	#header_logo {
		width: 80px;
	}
	h1.is-style-section_title {
		font-size: 35px;
	}
	.is-style-section_subtitle {
		font-size: 20px;
	}
	.is-style-section_title {
		font-size: 23px;
	}
	.form_wrapper,
	.cta_cover{
		--wp--preset--spacing--30:30px;
		--wp--preset--spacing--40:40px;
	}
	.map_component_map{
		aspect-ratio: var(--aspect-ratio-mobile);
	}
	.wp-block-social-links{
		justify-content: center !important;
	}
	.icon_list_item{
		justify-content: center;
	}
	.icon_list_item p{
		width: auto;
	}
	.wp-container-core-group-is-layout-b617cf18{
		flex-direction: column;
	}
	.wp-block-cover{
		min-height: 300px !important;
	}
}