/**
 * 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;
	--primary-font: var(--wp--preset--font-family--helvetica);
	--secondary-font: var(--wp--preset--font-family--evolventa);
	--extra-font: var(--wp--preset--font-family--times-new-roman);
}
* {
	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--custom-color-300);
	--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;
}

/** BUTTON COLORS **/
.is-style-secondary-fill .wp-element-button,
.is-style-secondary-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);
	border-radius: 5px;
}
.is-style-outline .wp-element-button,
.is-style-secondary-outline .wp-element-button{
	background: none;
	border: 1px solid var(--btnColor);
	color: var(--btnTextColor);

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

/*** LINK WRAPPER STYLES ***/
.link_wrapper {
	color: currentColor;
	text-decoration: none;
}

/*** SEPARATOR STYLES ***/
.wp-block-separator.is-style-title-decoration {
    border: none;
    border-top: 2px solid;
    width: 130px;
}

/*** IMAGE STYLES ***/
.wp-block-image.is-style-slightly-rounded img{
	border-radius: 12px;
}

/*** HELPERS ***/
.w-100,
figure.w-100 img{
	width: 100%;
}
.z-10{
	position: relative;
	z-index: 10;
}

/*** 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(--secondary-font);
}
.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: 20px;
}
.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;
    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 MENU ***/
#header_menu{
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
    font-size: 18px;
    justify-content: center;
	font-family: var(--secondary-font);
	font-weight: 600;
	color:var(--wp--preset--color--custom-color-500)
}
#header_menu li{
	position: relative;
}
#header_menu > li >a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
    text-decoration: none;
    color: currentColor;
    transition: all 0.3s;
}
#header_menu > li.current_page_item > a{
	color: var(--wp--preset--color--custom-color-400);
}
#header_menu .sub-menu{
	position: absolute;
	top: 100%;
	left: 0;
	width: 250px;
	padding:0;
	display: flex;
	flex-direction: column;
	list-style: none;
	box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.2);
	background: #e9e0d5;
	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: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 10px;
	gap: 5px;
	text-decoration: none;
    color: currentColor;
}
#header_menu .sub-menu a:hover,
#header_menu .sub-menu .current_page_item a{
	color: var(--wp--preset--color--neutral-white);
	background: 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;
}
.wp-social-link{
	border-radius: 5px;
}

/*** COMPONENTS ***/
body.home{
	background-image: url(../images/bg_top.svg);
    background-size: 15vw;
    background-position: left top;
    background-repeat: no-repeat;
}
#home_hero{
	background-image: url(../images/green_flower.svg);
	background-size: 25%;
	background-position: right -7% bottom;
	background-repeat: no-repeat;
}

.services_boxes .wp-block-image{
	min-width: 100px;
	display: flex;
    justify-content: center;
}


.above_mountains_1{
	position: relative;
	padding-bottom: 15vw !important;
	margin-bottom: -120px !important;
	overflow: hidden;
}
.above_mountains_1.no_mb{
	margin-bottom: 0 !important;
}
.above_mountains_1 > .wp-block-group{
	position: relative;
	z-index: 9;
}

.mountains-1-top{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: inherit;
    height: 16vw;
}
.mountains-1-top::after{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/mountains_1_top.svg);
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
	z-index: 2;
}
.mountains-1-top .sun{
	position: absolute;
    top: 0;
    right: 4vw;
    width: 15vw;
    aspect-ratio: 1;
    background: #FFF;
    border-radius: 50%;
    transform: translateY(-40%);
    z-index: 1;
}
.mountains-1-top .sun::before,
.mountains-1-top .sun::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:#FFF;
	border-radius: 50%;
	opacity: 0.5;
}
.mountains-1-top .sun::before{
	animation: sun_animation 5s linear infinite;
}
.mountains-1-top .sun::after{
	animation: sun_animation 5s linear infinite;
	animation-delay: 2.5s;
}
@keyframes sun_animation{
	0%{
		transform: scale(1);
		opacity: 0.5;
	}
	100%{
		transform: scale(1.3);
		opacity: 0;
	}
}
.siluette{
	position: absolute;
    top: -2vw;
    right: 5vw;
    width: 13vw;
    aspect-ratio: 1 / 1;
    background-image: url(../images/Siluette_girl.svg);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}
.clouds{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: inherit;
    height: 100%;
    margin: 0;
	pointer-events: none;
}
.cloud{
	position: absolute;
}
.cloud_1{
	top: 30%;
	left: -15vw;
	width: 15vw;
	aspect-ratio: 1 / 1;
	background-image: url(../images/Cloud_1.svg);
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	animation: cloud_animation 40s linear infinite;
}
.cloud_2{
	top: 50%;
	left: -15vw;
	width: 10vw;
	aspect-ratio: 1 / 1;
	background-image: url(../images/Cloud_2.svg);
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	animation: cloud_animation 40s linear infinite;
	animation-delay: 10s;
}
.cloud_3{
	top: 20%;
	left: -15vw;
	width: 15vw;
	aspect-ratio: 1 / 1;
	background-image: url(../images/Cloud_3.svg);
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	animation: cloud_animation 40s linear infinite;
	animation-delay: 15s;
}
.cloud_4{
	top: 53%;
	left: -15vw;
	width: 15vw;
	aspect-ratio: 1 / 1;
	background-image: url(../images/Cloud_4.svg);
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	animation: cloud_animation 40s linear infinite;
	animation-delay: 25s;
}

