:root {
	--color-black--rgb: 49, 50, 44;
	--color-black: #31322C;
	--color-white--rgb: 253, 253, 253;
	--color-white: #FDFDFD;
	--color-gold--rgb: 194, 154, 92;
	--color-gold: #C29A5C;
	--color-gold-100--rgb: 239, 234, 223;
	--color-gold-100: #EFEADF;
	--color-gold-200--rgb: 255, 251, 243;
	--color-gold-200: #FFFBF3;
}

@media (min-width: 1200px) {
	:root {
		--wrap: 10.4vw;
		--wrap-1: 0;
	}
}
@media (min-width: 1200px) and (min-width: 1440px) {
	:root {
		--wrap: calc((100vw - 1140px) / 2);
	}
}
@media (min-width: 1200px) and (max-width: 1920px) {
	:root {
		--wrap-1: calc((100vw - 1140px) / 2);
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	:root {
		--wrap: 5vw;
		--wrap-1: 5vw;
	}
}
@media (max-width: 899px) {
	:root {
		--wrap: 5vw;
		--wrap-1: 5vw;
	}
}

.menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	z-index: 10000;
}
@media screen and (max-width: 1200px) {
	.menu {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
}
.menu__toggle {
	display: none;
}
@media screen and (max-width: 1200px) {
	.menu__toggle {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: relative;
		z-index: 10;
		width: 30px;
		height: 30px;
		cursor: pointer;
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}
	.menu__toggle span, .menu__toggle:before, .menu__toggle::after {
		content: "";
		position: absolute;
		display: block;
		width: 100%;
		height: 2px;
		background-color: var(--color-black);
		left: 0;
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}
	.menu__toggle span {
		top: 14px;
		opacity: 1;
	}
	.menu__toggle::before {
		top: 4px;
	}
	.menu__toggle::after {
		top: 24px;
	}
	.menu__toggle._active-menu {
		-webkit-transform: translate(80px, 10px);
		transform: translate(80px, 10px);
	}
	.menu__toggle._active-menu span {
		opacity: 0;
	}
	.menu__toggle._active-menu::before {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		top: 14px;
	}
	.menu__toggle._active-menu::after {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 14px;
	}
}
@media screen and (max-width: 945px) {
	.menu__toggle._active-menu {
		-webkit-transform: translate(60px, 10px);
		transform: translate(60px, 10px);
	}
}
@media screen and (max-width: 894px) {
	.menu__toggle._active-menu {
		-webkit-transform: translate(45px, 10px);
		transform: translate(45px, 10px);
	}
}
@media screen and (max-width: 850px) {
	.menu__toggle._active-menu {
		-webkit-transform: translate(37px, 10px);
		transform: translate(37px, 10px);
	}
}
@media screen and (max-width: 829px) {
	.menu__toggle._active-menu {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
}
.menu__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
	.menu__box {
		position: fixed;
		z-index: 9;
		width: 38%;
		height: 100%;
		top: 0;
		right: -100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		overflow: auto;
		background-color: #fff;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		padding: 30px 80px 30px 30px;
	}
	.menu__box._active-menu {
		right: 0;
	}
}
@media screen and (max-width: 829px) {
	.menu__box {
		width: 100%;
		padding: 30px;
	}
}
.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (max-width: 1200px) {
	.menu__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
}
.menu__list li {
	margin-top: 0;
	padding: 0;
}
.menu__list li::before {
	content: none;
}
@media screen and (max-width: 1200px) {
	.menu__list li:last-child a {
		margin-bottom: 0;
	}
}
.menu__item {
	display: inline-block;
	color: var(--color-black);
	font-size: 16px;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	margin: 0 12px;
	position: relative;
	line-height: 100%;
}
.menu__item:hover {
	color: var(--color-blue-200);
}
@media screen and (max-width: 1200px) {
	.menu__item {
		font-size: 22px;
		margin: 0 0 25px 0;
	}
}
.menu__item svg {
	margin-left: 6px;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}
.menu__btn {
	font-weight: 700;
	color: var(--color-blue-200);
}
.menu__submenu {
	display: block;
	width: 100%;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	z-index: 2;
}
@media (min-width: 900px) {
	.menu__submenu {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 350px;
		max-width: 350px;
		padding-top: 10px;
		opacity: 0;
		visibility: hidden;
	}
	.menu__list li:hover .menu__submenu {
		opacity: 1;
		visibility: visible;
	}
}
@media (max-width: 899px) {
	.menu__submenu {
		height: 0;
		opacity: 0;
	}
}
.menu__submenu ul {
	background-color: var(--color-white);
	border-radius: 12px;
	padding: 10px;
}
.menu__submenu ul > * + * {
	margin-top: 10px;
}
.menu__call__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (max-width: 1200px) {
	.menu__call__container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
}
.menu__call {
	margin-right: 27px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	color: var(--color-black);
	-webkit-transition: all 0.1s ease;
	transition: all 0.1s ease;
}
@media screen and (max-width: 1200px) {
	.menu__call {
		margin: 0 0 20px 0;
		font-size: 18px;
	}
}
@media screen and (max-width: 829px) {
	.menu__call {
		font-size: 23px;
	}
}
.menu__call svg {
	width: 12px;
	height: 12px;
	margin-right: 6px;
}
@media screen and (max-width: 1200px) {
	.menu__call svg {
		width: 18px;
		height: 18px;
	}
}
@media screen and (max-width: 829px) {
	.menu__call svg {
		width: 23px;
		height: 23px;
	}
}
.menu__call:hover svg {
	-webkit-animation-name: tada;
	animation-name: tada;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
}
.menu__call:hover svg path {
	-webkit-transition: all 0.1s ease;
	transition: all 0.1s ease;
}
.menu__call.menu__call__mob {
	display: none;
}
@media screen and (max-width: 1200px) {
	.menu__call.menu__call__mob {
		display: block;
		margin: 0 35px 0 0;
	}
	.menu__call.menu__call__mob svg {
		width: 18px;
		height: 18px;
		margin-right: 0;
	}
}
@media screen and (max-width: 770px) {
	.menu__call.menu__call__mob {
		margin-right: 15px;
	}
}
@media screen and (max-width: 1200px) {
	.menu__call__btn {
		width: 183px;
		height: 33px;
	}
}
@media screen and (max-width: 829px) {
	.menu__call__btn {
		width: 210px;
		height: 33px;
	}
}
@media screen and (max-width: 1200px) {
	.menu__call__btn span {
		font-size: 18px;
	}
}
@media screen and (max-width: 829px) {
	.menu__call__btn span {
		font-size: 20px;
	}
}
.menu__cart {
	cursor: pointer;
	position: relative;
	width: 20px;
	height: 20px;
	z-index: 1;
}
@media screen and (max-width: 1200px) {
	.menu__cart {
		margin-right: 35px;
	}
}
@media screen and (max-width: 770px) {
	.menu__cart {
		margin-right: 25px;
	}
}
.menu__cart svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}
.menu__cart .cart-count {
	display: none;
	position: absolute;
	width: 10px;
	height: 10px;
	top: -1px;
	right: -4px;
	border-radius: 50%;
	font-size: 6px;
	line-height: 9.8px;
	margin: auto;
	text-align: center;
	color: #fff;
	border: 1.5px solid #FFFFFF;
}
.menu__cart .cart-count._no-empty-cart {
	display: block;
}

