/**
 * GW Blueprint - Main Stylesheet
 * 
 * This file contains base styles and utilities for the theme
 */

/* CSS Variables for easy customization */
/* Reset and Base Styles */
:root{
	--header-height: 80px;
}
* {
	box-sizing: border-box;
}
body {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	overflow-x: clip;
}

/* Typography */
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;
}

input,
select,
textarea,
button{
	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);
}

/* Button Styles */
.wp-element-button,
.button{
	--btnColor: var(--wp--preset--color--neutral-500);
	--btnColorHover: color-mix(in srgb, var(--btnColor) 85%, #000000);
	--btnTextColor: var(--wp--preset--color--neutral-white);
	--btnTextColorHover: var(--wp--preset--color--neutral-white);
	background: var(--btnColor);
	color: var(--btnTextColor);

	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap:10px;
	cursor: pointer;
	transition: all 0.3s;

	&:hover{
		background: var(--btnColorHover);
		color: var(--btnTextColorHover);
	}
}
.button{
	padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
	border: none;
}

/*** LINK WRAPPER STYLES ***/
.link_wrapper {
	color: currentColor;
	text-decoration: none;
}
.is-style-secondary-fill .wp-element-button,
.is-style-secondary-outline .wp-element-button{
	--btnColor: var(--wp--preset--color--neutral-white);
	--btnColorHover: color-mix(in srgb, var(--btnColor) 85%, #000000);
	--btnTextColor: var(--wp--preset--color--neutral-500);
	--btnTextColorHover: var(--wp--preset--color--neutral-500);
}

.is-style-accent-fill .wp-element-button,
.is-style-accent-outline .wp-element-button{
	--btnColor: var(--wp--preset--color--custom-color-500);
	--btnColorHover: color-mix(in srgb, var(--btnColor) 85%, #000000);
	--btnTextColor: var(--wp--preset--color--neutral-white);
	--btnTextColorHover: var(--wp--preset--color--neutral-white);
}

.is-style-outline .wp-element-button,
.is-style-accent-outline .wp-element-button,
.is-style-secondary-outline .wp-element-button{
	background: none;
	border: 1px solid var(--btnColor);
	color: var(--btnColor);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	&:hover{
		background: var(--btnColor);
		color: var(--btnTextColorHover);
	}
}

.is-style-plus-button .wp-element-button{
	background: none;
	color: var(--wp--preset--color--neutral-500);
	font-size: 30px;
	font-weight: 200;
}

.is-style-readmore-full .wp-element-button{
	background: none;
	color: var(--wp--preset--color--neutral-500);
	justify-content: space-between;
	width: 100%;
	padding:0;
	font-weight: 600;
	text-transform: none;

	&::after{
		content: '';
		display: inline-block;
		width:20px;
		height:20px;
		background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPjxwYXRoIGQ9Im0yMi43MDcgMTEuMjkzLTctN2ExIDEgMCAwIDAtMS40MTQgMS40MTRMMTkuNTg2IDExSDJhMSAxIDAgMCAwIDAgMmgxNy41ODZsLTUuMjkzIDUuMjkzYTEgMSAwIDEgMCAxLjQxNCAxLjQxNGw3LTdhMSAxIDAgMCAwIDAtMS40MTR6IiBmaWxsPSIjM2U0MzQ5IiBvcGFjaXR5PSIxIiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIj48L3BhdGg+PC9nPjwvc3ZnPg==);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}
}

/*** HEADINGS ***/
.is-style-section_title{
	font-size: var(--wp--preset--font-size--display-sm);
	line-height: 110%;
	text-transform: uppercase;
	letter-spacing: 3px;
}
h1.is-style-section_title{
	font-size: var(--wp--preset--font-size--display-lg);
	letter-spacing: 0;
}
h3.is-style-section_title{
	font-size: var(--wp--preset--font-size--display-md);
}
.is-style-section_subtitle{
	font-size: var(--wp--preset--font-size--xl);
	font-weight: normal;
	line-height: 130%;
	letter-spacing: 2px;
}

/*** ICONS ***/
.fi{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
}

/*** HELPERS ***/
.w-100{
	width: 100%;
}

/*** SEPARATOR ***/
.is-style-small_title_decoration{
	width: 40px;
	height: 1px;
	background: var(--wp--preset--color--neutral-200);
}
.is-style-big_title_decoration{
	width: 90px;
	height: 7px;
	margin-inline: 0 !important;
	background: var(--wp--preset--color--neutral-200);
}

/*** 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=password],
.form_wrapper .gform_wrapper.gravity-theme input[type=tel],
.form_wrapper .gform_wrapper.gravity-theme input[type=number],
.form_wrapper .gform_wrapper.gravity-theme select,
.form_wrapper .gform_wrapper.gravity-theme textarea{
	border-radius: 0;
    height: 50px;
    border: 1px solid var(--wp--preset--color--neutral-100);
    background: var(--wp--preset--color--neutral-100);
    padding: 10px 20px;
	font-family: var(--wp--preset--font-family--montserrat);
}
.form_wrapper .gform_wrapper.gravity-theme .gfield_label{
	display: block;
	font-size: var(--wp--preset--font-size--md);
	font-weight: 400;
	margin-bottom: 10px;
	font-weight: normal;
}
.form_wrapper .gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: var(--wp--preset--spacing--ml);
}
.form_wrapper .gform_footer{
	justify-content: center;
	padding: 0 !important;
	margin-top:30px !important;
}
.form_wrapper .gform_footer .button{
	margin:0 !important;
}

/*** HEADER ***/
header.wp-block-template-part{
	position: relative;
    background: var(--wp--preset--color--neutral-600);
    z-index: 99;
}
.page-template-fixed-header header.wp-block-template-part{
    margin-bottom: calc(var(--header-height) * -1);
	background:none;
}
#header_wrapper{
	position: relative;
	height: var(--header-height);
	z-index: 99;
}
#header_main{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: calc(var(--header-height) - 1px);
	color: var(--wp--preset--color--neutral-white);
}
#header_main::before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

