@font-face {
	font-family: "TTnorms";
	src: url(../fonts/ttnorms/ttnormsregular.woff) format("woff");
	font-weight: 400;
	font-style: "normal";
}

@font-face {
	font-family: "TTnorms";
	src: url(../fonts/ttnorms/ttnormsmedium.woff) format("woff");
	font-weight: 500;
	font-style: "normal";
}

@font-face {
	font-family: "TTnorms";
	src: url(../fonts/ttnorms/ttnormsbold.woff) format("woff");
	font-weight: 700;
	font-style: "normal";
}

@font-face {
	font-family: "Circe";
	src: url(../fonts/circe/circeregular.woff) format("woff");
	font-weight: 400;
	font-style: "normal";
}

@font-face {
	font-family: "Circe";
	src: url(../fonts/circe/circebold.woff) format("woff");
	font-weight: 700;
	font-style: "normal";
}

html {
	font-family: 'TTnorms', Arial, serif;
	font-size: 16px;
	height: 100%;
}

body {
	height: 100%;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	background-color: #F6F6F5;
	color: #4A4D4B;
	min-width: 320px;
}

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

ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	/* display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0;
	/* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
	-moz-appearance: textfield;
	/* Firefox */
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
	font: inherit;
}

audio,
canvas,
iframe,
img,
svg,
video,
textarea {
	vertical-align: middle;
}

textarea {
	resize: none;
}

input,
select,
button {
	outline: none;
}

a {
	text-decoration: none;
	-webkit-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
}

svg {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
}

.content {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}

