@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* width */
::-webkit-scrollbar {
	width: 2px;
	height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
	width: 2px;
	height: 2px;
	background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--violet);
	transition: all 0.5s;
	cursor: pointer;
	border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	width: 5px;
}

@keyframes blinking {
	from {
		opacity: 1;
	}

	to {
		opacity: 0.3;
	}
}


:root {
	--orange-light: #F3A446;
	--orange-hover: #FFBD70;

	--green-main: #599013;
	--green-dark: #48913E;
	--green-hover: #66B95A;

	--gray-disabled: #E5E5E5;
	--gray-light: #CBCBCB;
	--gray-dark: #585858;

	--dark: #232323;
	--white: #ffffff;
	--black: #000000;
}

html {
	scroll-behavior: smooth;
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
}

* {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	outline: none;
	margin: 0;
	box-sizing: border-box;
	-webkit-text-size-adjust: none;

}

a,
button {
	cursor: pointer;
	text-decoration: none;
	border: none;
	background-color: transparent;
	display: inline-block;
	color: var(--black);
}

body {
	overflow-x: hidden;
	/*zoom: .9;*/
}

main {
	/*padding-top: 158px;*/
	min-height: calc(100vh - 607px);
}

@media screen and (max-width: 1024px) {
	main {
		/*padding-top: 148px;*/
	}
}

@media screen and (max-width: 640px) {

	/*main{
		padding-top: 112px;
	}*/
	main {
		padding-top: 88px
	}
}

section {
	padding: 32px 0;
	width: 100%;
	overflow: hidden;
	scroll-margin-top: 64px;
}

@media screen and (max-width: 1024px) {
	section:nth-child(2) {
		padding: 32px 0 16px 0;
	}

	section {
		padding: 16px 0;
	}
}

@media screen and (max-width: 640px) {
	section {
		padding: 12px 0;
		overflow: visible;
	}
}

img {
	display: block;
	width: 100%;
}

.anchor {
	display: block;
	position: relative;
	top: -120px;
	visibility: hidden;
}

.transparent {
	opacity: 0 !important;
}

/*COMMONS START*/

/*containers*/
.container {
	position: relative;
	width: 100%;
	margin: auto;
	max-width: 1200px;
}

.container-small {
	position: relative;
	width: 100%;
	margin: auto;
	max-width: 488px;
}

.container-medium {
	position: relative;
	width: 100%;
	margin: auto;
	max-width: 800px;
}

@media screen and (max-width: 1200px) {

	.container,
	.container-medium {
		max-width: calc(100% - 64px);
	}
}

@media screen and (max-width: 640px) {

	.container,
	.container-small,
	.container-medium {
		max-width: calc(100% - 32px);
	}
}

.image-box {
	position: relative;
}

.image-box img {
	/*position: absolute;*/
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: contain;
}


hr {
	margin: 32px 0;
	border-top: 1px solid var(--green-main);
}

@media screen and (max-width: 640px) {
	hr {
		margin: 24px 0;
	}
}

.scroll-up {
	display: block;
	width: 60px;
	height: 60px;
	;
	background: var(--orange-light);
	border-radius: 50%;
	position: fixed;
	right: 32px;
	bottom: -200px;
	z-index: 100;
	opacity: 0.5;
	transition: all .3s;
}

.scroll-up.active {
	bottom: 32px;
}

.scroll-up::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url(../img/arrow-down.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	top: 50%;
	left: 50%;
	filter: brightness(2.0);
	transform: translate(-50%, -50%) rotate(180deg);
}

/*components*/
@media screen and (min-width: 640px) {
	.mobile {
		display: none !important;
	}
}

@media screen and (min-width: 1024px) {
	.laptop {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.desktop {
		display: none !important;
	}
}


.unscroll {
	position: relative !important;
	overflow: hidden !important;
	/*position: fixed;*/
	height: 100vh;
}


.glass {
	backdrop-filter: blur(5px) !important;
	-webkit-backdrop-filter: blur(5px) !important;
}



/*breadcrumbs*/
.breadcrumbs-row {
	display: flex;
	width: 100%;
	align-items: center;
}

.breadcrumbs-link,
.breadcrumbs-endpoint {
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	transition: all .3s;
}

.light .breadcrumbs-link {
	color: var(--white);
}

.breadcrumbs-link,
.dark .breadcrumbs-link {
	color: var(--black);
}

.breadcrumbs-endpoint,
.breadcrumbs-link:hover {
	color: var(--green-main);
}

.breadcrumbs-link {
	padding-right: 56px;
	position: relative;
}

.breadcrumbs-link::after {
	content: '';
	display: block;
	width: 8px;
	height: 12px;
	background-image: url(../img/breadcrumb-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
}

.dark .breadcrumbs-link::after {
	background-image: url(../img/breadcrumb-arrow_dark.svg);
}

@media screen and (max-width: 640px) {
	.breadcrumbs-row {
		display: none;
	}
}

/*lists*/
ul {
	list-style-type: none;
}

.bullet-list li {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 1.2;
	margin-bottom: 12px;
}

.bullet-list li::before {
	content: '';
	min-width: 10px;
	min-height: 10px;
	background-color: var(--green-main);
	border-radius: 50%;
	margin-right: 8px;
}



/*titles & texts*/
h1,
h2,
.large-heading {
	font-family: Blogger Sans;
	font-size: 72px;
	line-height: 1.2;
	font-style: normal;
	font-weight: bold;
}

h3,
.big-heading {
	font-family: Blogger Sans;
	font-size: 48px;
	line-height: 1.4;
	font-style: normal;
	font-weight: bold;
}

h4,
.mid-heading {
	font-family: Blogger Sans;
	font-size: 48px;
	line-height: 1.4;
	font-style: normal;
	font-weight: bold;
}

h5,
.small-heading {
	font-family: Blogger Sans;
	font-size: 28px;
	line-height: 1.4;
	font-style: normal;
	font-weight: 500;
}

h6,
.accent-text {
	font-family: Blogger Sans;
	font-size: 24px;
	line-height: 1.2;
	font-style: normal;
	font-weight: bold;
}

p,
.body {
	font-family: Poppins;
	font-size: 16px;
	line-height: 1.5;
	font-style: normal;
	font-weight: normal;
}

.section-title {
	text-transform: uppercase;
	text-align: center;
	color: #585858;
	margin-bottom: 16px;
}

.text-center {
	text-align: center;
}


.description-text h1,
.description-text h2 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	text-transform: uppercase;
}
.description-text h3,
.description-text h4,
.description-text h5,
.description-text h6{
	font-size: 24px;
	line-height: 36px;
	font-weight: 500;
}

@media screen and (max-width: 1024px) {

	h1,
	h2,
	.large-heading {
		font-size: 48px;
		line-height: 1.2;
	}

	.description-text h3,
	.description-text h4,
	.description-text h5,
	.description-text h6{
		font-size: 18px;
		line-height: 32px;
	}
}

@media screen and (max-width: 640px) {

	h1,
	h2,
	.large-heading {
		font-size: 36px;
		line-height: 1.2;
	}

	h4,
	.mid-heading {
		font-size: 24px;
		line-height: 26px;
	}

	h5,
	.small-heading {
		font-weight: 500;
		/*font-size: 20px;
		line-height: 22px;*/

		font-size: 24px;
		line-height: 26px;

	}

	.description-text h1,
	.description-text h2 {
		font-size: 18px;
		line-height: 26px;
	}
}



/*buttons & links*/
.small-button {
	font-family: 'Blogger Sans';
	font-weight: 500;
	font-size: 12px;
	line-height: 13px;
	padding: 6px 12px;
	border-radius: 100px;
	text-align: center;
}

.mid-button {
	font-family: 'Blogger Sans';
	font-weight: 500;
	font-size: 14px;
	line-height: 143.4%;
	padding: 8px 24px;
	border-radius: 100px;
	text-align: center;
}

.big-button {
	font-family: 'Blogger Sans';
	font-weight: 500;
	font-size: 20px;
	line-height: 22px;
	padding: 12px 32px;
	border-radius: 100px;
	text-align: center;
}

.large-button {
	font-family: 'Blogger Sans';
	font-weight: 500;
	font-size: 20px;
	line-height: 22px;
	padding: 14px 64px;
	border-radius: 100px;
	text-align: center;
}

.green-button {
	background-color: var(--green-main);
	color: var(--white);
	min-width: 200px;
}

.border-button {
	background-color: transparent;
	border: 2px solid var(--green-main);
	color: var(--green-main);
}

.combi-button {
	background-color: transparent;
	border: 2px solid var(--green-main);
	color: var(--white);
}

.icon-button {
	display: flex;
	align-items: center;
	width: fit-content;
	min-width: 200px;
}

.icon-button img {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	object-fit: contain;
	object-position: center;
}

.arrow-button {
	display: flex;
	align-items: center;
	width: fit-content;
}

.arrow-button::after {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	margin-left: 12px;
	background-image: url(../img/arrow-right_green.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: all .3s;
}

.arrow-button:hover::after {
	transform: translateX(4px);
}

.green-button.arrow-button::after {
	background-image: url(../img/arrow-right.svg);
}


.close {
	display: block;
	width: 24px;
	height: 24px;
	position: relative;
}

.close::before,
.close::after,
#nsbbox a.closeBOX::before,
#nsbbox a.closeBOX::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--black);
	border-radius: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
}

body #nsbbox {
	z-index: 1200;
}

.close::before,
#nsbbox a.closeBOX::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.close::after,
#nsbbox a.closeBOX::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}


.arrow-left {
	display: block;
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	position: relative;
	border-radius: 50%;
}

.arrow-left::after {
	content: '';
	display: block;
	width: 30%;
	height: 30%;
	border-left: 2px solid var(--black);
	border-bottom: 2px solid var(--black);
	position: absolute;
	left: 56%;
	top: 50%;
	/*transform: translate(-50%, -50%) rotate(45deg);*/
	transform: translate(-80%, -50%) rotate(225deg);
}


@media screen and (max-width: 920px) {}


/*Forms & inputs*/
input {
	width: 100%;
	border: 3px solid var(--green-main);
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 143.4%;
	padding: 6px 12px;
	border-radius: 100px;
}

input[type="submit"] {
	display: block;
}




/*COMMONS END*/




/*SLICK ELEMENTS START*/
.slick-dots li {}

.slick-dots li button:before {}

/*SLICK ELEMENTS END*/







/*HEADER START*/
.site-header {
	box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.1);
	top: 0;
	left: 0;
	width: 100vw;
	background-color: var(--white);
	z-index: 1000;
	position: relative;
}

.header__wrap {
	display: flex;
	width: 100%;
	align-items: flex-start;
	/*padding: 14px 0 24px 0;*/
	padding: 8px 0;
	justify-content: space-between;
}

.header__logo {
	width: 100%;
	max-width: 180px;
	background-color: var(--white);
	position: relative;
	z-index: 10;
	margin: auto;
	margin-left: 0;
}

.header__texts {
	display: flex;
	width: 100%;
	max-width: calc(100% - 200px);
	padding-left: 5%;
	justify-content: space-between;
}

.header__nav {
	position: relative;
	width: 100%;
	/*max-width: 670px;*/
	max-width: 690px;

}

.header__nav>p {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	margin-bottom: 16px;
	position: relative;
	font-size: 20px;
}

.header__nav>p::after {
	content: '';
	display: block;
	width: 200vw;
	height: 1px;
	position: absolute;
	top: calc(100% + 9px);
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--green-hover);
	opacity: 0.1;
}

.header__nav>p img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	margin-left: 6px;
}

.header__nav .header__menu {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin-top: 16px;
}

.header__menu li a {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 500;
	font-size: 28px;
	line-height: 1.4;
	color: var(--green-main);
	text-transform: uppercase;
}

.header__buttons {
	width: 100%;
	max-width: 216px;
}

.header__buttons form,
.header__search {
	margin-bottom: 4px;
	position: relative;
}

.header__buttons input[type="text"],
.header__search input[type="text"] {
	position: relative;
}

.header__buttons input[type="submit"],
.header__search input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	width: 64px;
	height: 100%;
	background-color: var(--green-main);
	background-image: url(../img/arrow-right.svg);
	background-size: 18px 18px;
	background-position: center;
	background-repeat: no-repeat;
	font-size: 0;
}

.header__buttons>a.large-button {
	margin-top: 4px;
	/*margin-left: 8px;*/
}

@media screen and (max-width: 1024px) {
	.header__logo {
		max-width: 180px;
		margin-right: 24px;
		/*margin-top: 24px;*/
	}

	.header__logo::after {
		content: '';
		display: none;
		width: 200vw;
		height: 1px;
		position: absolute;
		top: 30px;
		left: -32px;
		background-color: var(--green-hover);
		opacity: 0.1;
	}

	.header__texts {
		flex-direction: column-reverse;
		padding-left: 0;
		max-width: unset;
		max-width: 500px
	}

	.header__buttons {
		display: flex;
		max-width: unset;
		justify-content: flex-end;
	}

	.header__buttons form {
		width: 100%;
		max-width: 200px;
		margin-right: 16px;
		margin-bottom: 0;
	}

	.header__buttons input[type="text"] {
		height: 100%;
	}

	.header__nav>p {
		display: none;
	}

	.header__buttons>a.large-button {
		margin-top: 0;
		padding: 10px 32px;
		height: min-content;
	}

	.header__menu li a {
		font-size: 20px;
		line-height: 22px;
		color: var(--black);
	}

	.header__nav .header__menu {
		margin-top: 16px;
	}
}