#header_main.dark-header{
	color: var(--wp--preset--color--neutral-white);
}
#header_main.white-header{
	color: var(--wp--preset--color--neutral-500);
}
.float_active #header_main{
	position: fixed;
	box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.2);
}
.float_active #header_main::before{
	backdrop-filter: blur(20px);
}
.admin-bar.float_active #header_main{
	top:32px;
}
#glitchwood_logo{
	display: flex;
	width: 240px;
	aspect-ratio: 240 / 39;
	color: currentColor;
}
#header_user_icon{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 40px;
	height: 40px;
	color:currentColor;
	font-size: 25px;
	text-decoration: none;
	transition: all 0.3s;

	&:hover{
		color: var(--wp--preset--color--custom-color-500);
	}
}

/*** HEADER MENU ***/
#header_menu{
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 35px;
	font-size: 13px;
	text-transform: uppercase;
}
#header_menu li{
	position: relative;
}
#header_menu > li >a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	gap: 5px;
    text-decoration: none;
    color: currentColor;
    transition: all 0.3s;
}
#header_menu a:hover{
    color: var(--wp--preset--color--custom-color-500);
}
#header_menu .sub-menu{
	position: absolute;
	top: 100%;
	left: 0;
	width: 250px;
	padding:10px 15px;
	display: flex;
	flex-direction: column;
	list-style: none;
	border-radius: 8px;
	box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.2);
	background: rgba(255,255,255, 0.3);
	backdrop-filter: blur(10px);
	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 li{
	margin: 0;
}
#header_menu .sub-menu a{
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0;
	gap: 5px;
	text-decoration: none;
    color: currentColor;
}
#header_menu .sub-menu a:hover{
	color: var(--wp--preset--color--custom-color-500);
}

/*** MOBILE MENU COMPONENT ***/
#menu_trigger{
	position: relative;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
#menu_trigger::after{
	content: '';
	position: absolute;
	top:calc(50% - 1px);
	left: calc(50% - 12.5px);
	width: 25px;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger::after{
	transform: translateX(100%);
	opacity: 0;
}
#menu_trigger i{
	position: relative;
	display: block;
	width: 25px;
	height: 16px;
}
#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, -9px) rotate(-45deg);
}

#mobile_menu_container{
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--s);
	top: 100%;
	left: 0;
	width: 100%;
	border-top: 1px solid var(--wp--preset--color--neutral-200);
	background: var(--wp--preset--color--neutral-white);
	color: var(--wp--preset--color--neutral-500);
	padding: 0;
	clip-path: inset(0 0 100% 0);
	transition: all 0.3s;
}
.menu_open #mobile_menu_container{
	clip-path: inset(0 0 0 0);
}
#header_menu_mobile{
	list-style: none;
	padding:15px 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}
