/*** RESET ***/
:root{
	--gw800: #FF2E70;
	--gw700: #FF9000;
	--gw600: #FFC600;
	--gw500: #00B4BD;
	--gw400: #9366DD;
	--gw300: #89F262;
	--gw200: #19E4FF;

	/* Neutral palette */
	--neutralWhite: #FFFFFF;
	--neutral700: #282B2D;
	--neutral600: #484E54;
	--neutral500: #6B7A88;
	--neutral400: #96A8B9;
	--neutral300: #D3DDE6;
	--neutral200: #E7EAED;
	--neutral100: #F8F8F8;

	--green400: #019D75;
	--green500: #056255;
	--green600: #15242D;

	--primaryColor: var(--gw500);
	--secondaryColor: var(--neutral800);

	--primaryFont: "Inter", sans-serif;

	--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--spacing--20: 30px;
	--wp--preset--spacing--30: 40px;
	--wp--preset--spacing--40: 50px;
	--wp--preset--spacing--50: 70px;
	--wp--preset--spacing--60: 90px;
	--wp--preset--spacing--70: 100px;
	--wp--preset--spacing--80: 200px;
}

*{
	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(--neutralWhite);
	background: var(--green600);
}
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%;
}
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{
	--wp--preset--spacing--20: 5px;
	--wp--preset--spacing--30: 10px;
	--wp--preset--spacing--40: 20px;
	--wp--preset--spacing--50: 30px;
	--wp--preset--spacing--60: 40px;
	--wp--preset--spacing--70: 50px;
	--wp--preset--spacing--80: 60px;
}
.wp-block-columns.row{
	gap: 0;
}
.wp-block-columns:last-child{
	margin-bottom: 0;
}
.wp-block-column[class*="col-"],
.wp-block-columns.row .wp-block-column {
	flex-basis: unset !important;
	flex-grow: unset !important;
}
.wp-block-columns.row{
	flex-wrap: wrap !important;
}
.boxes_grid .wp-block-column{
	display: flex;
}

/* 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 ***/
.text-color---white{
	color: var(--neutralWhite);
}	
.text-color---gray100{
	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);
}

/*** BACKGROUND COLORS ***/
.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);
}

/*** CHECKLIST ***/
.is-style-checklist{
	display: flex;
	flex-direction: column;
	gap: 20px;
	list-style: none;
	padding: 0;
}
.is-style-checklist li{
	position: relative;
	padding-left: 45px;
}
.is-style-checklist li::before{
	content: '';
	position: absolute;
	top: -4px;
	left:0;
	width: 30px;
	height: 30px;
	background-image: url(../images/check.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/*** GRAVITY FORMS ***/
.gform_description:empty,
.gform_heading{
	display: none !important;
}

/*** MISC ***/
.container{
	max-width: 1170px;
}
.wp-element-button,
.button{
	--btnColor: var(--green400);
    --btnColorHover: var(--green600);
    --btnTextColor: var(--neutralWhite);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--btnColor);
    color: var(--btnTextColor);
    border-radius: 99px;
    border: none;
    cursor: pointer;
    font-size: 21px;
    padding: 27px 60px;
    line-height: 20px;
    font-weight: 300;
    transition: all 0.3s;
}
.wp-element-button:hover,
.button:hover{
	background: var(--btnColorHover);
}
.is-style-outline .wp-element-button,
.outline_button.button{
	background: none;
	border:1px solid var(--btnColor);
	color: var(--btnColor);
}
.is-style-outline .wp-element-button:hover,
.outline_button.button:hover{
	background: var(--btnColor);
	color: var(--btnTextColor);
}

.section_title{
	font-weight: normal;
	font-size: clamp(20px, 10vw, 105px);
	color: var(--green400);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 20px;
}
.section_title_index{
	width: 45px;
	height: 45px;
	border: 2px solid var(--green400);
	color: var(--green400);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 600;
}
h1.section_title{
	font-size: clamp(20px, 10vw, 105px);
    margin-bottom: 0;
}

.section_subtitle{
	font-size: 20px;
	color: var(--primaryColor);
	font-weight: normal;
}

#loader{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100dvh;
	background-color: var(--green600);
	z-index: 999;
	clip-path: inset(0 0 0 0);
	transition: all 1s;
}
.loaded_1 #loader{
	clip-path: inset(0 0 100% 0);
}
#loader_2{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100dvh;
	background-color: var(--green400);
	z-index: 999;
	clip-path: inset(0 0 0 0);
	transition: all 1s;
}
.loaded_2 #loader_2{
	clip-path: inset(0 0 100% 0);
}

