/*** RESET ***/
:root{
	--gw800: #FF2E70;
	--gw700: #FF9000;
	--gw600: #FFC600;
	--gw500: #00B4BD;
	--gw400: #9366DD;
	--gw300: #89F262;
	--gw200: #19E4FF;

	/* Neutral palette */
	--neutralWhite: #FFFFFF;
	--neutral100: #F5F5F5;
	--neutral200: #D9D9D9;
	--neutral300: #7C7C7C;
	--neutral400: #6D6D6D;
	--neutral500: #000000;

	--customColor500: #A25329;
	--customColor600: #874521;

	--primaryFont: "Work Sans", sans-serif;

	--wp--preset--font-size--small: 12px;
	--wp--preset--font-size--medium: 20px;
	--wp--preset--font-size--large: 25px;
	--wp--preset--font-size--x-large: 30px;
	--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: 1250px;
	--headerHeight: 65px;
}

*{
	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%;
}
p{
	font-size: 16px;
	margin: 0 0 20px 0;
	line-height: 150%;
	font-weight: 300;
}
ul, ol{
	font-size: 16px;
	line-height: 150%;
	margin: 0 0 20px 0;
	font-weight: 300;
}
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);
}
.wp-block-separator.has-neutral-800-background-color{
	border-color: var(--neutral800);
}

/*** TEXT COLORS ***/
/* GW Palette Colors */
.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);
}

/* Neutral Colors */
.text-color---white{
	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---customColor500{
	color: var(--customColor500);
}

/*** BACKGROUND COLORS ***/
/* GW Palette Colors */
.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);
}

/* 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);
}
.bg-color---neutral800{
	background-color: var(--neutral800);
}

/* Custom Colors */
.bg-color---customColor500{
	background-color: var(--customColor500);
}

/*** GRAVITY FORMS ***/
.gform_description:empty,
.gform_heading{
	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);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: var(--btnColor);
	color: var(--btnTextColor);
	border-radius: 0;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	padding: 5px 15px;
	line-height: 20px;
	transition: all 0.3s;
}
.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: var(--btnColor);
}
.is-style-outline .wp-element-button:hover,
.outline_button.button:hover{
	background: var(--btnColor);
	color: var(--btnTextColor);
}

.is-style-section_title{
	font-size: 50px;
	line-height: 120%;
	font-weight: 500;
}
.section_subtitle{
	font-size: 20px;
	color: var(--primaryColor);
	font-weight: normal;
}

/*** HEADER ***/
#header_placeholder{
	height: var(--headerHeight);
}
#header{
	position: fixed;
	top:0;
	left:0;
	color: var(--neutralWhite);
	transition: all 0.5s;
	z-index: 99;
}
.float_active #header{
	background-color: var(--neutralWhite);
	color: var(--neutral500);
}
.admin-bar #header{
	top: 32px;
}
#header_main{
	height: var(--headerHeight);
}
#header_logo{
	display: inline-block;
	position: relative;
	width:115px;
}
#header_logo_dark{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all 0.3s;
}
.float_active #header_logo_dark{
	opacity: 1;
}

/*** HEADER MENU ***/
#header_menu{
	list-style: none;
    gap: 40px;
    font-size: 16px;
	text-transform: uppercase;
}

/*** MOBILE MENU ***/
#mobile_menu_wrapper{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	background-color: rgba(0, 0, 0, 0.8);
	color: var(--neutralWhite);
	z-index: 98;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.menu_open #mobile_menu_wrapper{
	opacity: 1;
	visibility: visible;
}
#mobile_menu{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 25px;
	line-height: 150%;
	gap: 20px;
}
#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, 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);
}

/*** FOOTER ***/
#footer{
	padding:40px 0 0;
	background-color: var(--customColor500);
	color: var(--neutralWhite);
}
#footer_bottom_bar{
	border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    margin-top: 30px;
    font-size: 12px;
    font-weight: 300;
    opacity: 0.5;
}
.footer_widget .gform_wrapper{
	margin-top: 30px;
}
.gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 13px !important;
	grid-column-gap: 20px !important;
}
.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{
	background: none;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: var(--neutral300);
    padding: 4px 10px !important;
}
.gfield_label{
	font-weight: 400 !important;
	color:#AAAAAA;
	display: block !important;
}
.gform_wrapper.gravity-theme textarea{
	height: 30px !important;
}
.gform_button{
	--btnColorHover: var(--customColor500);
	--btnTextColor: var(--customColor500);
	--btnTextColorHover: var(--neutralWhite);
}
.footer_menu{
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 16px;
	font-weight: 300;
}
.footer_menu a{
	display: flex;
	align-items: end;
	gap: 12px;
}
.footer_menu a::after{
	content: '';
	width: 10px;
	height: 10px;
	background: url(../images/menu_arrow.svg) no-repeat center center / contain;
	transition: all 0.3s;
	transform: translateY(-7px);
}