@media screen and (max-width: 640px) {
	.site-header {
		position: fixed;
		z-index: 100;
		width: 100%;
		top: 0;
		left: 0;
	}

	.header__wrap {
		flex-direction: column;
	}

	.header__nav {
		position: fixed;
		display: flex;
		flex-direction: column;
		height: 100vh;
		width: 200px;
		background-color: var(--white);
		top: 0;
		right: 0;
		z-index: 1000;
		padding: 24px;
		transform: translateX(100vw);
		transition: all .3s;
	}

	.header__nav.active {
		transform: translateX(0);
	}

	.header__nav::before {
		content: '';
		display: block;
		width: calc(100vw - 200px);
		height: 100vh;
		right: 100%;
		position: absolute;
		top: 0;
		background: rgba(88, 88, 88, 0.7);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
	}

	.header__nav .arrow-left {
		position: absolute;
		top: 50%;
		right: calc(100% + 100vw - 258px);
		transform: translateY(-50%);
	}

	.header__nav .close {
		margin: 0 0 0 auto;
	}

	.header__nav ul {
		flex-direction: column;
		margin-bottom: 24px;
	}

	.header__nav ul li {
		border-bottom: 1px solid #c1c1c1;
		padding: 8px;
	}

	.header__nav .combi-button {
		color: var(--black);
		padding: 8px;
		width: 100%;
	}

	.header__nav .header__copyright::after {
		display: none;
	}

	.header__nav .header__copyright {
		display: block;
		margin: auto 0 0 0;
		text-align: right;
		width: 100%;
		font-family: 'Blogger Sans';
		font-style: normal;
		font-weight: 400;
		font-size: 12px;
		line-height: 13px;
	}


	.header__logo {
		width: 100%;
		position: relative;
		max-width: unset;
		margin-bottom: 12px;
		margin-top: 0;
		margin-right: 0;
	}

	.header__logo::after {
		display: none;
	}

	.header__logo img {
		max-width: 128px;
	}

	.header__burger {
		display: block;
		width: 28px;
		height: 20px;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		padding: 0;
	}

	.header__burger span {
		display: block;
		height: 2px;
		width: 100%;
		background-color: #000;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.header__burger span:first-child {
		top: 0;
		transform: none;
	}

	.header__burger span:last-child {
		top: unset;
		bottom: 0;
		transform: none;
	}

	.header__buttons {
		flex-direction: column;
		max-width: 300px;
		margin: auto;
		max-height: 100px;
		transition: all .3s;
		visibility: visible;
	}

	.site-header.scrolled .header__buttons {
		max-height: 0;
		overflow: hidden;
		visibility: hidden;
	}

	.header__buttons form {
		display: none;
		width: 100%;
		max-width: unset;
		margin-bottom: 8px;
		margin-right: 0;
	}

	.header__buttons>a.large-button {
		width: 100%;
		padding: 14px 32px;
	}
}

/*Categories menu*/
.categories_menu {
	padding: 0;
	max-height: 0;
	transition: all .3s;
	overflow: hidden;
	box-sizing: content-box;
}

.categories_menu.active {
	padding: 32px 0;
	max-height: 300px;
	overflow: visible;
}

.categories_menu ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

@media screen and (max-width: 1024) {
	.categories_menu {
		display: none;
	}
}

/*card simple*/
.card-simple {
	display: block;
	width: 100%;
	margin-right: 24px;
	background-color: var(--white);
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 24px;
	transition: all .3s;
	aspect-ratio: 1 / 1;
}

.card-simple a {
	width: 100%;
}

.card-simple:last-child {
	margin-right: 0;
}

.card-simple img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
}

.card-simple h3 {
	padding: 20px 0 24px 0;
	text-align: center;
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	color: var(--black);
	font-size: 20px;
}

.card-simple:hover {
	box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12), 0px 5px 18px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 1024px) {
	.card-simple h3 {
		font-size: 24px;
	}
}

@media screen and (max-width: 640px) {
	.card-simple {
		aspect-ratio: unset;
	}

	.card-simple img {
		aspect-ratio: 5 / 3;
	}
}

/*HEADER END*/

/*FOOTER START*/
.site-footer {
	margin-top: 64px;
	box-shadow: 0px -5px 25px rgba(0, 0, 0, 0.1);
	background-color: var(--white);
	padding: 54px 0 24px 0;
	position: relative;
}

.page-template-page-map .site-footer {
	margin-top: 0;
}

.footer__menus {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}

.footer__menu_wrap {
	width: 100%;
	max-width: calc(25% - 36px);
}

.footer__menu li {
	margin-bottom: 16px;
}

.footer__menu li a {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	color: var(--black);
	text-transform: uppercase;
	transition: all .3s;
	position: relative;
	z-index: 10;
}

.footer__menu li a:hover {
	color: var(--green-main);
}

.footer__menu li.footer-menu__title {
	margin-bottom: 24px;
}

.footer__menu li.footer-menu__title a {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 28px;
	line-height: 143.02%;
}

.footer__visuals {
	padding-top: 69px;
	position: relative;
	margin-bottom: 24px;
}

.footer__socials {
	display: flex;
}

.footer__socials li {
	margin-right: 16px;
}

.footer__socials li:last-child {
	margin-right: 0;
}

.footer__socials li a {
	display: block;
	width: 42px;
	height: 42px;
}

.footer__socials li img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer__global {
	margin-top: 40px;
	width: 100%;
}

.footer__global-link {
	display: flex;
	align-items: center;
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	color: var(--black);
	transition: all .3s;
	width: max-content;
}

.footer__global-link:hover {
	color: var(--green-main);
}

.footer__global-link::before {
	content: '';
	background-image: url('../img/Planet.svg');
	width: 20px;
	height: 20px;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 8px;
}

.footer__global-link::after {
	content: '';
	background-image: url('../img/arrow-right_link.svg');
	width: 22px;
	height: 22px;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 8px;

}

.footer__visuals .footer__image {
	position: absolute;
	width: 53%;
	bottom: 0;
	right: 44px;
	z-index: 0;
	padding-right: 40px;
}

.footer__legals {
	display: flex;
	width: 100%;
	justify-content: space-between;
	display: none;
}

.footer__legals .footer__copyright,
.footer__legal-menu li a {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	color: var(--black);
	transition: all .3s;
}

.footer__legal-menu li a:hover {
	color: var(--green-main);
}

.footer__legal-menu {
	display: flex;
}

.footer__legal-menu li {
	margin-left: 16px;
}

@media screen and (max-width: 1024px) {
	.footer__menu li.footer-menu__title {
		margin-bottom: 16px;
	}

	.footer__menu li {
		margin-bottom: 12px;
		max-width: 230px;
	}

	.footer__menu_wrap {
		max-width: calc(50% - 8px);
		margin-bottom: 16px;
		padding-right: 16px;
	}

	.footer__menu_wrap:nth-child(4) {
		order: 1;
		margin-bottom: 0
	}

	.footer__visuals {
		display: flex;
		flex-wrap: wrap-reverse;
		margin-bottom: 32px;
		justify-content: center;
		padding-top: 0;
	}

	.footer__visuals .footer__image {
		position: static;
		width: 100%;
		margin-bottom: 32px;
		border-radius: 20px;
		padding-right: 0;
	}

	.footer__legals {
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer__legals .footer__copyright {
		width: 100%;
		margin-bottom: 16px;
		text-align: center;
	}

	.footer__legal-menu {
		margin-bottom: 32px;
	}

	.footer__legal-menu li:first-child {
		margin-left: 0;
	}
}

@media screen and (max-width: 640px) {
	.site-footer {
		margin-top: 40px;
		padding: 40px 0 32px 0;
	}

	.footer__menu_wrap {
		max-width: 100%;
		margin-bottom: 32px;
		padding-right: 0;
	}

	.footer__menu_wrap {
		margin-bottom: 16px;
	}

	.footer__menu {
		margin-bottom: 20px;
	}

	.footer__menu li {
		margin-bottom: 12px;
		width: 100%;
		max-width: unset;
	}

	.footer__menu li.footer-menu__title {
		margin-bottom: 12px;
		line-height: 1;
	}

	.footer__menu li:last-child {
		margin-bottom: 0;
	}

	.footer__menu li a {
		width: 100%;
		text-align: center;
	}

	.footer__global {
		margin-top: 24px;
	}

	.footer__global-link {
		justify-content: center;
		margin: 0 auto;
	}

	.footer__visuals,
	.footer__legals .footer__copyright {
		margin-bottom: 16px !important;
	}

	.footer__visuals .footer__image {
		margin-bottom: 16px;
	}

	.footer__menu_wrap:nth-child(4) {
		order: 0;
		margin-bottom: 16px;
	}

	.footer__legals .footer__copyright,
	.footer__legal-menu {
		margin-bottom: 32px;
	}

	.footer__legal-menu {
		flex-direction: column;
		align-items: center;
	}

	.footer__legal-menu li {
		margin-left: 0;
		margin-bottom: 8px;
	}
}

/*FOOTER END*/


/*BANER START*/
.baner {
	padding: 32px 0;
}

.baner-swiper {

	border-radius: 20px;
	overflow: hidden;
}

.baner_slide {
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.28);

	aspect-ratio: 2 / 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	background-size: cover;
	background-position: center;
	padding: 0 80px;
	border-radius: 20px;
}

@supports not (aspect-ratio: 16 / 9) {
	.baner_slide {
		padding: 10% 80px;
	}
}

.baner_slide__texts {
	background: rgba(0, 0, 0, 0.2);
	box-shadow: 0px 4.51312px 3.61049px rgba(87, 53, 6, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 20px;
	padding: 24px;
	width: auto;
	max-width: 700px;
}

.baner_slide__texts .mid-heading,
.baner_slide__texts p {
	color: var(--white);
}

.baner_slide__texts .mid-heading {
	margin-bottom: 16px;
}

.baner_slide__texts p {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 142%;
	margin-bottom: 24px;
}

body .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--green-main);
	opacity: 1;
}

body .swiper-pagination-bullet {
	background: var(--gray-disabled);
	opacity: 0.9;
}

body .swiper-button-next,
body .swiper-button-prev {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border-radius: 50%;
}

body .swiper-button-next {
	right: 0;
	transform: translateX(50%);
}

body .swiper-button-prev {
	left: 0;
	transform: translateX(-50%);
}

body .swiper-button-next:after,
body .swiper-button-prev:after {
	font-size: 24px;
	color: var(--white);
}

@media screen and (max-width: 1024px) {
	@supports not (aspect-ratio: 16 / 9) {
		.baner_slide {
			padding: 10% 10px;
		}
	}

	.baner_slide {
		aspect-ratio: 576 / 312;
		/*padding: 0 54px;*/
	}

	.baner_slide__texts {
		min-width: 360px;
		max-width: 410px;
	}

	.baner_slide__texts .mid-heading {
		font-size: 28px;
		line-height: 1.2;
		text-transform: uppercase;
		margin-bottom: 8px;
	}

	.baner_slide__texts p {
		font-weight: 400;
		font-size: 14px;
		line-height: 143.02%;
		margin-bottom: 8px
	}

	body .swiper-button-next,
	body .swiper-button-prev {
		background: var(--white);
	}

	body .swiper-button-next:after,
	body .swiper-button-prev:after {
		color: var(--black);
	}
}

@media screen and (max-width: 640px) {

	.baner-swiper {

		overflow: visible;
	}

	.baner_slide {
		/*box-shadow: none;*/
		aspect-ratio: 288 / 182;
		padding: 0 10px;
		justify-content: center;
		align-items: flex-end;
		margin-bottom: 68px;
	}

	.baner_slide__texts {
		width: 100%;
		min-width: unset;
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 138px;
		transform: translateY(50%);
		text-align: center;
		padding: 16px 16px 8px 16px;
	}

	.baner_slide__texts .mid-heading {
		font-size: 20px;
	}

	.baner_slide__texts p {
		display: none;
	}

	/*body .swiper-button-next, 
	body .swiper-button-prev,*/
	body .swiper-pagination {
		display: none;
	}
}

/*BANER END*/

/*IMAGE LINKS START*/
.image_links {
	padding: 32px 0;
}

.image_links__wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.image_link {
	width: 100%;
	max-width: calc(100% / 3 - 12px);
	position: relative;
}

.image_link img {
	position: relative;
	width: 100%;
	aspect-ratio: 5 / 4;
	filter: drop-shadow(0px 5px 18px rgba(0, 0, 0, 0.28));
	border-radius: 20px;
	transition: all .3s;
	overflow: hidden;
	margin-bottom: 16px;
}