#header_menu_mobile a{
	text-decoration: none;
	color: currentColor;
}

#header_menu_mobile > li > *{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	padding: 5px 15px 5px 20px;
	font-size: 18px;
}

.submenu_trigger{
	display: inline-block;
	width: 25px;
	height: 25px;
	cursor: pointer;
	background-image: url('data:image/svg+xml;utf8,<svg height="512" viewBox="0 0 24 24" width="512" xmlns="http://www.w3.org/2000/svg"><g><path d="m12 16a1 1 0 0 1 -.71-.29l-6-6a1 1 0 0 1 1.42-1.42l5.29 5.3 5.29-5.29a1 1 0 0 1 1.41 1.41l-6 6a1 1 0 0 1 -.7.29z"></path></g></svg>');
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.3s;
}
.open .submenu_trigger{
	transform: rotate(180deg);
}
#header_menu_mobile .sub-menu{
	position: relative;
	display: none;
	list-style: none;
	padding:5px 0;
	margin: 0;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.05);
}
#header_menu_mobile .sub-menu li a{
	display: block;
	padding: 5px 30px;
}

/*** FOOTER ***/
footer.wp-block-template-part{
	margin:0;
}
footer.wp-block-template-part a{
	transition: all 0.3s;
}
#footer_icons a{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--wp--preset--color--neutral-400);
	color: var(--wp--preset--color--neutral-400);
	transition: all 0.3s;

	&:hover{
		border-color: var(--wp--preset--color--custom-color-500);
		color: var(--wp--preset--color--custom-color-500);
	}
}

.glitchwood_footer_blocks{
	width: 100%;
	max-width: 180px;
	display: flex;
	justify-content: space-between;
	align-items: center;

	span{
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		&:hover::before{
			transform: scaleY(1.5);
			transition: all 0.3s;
		}

		&::before{
			content:'';
			display: inline-block;
			margin-inline: 10px;
			width: 6px;
			height: 17px;
			transition: all 1s;
		}


		&:nth-child(1)::before{
			background: var(--wp--preset--color--custom-color-800);
		}
		&:nth-child(2)::before{
			background: var(--wp--preset--color--custom-color-700);
		}
		&:nth-child(3)::before{
			background: var(--wp--preset--color--custom-color-600);
		}
		&:nth-child(4)::before{
			background: var(--wp--preset--color--custom-color-500);
		}
		&:nth-child(5)::before{
			background: var(--wp--preset--color--custom-color-400);
		}
		&:nth-child(6)::before{
			background: var(--wp--preset--color--custom-color-300);
		}
		&:nth-child(7)::before{
			background: var(--wp--preset--color--custom-color-200);
		}
	}
}

/*** HOME HERO ***/
#home_hero{
	padding:120px 0;
	height: 100vh;
}
.admin-bar #home_hero{
	height: calc(100vh - 32px);
}
#home_hero::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(to top, rgba(255,255,255, 1), transparent);
}
#hero_intro_2{
	position: absolute;
    bottom: 120px;
    right: 0;
}

/*** WAVES BG ***/
.waves_bg{
	position: relative;
}
.waves_bg::after{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wp--preset--color--neutral-700);
    opacity: 0.7;
}
.waves_bg > *{
	position: relative;
	z-index: 2;
}
.waves_bg canvas{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	height: 100%;
	margin: 0;
	z-index: 1;
}

/*** CTA SECTION ***/
#glitchwood_matrix_bg{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
	margin: 0;
	overflow: hidden;
	opacity: 0.3;
}
#matrix_cta_section{
	position: relative;
}
#matrix_cta_section::after{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% + 120px);
    height: 100%;
    background: var(--wp--preset--color--custom-color-500);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
#matrix_main_content{
	position: relative;
	z-index: 2;
}

/*** LOGOS MARQUEE ***/
.logos_marquee_slider{
	overflow: hidden;
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0%,
		white 7%,
		white 93%,
		transparent 100%
	);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	
	mask-image: linear-gradient(
		to right,
		transparent 0%,
		white 7%,
		white 93%,
		transparent 100%
	);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
}
.logos-marquee__item_inner{
	display: flex;
	height: 60px;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 15px;
}
.logos-marquee__image {
	max-height: 60px;
	width: auto;
}