.step_image_wrapper{
	position: relative;
}
.step_image_wrapper::after{
	content: '';
	position: absolute;
	top: 0;
	right: -60px;
	width: 1px;
	height: 100%;
	background-color: var(--neutral400);
}

.vertical_accordion_items_wrapper{
	display: flex;
    flex-direction: row;
    height: 620px;
    overflow: hidden;
    gap: 20px;
}
.vertical_accordion_item{
	position: relative;
	flex: 1;
	min-width: 16.66%;
	transition: all 0.8s ease;
	cursor: pointer;
	padding-bottom: 30px;
}
.vertical_accordion_item.active{
	flex: 3;
	min-width: 50%;
}
.vertical_accordion_item_image{
	height: 100%;
	padding: 30px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	position: relative;
}
.vertical_accordion_item_image h3{
	color: var(--neutralWhite);
	font-size: 50px;
	font-weight: 400;
	line-height: 120%;
	text-transform: uppercase;
	clip-path: inset(0 100% 0 0);
	transition: all 0.5s ease 500ms;
}
.vertical_accordion_item.active .vertical_accordion_item_image h3{
	clip-path: inset(0 0 0 0);
}
.vertical_accordion_item_desc{
	position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
	transform: translateX(30px);
}
.vertical_accordion_item.active .vertical_accordion_item_desc{
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/*** VIDEO PLAYER ***/
.video_wrapper{
	position: relative;
}
.video_overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.video_active .video_overlay{
	opacity: 1;
	visibility: visible;
}
.video_overlay video{
	width: 100%;
    height: 100%;
    object-fit: cover;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	transform: scale(0.8);
}
.video_active video{
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.close_video{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--neutral500);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 101;
}
.close_video:hover{
	background: var(--neutralWhite);
	transform: scale(1.1);
}


@media(max-width:992px) {
	:root{
		--wp--preset--font-size--medium: 16px;
		--wp--preset--font-size--large: 18px;
	}
	.is-style-section_title {
		font-size: 40px;
	}
	.wp-block-social-links {
		justify-content: center !important;
	}
	.gform_wrapper.gravity-theme .gfield_label{
		text-align: left;
	}
	.vertical_accordion_items_wrapper{
		height: 400px;
		flex-direction: column;
	}
	.vertical_accordion_item{
		min-width: auto;
		min-height: 16.66%;
	}
	.vertical_accordion_item.active{
		min-width: auto;
		min-height: 50%;
	}
	.vertical_accordion_item_image{
		padding: 20px;
	}
	.vertical_accordion_item_image h3{
		font-size: 30px;
	}
	.vertical_accordion_items_wrapper {
		gap: 10px;
	}
}

@media(max-width:768px) {
	.vertical_accordion_items_wrapper{
		height: 520px;
		flex-direction: column;
	}
	.vertical_accordion_item{
		min-width: auto;
		min-height: 16.66%;
	}
	.vertical_accordion_item.active{
		min-width: auto;
		min-height: 50%;
	}
	.vertical_accordion_item_image{
		padding: 15px;
	}
	.vertical_accordion_item_image h3{
		font-size: 20px;
	}
	.vertical_accordion_item {
		padding-bottom: 20px;
	}
	.vertical_accordion_item_desc{
		margin-top: 0;
		font-size: 10px;
	}
	.footer_widget .wp-block-buttons{
		justify-content: center !important;
	}
	.footer_menu a {
		justify-content: center;
	}
	
	/* Video player responsive */
	.video_overlay video{
		width: 95%;
		height: 85%;
	}
	.close_video{
		top: 15px;
		right: 15px;
		width: 35px;
		height: 35px;
		font-size: 20px;
	}
}