.image_link.play::after {
	content: '';
	display: block;
	width: 64px;
	height: 64px;
	position: absolute;
	top: calc((100% - 64px) / 2);
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url(../img/play-circle.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0;
	transition: all .3s;
}

.image_link.play:hover::after {
	opacity: 1;
}

.image_link .small-heading {
	text-align: center;
	text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
	.image_links {
		padding: 12px 0;
	}

	.image_link img {
		margin-bottom: 16px
	}

	.image_link.play::after {
		top: calc((100% - 30px) / 2);
	}

	.image_link .small-heading {
		font-weight: 500;
		font-size: 20px;
		line-height: 22px;
	}
}

@media screen and (max-width: 640px) {
	.image_links__wrap {}

	.image_link {
		margin-bottom: 24px;
		max-width: 100%;
	}

	.image_links:last-child {
		margin-bottom: 0;
	}

	.image_link .small-heading {
		font-weight: 700;
		font-size: 24px;
		line-height: 26px;
	}
}

/*SMAGE LINKS END*/



/*IMAGE CTA START*/
.image_cta {
	padding: 32px 0;
}

.image_cta__wrap {
	width: 100%;
	/*filter: drop-shadow(0px 5px 18px rgba(0, 0, 0, 0.12));*/
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 20px;
	padding: 40px 80px;
	background-image: url(../img/croissants-bg.png);
	background-size: cover;
	position: relative;
}

.image_cta__texts {
	width: 100%;
	max-width: 50%;
}

.image_cta__texts .big-heading {
	color: var(--green-main);
	margin-bottom: 16px;
	font-size: 48px;
	text-transform: uppercase;
}

.image_cta__texts p {
	font-family: Blogger Sans;
	margin-bottom: 24px;
}

.image_cta__image {
	position: absolute;
	height: 100%;
	width: 50%;
	object-fit: contain;
	right: 0;
	top: 0;
}

@media screen and (max-width: 1024px) {
	.image_cta {
		padding: 16px 0;
	}

	.image_cta__wrap {
		padding: 16px 40px;
	}

	.image_cta__texts {
		max-width: 318px;
	}

	.image_cta__texts .big-heading {
		margin-bottom: 16px;
		font-size: 32px;
	}

	.image_cta__texts p {
		margin-bottom: 24px;
	}
}

@media screen and (max-width: 640px) {
	.image_cta {
		padding: 12px 0;
	}

	.image_cta__wrap {
		padding: 24px 24px 0 24px;
	}

	.image_cta__texts {
		max-width: 100%;
		margin-bottom: 8px;
	}

	.image_cta__texts .big-heading {
		text-align: center;
		font-size: 36px;
		margin-bottom: 8px;
		color: var(--gray-dark);
	}

	.image_cta__texts p {
		text-align: center;
		margin-bottom: 16px;
		display: none;
	}

	.image_cta__texts a {
		margin: auto;
		font-size: 14px;
	}

	.image_cta__image {
		position: static;
		width: 100%;
		aspect-ratio: 2 / 1;
		object-fit: cover;
		object-position: top;
	}
}

/*IMAGE CTA END*/


/*INSTAGRAM SLIDER START*/
.instagram_slider {
	padding: 32px 0;
}

.instagram_slider__text {
	max-width: 1000px;
	text-align: center;
	margin: auto;
	margin-bottom: 64px;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 142%;
}

.instagram-swiper {
	width: 100%;
	margin-bottom: 56px;
}

.instagram_slider .swiper-button-next,
.instagram_slider .swiper-button-prev {
	top: 36%;
}

.instagram_slider.souvenirs .swiper-button-next,
.instagram_slider.souvenirs .swiper-button-prev {
	top: 55%;
}

.instagram-swiper .swiper-slide {
	border-radius: 20px;
	aspect-ratio: 1 / 1;
	/*filter: blur(3px);*/
	/*-webkit-filter: blur(3px);*/
	transition: all .5s;
}

.instagram-swiper .swiper-slide img {
	/*filter: blur(3px);*/
	/*-webkit-filter: blur(3px);*/
}

.instagram-swiper .swiper-slide.swiper-slide-active {
	filter: none;
	transform: none;
}

.instagram-swiper .swiper-slide.swiper-slide-active img {
	filter: none;
}

.instagram-swiper .swiper-slide img {
	transform: scale(0.93);
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 20px;
	transition: all .5s;
}

.instagram-swiper .swiper-slide.swiper-slide-active img {
	transform: scale(1);
}

.instagram_slider .big-heading {
	text-align: center;
	font-weight: 700;
	font-size: 48px;
	line-height: 52px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.instagram_slider a {
	margin: auto;
	width: 100%;
	text-align: center;
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 36px;
	line-height: 143.02%;
	color: var(--orange-light);
	transition: all .3s;
}

.instagram_slider a:hover {
	color: var(--orange-hover);
}

@media screen and (max-width: 1024px) {
	.instagram-swiper {
		margin-bottom: 32px;
	}

	.instagram_slider .big-heading,
	.instagram_slider a {
		font-size: 36px;
		line-height: 1;
	}

	.instagram_slider__text {
		font-size: 18px;
		line-height: 143.02%;
		margin-bottom: 48px;
	}
}

@media screen and (max-width: 640px) {
	.instagram_slider {
		margin-bottom: 0;
		padding-bottom: 12px;
	}

	.instagram-swiper {
		margin-bottom: 28px;
	}

	.instagram_slider .big-heading {
		font-size: 20px;
		line-height: 22px;
		margin-bottom: 0;
	}

	.instagram_slider a {
		font-size: 24px;
		line-height: 26px;
	}

	.instagram_slider__text {
		font-size: 16px;
		margin-bottom: 32px;
	}
}

/*INSTAGRAM SLIDER END*/


/*STAND WITH UA START*/
.stand_with_ua__wrap {
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 0 64px;
	width: 100%;
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 24px;
}

.stand_with_ua__wrap img {
	width: calc(100% - 779px);
	height: 175px;
	margin-right: 32px;
	object-fit: contain;
	object-position: bottom;
	display: none;
}

.stand_with_ua__texts {
	width: 100%;
	/*max-width: 747px;*/
	padding: 32px 0;
	display: flex;
	/*flex-direction: column;*/
	align-items: center;
	justify-content: center;
}

.stand_with_ua__texts h2 {
	text-transform: uppercase;
	margin-right: 24px;
	/*margin-bottom: 24px;*/
	font-size: 48px;
	line-height: 1;
}

.stand_with_ua__texts .green-button {
	/*margin: auto;*/
	text-transform: uppercase;
	margin-bottom: 12px;
}

@media screen and (max-width: 1024px) {
	.stand_with_ua {
		padding-bottom: 0;
	}

	.stand_with_ua__wrap {
		padding: 16px 32px 0 32px;
		flex-direction: column-reverse;
		justify-content: start;
		align-items: center;
	}

	.stand_with_ua__wrap img {
		display: none;
		width: 100%;
		margin-right: 0;
		height: auto;
		max-width: 268px;
	}

	.stand_with_ua__texts {
		width: 100%;
		max-width: 100%;
		padding: 0;
		flex-direction: column;
	}

	.stand_with_ua__texts h2 {
		margin-bottom: 16px;
		font-size: 36px;
		text-align: center;
		margin-right: 0;
	}

	.stand_with_ua__texts .green-button {
		margin: auto;
		margin-bottom: 16px;
	}
}

@media screen and (max-width: 640px) {
	.stand_with_ua__wrap {
		padding: 16px 18px 0 18px;
	}

	.stand_with_ua__wrap img {
		max-width: 123px;
		display: none;
	}

	.stand_with_ua__texts h2 {
		margin-bottom: 16px;
		font-size: 28px;
	}

	.stand_with_ua__texts .green-button {
		font-size: 20px;
		line-height: 22px;
		padding: 14px 64px;
		margin-bottom: 16px;
	}
}

/*STAND WITH UA END*/


/*PAGE FOOT START*/
.food-categories {
	padding: 32px 0;
}

.food-categories__wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.food-categories__wrap::after,
.food-categories__wrap::before {
	content: '';
	display: block;
	width: 100%;
	max-width: calc(100% / 4 - 12px);
	height: 0;
	order: 1;
}

.food-categories__wrap .card-simple {
	width: 100%;
	max-width: calc(100% / 4 - 12px);
	margin: 0;
	margin-bottom: 24px;
}

.food-categories__wrap .card-simple h3 {
	font-weight: 700;
	font-size: 24px;
	line-height: 26px;
	text-transform: uppercase;
}

.nutri-button {
	margin: 48px auto 0 auto;
}

@media screen and (max-width: 1024px) {
	.food-categories {
		padding: 24px 0;
	}

	.food-categories__wrap .card-simple,
	.food-categories__wrap::after {
		max-width: calc(50% - 12px);
	}

	.nutri-button {
		margin: 36px auto 0 auto;
	}
}

@media screen and (max-width: 640px) {
	.food-categories {
		padding: 32px 0;
	}

	.food-categories__wrap .card-simple,
	.food-categories__wrap::after {
		max-width: 100%;
	}

	.nutri-button {
		margin: 12px auto 0 auto;
		font-size: 16px;
		line-height: 17px;
		padding: 12px 24px;
	}

}

/*PAGE FOOT END*/


/*PRODUCT CATEGORY START*/
.product-cat__heading {
	padding: 44px 0 24px 0;
	background-color: var(--dark);
}

.product-cat__heading h1,
.product-cat__heading p {
	color: var(--white);
	text-align: center;
}

.product-cat__heading h1 {
	margin: 32px 0 12px 0;
	text-transform: uppercase;
}

.product-cat__heading p {
	max-width: 800px;
	margin: auto auto 12px auto;
}

.product-cat__posts {
	position: relative;
}

.product-cat__posts::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 160px;
	background-color: var(--dark);
	border-radius: 0 0 40px 40px;
	top: 0;
	left: 0;
	z-index: 0;
}

.product-cat__loop {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.product-cat__loop::after {
	content: '';
	display: block;
	width: 100%;
	max-width: calc(100% / 3 - 12px);
	height: -0;
}

.card-cropped {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: calc(100% / 3 - 12px);
	position: relative;
	padding: 0 16px;
	margin-bottom: 24px;
}

.prt_products-template-default .card-cropped {
	height: auto;
}

.card-cropped::before {
	content: '';
	display: block;
	width: 100%;
	height: 70%;
	background-color: var(--white);
	position: absolute;
	bottom: 0;
	left: 0;
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 24px;
	z-index: -1;
	transition: all .3s;
}

.card-cropped:hover::before {
	box-shadow: 0px 5px 32px rgba(0, 0, 0, 0.12);
}

.card-cropped a {
	width: 100%;
}

.card-cropped img {
	width: 100%;
	aspect-ratio: 350 / 207;
	object-fit: contain;
	object-position: center;
	margin-bottom: 32px;
	transition: all .6s;
}

.card-cropped:hover img {
	transform: scale(1.02);
}

.card-cropped__title {
	font-weight: 700;
	font-size: 24px;
	line-height: 26px;
	text-align: left;
	text-transform: uppercase;
}

.card-cropped .card-cropped__head {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}
.card-cropped .card-cropped__head span {
	font-size: 22px;
	display: block;
	width: 136px;
	text-align: right;
}

.card-cropped h3.small-heading {
	margin-bottom: 12px;
}

.card-cropped .card-cropped__text{
	/*text-align: center;*/
	margin-bottom: 8px;
	color: #585858;
}
.card-cropped .card-cropped__cals {
	text-align: center;
	color: var(--green-main);
	margin-bottom: 16px;
}

.no-posts__wrap {
	width: 100%;
	border-radius: 24px;
	background-color: var(--white);
	padding: 24px 16px;
	text-align: center;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 1024px) {
	.product-cat__heading {
		padding: 28px 0;
	}

	.product-cat__heading h1 {
		margin: 8px 0 16px 0;
	}

	.product-cat__posts::after {
		border-radius: 0 0 24px 24px;
		transform: translateY(-1px);
	}

	.product-cat__loop::after,
	.card-cropped {
		max-width: calc(50% - 12px);
	}

	.card-cropped__title {
		margin-bottom: 16px;
	}

	.card-cropped img {
		margin-bottom: 16px;
	}
}

@media screen and (max-width: 640px) {
	.product-cat__heading {
		/*padding: 0;*/
	}

	.product-cat__heading h1 {
		margin-bottom: 16px;
	}

	.product-cat__loop::after,
	.card-cropped {
		max-width: 100%;
	}
}

/*PRODUCT CATEGORY END*/



/*SINGLE PRODUCT INFO START*/
.sproduct-info .breadcrumbs-row {
	margin-bottom: 44px;
}

.sproduct-info__wrap {
	display: flex;
	flex-wrap: wrap;
	padding: 50px;
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 40px;
}

.sproduct-info__wrap img {
	width: 100%;
	max-width: 40%;
	margin-right: 2%;
	object-fit: contain;
}

.sproduct-info__texts {
	width: 100%;
	max-width: 58%;
}

.sproduct-info__texts h1 {
	margin-bottom: 24px;
	text-transform: uppercase;
}

.sproduct-info__description {
	margin-bottom: 32px;
}

.sproduct-info__additional {
	display: flex;
	width: 100%;
	align-items: center;
}

.sproduct-price {
	margin-top: 24px;
	color: var(--green-main);
}

.sproduct-info__additional span {
	font-family: 'Blogger Sans';
	font-size: 18px;
	line-height: 22px;
	font-weight: 400;
	margin-right: 24px;
}

.sproduct-info__additional strong {
	font-family: 'Blogger Sans';
	font-size: 18px;
	line-height: 22px;
	font-weight: 500;
}

.sproduct-nutri {
	display: none;
	width: 100%;
	margin: auto;
	max-width: calc(100% - 52px);
	border: 2px solid #599013;
	border-radius: 40px;
	padding: 32px;
	margin-top: 56px;
}

.sproduct-nutri h3 {
	text-transform: uppercase;
	margin-bottom: 32px;
}

.sproduct-nutri__tabs {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.sproduct-nutri__tabs li {
	margin-right: 8px;
}

.sproduct-nutri__trigger {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 164.52%;
	padding: 4px 24px;
	text-transform: uppercase;
	color: var(--gray-light);
	border: 1px solid var(--gray-light);
	border-bottom: none;
	border-radius: 20px 20px 0px 0px;
	transition: all .3s;
}

.sproduct-nutri__trigger:hover {
	background-color: #EDF4EC;
	border-color: var(--green-main);
}

li.active .sproduct-nutri__trigger {
	color: var(--white);
	border-color: var(--green-main);
	background-color: var(--green-main);
}

.sproduct-nutri__table {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sproduct-nutri__table ul {
	width: 100%;
	max-width: calc(50% - 12px);
	display: none;
}

.sproduct-nutri__table.active ul {
	display: block;
}

.sproduct-nutri__table ul li {
	display: flex;
	width: 100%;
}

.sproduct-nutri__table ul li:nth-child(2n + 1) {
	background-color: var(--gray-disabled);
}

.sproduct-nutri__table span {
	display: inline-block;
	width: calc(100% / 3);
	padding: 8px 10px;
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 143.4%;
	color: var(--green-main);
}

@media screen and (max-width: 1024px) {
	.sproduct-info {
		padding: 28px 0;
	}

	.sproduct-info .breadcrumbs-row {
		margin-bottom: 44px;
	}

	.sproduct-info__wrap {
		padding: 16px;
	}

	.sproduct-info__wrap img {
		max-width: 35%;
		margin-right: 5%;
		aspect-ratio: unset;
	}

	.sproduct-info__texts {
		max-width: 60%;
	}

	.sproduct-info__texts h1 {
		font-size: 36px;
		margin-bottom: 8px
	}

	.sproduct-info__texts p {
		margin-bottom: 16px;
	}

	.sproduct-info__additional span,
	.sproduct-info__additional strong {
		font-size: 12px;
		line-height: 14px;
		margin-right: 0;
	}

	.sproduct-info__additional button {
		padding-left: 16px;
		font-size: 16px;
		line-height: 17px;
		margin: 0 0 0 auto;
		width: 200px;
		justify-content: 200px;
	}

	.sproduct-nutri {
		margin-top: 32px;
	}

	.sproduct-nutri h3 {
		margin-bottom: 24px;
	}

	.sproduct-nutri__table ul {
		max-width: 100%;
	}

	.sproduct-nutri__table ul.reverse:nth-child(2) li:nth-child(2n + 1) {
		background-color: var(--white);
	}

	.sproduct-nutri__table ul.reverse:nth-child(2) li:nth-child(2n) {
		background-color: var(--gray-disabled);
	}
}

@media screen and (max-width: 640px) {
	.sproduct-info__wrap {
		padding: 8px;
	}

	.sproduct-info__wrap img {
		max-width: 100%;
		margin-bottom: 16px;
		aspect-ratio: unset;
		margin-right: 0;
	}

	.sproduct-info__texts {
		max-width: 100%;
	}

	.sproduct-info__texts h1 {
		font-size: 24px;
		line-height: 26px;
		margin-bottom: 8px;
	}

	.sproduct-info__texts p {
		margin-bottom: 8px;
	}

	.sproduct-info__additional {
		flex-direction: column;
		align-items: flex-start;
	}

	.sproduct-info__additional span {
		margin-bottom: 16px
	}

	.sproduct-info__additional button {
		margin: auto;
		margin-bottom: 0px;
		width: 100%;
		max-width: 300px;
		text-align: center;
		justify-content: center;
	}

	.sproduct-nutri {
		max-width: 100%;
		padding: 0;
		padding-top: 16px;
		overflow: hidden;
		border-radius: 32px;
	}

	.sproduct-nutri h3 {
		text-align: center;
		padding: 0 8px;
		font-size: 20px;
		line-height: 22px;
		margin-bottom: 16px;
	}

	.sproduct-nutri__tabs {
		max-height: 38px;
		overflow: hidden;
		transition: all .3s;
	}

	.sproduct-nutri__tabs.open-list {
		max-height: 380px;
	}

	.sproduct-nutri__tabs li {
		width: 100%;
		margin-right: 0;
	}

	.sproduct-nutri__tabs__item {
		order: 1;
		transition: all .5s;
	}

	.sproduct-nutri__tabs__item.active {
		order: 0;
		position: relative;
	}

	.sproduct-nutri__tabs__item.active::after {
		content: '';
		display: block;
		width: 20px;
		height: 12px;
		background-image: url(../img/arrow-down.svg);
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
		transition: all .3s;
	}

	.sproduct-nutri__tabs__item.opened::after {
		transform: translateY(-50%) rotate(180deg);
	}

	.sproduct-nutri__trigger {
		width: 100%;
		padding: 4px 8px;
		border-radius: 0px;
		border: none;
		border-bottom: 1px solid var(--green-main);
		text-align: left;
	}
}

/*SINGLE PRODUCT INFO END*/

/*SINGLE PRODUCT RELATED START*/
.sproduct-related h2 {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 40px;
	color: var(--green-main);
}

.sproduct-related__posts {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}

.swiper.related-prods_swiper {
	overflow: visible;
}

@media screen and (max-width: 1024px) {
	.sproduct-related h2 {
		margin-bottom: 32px;
	}

	.sproduct-related__posts {
		justify-content: start;
		flex-wrap: nowrap;
	}

	.sproduct-related__posts .swiper-slide {
		max-width: unset;
		display: flex;
		height: auto;
	}

	.sproduct-related__wrap {
		width: 100vw;
		max-width: 100vw;
		margin-left: -32px;
	}

	.related-prods_swiper {
		padding: 0 32px;
	}
}

@media screen and (max-width: 640px) {
	.sproduct-related h2 {
		font-size: 24px;
		line-height: 26px;
		margin-bottom: 32px;
	}

	.sproduct-related__wrap {
		margin-left: -16px;
	}

	.sproduct-related__wrap {}

	.sproduct-related__posts .swiper-slide {
		display: flex;
		height: auto;
	}

	.sproduct-related__wrap .swiper {
		margin: 0 auto 0 0;
		padding: 0;
		padding-left: 16px;
		overflow: visible !important;
		width: 70%;
	}
}

/*SINGLE PRODUCT RELATED END*/


/*SINGLE POST BANER START*/
.single-post_baner .breadcrumbs-row {
	margin-bottom: 44px;
}

.single-post_baner__wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	background-color: var(--white);
	padding: 64px 56px;
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 40px;
	justify-content: space-between;
}

.single-post_baner__visuals {
	width: 100%;
	max-width: 460px;
}

.single-post_baner__visuals img {
	aspect-ratio: 1 / 1;
	margin-bottom: 24px;
	border-radius: 40px;
}

.single-post_baner__share {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.single-post_baner__share .small-heading {
	color: var(--gray-dark);
	margin-right: 16px;
	text-transform: uppercase;
}

body .addtoany_list a,
body .widget .addtoany_list a {
	border-radius: 50% !important;
	height: 42px;
	overflow: hidden;
	padding: 0;
	margin-right: 16px;
}

body .addtoany_list a svg,
body .widget .addtoany_list a svg {
	transform: scale(.8);
}

.single-post_baner__texts {
	width: 100%;
	max-width: calc(100% - 500px);
}

.single-post_baner__texts h1 {
	text-transform: uppercase;
	color: var(--gray-dark);
	margin-bottom: 8px;
}

.single-post_content a,
.single-post_baner__texts a {
	color: var(--green-main);
}

.single-post_content a:hover,
.single-post_baner__texts a:hover {
	text-decoration: underline;
}

.single-post_content strong,
.single-post_content b,
.single-post_baner__texts strong,
.single-post_baner__texts b {
	font-weight: 600;
}



@media screen and (max-width: 1024px) {
	.single-post_baner__visuals img {
		border-radius: 30px;
	}

	.single-post_baner__wrap {
		padding: 24px;
	}

	.single-post_baner__visuals,
	.single-post_baner__texts {
		max-width: 100%;
	}

	.single-post_baner__texts {
		margin-bottom: 24px;
	}

	.single-post_baner__texts h1 {
		margin-bottom: 16px;
		font-size: 36px;
		line-height: 36px;
	}

	.single-post_baner__share {
		justify-content: flex-start;
	}
}

@media screen and (max-width: 640px) {
	.single-post_baner {
		padding: 32px 0;
	}

	.single-post_baner__wrap {
		padding: 8px;
		border-radius: 24px;
	}

	.single-post_baner__visuals img {
		/*margin-bottom: 16px;*/
		margin-bottom: 24px;
		border-radius: 24px;
	}

	body .addtoany_list a,
	body .widget .addtoany_list a {
		transform: scale(.76, .76);
		margin-right: 0px;
	}

	.single-post_baner__share {
		padding: 0 12px;
	}

	.single-post_baner__share .small-heading {
		margin-right: 8px;
	}

	.single-post_baner__texts {
		padding: 0 12px;

	}

}

/*SINGLE POST BANER END*/

/*SINGLE POST CONTENT START*/
.single-post_content h1,
.single-post_content h2,
.single-post_content h3,
.single-post_content h4,
.single-post_content h5,
.single-post_content h6 {
	margin-bottom: 24px;
}

.single-post_content h3 {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 26px;
	text-transform: uppercase;
}

.single-post_content h3 strong {
	color: var(--green-main);
}

.single-post_content p {
	margin-top: 16px;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	color: var(--dark);
}

/*SINGLE POST CONTENT END*/

/*PAGE NEWS START*/
.blog-news .breadcrumbs-row {
	margin-bottom: 44px;
}

.blog-news__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.blog-news__list::after {
	content: '';
	display: block;
	width: 100%;
	max-width: calc(100% / 3 - 12px);
	height: 0;
}

.post-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: calc(100% / 3 - 12px);
	background: #FFFFFF;
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 24px;
	height: inherit;
	margin-bottom: 24px;
	overflow: hidden;
	transition: all .3s;
}

.post-card:hover {
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.32);
}

.post-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
}

.post-card__texts {
	display: inline-flex;
	flex-direction: column;
	width: 100%;
	padding: 20px 24px 24px 24px;
	justify-content: center;
	height: inherit;
}

.post-card .accent-text {
	margin: auto;
	margin-bottom: 16px;
	max-width: 336px;
	text-align: center;
	min-height: 52px;
}

.post-card button {
	margin: auto auto 0 auto;
	text-transform: uppercase;
}

@media screen and (max-width: 1024px) {

	.post-card,
	.blog-news__list::after {
		max-width: calc(50% - 12px);
	}

	.post-card button {
		width: 200px;
	}

	.post-card__texts {
		padding: 16px;
	}

	.post-card .accent-text {
		display: inline-flex;
		align-items: center;
		font-weight: 500;
		font-size: 24px;
		line-height: 26px;
		min-height: auto;
		margin: 18px auto !important;
	}
}

@media screen and (max-width: 640px) {

	.post-card,
	.blog-news__list::after {
		max-width: 100%;
	}

	.post-card {
		margin-bottom: 16px;
	}

	.post-card__texts {
		padding: 4px 16px 16px 16px;
	}

	.post-card .accent-text {
		margin-bottom: 4px;
	}

	.post-card button {
		width: 100%;
		max-width: 300px;
	}
}

/*PAGE NEWS END*/


/*SOUVENIRS START*/

.souvenirs-list .souvenirs-card {
	width: 100%;
	max-width: calc(100% / 4 - 12px);
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin-right: 0;
}

.souvenirs-card img {
	aspect-ratio: 5 / 4;
}

@media screen and (max-width: 1024px) {

	.souvenirs-list::after,
	.souvenirs-list .souvenirs-card {
		max-width: calc(100% / 2 - 12px);
	}
}

@media screen and (max-width: 640px) {
	.souvenirs-card img {
		aspect-ratio: 5 / 3;
	}

	.souvenirs-list::after,
	.souvenirs-list .souvenirs-card {
		max-width: 100%;
	}

	.souvenirs-list .souvenirs-card {
		margin-bottom: 16px;
	}
}

/*SOUVENIRS END*/



/*COOKIE BAR START*/
.cookie_bar {
	position: fixed;
	width: 100vw;
	bottom: 0;
	left: 0;
	background-color: var(--white);
	padding: 16px 0 24px 0;
	z-index: 50;
	transform: translateY(110%);
	transition: all .3s;
}

.cookie_bar.active {
	transform: translateY(0);
}

.cookie_bar__wrap {
	width: 100%;
}

.cookie_bar .close {
	margin: 0 0 16px auto;
}

.cookie_bar__wrap p {
	text-align: center;
	margin-bottom: 16px;
}

.cookie_bar__wrap p,
.cookie_bar__wrap .green-button,
.cookie_bar__wrap .border-button {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 143.4%;

}

.cookie_bar__buttons {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.cookie_bar__buttons * {
	padding: 8px 24px;
}

.cookie_bar__buttons .green-button {
	border: 2px solid var(--green-main);
	margin-right: 12px;
}

/*COOKIE BAR END*/



/*SINGLE SOUVENIRS BANER START*/
.s-souvenir_main .breadcrumbs-row {
	margin-bottom: 44px;
}

.s-souvenir_main__wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	background: #FFFFFF;
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 40px;
	padding: 24px 56px;
}

.s-souvenir_main__thumbs {
	width: 100%;
	/*max-height: 360px;*/
	max-width: 104px;
	aspect-ratio: 3 / 10;
	margin-right: 24px;
	margin-left: 0;
}

.s-souvenir_main__thumbs .swiper-slide {
	padding-bottom: 24px;
}

.s-souvenir_main__thumbs .swiper-slide img {
	/*aspect-ratio: 1 / 1;*/
	border-radius: 20px;
	object-fit: cover;
	object-position: center;
}

.s-souvenir_main__thumbs .swiper-slide-active img {
	/*border: 1px solid var(--green-main);*/
}

.s-souvenir_main__slider {
	width: 100%;
	max-width: 360px;
	max-height: 360px;
	aspect-ratio: 1 / 1;
	margin-left: 0;
	position: relative;
}

.s-souvenir_main__slider .swiper-slide {
	aspect-ratio: 1 / 1;
}

.s-souvenir_main__slider .swiper-slide img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	object-position: center;
	border-radius: 20px;
}