/*** GW FRAMED BG VIDEO ***/
.glitchwood_framed_bg_video{
	position: relative;
	aspect-ratio: 16/8;
	overflow: hidden;
}
.glitchwood_framed_bg_video_video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.glitchwood_framed_bg_video_frames{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.glitchwood_framed_bg_video_frame{
	position: relative;
	width: 100%;
	height: 100%;
	border:8px solid #FFF;
}
.glitchwood_framed_bg_video_frame .frame_top{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 10%;
	background: #FFF;
}
.glitchwood_framed_bg_video_frame .frame_bottom{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10%;
	background: #FFF;
}
.glitchwood_framed_bg_video_frame:nth-child(1){
	.frame_top{
		height: 10%;
	}
	.frame_bottom{
		height: 10%;
	}
}
.glitchwood_framed_bg_video_frame:nth-child(2){
	.frame_top{
		height: 20%;
	}
	.frame_bottom{
		height: 20%;
	}
}
.glitchwood_framed_bg_video_frame:nth-child(3){
	.frame_top{
		height: 15%;
	}
	.frame_bottom{
		height: 0%;
	}
}
.glitchwood_framed_bg_video_frame:nth-child(4){
	.frame_top{
		height: 0%;
	}
	.frame_bottom{
		height: 15%;
	}
}
.glitchwood_framed_bg_video_frame:nth-child(5){
	.frame_top{
		height: 50%;
	}
	.frame_bottom{
		height: 0%;
	}
}
.glitchwood_framed_bg_video_frame:nth-child(6){
	.frame_top{
		height: 25%;
	}
	.frame_bottom{
		height: 5%;
	}
}

/*** BG LINES ***/
.bg_lines{
	position: relative;
	overflow: hidden;
}
.bg_lines::before{
	content: '';
	position: absolute;
	top: 80px;
	left: 0;
	width: 100%;
	height: calc(100% - 160px);
	border-width: 1px 0;
	border-style: solid;
	border-color: var(--wp--preset--color--neutral-200);
	pointer-events: none;
}
.bg_lines::after{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	max-width: 720px;
	height: 100%;
	border-width: 0 1px;
	border-style: solid;
	border-color: var(--wp--preset--color--neutral-200);
	transform: translateX(-50%);
	pointer-events: none;
}
.has-neutral-500-background-color.bg_lines::before,
.has-neutral-500-background-color.bg_lines::after{
	border-color: rgba(0, 0, 0, 0.2);
}
.borders_decoration{
	position: relative;
}
.borders_decoration::before{
	content: '';
	position: absolute;
	top: -8px;
	left: -9px;
	width: 16px;
	height: 16px;
	z-index: 9;
	border-radius: 3px;
	opacity: 0.3;
	background: var(--wp--preset--color--neutral-600);
}
.borders_decoration::after{
	content: '';
    position: absolute;
    bottom: -9px;
    right: -9px;
    width: 16px;
    height: 16px;
    z-index: 9;
    border-radius: 3px;
    opacity: 0.3;
    background: var(--wp--preset--color--neutral-600);
}
.has-neutral-500-background-color .borders_decoration::before,
.has-neutral-500-background-color .borders_decoration::after{
	background:rgba(0, 0, 0, 0.9);
}
.has-neutral-500-background-color .borders_decoration{
	background: rgba(0, 0, 0, 0.2);
}

/*** HEROS SECTION ***/
.dark_logo_bg{
	background-position: right -150px bottom -50px !important;
}

/*** PROJECTS SLIDER ***/
.projects_slider_component{
	overflow: hidden;
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0%,
		white 25%,
		white 75%,
		transparent 100%
	);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	
	mask-image: linear-gradient(
		to right,
		transparent 0%,
		white 25%,
		white 75%,
		transparent 100%
	);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
}
.projects_slider_item{
	text-align: center;
}
.projects_slider_item_image{
	width: 100%;
	aspect-ratio: 16/9;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 30px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.projects_slider_item_content{
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.projects_slider_item_title{
	font-size: 20px;
	line-height: 1.1;
	margin:0;
}
.projects_slider_item_subtitle{
	font-size: 14px;
	line-height: 1.1;
	color: var(--wp--preset--color--neutral-300);
	margin:0;
}
.projects_slider_item_tags{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 0;
}

/*** TESTIMONIALS CAROUSEL ***/
.testimonials_carousel_component{
	overflow: hidden;
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0%,
		white 25%,
		white 75%,
		transparent 100%
	);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	
	mask-image: linear-gradient(
		to right,
		transparent 0%,
		white 25%,
		white 75%,
		transparent 100%
	);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
}
.testimonials_carousel_item{
	position: relative;
	text-align: center;
	padding: 40px;
	margin:25px;
	background: var(--wp--preset--color--neutral-white);
	border:1px solid var(--wp--preset--color--neutral-200);

	&::before{
		content: '';
		position: absolute;
		top: -45px;
		left: -25px;
		width: 130px;
		height: 130px;
		background-image: url(../images/quote-right.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		z-index: 1;
	}

	.testimonials_carousel_swiper .swiper-slide{
		height: auto;
		display: flex;
	}
	
	.testimonials_carousel_item_title{
		position: relative;
		z-index: 2;
		font-size: 24px;
		line-height: 1.3;
		font-weight: 600;
		margin:0;
	}
	.testimonials_carousel_item_subtitle{
		position: relative;
		z-index: 2;
		font-size: 14px;
		color: var(--wp--preset--color--neutral-300);
	}
	.testimonials_carousel_item_content{
		position: relative;
		z-index: 2;
		margin-top: 20px;
		padding-top: 20px;
		color: var(--wp--preset--color--neutral-400);

		&::before{
			content: '';
			position: absolute;
			top: 0;
			left: 50%;
			width: 70px;
			height: 1px;
			background: var(--wp--preset--color--custom-color-500);
			transform: translateX(-50%);
			z-index: 2;
		}
	}
	
}


/*** ACCORDION ***/
.accordion_item_header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	cursor: pointer;
	& > .wp-block-heading{
		line-height: 1.7;
	}
	&::after{
		content: '';
        display: inline-block;
        width: 30px;
        height: 30px;
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxwYXRoIGQ9Ik0xOS4wNjEgNy44NTRhMS41IDEuNSAwIDAgMC0yLjEyMiAwbC00LjU4NiA0LjU4NWEuNS41IDAgMCAxLS43MDcgMEw3LjA2MSA3Ljg1NGExLjUgMS41IDAgMCAwLTIuMTIyIDIuMTIxbDQuNTg2IDQuNTg2YTMuNSAzLjUgMCAwIDAgNC45NSAwbDQuNTg2LTQuNTg2YTEuNSAxLjUgMCAwIDAgMC0yLjEyMVoiIGZpbGw9IiMwMDAwMDAiIG9wYWNpdHk9IjEiIGRhdGEtb3JpZ2luYWw9IiMwMDAwMDAiPjwvcGF0aD48L2c+PC9zdmc+);
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: center;
        transition: all 0.3s;
	}
	&.open::after{
		transform: rotate(180deg);
	}
}
.accordion_item_body{
	display: none;
}

