/*** RESET ***/
:root{
	--gw800: #FF2E70;
	--gw700: #FF9000;
	--gw600: #FFC600;
	--gw500: #00B4BD;
	--gw400: #9366DD;
	--gw300: #89F262;
	--gw200: #19E4FF;

	--neutralWhite: #FFFFFF;
	--neutral100: #f7f7f7;
	--neutral200: #f2f2f2;
	--neutral300: #c2c2c2;
	--neutral400: #797979;
	--neutral500: #7a7a7a;

	--customColor400: #82bfed;
	--customColor500: #0d3e65;
	--customColor600: #041524;

	--primaryFont: "Poppins", sans-serif;
	--secondaryFont: "Libertinus Sans", sans-serif;

	--swiper-theme-color: var(--customColor600);

	--wp--preset--font-size--small: 12px;
	--wp--preset--font-size--medium: 16px;
	--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: 1320px;
	--headerHeight: 90px;
}

*{
	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;
}
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%);
}

/* COLUMNS */
.wp-block-columns.row{
	flex-wrap: wrap !important;
	gap:0;
}
.wp-block-column.col,
.wp-block-column[class*="col-"] {
	flex-basis: unset !important;
	flex-grow: unset !important;
	margin-top: var(--bs-gutter-y);
}
.wp-block-columns:last-child{
	margin-bottom: 0;
}

/* 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: var(--containerWidth);
	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 ***/
.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);
}
.text-color---customColor400{
	color: var(--customColor400);
}
.text-color---customColor500{
	color: var(--customColor500);
}
.text-color---customColor600{
	color: var(--customColor600);
}
.text-color---gw800{
	color: var(--gw800);
}
.text-color---gw700{
	color: var(--gw700);
}
.text-color---gw600{
	color: var(--gw600);
}
.text-color---gw500{
	color: var(--gw500);
}
.text-color---gw400{
	color: var(--gw400);
}
.text-color---gw300{
	color: var(--gw300);
}
.text-color---gw200{
	color: var(--gw200);
}

/*** BACKGROUND 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);
}
.bg-color---customColor400{
	background-color: var(--customColor400);
}
.bg-color---customColor500{
	background-color: var(--customColor500);
}
.bg-color---customColor600{
	background-color: var(--customColor600);
}
.bg-color---gw800{
	background-color: var(--gw800);
}
.bg-color---gw700{
	background-color: var(--gw700);
}
.bg-color---gw600{
	background-color: var(--gw600);
}
.bg-color---gw500{
	background-color: var(--gw500);
}
.bg-color---gw400{
	background-color: var(--gw400);
}
.bg-color---gw300{
	background-color: var(--gw300);
}
.bg-color---gw200{
	background-color: var(--gw200);
}

/*** GRAVITY FORMS ***/
.gform_description:empty,
.gform_heading{
	display: none !important;
}
.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 input[type=number],
.form_wrapper .gform_wrapper.gravity-theme textarea{
	border-radius: 8px;
	height: 50px;
	border:1px solid var(--neutral300);
}
.form_wrapper .gform_wrapper.gravity-theme .gfield_label{
	display: block;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 10px;
	font-weight: normal;
}
.form_wrapper .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 20px;
}

/*** MISC ***/
.container{
	max-width: var(--containerWidth) !important;
}
.breadcrumb{
	gap:10px;
}
.breadcrumb > p:not(:last-child)::after{
	content: '>';
	margin: 0 0 0 10px;
}

.wp-element-button,
.button{
	--btnColor: var(--customColor500);
	--btnColorHover: color-mix(in srgb, var(--btnColor) 90%, #000000);
	--btnTextColor: var(--neutralWhite);
	--btnTextColorHover: var(--neutralWhite);
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: var(--btnColor);
	color: var(--btnTextColor);
	padding: 15px 30px;
	font-size: 18px;
	line-height: 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s;

	&:hover{
		background-color: var(--btnColorHover);
		color: var(--btnTextColorHover);
	}
}
.is-style-outline .wp-element-button{
	background: none;
	border:1px solid var(--btnColor);
	color: var(--btnColor);

	&:hover{
		background-color: var(--btnColor);
		color: var(--btnTextColor);
	}
}
.is-style-secondary_fill .wp-element-button,
.is-style-secondary_outline .wp-element-button{
	--btnColor: var(--neutralWhite);
	--btnTextColor: var(--customColor500);
	--btnTextColorHover: var(--customColor500);
}

.is-style-accent_fill .wp-element-button,
.is-style-accent_outline .wp-element-button{
	--btnColor: var(--customColor400);
}

/*** HEADINGS ***/
.is-style-section_title{
	font-size: 40px;
	text-transform: uppercase;
	line-height: 110%;
}
h1.is-style-section_title{
	font-size: 55px;
}
h3.is-style-section_title{
	font-size: 30px;
}
.is-style-section_subtitle{
	font-size: 23px;
	font-weight: normal;
	line-height: 130%;
}

/*** CHECKLIST ***/
.is-style-checklist{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.is-style-checklist li{
	margin:0;
	padding-left: 25px;
	background-image: url(../images/check.svg);
	background-size: 20px;
	background-position: left center;
	background-repeat: no-repeat;
}

.box_icon{
	width: 70px;
	height: 70px;
	background-color: var(--neutralWhite);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.box_icon img{
	width: 30px;
}
.embeded_form{
	width: 100%; 
	height: 100%; 
	min-height: 750px; 
	min-width: 400px; 
	max-width: 100%; 
	margin:0; 
	border-width: 0;
}

/*** HEADER ***/
#header_placeholder{
	height: var(--headerHeight);
}
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--customColor600);
	color: var(--neutralWhite);
	z-index: 99;
}
.admin-bar #header{
	top: 32px;
}
#header_main{
	height: var(--headerHeight);
}
#header_logo{
	display: inline-block;
	max-width: 100%;
	width: 90px;
}
#header_logo img{
	float:left;
}