.loaded_all #loader,
.loaded_all #loader_2{
	visibility: hidden;
}

#loader_logo{
	position: absolute;
	top:50%;
	left:50%;
	width: 120px;
	height: 120px;
	background-image: url(../images/menu_logo.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all 0.5s;
}
.show_logo_1 #loader_logo{
	opacity: 1;
}
#loader_2_logo{
	position: absolute;
	top:50%;
	left:50%;
	width: 120px;
	height: 120px;
	background-image: url(../images/loader_2_logo.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%, -50%);
}

/*** HEADER ***/
#header{
	position: absolute;
	top:20px;
	left: 24px;
    width: calc(100% - 48px);
	color: var(--neutralWhite);
	border-radius: 10px;
	transition: background-color 0.3s, color 0.3s;
	z-index: 99;
}
.admin-bar #header{
	top: 42px;
}
.float_active #header{
	position: fixed;
	top: 10px;
	background: rgba(0,0,0,0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.float_active.admin-bar #header{
	top: 42px;
}

/*
.float_active #header.header_bg_services {
    background: rgb(20 52 55 / 60%);
}
.float_active #header.header_bg_portafolio,
.float_active #header.header_bg_gallery_section {
    background: rgb(18 64 63 / 60%);
}
.float_active #header.header_bg_papallona,
.float_active #header.header_bg_team{
	background: rgb(17 74 69 / 60%);
}
.float_active #header.header_bg_outro{
	background: rgb(10 91 79 / 60%);
}
*/
#header_main{
	height: 60px;
	padding: 0 20px;
}
#header_logo{
	display: inline-block;
	width:90px;
}
#menu_trigger_wrapper,
#menu_close_trigger{
	font-size:15px;
	cursor: pointer;
}
#sidebar_menu_overlay{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100dvh;
	background-color: rgba(255,255,255, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 97;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.menu_open #sidebar_menu_overlay{
	opacity: 1;
	visibility: visible;
}
.menu_trigger_icon{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border:1px solid currentColor;
}
.menu_trigger_icon i{
	display: inline-block;
	position: relative;
	width: 25px;
	height: 10px;
}
.menu_trigger_icon i::before{
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 1px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_trigger_icon i::after{
	content: '';
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
	height: 1px;
	background:currentColor;
	transition:all 0.5s;
}

/*** HEADER MENU ***/
#sidebar_menu_wrapper{
	position: fixed;
	top: 0;
	right: 0;
	width:100%;
	max-width: 590px;
	height: 100dvh;
	background-color: #056355;
	color: var(--green400);
	border-radius: 20px 0 0 20px;
	padding: 17px 40px 40px;
	overflow: hidden;
	z-index: 100;
	clip-path: inset(0 0 0 100%);
	transition: all 0.3s linear;
}
#sidebar_menu_inner{
	height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	position: relative;
    z-index: 5;
    color: var(--green500);
	transition: color 0.3s linear 0.3s;
}
.menu_open #sidebar_menu_inner{
    color: var(--green400);
}

#sidebar_menu_wrapper::before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: var(--green400);
	clip-path: inset(0 0 0 0 );
	transition: all 0.3s linear 0.3s;
}
.menu_open #sidebar_menu_wrapper::before{
	clip-path: inset(0 100% 0 0);
}


.menu_open #sidebar_menu_wrapper{
	clip-path: inset(0 0 0 0);
}
.admin-bar #sidebar_menu_wrapper{
	top: 32px;
	height: calc(100dvh - 32px);
}
#sidebar_menu_footer{
	font-size: 12px;
}
#sidebar_menu_logo{
	width: 55px;
	margin:0 0 0 auto
}
.menu_button{
	display: inline-block;
	padding: 11px 23px;
	border:1px solid currentColor;
	border-radius: 99px;
	transition: all 0.3s;
}
.menu_button:hover{
	color: var(--neutralWhite);
}
#sidebar_menu{
	font-size: clamp(20px, 10vw, 50px);
    line-height: 100%;
	gap: 35px;
    counter-reset: menu-counter;
}
#sidebar_menu a{
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 25px;
    counter-increment: menu-counter;
	transition: all 0.3s;
}
#sidebar_menu a:hover{
	color: var(--neutralWhite);
}
#sidebar_menu a::before{
	content: counter(menu-counter);
	width: 40px;
	height: 40px;
	border:1px solid currentColor;
	border-radius: 50%;
	font-size: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