/*** FAQS SECTION ***/
.faqs_wrapper{
	position: relative;
	display: flex;
	align-items: center;
	gap: 40px;
}
.faqs_wrapper::before{
	content: '';
	position: absolute;
	top: 50%;
	left: -164px;
	width: 124px;
	aspect-ratio: 124 / 440;
	background-image: url(../images/open_key_gray.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateY(-50%);
}
.faqs_wrapper::after{
	content: '';
	position: absolute;
	top: 50%;
	right: -164px;
	width: 124px;
	aspect-ratio: 124 / 440;
	background-image: url(../images/close_key_gray.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateY(-50%);
}

/*** NUMBERIC BOXES ***/
.numeric_boxes_container {
	counter-reset: numeric-box-counter;
}

.numeric_boxes {
	counter-increment: numeric-box-counter;
	position: relative;
	overflow: hidden;
}
.numeric_boxes::before {
	content: counter(numeric-box-counter);
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 200px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.1);
    line-height: 100%;
    transform: translateX(-15%) translateY(30%);
}
.numeric_boxes > *{
	position: relative;
	z-index: 2;
}

.cuadrants_grid{
	overflow: hidden;
}

/*** ASCII ANIMATED LOGO ***/
.gw-logo-animation-wrapper{
	position: relative;
	aspect-ratio: 10 / 3;
	color: var(--wp--preset--color--custom-color-500);
	overflow: hidden;
}
.gw-logo-animation-trace{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(9);
}

.is-style-glitched_title{
	white-space: nowrap;
    overflow: hidden;
}

.services_grid img{
	width: 40px;
}

/*** MEDIA QUERIES ***/
@media (max-width: 1320px) {
}

@media (max-width: 992px) {
	:root {
		--header-height: 73px;
	}
	#glitchwood_logo{
		width: 170px;
	}
	#header_actions{
		gap:10px;
	}
	h1.is-style-section_title,
	.has-display-lg-font-size{
		font-size: 32px !important;
	}
	.big_text{
		font-size: 30px !important;
        white-space: nowrap;
	}
	#hero_intro_2{
		position: relative;
        bottom: initial;
        right: inherit;
        margin-top: 20px;
	}
	.glitchwood_framed_bg_video {
		aspect-ratio: 16 / 18;
	}
	.glitchwood_framed_bg_video_frames{
		flex-direction: column;
	}
	.glitchwood_framed_bg_video_video {
		border: 1px solid #FFF;
	}
	.glitchwood_framed_bg_video_frames .glitchwood_framed_bg_video_frame{
		width: 100%;
		height: 25%;
		border-width: 4px;
		
		.frame_top{
			top:0;
			left:0;
			width: 10%;
			height: 100%;
		}
		.frame_bottom{
			width: 10%;
            height: 100%;
            top: 0;
            right: 0;
            left: inherit;
		}
		&:nth-child(1){
			.frame_top{
				width: 20%;
			}
			.frame_bottom{
				width: 10%;
			}
		}
		&:nth-child(2){
			.frame_top{
				width: 0%;
			}
			.frame_bottom{
				width: 20%;
			}
		}
		&:nth-child(3){
			.frame_top{
				width: 25%;
			}
			.frame_bottom{
				width: 5%;
			}
		}
		&:nth-child(4){
			.frame_top{
				width: 0%;
			}
			.frame_bottom{
				width: 15%;
			}
		}
	}
	.glitchwood_framed_bg_video_frames .glitchwood_framed_bg_video_frame:nth-child(5),
	.glitchwood_framed_bg_video_frames .glitchwood_framed_bg_video_frame:nth-child(6){
		display: none;
	}
	#matrix_cta_section{
		padding-bottom: 50px !important;
		padding-top:50px !important;
	}
	#matrix_cta_section .wp-block-column:first-child{
		padding-bottom: 50px;
	}
	#matrix_cta_section::after {
		width: 100%;
		clip-path:polygon(0 0, 100% 0, 100% calc(100% - 170px), 0 calc(100% - 120px));
	}
	#footer_bottom_bar > *{
		flex-direction: column;
	}
	.faqs_wrapper::before,
	.faqs_wrapper::after{
		display: none;
	}
	.testimonials_carousel_component{
		mask-image: none;
		-webkit-mask-image: none;
		mask-repeat: no-repeat;
		-webkit-mask-repeat: no-repeat;
		mask-size: 100% 100%;
		-webkit-mask-size: 100% 100%;
	}
	.testimonials_carousel_item {
		padding: 40px 25px;
		margin: 25px 0;

		&::before {
			top: -35px;
			left: 5px;
			width: 80px;
			height: 80px;
		}
		.testimonials_carousel_item_title {
			font-size: 18px;
		}
		.testimonials_carousel_item_subtitle {
			font-size: 12px;
		}
		.testimonials_carousel_item_content {
			font-size: 14px;
		}
	}
	#home_core_services{
		background: linear-gradient(0deg, rgb(244, 247, 249) calc(100% - 130px), rgb(255, 255, 255) calc(100% - 130px)) !important;
	}
	.services_process_bullets{
		flex-direction: column;
		justify-content: center;
    	gap: 10px;

		& > *{
			width: 100%;
		}
		& > figure{
			display: flex;
			align-items: center;
			justify-content: center;

			img{
				transform: rotate(90deg);
			}
		}
	}
	.question_mark_box{
		text-align: center;
		
		p{
			padding:0 !important;
		}
	}
	.cuadrants_grid > *:first-child{
		border-width: 0 0 1px 0 !important;
        border-style: solid;
        border-color: var(--wp--preset--color--neutral-700);
	}
	.logos_grid {
		gap: 20px !important;

		& > *{
			flex-basis: 140px;
		}
	}
	#page_hero{
		padding-top: 40px !important;
	}
	.gw-logo-animation-wrapper{
		aspect-ratio: 10 / 6;
	}
	.gw-logo-animation-trace{
		transform: translate(-50%, -50%) scale(3);
	}
	.wp-container-content-422d1810 {
		flex-basis: auto;
		justify-content: center;
		flex-direction: column;
		text-align: center;
	}
	.projects_slider_item_image {
		border-radius: 12px;
	}
}