.s-souvenir_main__slider .swiper-button-next:after,
.s-souvenir_main__slider .swiper-button-prev:after {
	color: var(--dark);
}

.s-souvenir_main__text {
	width: 100%;
	max-width: 540px;
	padding-left: 16px;
}

.s-souvenir_main__text h1 {
	text-transform: uppercase;
	margin-bottom: 24px;
}

body #nsbbox {
	background-color: #ffffff88;
}

body #nsbbox a.closeBOX {
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	color: var(--black);
	font-size: 0;
	top: 10%;
	right: 10%;
	margin-top: 0;
	z-index: 1000;

}

#nsbbox img,
#nsbbox iframe {
	border: none;
	box-shadow: 0 0 50px #33333366 !important;
}

body #nsbbox .pfeilRechts,
body #nsbbox .pfeilLinks,
body #nsbbox .pfeilRechts:hover,
body #nsbbox .pfeilLinks:hover {
	background-color: transparent;
	border: none;
	width: 32px;
	height: 32px;
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: center;
	background-image: url(../img/breadcrumb-arrow_dark.svg);
	/*filter: contrast(100%) brightness(0);*/

}

body #nsbbox .pfeilLinks {
	transform: rotate(180deg);
}

body #nsbbox .pfeilRechts::before,
body #nsbbox .pfeilLinks::before {
	content: '';
	display: block;
	width: 120%;
	height: 120%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: #ffffff77;
}

body #nsbbox .pfeilLinks {
	right: unset;
	left: 8px;
	/*transform: rotateY(180deg);*/
}

body #nsbbox .pfeilRechts {
	left: unset;
	right: 8px;
	/*transform: rotateY(180deg);*/
}

@media (max-width: 479px) {

	body #nsbbox a.pfeilLinks,
	body #nsbbox a.pfeilRechts {
		top: 50%;
		z-index: 1111;
		margin-top: -32px;
	}

	body #nsbbox img,
	body #nsbbox iframe {
		z-index: -1;
	}

	body #nsbbox .loader {
		display: none;
	}
}

@media screen and (max-width: 1024px) {
	.s-souvenir_main__wrap {
		padding: 24px 16px;
		justify-content: center;
	}

	.s-souvenir_main__thumbs {
		max-width: 122px;
		margin-right: 16px;
	}

	.s-souvenir_main__slider {
		max-width: 400px;
	}

	.s-souvenir_main__text {
		max-width: 100%;
		margin-top: 40px;
	}

	.s-souvenir_main__thumbs .swiper-slide {
		padding-bottom: 16px;
	}

	.s-souvenir_main__wrap .swiper-button-next,
	.s-souvenir_main__wrap .swiper-button-prev {
		width: 42px;
		height: 42px;
		background: rgba(255, 255, 255, 0.3);
	}

	.s-souvenir_main__text h1 {
		margin-bottom: 16px;
		font-size: 36px;
	}
}

@media screen and (max-width: 640px) {
	.s-souvenir_main__wrap {
		padding: 8px;
		border-radius: 24px;
	}

	.s-souvenir_main__thumbs {
		max-width: 100%;
		aspect-ratio: unset;
		margin-bottom: 16px;
		margin-right: 0;
	}

	.s-souvenir_main__thumbs .swiper-wrapper {
		align-items: center;
	}

	.s-souvenir_main__thumbs .swiper-slide {
		padding-bottom: 0;
		padding: 0 4px;
	}

	.s-souvenir_main__slider {
		max-width: 100%;
		margin-bottom: 16px;
		order: -1;
	}

	.s-souvenir_main__wrap .swiper-button-next,
	.s-souvenir_main__wrap .swiper-button-prev {
		display: flex;
		width: 24px;
		height: 24px;
	}

	.s-souvenir_main__wrap .swiper-button-next::after,
	.s-souvenir_main__wrap .swiper-button-prev::after {
		font-size: 16px;
		font-weight: bold;
	}

	.s-souvenir_main__text {
		margin-top: 24px;
		padding: 0 12px;
		margin-bottom: 12px;
	}

	.s-souvenir_main__text h1 {
		margin-bottom: 8px;
		font-size: 24px;
	}

	body #nsbbox a.closeBOX {
		top: 48px;
		right: 16px;
	}
}

/*SINGLE SOUVENIRS BANER END*/

/*SINGLE SOUVENIRS RELATIVES START*/
.s-souvenir_rels__wrap {
	overflow: hidden;
	padding: 16px;
	margin: -16px;
}

.s-souvenir_rels__wrap h2 {
	text-align: center;
	margin-bottom: 72px;
	color: var(--green-main);
	text-transform: uppercase;
}

.s-souvenir_rels-swiper {
	max-width: 85%;
	overflow: visible;
	margin-left: 0;
}

.s-souvenir_rels-swiper .card-simple {
	margin-right: 0;
	overflow: hidden;
}

.s-souvenir_rels__text {
	margin: auto;
	margin-top: 96px;
	max-width: 1000px;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.2;
	text-align: center;
}