/*** HEADER MENU ***/
#header_menu{
	list-style: none;
    gap: 20px;
    font-size: 16px;
    font-weight: 300;
}
#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/down-white.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#header_menu .sub-menu{
	position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: var(--neutralWhite);
	color: var(--neutral500);
    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(--neutral300);
}
.header_phone{
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
#header_menu .header_phone a,
#header_menu .header_phone a:hover{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	background-color:var(--customColor400);
	color: var(--neutralWhite);
	border-radius: 5px;
	padding: 10px;
}
.header_phone a::before{
	content: '';
	width: 20px;
	height: 20px;
	background-image: url(../images/phone-white.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#header_menu > li.current_page_item > a{
	color: var(--customColor400);
}
#mobile_menu .header_phone{
	display: none;
}
#header_menu .sub-menu .current_page_item{
	color: var(--customColor500);
	font-weight: 600;
}

/*** MOBILE MENU ***/
#menu_trigger{
	position: relative;
	width: 40px;
	height: 40px;
	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, 5px) 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);
}

.menu_open{
	overflow: hidden;
}
#mobile_menu_wrapper{
	position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:rgb(0 0 0 / 85%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--neutralWhite);
    padding: 0 40px;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.menu_open #mobile_menu_wrapper{
	opacity: 1;
	visibility: visible;
}
#mobile_menu{
	font-size: 25px;
    line-height: 150%;
    max-height: calc(100vh - 200px);
    gap: 20px;
    list-style: none;
    padding: 0;
    overflow: auto;
}
#mobile_menu > li.menu-item-has-children > a{
	padding-right: 25px;
    position: relative;
    margin-right: -25px;
}
#mobile_menu > li.menu-item-has-children > a::after{
	content: '';
	position: absolute;
	top: calc(50% - 10px);
	right: 0;
	width: 20px;
	height: 20px;
	background-image: url(../images/down.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.3s;
}
#mobile_menu > li.menu-item-has-children.open > a::after{
	transform: rotate(180deg);
}
#mobile_menu .sub-menu{
	background: var(--red500);
    list-style: none;
    padding: 10px 15px;
    border-radius: 6px;
	display: none;
}
#mobile_menu .sub-menu li{
	padding: 5px 0;
}

/*** FOOTER ***/
#footer{
	border-top: 1px solid var(--neutral200);
}
#footer_widgets_area_wrapper{
	padding: 70px 0;
	font-size: 14px;
	overflow: hidden;
}
#footer_widgets_area_wrapper p,
#footer_widgets_area_wrapper ul{
	font-size: 14px;
}
#footer_bottom_bar{
	font-size: 12px;
	padding: 30px 0;
	border-top: 1px solid var(--neutral200);
}
#footer_widgets_area_wrapper .wp-block-social-links {
	font-size: 30px;
    margin-top: 20px;
}
.footer_widget .wp-block-list{
	padding: 0;
    list-style: none;
}
.footer_widget .wp-block-heading{
	font-size: 22px;
    font-weight: normal;
}
.icon_list_item p{
	width: calc(100% - 30px);
}

#get_estimate_section{
	overflow: hidden;
}

/*** NUMBER BOX ***/
.number_icon{
	display: inline-flex;
    width: 100px;
    height: 100px;
    background: var(--neutral200);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    font-weight: bold;
	padding: 0;
}
.number_icon.has-large-font-size{
	width: 80px;
	height: 80px;
}
.numbers_box_title{
	font-size: 23px;
    font-weight: 400;
}