* {
	-webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

* {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
@media (max-width: 899px) {
	* {
		outline: none;
	}
}

body,
input,
textarea,
button,
select {
	font-family: "Raleway", sans-serif;
}

a {
	text-decoration: none;
	color: var(--color-black);
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

a:hover {
	color: var(--color-blue-200);
}

p {
	margin: 0;
}

ol,
ul {
	padding: 0;
}

ul {
	list-style: none;
}
ul > * + * {
	margin-top: 10px;
}
ul li {
	position: relative;
	padding: 0 14px;
}

html,
body {
	position: relative;
	color: var(--color-black);
	background-color: var(--color-white);
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 125%;
	margin: 0;
	padding: 0;
	line-height: 25px;
}

body._lock {
	overflow: hidden;
}

._container {
	width: 100%;
	padding: 0 var(--wrap);
	margin: 0;
}

._container_l {
	width: 100%;
	margin: 0;
	padding: 0 var(--wrap);
}
@media (min-width: 900px) and (max-width: 1920px) {
	._container_l {
		padding: 0 0 0 var(--wrap);
	}
}

._container_r {
	width: 100%;
	margin: 0;
	padding: 0 var(--wrap);
}
@media (min-width: 900px) and (max-width: 1920px) {
	._container_r {
		padding: 0 var(--wrap) 0 0;
	}
}

._container_l_r {
	width: 100%;
	margin: 0;
	padding: 0 var(--wrap);
}
@media (min-width: 900px) and (max-width: 1920px) {
	._container_l_r {
		padding: 0;
	}
}

@media (min-width: 1200px) {
	section {
		padding: 100px 0;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	section {
		padding: 45px 0;
	}
}
@media (max-width: 899px) {
	section {
		padding: 38px 0;
	}
}

._gold-100 {
	background-color: var(--color-gold-100);
}

._gold-200 {
	background-color: var(--color-gold-200);
}

._grey {
	background-color: var(--color-grey);
}

b {
	color: var(--color-blue-200);
}

h1,
.h1 {
	margin: 0;
	font-family: "Philosopher", sans-serif;
	color: var(--color-black);
	letter-spacing: 0em;
	font-weight: 400;
}
@media (min-width: 1921px) {
	h1,
	.h1 {
		font-size: 72px;
		line-height: 82px;
	}
}
@media (min-width: 1551px) and (max-width: 1920px){
	h1,
	.h1 {
		font-size: 88px;
		line-height: 96px;
	}
}
@media (min-width: 1200px) and (max-width: 1550px) {
	h1,
	.h1 {
		font-size: 72px;
		line-height: 82px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	h1,
	.h1 {
		font-size: 48px;
		line-height: 120%;
	}
}
@media (max-width: 899px) {
	h1,
	.h1 {
		font-size: 34px;
		line-height: 120%;
	}
}

h2,
.h2 {
	margin: 0;
	color: var(--color-black);
	font-family: "Philosopher", sans-serif;
	font-weight: 400;
	letter-spacing: 0em;
}
@media (min-width: 1200px) {
	h2,
	.h2 {
		font-size: 62px;
		line-height: 70px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	h2,
	.h2 {
		font-size: 32px;
		line-height: 110%;
	}
}
@media (max-width: 899px) {
	h2,
	.h2 {
		font-size: 32px;
		line-height: 110%;
	}
}

h3,
.h3 {
	margin: 0;
	color: var(--color-black);
	font-family: "Raleway", sans-serif;
	line-height: 110%;
	font-weight: 600;
	letter-spacing: 0em;
}
@media (min-width: 1200px) {
	h3,
	.h3 {
		font-size: 24px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	h3,
	.h3 {
		font-size: 22px;
	}
}
@media (max-width: 899px) {
	h3,
	.h3 {
		font-size: 18px;
	}
}

.btn {
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	color: var(--color-white);
	padding: 20px 36px 20px 36px;
	border-radius: 50px;
	font-weight: 700;
	line-height: 120%;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
	text-transform: uppercase;
	opacity: 0.9;
	outline: none;
	border: none;
	background: -webkit-gradient(linear, left top, left bottom, from(var(--color-blue-200)), to(var(--color-blue-100)));
	background: linear-gradient(180deg, var(--color-blue-200) 0%, var(--color-blue-100) 100%);
}
.btn:hover {
	opacity: 1;
}
.btn:focus-visible {
	opacity: 1;
}

.block-suptitle {
	color: var(--color-gold);
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: "Philosopher", sans-serif;
	font-size: 16px;
	font-style: italic;
	font-weight: 400;
	line-height: 19px;
	letter-spacing: 0em;
}
.block-suptitle:before {
	content: "";
	width: 140px;
	height: 1px;
	background-color: var(--color-gold);
	margin-right: 20px;
}

.block-suptitle + .block-title {
	margin-top: 12px;
}

.link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding-bottom: 6px;
	color: var(--color-gold);
	font-family: "Philosopher", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 19px;
	text-transform: capitalize;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}
.link:before {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-gold);
	-webkit-transition: inherit;
	transition: inherit;
}
.link:hover {
	color: var(--color-black);
}
.link:hover:before {
	width: 20%;
	background-color: var(--color-black);
}
.link:hover svg {
	margin-left: 16px;
}
.link:hover svg path {
	fill: var(--color-black);
}
.link svg {
	margin-left: 10px;
	-webkit-transition: inherit;
	transition: inherit;
}
.link svg path {
	-webkit-transition: inherit;
	transition: inherit;
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 26px 0;
	z-index: 3;
}
.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (min-width: 1200px) {
	.header__wrapper {
		width: 40%;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.header__wrapper {
		width: 50%;
	}
}
.header__contacts {
	position: relative;
	padding-left: 10px;
}
@media (min-width: 1200px) {
	.header__contacts._mob {
		display: none;
	}
}
@media (max-width: 1199px) {
	.header__contacts._desk {
		display: none;
	}
}
.header__contacts::after {
	content: "";
	width: 3px;
	height: 30px;
	position: absolute;
	display: block;
	top: calc(50% - 15px);
	left: 0;
	background-color: var(--color-blue-200);
}
.header__contacts > * + * {
	margin-top: 4px;
}
.header__phone a {
	color: var(--color-black);
}
@media (max-width: 540px) {
	.header__phone a span {
		display: none;
	}
}
@media (min-width: 541px) {
	.header__phone a svg {
		display: none;
	}
}

/*
* BANNER
*/
.banner {
	position: relative;
	padding-top: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--color-gold-200);
}
@media (min-width: 900px) {
	.banner {
		padding-bottom: 100px;
	}
}
@media (max-width: 899px) {
	.banner {
		padding-bottom: 40px;
	}
}
.banner__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (min-width: 900px) {
	.banner__wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
@media (max-width: 899px) {
	.banner__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.banner__left {
	z-index: 2;
}
@media (min-width: 1200px) {
	.banner__left {
		padding-top: 200px;
		width: 40%;
	}
}
@media (min-width: 1200px) and (min-width: 1921px) {
	.banner__left {
		width: 42%;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.banner__left {
		padding-top: 200px;
		width: 50%;
	}
}
@media (max-width: 899px) {
	.banner__left {
		padding-top: 160px;
	}
}
.banner__right {
	position: relative;
}
@media (min-width: 1200px) {
	.banner__right {
		width: 55%;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.banner__right {
		width: 45%;
	}
}
@media (max-width: 899px) {
	.banner__right {
		display: none;
	}
}
.banner-bg {
	position: relative;
	width: 100%;
	padding-top: 120%;
}
.banner-bg img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: contain;
	object-fit: contain;
}
.banner__title {
	margin-top: 18px;
}
@media (min-width: 900px) {
	.banner__title span {
		white-space: nowrap;
	}
}
.banner__text {
	margin-top: 24px;
	font-size: 18px;
	line-height: 28px;
}
.banner__button {
	margin-left: 36px;
}
@media (min-width: 1200px) {
	.banner__button {
		margin-top: 100px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.banner__button {
		margin-top: 100px;
	}
}
@media (max-width: 899px) {
	.banner__button {
		margin-top: 24px;
		margin-left: 0;
	}
}
@media (max-width: 899px) {
	.banner__button._desk {
		display: none;
	}
}
@media (min-width: 900px) {
	.banner__button._mob {
		display: none;
	}
}
.banner .banner-img {
	position: relative;
	overflow: visible;
	width: 100%;
	margin-top: 40px;
}
.banner .banner-img .banner-img__wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: visible;
}
@media (max-width: 899px) {
	.banner .banner-img .banner-img__wrapper {
		max-width: 540px;
	}
}
.banner .banner-img .banner-img__wrapper img {
	overflow: visible;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.banner .banner-img .banner-img__label {
	position: absolute;
	display: block;
	width: 200px;
	background-color: var(--color-black);
	border-radius: 10px;
	color: var(--color-white);
	text-align: center;
	padding: 10px 20px;
}
@media (min-width: 900px) {
	.banner .banner-img .banner-img__label {
		bottom: 90px;
		left: -140px;
	}
}
@media (max-width: 899px) {
	.banner .banner-img .banner-img__label {
		bottom: 20px;
		left: -90px;
	}
}
.banner .banner-img .banner-img__label p {
	font-family: "Raleway", sans-serif;
	font-size: 20px;
	line-height: 26px;
}
.banner .banner-img .banner-img__label span {
	display: block;
	font-family: "Raleway", sans-serif;
	margin-top: 4px;
	font-size: 12px;
	line-height: 16px;
}

.about__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}
@media (min-width: 900px) {
	.about__wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
@media (min-width: 900px) and (min-width: 1100px) {
	.about__wrapper {
		border-top: 1px solid rgba(var(--color-black--rgb), 0.15);
		border-bottom: 1px solid rgba(var(--color-black--rgb), 0.15);
	}
}
@media (max-width: 899px) {
	.about__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}
@media (max-width: 899px) {
	.about__wrapper > * + * {
		margin-bottom: 36px;
	}
}
.about__main {
	width: 100%;
}
@media (min-width: 900px) {
	.about__main {
		padding: 0 var(--wrap-1) 0 84px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.about__main {
		min-width: 480px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) and (max-width: 1100px) {
	.about__main {
		min-width: 400px;
	}
}
.about__main > * + * {
	margin-top: 16px;
}
.about__title {
	text-align: left;
}
.about__text {
	margin-top: 28px;
}
@media (min-width: 900px) {
	.about-img {
		max-width: 550px;
		width: 100%;
	}
}
@media (max-width: 899px) {
	.about-img {
		max-width: 300px;
	}
}
.about-img__wrapper {
	position: relative;
	width: 100%;
	padding-top: 153%;
}
.about-img__wrapper img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: contain;
	object-fit: contain;
}

.studio__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}
@media (min-width: 900px) {
	.studio__wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
}
@media (max-width: 899px) {
	.studio__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
@media (max-width: 899px) {
	.studio__wrapper > * + * {
		margin-top: 36px;
	}
}
.studio__main {
	width: 100%;
}
@media (min-width: 900px) and (max-width: 1199px) {
	.studio__main {
		min-width: 480px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) and (max-width: 1100px) {
	.studio__main {
		min-width: 400px;
	}
}
.studio__main > * + * {
	margin-top: 16px;
}
@media (min-width: 900px) {
	.studio__container {
		padding: 0 10px 0 var(--wrap-1);
	}
}
.studio__title {
	text-align: left;
}
.studio__text {
	margin-top: 28px;
}
@media (min-width: 1200px) {
	.studio__socials {
		margin-top: 54px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.studio__socials {
		margin-top: 44px;
	}
}
@media (max-width: 899px) {
	.studio__socials {
		margin-top: 34px;
	}
}
.studio__socials a:before {
	bottom: -6px;
}
.studio__socials img {
	margin-right: 12px;
}
.studio__socials p {
	margin-top: 14px;
}
.studio-benefits {
	border-top: 1px solid rgba(var(--color-black--rgb), 0.15);
	border-bottom: 1px solid rgba(var(--color-black--rgb), 0.15);
}
@media (min-width: 1200px) {
	.studio-benefits {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-top: 54px;
		padding: 45px 32px 45px var(--wrap-1);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.studio-benefits {
		margin-top: 24px;
		padding: 12px 32px 24px var(--wrap-1);
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 899px) and (min-width: 541px) {
	.studio-benefits {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-top: 34px;
		padding: 24px 32px 34px var(--wrap-1);
	}
}
@media (max-width: 899px) and (max-width: 540px) {
	.studio-benefits {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
		padding: 12px 32px 24px var(--wrap-1);
	}
}
@media (min-width: 1200px) {
	.studio-benefits > * + * {
		margin-left: 12px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.studio-benefits > * + * {
		margin-bottom: 12px;
	}
}
@media (max-width: 899px) {
	.studio-benefits > * + * {
		margin-left: 12px;
	}
}
@media (max-width: 899px) and (min-width: 541px) {
	.studio-benefits > * + * {
		margin-left: 12px;
	}
}
@media (max-width: 899px) and (max-width: 540px) {
	.studio-benefits > * + * {
		margin-bottom: 12px;
	}
}
.studio-benefits__item {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.studio-benefits__num {
	font-size: 54px;
	line-height: 74px;
	text-align: center;
}
.studio-benefits__text {
	font-family: "Philosopher", sans-serif;
	font-size: 20px;
	line-height: 22px;
	text-align: center;
}
.studio-img {
	max-width: 500px;
}
@media (min-width: 900px) {
	.studio-img {
		width: 100%;
	}
}
.studio-img > * + * {
	margin-top: 18px;
}
.studio-img__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.studio-img__wrapper {
	position: relative;
}
.studio-img__wrapper:nth-child(1) {
	padding-top: 50%;
	width: 190px;
}
.studio-img__wrapper:nth-child(2) {
	padding-top: 71%;
	width: 275px;
}
.studio-img__wrapper:only-child {
	padding-top: 63%;
	width: 100%;
}
.studio-img__wrapper img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: contain;
	object-fit: contain;
}

.portfolio {
	overflow: hidden;
}
@media (min-width: 900px) and (max-width: 1199px) {
	.portfolio {
		padding-bottom: 90px;
	}
}
@media (max-width: 899px) {
	.portfolio {
		padding-bottom: 76px;
	}
}
.portfolio-tabs {
	margin-top: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	position: relative;
}
@media (max-width: 899px) and (max-width: 540px) {
	.portfolio-tabs {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
/* .portfolio-tabs:after {
	content: "";
	position: absolute;
	width: 100vw;
	height: 1px;
	background-color: rgba(var(--color-black--rgb), 0.15);
	left: calc(0px - var(--wrap-1));
}
@media (min-width: 1200px) and (min-width: 1921px) {
	.portfolio-tabs:after {
		left: 0;
		width: 100%;
	}
} */
.portfolio-tabs > * + * {
	margin-left: 65px;
}
@media (max-width: 899px) and (max-width: 540px) {
	.portfolio-tabs > * + * {
		margin-left: 0;
	}
}
.portfolio-tabs__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding: 10px;
	cursor: pointer;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	border-bottom: 1px solid transparent;
	font-weight: 500;
}
@media (max-width: 899px) and (max-width: 540px) {
	.portfolio-tabs__item {
		width: 48%;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-bottom: 20px;
	}
}
.portfolio-tabs__item._active {
	color: var(--color-gold);
	border-bottom: 1px solid var(--color-gold);
}
.portfolio-content {
	margin: 24px auto;
}
.portfolio-content__tab {
	margin: 24px auto;
}
.portfolio-content__item {
	margin-bottom: 10px;
	display: block;
}
@media (min-width: 900px) {
	.portfolio-content__item {
		width: 32%;
	}
}
@media (max-width: 899px) {
	.portfolio-content__item {
		width: 32%;
	}
}
@media (max-width: 899px) and (max-width: 500px) {
	.portfolio-content__item {
		width: 48%;
	}
}
.portfolio-content__item:nth-child(n+10) {
	display: none;
}
.portfolio-content__item img {
	display: block;
	width: 100%;
	height: 100%;
}
.portfolio-content__more {
	position: absolute;
	bottom: -60px;
	left: calc(50% - 86px);
}

.recommended__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}
@media (min-width: 900px) {
	.recommended__wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-top: 60px;
	}
}
@media (max-width: 899px) {
	.recommended__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-top: 32px;
	}
}
@media (max-width: 899px) {
	.recommended__wrapper > * + * {
		margin-bottom: 36px;
	}
}
.recommended__main {
	width: 100%;
}
@media (min-width: 900px) {
	.recommended__main {
		max-width: 480px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.recommended__main {
		min-width: 480px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) and (max-width: 1100px) {
	.recommended__main {
		min-width: 400px;
	}
}
.recommended__main > * + * {
	margin-top: 16px;
}
.recommended__title {
	text-align: left;
}
@media (min-width: 900px) {
	.recommended__text._typography ul > * + * {
		margin-top: 26px;
	}
}
.recommended__text img {
	display: block;
	width: 100%;
}
@media (min-width: 900px) {
	.recommended__text img {
		margin-top: 68px;
		margin-left: auto;
		max-width: 414px;
	}
}
@media (max-width: 899px) {
	.recommended__text img {
		margin-top: 32px;
		max-width: 540px;
	}
}
@media (min-width: 900px) {
	.recommended-img {
		max-width: 710px;
		width: 100%;
		margin-left: 44px;
	}
}
@media (max-width: 899px) {
	.recommended-img {
		width: 100%;
		max-width: 540px;
		margin-top: 16px;
	}
}
.recommended-img__wrapper {
	position: relative;
	width: 100%;
	padding-top: 72%;
}
@media (max-width: 899px) {
	.recommended-img__wrapper {
		padding-top: 70%;
	}
}
.recommended-img__wrapper img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: contain;
	object-fit: contain;
}

.cta__title {
	text-align: center;
}
@media (min-width: 1200px) {
	.cta__wrapper {
		margin-top: 100px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.cta__wrapper {
		margin-top: 80px;
	}
}
@media (max-width: 899px) {
	.cta__wrapper {
		margin: 40px auto 0;
		max-width: 440px;
	}
}

.benefits__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}
@media (min-width: 900px) {
	.benefits__wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
@media (min-width: 900px) and (min-width: 1100px) {
	.benefits__wrapper {
		border-top: 1px solid rgba(var(--color-black--rgb), 0.15);
		border-bottom: 1px solid rgba(var(--color-black--rgb), 0.15);
	}
}
@media (max-width: 899px) {
	.benefits__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}
@media (max-width: 899px) {
	.benefits__wrapper > * + * {
		margin-bottom: 36px;
	}
}
.benefits__main {
	width: 100%;
}
@media (min-width: 900px) {
	.benefits__main {
		padding: 0 var(--wrap-1) 0 84px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.benefits__main {
		min-width: 480px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) and (max-width: 1100px) {
	.benefits__main {
		min-width: 400px;
	}
}
.benefits__main > * + * {
	margin-top: 16px;
}
.benefits__title {
	text-align: left;
}
.benefits__text {
	margin-top: 28px;
}
@media (min-width: 900px) {
	.benefits-img {
		max-width: 550px;
		width: 100%;
	}
}
@media (max-width: 899px) {
	.benefits-img {
		max-width: 300px;
	}
}
.benefits-img__wrapper {
	position: relative;
	width: 100%;
	padding-top: 153%;
}
.benefits-img__wrapper img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: contain;
	object-fit: contain;
}

.steps__wrapper {
	margin-top: 44px;
}
@media (max-width: 899px) and (max-width: 640px) {
	.steps__wrapper > * + * {
		margin-top: 40px;
	}
}
.steps__row {
	padding-top: 38px;
	padding-bottom: 38px;
	border-top: 1px solid rgba(var(--color-black--rgb), 0.15);
	border-bottom: 1px solid rgba(var(--color-black--rgb), 0.15);
	display: -ms-grid;
	display: grid;
}
@media (min-width: 900px) {
	.steps__row {
		-ms-grid-columns: 2fr 100px 2fr;
		grid-template-columns: 2fr 2fr;
		gap: 100px;
	}
}
@media (max-width: 899px) {
	.steps__row {
		gap: 40px;
	}
}
@media (max-width: 899px) and (min-width: 641px) {
	.steps__row {
		-ms-grid-columns: 2fr 2fr;
		grid-template-columns: 2fr 2fr;
	}
}
@media (max-width: 899px) and (max-width: 640px) {
	.steps__row {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		border: none;
		padding-top: 0;
		padding-bottom: 0;
	}
}
.steps-item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.steps-item__num {
	position: absolute;
	display: block;
	font-size: 96px;
	font-weight: 900;
	line-height: 100%;
	color: rgba(var(--color-black--rgb), 0.05);
	left: 10px;
	bottom: 0;
}
.steps-item__icon {
	min-width: 84px;
	max-width: 84px;
	height: 84px;
}
.steps-item__icon img {
	width: 100%;
	height: 100%;
}
.steps-item__info {
	margin-left: 28px;
}
.steps-item__info > * + * {
	margin-top: 18px;
}
.steps-item__title {
	font-family: "Philosopher", sans-serif;
	font-size: 28px;
	line-height: 31px;
}
.steps-item__text {
	line-height: 28px;
	text-align: left;
}

.faq__title {
	text-align: center;
}
.faq .accordion-list {
	margin: 60px auto 0;
	max-width: 742px;
}
.faq .accordion-list > * + * {
	margin-top: 42px;
}
.faq .accordion-list__item {
	-webkit-transition: border 0.3s ease;
	transition: border 0.3s ease;
	padding: 0 0 34px;
	border-bottom: 1px solid rgba(var(--color-black--rgb), 0.15);
}
.faq .accordion-list__item::before {
	content: "";
}
.faq .accordion-list__summary {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: unset;
	padding: unset;
	border-radius: 12px;
	background-color: var(--color-blue-300);
}
.faq .accordion-list__summary > * + * {
	margin-left: 20px;
}
.faq .accordion-list__title {
	font-family: "Philosopher", sans-serif;
	text-align: left;
	color: var(--color-black);
	line-height: normal;
	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease;
	max-width: 86%;
	font-weight: 400;
}
@media (min-width: 900px) {
	.faq .accordion-list__title {
		font-size: 28px;
	}
}
@media (max-width: 899px) {
	.faq .accordion-list__title {
		font-size: 24px;
	}
}
.accordion-list__item._active .accordion-list__title {
	color: var(--color-blue-200);
}

.faq .accordion-list__mark {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 14px;
	flex: 0 0 14px;
}
.faq .accordion-list__mark svg,
.faq .accordion-list__mark img {
	width: 100%;
	height: auto;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq .accordion-list__mark svg._active,
.faq .accordion-list__mark img._active {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.faq .accordion-list__mark svg path,
.faq .accordion-list__mark img path {
	-webkit-transition: d 0.15s ease, -webkit-transform 0.3s ease;
	transition: d 0.15s ease, -webkit-transform 0.3s ease;
	transition: d 0.15s ease, transform 0.3s ease;
	transition: d 0.15s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq .accordion-list__details {
	opacity: 0;
	height: 0;
	overflow: hidden;
	font-size: 16px;
	font-weight: 500;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0em;
}
.faq .accordion-list__details > * + * {
	margin-top: 14px;
}

.form__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}
@media (min-width: 900px) {
	.form__wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
@media (min-width: 900px) and (min-width: 1100px) {
	.form__wrapper {
		border-top: 1px solid rgba(var(--color-black--rgb), 0.15);
		border-bottom: 1px solid rgba(var(--color-black--rgb), 0.15);
	}
}
@media (max-width: 899px) {
	.form__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
@media (max-width: 899px) {
	.form__wrapper > * + * {
		margin-top: 36px;
	}
}
.form__main {
	width: 100%;
}
@media (min-width: 900px) {
	.form__main {
		padding: 0 84px 0 var(--wrap-1);
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	.form__main {
		min-width: 480px;
	}
}
@media (min-width: 900px) and (max-width: 1199px) and (max-width: 1100px) {
	.form__main {
		min-width: 400px;
	}
}
.form__main > * + * {
	margin-top: 16px;
}
.form__title {
	text-align: left;
}
@media (min-width: 900px) {
	.form form {
		margin-top: 60px;
	}
}
@media (max-width: 899px) {
	.form form {
		margin-top: 30px;
	}
}
.form__text {
	margin-top: 28px;
}
@media (min-width: 900px) {
	.form-img {
		max-width: 550px;
		width: 100%;
	}
}
@media (max-width: 899px) {
	.form-img {
		max-width: 300px;
	}
}
.form-img__wrapper {
	position: relative;
	width: 100%;
	padding-top: 153%;
}
.form-img__wrapper img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: contain;
	object-fit: contain;
}

._typography p {
	line-height: 180%;
}
._typography strong {
	font-family: "Raleway", sans-serif;
}
._typography ol,
._typography ul {
	margin: 0;
}
._typography ul {
	list-style: none;
}
._typography ul > * + * {
	margin-top: 18px;
}
._typography li {
	padding: 0;
	line-height: 21px;
	position: relative;
}
._typography li::before {
	content: "";
	position: relative;
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	border: 1px solid var(--color-gold);
	margin-right: 10px;
}
._typography a {
	color: var(--color-gold);
}
._typography a:hover {
	color: var(--color-black);
	text-decoration: underline;
}

form > * + * {
	margin-top: 28px;
}
form input[type=text],
form input[type=tel],
form input[type=email],
form textarea {
	border: none;
	border-bottom: 0.4px solid rgba(var(--color-black--rgb), 1);
	background: transparent;
	color: var(--color-black);
	font-size: 16px;
	line-height: normal;
	padding: 22px 0;
	width: 100%;
	resize: none;
}
form input[type=text]::-webkit-input-placeholder, form input[type=tel]::-webkit-input-placeholder, form input[type=email]::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
	color: rgba(var(--color-black--rgb), 0.5);
}
form input[type=text]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=email]::-moz-placeholder, form textarea::-moz-placeholder {
	color: rgba(var(--color-black--rgb), 0.5);
}
form input[type=text]:-ms-input-placeholder, form input[type=tel]:-ms-input-placeholder, form input[type=email]:-ms-input-placeholder, form textarea:-ms-input-placeholder {
	color: rgba(var(--color-black--rgb), 0.5);
}
form input[type=text]::-ms-input-placeholder, form input[type=tel]::-ms-input-placeholder, form input[type=email]::-ms-input-placeholder, form textarea::-ms-input-placeholder {
	color: rgba(var(--color-black--rgb), 0.5);
}
form input[type=text]::placeholder,
form input[type=tel]::placeholder,
form input[type=email]::placeholder,
form textarea::placeholder {
	color: rgba(var(--color-black--rgb), 0.5);
}
form input[type=text]:focus,
form input[type=tel]:focus,
form input[type=email]:focus,
form textarea:focus {
	outline: none;
}
@media (max-width: 899px) {
	form input[type=text],
	form input[type=tel],
	form input[type=email],
	form textarea {
		font-size: 16px;
	}
}
form textarea {
	padding: 24px 0;
	height: 140px;
}
form input[type=submit] {
	width: 100%;
}
form input[type=checkbox] {
	width: 20px;
	height: 20px;
	accent-color: var(--color-blue-200);
	margin-right: 16px;
}
form button {
	background: none;
	border: none;
	white-space: nowrap;
	cursor: pointer;
}
form button.link:hover svg {
	margin-left: 10px;
}
@media (max-width: 899px) {
	form button {
		margin-top: 34px;
	}
}
form p {
	margin-top: 46px;
	color: rgba(27, 27, 27, 0.78);
	text-align: right;
	font-size: 10px;
	font-weight: 400;
	line-height: 135%;
}
form p button {
	margin-left: auto;
}
form a {
	color: var(--color-blue-100);
	font-family: "Raleway", sans-serif;
	font-size: 14px;
}
form div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (min-width: 900px) {
	form div {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
@media (max-width: 899px) {
	form div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
@media (min-width: 900px) {
	form div.col-3 > * + * {
		margin-left: 113px;
	}
}
@media (max-width: 899px) {
	form div.col-3 > * + * {
		margin-top: 14px;
	}
}
@media (min-width: 900px) {
	form div:not(.col-3) > * + * {
		margin-left: 30px;
	}
}
@media (max-width: 899px) {
	form div:not(.col-3) > * + * {
		margin-top: 28px;
	}
}
@media (max-width: 899px) {
	form div > * + button {
		margin-top: 34px;
	}
}
@media (max-width: 899px) {
	form div.col-3 > * + button {
		margin-top: 34px;
	}
}
form div p {
	text-align: left;
	margin-bottom: 14px;
	font-size: 14px;
}
form div.radio {
	margin-top: 24px;
}
form div.radio + .button {
	margin-top: 30px;
}
form .wpcf7-list-item {
	padding-left: 20px;
	display: block;
}
form .wpcf7-list-item label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}
form .wpcf7-list-item + .wpcf7-list-item {
	margin-left: 40px;
}
@media (max-width: 820px) {
	form .wpcf7-list-item + .wpcf7-list-item {
		margin-left: 10px;
	}
}

.contacts {
	padding: 0;
}
@media (min-width: 900px) {
	.contacts {
		height: 536px;
	}
}
.contacts__wrapper {
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}
@media (min-width: 900px) {
	.contacts__wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
@media (max-width: 899px) {
	.contacts__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}
@media (min-width: 900px) {
	.contacts iframe {
		aspect-ratio: 16/9;
		position: absolute;
		display: block;
		width: 100%;
		height: calc(100% + 150px);
		top: -150px;
		left: 0;
		-o-object-fit: contain;
		object-fit: contain;
	}
}
@media (max-width: 899px) {
	.contacts iframe {
		height: 450px;
		margin-top: -150px;
	}
}
.contacts__main {
	background-color: rgba(var(--color-gold-100--rgb), 0.96);
	padding: 41px 72px;
	z-index: 2;
}
@media (min-width: 900px) {
	.contacts__main {
		max-width: 462px;
		margin: 56px var(--wrap);
		padding: 41px 72px;
	}
}
@media (max-width: 899px) {
	.contacts__main {
		padding: 41px 72px;
	}
}
@media (max-width: 899px) and (max-width: 540px) {
	.contacts__main {
		padding: 41px 24px;
	}
}
.contacts__main > * + * {
	margin-top: 41px;
}
.contacts__title {
	text-align: center;
}
.contacts__text {
	font-weight: 500;
	line-height: 184.8%;
}
.contacts__text a {
	color: var(--color-black);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.contacts__text a > * + * {
	margin-left: 10px;
}
.contacts__text a svg {
	min-width: 24px;
	max-width: 24px;
	width: 100%;
	height: 24px;
}
.contacts__text > * + * {
	margin-top: 24px;
}
.contacts-socials__item {
	margin-top: 10px;
}
.contacts-socials__item svg {
	width: 35px;
	height: 35px;
}
.contacts-socials__item svg path {
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}
.contacts-socials__item svg:hover path {
	fill: var(--color-blue-100);
}
@media (min-width: 900px) {
	.contacts-img {
		width: 48%;
	}
}
.contacts-img__wrapper {
	position: relative;
	width: 100%;
	padding-top: 75%;
}
@media (max-width: 899px) {
	.contacts-img__wrapper {
		padding-top: 55%;
		max-width: 450px;
	}
}
@media (max-width: 899px) and (max-width: 540px) {
	.contacts-img__wrapper {
		padding-top: 65%;
	}
}

.footer {
	background-color: var(--color-gold-200);
	padding: 50px 0;
	color: var(--color-white);
}
.footer__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (min-width: 900px) {
	.footer__wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
}
@media (max-width: 899px) {
	.footer__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
	}
}
@media (max-width: 899px) {
	.footer__wrapper > * + * {
		margin-top: 30px;
	}
}
.footer__dev {
	color: var(--color-black);
}
.footer__dev a {
	color: var(--color-gold);
	text-decoration: underline;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}
.footer__dev a:hover {
	color: var(--color-black);
}

.popup {
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	visibility: hidden;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 10;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.popup._active-popup {
	top: 0;
	visibility: visible;
}
.popup__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: #3B3C3F;
	opacity: 0.8;
}
.popup__wrapper {
	width: 100%;
	overflow: visible;
	position: relative;
	z-index: 2;
}
.popup__wrapper::-webkit-scrollbar-thumb {
	background-color: var(--color-blue-200);
}
.popup__content {
	background-color: var(--color-white);
	padding: 30px 70px;
	border-radius: 16px;
}
@media (max-width: 899px) {
	.popup__content {
		padding: 30px 35px;
		max-height: 80vh;
		overflow: scroll;
	}
}
.popup__content > * + * {
	margin-top: 24px;
}
@media (max-width: 899px) {
	.popup__content > * + * {
		margin-top: 18px;
	}
}
.popup__title {
	color: var(--color-black);
	text-align: left;
	font-size: 38px;
	font-weight: 700;
	line-height: 110%;
}
@media (max-width: 899px) {
	.popup__title {
		font-size: 28px;
	}
}
.popup__text {
	font-size: 18px;
	line-height: 130%;
	text-align: left;
}
@media (max-width: 899px) {
	.popup__text {
		font-size: 16px;
	}
}
.popup__close {
	cursor: pointer;
	width: 33px;
	position: absolute;
	right: -50px;
	top: -6px;
}
.popup__close svg {
	width: 100%;
	height: auto;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.popup__close svg line {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.popup__close:hover svg {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.popup__close:hover svg line {
	stroke: #69A6F6;
}
@media (min-width: 900px) {
	.popup__wrapper {
		max-width: 784px;
	}
}
@media (max-width: 899px) {
	.popup__wrapper {
		padding: 50px 35px 50px 45px;
	}
}
@media (max-width: 899px) {
	.popup__close {
		right: 25px;
		top: 15px;
	}
}
@media screen and (max-width: 899px) and (max-width: 680px) {
	.popup__close {
		right: 15px;
		top: 10px;
	}
}
@media screen and (max-width: 899px) and (max-width: 490px) {
	.popup__close {
		right: 15px;
		top: 10px;
	}
}
@media screen and (max-width: 899px) and (max-width: 395px) {
	.popup__close {
		right: 5px;
		top: 5px;
	}
}

iframe .place-card.place-card-large {
	display: none !important;
}
.wpcf7-form-control-wrap {
	width: 100%;
}


.whatsapp-btn {
	position: fixed;
	display: flex;
	left: calc(100% - 90px);
	bottom: 30px;
	z-index: 10;
	border-radius: 150%;
	animation-name: pulseWatsapp;
	animation-duration: 2s;
	box-shadow: 0 0 0 1em transparent;
	animation-iteration-count: infinite;
	transform: scale(1);
	transition: 2s;
}
.cky-revisit-bottom-left {
	bottom: 30px!important;
	left: 30px!important;
}


html:not(.v-mobile) .whatsapp-btn:hover svg {
	fill: white;
}

@keyframes pulseWatsapp {
	0% {
		box-shadow: 0 0 0 0 rgba(15, 83, 40, 0.5);
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}