@media screen and (max-width: 1024px) {
	.s-souvenir_rels__wrap h2 {
		margin-bottom: 48px;
	}

	.s-souvenir_rels-swiper {
		max-width: 100%;
		margin-bottom: 72px;
	}

	.s-souvenir_rels-swiper h3 {
		font-size: 20px;
		padding: 12px 0 0 0;
	}

	.s-souvenir_rels-swipe {
		font-size: 18px;
	}
}

@media screen and (max-width: 640px) {
	.s-souvenir_rels__wrap h2 {
		margin-bottom: 32px;
		margin-top: 32px;
		font-size: 24px;
	}

	.s-souvenir_rels-swiper {
		max-width: 60%;
		margin-bottom: 64px;
	}

	.s-souvenir_rels__text {
		font-size: 16px;
		margin-bottom: 12px;
		margin-top: 32px;
	}

	.s-souvenir_rels-swiper .card-simple {
		display: flex;
		height: auto;
	}

	.s-souvenir_rels-swiper h3 {
		padding: 12px 0;
	}

}

/*SINGLE SOUVENIRS RELATIVES END*/

/*ABOUT PAGE START*/
.about-video {
	padding: 48px 0 16px 0;
}

.about-video h1 {
	/*display: none;*/
	text-transform: uppercase;
	text-align: center;
	color: var(--gray-dark);
	margin-bottom: 24px;
}

.about-video__wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 5 / 2;
	border-radius: 40px;
	overflow: hidden;
}

.about-video__wrap iframe {
	width: 100%;
	height: 100%;
}

.about-video__wrap img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	object-fit: cover;
}

.about-video__wrap .play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 124px;
	height: 124px;
	background-image: url(../img/play-circle.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.about-video__popup {
	z-index: 1000;
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background: #00000099;
	display: flex;
	align-items: center;
	justify-content: center;
	clip-path: circle(0.0% at 50% 50%);
	transition: all .3s;
	visibility: hidden;
}

.about-video__popup.active {
	visibility: visible;
	clip-path: circle(100% at 50% 50%);
}

.about-video__popup iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	border-radius: 24px;
}

.text-wrap {
	max-width: 996px;
	margin: auto;
}

.text-wrap.wide {
	max-width: 100%;
}

.text-wrap h1 {
	text-transform: uppercase;
	text-align: center;
	color: var(--gray-dark);
	margin-bottom: 24px;
}

.text-wrap h3:first-child {
	margin-top: 0;
}

.text-wrap h2,
.text-wrap h3,
.text-wrap h4,
.text-wrap h5,
.text-wrap h6 {
	color: var(--green-main);
	margin-top: 32px;
}

.text-wrap h4 {
	font-size: 24px;
}

.text-wrap h3 {
	font-weight: 700;
	font-size: 36px;
	line-height: 143.02%;
	text-transform: uppercase;
}

.text-wrap p {
	font-weight: 400;
	font-size: 18px;
	line-height: 143.02%;
}

.text-wrap.wide p {
	font-weight: 400;
}

.text-wrap ul li {
	padding-left: 32px;
	position: relative;
	font-weight: 400;
	font-size: 18px;
	line-height: 143.02%;
	margin-bottom: 4px;
}

.text-wrap ul li::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-color: var(--green-main);
	border-radius: 50%;
	position: absolute;
	left: 8px;
	top: 4px;
	/*transform: translateY(-50%);*/
}

@media screen and (max-width: 1024px) {
	.about-video {
		padding: 48px 0 24px 0;
	}

	.about-video h1 {
		margin-bottom: 40px
	}

	.about-texts {
		margin-top: 0;
	}

	.text-wrap h2:first-child,
	.text-wrap h3:first-child,
	.text-wrap h4:first-child,
	.text-wrap h5:first-child,
	.text-wrap h6:first-child {
		margin-top: 8px;
	}

	.text-wrap h1 {
		margin-bottom: 28px;
		font-size: 32px;
	}

	.text-wrap h3 {
		font-size: 28px;
		margin-top: 28px;
	}
}

@media screen and (max-width: 640px) {
	.about-video {
		padding-bottom: 12px;
	}

	.about-video__wrap {
		aspect-ratio: 3 / 2;
	}

	.about-video__wrap .play {
		width: 64px;
		height: 64px;
	}

	.about-video h1 {
		display: none;
	}

	.text-wrap h3 {
		font-size: 24px;
		margin-top: 24px;
	}

	.text-wrap p,
	.text-wrap ul li {
		font-size: 16px;
	}

	.text-wrap h1 {
		font-size: 28px;
		margin-bottom: 32px;
		line-height: 1.2;
		margin-top: 16px;
	}
}

/*ABOUT PAGE END*/

/*DONATE PAGE BASIC START*/
.donate-main h1 {
	font-size: 48px;
	margin-bottom: 32px;
	text-align: center;
	text-transform: uppercase;
	color: var(--gray-dark);
}

.donate-main__wrap>img {
	margin-bottom: 48px;
}

.donate-hero {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 82px 0;
	margin-bottom: 32px;
	margin-top: 32px;
}

.donate-hero h2 {
	font-weight: 700;
	font-size: 48px;
	line-height: 52px;
	text-align: center;
	text-transform: uppercase;
	color: var(--white);
}

.donate-swiper {
	margin-bottom: 58px;
}

.donate-swiper .swiper-slide {
	width: 100%;
	aspect-ratio: 32 / 13;
	overflow: hidden;
	position: relative;
	border-radius: 32px;
}

.donate-swiper .swiper-slide a {
	position: absolute;
	bottom: 40px;
	right: 40px;
}

.donate-swiper .swiper-slide img {
	object-fit: cover;
}

.donate_baner__wrap {
	border-radius: 40px;
	background: var(--black);
	position: relative;
	aspect-ratio: 3 / 1;
	overflow: hidden;
}

.donate_baner__wrap img {
	position: relative;
	width: 100%;
	height: 100%;
}

.donate_baner__wrap p {
	position: absolute;
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	line-height: 143.02%;
	color: var(--white);
	width: 45%;
	top: 64px;
	right: 48px;
}

.donate_baner__wrap a {
	position: absolute;
	right: 48px;
	bottom: 38px;
}

.donate_baner__bg-tablet {
	display: none;
}

@media screen and (max-width: 1024px) {
	.donate-main h1 {
		margin-bottom: 24px;
		font-size: 36px;
	}

	.donate-hero h2 {
		font-size: 32px;
	}

	.donate-main__wrap>img {
		margin-bottom: 40px;
	}

	.donate-hero {
		padding: 32px 0;
		margin-bottom: 24px;
	}

	.donate-swiper .swiper-slide a {
		right: 24px;
		bottom: 24px;
	}

	.donate_baner__wrap {
		aspect-ratio: 2 / 1;
	}

	.donate-swiper {
		padding: 0 16px;
	}

	.donate-swiper .swiper-slide img {
		aspect-ratio: 32 / 13;
		border-radius: 24px;
	}

	.donate_baner__bg-desktop {
		display: none;
	}

	.donate_baner__bg-tablet {
		display: block;
	}

	.donate_baner__wrap p {
		font-size: 18px;
		line-height: 24px;
		top: 40px;
		right: 24px;
		width: 55%;
	}

	.donate_baner__wrap a {
		right: 24px;
		bottom: 16px;
	}
}

@media screen and (max-width: 640px) {
	.donate-main h1 {
		/*margin-top: 24px;*/
		margin-bottom: 24px;
		font-size: 28px;
		line-height: 1.2;
	}

	.donate-hero {
		margin-top: 24px;
		padding: 32px 0;
	}

	.donate-hero h2 {
		font-size: 24px;
		line-height: 26px;
	}

	.donate-swiper .swiper-slide {
		aspect-ratio: unset;
		border-radius: 0px;
	}

	.donate-swiper {
		padding: 0;
		margin-bottom: 32px;
	}

	.donate-swiper .swiper-slide img {
		aspect-ratio: 3 / 2;
		border-radius: 24px;

	}

	.donate-swiper .swiper-slide a {
		margin-top: 16px;
		width: 100%;
		position: static;
	}

	.donate_baner {
		margin-top: 32px;
	}

	.donate_baner__wrap {
		height: auto;
		border-radius: 24px;
		aspect-ratio: unset;
	}

	.donate_baner__bg-tablet {
		display: none;
	}

	.donate_baner__bg-desktop {
		display: block;
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.donate_baner__wrap p {
		position: static;
		width: 100%;
		padding: 16px;
		font-size: 16px;
	}

	.donate_baner__wrap a {
		position: static;
		width: calc(100% - 32px);
		margin-left: 16px;
		margin-bottom: 16px;
	}
}

/*DONATE PAGE BASIC END*/

/*DONATE FILTER START*/
.filter-tabs {
	width: 100%;
	display: flex;
	align-items: center;
	border: 2px solid var(--green-main);
	justify-content: space-between;
	border-radius: 100px;
	margin-bottom: 56px;
}

.filter-tabs li {
	width: max-content;
}

.filter-tabs li button,
.filter-tabs li a {
	width: 100%;
	padding: 12px 16px;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	text-align: center;
	font-size: 18px;
	line-height: 143.02%;
	align-items: center;
	color: var(--green-main);
	border-radius: 100px;
	/*transition: all .3s;*/
	position: relative;
}

.filter-tabs li button:hover,
.filter-tabs li a:hover {
	font-weight: 500;
}

.filter-tabs li button::before,
.filter-tabs li a::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--green-main);
	border-radius: 100px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	/*clip-path: circle(0 at 50% 50%);*/
	z-index: -1;
	opacity: 0;
	max-width: 0;
	transition: all .5s;
}

.filter-tabs li.active button,
.filter-tabs li.active a {
	color: var(--white);
	font-weight: 500;
	transform: scale(1.01);
}

.filter-tabs li.active button::before,
.filter-tabs li.active a::before {
	opacity: 1;
	max-width: 500px;
	/*clip-path: circle(100% at 50% 50%);*/
}

.donate-funds__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	transition: all .5s;
}

.donate-funds__list.loading {
	opacity: .5;
}

.donate-funds__list::after {
	content: '';
	display: block;
	width: 100%;
	max-width: calc(100% / 3 - 12px);
	height: 0;
}

.donate-card {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: 100%;
	max-width: calc(100% / 3 - 12px);
	background-color: var(--white);
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 24px;
	padding: 8px 16px 16px 16px;
	height: inherit;
	margin-bottom: 24px;
}

.donate-card img {
	aspect-ratio: 364 / 100;
	margin-bottom: 8px;
}

.donate-card h3 {
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	margin-bottom: 8px;
}

.donate-card__terms {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 143.4%;
	color: var(--gray-dark);
	margin-bottom: 8px;
}

.donate-card__description {
	font-weight: 400;
	font-size: 18px;
	line-height: 143.02%;
	min-height: 182px;
	margin-bottom: 8px;
}

.donate-card>a {
	margin: auto auto 0 0;
}

@media screen and (max-width: 1024px) {
	.donate-funds__list::after {
		display: none;
	}

	.donate-card {
		max-width: 100%;
	}

	.donate-card img {
		margin-bottom: 12px;
		max-height: 100px;
		object-fit: contain;
		object-position: 0 0;
	}

	.donate-card__description {
		min-height: unset;
		margin-bottom: 12px;
	}

	.donate-card>a {
		padding: 10px 48px;
	}

	.filter-tabs {
		max-height: 45px;
		overflow: hidden;
		transition: all .3s;
		flex-direction: column;
		flex-wrap: wrap;
		border-radius: 24px;
		margin-bottom: 24px;
	}

	.filter-tabs.open-list {
		max-height: 400px;
		border: 2px solid var(--white);
		box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	}

	.filter-tabs li {
		width: 100%;
		margin-right: 0;
	}

	.filter-tabs li {
		order: 1;
		transition: all .5s;
	}

	.filter-tabs li.active {
		order: 0;
		position: relative;
	}

	.filter-tabs li.active::after {
		content: '';
		display: block;
		width: 20px;
		height: 12px;
		background-image: url(../img/arrow-down.svg);
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
		transition: all .3s;
	}

	.filter-tabs li.opened::after {
		transform: translateY(-50%) rotate(180deg);
	}

	.filter-tabs li button::before,
	.filter-tabs li a::before {
		display: none;
	}

	.filter-tabs li.active button,
	.filter-tabs li.active a,
	.filter-tabs li button,
	.filter-tabs li a {
		font-family: 'Blogger Sans';
		width: 100%;
		padding: 8px 24px;
		border-radius: 0px;
		border: none;
		text-align: left;
		color: var(--black);
		font-weight: 400;
	}

	.filter-tabs li:hover {
		background-color: #EDF4EC;
	}
}

@media screen and (max-width: 640px) {
	.donate-card img {
		margin-bottom: 16px;
	}

	.donate-card__description {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 16px;
	}

	.filter-tabs {
		margin-bottom: 16px;
	}
}

/*DONATE FILTER END*/


/*SINGLE JOB START*/
.sj_info .breadcrumbs-row {
	margin-bottom: 44px;
}

.sj_info__wrap {
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 30px;
	padding-bottom: 64px;
}

.sj_info__wrap .filter-tabs {
	margin-bottom: 64px;
}

.job-shortly {
	display: flex;
	width: 100%;
	max-width: calc(100% - 144px);
	margin: auto;
	justify-content: space-between;
	margin-bottom: 64px;
}

.job-shortly img {
	aspect-ratio: 1 / 1;
	border-radius: 40px;
	width: 100%;
	max-width: 400px;

}

.job-shortly__texts {
	width: 100%;
	max-width: calc(100% - 464px);
	height: auto;
}

.job-shortly__texts .mid-heading {
	color: var(--gray-dark);
	margin-bottom: 12px;
	text-transform: uppercase;
}

.job-shortly__texts p {
	margin-bottom: 32px;
	font-size: 18px;
}

.job-shortly__texts a {
	min-width: 200px;
	padding: 10px 32px;
	text-transform: uppercase;
}

.sj_info__description.text-wrap {
	max-width: calc(100% - 144px);
	margin-bottom: 40px;
}

.sj_info .single-post_baner__share {
	max-width: calc(100% - 144px);
	margin: auto;
	justify-content: flex-start;
}

@media screen and (max-width: 1024px) {
	.sj_info__wrap {
		padding-bottom: 24px;
	}

	.sj_info__wrap .filter-tabs {
		margin-bottom: 40px;
	}

	.job-shortly {
		max-width: calc(100% - 48px);
		flex-direction: column;
		margin-bottom: 40px;
		flex-wrap: nowrap;
	}

	.job-shortly img {
		max-width: 100%;
		margin-bottom: 24px;
		border-radius: 30px;
	}

	.job-shortly__texts {
		max-width: unset;
	}

	.job-shortly__texts .mid-heading {
		font-size: 36px;
	}

	.job-shortly__texts p {
		margin-bottom: 24px;
	}

	.sj_info__description.text-wrap {
		max-width: calc(100% - 48px);
		margin-bottom: 46px;
	}

	.sj_info .single-post_baner__share {
		max-width: calc(100% - 48px);
	}
}