/*** IMAGES SLIDER ***/
.images_slider_item{
	aspect-ratio: 1 / 0.6;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.slider_nav{
	position: absolute;
	top: calc(50% - 20px);
	width: 50px;
	height: 50px;
	background-color: var(--customColor500);
	background-image: url(../images/arrow-right.svg);
	background-size: 30px;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	z-index: 2;
}
.slider_nav_prev{
	left: 0;
	border-radius: 90px 0 0 90px;
	transform: scaleX(-1);
}
.slider_nav_next{
	right: 0;
	border-radius: 99px 0 0 99px;
}
.images_slider{
	border-radius: 10px;
}
.fleet_box_title{
	text-transform: uppercase;
    font-size: 24px;
}

/*** MAP COMPONENT ***/
.map_component {
	width: 100%;
	margin: 20px 0;
}

.map_component_inner {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map_component_map {
	width: 100%;
	min-height: 300px;
	height: 400px;
}

/* Info Window Styles */
.map-info-window {
	padding: 10px;
	max-width: 250px;
}

.map-info-window h4 {
	margin: 0 0 8px 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--neutral600);
}

.map-info-window p {
	margin: 0 0 5px 0;
	font-size: 14px;
	line-height: 1.4;
	color: var(--neutral500);
}

.map-info-window p:last-child {
	margin-bottom: 0;
}

.map-info-window small {
	font-size: 12px;
	color: var(--neutral400);
}

/*** ACCORDION ITEM COMPONENT ***/
.accordion_item_component{
	background-color: var(--neutralWhite);
    border-radius: 8px;
    border: 1px solid var(--neutral200);
}
.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/plus.svg);
	background-size: 16px;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.3s;	
}
.open .accordion_item_header::after{
	transform: rotate(45deg);
}
.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);
}

/*** REGILAR PAGES ***/
.page_content_wrapper{
	padding: 70px 0;
}
.page_title{
	font-size: 40px;
	margin-bottom: 50px;
}

/*** ARCHIVE PAGES ***/
.wp-block-categories-list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}
.wp-block-categories-list li{
	display: inline-block;
	padding: 5px 15px;
	background-color: var(--neutral100);
	border-radius: 6px;
	font-size: 12px;
}

/*** SINGLE POSTS ***/
.post_single_landing{
	padding: 200px 0;
    color: #FFF;
    background-size: cover;
    background-position: center;
}
.post_single_landing::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.post_single_landing .container{
	position: relative;
	z-index: 2;
}
.section_title{
	font-size: 40px;
}
.share_links > *{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: var(--neutral200);
	border-radius: 50%;
	transition: all 0.3s;
}
.share_links > *:hover{
	background-color: var(--customColor500);
}
.related_posts_section{
	padding: 70px 0;
}

/*** CUSTOM IFRAME COMPONENT ***/
.custom_iframe_component iframe{
	width: 100%;
	height: 940px;
	border: none;
	overflow: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}
.custom_iframe_component iframe::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}

/*** MODAL ***/
.modal{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
}
.modal.open{
	visibility: visible;
	opacity: 1;
}
.modal_overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.modal_content{
	position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 40px);
    max-width: 1000px;
    max-height: calc(100vh - 120px);
    overflow: auto;
    background-color: var(--neutralWhite);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
}
.modal_header{
	padding: 20px;
	border-bottom: 1px solid var(--neutral150);
}
.modal_body{
	padding: 20px;
}
.modal_close{
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url(../images/close.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
.modal_form .gform-theme--foundation .gform_fields{
	row-gap:10px;
}

.logos_grid .wp-block-group{
	max-width: 150px;
}
.bbb_logo{
	padding: 10px;
    border-radius: 10px;
    background: #071424;
    display: inline-block;
}

@media(max-width:992px) {
	:root{
		--headerHeight: 70px;
	}
	h1.is-style-section_title {
		font-size: 32px;
	}
	.is-style-section_title {
		font-size: 32px;
	}
	.is-style-section_subtitle {
		font-size: 20px;
	}
	.admin-bar #header {
		top: 46px;
	}
	#header_logo{
		width: 70px;
	}
	#header_menu li:not(.header_phone){
		display: none;
	}
	.header_phone a {
		font-size: 13px;
	}
	.header_phone a::before {
		width: 15px;
		height: 15px;
	}
	#hero_form_wrapper{
		padding: 0 !important;
	}
	#hero_form_wrapper iframe{
		min-height: 750px;
		min-width: 100%;
	}
	.wp-block-cover{
		padding: 80px 0 !important;
	}

	.custom_iframe_component iframe{
		height: 900px;
	}
	.wp-container-core-group-is-layout-13 {
		grid-template-columns: repeat(auto-fill, minmax(min(70px, 100%), 1fr)) !important;
	}
	#mobile_menu > li.menu-item-has-children > a::after{
		background-image: url(../images/down-white.svg);
	}
	
	.wp-container-core-group-is-layout-f0d78ca6 {
		gap: 10px !important;
	}
	.logos_grid .wp-block-group {
		max-width: 110px !important;
	}
	.checkboxes_grid {
        gap: 60px;
        max-width: 250px;
        margin: 0 auto;
    }
	.embeded_form{
		min-height: 500px;
	}
}