@keyframes cloud_animation{
	0%{
		left: -15vw;
		visibility: visible;
	}
	98%{
		left: 115vw;
		visibility: visible;
	}
	100%{
		left: 115vw;
		visibility: hidden;
	}
}

.mountains-1-bottom{
	width: 100%;
    max-width: inherit;
    aspect-ratio: 2180 / 140;
    background-image: url(../images/mountains_1_bottom_crop.svg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    margin: -6vw 0 0 0;
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.animated_bg_circle{
	position: relative;
}
.animated_bg_circle .wp-block-image{
	position: relative;
	z-index: 2;
}
.animated_bg_circle::before{
	content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 50%;
    aspect-ratio: 1 / 1;
    background-image: url(../images/Circle_gemetry.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    animation: animated_bg_circle_animation 30s linear infinite;
    opacity: 0.2;
}
@keyframes animated_bg_circle_animation{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

.above_mountains_2{
	position: relative;
	padding-bottom: 19vw !important;
	overflow: hidden;
}
.above_mountains_2 > .wp-block-group{
	position: relative;
	z-index: 9;
}
.mountains-2-top{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 2180 / 390;
    max-width: inherit;
}
.mountains-2-top::after{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/mountains_2_top_updated.svg);
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
	z-index: 2;
}
.mountains-2-top .sun{
	position: absolute;
    top: 4vw;
    left: 6vw;
    width: 15vw;
    aspect-ratio: 1;
    background: #FFF;
    border-radius: 50%;
    transform: translateY(-40%);
    z-index: 1;
}
.mountains-2-top .sun::before,
.mountains-2-top .sun::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:#FFF;
	border-radius: 50%;
	opacity: 0.5;
}
.mountains-2-top .sun::before{
	animation: sun_animation 5s linear infinite;
}
.mountains-2-top .sun::after{
	animation: sun_animation 5s linear infinite;
	animation-delay: 2.5s;
}
.mountains-2-top .siluette{
	position: absolute;
    top:-0.5vw;
    left: 5vw;
    width: 15vw;
    aspect-ratio: 1 / 1;
    background-image: url(../images/Siluette_girl_green.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: 3;
}
.mountains-2-bottom{
    position: relative;
	width: 100%;
    max-width: inherit;
    aspect-ratio: 2180 / 265;
    background-image: url(../images/mountains_2_bottom_updated.svg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #80a389;
    margin: -40px 0 0 0;
    z-index: 1;
    pointer-events: none;
}

.about_hero,
.green_hero{
	position: relative;
	padding-top:80px;
	padding-bottom: 19vw !important;
	overflow: hidden;
}
.about_hero > .wp-block-group,
.green_hero > .wp-block-group{
	position: relative;
	z-index: 9;
}
.about_hero .cloud_1,
.contact_hero .cloud_1,
.green_hero .cloud_1{
	top: 5%;
}
.about_hero .cloud_2,
.contact_hero .cloud_2,
.green_hero .cloud_2{
	top: 20%;
}
.about_hero .cloud_3,
.contact_hero .cloud_3,
.green_hero .cloud_3{
	top: 0%;
}
.about_hero .cloud_4,
.contact_hero .cloud_4,
.green_hero .cloud_4{
	top: 3%;
}

.mountains-3-top{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 2185 / 475;
    max-width: inherit;
}
.mountains-3-top::after{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/hero_mountains.svg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
	z-index: 2;
}
.mountains-3-top .sun{
	position: absolute;
    top: -5vw;
    right: 0;
    width: 17vw;
    aspect-ratio: 1;
    background: #FFF;
    border-radius: 50%;
    z-index: 1;
}
.mountains-3-top .sun::before,
.mountains-3-top .sun::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:#FFF;
	border-radius: 50%;
	opacity: 0.5;
}
.mountains-3-top .sun::before{
	animation: sun_animation 5s linear infinite;
}
.mountains-3-top .sun::after{
	animation: sun_animation 5s linear infinite;
	animation-delay: 2.5s;
}
.mountains-3-top .siluette{
	position: absolute;
    top: -5vw;
    right: 2vw;
    width: 12vw;
    aspect-ratio: 1 / 1;
    background-image: url(../images/Siluette_girl.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}
.animated-circle-2{
	position: relative;
	aspect-ratio: 10 / 9;
	z-index: 9;
}
.animated-circle-2::before{
	content: '';
    position: absolute;
    top: -2%;
    left: 25%;
    width: 80%;
    aspect-ratio: 1 / 1;
    background-image: url(../images/About_us_geometry.png);
    background-size: contain;
    background-position: center;
	animation: animated_circle_2_animation 30s linear infinite;
}
@keyframes animated_circle_2_animation{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}
.about-woman{
	position: absolute;
    width: 150%;
    max-width: none;
    top: 30px;
}
.philosophy_list li{
	margin-bottom: 35px;
}
.founder_section > .wp-block-group{
	position: relative;
	z-index: 9;
}


.mountains-4-top{
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 2200 / 475;
    max-width: inherit;
}
.mountains-4-top::after{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/hero_mountains_2_crop.svg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
	z-index: 2;
}
.mountains-4-top .sun{
	position: absolute;
    top: -5vw;
    right: 0;
    width: 17vw;
    aspect-ratio: 1;
    background: #FFF;
    border-radius: 50%;
    z-index: 1;
}
.mountains-4-top .sun::before,
.mountains-4-top .sun::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:#FFF;
	border-radius: 50%;
	opacity: 0.5;
}
.mountains-4-top .sun::before{
	animation: sun_animation 5s linear infinite;
}
.mountains-4-top .sun::after{
	animation: sun_animation 5s linear infinite;
	animation-delay: 2.5s;
}
.mountains-4-top .siluette{
	position: absolute;
    top: -5vw;
    right: 2vw;
    width: 12vw;
    aspect-ratio: 1 / 1;
    background-image: url(../images/Siluette_girl_green_2.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

/*** WOOCOMMERCE ***/
.wp-block-woocommerce-product-description{
	text-align: center;
}
.services_grid li{
	display: flex;
}

.woocommerce div.product form.cart {
    display: flex;
	flex-direction: column;
    justify-content: center;
	align-items: center;
}
#wc-bookings-booking-form{
	width: 100%;
}
.woocommerce div.product{
	margin-top: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li{
	padding:7px 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation{
	width: 230px;
}
.woocommerce-account .woocommerce-MyAccount-content {
    width: calc(100% - 250px);
}
.woocommerce-Address-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.woocommerce-Address-title h2{
	font-size: 16px;
	margin:0;
}
.woocommerce-account .addresses .title::after, 
.woocommerce-account .addresses .title::before{
	display: none;
}
.woocommerce-account .addresses .title .edit{
	margin:0;
	font-size: 12px;
}
.woocommerce-Address-title{
	border-bottom: 1px solid var(--wp--preset--color--neutral-200);
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.wc-bookings-date-picker .ui-datepicker-header{
	background: var(--wp--preset--color--custom-color-600);
}
.wc-bookings-date-picker .ui-datepicker .ui-datepicker-prev, 
.wc-bookings-date-picker .ui-datepicker .ui-datepicker-next{
	height: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: #FFF;
}
.block-picker a{
	color:var(--wp--preset--color--neutral-500);
}

.product_card .wp-block-button{
	margin-top: auto;
}

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

@media (max-width: 992px) {
	:root {
		--header-height: 73px;
	}
	body.home{
		background-image: none;
	}
	.wp-container-core-column-is-layout-95a0f5eb {
		padding-left: 0 !important;
	}
	.wp-elements-e9474eea9c90e45e14030fc00755c725{
		font-size: 35px !important;
	}
	.wp-container-core-group-is-layout-f6d84497{
		margin-block-start: 20px;
	}
	.hero-animation-container {
		aspect-ratio: 10 / 8.5;
	}
	.hero-animation__shadow {
		bottom: -7px;
	}
	#home_hero{
		padding-block-start: 40px !important;
	}
	h2 {
		font-size: 35px !important;
	}
	.services_boxes{
		gap: 20px !important;
	}
	.above_mountains_1 {
		position: relative;
		padding-bottom: 120px !important;
		margin-bottom: 0 !important;
	}
	.wp-elements-95f1528be44fd9498db0a044537e6fa1{
		background:var(--wp--preset--color--custom-color-500) !important;
	}
	.wp-elements-95f1528be44fd9498db0a044537e6fa1 .wp-container-core-columns-is-layout-28f84493{
		flex-direction: column-reverse;
		gap:0;
		padding-top:40px;
	}
	.wp-container-core-group-is-layout-29371d3d{
		text-align: center;
	}
	.wp-container-core-buttons-is-layout-d445cf74,
	.wp-container-core-group-is-layout-430243b9{
		justify-content: center !important;
	}
	#events_callendar img{
		width:30px !important;
	}
	#gallery_section{
		text-align: center;
	}
	.mountains-2-bottom{
		margin:0;
	}
	.gw-image-carousel{
		margin-bottom: 40px;
	}
	#testimonials_section{
		padding-top: 60px;
	}
	.gw-testimonials-slider{
		margin-top:30px;
	}
	.gw-testimonials-slider__quote{
		font-size: 16px !important;
	}
	.wp-container-core-column-is-layout-95a0f5eb{
		text-align: center;
	}
	.wp-container-core-column-is-layout-95a0f5eb .wp-block-buttons{
		justify-content: center !important;
	}
	.wp-container-core-group-is-layout-6cbd438f{
		padding-top: 30px !important;
	}
	.about-woman{
		width: 100%;
	}
	.animated-circle-2::before {
		width: 60%;
	}
	.wp-container-core-group-is-layout-060b3554{
		padding-top: 50px !important;
	}
}