@media screen and (max-width: 640px) {
	.sj_info__wrap {
		padding-bottom: 8px;
	}

	.sj_info__wrap .filter-tabs {
		margin-bottom: 16px;
	}

	.job-shortly,
	.sj_info__description.text-wrap,
	.sj_info .single-post_baner__share {
		max-width: calc(100% - 16px);
	}

	.sj_info__description.text-wrap,
	.sj_info .single-post_baner__share {
		padding: 0 12px;
	}

	.sj_info__description.text-wrap {
		margin-bottom: 16px;
	}

	.job-shortly {
		margin-bottom: 24px;
	}

	.job-shortly img {
		border-radius: 24px;
		margin-bottom: 16px;
	}

	.job-shortly__texts h1 {
		font-size: 28px;
		line-height: 1.2;
	}

	.job-shortly__texts {
		padding: 0 12px;
	}

	.job-shortly__texts a {
		width: 100%;
		text-align: center;
		margin-bottom: 8px;
	}

	.job-shortly__texts p {
		font-size: 16px;
	}
}

/*SINGLE JOB END*/

/*EMPLOY BANER START*/
.employ-baner .breadcrumbs-row {
	margin-bottom: 44px;
}

.employ-baner__wrap {
	position: relative;
	border-radius: 40px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	aspect-ratio: 1200 / 537;
	display: flex;
	padding: 48px;
	align-items: center;
	justify-content: flex-start;
}

.employ-baner__texts {
	background: rgba(0, 0, 0, 0.2);
	box-shadow: 0px 4px 3px rgba(87, 53, 6, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 20px;
	padding: 40px;
	color: var(--white);
	text-align: center;
}

.employ-baner__texts h1 {
	margin-bottom: 16px;
	text-transform: uppercase;
}

.employ-baner__texts p {
	font-size: 24px;
	margin-bottom: 32px;
}

@media screen and (max-width: 1024px) {
	.employ-baner .breadcrumbs-row {
		margin-bottom: 32px;
	}

	.employ-baner__wrap {
		aspect-ratio: 576 / 312;
		padding: 12px;
	}

	.employ-baner__texts {
		padding: 24px;
	}

	.employ-baner__texts h1 {
		font-size: 24px;
	}

	.employ-baner__texts p {
		font-size: 16px;
	}
}

@media screen and (max-width: 640px) {
	.employ-baner__wrap {
		aspect-ratio: 288 / 182;
		margin-bottom: 120px;
	}

	.employ-baner__texts {
		position: absolute;
		left: 50%;
		top: 100%;
		transform: translate(-50%, -40px);
		width: 100%;
		max-width: calc(100% - 20px);
		padding: 16px 10px;
	}

	.employ-baner__texts h1 {
		margin-bottom: 8px;
		font-size: 20px;
	}

	.employ-baner__texts p {
		margin-bottom: 8px;
		font-size: 16px;
	}
}

/*EMPLOY BANER END*/

/*JOBS TABS START*/
.jobs-tabs .job-shortly {
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
	height: auto;
	margin-bottom: 0;
	flex-wrap: wrap;
}

.jobs-tabs .job-shortly.active {
	height: auto;
	max-height: 1000px;
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 1024px) {
	.jobs-tabs__filter {
		display: none;
	}

	.jobs-tabs .job-shortly.active {
		max-height: 2000px;
	}

	.jobs-tabs .job-shortly {
		height: auto;
		max-height: 2000px;
		opacity: 1;
		visibility: visible;
		max-width: 100%;
		margin-bottom: 24px;
		box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
		border-radius: 30px;
		padding: 24px;
		flex-wrap: nowrap;
	}

	.jobs-tabs .sj_info__wrap {
		box-shadow: none;
		border-radius: 0px;
	}
}

@media screen and (max-width: 640px) {
	.jobs-tabs .job-shortly {
		padding: 8px;
		margin-bottom: 16px;
		border-radius: 24px;
	}

	.jobs-tabs .job-shortly h3 {
		font-size: 28px;
		line-height: 1.2;
		margin-bottom: 8px;
	}
}

/*JOBS TABS END*/

/*CENTER TEXT START*/
.center-text {
	/*margin-top: 32px;*/
	margin-bottom: 64px;
}

.center-text__wrap {
	max-width: 1000px;
	margin: auto;
	text-align: center;
}

.center-text__wrap h2 {
	text-align: center;
	margin-bottom: 24px;
	color: var(--gray-dark);
}

.center-text__wrap p {
	font-size: 18px;
	margin-bottom: 32px;
	text-align: left;
}

.center-text__wrap a {
	margin: auto;
}

@media screen and (max-width: 1024px) {
	.center-text {
		margin-top: 0;
		margin-bottom: 48px;
	}
}

@media screen and (max-width: 640px) {
	.center-text__wrap h2 {
		font-size: 28px;
		line-height: 1.2;
		margin-bottom: 16px;
	}

	.center-text__wrap p {
		font-size: 16px;
		line-height: 143.02%;
		margin-bottom: 24px;
	}

	.center-text {
		margin-bottom: 32px;
	}

	.center-text__wrap a {
		width: 100%;
	}
}

/*CENTER TEXT END*/


/*MAP START*/
.locations {
	padding: 0;
}

.locations__wrap {
	width: 100%;
	display: flex;
	height: calc(100vh - 158px);
	position: relative;
}

.locations__side {
	/* max-width: 448px; */
	position: absolute;
	top: 16px;
	left: 16px;
	max-width: 25%;
	width: 100%;
	background-color: #ffffffdd;
	/* position: relative; */
	z-index: 1;
	height: calc(100% - 32px);
	border-radius: 32px;
}

.locations__form {
	width: 100%;
	height: 100%;
	/*background-color: var(--white);*/
	position: relative;
	padding: 48px 32px;
}

.locations__form h1 {
	text-align: center;
	margin-bottom: 32px;
	color: var(--dark);
}

.locations__form form,
.locations__form .locations__filtering {
	max-width: 302px;
	margin: auto;
}

.locations__form form {
	margin-bottom: 24px;
}

.locations__form form input {
	font-size: 20px;
	line-height: 143.02%;
	padding: 8px 32px;
	border: 2px solid var(--green-main);
	font-weight: 400;
}

.locations__dropdown-trigger {
	position: relative;
	border: 2px solid var(--green-main);
	box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.12);
	border-radius: 24px;
	padding: 8px 32px;
	margin-bottom: 24px;
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	/*line-height: 143.02%;*/
	color: var(--dark);
	width: 100%;
	text-align: left;
}