header {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

footer {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

h1, h2, h3 {
	font-family: "Circe", Arial, serif;
}

.container {
	max-width: 1200px;
	padding: 0 15px;
	width: 100%;
	margin: 0 auto;
}

section {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.section-title {
	font-size: 48px;
	line-height: 62px;
	color: #4A4D4B;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	.section-title {
		font-size: 42px;
		line-height: 50px;
	}
}

@media (max-width: 576px) {
	.section-title {
		font-size: 22px;
		line-height: 26px;
	}
}

.btn {
	background-color: #4FB867;
	-webkit-box-shadow: 0px 5px 0px #34A15C, inset 0px -10px 30px #5CC96E;
	box-shadow: 0px 5px 0px #34A15C, inset 0px -10px 30px #5CC96E;
	border-radius: 10px;
	-webkit-transition: top .1s linear, background-color .3s linear, -webkit-box-shadow .1s linear;
	transition: top .1s linear, background-color .3s linear, -webkit-box-shadow .1s linear;
	-o-transition: top .1s linear, box-shadow .1s linear, background-color .3s linear;
	transition: top .1s linear, box-shadow .1s linear, background-color .3s linear;
	transition: top .1s linear, box-shadow .1s linear, background-color .3s linear, -webkit-box-shadow .1s linear;
	padding: 21px 65px;
	display: inline-block;
	text-align: center;
	position: relative;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	top: 0;
}

.btn img {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 20px;
}

.btn span {
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
}

.btn:hover {
	background-color: #3dc754;
}

.btn:active {
	top: 2px;
	-webkit-box-shadow: 0px 2px 0px #34A15C, inset 0px -10px 30px #5CC96E;
	box-shadow: 0px 2px 0px #34A15C, inset 0px -10px 30px #5CC96E;
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50px;
	height: 55px;
	z-index: 2;
	cursor: pointer;
}

.play-btn img {
	width: 100%;
}

.video-timing {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
}

.video-timing img {
	display: block;
	width: 20px;
	height: 20px;
	margin: 0 10px 0 0;
}

.video-timing span {
	font-weight: bold;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	color: #fff;
}

input[type="text"], input[type="tel"] {
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

input[type="text"]:focus, input[type="tel"]:focus {
	-webkit-box-shadow: 0 0 8px 1px #858585;
	box-shadow: 0 0 8px 1px #858585;
	border-color: transparent;
}

.footer {
	padding: 50px 0;
	background-color: #2B2B2B;
}

@media (max-width: 991px) {
	.footer {
		padding: 50px 0 100px;
	}
}

@media (max-width: 576px) {
	.footer {
		padding: 50px 0 85px;
	}
}

.footer__head {
	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 (max-width: 576px) {
	.footer__head {
		-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;
	}
}

.footer__logo {
	display: block;
	max-width: 200px;
}

@media (max-width: 991px) {
	.footer__logo {
		width: 50%;
		margin: 0 20px 0 0;
	}
}

@media (max-width: 576px) {
	.footer__logo {
		width: auto;
		margin: 0 0 15px 0;
	}
}

.footer__descr {
	color: #fff;
}

@media (max-width: 576px) {
	.footer__descr {
		width: 100% !important;
	}
}

.footer__descr p {
	font-size: 14px;
	line-height: 21px;
}

.footer__descr span {
	font-weight: 700;
}

.footer__middle {
	margin: 50px 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.footer__middle {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 30px 0 0 0;
	}
}

.footer__title {
	font-weight: 700;
	color: #fff;
	font-size: 16px;
	line-height: 26px;
	text-transform: uppercase;
	margin: 0 0 20px 0;
}

@media (max-width: 991px) {
	.footer__title {
		margin: 0 0 10px 0;
	}
}

@media (max-width: 576px) {
	.footer__title {
		font-size: 14px;
		line-height: 20px;
	}
}

@media (max-width: 991px) {
	.footer__tels {
		margin: 0 20px 0 0;
	}
}

.footer__tels a {
	font-weight: 500;
	font-size: 18px;
	line-height: 18px;
	color: #fff;
}

@media (max-width: 576px) {
	.footer__tels a {
		font-size: 14px;
		line-height: 16px;
	}
}

.footer__tels a:hover {
	text-decoration: underline;
}

.footer__tels a + a {
	margin: 15px 0 0 0;
}

.footer__mails a {
	color: #BFBFBF;
	font-size: 16px;
	line-height: 16px;
}

@media (max-width: 576px) {
	.footer__mails a {
		font-size: 13px;
		line-height: 16px;
		letter-spacing: -0.3px;
	}
}

.footer__mails a:hover {
	color: #fff;
}

@media (max-width: 991px) {
	.footer__socials {
		margin: 0 20px 0 0;
	}
}

.footer__socials-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer__socials-row a {
	display: block;
	width: 35px;
	height: 35px;
}

.footer__socials-row a:hover {
	opacity: .7;
}

.footer__socials-row a + a {
	margin: 0 10px 0 0;
}

.footer__schedule p {
	font-size: 16px;
	line-height: 16px;
	color: #BFBFBF;
}

@media (max-width: 576px) {
	.footer__schedule p {
		font-size: 14px;
		line-height: 16px;
	}
}

.footer__bottom {
	margin: 35px 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.footer__bottom {
		margin: 0;
	}
}

.footer__copy {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 768px) {
	.footer__copy {
		-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;
	}
}

.footer__copy a {
	font-size: 14px;
	line-height: 14px;
	color: #BFBFBF;
}

.footer__copy a:hover {
	color: #fff;
}

@media (max-width: 768px) {
	.footer__copy a:last-child {
		margin: 10px 0 0 0;
	}
}

@media (max-width: 991px) {
	.footer__copy {
		margin: 0 20px 0 0;
	}
}

.footer__copy-divider {
	margin: 0 5px;
	width: 1px;
	height: 13px;
	background-color: #BFBFBF;
}

@media (max-width: 768px) {
	.footer__copy-divider {
		display: none;
	}
}

.footer__location {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer__location img {
	display: block;
	margin: 0 10px 0 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.footer__location span {
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
	color: #fff;
}

.footer-column {
	max-width: 275px;
	width: 100%;
}

@media (max-width: 991px) {
	.footer-column {
		width: 50%;
		max-width: unset;
	}
}

.footer-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (max-width: 991px) {
	.footer-block {
		width: calc(50% - 10px);
		max-width: unset;
		margin-bottom: 35px;
	}
}

.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
	padding: 30px 0 0 0;
	-webkit-transition: background-color .3s linear, padding .3s linear;
	-o-transition: background-color .3s linear, padding .3s linear;
	transition: background-color .3s linear, padding .3s linear;
}

@media (max-width: 576px) {
	.header {
		padding: 15px 0 0 0;
		position: absolute;
	}
}

.header__logo {
	display: block;
	margin: 0 20px 0 0;
	max-width: 200px;
}

@media (min-width: 991px) and (max-width: 1050px) {
	.header__logo {
		max-width: 180px;
	}
}

@media (max-width: 360px) {
	.header__logo {
		margin: 0 15px 0 0;
	}
}

@media (max-width: 330px) {
	.header__logo {
		margin: 0 12px 0 0;
	}
}

.header__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	position: relative;
        justify-content: space-between;
}

.header.active {
	background-color: #000;
}

.header.scroll {
	background-color: rgba(0, 0, 0, 0.97);
	padding: 15px 0;
}

@media (max-width: 576px) {
	.header.scroll {
		background-color: unset;
		padding: 15px 0 0 0;
	}
}

.header-contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 30px 0 0;
}

@media (min-width: 992px) and (max-width: 1201px) {
	.header-contact {
		margin: 0 25px 0 25px;
	}
}

@media (max-width: 991px) {
	.header-contact {
		margin: 0 30px 0 auto;
	}
}

@media (max-width: 768px) {
	.header-contact {
		display: none;
	}
}

.header-contact img {
	display: block;
	width: 40px;
	height: 40px;
	margin: 0 15px 0 0;
}

@media (min-width: 992px) and (max-width: 1201px) {
	.header-contact img {
		width: 30px;
		height: 30px;
	}
}

.header-contact__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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;
}

.header-contact__tel, .header-contact__callback {
	color: #fff;
}

.header-contact__tel:hover, .header-contact__callback:hover {
	color: #5CC96E;
}

.header-contact__tel {
	font-weight: bold;
	font-size: 18px;
	line-height: 20px;
	color: #fff;
}

@media (min-width: 992px) and (max-width: 1201px) {
	.header-contact__tel {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.header-contact__tel {
		display: block;
		margin: 0 0 20px 0;
	}
}

.header-contact__callback {
	color: #fff;
	text-decoration: underline;
	font-weight: 500;
	font-size: 14px;
	line-height: 25px;
}

@media (max-width: 768px) {
	.header-contact__callback {
		display: block;
		text-align: center;
		border: 1px solid #fff;
		border-radius: 5px;
		padding: 5px;
		text-decoration: none;
	}
}

.nav {
	margin: 0 auto 0 auto;
	display: block;
}

@media (min-width: 992px) {
	.nav {
		display: block !important;
	}
}

@media (max-width: 991px) {
	.nav {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		width: 100%;
		background-color: #000;
		padding: 40px 15px 70px;
	}
}

.nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 991px) {
	.nav__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.nav__item {
	margin: 0 28px 0 0;
}

@media (min-width: 992px) and (max-width: 1201px) {
	.nav__item {
		margin: 0 20px 0 0;
	}
}

@media (max-width: 991px) {
	.nav__item {
		margin: 0 0 20px 0;
	}
}

.nav__item:last-child {
	margin: 0;
}

.nav__divider {
	display: none;
}

@media (max-width: 768px) {
	.nav__divider {
		display: block;
		width: 100%;
		height: 1px;
		background-color: #fff;
		margin: 0 0 20px 0;
	}
}

.nav__link {
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1201px) {
	.nav__link {
		font-size: 12px;
	}
}

@media (max-width: 991px) {
	.nav__link {
		font-size: 15px;
	}
}

.nav__link:hover {
	text-decoration: underline;
}

.nav__link.active {
	color: #34A15C;
}

.nav__contacts {
	display: none;
}

@media (max-width: 768px) {
	.nav__contacts {
		display: block;
	}
}

.lang-switcher {
	background-color: #2B2B2B;
	border-radius: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

@media (max-width: 768px) {
	.lang-switcher {
		margin: 0 0 0 auto;
	}
}

@media (max-width: 360px) {
	.lang-switcher {
		border-radius: 20px;
	}
}

.lang-switcher__icon {
	position: absolute;
	overflow: hidden;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid #fff;
	top: -2px;
	right: -2px;
	opacity: 0;
}

@media (max-width: 360px) {
	.lang-switcher__icon {
		display: none;
	}
}

.lang-switcher__icon img {
	width: 100%;
	height: 100%;
}

.lang-switcher__item {
	color: #fff;
	position: relative;
	display: block;
	padding: 10px;
}

@media (max-width: 360px) {
	.lang-switcher__item {
		padding: 8px 5px;
	}
}

.lang-switcher__item span {
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;
	opacity: .3;
}

@media (max-width: 360px) {
	.lang-switcher__item span {
		font-size: 12px;
	}
}

.lang-switcher__item:hover span {
	opacity: .7;
}

.lang-switcher__item:nth-child(1) .lang-switcher__icon {
	top: -2px;
	left: -2px;
}

.lang-switcher__item:nth-child(1)::after {
	content: "";
	position: absolute;
	top: 8px;
	right: -2px;
	width: 2px;
	height: 25px;
	background-color: #fff;
}

@media (max-width: 360px) {
	.lang-switcher__item:nth-child(1)::after {
		display: none;
	}
}

.lang-switcher__item.current span {
	opacity: 1;
}

.lang-switcher__item.current span:hover {
	opacity: 1;
}

.lang-switcher__item.current .lang-switcher__icon {
	opacity: 1;
}

.burger-btn {
	display: none;
}

@media (max-width: 991px) {
	.burger-btn {
		display: block;
		position: relative;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		width: 30px;
		height: 20px;
		cursor: pointer;
		background-color: transparent;
		border: none;
		padding: 0;
		margin: 0 0 0 20px;
	}
}

@media (max-width: 360px) {
	.burger-btn {
		margin: 0 0 0 15px;
	}
}

@media (max-width: 330px) {
	.burger-btn {
		margin: 0 0 0 12px;
	}
}

.burger-btn span {
	background-color: #fff;
	width: 100%;
	height: 2px;
	display: block;
	-webkit-transition: all .1s ease-in;
	-o-transition: all .1s ease-in;
	transition: all .1s ease-in;
	position: absolute;
}

.burger-btn span:nth-child(1) {
	top: 0;
}

.burger-btn span:nth-child(3) {
	bottom: 0;
}

.burger-btn span:nth-child(2) {
	-webkit-transition: opacity .05s ease-in;
	-o-transition: opacity .05s ease-in;
	transition: opacity .05s ease-in;
	bottom: 9px;
}

.burger-btn.active {
	-webkit-transform: translateX(3px);
	-ms-transform: translateX(3px);
	transform: translateX(3px);
}

.burger-btn.active span:nth-child(1) {
	-webkit-transform: rotate(45deg) translate(5px, 10px);
	-ms-transform: rotate(45deg) translate(5px, 10px);
	transform: rotate(45deg) translate(5px, 10px);
}

.burger-btn.active span:nth-child(2) {
	opacity: 0;
}

.burger-btn.active span:nth-child(3) {
	-webkit-transform: rotate(-45deg) translate(3px, -8px);
	-ms-transform: rotate(-45deg) translate(3px, -8px);
	transform: rotate(-45deg) translate(3px, -8px);
}

.go_to_configurator {
	position: fixed;
	bottom: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #4FB867;
	-webkit-box-shadow: 0px 5px 0px #34A15C, inset 0px -10px 30px #5CC96E;
	box-shadow: 0px 5px 0px #34A15C, inset 0px -10px 30px #5CC96E;
	border-radius: 10px;
	display: none;
	text-align: center;
	cursor: pointer;
	border: none;
	z-index: 9;
	width: 280px;
}

@media (min-width: 576px) {
	.go_to_configurator {
		display: none !important;
	}
}

.go_to_configurator__wrapper {
	position: relative;
	padding: 15px 30px 15px 60px;
}

@media (max-width: 576px) {
	.go_to_configurator__wrapper {
		padding: 10px 30px 10px 60px;
	}
}

.go_to_configurator svg {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 20px;
	width: 17px;
	height: 17px;
	fill: #fff;
	-webkit-animation: fadeOutUp 1s infinite;
	animation: fadeOutUp 1s infinite;
}

.go_to_configurator span {
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	line-height: 19px;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
}

.go_to_configurator:hover {
	background-color: #3dc754;
}

.go_to_configurator:active {
	bottom: 18px;
	-webkit-box-shadow: 0px 2px 0px #34A15C, inset 0px -10px 30px #5CC96E;
	box-shadow: 0px 2px 0px #34A15C, inset 0px -10px 30px #5CC96E;
}

.intro {
	color: #fff;
	background-color: #4A4D4B;
	padding: 130px 0 80px 0;
}

@media (max-width: 2500px) {
	.intro {
		min-height: 100vh;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.intro {
		background-position: 78% center;
	}
}

@media (max-width: 576px) {
	.intro {
		padding: 100px 0 80px 0;
	}
}

.intro__title {
	margin: 0 0 20px 0;
	color: #fff;
	max-width: 970px;
}

.intro__title span {
	color: #EDC173;
}

@media (max-width: 576px) {
	.intro__title {
		font-size: 30px;
		line-height: 36px;
		margin: 0 0 30px 0;
	}
}

.intro__subtitle {
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	margin: 0 0 76px 0;
	margin: 0 0 calc(50px + 0.2vh) 0;
}

@media (max-width: 576px) {
	.intro__subtitle {
		margin: 0 0 30px 0;
	}
}

.intro__qualities {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 660px;
	width: 100%;
	margin: 0 0 70px 0;
}

@media (max-width: 1200px) {
	.intro__qualities {
		margin: 0 0 50px 0;
	}
}

@media (max-width: 576px) {
	.intro__qualities {
		margin: 0 0 30px 0;
	}
}

@media (max-width: 576px) {
	.intro__qualities {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.intro__quality {
	max-width: 140px;
	padding: 20px;
	position: relative;
}

@media (max-width: 576px) {
	.intro__quality {
		max-width: 50%;
		width: 100%;
		padding: 12px;
	}
}

.intro__quality br.mob {
	display: none;
}

@media (max-width: 390px) {
	.intro__quality br.mob {
		display: block;
	}
}

.intro__quality br.desc {
	display: block;
}

@media (min-width: 390px) {
	.intro__quality br.desc {
		display: none;
	}
}

.intro__quality svg {
	width: 20px;
	height: 20px;
	fill: transparent;
	stroke: #C48E68;
	stroke-width: 4px;
	position: absolute;
	top: 0;
	left: 0;
	stroke-dasharray: 37;
	stroke-dashoffset: 0;
}

@media (max-width: 576px) {
	.intro__quality svg {
		width: 12px;
		height: 12px;
	}
}

.intro__quality span {
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
}

.intro__btn {
	max-width: 380px;
	width: 100%;
}

@media (max-width: 576px) {
	.intro__btn {
		margin: 0 auto;
		display: block;
	}
}

.intro__arrow-btn {
	display: none;
	border-radius: 50%;
	margin: 50px auto 0 auto;
	background-color: rgba(0, 0, 0, 0.7);
	width: 50px;
	height: 50px;
}

@media (min-height: 568px) {
	.intro__arrow-btn {
		margin: 80px auto 0 auto;
	}
}

@media (min-height: 700px) {
	.intro__arrow-btn {
		margin: calc(50px + 5vh) auto 0 auto;
	}
}

@media (max-width: 576px) {
	.intro__arrow-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.intro__arrow-btn svg {
	width: 25px;
	height: 25px;
	fill: #fff;
}

.configurator {
	padding: 80px 0 0;
}

@media (max-width: 991px) {
	.configurator {
		padding: 50px 0 0;
	}
}

@media (max-width: 576px) {
	.configurator {
		padding: 0;
	}
}

@media (max-width: 576px) {
	.configurator .container {
		padding: 0;
	}
}

.configurator__form {
	background-color: #fff;
	padding: 50px 70px;
	-webkit-box-shadow: 0px 10px 30px rgba(74, 77, 75, 0.03);
	box-shadow: 0px 10px 30px rgba(74, 77, 75, 0.03);
	border-radius: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.configurator__form {
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 50px 20px;
	}
}

@media (max-width: 576px) {
	.configurator__form {
		border-radius: 0;
	}
}

@media (max-width: 375px) {
	.configurator__form {
		padding: 50px 15px;
	}
}

.configurator__left {
	max-width: 510px;
	margin: 0 20px 0 0;
	width: 100%;
}

@media (max-width: 991px) {
	.configurator__left {
		max-width: 100%;
		margin: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.configurator__img {
	width: calc(100% + 50px);
	margin: 0 0 40px 0;
	position: relative;
	height: 315px;
	max-width: 550px;
	left: -50px;
}

@media (max-width: 991px) {
	.configurator__img {
		margin: 0 auto 0 auto;
		left: 0;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		width: 100%;
	}
}

@media (max-width: 576px) {
	.configurator__img {
		height: 65vw;
		width: 100%;
	}
}

.configurator__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}

@media (max-width: 576px) {
	.configurator__img img {
		width: 120%;
		max-width: 120%;
	}
}

.configurator__title {
	font-weight: bold;
	font-size: 36px;
	line-height: 40px;
	color: #4A4D4B;
	margin: 0 0 40px 0;
	padding: 0 85px 0 0;
}

@media (max-width: 991px) {
	.configurator__title {
		padding: 0;
		font-size: 28px;
		line-height: 32px;
		margin: 0 0 20px 0;
	}
}

.configurator__field {
	max-width: 350px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (max-width: 991px) {
	.configurator__field {
		max-width: 100%;
	}
}

.configurator__field > span {
	font-weight: 500;
	font-size: 18px;
	line-height: 21px;
	display: block;
	margin: 0 0 10px 0;
}

.configurator__field .nice-select {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	height: auto;
	padding: 25px 30px;
	border: 2px solid #E6E6E6;
	border-radius: 10px;
}

@media (max-width: 576px) {
	.configurator__field .nice-select {
		padding: 20px 15px;
	}
}

.configurator__field .nice-select::after {
	width: 10px;
	height: 10px;
	right: 25px;
	-webkit-transform-origin: unset;
	-ms-transform-origin: unset;
	transform-origin: unset;
	margin-top: -8px;
}

.configurator__field .nice-select.open::after {
	margin-top: -4px;
}

.configurator__field .list {
	width: 100%;
	margin-top: 2px;
}

.configurator__field .option {
	padding: 5px 30px;
}

@media (max-width: 576px) {
	.configurator__field .option {
		padding: 5px 15px;
	}
}

.configurator__field + .configurator__field {
	margin: 30px 0 0 0;
}

@media (max-width: 576px) {
	.configurator__field + .configurator__field {
		margin: 20px 0 0 0;
	}
}

.configurator__right {
	width: 100%;
	max-width: 500px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 991px) {
	.configurator__right {
		max-width: 100%;
		margin: 30px 0 0 0;
	}
}

@media (max-width: 576px) {
	.configurator__right {
		margin: 10px 0 0 0;
	}
}

.configurator__tabhead {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 0 60px 0;
}

@media (max-width: 991px) {
	.configurator__tabhead {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
}

@media (max-width: 576px) {
	.configurator__tabhead {
		margin: 0 0 20px 0;
	}
}

.configurator__tab {
	position: relative;
	display: block;
	background-color: #F7F8FA;
	border-radius: 10px;
	padding: 22px 40px;
	width: calc(50% - 10px);
	text-align: center;
}

@media (max-width: 576px) {
	.configurator__tab {
		padding: 15px 15px;
	}
}

@media (max-width: 430px) {
	.configurator__tab {
		width: calc(50% - 5px);
	}
}

@media (max-width: 360px) {
	.configurator__tab {
		width: auto;
	}
}

.configurator__tab span {
	font-weight: bold;
	font-size: 14px;
	line-height: 25px;
	color: #34A15C;
	text-transform: uppercase;
	white-space: nowrap;
}

@media (max-width: 430px) {
	.configurator__tab span {
		font-size: 12px;
	}
}

.configurator__tab img {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 20px;
}

@media (max-width: 576px) {
	.configurator__tab img {
		display: none;
	}
}

@media (max-width: 360px) {
	.configurator__tab:first-child {
		margin: 0 10px 0 0;
	}
}

@media (max-width: 360px) {
	.configurator__tab:nth-child(2) {
		width: 100%;
	}
}

.configurator__tab.active::after {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #34A15C;
}

.configurator__tabbody {
	margin: 0 0 25px 0;
}

@media (max-width: 991px) {
	.configurator__tabbody {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
}

.configurator__brand-desc {
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	margin: -30px 0 25px 0;
}

@media (max-width: 576px) {
	.configurator__brand-desc {
		margin: -10px 0 25px 0;
		font-size: 18px;
	}
}

.configurator__brand-field {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: -15px;
}

.configurator__brand-field img {
	width: 100%;
}

.configurator__brand-field input[type="radio"] {
	width: .1px;
	height: .1px;
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.configurator__brand-field input[type="radio"]:checked ~ .brand-wrapper {
	outline: 2px solid #34A15C;
}

.configurator__brand-field .brand-wrapper {
	padding: 5px 10px;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 576px) {
	.configurator__brand-field .brand-wrapper {
		padding: 5px 5px;
	}
}

.configurator__brand-field .brand-wrapper span {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	line-height: 14px;
}

@media (max-width: 576px) {
	.configurator__brand-field .brand-wrapper span {
		font-size: 12px;
	}
}

.configurator__brand-field label {
	position: relative;
	width: 33.3333%;
	cursor: pointer;
	padding: 0 10px;
	margin: 0 0 15px 0;
}

@media (max-width: 576px) {
	.configurator__brand-field label {
		padding: 0 5px;
	}
}

.configurator__radiofield {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0 0 30px 0;
}

@media (max-width: 991px) {
	.configurator__radiofield {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media (max-width: 576px) {
	.configurator__radiofield {
		margin: 0 0 15px 0;
	}
}

.configurator__radiofield p {
	font-weight: 500;
	font-size: 18px;
	line-height: 21px;
	margin: 0 0 20px 0;
}

@media (max-width: 576px) {
	.configurator__radiofield p {
		margin: 0 0 15px 0;
	}
}

.configurator__radiofield p span {
	color: #B8B8B8;
}

@media (max-width: 576px) {
	.configurator__radiofield:last-child {
		margin: 0;
	}
}

.configurator__radiobtns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 576px) {
	.configurator__radiobtns {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 100%;
	}
}

.configurator__radiobtns input[type="radio"] {
	width: .1px;
	height: .1px;
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.configurator__radiobtns .radiobtn-wrapper {
	border-radius: 50%;
	width: 44px;
	height: 44px;
	position: relative;
	display: block;
}

@media (max-width: 576px) {
	.configurator__radiobtns .radiobtn-wrapper {
		width: 11vw;
		height: 11vw;
		max-width: 44px;
		max-height: 44px;
	}
}

.configurator__radiobtns input[type="radio"]:checked ~ .radiobtn-wrapper {
	border: 2px solid #34A15C;
}

.configurator__radiobtns input[type="radio"]:checked ~ .radiobtn-wrapper .check {
	opacity: 1;
}

.configurator__radiobtns label {
	cursor: pointer;
	border-radius: 50%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 576px) {
	.configurator__radiobtns label {
		width: 25%;
		margin: 0;
	}
}

.configurator__radiobtns label .color {
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	border-radius: 50%;
}

.configurator__radiobtns label + label {
	margin: 0 0 0 15px;
}

@media (max-width: 576px) {
	.configurator__radiobtns label + label {
		margin: 0;
	}
}

.configurator__radiobtns .check {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}

.configurator__price {
	margin: auto 0 30px 0;
}

@media (max-width: 991px) {
	.configurator__price {
		text-align: center;
	}
}

@media (max-width: 576px) {
	.configurator__price {
		margin: auto 0 15px 0;
	}
}

.configurator__old-price {
	font-weight: bold;
	font-size: 16px;
	line-height: 25px;
	opacity: .3;
	margin: 0 25px 0 0;
	text-decoration: line-through;
}

.configurator__current-price {
	font-weight: bold;
	font-size: 24px;
	line-height: 25px;
}

@media (max-width: 991px) {
	.configurator__submit {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
}

.configurator__submit .btn {
	max-width: 345px;
	width: 100%;
}

.about {
	padding: 120px 0 0 0;
}

@media (max-width: 991px) {
	.about {
		padding: 50px 0 0 0;
	}
}

.about__title {
	max-width: 100%;
	width: 100%;
	margin: 0 0 40px 0;
}

@media (max-width: 991px) {
	.about__title br {
		display: none;
	}
}

@media (max-width: 576px) {
	.about__title {
		margin: 0 0 15px 0;
	}
}

.about__content {
	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;
	border-bottom: 1px solid #CECECD;
}

@media (max-width: 991px) {
	.about__content {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.about__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 20px 0 20px 0;
	border-bottom: 1px solid #CECECD;
}

@media (max-width: 576px) {
	.about__item {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.about__item img {
	display: block;
	width: 30px;
	height: 30px;
	margin: 0 0 10px 0;
}

@media (max-width: 576px) {
	.about__item img {
		margin: 0 15px 0 0;
	}
}

.about__item p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	padding: 0 20px 0 0;
}

@media (max-width: 900px) {
	.about__item p br {
		display: none;
	}
}

.about__item:last-child {
	border: none;
}

.about__preview {
	position: relative;
	top: 20px;
}

@media (max-width: 991px) {
	.about__preview {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		margin: 15px auto 0;
	}
}

.about__preview .btn {
	position: absolute;
	bottom: -15px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	display: block;
	height: 65px;
	width: 220px;
	padding: 21px 30px;
	top: unset;
}

.about__preview .btn:active {
	bottom: -17px;
}

.about .column {
	max-width: 277px;
	width: 100%;
}

@media (max-width: 991px) {
	.about .column {
		max-width: 45%;
	}
}

@media (max-width: 576px) {
	.about .column {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.about .column:last-child {
		border-top: 1px solid #CECECD;
	}
}

.about__features {
	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;
	margin: 100px 0 0 0;
}

@media (max-width: 991px) {
	.about__features {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: -35px;
	}
}

@media (max-width: 576px) {
	.about__features {
		margin: 70px 0 -35px 0;
	}
}

.about__feature {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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;
	width: calc((100% / 4) - 10px);
}

@media (max-width: 991px) {
	.about__feature {
		width: calc((100% / 2) - 10px);
		margin: 0 0 15px 0;
	}
}

@media (max-width: 576px) {
	.about__feature {
		width: 100%;
		margin: 0 0 35px 0;
	}
}

.about__feature p {
	margin: 20px 0 0 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	padding: 0 25px;
	min-height: 80px;
}

@media (max-width: 576px) {
	.about__feature p {
		min-height: unset;
		margin: 15px 0 0 0;
	}
}

.about__feature img {
	width: 100%;
}

.about__feature:first-child img {
	margin: 0 0 15px 0;
}

@media (max-width: 576px) {
	.about__feature:first-child img {
		width: 100%;
		margin: 0;
	}
}

.about__feature:nth-child(2) img {
	margin: 0 auto 15px auto;
}

@media (max-width: 576px) {
	.about__feature:nth-child(2) img {
		margin: 0 auto 0;
	}
}

.about__feature:nth-child(3) img {
	width: 85%;
}

.about__feature:nth-child(4) img {
	width: 85%;
}

.about__feature-img {
	position: relative;
	width: 100%;
}

@media (max-width: 991px) {
	.about__feature-img {
		width: auto;
	}
}

@media (max-width: 576px) {
	.about__feature-img {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 100%;
		max-width: 315px;
	}
}

.about__feature-img img {
	display: block;
	position: relative;
	z-index: 2;
	margin: 0 auto 30px;
}

@media (max-width: 576px) {
	.about__feature-img img {
		width: 100%;
		margin: 0 auto 0;
	}
}

.about__feature-img::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 170px;
	background-color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#C48E68), to(#A67756)), -webkit-gradient(linear, left top, left bottom, from(#6ACF73), to(#34A15C)), #FFFFFF;
	background: -o-linear-gradient(top, #C48E68 0%, #A67756 100%), -o-linear-gradient(top, #6ACF73 0%, #34A15C 100%), #FFFFFF;
	background: linear-gradient(180deg, #C48E68 0%, #A67756 100%), linear-gradient(180deg, #6ACF73 0%, #34A15C 100%), #FFFFFF;
	-webkit-box-shadow: inset 0px 10px 30px #FFD29C;
	box-shadow: inset 0px 10px 30px #FFD29C;
	border-radius: 10px;
	z-index: 1;
}

@media (max-width: 576px) {
	.about__feature-img::after {
		display: none;
	}
}

.organizer {
	padding: 120px 0 0 0;
}

@media (max-width: 991px) {
	.organizer {
		padding: 50px 0 0 0;
	}
}

.organizer__heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.organizer__heading {
		-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;
	}
}

.organizer__title {
	max-width: 760px;
	margin: 0 20px 0 0;
	font-size: 46px;
}

@media (max-width: 991px) {
	.organizer__title {
		max-width: 100%;
		margin: 0 0 15px 0;
	}
}

@media (max-width: 576px) {
	.organizer__title {
		font-size: 22px;
	}
}

.organizer__subtitle {
	max-width: 210px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

@media (max-width: 991px) {
	.organizer__subtitle {
		max-width: 100%;
		-webkit-transform: unset;
		-ms-transform: unset;
		transform: unset;
	}
}

.organizer__gallery {
	margin: 50px 0 0 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-gap: 20px 20px;
}

@media (max-width: 576px) {
	.organizer__gallery {
		margin: 30px 0 0 0;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr;
	}
}

.organizer__image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.organizer__bottom {
	margin: 70px 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #fff;
	-webkit-box-shadow: 0px 10px 30px rgba(74, 77, 75, 0.03);
	box-shadow: 0px 10px 30px rgba(74, 77, 75, 0.03);
	border-radius: 20px;
}

@media (max-width: 991px) {
	.organizer__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		background-color: transparent;
		border-radius: none;
		margin: 30px 0 0 0;
	}
}

.organizer__fraction {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 33%;
}

@media (max-width: 991px) {
	.organizer__fraction {
		width: 100%;
		background-color: #fff;
		border-radius: 15px;
		padding: 15px 0;
	}
}

@media (max-width: 991px) {
	.organizer__fraction + .organizer__fraction {
		margin: 20px 0 0 0;
	}
}

.organizer__fraction:last-child .organizer__caption {
	border-right: unset;
}

.organizer__ico {
	-ms-flex-item-align: center;
	align-self: center;
	padding: 10px 25px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

@media (max-width: 576px) {
	.organizer__ico {
		padding: 5px 15px 0;
	}
}

.organizer__caption {
	padding: 15px 20px;
	border-left: 1px solid #DADADA;
	border-right: 1px solid #DADADA;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 991px) {
	.organizer__caption {
		border: none;
	}
}

@media (max-width: 576px) {
	.organizer__caption {
		padding: 15px 15px 15px 10px;
	}
}

.organizer__caption p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}

@media (max-width: 576px) {
	.organizer__caption p {
		line-height: 20px;
	}
}

.video {
	padding: 120px 0 120px;
}

@media (max-width: 991px) {
	.video {
		padding: 50px 0;
	}
}

.video__slider {
	margin: 50px 0 0 0;
	position: relative;
}

@media (max-width: 576px) {
	.video__slider {
		margin: 30px 0 0 0;
	}
}

.video__slider-prev img {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.video__item {
	display: block;
}

.video__item .preview {
	overflow: hidden;
	border-radius: 10px;
	position: relative;
}

.video__item .preview > img {
	width: 100%;
}

.video__item:hover .overlay {
	background-color: rgba(0, 0, 0, 0);
}

.video__item .overlay {
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

.video__text {
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	color: #4A4D4B;
	display: block;
	margin: 20px 0 0 0;
}

@media (max-width: 768px) {
	.video__text {
		font-size: 14px;
		line-height: 18px;
	}
}

.video__nav {
	position: absolute;
	top: 44%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -25px;
	width: calc(100% + 50px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	z-index: 3;
}

@media (max-width: 1200px) {
	.video__nav {
		left: -15px;
		width: calc(100% + 30px);
	}
}

.video__nav img {
	opacity: .3;
}

.video__slider-prev, .video__slider-next {
	padding: 25px 20px;
	background-color: #fff;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 10px;
	-webkit-box-shadow: 0px 10px 30px rgba(74, 77, 75, 0.1);
	box-shadow: 0px 10px 30px rgba(74, 77, 75, 0.1);
	opacity: 1;
	position: absolute;
	top: 44%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 3;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

@media (max-width: 576px) {
	.video__slider-prev, .video__slider-next {
		position: static;
		-webkit-transform: unset;
		-ms-transform: unset;
		transform: unset;
		margin: 20px 0 0 0;
	}
}

.video__slider-prev:hover, .video__slider-next:hover {
	border: 2px solid #34A15C;
}

.video__slider-prev:hover img, .video__slider-next:hover img {
	opacity: 1;
}

.video__slider-prev {
	left: -25px;
}

@media (max-width: 1250px) {
	.video__slider-prev {
		left: -15px;
	}
}

@media (max-width: 576px) {
	.video__slider-prev {
		margin: 20px 15px 0 0;
	}
}

.video__slider-next {
	right: -25px;
}

@media (max-width: 1250px) {
	.video__slider-next {
		right: -15px;
	}
}

.photo {
	background-color: #2B2B2B;
	padding: 0 0 120px 0;
	position: relative;
}

@media (max-width: 576px) {
	.photo {
		padding: 50px 0 50px;
	}
}

.photo__title {
	color: #fff;
	max-width: 335px;
	-webkit-transform: translateY(240px);
	-ms-transform: translateY(240px);
	transform: translateY(240px);
}

@media (max-width: 991px) {
	.photo__title {
		-webkit-transform: translateY(80px);
		-ms-transform: translateY(80px);
		transform: translateY(80px);
	}
}

@media (max-width: 790px) {
	.photo__title {
		-webkit-transform: translateY(40px);
		-ms-transform: translateY(40px);
		transform: translateY(40px);
	}
}

@media (max-width: 576px) {
	.photo__title {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

.photo__gallery {
	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;
	margin-top: -35px;
}

.photo__gallery img {
	border-radius: 10px;
	width: 100%;
}

@media (max-width: 576px) {
	.photo__gallery img {
		width: 100%;
		border-radius: 15px;
	}
}

@media (max-width: 576px) {
	.photo__gallery {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 50px 0 0 0;
	}
}

.photo__column {
	width: calc((100% / 3) - 10px);
}

@media (max-width: 576px) {
	.photo__column {
		width: 100%;
	}
}

.photo__item {
	margin: 0 0 20px 0;
	display: block;
}

.photo__show-more {
	background-color: transparent;
	border: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	position: absolute;
	bottom: 60px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media (max-width: 576px) {
	.photo__show-more {
		bottom: 25px;
	}
}

.photo__show-more:hover span, .photo__show-more:hover svg {
	opacity: .7;
}

.photo__show-more span {
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	text-decoration: underline;
	text-transform: uppercase;
	color: #fff;
	opacity: .5;
	display: block;
	margin: 0 10px 0 0;
	-webkit-transition: opacity .3s linear;
	-o-transition: opacity .3s linear;
	transition: opacity .3s linear;
}

.photo__show-more svg {
	width: 17px;
	height: 17px;
	fill: transparent;
	stroke: #fff;
	stroke-width: 2px;
	opacity: .5;
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-transition: opacity .3s linear;
	-o-transition: opacity .3s linear;
	transition: opacity .3s linear;
}

.photo__hidden-gallery {
	display: none;
}

.photo__hidden-gallery img {
	border-radius: 10px;
}

@media (max-width: 576px) {
	.photo__hidden-gallery img {
		width: 100%;
		border-radius: 15px;
	}
}

.photo__hidden-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

@media (max-width: 576px) {
	.photo__hidden-wrapper {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.feedback {
	padding: 120px 0;
}

@media (max-width: 991px) {
	.feedback {
		padding: 50px 0;
	}
}

.feedback__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.feedback__content {
		-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;
	}
}

.feedback__left {
	max-width: 455px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	margin: 0 20px 0 0;
}

@media (max-width: 576px) {
	.feedback__left {
		margin: 0 auto 0;
		max-width: 100%;
	}
}

.feedback__left .section-title {
	letter-spacing: -0.9px;
	font-size: 46px;
}

@media (max-width: 991px) {
	.feedback__left .section-title {
		text-align: center;
	}
}

@media (max-width: 576px) {
	.feedback__left .section-title {
		text-align: left;
		font-size: 22px;
	}
}

.feedback__slider-wrapper {
	position: relative;
	max-width: 355px;
}

@media (max-width: 576px) {
	.feedback__slider-wrapper {
		max-width: 100%;
	}
}

.feedback__slider-wrapper > img {
	width: 100%;
	position: relative;
	z-index: 3;
	max-height: 700px;
}

@media (max-width: 576px) {
	.feedback__slider-wrapper > img {
		display: none;
	}
}

.feedback__slider-inner {
	position: absolute;
	width: calc(100% - 58px);
	height: calc(100% - 106px);
	top: 51px;
	left: 29px;
	z-index: 2;
}

@media (max-width: 576px) {
	.feedback__slider-inner {
		position: static;
		width: 100%;
		height: auto;
	}
}

.feedback__slider {
	margin: 40px 0 0 0;
	padding: 0 50px;
	position: relative;
}

@media (max-width: 576px) {
	.feedback__slider {
		padding: 0;
	}
}

.feedback__slider-prev, .feedback__slider-next {
	padding: 25px 18px;
	background-color: #fff;
	cursor: pointer;
	border: none;
	border-radius: 10px;
	-webkit-box-shadow: 0px 10px 30px rgba(74, 77, 75, 0.1);
	box-shadow: 0px 10px 30px rgba(74, 77, 75, 0.1);
	opacity: 1;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border: 2px solid transparent;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

@media (max-width: 576px) {
	.feedback__slider-prev, .feedback__slider-next {
		z-index: 5;
		margin: 0;
		padding: 0;
		background-color: #E7E7E8;
		border-radius: 50%;
		-webkit-box-shadow: unset;
		box-shadow: unset;
		border: none;
		width: 40px;
		height: 40px;
	}
}

.feedback__slider-prev svg, .feedback__slider-next svg {
	width: 16px;
	height: 16px;
	stroke-width: 25px;
	stroke: #000;
	fill: #000;
}

@media (max-width: 576px) {
	.feedback__slider-prev svg, .feedback__slider-next svg {
		display: none !important;
	}
}

.feedback__slider-prev:hover, .feedback__slider-next:hover {
	border: 2px solid #34A15C;
}

@media (max-width: 576px) {
	.feedback__slider-prev:hover, .feedback__slider-next:hover {
		border: unset;
		background-color: #c5c5c8;
	}
}

.feedback__slider-prev:hover svg, .feedback__slider-next:hover svg {
	opacity: 1;
}

.feedback__slider-prev svg, .feedback__slider-next svg {
	opacity: .3;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

@media (max-width: 576px) {
	.feedback__slider-prev svg, .feedback__slider-next svg {
		opacity: .7;
	}
}

.feedback__slider-prev {
	left: -10px;
}

@media (max-width: 576px) {
	.feedback__slider-prev {
		left: 10px;
		background-image: url(../images/sprite-instagram.png);
		background-repeat: no-repeat;
		background-position: -130px -98px;
		height: 30px !important;
		width: 30px !important;
		background-color: transparent !important;
		border-radius: 50%;
	}
}

.feedback__slider-prev svg {
	-webkit-transform: rotate(180deg) translate(1px, 1px);
	-ms-transform: rotate(180deg) translate(1px, 1px);
	transform: rotate(180deg) translate(1px, 1px);
}

.feedback__slider-next {
	right: -10px;
}

@media (max-width: 576px) {
	.feedback__slider-next {
		background-image: url(../images/sprite-instagram.png);
		background-repeat: no-repeat;
		background-position: -162px -98px;
		height: 30px !important;
		width: 30px !important;
		background-color: transparent !important;
		border-radius: 50%;
		right: 10px;
	}
}

.feedback__slider-next svg {
	-webkit-transform: translate(2px, -1px);
	-ms-transform: translate(2px, -1px);
	transform: translate(2px, -1px);
}

.feedback .swiper-container {
	height: 100%;
}

.feedback .swiper-container img {
	width: 100%;
	height: auto;
}

.feedback__slider-pagination {
	position: absolute;
	bottom: -50px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 100%;
	overflow: hidden;
}

.feedback__slider-pagination .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	background-color: transparent;
	border-radius: 50%;
	border: 1px solid #C4C4C4;
	opacity: 1;
	position: relative;
	-webkit-transition: all .1s linear;
	-o-transition: all .1s linear;
	transition: all .1s linear;
}

@media (max-width: 375px) {
	.feedback__slider-pagination .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}
}

.feedback__slider-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
	margin: 0 0 0 10px;
}

.feedback__slider-pagination .swiper-pagination-bullet-active {
	width: 20px;
	height: 20px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

@media (max-width: 375px) {
	.feedback__slider-pagination .swiper-pagination-bullet-active {
		width: 12px;
		height: 12px;
	}
}

.feedback__slider-pagination .swiper-pagination-bullet-active::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background-color: #C48E68;
}

@media (max-width: 375px) {
	.feedback__slider-pagination .swiper-pagination-bullet-active::after {
		width: 5px;
		height: 5px;
	}
}

.feedback__right {
	max-width: 575px;
	width: 100%;
}

@media (max-width: 991px) {
	.feedback__right {
		max-width: 100%;
		margin: 90px 0 0 0;
	}
}

@media (max-width: 576px) {
	.feedback__right {
		margin: 75px 0 0 0;
	}
}

.feedback__right h2 {
	font-weight: bold;
	font-size: 24px;
	line-height: 32px;
	margin: 20px 0 50px 0;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	.feedback__right h2 {
		margin: 0 0 30px 0;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.feedback__right h2 {
		font-size: 22px;
		line-height: 26px;
		text-align: left;
	}
}

.feedback__grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (max-width: 991px) {
	.feedback__grid {
		margin-bottom: -30px;
	}
}

@media (max-width: 576px) {
	.feedback__grid {
		display: none;
	}
}

.feedback__grid--mob {
	display: none;
}

@media (max-width: 576px) {
	.feedback__grid--mob {
		display: block;
	}
}

.feedback__video {
	display: block;
	margin: 0 0 45px 0;
	width: calc((100% / 2) - 10px);
}

@media (max-width: 991px) {
	.feedback__video {
		width: calc((100% / 3) - 15px);
		margin: 0 0 30px 0;
	}
}

@media (max-width: 768px) {
	.feedback__video {
		width: calc((100% / 2) - 10px);
		margin: 0 0 30px 0;
	}
}

@media (max-width: 576px) {
	.feedback__video {
		width: 100%;
		margin: 0;
	}
}

.feedback__video .video-timing {
	top: 10px;
	right: 10px;
}

.feedback__video .preview {
	overflow: hidden;
	border-radius: 10px;
	position: relative;
}

.feedback__video .preview > img {
	width: 100%;
}

.feedback__video:hover .overlay {
	background-color: rgba(0, 0, 0, 0);
}

.feedback__video .overlay {
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

.feedback__video-text {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #4A4D4B;
	display: block;
	margin: 10px 0 0 0;
}

.video-feedback__slider-prev,
.video-feedback__slider-next {
	padding: 25px 20px;
	background-color: #fff;
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 10px;
	-webkit-box-shadow: 0px 10px 30px rgba(74, 77, 75, 0.1);
	box-shadow: 0px 10px 30px rgba(74, 77, 75, 0.1);
	opacity: 1;
	position: absolute;
	top: 44%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 3;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

@media (max-width: 576px) {
	.video-feedback__slider-prev,
	.video-feedback__slider-next {
		position: static;
		-webkit-transform: unset;
		-ms-transform: unset;
		transform: unset;
		margin: 20px 0 0 0;
	}
}

.video-feedback__slider-prev:hover,
.video-feedback__slider-next:hover {
	border: 2px solid #34A15C;
}

.video-feedback__slider-prev:hover img,
.video-feedback__slider-next:hover img {
	opacity: 1;
}

.video-feedback__slider-prev {
	left: -25px;
}

@media (max-width: 1250px) {
	.video-feedback__slider-prev {
		left: -15px;
	}
}

@media (max-width: 576px) {
	.video-feedback__slider-prev {
		margin: 20px 15px 0 0;
	}
}

.video-feedback__slider-prev img {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.video-feedback__slider-next {
	right: -25px;
}

@media (max-width: 1250px) {
	.video-feedback__slider-next {
		right: -15px;
	}
}

.steps {
	padding: 120px 0;
	background-color: #fff;
}

@media (max-width: 991px) {
	.steps {
		padding: 50px 0;
	}
}

@media (max-width: 991px) {
	.steps__title br {
		display: none;
	}
}

.steps__content {
	margin: 70px 0 0 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 20px;
}

@media (max-width: 991px) {
	.steps__content {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		margin: 50px 0 0 0;
	}
}

@media (max-width: 576px) {
	.steps__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 30px 0 0 0;
	}
}

.steps__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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;
	padding: 20px;
	border: 1px solid rgba(43, 43, 43, 0.2);
	border-radius: 10px;
	position: relative;
	height: 100%;
}

.steps__item:hover .steps__icon img {
	top: 0;
	-webkit-transform: translateX(-50%) scale(1.1);
	-ms-transform: translateX(-50%) scale(1.1);
	transform: translateX(-50%) scale(1.1);
}

.steps__item:hover .steps__item-round {
	-webkit-animation: flash 1s 1;
	animation: flash 1s 1;
}

.steps__item-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
}

.steps__item-wrapper:nth-child(4) .steps__icon {
	margin: 5px 0 0 0;
}

.steps__item-plask {
	position: absolute;
	top: 30px;
	right: -20px;
	border-left: 1px solid rgba(43, 43, 43, 0.2);
	border-bottom: 1px solid rgba(43, 43, 43, 0.2);
	width: 35px;
	border-radius: 22%;
	height: 35px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: #fff;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.steps__item-round {
	border-radius: 50%;
	width: 10px;
	height: 10px;
	background-color: #C48E68;
	-webkit-transform: rotate(-45deg) translateX(-8px);
	-ms-transform: rotate(-45deg) translateX(-8px);
	transform: rotate(-45deg) translateX(-8px);
}

.steps__number {
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	position: relative;
	-ms-flex-item-align: start;
	align-self: flex-start;
	padding: 15px 25px 15px 0;
}

@media (max-width: 576px) {
	.steps__number {
		margin-bottom: -65px;
	}
}

.steps__number::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 54px;
	background-color: #2B2B2B;
	opacity: .2;
}

.steps__icon {
	-ms-flex-item-align: center;
	align-self: center;
	border-radius: 50%;
	background-color: #F6F6F5;
	width: 70px;
	height: 70px;
	position: relative;
	margin: 15px 0 0 0;
}

.steps__icon img {
	position: absolute;
	width: 100%;
	max-width: 50px;
	left: 50%;
	top: -10px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

.steps__heading {
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	font-size: 16px;
	line-height: 20px;
	margin: 20px 0 0 0;
}

.steps__text {
	margin: 10px 0 0 0;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
}

.gift {
	padding: 120px 0;
}

@media (max-width: 991px) {
	.gift {
		padding: 50px 0;
	}
}

.gift__content {
	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 (max-width: 991px) {
	.gift__content {
		-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;
	}
}

.gift__left {
	max-width: 575px;
	width: 100%;
	margin: 0 20px 0 0;
}

@media (max-width: 991px) {
	.gift__left {
		max-width: 100%;
		margin: 0 0 50px 0;
	}
}

@media (max-width: 576px) {
	.gift__left {
		margin: 0 0 30px 0;
	}
}

.gift__left img {
	width: 100%;
}

.gift__right {
	max-width: 475px;
	width: 100%;
}

@media (max-width: 991px) {
	.gift__right {
		max-width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.gift__title {
	font-weight: bold;
	font-size: 48px;
	line-height: 48px;
	margin: 0 0 50px 0;
}

@media (max-width: 576px) {
	.gift__title {
		font-size: 26px;
		line-height: 26px;
		margin: 0 0 30px 0;
	}
}

.gift__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.gift__icon {
	margin: 0 20px 0 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.gift__item + .gift__item {
	margin: 25px 0 0 0;
}

.gift__text-big {
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	text-transform: uppercase;
}

.gift__text-bold {
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
}

.gift__text {
	font-size: 16px;
	line-height: 24px;
}

.gift__btn {
	margin: 40px 0 0 0;
}

@media (max-width: 991px) {
	.gift__btn {
		margin: 40px auto 0;
		-ms-flex-item-align: center;
		align-self: center;
	}
}

.faq {
	padding: 100px 0;
	background-color: #fff;
}

@media (max-width: 991px) {
	.faq {
		padding: 50px 0;
	}
}

.faq__content {
	margin: 50px 0 0 0;
}

@media (max-width: 991px) {
	.faq__content {
		margin: 30px 0 0 0;
	}
}

@media (max-width: 576px) {
	.faq__content {
		margin: 15px 0 0 0;
	}
}

.faq__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;
}

@media (max-width: 991px) {
	.faq__row {
		-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;
	}
}

.faq-item {
	width: calc(50% - 10px);
	border-bottom: 1px solid #DBDBDB;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 20px 20px 0 20px;
}

@media (max-width: 576px) {
	.faq-item {
		padding: 20px 15px 0 0;
	}
}

@media (max-width: 991px) {
	.faq-item {
		width: 100%;
	}
}

.faq-item__button {
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0 50px 0 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	cursor: pointer;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

@media (max-width: 576px) {
	.faq-item__button {
		margin: 0 20px 0 0;
	}
}

.faq-item__button span {
	position: absolute;
	display: block;
	background-color: #34A15C;
	width: 3px;
	height: 20px;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

.faq-item__button span:nth-child(1) {
	left: 8px;
}

.faq-item__button span:nth-child(2) {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	left: 8px;
}

.faq-item__button.active {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.faq-item__button.active span {
	background-color: #C9CAC9;
}

.faq-item__title {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 16px;
	line-height: 24px;
	cursor: pointer;
	margin: 0 0 20px 0;
}

@media (max-width: 576px) {
	.faq-item__title {
		line-height: 20px;
		font-size: 15px;
		margin: 0 0 15px 0;
	}
}

.faq-item__inner {
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	color: #818381;
	display: none;
	margin: 0 0 10px 0;
}

.contact {
	padding: 120px 0;
}

@media (max-width: 991px) {
	.contact {
		padding: 50px 0;
	}
}

.contact__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.contact__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.contact__form {
	max-width: 480px;
	margin: 0 20px 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (max-width: 991px) {
	.contact__form {
		max-width: 100%;
		margin: 0;
	}
}

.contact__title {
	font-weight: bold;
	font-size: 48px;
	line-height: 48px;
	max-width: 410px;
	margin: 0 0 20px 0;
}

@media (max-width: 991px) {
	.contact__title {
		max-width: 100%;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.contact__title {
		text-align: unset;
		font-size: 26px;
		line-height: 26px;
		margin: 0 0 30px 0;
	}
}

.contact__subtitle {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 35px 0;
}

@media (max-width: 991px) {
	.contact__subtitle {
		max-width: 100%;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.contact__subtitle {
		text-align: unset;
	}
}

.contact__field {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (max-width: 991px) {
	.contact__field {
		max-width: 100%;
		width: 100%;
		margin: 0 auto;
	}
}

.contact__field span {
	text-transform: uppercase;
	margin: 0 0 10px 0;
	color: #A0A1A0;
	font-weight: 500;
}

.contact__field input {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px 25px;
	color: #4A4D4B;
	font-size: 16px;
	border: 2px solid #E6E6E6;
	width: 100%;
}

.contact__field input::-webkit-input-placeholder {
	font-weight: normal;
	font-size: 16px;
	color: #A5A6A5;
}

.contact__field input::-moz-placeholder {
	font-weight: normal;
	font-size: 16px;
	color: #A5A6A5;
}

.contact__field input:-ms-input-placeholder {
	font-weight: normal;
	font-size: 16px;
	color: #A5A6A5;
}

.contact__field input::-ms-input-placeholder {
	font-weight: normal;
	font-size: 16px;
	color: #A5A6A5;
}

.contact__field input::placeholder {
	font-weight: normal;
	font-size: 16px;
	color: #A5A6A5;
}

.contact__field + .contact__field {
	margin: 25px 0 0 0;
}

@media (max-width: 991px) {
	.contact__field + .contact__field {
		margin: 25px auto 0;
	}
}

.contact__btn {
	margin: 30px 0 0 0;
}

@media (max-width: 991px) {
	.contact__btn {
		max-width: 480px;
		margin: 30px auto 0;
	}
}

.contact__bottom-text {
	font-size: 14px;
	line-height: 15px;
	color: #AFAFAF;
	margin: 30px 0 0 0;
	max-width: 320px;
}

@media (max-width: 991px) {
	.contact__bottom-text {
		max-width: 480px;
		margin: 30px auto 0;
		text-align: center;
	}
}

.contact__bottom-text span {
	font-weight: 700;
}

.contact__img img {
	width: 100%;
    object-fit: cover;
    border-radius: 14px;
}

@media (max-width: 991px) {
	.contact__img {
		display: none;
	}
}

.modal-window {
	display: none;
}

.cart-modal, .request-modal {
	border-radius: 15px;
	background-color: #F6F6F5;
	padding: 70px 50px;
	max-width: 900px;
	width: 100%;
}

@media (max-width: 991px) {
	.cart-modal, .request-modal {
		padding: 50px 25px;
	}
}

@media (max-width: 576px) {
	.cart-modal, .request-modal {
		padding: 30px 15px;
	}
}

.cart-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-bottom: 5px;
}

.cart-form__head {
	padding: 0 0 35px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
	.cart-form__head {
		padding: 0 0 30px 0;
	}
}

.cart-form__title {
	font-weight: bold;
	font-size: 36px;
	line-height: 40px;
	color: #4A4D4B;
	text-transform: uppercase;
}

@media (max-width: 576px) {
	.cart-form__title {
		font-size: 26px;
		line-height: 28px;
	}
}

.cart-form__title_centered {
	text-align: center;
	color: #34A15C;
}

.cart-form__subtitle {
	font-weight: bold;
	font-size: 32px;
	line-height: 36px;
	margin: 15px 0 0 0;
	color: #4A4D4B;
}

@media (max-width: 576px) {
	.cart-form__subtitle {
		font-size: 20px;
		line-height: 24px;
	}
}

.cart-form__subtitle_centered {
	text-align: center;
	color: #34A15C;
}

.cart-form__body {
	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;
	margin: 20px 0 30px 0;
}

@media (max-width: 768px) {
	.cart-form__body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: unset;
		-ms-flex-align: unset;
		align-items: unset;
	}
}

@media (max-width: 576px) {
	.cart-form__body {
		margin: 0 0 25px 0;
	}
}

.cart-form__img {
	width: 100%;
	margin: 0 20px 0 0;
	position: relative;
	height: 315px;
	max-width: 50%;
}

@media (max-width: 768px) {
	.cart-form__img {
		max-width: 550px;
		margin: 0 auto;
	}
}

@media (max-width: 576px) {
	.cart-form__img {
		height: 65vw;
		overflow: hidden;
	}
}

.cart-form__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media (max-width: 576px) {
	.cart-form__img img {
		width: 120%;
		max-width: 120%;
	}
}

.cart-form__info {
	width: calc(50% - 15px);
	border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.cart-form__info {
		width: 100%;
		margin: 20px 0 0 0;
	}
}

@media (max-width: 768px) {
	.cart-form__info {
		width: 100%;
		margin: 0;
	}
}

.cart-form__info p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.cart-form__info span {
	display: inline-block;
	margin: 0 0 0 10px;
}

.cart-form__info-field {
	padding: 12px 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-form__info-field p {
	font-weight: 500;
	font-size: 18px;
	line-height: 21px;
}

.cart-form__info-price {
	padding: 12px 15px;
}

.cart-form__info-price p {
	font-weight: 700;
	font-size: 20px;
	line-height: 21px;
}

.cart-form__fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 0 45px 0;
}

@media (max-width: 576px) {
	.cart-form__fields {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0 0 30px 0;
	}
}

.cart-form__fields input {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px 25px;
	color: #4A4D4B;
	font-size: 16px;
	border: 2px solid #E6E6E6;
	width: calc(50% - 15px);
}

@media (max-width: 576px) {
	.cart-form__fields input {
		width: 100%;
	}
}

.cart-form__fields input::-webkit-input-placeholder {
	font-weight: normal;
	font-size: 16px;
	color: #A5A6A5;
}

.cart-form__fields input::-moz-placeholder {
	font-weight: normal;
	font-size: 16px;
	color: #A5A6A5;
}

.cart-form__fields input:-ms-input-placeholder {
	font-weight: normal;
	font-size: 16px;
	color: #A5A6A5;
}

.cart-form__fields input::-ms-input-placeholder {
	font-weight: normal;
	font-size: 16px;
	color: #A5A6A5;
}

.cart-form__fields input::placeholder {
	font-weight: normal;
	font-size: 16px;
	color: #A5A6A5;
}

@media (max-width: 576px) {
	.cart-form__fields input + input {
		margin: 30px 0 0 0;
	}
}

.cart-form__submit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cart-form__submit .btn {
	max-width: 420px;
	width: 100%;
}

.request-modal {
	max-width: 750px;
}

.request-modal__form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.request-modal__title {
	font-weight: bold;
	font-size: 36px;
	line-height: 40px;
	color: #4A4D4B;
	text-transform: uppercase;
}

@media (max-width: 576px) {
	.request-modal__title {
		font-size: 26px;
		line-height: 28px;
	}
}

.request-modal__subtitle {
	font-weight: bold;
	font-size: 32px;
	line-height: 36px;
	margin: 25px 0 0 0;
	color: #4A4D4B;
}

@media (max-width: 576px) {
	.request-modal__subtitle {
		font-size: 20px;
		line-height: 24px;
	}
}

.request-modal__text {
	font-size: 18px;
	line-height: 24px;
	margin: 10px 0 0 0;
}

@media (max-width: 576px) {
	.request-modal__text {
		font-size: 16px;
		line-height: 20px;
	}
}

.request-modal__input {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px 25px;
	color: #4A4D4B;
	font-size: 16px;
	border: 2px solid #E6E6E6;
	margin: 25px 0;
}

.pseudo-section {
	position: absolute;
	left: 0;
	right: 0;
	top: 60px;
	bottom: 0;
	background-color: transparent;
	z-index: -1;
}

.thanks__btn {
	padding: 21px 15px;
}

.thanks-social {
	margin: 50px 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 375px;
}

.thanks-social__text {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
}

@media (max-width: 576px) {
	.thanks-social__text {
		font-size: 16px;
	}
}

.thanks-social__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.thanks-social__link img {
	display: block;
	margin: 0 10px 0 0;
}

.thanks-social__link span {
	color: #fff;
	font-size: 18px;
}

.fancybox-button svg {
	-webkit-transform: scale(1.6);
	-ms-transform: scale(1.6);
	transform: scale(1.6);
}

.fancybox-button.fancybox-close-small {
	top: 5px;
	right: 5px;
}

.fancybox-slide--video {
	padding: 44px 0;
}

.visually-hidden {
	position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

.contact__recaptcha {
	margin: 20px 0 -10px 0;
}

@media (max-width: 991px) {
	.contact__recaptcha {
		margin-left: auto;
		margin-right: auto;
	}
}

.cart__recaptcha {
	margin: -20px auto 20px auto;
	display: flex;
	justify-content: center;
}

.oneclick__captcha {
	display: flex;
	justify-content: center;
	margin: 0 auto 25px auto;
}

button:disabled {
	cursor: default;
	pointer-events: none;
}

.fancybox-slide {
	transition: none !important;
}
.fancybox-bg {
	transition: none !important;
}

.fancybox-content {
	animation: none !important;
}

@media (min-width: 1025px) {
.intro__title {
    max-width: 1015px;
}
}