#menu_close_trigger .menu_trigger_icon i {
    height: 4px;
}

/*** 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;
}
#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_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_trigger i::after{
	content: '';
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}

#sections_navigation{
	position: fixed;
	top: 50%;
	left: 40px;
	display: flex;
	flex-direction: column;
	gap: 23px;
	transform: translateY(-50%);
	z-index: 99;
}
#sections_navigation a{
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #D3D7CA;
	border-radius: 50%;
	transition: all 0.5s;
}
#sections_navigation a.current{
	background-color: var(--green400);
}


/*** FOOTER ***/
#footer{
	position: relative;
	padding:100px 0 150px;
	background-color: var(--green400);
	color: var(--green500);
}
#footer h3{
	font-size: 33px;
	font-weight: normal;
}
#footer a{
	transition: all 0.3s;
}
#footer a:hover{
	color: var(--neutralWhite);
}
.footer_top_link{
	position: absolute;
	bottom:30px;
	left: 50%;
	transform: translateX(-50%);
}
.footer_top_link i{
	display: inline-block;
	width: 25px;
	height: 25px;
	background-image: url(../images/arrow-top.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

/*** LANDING SECTION ***/
.hero_section{
	position: relative;
	background-color: var(--green600);
	padding:10px;
}
.hero_section_inner{
	height: calc(100vh - 20px);
	color: var(--neutralWhite);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 10px;
}

.hero_section_inner::after{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: var(--green600);
	opacity: 0.6;
}
.hero_section_inner .container{
	position: relative;
	z-index: 5;
}
.hero_section .section_title{
	color: var(--neutralWhite);
}

/*** GRADIENT ***/
.gradient_start_section{
	background-image: linear-gradient(to bottom, #15242D, #056355);
}

/*** INTRO SECTION ***/
.intro_section{
	padding: 100px 0;
	color:#FFF;
}
.section_content{
	display: flex;
	flex-direction: column;
	gap: 0;
	font-size: clamp(25px, 8vw, 50px);
    line-height: 120%;
	font-weight: 300;
}
.scroll_reveal{
	position: relative;
}
.scroll_reveal_white{
	color: var(--neutralWhite);
	clip-path: inset(0 100% 0 0);
	position: relative;
    z-index: 2;
	transition: all 1.5s;
}
.scroll_reveal_white.revealed{
	clip-path: inset(0 0 0 0);
}
.scroll_reveal_green{
	position: absolute;
	top:0;
	left:0;
	color: var(--green400);
	transition: all 1.5s;
}

.after_content{
	font-size: 20px;
    line-height: 130%;
    font-weight: 300;
}

/*** SERVICES CAROUSEL ***/
.services_carousel_section{
	padding: 80px 0;
}
.service_item {
	position: relative;
    aspect-ratio: 1 / 1.5;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}
.service_item::before{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: var(--green600);
	border-radius: 30px;
	opacity: 0.8;
	transition: opacity 0.3s;
}
.swiper-slide-active .service_item::before{
	opacity: 0.4;
}
.services_title_carousel_wrapper{
	position: absolute;
	top:50%;
	left:50%;
	width: 100%;
	z-index: 5;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.services_title_carousel h2{
	margin: 0;
	color:#FFF;
	font-weight: normal;
	font-size: clamp(20px, 8vw, 105px);
	transform: translateY(100%);
	opacity: 0;
	transition: all 0.3s ease-in 0.3s;
}
.swiper-slide-prev .services_title_carousel h2{
	transform: translateY(-100%);
}
.services_title_carousel .swiper-slide-active h2{
	transform: translateY(0);
	opacity: 1;
}

/*** PORTFOLIO ***/
.portfolio_section{
	padding: 130px 0;
}
.portfolio_item{
	position: relative;
    aspect-ratio: 1 / 1.2;
    border-radius: 30px;
	border:1px solid #D3D3D3;
	color:#FFF;
	overflow: hidden;
}
.portfolio_item:hover{
	border-color: transparent;
}

.portfolio_item_image{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-image: var(--bgImage);
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: all 1s;
}
.portfolio_item:hover .portfolio_item_image{
	opacity: 1;
}


.portfolio_item_inner{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 40px);
	text-align: center;
}
.portfolio_item_link{
	position: absolute;
    bottom: 30px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 99px;
    background-color: var(--green400);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s;
}
.portfolio_item:hover .portfolio_item_link{
	width: 105px;
}
.portfolio_item_link i{
	display: inline-block;
	width: 55px;
	height: 55px;
	background-image: url(../images/plus-sign.svg);
	background-size: 25px;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.3s;
}
.portfolio_item:hover .portfolio_item_link i{
	background-image: url(../images/plus-sign-white.svg);
}
.portfolio_item_link span{
	position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    font-size: 18px;
	opacity: 0;
	transition: all 0.3s;
}
.portfolio_item:hover .portfolio_item_link span{
	opacity: 1;
}
.portfolio_item_title{
	font-size: 30px;
	height: 30px;
    font-weight: normal;
	transition: all 0.3s;
}
.portfolio_item:hover .portfolio_item_title{
	transform: translateY(-100%);
}
.portfolio_item_content{
    position: absolute;
    top: 50%;
    left: 50%;
	width: 220px;
    margin: 0 auto;
    line-height: 140%;
    font-weight: 300;
	opacity: 0;
    transform: translateX(-50%) translateY(-50%);
	transition: all 0.3s;
}
.portfolio_item:hover .portfolio_item_content{
	opacity: 1;
}

.portfolio_lightbox{
	position: fixed;
	top:100px;
	left:0;
	width: 100%;
	height: 100vh;
	color: var(--neutralWhite);
	background-color: var(--green600);
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
}
.portfolio_lightbox.active{
	visibility: visible;
	opacity: 1;
	top: 0;
}
.portfolio_lightbox_image{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
}
.portfolio_lightbox_slider .swiper-slide{
	height: 100vh;
}
.portfolio_lightbox_description{
	position: absolute;
    bottom: 70px;
    left: 100px;
    width: calc(100% - 80px);
    max-width: 590px;
    padding: 45px;
    z-index: 9;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
}
.portfolio_lightbox_title{
	font-size: 35px;
	font-weight: normal;
	margin-bottom: 20px;
}
.portfolio_lightbox_content{
	font-size: 20px;
	line-height: 130%;
	font-weight: 300;
}
.portfolio_description_close{
	position: absolute;
	top: 15px;
	right: 15px;
	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;
}

.portfolio_lightbox_logo{
	position: absolute;
	top: 25px;
	left: 35px;
	width: 40px;
	height: 40px;
	background-image: url(../images/lightbox_logo.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 10;
}
.portfolio_lightbox_close{
	position: absolute;
	top: 25px;
	right: 35px;
	border:1px solid #FFF;
	border-radius: 99px;
	color: #FFF;
	padding: 11px 20px;
	cursor: pointer;
	z-index: 10;
}

.portfolio_lightbox_slider .swiper-pagination {
	display: none;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    --swiper-pagination-color: #FFF;
    --swiper-pagination-bullet-inactive-color: #FFF;
}

/*** SLIDER SECTION ***/
.slider_section{
	padding: 80px 0;
}
.slider_item{
	position: relative;
	aspect-ratio: 10 / 5.5;
	border-radius: 30px;
	background-size: cover;
	background-position: center;
}
.slider_item::after{
	content: '';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: rgba(21, 36, 45, 0.4);
	border-radius: 30px;
}
.slider_nav{
	position: absolute;
	top: calc(50% - 25px);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	background-image: url(../images/next.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
	z-index: 5;
}
.slider_nav_prev{
	left: 30px;
	transform:scaleX(-1);
}
.slider_nav_next{
	right: 30px;
}
.swiper-pagination{
	position: relative;
    margin-top: 25px;
	--swiper-pagination-color: #FFF;
	--swiper-pagination-bullet-inactive-color:#FFF;
}
.swiper-pagination-bullet{
    border-radius: 15px;
	transition: all 0.3s;
}
.swiper-pagination-bullet-active{
	width: 35px;
}
.simple_text_section{
	padding: 60px 0;
}

/*** TEAM GRID ***/
.team_grid_section{
	padding: 80px 0;
}
.team_item{
	color: var(--neutralWhite);
}
.team_item_image{
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	margin-bottom: 30px;
}
.team_item_title{
	font-size: 30px;
    font-weight: normal;
}
.team_item_content{
	font-size: 15px;
    line-height: 130%;
    font-weight: 300;
	margin-bottom: 20px;
}
.team_socials{
	color:var(--green400)
}
.team_grid_section_link{
	margin-top: 80px;
}
.scroll_title{
	font-weight: normal;
    font-size: clamp(20px, 9vw, 105px);
}
.scroll_title_section{
	padding: 60px 0 130px;
}

#hero_section_scroll_trigger{
	position: absolute;
	bottom: 30px;
	left: 50%;
	width: 30px;
	height: 30px;
	background-image: url(../images/scroll-arrow.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: translateX(-50%);
}


@media(max-width:992px) {
	.hero_section_inner .section_title{
		line-height: 130%;
	}
	.hero_section_inner {
		height: calc(100vh - 120px);
        padding: 20px 0;
	}
	#header_main {
		padding: 0;
	}
	.wp-element-button, .button {
		font-size: 18px;
		padding: 20px 40px;
	}
	.slider_item {
		aspect-ratio: 10 / 13;
	}
	.scroll_title.section_content {
        line-height: 100%;
        font-size: clamp(20px, 12vw, 70px);
    }
	.footer_widget .wp-block-group{
		justify-content: center;
		align-items: center;
	}
	#sidebar_menu_wrapper {
		padding: 17px 20px 20px;
	}
	.portfolio_lightbox_description{
		bottom: 20px;
		left: 20px;
		width: calc(100% - 40px);
		max-height: 330px;
		overflow: auto;
		padding: 20px;
	}
	.portfolio_lightbox_close{
		right: 15px;
	}
	.portfolio_lightbox_logo {
		left: 15px;
	}
	.float_active #header {
		left: 10px;
		width: calc(100% - 20px);
		padding: 0 15px;
	}
	.team_item_title{
		font-size: 14px;
	}
	.team_item_content {
		font-size: 9px;
	}
	.portfolio_item_link {
		bottom: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
	}
	.portfolio_item:hover .portfolio_item_link {
		width: 70px;
	}
	.portfolio_item_link span {
		left: 33px;
		font-size: 14px;
	}

	.portfolio_item_link i { 
		width: 30px;
		height: 30px;
	}
	.portfolio_item_title {
		font-size: 18px;
		line-height: 30px;
	}
	.simple_slider .slider_nav{
		display: none;
	}
	#header_logo {
		width: 70px;
	}
	#papallona .section_content {
		font-size: clamp(25px, 7vw, 50px);
		line-height: 130%;
	}
	.portfolio_lightbox_slider .swiper-pagination {
		display: block;
	}
	.portfolio_lightbox_slider .slider_nav {
		display: none;
	}
	#sections_navigation {
		left: 23px;
	}
	#sections_navigation a {
		width: 7px;
		height: 7px;
	}
	.gradient_start_section{
		padding: 0 20px 0 40px;
	}
	.section_content {
		font-size: clamp(25px, 7.3vw, 50px);
	}
	.after_content {
		font-size: 15px;
	}
	.portfolio_item_title {
        font-size: 14px;
	}
	.hero_title_mobile {
		margin-left: 27px;
		font-size: clamp(25px, 14vw, 90px);
		line-height: 120%;
	}
	.portfolio_item_content{
		display: none;
	}
	.portfolio_item:hover .portfolio_item_title{
		transform: translateY(0);
	}
	.wp-container-core-group-is-layout-afe85e8d {
		gap: 0 !important;
	}
	.services_carousel_section{
		width: 100vw;
		position: relative;
		left: -40px;
	}
	.services_carousel_section .container{
		max-width: 100%;
		padding: 0;
	}
}