.locations__dropdown-trigger::after {
	content: '';
	display: block;
	width: 16px;
	height: 10px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s;
	background-image: url(../img/arrow-down.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.locations__dropdown-trigger.opened::after {
	transform: translateY(-50%) rotate(180deg);
}

.locations__dropdown-trigger.disabled {
	filter: grayscale(.5);
	opacity: .3;
	pointer-events: none;
}

.locations__dropdown-list {
	max-height: 0;
	overflow: hidden;
	border-radius: 24px;
	width: 100%;
	margin-bottom: 0;
	transition: all .3s;
	border: 0 solid var(--green-main);
	visibility: hidden;
}

.locations__dropdown-list.opened {
	border: 2px solid var(--green-main);
	max-height: 300px;
	margin-bottom: 24px;
	overflow-y: auto;
	visibility: visible;
}

.locations__dropdown-list.opened::-webkit-scrollbar {
	width: 2px;
	background-color: transparent;
	clip-path: polygon(0 11%, 100% 11%, 100% 84%, 0 84%);
}

.locations__dropdown-list.opened::-webkit-scrollbar-thumb {
	background-color: var(--gray-light);
	width: 2px;
}

.locations__dropdown-list button {
	width: 100%;
	padding: 10px 12px;
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	transition: all .3s;
	text-align: left;
}

.locations__dropdown-list button:hover {
	background-color: #EDF4EC;
}

.locations__map {
	width: 100%;
	height: 100%;
}

.locations__map .acf-map {
	width: 100%;
	height: 100%;
	transition: all .5s;
}

.locations__map .acf-map.loading {
	opacity: 0.5;
}

.gm-style .gm-style-iw-c {
	padding: 0;
	border-radius: 28px;
	overflow: hidden;
}

.gm-style .gm-style-iw-d {
	margin-bottom: -12px;
}

.gm-style .gm-style-iw-d div {
	display: flex;
}

.gm-style .gm-style-iw-d div img {
	max-width: 181px;
	aspect-ratio: 1 / 1;
}

.gm-style .gm-style-iw-d div .locations__marker-texts {
	padding: 20px 20px 20px 24px;
	/*padding-right: 0;*/
	display: flex;
	height: 100%;
	flex-direction: column;
}

.locations__marker-texts h3 {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 143.4%;
	margin-bottom: 8px;
}

.locations__marker-address {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: var(--gray-light);
	margin-bottom: 8px;
}

.locations__marker-dets {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 8px;
}

.locations__marker-links {
	width: 100%;
	display: flex;
	/*justify-content: flex-end;*/
}

.locations__marker-links a {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 17px;
	text-transform: uppercase;
	text-decoration: underline;
	color: var(--green-main);
	margin-right: 16px;
	margin-bottom: 4px;
}

.gm-style .gm-style-iw-c>button {
	/*transform: scale(1.7) translate(-12px, 12px);*/
	transform: scale(1.2) translate(-8px, 8px);
}

/*locations list*/
.locations__list {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
	/*background-color: var(--white);*/
	left: 0;
	top: 0;
	padding: 32px;
	transform: translateX(-110%);
	transition: all .3s;
}

.locations__list.active {
	transform: translateX(0);
}

.locations__list h2 {
	text-align: center;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.locations__list-counter {
	text-align: center;
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 143.4%;
	margin-bottom: 36px;
}

.locations__list-close {
	position: absolute;
	display: block;
	width: 32px;
	height: 32px;
	background-image: url(../img/arrow_left.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	left: 32px;
	top: 56px;
}

.locations__list ul {
	overflow-y: auto;
	height: calc(100% - 72px);
}

.locations__list ul::-webkit-scrollbar-thumb {
	width: 2px;
	background-color: var(--gray-light);
}

.locations__list ul::-webkit-scrollbar {
	width: 2px;
}

.locations__item {
	display: flex;
	width: 100%;
	margin-bottom: 24px;
	padding-right: 12px;
}

.locations__item__img {
	width: 100%;
	max-width: 42px;
	margin-right: 16px;
}

.locations__item__img img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	/*filter: drop-shadow(0px 2px 12px #CBCBCB);*/
}

.locations__item-texts {
	width: 100%;
}

.locations__item-texts h3 {
	font-weight: 500;
	font-size: 16px;
	line-height: 143.4%;
	margin-bottom: 8px;
}

.locations__item-address {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 8px;
	color: var(--gray-light);
}

.locations__item-dets {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 8px;
}

.locations__item-links {
	margin-top: 16px;
	display: flex;
	width: 100%;
	justify-content: flex-end;
	align-items: center;
}

.locations__item-links a {
	margin-left: 8px;
	text-transform: uppercase;
	line-height: 1;
	border-width: 1px;
}

@media screen and (max-width: 1024px) {
	.locations__wrap {
		flex-direction: column-reverse;
		height: auto;
	}

	.locations__side {
		max-width: 100%;
		position: relative;
		height: auto;
		z-index: 0;
		left: unset;
		top: unset;
	}

	.locations__form {
		background-color: var(--white);
	}

	.locations__form h1 {
		font-size: 32px;
	}

	.locations__list {
		background-color: var(--white);
		max-width: 448px;
	}

	.locations__list.active {
		left: 50%;
		transform: translateX(-50%);
	}

	.locations__map {
		max-width: 100%;
		aspect-ratio: 2 / 1;
	}
}

@media screen and (max-width: 640px) {
	.locations__map {
		aspect-ratio: 1 / 1;
	}

	.locations__form h1 {
		font-size: 28px;
	}

	.locations__form form,
	.locations__dropdown-trigger {
		margin-bottom: 16px;
	}

	.locations__form,
	.locations__list {
		padding: 32px 16px;
	}

	.locations__dropdown-trigger,
	.locations__form form input {
		padding: 12px 16px;
	}

	.gm-style .gm-style-iw-c {
		border-radius: 24px;
		max-height: unset !important;
		max-width: unset !important;
	}

	.gm-style .gm-style-iw-d {
		max-height: unset !important;
		max-width: unset !important;
	}

	.gm-style .gm-style-iw-d div img {
		display: none;
	}

	.gm-style .gm-style-iw-d div .locations__marker-texts {
		padding: 12px;
		max-width: 300px;
	}

	.locations__marker-texts h3 {
		text-align: center;
		padding-right: 12px;
	}

	.gm-style .gm-style-iw-d div {
		flex-direction: column;
		align-items: center;
	}

	.locations__marker-links {
		flex-direction: row !important;
		justify-content: center;
	}

	.locations__marker-links a {
		margin-right: 12px;
		margin-bottom: 0px;
	}

	.locations__marker-links a:last-child {
		/*margin-bottom: 0;*/
		margin-right: 0;
	}

	.gm-style .gm-style-iw-d {
		margin-right: -12px;
	}

	.gm-style .gm-style-iw-c>button {
		transform: scale(1.7) translate(-6px, 6px);
	}
}

/*MAP END*/


/*COMMENTS START*/
.comments h1 {
	margin: 32px 0;
	color: var(--gray-dark);
	text-align: center;
	text-transform: uppercase;
}

.comments__wrap form {
	max-height: 0;
	overflow: hidden;
	visibility: hidden;
	transition: all .3s;
}

.comments__wrap form.active {
	max-height: 3000px;
	visibility: visible;
}

.default-dropdown {
	/*margin-bottom: 24px;*/
	width: 100%;
}

.default-dropdown__list {
	max-height: 46px;
	overflow: hidden;
	border: 2px solid var(--green-main);
	border-radius: 24px;
	transition: all .4s;
	position: relative;
	display: flex;
	flex-direction: column;
}

.default-dropdown__list::after {
	z-index: -1;
}

.default-dropdown__list::after,
.default-dropdown.select .select2-container--default .select2-selection--single::after {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	position: absolute;
	right: 24px;
	top: 10px;
	transition: all .3s;
	background-image: url(../img/arrow-down.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.default-dropdown__list.opened {
	max-height: 500px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
	border: none;
}

.default-dropdown__list.opened::after,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single::after {
	transform: rotate(180deg);
}

.default-dropdown__list li,
.select2-results__option--selectable {
	border-bottom: 1px solid var(--gray-disabled);
}

.default-dropdown__list li.active {
	order: -1;
}

.default-dropdown__list li:last-child,
.select2-results__option--selectable:last-child {
	border-bottom: none;
}

.default-dropdown__list li button,
.select2-results__option--selectable {
	padding: 8px 24px;
	font-family: 'Blogger Sans';
	font-weight: 400;
	font-size: 20px;
	line-height: 143.02%;
	transition: all .3s;
	width: 100%;
	text-align: left;
}

.default-dropdown__list li:not(.active) button:hover,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #EDF4EC;
	color: var(--black);
}

.select2-container--default .select2-selection--single {
	border: 2px solid var(--green-main);
	border-radius: 24px;
	width: 100%;
	padding: 8px 24px;
	height: auto;
	transition: all .3s;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0 !important;
	font-family: 'Blogger Sans';
	font-weight: 400;
	font-size: 20px;
	line-height: 143.02%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	display: none;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
	border-color: transparent;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}

.select2-container--open .select2-dropdown--below {
	box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.12);
	border-radius: 0 0 24px 24px;
	border: 0px solid transparent;
	overflow: hidden;
}

.select2-container--default .select2-results__option--disabled {
	display: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	font-family: 'Blogger Sans';
	font-weight: 400;
	font-size: 20px;
	line-height: 143.02%;
	padding: 8px 24px;
	border: 2px solid var(--green-main);
}

/*defaults*/
.default-field {
	width: 100%;
}

.default-field.half {
	max-width: calc(50% - 12px);
}

.default-field.third {
	max-width: calc(100% / 3 - 12px);
}

.default-field__label {
	font-family: 'Blogger Sans';
	font-weight: 400;
	font-size: 20px;
	line-height: 143.02%;
	text-transform: uppercase;
	margin-bottom: 8px;
	color: var(--green-main);
}

.default-field input,
.default-field textarea {
	padding: 8px 24px;
	font-family: 'Blogger Sans';
	font-weight: 400;
	font-size: 20px;
	line-height: 143.02%;
	border: 2px solid var(--green-main);
	width: 100%;
	border-radius: 24px;
	resize: none;
}

.default-field input::placeholder,
.default-field textarea::placeholder {
	text-transform: uppercase;
}

.default-field.checkbox {
	display: flex;
	align-items: center;
}

.default-field.checkbox label {
	font-family: 'Blogger Sans';
	font-weight: 400;
	font-size: 12px;
	line-height: 13px;
	cursor: pointer;
}

.default-field input[type="checkbox"] {
	display: inline-block;
	width: 18px;
	height: 18px;
	padding: 0;
	border-radius: 3px;
	margin-right: 8px;
	margin-bottom: 0;
	position: relative;
	cursor: pointer;
}

.default-field input[type="checkbox"]::after {
	content: '';
	display: block;
	width: 10px;
	height: 4px;
	border-left: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -70%) rotate(-45deg);
}

.default-field input[type="checkbox"]:checked {
	background-color: var(--green-main);
}

.form-buttons {
	display: flex;
	width: 100%;
}

.form-buttons .next,
.form-buttons .submit {
	margin: 0 0 0 auto;
	min-width: unset;
}

.form-buttons .prev {
	display: flex;
	align-items: center;
}

.form-buttons .prev::before {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	margin-right: 12px;
	background-image: url(../img/arrow_left-green.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.form-row.form-buttons {
	/*margin-bottom: 0;*/
}

.form-row {
	display: flex;
	margin: auto;
	justify-content: space-between;
	max-width: 800px;
	width: 100%;
	flex-wrap: wrap;
	align-items: flex-end;
	margin-bottom: 24px;
}

.form-step {
	display: none;
}

.form-step.active {
	display: block;
}

.form-step>h2 {
	text-align: center;
	margin: 8px 0 32px 0;
	text-transform: uppercase;
	color: var(--gray-dark);
}

/*datepicker*/
[data-toggle="datepicker"] {
	position: relative;
}

.datepicker-top-left:after,
.datepicker-top-left:before,
.datepicker-top-right:after,
.datepicker-top-right:before {
	display: none;
}

body .datepicker-dropdown,
body .datepicker-top-left,
body .datepicker-top-right {
	border-radius: 24px;
	border: 1px solid var(--green-main);
	overflow: hidden;
}

body .datepicker-panel>ul>li {
	font-family: 'Blogger Sans';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	border-radius: 32px;
}

body .datepicker-panel>ul:last-child>li {
	font-weight: 400;
}

body .datepicker-panel>ul>li:hover {
	background-color: #EDF4EC;
}

body .datepicker-panel>ul>li.picked,
body .datepicker-panel>ul>li.picked:hover {
	color: var(--white);
	background-color: var(--green-main);
}

.default-field.error input,
.default-field.error .select2-selection--single,
.default-field.error textarea {
	border-color: red;
}

.default-field.error .default-field__label {
	color: red;
}

.form-row.form-text {
	display: block;
}

.form-text p {
	font-family: 'Blogger Sans';
	font-size: 16px;
	line-height: 17px;
	margin-bottom: 12px;
}

.form-text {
	margin-top: 12px;
}

.form-text a {
	color: var(--green-main);
}

.form-buttons .next,
.form-buttons .submit,
.form-buttons .prev {
	min-width: 200px;
	justify-content: center;
	border: 2px solid var(--green-main);
}

.form-buttons {
	/*margin-bottom: 16px;*/
}

@media screen and (max-width: 1024px) {
	.font-0 {
		font-size: 0;
	}

	.comments h1 {
		margin: 32px 0;
		font-size: 24px;
	}

	.form-text {
		margin-top: 24px;
	}

	.form-buttons .next,
	.form-buttons .submit,
	.form-buttons .prev {
		min-width: 200px;
		justify-content: center
	}

	.form-buttons .next,
	.form-buttons .submit {
		border: 2px solid var(--green-main);
	}
}

@media screen and (max-width: 640px) {
	.comments h1 {
		font-size: 20px;
		margin-bottom: 32px;
		margin-top: 20px;
	}

	.default-field__label {
		font-size: 16px;
	}

	.default-field.third,
	.default-field.half {
		max-width: 100%;
		margin-bottom: 16px;
	}

	.default-field.third:last-child,
	.default-field.half:last-child {
		margin-bottom: 0;
	}

	.form-row {
		margin-bottom: 16px;
	}

	.form-buttons .next,
	.form-buttons .submit,
	.form-buttons .prev {
		width: 100%;
		justify-content: center;
		max-width: 300px;
		margin: auto;
		min-width: unset;
	}

	.form-buttons .prev {
		margin-bottom: 16px;
	}

	.default-dropdown__list li button,
	.select2-results__option--selectable {
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		/* number of lines to show */
		line-clamp: 1;
		-webkit-box-orient: vertical;
	}

	.default-dropdown__list::after,
	.default-dropdown.select .select2-container--default .select2-selection--single::after {
		width: 16px;
		top: 12px;
	}
}

/*COMMENTS END*/

/*MAINTAIN MODE START*/

.maint__wrap {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 64px;
}

.maint__texts {
	width: 100%;
	max-width: calc(50% - 12px);
}

.maint__texts h1 {
	margin-bottom: 24px;
}

.maint__texts p {
	font-family: 'Blogger Sans';
	font-size: 24px;
	line-height: 40px;
	margin-bottom: 24px;
}

.maint__texts .green-button {
	border: 2px solid var(--green-main);
	margin-right: 24px;
}

.maint__texts a {
	padding: 14px 64px;
}

.maint__image {
	width: 100%;
	max-width: calc(50% - 12px);
}

.maint__nav h2 {
	text-transform: uppercase;
	margin-bottom: 24px;
}

.maint__buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

.maint__buttons a {
	margin-right: 24px;
}

.maint__buttons a::nth-child(4n) {
	margin-right: 0;
}

.single-maint {
	display: flex;
	width: 100%;
	align-items: center;
	height: 100vh;
}

@media screen and (max-width: 1024px) {

	.maint__wrap {
		flex-direction: column-reverse;
	}

	.maint__texts {
		max-width: 100%;
	}

	.maint__image {
		max-width: 600px;
		margin-bottom: 32px;
	}

	.maint__texts h1,
	.maint__texts p {
		margin-bottom: 32px;
	}

	.maint__buttons {
		justify-content: space-between;
	}

	.maint__buttons a {
		width: 100%;
		max-width: calc(50% - 12px);
		margin-bottom: 24px;
		margin-right: 0;
	}
}

@media screen and (max-width: 640px) {
	.maintenance {
		padding: 0;
	}

	.maint__image {
		margin-bottom: 24px;
	}

	.maint__texts .green-button {
		margin-bottom: 16px;
	}

	.maint__buttons a {
		max-width: 100%;
	}
}

/*MAINTAIN MODE END*/




/*FRANCHISE BANER START*/
.franchise_baner {}

.franchise_baner__wrap {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 40px;
	padding: 80px 60px;
}

.franchise_baner__texts {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 64px 16px;
	text-align: center;
	color: var(--white);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	background-color: #00000044;
	border-radius: 40px;
	margin-bottom: 48px;
}

.franchise_baner__texts .mid-heading {
	margin-bottom: 32px;
}

.franchise_baner__texts p {
	font-family: Blogger Sans;
	font-size: 20px;
	max-width: 800px;
	margin-bottom: 32px;
}

.franchise_baner__texts a {
	min-width: 200px;
}

.franchise_baner__buttons {
	display: flex;
	width: 100%;
	padding: 0 16px;
	align-items: center;
	justify-content: center;
}

.franchise_baner__buttons a {
	margin: 0 12px 12px 12px;
}

@media screen and (max-width: 1024px) {
	.franchise_baner__wrap {
		padding: 64px 16px;
	}

	.franchise_baner__texts .mid-heading,
	.franchise_baner__texts p {
		margin-bottom: 24px
	}

	.franchise_baner__buttons {
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 640px) {
	body .franchise_baner {
		padding-top: 0;
		padding-bottom: 124px;
	}

	.franchise_baner__wrap {
		padding: 48px 4px 0 4px;
		border-radius: 24px;
		overflow: visible
	}

	.franchise_baner__texts {
		margin-bottom: 0;
		padding: 16px 4px 4px 4px;
		border-radius: 24px;
		/*transform: translateY(50%);*/
		transform: translateY(15%);
	}

	.franchise_baner__texts .combi-button,
	.franchise_baner__texts .green-button {
		margin-bottom: 12px;
	}

	.franchise_baner__texts .mid-heading,
	.franchise_baner__texts p {
		margin-bottom: 16px
	}

	.franchise_baner__texts .mid-heading {
		font-size: 24px;
	}

	.franchise_baner__texts p {
		font-size: 16px;
		line-height: 1.1;
	}

	.franchise_baner__texts a {
		width: 100%;
	}

	.franchise_baner__buttons {
		display: none;
		flex-direction: column;
	}

	.franchise_baner__buttons {
		width: 100%;
	}
}

/*FRANCHISE BANER END*/


/*TEXT ICONS GRID START*/
.texts_icons_grid h2 {
	color: var(--gray-dark);
	text-align: center;
	margin-bottom: 32px;
	text-transform: uppercase;
}

.texts_icons_grid__wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border-radius: 40px;
	/*border-top: 1px solid var(--gray-light);*/
	/*border-left: 1px solid var(--gray-light);*/
	border: 1px solid var(--gray-light);
	overflow: hidden;
	box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.1);
}

.texts_icons_grid__item {
	display: flex;
	width: 100%;
	max-width: calc(100% / 3);
	height: inherit;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
	aspect-ratio: 3 / 2;
	transition: all .3s;
}

.texts_icons_grid__item:hover {
	/*background-color: rgba(72, 145, 62, 0.3);*/
}

.texts_icons_grid__item::after {
	content: '';
	display: block;
	width: calc(100% + 1px);
	height: calc(100% + 1px);
	border-bottom: 1px solid var(--gray-light);
	border-right: 1px solid var(--gray-light);
	position: absolute;
	left: 0;
	top: 0;
}

.texts_icons_grid__item img {
	width: 64px;
	height: 64px;
	margin-bottom: 24px;
	transition: all .3s;
}

.texts_icons_grid__item:hover img {
	filter: invert(49%) sepia(5%) saturate(7007%) hue-rotate(67deg) brightness(94%) contrast(67%);
}

@media screen and (max-width: 920px) {
	.texts_icons_grid__item {
		max-width: 50%;
	}
}

@media screen and (max-width: 640px) {
	.texts_icons_grid__item {
		max-width: 100%;
	}

	.texts_icons_grid h2 {
		font-size: 24px;
		margin-bottom: 24px;
	}
}

/*TEXT ICONS GRID END*/

/*FRANCHISE CARDS START*/
.franchise_cards__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 32px;
	margin-bottom: -24px;
}

.franchise_card {
	border-radius: 40px;
	background-color: var(--white);
	width: 100%;
	max-width: calc(100% / 3 - 36px);
	box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 24px;
	transition: all .3s;
}

.franchise_card:hover {
	transform: scale(1.01);
}

.franchise_card__size {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 72px;
	height: 72px;
	background-color: var(--gray-dark);
	font-size: 64px;
	font-family: Blogger Sans;
	font-size: 64px;
	line-height: 1;
	font-weight: 700;
	color: var(--white);
	border-radius: 50%;
	padding-top: 10px;
	transform: translateY(-50%);
	transition: all .3s;
}

.franchise_card:hover .franchise_card__size {
	background-color: var(--green-main);
}

.franchise_card__desc {
	text-align: center;
	padding: 0 8px;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 32px;

	min-height: 74px;
}

.franchise_card__desc strong {
	font-weight: 700;
	font-family: Blogger Sans;
}

.franchise_card__income {
	padding: 24px;
	width: 100%;
	text-align: center;
	border-top: 1px solid var(--gray-light);
	font-family: Blogger Sans;
	font-weight: 700;
}

.franchise_card__income span {
	color: var(--green-main);
}

.franchise_card__income strong {
	font-size: 48px;
	color: var(--gray-dark);
}

@media screen and (max-width: 1024px) {
	.franchise_cards__wrap {
		margin-bottom: 0;
	}

	.franchise_card {
		max-width: calc(50% - 24px);
		margin-bottom: 64px;
	}

	.franchise_card:last-child {
		margin: auto;
	}
}

@media screen and (max-width: 640px) {
	.franchise_cards {
		padding: 24px 0;
	}

	.franchise_card {
		max-width: 100%;
	}
}

/*FRANCHISE CARDS END*/

.list_image__wrap {
	display: flex;
	flex-wrap: wrap;
	box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.1);
	border-radius: 40px;
	overflow: hidden;
}

.list_image__texts {
	display: flex;
	flex-direction: column;
	height: inherit;
	width: 100%;
	max-width: 50%;
	padding: 48px;
}

.list_image__texts h2 {
	margin-bottom: 32px;
	color: var(--gray-dark);
	text-transform: uppercase;
}

.list_image__wrap img {
	width: 100%;
	max-width: 50%;
	height: inherit;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width: 1024px) {
	.list_image__texts {
		padding: 24px;
	}

	.list_image__texts h2 {
		margin-bottom: 24px;
	}
}

@media screen and (max-width: 640px) {
	.list_image__wrap {
		flex-direction: column-reverse;
	}

	.list_image__wrap img,
	.list_image__texts {
		max-width: 100%;
	}

	.list_image__wrap img {
		height: unset;
		aspect-ratio: 3 / 2;
	}
}

/*STEPS LIST START*/
.steps_list {
	margin-top: 32px;
	background-color: var(--gray-dark);
}

.steps_list h2 {
	margin-bottom: 24px;
	color: var(--white);
	text-transform: uppercase;
	text-align: center;
}

.steps_list__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.steps_list__wrap li {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: calc(50% - 12px);
	color: var(--white);
	font-size: 20px;
	line-height: 1.2;
	font-family: Blogger Sans;
	margin-bottom: 16px;
}

.steps_list__number {
	color: var(--white);
	font-size: 24px;
	padding-top: 4px;
	font-weight: 700;
	line-height: 1;
	font-family: Blogger Sans;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	background-color: var(--green-main);
	margin-right: 12px;
	border-radius: 50%;
}

@media screen and (max-width: 920px) {
	.steps_list__wrap li {
		max-width: 100%;
	}
}

@media screen and (max-width: 640px) {
	.steps_list {
		padding: 24px 0;
	}

	.steps_list__wrap li {
		font-size: 20px;
	}

	.steps_list__number {
		width: 24px;
		height: 24px;
		font-size: 20px;
		margin: 0 20px auto 0;
	}
}

/*STEPS LIST END*/

/*TEXT SECTION START*/
.text_section h2 {
	margin-bottom: 32px;
	text-transform: uppercase;
	color: var(--gray-dark);
}

@media screen and (max-width: 1024px) {
	.text_section h2 {
		margin-bottom: 24px;
	}
}

@media screen and (max-width: 640px) {
	.text_section {
		padding: 24px 0;
	}

	.text_section h2 {
		margin-bottom: 24px;
	}
}

/*TEXT SECTION END*/

/*ABOUT US section START*/
.about_us {
	position: relative;
	overflow: hidden;
}

.about_us .section-title {
	text-align: center;
	font-size: 48px;
	margin-bottom: 16px;
}

.about_us__wrap {
	background-size: cover;
	background-position: center;
	border-radius: 24px;
	padding: 40px;
}
.about_us__text {
	max-width: 50%;
	color: var(--white);
	background: rgba(0, 0, 0, 0.2);
	box-shadow: 0px 4.51312px 3.61049px rgba(87, 53, 6, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 20px;
	padding: 20px;
	max-height: 344px;
	overflow: auto;
}
.about_us__text b,
.about_us__text strong {
	font-weight: 700;
}

.about_us__text em,
.about_us__text i {
	font-style: italic;
}

.about_us__text a {
	text-decoration: underline;
}

.about_us__image {
	display: none;
}

@media screen and (max-width:  640px){
	.about_us {
		padding: 32px 0;
	}
	.about_us .section-title {
		font-size: 32px;
		margin-bottom: 24px;
	}

	.about_us__wrap {
		border-radius: 0;
		background: none !important;
		padding: 0;
	}

	.about_us__text {
		padding: 0;
		color: var(--black);
		max-width: 100%;
		background: none;
		box-shadow: none;
		border-radius: 0;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.about_us__image {
		margin-top: 24px;
		display: block;
		width: 100%;
		/*border-radius: 16px;*/
	}
}
/*ABOUT US section END*/

/*TEXT IMAGE START*/
.text_image {
	position: relative;
}

.text_image>img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.6);
}

.text_image__wrap {
	padding: 64px 0;
	width: 100%;
}

.text_image h2 {
	margin-bottom: 48px;
	color: var(--gray-dark);
	text-align: left;
	color: var(--white);
	text-transform: uppercase;
}

.text_image p {
	color: var(--white);
}

@media screen and (max-width: 640px) {
	.text_image>img {
		display: none;
	}

	.text_image__wrap {
		display: flex;
		flex-direction: column;
		padding: 8px 0;
		width: 100%
	}

	.text_image h2 {
		margin-bottom: 24px;
	}

	.text_image h2,
	.text_image p {
		color: var(--gray-dark);
	}

	.text_image__wrap>img {
		order: 1;
		margin-top: 32px;
		/*border-radius: 40px;*/
		border-radius: 22px;
		object-fit: cover;
		height: 180px;
	}
}

/*TEXT IMAGE END*/

/*CONTACTS START*/
.contacts h2 {
	margin-bottom: 32px;
	text-transform: uppercase;
	color: var(--gray-dark);
}

.contacts__row {
	margin-bottom: 24px;
}

.contacts__caption {
	display: block;
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 700;
	color: var(--green-main);
}

.contacts__value {
	display: flex;
	align-items: center;
	transition: all .3s;
}

.contacts__value::before {
	content: '';
	display: block;
	width: 32px;
	height: 32px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-right: 12px;
}

.contacts__value.phone::before {
	background-image: url(../img/phone.svg);
}

.contacts__value.email::before {
	background-image: url(../img/mail.svg);
}

.contacts__value:hover {
	color: var(--green-main);
	text-decoration: underline;
}

@media screen and (max-width: 640px) {
	.contacts {
		padding: 32px 0;
	}
}

/*CONTACTS END*/





/*POLAND CUSTOMISATION START*/
.header__nav>p,
.header__buttons form,
.header__search {
	display: none;
}

.header__wrap {
	align-items: center;
}

.header__buttons {
	display: none;
}

.header__texts {
	justify-content: flex-end;
}

.header__nav .combi-button {
	display: none;
}

.footer__socials {
	width: 100%;
	max-width: calc(25% - 36px);
}


@media screen and (max-width: 1024px) {
	.footer__socials {
		max-width: calc(50% - 8px);
	}
}

@media screen and (max-width: 640px) {
	.footer__socials {
		max-width: 100%;
		justify-content: center;
		margin-bottom: 24px;
	}
}

/*POLAND CUSTOMISATION END*/


/*PARTNERS PAGE START*/
.partners h1{
	margin-bottom: 32px;
	color: var(--gray-dark);
	text-align: center;
	text-transform: uppercase;
}

.partners__wrap{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}
.partner-card{
	position: relative;
	width: 100%;
	max-width: calc(100% / 3 - 40px / 3);
	background: #FFFFFF;
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 24px;
	overflow: hidden;
	padding: 32px 16px;
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	margin-bottom: 24px;
}
.partner-card > img{
	display: block;
	width: 100%;
	max-height: 80px;
	object-fit: contain;
	object-position: left center;
	max-width: 65%;
	margin-bottom: 8px;
}
.partner-card h3{
	margin-bottom: 4px;
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
}
.partner-card h4{
	margin-bottom: 8px;
	font-weight: 400;
	font-size: 16px;
	line-height: 23px;
}
.card-link-overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	top: 0;
	left: 0;
}
@media screen and (max-width:  1024px){
	.partner-card{
		max-width: calc(50% - 10px);
	}
}
@media screen and (max-width:  640px){
	.partner-card{
		max-width: 100%;
	}
}
/*PARTNERS PAGE END*/


/*PARTNERS SLIDER START*/
.partners_slider .partners-wrap{
	overflow: hidden !important;
	padding: 16px;
	margin: -16px;
}
.partners_slider h3{
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}
.partners-swiper{
	overflow: visible;
}
.partners-swiper li{
	background: #FFFFFF;
	box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.12);
	border-radius: 24px;
	position: relative;
	padding-top: 21%;
}
.partners-swiper li img{
	position: absolute;
	height: 30%;
	width: 80%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: contain;

}
body .partners_slider .swiper-nav:after{
	color: var(--black);
}

@media screen and (max-width:  640px){
	.partners_slider .partners-wrap{
		padding-top: 32px;
	}
	.partners_slider h3{
		margin-bottom: 24px;
	}
	.partners-swiper li{
		padding-top: 64%;
	}
}
/*PARTNERS SLIDER END*/

/*DELIVERY SECTION START*/
.delivery_section {
	padding: 64px 0;
	position: relative;
}
.delivery_section .delivery_section_wrap {
	width: 100%;
	display: flex;
	box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.12);
	border-radius: 40px;
	background-color: #fff;
	padding: 28px 64px 0 64px;
	align-items: flex-end;
	flex-wrap: wrap;
}
@media screen and (max-width: 920px) {
	.delivery_section .delivery_section_wrap {
		align-items: center;
		flex-direction: column;
		padding: 24px 24px 0;
	}
}
.delivery_section .delivery_section_wrap .delivery_section_content {
	width: 100%;
	max-width: 493px;
	margin-right: 64px;
	height: fit-content;
	align-self: center;
}
@media screen and (max-width: 920px) {
	.delivery_section .delivery_section_wrap .delivery_section_content {
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 32px;
	}
}
.delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_title {
	color: #585858;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	text-transform: uppercase;
	margin-bottom: 24px;
}
@media screen and (max-width: 920px) {
	.delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_title {
		font-size: 24px;
		line-height: 28px;
	}
}
.delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 16px;
}
.delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text p {
	margin-bottom: 14px;
}
.delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h1, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h1, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h2, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h2, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h3, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h3, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h4, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h4, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h5, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h5, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h6, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h6 {
	font-size: 24px;
	margin-bottom: 14px;
}
@media screen and (max-width: 920px) {
	.delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h1, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h1, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h2, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h2, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h3, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h3, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h4, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h4, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h5, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h5, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text h6, .delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_text .h6 {
		font-size: 20px;
	}
}
.delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_slider .swiper-wrapper {
	align-items: center !important;
}
.delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_slider .swiper-wrapper .swiper-slide {
	display: flex !important;
	justify-content: center;
	align-items: center;
}
.delivery_section .delivery_section_wrap .delivery_section_content .delivery_section_slider .swiper-wrapper .swiper-slide img {
	width: 100%;
}
.delivery_section .delivery_section_wrap .delivery_section_image {
	display: block;
	width: 100%;
	max-width: calc(100% - 493px - 64px);
	max-height: 408px;
	object-fit: contain;
}
@media screen and (max-width: 920px) {
	.delivery_section .delivery_section_wrap .delivery_section_image {
		max-width: 100%;
	}
}
/*DELIVERY SECTION END*/

/*PLACEHOLDER PAGE START*/
.page-template-placeholder-page .site-header,
.page-template-placeholder-page .site-footer {
	display: none;
}
.section-placeholder {
	margin: 88px 0 164px;
}
.section-placeholder .section-title {
	text-align: left;
	text-transform: none;
}
.section-placeholder .section-content-wrapper {
	display: grid;
	padding-left: 28px;
	gap: 80px;
	grid-template-columns: 1fr 406px;
}

.section-placeholder .section-images {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: -50px;
}

.section-placeholder .bottom-image,
.section-placeholder .top-image {
	width: 324px;
	box-shadow: 0 5px 18px 0 #0000001F;
	border-radius: 16px;
}

.section-placeholder .bottom-image:before,
.section-placeholder .bottom-image:after,
.section-placeholder .top-image:before,
.section-placeholder .top-image:after {
	display: block;
	height: 52px;
	width: 100%;
}

.section-placeholder .bottom-image:before,
.section-placeholder .top-image:before {
	content: url(../img/top-bar.svg);
	margin-bottom: -1px;
}

.section-placeholder .bottom-image:after,
.section-placeholder .top-image:after {
	content: url(../img/bottom-bar.svg);
}

.section-placeholder .bottom-image img,
.section-placeholder .top-image img {
	width: 324px;
	height: 324px;
	object-fit: cover;
}

.section-placeholder .bottom-image {
	margin-left: -56px;
	transform: rotate(5deg);
}

.section-placeholder .top-image {
	margin-top: -162px;
	transform: rotate(-4deg);
}

.section-placeholder .top-image:before {
	margin-left: -1px;
}

.section-placeholder .section-content a,
.section-placeholder .section-text-under-socials a {
	font-family: "Poppins", sans-serif;
	text-decoration: underline;
	color: var( --green-main );
}

.section-placeholder .section-content p,
.section-placeholder .section-text-under-socials p {
	line-height: 25px;
	margin-bottom: 24px;
}

.section-placeholder .section-content p:has( + ul),
.section-placeholder .section-text-under-socials p:has( + ul) {
	margin-bottom: 8px;
}

.section-placeholder .section-content p:has(img) {
	margin-bottom: 12px;
}

.section-placeholder .section-content p img {
	margin-right: 16px;
}

.section-placeholder .section-content ul,
.section-placeholder .section-text-under-socials ul {
	padding-left: 22px;
}

.section-placeholder .section-content li,
.section-placeholder .section-text-under-socials li {
	line-height: 25px;
	margin-bottom: 8px;
}
.section-placeholder .section-content li::marker,
.section-placeholder .section-text-under-socials li::marker {
	color: #CBCBCB;
	font-size: 25px;
}
.section-placeholder .section-buttons {
	margin: 48px 0;
}
.section-placeholder .green-button {
	margin-right: 24px;
}

.section-placeholder .big-button {
	max-height: 50px;
	min-width: 168px;
}
.section-placeholder .section-socials {
	display: flex;
}
.section-placeholder .section-socials .social-icon {
	margin-right: 16px;
	width: 42px;
	height: 42px;
	object-fit: contain;
}
.section-placeholder .section-text-under-socials {
	margin-top: 48px;
}
.section-placeholder .footer__global-link {
	justify-content: flex-start;
	margin: 0;
}

@media screen and (max-width: 1140px) {
	.section-placeholder {
		margin: 0 0 64px;
	}
	.section-placeholder .section-content-wrapper {
		margin-top: 24px;
		padding: 0 28px;
		gap: 40px;
	}
}
@media screen and (max-width: 972px) {
	.section-placeholder .section-content-wrapper {
		grid-template-columns: 1fr;
		gap: 80px;
	}
}
@media screen and (max-width: 767px) {
	.page-template-placeholder-page main {
		padding-top: 32px;
	}
	.section-placeholder .section-content-wrapper {
		margin-top: 16px;
	}
	.section-placeholder .section-images {
		margin-right: -30px;
	}
}
@media screen and (max-width: 455px) {
	.section-placeholder .section-content-wrapper {
		padding: 0;
	}
	.section-placeholder .button-wrapper {
		width: 100%;
	}
	.section-placeholder .big-button {
		width: 100%;
	}
	.section-placeholder .green-button {
		margin-right: 0;
		margin-bottom: 16px;
	}
	.section-placeholder .section-socials {
		justify-content: center;
	}
	.section-placeholder .footer__global-link {
		justify-content: center;
		margin: 0 auto;
	}
}
/*PLACEHOLDER PAGE END*/


.grecaptcha-badge {
	visibility: hidden !important;
}