.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translateZ(0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		transform: translate3d(0, -4px, 0);
	}
}
@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translateZ(0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		transform: translate3d(0, -4px, 0);
	}
}
.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	transform-origin: center bottom;
}
@-webkit-keyframes flash {
	0%,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
@keyframes flash {
	0%,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}
@-webkit-keyframes pulse {
	0% {
		transform: scaleX(1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		transform: scaleX(1);
	}
}
@keyframes pulse {
	0% {
		transform: scaleX(1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		transform: scaleX(1);
	}
}
.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}
@-webkit-keyframes rubberBand {
	0% {
		transform: scaleX(1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		transform: scaleX(1);
	}
}
@keyframes rubberBand {
	0% {
		transform: scaleX(1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		transform: scaleX(1);
	}
}
.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}
@-webkit-keyframes shake {
	0%,
	to {
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0);
	}
}
@keyframes shake {
	0%,
	to {
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0);
	}
}
.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}
@-webkit-keyframes headShake {
	0% {
		transform: translateX(0);
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		transform: translateX(0);
	}
}
@keyframes headShake {
	0% {
		transform: translateX(0);
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		transform: translateX(0);
	}
}
.headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake;
}
@-webkit-keyframes swing {
	20% {
		transform: rotate(15deg);
	}
	40% {
		transform: rotate(-10deg);
	}
	60% {
		transform: rotate(5deg);
	}
	80% {
		transform: rotate(-5deg);
	}
	to {
		transform: rotate(0deg);
	}
}
@keyframes swing {
	20% {
		transform: rotate(15deg);
	}
	40% {
		transform: rotate(-10deg);
	}
	60% {
		transform: rotate(5deg);
	}
	80% {
		transform: rotate(-5deg);
	}
	to {
		transform: rotate(0deg);
	}
}
.swing {
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}
@-webkit-keyframes tada {
	0% {
		transform: scaleX(1);
	}
	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		transform: scaleX(1);
	}
}
@keyframes tada {
	0% {
		transform: scaleX(1);
	}
	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		transform: scaleX(1);
	}
}
.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}
@-webkit-keyframes wobble {
	0% {
		transform: none;
	}
	15% {
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		transform: none;
	}
}
@keyframes wobble {
	0% {
		transform: none;
	}
	15% {
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		transform: none;
	}
}
.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}
@-webkit-keyframes jello {
	0%,
	11.1%,
	to {
		transform: none;
	}
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
@keyframes jello {
	0%,
	11.1%,
	to {
		transform: none;
	}
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	transform-origin: center;
}
@-webkit-keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		transform: scaleX(1);
	}
}
@keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		transform: scaleX(1);
	}
}
.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	75% {
		transform: translate3d(0, -10px, 0);
	}
	90% {
		transform: translate3d(0, 5px, 0);
	}
	to {
		transform: none;
	}
}
@keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	75% {
		transform: translate3d(0, -10px, 0);
	}
	90% {
		transform: translate3d(0, 5px, 0);
	}
	to {
		transform: none;
	}
}
.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	75% {
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		transform: translate3d(5px, 0, 0);
	}
	to {
		transform: none;
	}
}
@keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	75% {
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		transform: translate3d(5px, 0, 0);
	}
	to {
		transform: none;
	}
}
.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		transform: translate3d(10px, 0, 0);
	}
	90% {
		transform: translate3d(-5px, 0, 0);
	}
	to {
		transform: none;
	}
}
@keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		transform: translate3d(10px, 0, 0);
	}
	90% {
		transform: translate3d(-5px, 0, 0);
	}
	to {
		transform: none;
	}
}
.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	75% {
		transform: translate3d(0, 10px, 0);
	}
	90% {
		transform: translate3d(0, -5px, 0);
	}
	to {
		transform: translateZ(0);
	}
}
@keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	75% {
		transform: translate3d(0, 10px, 0);
	}
	90% {
		transform: translate3d(0, -5px, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
	20% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
@keyframes bounceOut {
	20% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
}
@keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
}
.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
}
@keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
}
.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
}
@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
}
.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
}
@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
}
.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
	0% {
		transform: perspective(400px) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}
@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}
.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}
@-webkit-keyframes flipInX {
	0% {
		transform: perspective(400px) rotateX(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotateX(10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
@keyframes flipInX {
	0% {
		transform: perspective(400px) rotateX(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotateX(10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}
@-webkit-keyframes flipInY {
	0% {
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotateY(10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
@keyframes flipInY {
	0% {
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotateY(10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
	0% {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}
@keyframes flipOutX {
	0% {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}
.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
	0% {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}
@keyframes flipOutY {
	0% {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}
.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
	0% {
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		transform: skewX(-5deg);
		opacity: 1;
	}
	to {
		transform: none;
		opacity: 1;
	}
}
@keyframes lightSpeedIn {
	0% {
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		transform: skewX(-5deg);
		opacity: 1;
	}
	to {
		transform: none;
		opacity: 1;
	}
}
.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	to {
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
@keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	to {
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
	0% {
		transform-origin: center;
		transform: rotate(-200deg);
		opacity: 0;
	}
	to {
		transform-origin: center;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateIn {
	0% {
		transform-origin: center;
		transform: rotate(-200deg);
		opacity: 0;
	}
	to {
		transform-origin: center;
		transform: none;
		opacity: 1;
	}
}
.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1;
	}
	to {
		transform-origin: center;
		transform: rotate(200deg);
		opacity: 0;
	}
}
@keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1;
	}
	to {
		transform-origin: center;
		transform: rotate(200deg);
		opacity: 0;
	}
}
.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
}
@keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
}
.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
}
@keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
}
@keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
}
@keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
}
.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
	0% {
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		transform: rotate(80deg);
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		transform: rotate(60deg);
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
@keyframes hinge {
	0% {
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		transform: rotate(80deg);
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		transform: rotate(60deg);
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge;
}
@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes rollIn {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}
@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate(120deg);
	}
}
@keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate(120deg);
	}
}
.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInDown {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInLeft {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInRight {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInUp {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}
@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}
.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform-origin: left center;
	}
}
@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform-origin: left center;
	}
}
.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(2000px, 0, 0);
		transform-origin: right center;
	}
}
@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(2000px, 0, 0);
		transform-origin: right center;
	}
}
.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
	0% {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
@keyframes slideInDown {
	0% {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
	0% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
@keyframes slideInLeft {
	0% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
	0% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
@keyframes slideInRight {
	0% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
	0% {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
@keyframes slideInUp {
	0% {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}
@keyframes slideOutDown {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}
.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(-100%, 0, 0);
	}
}
@keyframes slideOutLeft {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(-100%, 0, 0);
	}
}
.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(100%, 0, 0);
	}
}
@keyframes slideOutRight {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(100%, 0, 0);
	}
}
.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, -100%, 0);
	}
}
@keyframes slideOutUp {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, -100%, 0);
	}
}
.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}
@font-face {
	font-family: swiper-icons;
	src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
	font-weight: 400;
	font-style: normal;
}
:root {
	--swiper-theme-color: #007aff;
}
.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	/*height: 100%;*/
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
	transform: translateZ(0);
}
.swiper-pointer-events {
	touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
	touch-action: pan-x;
}
.swiper-slide {
/*     flex-shrink: 0;
width: 100%; */
	height: 100%;
	position: relative;
	transition-property: transform;
}
.swiper-slide-invisible-blank {
	visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}
.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}
.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
	-ms-scroll-snap-type: y mandatory;
	scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper:before {
	content: '';
	flex-shrink: 0;
	order: 9999;
}
.swiper-centered.swiper-horizontal
	> .swiper-wrapper
	> .swiper-slide:first-child {
	-webkit-margin-start: var(--swiper-centered-offset-before);
	margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
	-webkit-margin-before: var(--swiper-centered-offset-before);
	margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper:before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
}
.swiper-virtual .swiper-slide {
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
	height: 1px;
	width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
	width: 1px;
	height: var(--swiper-virtual-size);
}
:root {
	--swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - var(--swiper-navigation-size) / 2);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	text-transform: none;
	font-variant: normal;
	line-height: 1;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: 'next';
}
.swiper-button-lock {
	display: none;
}
.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: opacity 0.3s;
	transform: translateZ(0);
	z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 30px;
	left: 0;
	width: 100%;
}
.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(0.33);
	position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(0.33);
}
.swiper-pagination-bullet {
	width: var(
		--swiper-pagination-bullet-width,
		var(--swiper-pagination-bullet-size, 8px)
	);
	height: var(
		--swiper-pagination-bullet-height,
		var(--swiper-pagination-bullet-size, 8px)
	);
	display: inline-block;
	border-radius: 50%;
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}
.swiper-pagination-bullet:only-child {
	display: none !important;
}
.swiper-pagination-bullet-active {
	opacity: var(--swiper-pagination-bullet-opacity, 1);
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
	display: block;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	display: inline-block;
	transition: transform 0.2s, top 0.2s;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}
.swiper-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: transform 0.2s, left 0.2s;
}
.swiper-horizontal.swiper-rtl
	> .swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: transform 0.2s, right 0.2s;
}
.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, 0.25);
	position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}
.swiper-horizontal
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}
.swiper-pagination-lock {
	display: none;
}
.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, 0.1);
}
.swiper-horizontal > .swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}
.swiper-vertical > .swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}
.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	left: 0;
	top: 0;
}
.swiper-scrollbar-cursor-drag {
	cursor: move;
}
.swiper-scrollbar-lock {
	display: none;
}
.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.swiper-slide-zoomed {
	cursor: move;
}
.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	box-sizing: border-box;
	border-radius: 50%;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-top: 4px solid transparent;
}
.swiper-slide-visible .swiper-lazy-preloader {
	-webkit-animation: swiper-preloader-spin 1s linear infinite;
	animation: swiper-preloader-spin 1s linear infinite;
}
.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
	to {
		transform: rotate(1turn);
	}
}
@keyframes swiper-preloader-spin {
	to {
		transform: rotate(1turn);
	}
}
.swiper .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
	flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
	transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
.swiper-cube {
	overflow: visible;
}
.swiper-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
	transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible;
}
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.swiper-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
	content: '';
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	filter: blur(50px);
}
.swiper-flip {
	overflow: visible;
}
.swiper-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	transition-property: transform, opacity, height;
}
.swiper-cards {
	overflow: visible;
}
.swiper-cards .swiper-slide {
	transform-origin: center bottom;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
}
.carousel {
	position: relative;
	box-sizing: border-box;
}
.carousel *,
.carousel :after,
.carousel :before {
	box-sizing: inherit;
}
.carousel.is-draggable {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}
.carousel.is-dragging {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: grabbing;
}
.carousel__viewport {
	position: relative;
	overflow: hidden;
	max-width: 100%;
	max-height: 100%;
}
.carousel__track {
	display: flex;
}
.carousel__slide {
	flex: 0 0 auto;
	width: var(--carousel-slide-width, 60%);
	max-width: 100%;
	padding: 1rem;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
}
.has-dots {
	margin-bottom: calc(0.5rem + 22px);
}
.carousel__dots {
	margin: 0 auto;
	padding: 0;
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	list-style: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.carousel__dots .carousel__dot {
	margin: 0;
	padding: 0;
	display: block;
	position: relative;
	width: 22px;
	height: 22px;
	cursor: pointer;
}
.carousel__dots .carousel__dot:after {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: currentColor;
	opacity: 0.25;
	transition: opacity 0.15s ease-in-out;
}
.carousel__dots .carousel__dot.is-selected:after {
	opacity: 1;
}
.carousel__button {
	width: var(--carousel-button-width, 48px);
	height: var(--carousel-button-height, 48px);
	padding: 0;
	border: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: all;
	cursor: pointer;
	color: var(--carousel-button-color, currentColor);
	background: var(--carousel-button-bg, transparent);
	border-radius: var(--carousel-button-border-radius, 50%);
	box-shadow: var(--carousel-button-shadow, none);
	transition: opacity 0.15s ease;
}
.carousel__button.is-next,
.carousel__button.is-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.carousel__button.is-prev {
	left: 10px;
}
.carousel__button.is-next {
	right: 10px;
}
.carousel__button[disabled] {
	cursor: default;
	opacity: 0.3;
}
.carousel__button svg {
	width: var(--carousel-button-svg-width, 50%);
	height: var(--carousel-button-svg-height, 50%);
	fill: none;
	stroke: currentColor;
	stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
	stroke-linejoin: bevel;
	stroke-linecap: round;
	filter: var(--carousel-button-svg-filter, none);
	pointer-events: none;
}
html.with-fancybox {
	scroll-behavior: auto;
}
body.compensate-for-scrollbar {
	overflow: hidden !important;
	touch-action: none;
}
.fancybox__container {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	direction: ltr;
	margin: 0;
	padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0)
		env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	color: var(--fancybox-color, #fff);
	-webkit-tap-highlight-color: transparent;
	overflow: hidden;
	z-index: 1050;
	outline: none;
	transform-origin: top left;
	--carousel-button-width: 48px;
	--carousel-button-height: 48px;
	--carousel-button-svg-width: 24px;
	--carousel-button-svg-height: 24px;
	--carousel-button-svg-stroke-width: 2.5;
	--carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}
.fancybox__container *,
.fancybox__container :after,
.fancybox__container :before {
	box-sizing: inherit;
}
.fancybox__container :focus {
	outline: none;
}
body:not(.is-using-mouse) .fancybox__container :focus {
	box-shadow: 0 0 0 1px #fff,
		0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}
@media (min-width: 1024px) {
	.fancybox__container {
		--carousel-button-width: 48px;
		--carousel-button-height: 48px;
		--carousel-button-svg-width: 27px;
		--carousel-button-svg-height: 27px;
	}
}
.fancybox__backdrop {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}
.fancybox__carousel {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	height: 100%;
	z-index: 10;
}
.fancybox__carousel.has-dots {
	margin-bottom: calc(0.5rem + 22px);
}
.fancybox__viewport {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: visible;
	cursor: default;
}
.fancybox__track {
	display: flex;
	height: 100%;
}
.fancybox__slide {
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 48px 8px 8px;
	position: relative;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
	display: flex;
	flex-direction: column;
	outline: 0;
	overflow: auto;
	--carousel-button-width: 36px;
	--carousel-button-height: 36px;
	--carousel-button-svg-width: 22px;
	--carousel-button-svg-height: 22px;
}
.fancybox__slide:after,
.fancybox__slide:before {
	content: '';
	flex: 0 0 0;
	margin: auto;
}
@media (min-width: 1024px) {
	.fancybox__slide {
		padding: 64px 100px;
	}
}
.fancybox__content {
	margin: 0 env(safe-area-inset-right, 0) 0 env(safe-area-inset-left, 0);
	padding: 36px;
	color: var(--fancybox-content-color, #374151);
	background: var(--fancybox-content-bg, #fff);
	position: relative;
	align-self: center;
	display: flex;
	flex-direction: column;
	z-index: 20;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
	outline: thin dotted;
	box-shadow: none;
}
.fancybox__caption {
	align-self: center;
	max-width: 100%;
	margin: 0;
	padding: 1rem 0 0;
	line-height: 1.375;
	color: var(--fancybox-color, currentColor);
	visibility: visible;
	cursor: auto;
	flex-shrink: 0;
	overflow-wrap: anywhere;
}
.is-loading .fancybox__caption {
	visibility: hidden;
}
.fancybox__container > .carousel__dots {
	top: 100%;
	color: var(--fancybox-color, #fff);
}
.fancybox__nav .carousel__button {
	z-index: 40;
}
.fancybox__nav .carousel__button.is-next {
	right: 8px;
}
@media (min-width: 1024px) {
	.fancybox__nav .carousel__button.is-next {
		right: 40px;
	}
}
.fancybox__nav .carousel__button.is-prev {
	left: 8px;
}
@media (min-width: 1024px) {
	.fancybox__nav .carousel__button.is-prev {
		left: 40px;
	}
}
.carousel__button.is-close {
	position: absolute;
	top: 8px;
	right: 8px;
	top: calc(env(safe-area-inset-top, 0px) + 8px);
	right: calc(env(safe-area-inset-right, 0px) + 8px);
	z-index: 40;
}
@media (min-width: 1024px) {
	.carousel__button.is-close {
		right: 40px;
	}
}
.fancybox__content > .carousel__button.is-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: var(--fancybox-color, #fff);
}
.fancybox__no-click,
.fancybox__no-click button {
	pointer-events: none;
}
.fancybox__spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	color: var(--fancybox-color, currentColor);
}
.fancybox__slide .fancybox__spinner {
	cursor: pointer;
	z-index: 1053;
}
.fancybox__spinner svg {
	-webkit-animation: fancybox-rotate 2s linear infinite;
	animation: fancybox-rotate 2s linear infinite;
	transform-origin: center center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
}
.fancybox__spinner svg circle {
	fill: none;
	stroke-width: 2.75;
	stroke-miterlimit: 10;
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	-webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
	animation: fancybox-dash 1.5s ease-in-out infinite;
	stroke-linecap: round;
	stroke: currentColor;
}
@-webkit-keyframes fancybox-rotate {
	to {
		transform: rotate(1turn);
	}
}
@keyframes fancybox-rotate {
	to {
		transform: rotate(1turn);
	}
}
@-webkit-keyframes fancybox-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	to {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}
@keyframes fancybox-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	to {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124px;
	}
}
.carousel__button.is-close,
.carousel__dots,
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav {
	opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden='false']
	.carousel__button.is-close,
.fancybox__container.is-animated[aria-hidden='false'] .carousel__dots,
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__nav {
	-webkit-animation: fancybox-fadeIn 0.15s ease backwards;
	animation: fancybox-fadeIn 0.15s ease backwards;
}
.fancybox__container.is-animated.is-closing .carousel__button.is-close,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav {
	-webkit-animation: fancybox-fadeOut 0.15s ease both;
	animation: fancybox-fadeOut 0.15s ease both;
}
.fancybox-fadeIn {
	-webkit-animation: fancybox-fadeIn 0.15s ease both;
	animation: fancybox-fadeIn 0.15s ease both;
}
.fancybox-fadeOut {
	-webkit-animation: fancybox-fadeOut 0.1s ease both;
	animation: fancybox-fadeOut 0.1s ease both;
}
.fancybox-zoomInUp {
	-webkit-animation: fancybox-zoomInUp 0.2s ease both;
	animation: fancybox-zoomInUp 0.2s ease both;
}
.fancybox-zoomOutDown {
	-webkit-animation: fancybox-zoomOutDown 0.15s ease both;
	animation: fancybox-zoomOutDown 0.15s ease both;
}
.fancybox-throwOutUp {
	-webkit-animation: fancybox-throwOutUp 0.15s ease both;
	animation: fancybox-throwOutUp 0.15s ease both;
}
.fancybox-throwOutDown {
	-webkit-animation: fancybox-throwOutDown 0.15s ease both;
	animation: fancybox-throwOutDown 0.15s ease both;
}
@-webkit-keyframes fancybox-fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fancybox-fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@-webkit-keyframes fancybox-fadeOut {
	to {
		opacity: 0;
	}
}
@keyframes fancybox-fadeOut {
	to {
		opacity: 0;
	}
}
@-webkit-keyframes fancybox-zoomInUp {
	0% {
		transform: scale(0.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
	to {
		transform: scale(1) translateZ(0);
		opacity: 1;
	}
}
@keyframes fancybox-zoomInUp {
	0% {
		transform: scale(0.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
	to {
		transform: scale(1) translateZ(0);
		opacity: 1;
	}
}
@-webkit-keyframes fancybox-zoomOutDown {
	to {
		transform: scale(0.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
}
@keyframes fancybox-zoomOutDown {
	to {
		transform: scale(0.97) translate3d(0, 16px, 0);
		opacity: 0;
	}
}
@-webkit-keyframes fancybox-throwOutUp {
	to {
		transform: translate3d(0, -30%, 0);
		opacity: 0;
	}
}
@keyframes fancybox-throwOutUp {
	to {
		transform: translate3d(0, -30%, 0);
		opacity: 0;
	}
}
@-webkit-keyframes fancybox-throwOutDown {
	to {
		transform: translate3d(0, 30%, 0);
		opacity: 0;
	}
}
@keyframes fancybox-throwOutDown {
	to {
		transform: translate3d(0, 30%, 0);
		opacity: 0;
	}
}
.fancybox__carousel .carousel__slide {
	scrollbar-width: thin;
	scrollbar-color: #ccc hsla(0, 0%, 100%, 0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
	background-color: hsla(0, 0%, 100%, 0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 2px;
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}
.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
	cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
	cursor: zoom-in;
}
.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
	cursor: zoom-out;
}
.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: grabbing;
}
.fancybox__image {
	transform-origin: 0 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: none;
}
.has-image .fancybox__content {
	padding: 0;
	background: transparent;
	min-height: 1px;
}
.is-closing .has-image .fancybox__content {
	overflow: visible;
}
.has-image[data-image-fit='contain'] {
	overflow: visible;
	touch-action: none;
}
.has-image[data-image-fit='contain'] .fancybox__content {
	flex-direction: row;
	flex-wrap: wrap;
}
.has-image[data-image-fit='contain'] .fancybox__image {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.has-image[data-image-fit='contain-w'] {
	overflow-x: hidden;
	overflow-y: auto;
}
.has-image[data-image-fit='contain-w'] .fancybox__content {
	min-height: auto;
}
.has-image[data-image-fit='contain-w'] .fancybox__image {
	max-width: 100%;
	height: auto;
}
.has-image[data-image-fit='cover'] {
	overflow: visible;
	touch-action: none;
}
.has-image[data-image-fit='cover'] .fancybox__content {
	width: 100%;
	height: 100%;
}
.has-image[data-image-fit='cover'] .fancybox__image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
	max-width: 100%;
	flex-shrink: 1;
	min-height: 1px;
	overflow: visible;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
	width: 100%;
	height: 80%;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
	width: 960px;
	height: 540px;
	max-width: 100%;
	max-height: 100%;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
	padding: 0;
	background: rgba(24, 24, 27, 0.9);
	color: #fff;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
	background: #e5e3df;
}
.fancybox__html5video,
.fancybox__iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: transparent;
}
.fancybox-placeholder {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}
.fancybox__thumbs {
	flex: 0 0 auto;
	position: relative;
	padding: 0 3px;
	opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__thumbs {
	-webkit-animation: fancybox-fadeIn 0.15s ease-in backwards;
	animation: fancybox-fadeIn 0.15s ease-in backwards;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
	opacity: 0;
}
.fancybox__thumbs .carousel__slide {
	flex: 0 0 auto;
	width: var(--fancybox-thumbs-width, 96px);
	margin: 0;
	padding: 8px 3px;
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	cursor: pointer;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 5px solid var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
	opacity: 0;
	transition: opacity 0.15s ease;
	border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb:after {
	opacity: 0.92;
}
.fancybox__thumbs .carousel__slide > * {
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.fancybox__thumb {
	position: relative;
	width: 100%;
	padding-top: calc(100% / var(--fancybox-thumbs-ratio, 1.5));
	background-size: cover;
	background-position: 50%;
	background-color: hsla(0, 0%, 100%, 0.1);
	background-repeat: no-repeat;
	border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__toolbar {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 20;
	background: linear-gradient(
		0deg,
		transparent 0,
		rgba(0, 0, 0, 0.006) 8.1%,
		rgba(0, 0, 0, 0.021) 15.5%,
		rgba(0, 0, 0, 0.046) 22.5%,
		rgba(0, 0, 0, 0.077) 29%,
		rgba(0, 0, 0, 0.114) 35.3%,
		rgba(0, 0, 0, 0.155) 41.2%,
		rgba(0, 0, 0, 0.198) 47.1%,
		rgba(0, 0, 0, 0.242) 52.9%,
		rgba(0, 0, 0, 0.285) 58.8%,
		rgba(0, 0, 0, 0.326) 64.7%,
		rgba(0, 0, 0, 0.363) 71%,
		rgba(0, 0, 0, 0.394) 77.5%,
		rgba(0, 0, 0, 0.419) 84.5%,
		rgba(0, 0, 0, 0.434) 91.9%,
		rgba(0, 0, 0, 0.44)
	);
	padding: 0;
	touch-action: none;
	display: flex;
	justify-content: space-between;
	--carousel-button-svg-width: 20px;
	--carousel-button-svg-height: 20px;
	opacity: var(--fancybox-opacity, 1);
	text-shadow: var(
		--fancybox-toolbar-text-shadow,
		1px 1px 1px rgba(0, 0, 0, 0.4)
	);
}
@media (min-width: 1024px) {
	.fancybox__toolbar {
		padding: 8px;
	}
}
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__toolbar {
	-webkit-animation: fancybox-fadeIn 0.15s ease-in backwards;
	animation: fancybox-fadeIn 0.15s ease-in backwards;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
	opacity: 0;
}
.fancybox__toolbar__items {
	display: flex;
}
.fancybox__toolbar__items--left {
	margin-right: auto;
}
.fancybox__toolbar__items--center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.fancybox__toolbar__items--right {
	margin-left: auto;
}
@media (max-width: 640px) {
    .logo-block img{max-width: 70px;}
	.fancybox__toolbar__items--center:not(:last-child) {
		display: none;
	}
}
.fancybox__counter {
	min-width: 72px;
	padding: 0 10px;
	line-height: var(--carousel-button-height, 48px);
	text-align: center;
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: subpixel-antialiased;
}
.fancybox__progress {
	background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	z-index: 30;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.fancybox__container:-webkit-full-screen::backdrop {
	opacity: 0;
}
.fancybox__container:-ms-fullscreen::backdrop {
	opacity: 0;
}
.fancybox__container:fullscreen::-webkit-backdrop {
	opacity: 0;
}
.fancybox__container:fullscreen::backdrop {
	opacity: 0;
}
.fancybox__container:-webkit-full-screen
	.fancybox__button--fullscreen
	g:first-child {
	display: none;
}
.fancybox__container:-ms-fullscreen
	.fancybox__button--fullscreen
	g:first-child {
	display: none;
}
.fancybox__button--fullscreen g:nth-child(2),
.fancybox__container:fullscreen .fancybox__button--fullscreen g:first-child {
	display: none;
}
.fancybox__container:-webkit-full-screen
	.fancybox__button--fullscreen
	g:nth-child(2) {
	display: block;
}
.fancybox__container:-ms-fullscreen
	.fancybox__button--fullscreen
	g:nth-child(2) {
	display: block;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
	display: block;
}
.fancybox__button--slideshow g:nth-child(2),
.fancybox__container.has-slideshow .fancybox__button--slideshow g:first-child {
	display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
	display: block;
}
*,
:after,
:before {
	box-sizing: border-box;
}
ol[class],
ul[class] {
	padding: 0;
}
blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
	margin: 0;
}
button {
	outline: none;
	border: none;
	cursor: pointer;
}
body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}
body.open {
	overflow: hidden;
}
ol[class],
ul[class] {
	list-style: none;
}
a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}
a {
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
/* article > * + * {
	margin-top: 1em;
} */
button,
input,
select,
textarea {
	font: inherit;
}
body {
	font-family: TT Norms Pro;
	overflow-x: hidden;
}
.container {
	max-width: 1340px;
	width: 100%;
	margin: 0 auto;
}
@media screen and (max-width: 1400px) {
	.container {
		max-width: calc(100% - 30px);
	}
}
.logo-block {
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo-block .logo-line {
	background: #d9ad95;
	height: 40px;
	width: 2px;
	margin-left: 30px;
	margin-right: 30px;
}
.logo-block .logo-sign {
	/* border: 1px solid #202020; */
	box-sizing: border-box;
	border-radius: 100px;
	padding: 7px 13px;
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;

	background: linear-gradient(180deg, #fbc975 0%, #9d722d 100%);

	height: auto;
	/* display: flex;
align-items: center;
justify-content: center; */
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	color: #fff;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.logo-block .logo-sign:after {
	content: '';
	width: 41px;
	height: 130px;
	background: #fff;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0, #ffffff 100%);
	left: -40px;
	top: -10px;
	z-index: 1;
	transform: rotate(20deg);
	position: absolute;
	animation: movingFlare 3s ease-in 3s infinite;
}
.header-top {
	position: relative;
	z-index: 2;
	padding-top: 26px;
	padding-bottom: 30px;
}
.header-top .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:24px;
}
.header-top .container .mail-block{
    flex: 1;
}
.header-top .mail-block {
	display: flex;
	align-items: center;
	border-radius: 100px;
	padding: 9px 16px 9px 58px;
	position: relative;
}
.header-top .mail-block .mail-block_img {
	background-color: #202020;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 120%;
	margin-right: 10px;
	position: absolute;
	left: 0;
	top: calc(50% - 24px);
}
.header-top .mail-block a {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #202020;
	transition: 0.3s ease;
}
.header-top .mail-block a:hover {
	color: #ad6952;
}
.header-top .social-block {
	display: flex;
}
.header-top .social-block a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 120%;
	margin-right: 10px;
	background: linear-gradient(180deg, #fbc975 0%, #9d722d 100%);
}
.header-top .social-block a svg {
	fill: #fff;
}
.header-top .call-block {
	display: flex;
	flex-direction: column;
	padding-top: 33px;
}
.header-top .call-block .call-block-row {
	display: flex;
	align-items: center;
}
.header-top .call-block .call-block-row .img_item {
	background-color: #202020;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 120%;
	margin-right: 18px;
}
.header-top .call-block .call-block-row a {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	text-align: right;
	color: #2c2c2c;
	transition: 0.3s ease;
}
.header-top .call-block .call-block-row a:hover {
	color: #ad6952;
}
.header-top .call-block .callback-call {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 32px;
	display: flex;
	align-self: flex-end;
	color: #202020;
	transition: 0.3s ease;
	border-bottom: 1px solid #202020;
}
.header-top .call-block .callback-call:hover {
	color: #ad6952;
	border-bottom: 1px solid #ad6952;
}
menu {
	padding-left: 0;
	position: relative;
    z-index: 10;
    margin:0;
}
menu.stiky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 3;
	    margin: 0;
}
menu.stiky .container {
	background-color: #333333;
	position: relative;
	z-index: 99;
}
menu.stiky .container::before,
menu.stiky .container::after {
	content: none;
}
menu.stiky .container .menu-item {
	color: #fff;
	transition: all 0.3s ease;
}

menu.stiky  .menu-parent-item svg{

	fill: #fff;
	
}
menu.stiky  .menu-parent-item:hover svg{
	
	fill: #e56f91;
	
}

menu.stiky .container .menu-item:hover {
	color: #e56f91;
}
menu .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 48px;
	position: relative;
}
menu .container::before {
	content: '';
	position: absolute;
	height: 1px;
	background-image: linear-gradient(
		45deg,
		rgb(255, 255, 255),
		rgb(43, 43, 43) 44%,
		rgb(201, 144, 160) 100%
	);
	top: 0;
	left: 0;
	width: 100%;
}
menu .container::after {
	content: '';
	position: absolute;
	height: 1px;
	background-image: linear-gradient(
		45deg,
		rgb(255, 255, 255),
		rgb(43, 43, 43) 44%,
		rgb(201, 144, 160) 100%
	);
	bottom: 0;
	left: 0;
	width: 100%;
}
menu .menu-parent-item.show svg{
	transform: rotate(270deg);
}
menu  .menu-parent-item svg{
	transform: rotate(90deg);
	fill: #2c2c2c;
	margin-left: 20px;
	transition: 0.3s ease;
}
menu  .menu-parent-item:hover svg{
	
	fill: #ad6952;
	
}
menu  .menu-parent-item .menu-arrow{
cursor: pointer;
}
menu  .menu-parent-item{
display: flex; 
align-items: center;

}
menu .menu-parent-item .submenu-block{
/* display: none; */
display: flex;
z-index: -5;
opacity: 0;
flex-direction: column;
padding: 30px;
transition: 0.3s ease;
position: absolute;
top: 0;
right: -200%;
}
menu .menu-parent-item.show .submenu-block{
z-index: 2;
position: absolute;
top: 185%;
background-color: #fff;
right: 0;
opacity: 1;
transition: 0.3s ease;

}

menu .menu-parent-item  .submenu-block::before {
	content: '';
	position: absolute;
	height: 1px;
	background-image: linear-gradient(
		45deg,
		rgb(255, 255, 255),
		rgb(43, 43, 43) 44%,
		rgb(201, 144, 160) 100%
	);
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}



menu .menu-parent-item  .submenu-block::after {
	content: '';
	position: absolute;
	height: 1px;
	background-image: linear-gradient(
		45deg,
		rgb(255, 255, 255),
		rgb(43, 43, 43) 44%,
		rgb(201, 144, 160) 100%
	);
	bottom: 0;
	left: 0;
	width: 100%;
}
menu .submenu-item {
    font-size: 14px;
    line-height: 18px;
	color: #2c2c2c;
	transition: 0.3s ease;
	margin-bottom: 10px;
}
menu .submenu-item:hover {
	color: #ad6952;
	
}

menu .menu-parent-item.show {
	position: relative;
	flex-wrap: wrap;
}

menu .menu-item {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.1;
	text-transform: uppercase;
	color: #2c2c2c;
	transition: 0.3s ease;
}
menu .menu-item.active {
	font-weight: 700;
}
menu .menu-item:hover {
	color: #ad6952;
}

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

menu .menu-parent-item.show .submenu-block{
	width: 100%;
	padding: 30px 0;
	position: static;
	position: relative;
}

}
.main-section {
	background: url('images/phon-new.jpg'),
		linear-gradient(270deg, #f5628d -0.44%, rgba(255, 255, 255, 0) 50%);
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 0;
	position: relative;
	overflow-x: hidden;
	overflow-y: visible;
	z-index: 11;
}
.main-section::before {
	content: '';
	position: absolute;
	background: url('images/bg-dec.svg');
	width: 70%;
	height: 100%;
	right: 0;
	z-index: 1;
}
.active-btn {
	background: linear-gradient(180deg, #fbc975 0%, #9d722d 100%);
	box-shadow: 0px 4px 0px #8e692f;
	border-radius: 200px;
	width: 342px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 130%;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	color: #fff;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.active-btn:after {
	content: '';
	width: 41px;
	height: 130px;
	background: #fff;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0, #ffffff 100%);
	left: -40px;
	top: -10px;
	z-index: 1;
	transform: rotate(20deg);
	position: absolute;
	animation: movingFlare 3s ease-in 3s infinite;
}
.active-btn:hover {
	background: linear-gradient(180deg, #ffd896 0%, #bd8b3a 100%);
	box-shadow: 0px 4px 0px #8e692f;
}
.active-btn:focus {
	background: linear-gradient(180deg, #ffd896 0%, #bd8b3a 100%);
	box-shadow: none;
}
@keyframes movingFlare {
	0% {
		left: -30px;
		margin-left: 0px;
	}
	30% {
		left: 110%;
		margin-left: 80px;
	}
	100% {
		left: 110%;
		margin-left: 80px;
	}
}
.swiper_main .swiper-slide {
	padding-bottom: 0;
}
.swiper_main .swiper-slide .container {
	display: flex;
	align-items: center;
	position: relative;
	min-height: 660px;
}
.swiper_main .swiper-slide .slide-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 900;
	font-size: 42px;
	line-height: 129%;
	max-width: 70%;
	color: #2c2c2c;
	margin-bottom: 40px;
}
.swiper_main .swiper-slide .slide-subtitle {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	color: #2c2c2c;
	display: block;
	/* flex-direction: column;
	align-items: flex-start; */
	margin-bottom: 70px;
}
.swiper_main .swiper-slide .slide-subtitle .pointer {
	width: 10px;
	height: 10px;
	border-radius: 120%;
	background: #ff98a9;
	margin-right: 14px;
}
.swiper_main .swiper-slide .slider-img {
    object-fit: cover;
	position: absolute;
	top: 0;
	right: -30px;
	bottom: 0;
	height: 100%;
	z-index: -1;
}
.swiper_main .swiper-pagination-bullet {
	background: #d9ad95;
	border: 3px solid #fff;
	box-sizing: border-box;
	width: 15px;
	height: 15px;
	box-shadow: 0 4px 4px rgba(176, 136, 114, 0.18);
	opacity: 1;
}
.swiper_main .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #ad6952;
}
#heart-left {
	position: absolute;
	left: -145px;
	top: -200px;
}
#heart-right {
	position: absolute;
	right: -50px;
	top: 100px;
	z-index: 1;
	width: 400px;
}
#heart-left1 {
	position: absolute;
	left: 0px;
	top: 50px;
}
#heart-right1 {
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 1;
}
@media screen and (max-width: 1650px) {
	#heart-left,
	#heart-right {
		max-width: 300px;
	}
}
@media screen and (max-width: 1250px) {
    #img-none,
	#heart-left,
	#heart-right,
	#heart-left1,
	#heart-right1 {
		display: none;
	}
}

.burger {
	width: 35px;
	height: 30px;
	margin: 10px;
	position: relative;
	top: 0;
	right: 0;
	cursor: pointer;
	display: inline-block;
	display: none;
	z-index: 4;
}
.burger span {
	background: linear-gradient(180deg, #d9ad95, #ad6952);
	position: absolute;
	border-radius: 2px;
	transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
	width: 100%;
	height: 4px;
	transition-duration: 0.5s;
}
.burger span:first-child {
	top: 0;
	left: 0;
}
.burger span:nth-child(2) {
	top: 13px;
	left: 0;
	opacity: 1;
}
.burger span:nth-child(3) {
	bottom: 0;
	left: 0;
}
.burger:not(.open):hover span:first-child {
	transform: rotate(-3deg) scaleY(1.1);
}
.burger:not(.open):hover span:nth-child(2) {
	transform: rotate(3deg) scaleY(1.1);
}
.burger:not(.open):hover span:nth-child(3) {
	transform: rotate(-4deg) scaleY(1.1);
}
.burger.open span:first-child {
	transform: rotate(45deg);
	top: 13px;
}
.burger.open span:nth-child(2) {
	opacity: 0;
}
.burger.open span:nth-child(3) {
	transform: rotate(-45deg);
	top: 13px;
}
.hidden-header {
	display: none;
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
}
.menu-logo_hidden {
	display: none;
}
.tac{display:inline-block;text-align:center;}
.red-text{display:inline-block;text-align:center;color:#B04668;margin-top:24px;}
.slide-items-small{margin-bottom:16px;}
.slide-items-small .slide-items-small__item:not(:first-child){margin-top: 16px;}
.slide-items-small .slide-items-small__item:first-child{margin-top: 40px;}
.slide-items-small__item{display:flex;align-items: center;gap:16px;}
.svg-icon-bcr{  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #fff;
  box-shadow: 0px 8px 40px 0px #ffcfd729;
  border-radius: 50%;}
.slide-items-small__text{
    font-size: 32px;
    font-weight: 500;
    line-height: 1.28;
}
.left-part{width: 100%;padding-left:100px;}
.--small{transform: scale(0.76);}
@media screen and (max-width: 1200px) {
    .slide-title{line-height: 1;}
    .left-part{padding-left:0px;}
	.menu-logo_hidden {
		display: block;
		max-width: 100px;
		padding-left: 30px;
		margin-bottom: 15px;
		padding-top: 15px;
	}
	.hidden-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.burger {
		top: 28px;
		right: 15px;
	}
	.hidden-header{
	   padding-top: 174.5px;
	}
	.hidden-header .logo-block{
	    background-color: #fff;
	    top: 0;
	    left: 0;
	    width: 100%;
	    padding: 15px 65px 15px 15px;
	    z-index: 2;
	}
	.hidden-header .logo-block,
	.burger
	 {
		display: flex;
		position: fixed;
		justify-content: flex-start;
	}

	
	.header-top .mail-block {
		padding-left: 0;
		margin-bottom: 15px;
	}
	.header-top .mail-block .mail-block_img {
		position: static;
	}
	.header-top .call-block .call-block-row .img_item,
	.header-top .mail-block .mail-block_img {
		width: 30px;
		height: 30px;
	}
	.header-top .call-block .call-block-row .img_item svg,
	.header-top .mail-block .mail-block_img svg {
		max-width: 45%;
	}
	.header-top .call-block .call-block-row {
		margin-bottom: 15px;
	}
	.header-top .call-block .callback-call {
		align-self: flex-start;
	}
	.swiper_main .swiper-slide .container {
		justify-content: flex-end;
	}
	.swiper_main .swiper-slide .slider-img {
		position: static;
		height: 320px;
	} 
	.--small{
        transform: scale(1);
    }
	.swiper_main .swiper-slide .container {
		flex-direction: column-reverse;
	}
	.swiper_main .swiper-slide .slide-title {
		font-size: 50px;
		line-height: 62px;
		max-width: none;
		text-align: center;
	}
	.swiper_main .swiper-slide .slide-subtitle {
		font-size: 20px;
		line-height: 27px;
		margin-bottom: 30px;
	}
	.swiper_main .swiper-slide .left-part {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.swiper-horizontal > .swiper-pagination-bullets,
	.swiper-pagination-bullets.swiper-pagination-horizontal,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		bottom: 10px;
	}
	.swiper-android .swiper-slide,
	.swiper-wrapper {
		padding-bottom: 30px;
	}
}
@media screen and (max-width: 960px) {
    /*.hidden-header{
	    padding-top: 130px;
	}*/
	.swiper_main .swiper-slide .container {
		min-height: auto;
	}
	.swiper_main .swiper-slide .slider-img {
		height: 180px;
	}
	.swiper_main .swiper-slide .slide-title {
		font-size: 24px;
		line-height: 1;
		margin-bottom: 14px;
	}
	.fts16 span{font-size: 18px !important;}
}
@media screen and (max-width: 500px) {
	.logo-block .logo-line {
		display: none;
	}
	.hidden-header {
		padding-right: 80px;
	}
	.logo-block .logo {
		width: 100px;
	}

	.logo-block .logo-sign {
	    width:100%;
		margin-left: 10px;
		padding: 7px 4px;
	}
	.footer-menu 	.logo-block .logo-line {
		display: block;
	}
	.footer-menu .logo-block .logo-sign {
		display: block;
		
	}
    .swiper_main .swiper-slide .slide-subtitle{
        text-align: center;
    }
}

@media screen and (max-width: 450px) {
	.hidden-header .logo-line {
		display: none;
	}
}
.about {
	padding: 40px 0 0 0;
	background-color: #f0eced;
	position: relative;
	background-image: url('images/bg-our.svg');
	background-repeat: no-repeat;
	background-position: right top;
}
.about::before {
	content: '';
	position: absolute;
	background-image: url('images/bg-our1.png');
	background-repeat: no-repeat;
	left: 0;
	top: 0%;
	height: 100%;
	width: 70%;
}
.about .container {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.about .container .about-img {
    max-height: 600px;
	margin-right: 70px;
}
.about .container .about-info_title {
	font-weight: 700;
	font-size: 48px;
	margin-bottom: 10px;
	color: #b04668;
	font-weight: 800;
}
.about .container .about-info_title,
.about .container p {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 800;
	line-height: 129%;
}
.about .about-info .active-btn {
	margin-top: 20px;
	padding: 5px;
}
.about .container p {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px;
	color: #202020;
}
.about .container p strong {
	font-weight: 700;
	font-size: 48px;
	line-height: 129%;
}
.about .about_bg {
	position: absolute;
	right: 0;
	top: -10%;
	z-index: -1;
}
.about #about-heart {
	position: absolute;
	left: -191px;
	z-index: 1;
	bottom: -240px;
}

/* ul {
    padding-left: 0;
}
ul li {
    font-family: TT Norms Pro;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    display: block;
    color: #2c2c2c;
    margin-bottom: 18px;
}
ul li:before {
    content: '';
    display: inline-block;
    background-color: #e56f91;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    margin-right: 15px;
    flex: none;
} */
.btn-border{
    border: 1px solid #B04668;
    color: #B04668;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 200px;
    padding: 18px 24px;
}
.svg-icon-bcr{
    flex-shrink:0;
}
@media screen and (max-width: 1200px) {
   .btn-border{
    font-size: 16px;
    line-height: 16px;
    border-radius: 100px;
    padding: 24px 29px;
} 
.red-text{margin-top:16px;}
.slide-items-small{margin-bottom:8px;}
.slide-items-small .slide-items-small__item:not(:first-child){margin-top: 8px;}
.slide-items-small .slide-items-small__item:first-child{margin-top: 0;}
.svg-icon-bcr{width: 48px;height: 48px;}
.slide-items-small__text{font-size: 20px;}

	.about #about-heart {
		display: none;
	}
	.about .container {
		flex-direction: column;
	}
	.about .container .about-img {
		margin-right: 0;
		align-self: center;
		margin-bottom: 15px;
	}
	.about .container .about-info_title {
		align-items: center;
		text-align: center;
		font-size: 31px;
		line-height: 38px;
	}
	.about .container p strong {
		font-size: 31px;
		text-align: center;
	}
	.about .container p {
		text-align: center;
	}
	.about {
		padding: 50px 0 50px;
	}
	.about .about-info .active-btn {
		margin-left: auto;
		margin-right: auto;
	}
	.active-btn {
		width: 275px;
		height: 60px;
		font-size: 16px;
	}
}
.review {
	padding-top: 170px;
	padding-bottom: 50px;
	position: relative;
	background-image: linear-gradient(0deg, #f495b2 0%, #ffe1ea 100%);
}
.review .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.review .container .review-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 58px;
	text-align: center;
	color: #b04668;
	margin-bottom: 32px;
}
.review-title span {
	color: #282828;
}
.review .container .review-block {
	display: flex;
	flex-wrap: wrap;
	margin-right: -30px;
	margin-left: -30px;
	margin-bottom: 60px;
}
.review .container .review-block .review-block_item {
	margin-right: 30px;
	margin-left: 30px;
	display: flex;
	flex-direction: column;
	width: calc(33.333% - 60px);
	margin-bottom: 60px;
}
.review .container .review-block .review-block_item .item-text {
	padding-top: 30px;
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #747474;
}
.review .container .review-block .review-block_item .item-row {
	display: flex;
	align-items: center;
}
.review .container .review-block .review-block_item .item-avatar {
	margin-right: 30px;
	position: relative;
}
.review .container .review-block .review-block_item .item-avatar img {
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	border-radius: 120%;
}
.review .container .review-block .review-block_item .item-avatar:before {
	content: url(images/coma.png);
	bottom: 0;
	left: 0;
	position: absolute;
}
.review .container .review-block .review-block_item .name {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: #2c2c2c;
	margin-bottom: 4px;
}
.review .container .review-block .review-block_item .date {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 21px;
	color: #ad6952;
}
.review .container .more {
	margin-top: 10px;
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	align-self: flex-start;
	color: #fb5b74;
	border-bottom: 1px dashed #fb5b74;
	padding-bottom: 2px;
	transition: 0.3s ease;
}
.review .container .more:hover {
	color: #ad6952;
	border-bottom: 1px dashed #ad6952;
}
.review #review-heart {
	position: absolute;
	right: 190px;
	bottom: -150px;
}
@media screen and (max-width: 1400px) {
	.review .container .review-block {
		margin-left: -15px;
		margin-right: -15px;
	}
}
@media screen and (max-width: 1200px) {
	.review {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	.review .container .review-block {
		flex-wrap: wrap;
		justify-content: center;
	}
	.review .container .review-block .review-block_item {
		width: calc(50% - 60px);
		margin-bottom: 30px;
	}
	.review #review-heart {
		display: none;
	}
	.review .container .review-block .review-block_item .item-row {
		flex-direction: column;
	}
	.review .container .review-block .review-block_item .item-row .item-avatar {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.review .container .review-block .review-block_item .item-text {
		text-align: center;
	}
	.review .container .more {
		align-self: center;
	}
}
@media screen and (max-width: 960px) {
	.review {
		padding-bottom: 45px;
	}
	.review .container .review-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
	.review .container .review-block {
		margin-right: 0;
		margin-left: 0;
		margin-bottom: 15px;
		justify-content: center;
	}
	.review .container .review-block .review-block_item {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		margin-bottom: 30px;
	}
	.review .container .review-block .review-block_item .item-row {
		justify-content: center;
	}
}
@media screen and (max-width: 560px) {
	.review .container .review-block .review-block_item .item-text {
		text-align: center;
	}
}
.sevices {
	padding-top: 70px;
	background-image: url(images/bbb.png);
	background-position: left top;
	background-repeat: no-repeat;
	padding-bottom: 120px;
	background-color: #f0eced;
}
.sevices .services-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 1;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 24px;
	max-width: 1185px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.sevices .services-title span {
	color: #b04668;
}
.sevices .services-swiper {
	padding: 15px 0 0;
}
.sevices .services-swiper .swiper-slide {
	background: #2b2b2b;
	height: auto;
}
.sevices .services-swiper .swiper-slide .slide-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.sevices .services-swiper .swiper-slide .slide-wrapper .top-info {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
}
.sevices .services-swiper .swiper-slide .slide-wrapper .top-info img {
	width: 100%;
}
.sevices .services-swiper .swiper-slide .slide-wrapper .top-info .slide-name {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 800;
	font-size: 18px;
	line-height: 1.1;
	text-align: center;
	color: #fff;
	margin-bottom: 8px;
}
.sevices .services-swiper .swiper-slide .slide-wrapper .slide-description {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.1;
	text-align: center;
	color: #747474;
	max-width: 92%;
	margin-bottom: 20px;
}
.sevices .active-btn{
    height: 48px;
}
.services-text_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 60px;
	background-image: url('images/bg-text.png');
	background-repeat: no-repeat;
	background-size: cover;
	padding: 29px 48px;
	flex-direction: row;
}

.active-btn-servise {
	font-size: 18px;
	width: 194px;
	height: 52px;
	padding: 3px 7px;
}
.services-text-col {
	display: flex;
	flex-direction: column;
	border-left: 1px solid #e56f91;
	padding: 0 0 0 30px;
}
.services-text {
	font-family: 'TT Norms Pro';
	font-style: normal;
	font-weight: 800;
	font-size: 18px;
	line-height: 144%;
	color: #e56f91;
}
.services-text-color {
	color: #fff;
}

.top-img {
	position: relative;
	background-color: #363636;
	padding: 0px 15px 0;
	margin-bottom: 8px;
	height: 220px;
}
.top-img img {
	position: relative;
	top: -10px;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.sevices .services-swiper .swiper-slide .slide-wrapper .bottom-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 24px;
}
.sevices .services-swiper .swiper-slide .slide-wrapper .slide-price {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 800;
	font-size: 24px;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: #e56f91;
}
.button-prev {
	position: absolute;
	left: 0;

	z-index: 2;
	cursor: pointer;
}
.button-prev.swiper-button-disabled {
	opacity: 0.3;
}
.button-next,
.button-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 6px;
	background: linear-gradient(180deg, #fbc975 0%, #c09248 100%);
	box-shadow: 0px 3px 0px #b18847;
	border-radius: 50%;
	top: calc(50% - 18px);
}
@media (min-width: 590px) {
	.button-next,
	.button-prev {
		width: 60px;
		height: 60px;
	}
}
.button-next {
	cursor: pointer;
	position: absolute;
	right: 0;
	z-index: 2;
}
.button-next.swiper-button-disabled {
	opacity: 0.3;
}
@media screen and (max-width: 1024px) {
	.services-text_wrap {
		flex-direction: column;
		padding: 20px;
		margin-top: 20px;
	}
	.services-text-col {
		margin-bottom: 15px;
		border: none;
		padding: 0;
	}
	.services-text {
		font-size: 16px;
	}
	.services-text-color {
		margin-top: 10px;
	}
}
@media screen and (max-width: 960px) {
	.sevices {
		padding-bottom: 45px;
	}
	.sevices .services-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
	.sevices .services-swiper .swiper-slide .slide-wrapper .top-info .slide-name {
		font-size: 18px;
		line-height: 1.1;
	}
	.sevices .services-swiper .swiper-slide .slide-wrapper .slide-description,
	.sevices .services-swiper .swiper-slide .slide-wrapper .top-info img {
		margin-bottom: 15px;
	}
	.sevices .active-btn {
		width: 100%;
	}
	.sevices .active-btn:after {
		display: none;
	}
	.sevices .services-swiper .swiper-slide .slide-wrapper .slide-price {
		font-size: 24px;
		line-height: 1.1;
	}
}
@media screen and (max-width: 410px) {
	.sevices .services-swiper {
		padding: 15px;
	}
	/* .sevices .services-swiper .swiper-wrapper {
		padding: 10px 0 0;
	} */
}
.our-team {
	background-color: #2b2b2b;
	padding: 0 0 90px;
}
.our-team .container {
	padding-top: 100px;
	position: relative;
}
.our-team .container #team-leaf {
	position: absolute;
	top: -60px;
	left: 0;
}
.our-team .team-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 800;
	font-size: 48px;
	line-height: 58px;
	text-align: center;
	color: #ffffff;
	margin-bottom: 80px;
	position: relative;
	z-index: 1;
}
.our-team .active-btn {
	margin: 60px auto 0;
}
.our-team .team-swiper {
	padding: 90px 30px 0;
}
.our-team .team-swiper .swiper-slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: linear-gradient(180deg, #4b3239 0%, #ac5670 100%);
	height: auto;
}
.our-img_wrap {
	position: relative;
	top: -90px;
}
.our-img {
	width: 198px;
	height: 198px;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
}
.our-team .team-swiper .slide-avatar {
	width: 100%;
	display: block;
	height: 100%;
}
.our-team .team-swiper .slide-name {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: -15%;
	left: 50%;
	background: #2b2b2b;
	border-radius: 100px;
	transform: translateX(-50%);
	padding: 9px 19px;
	min-width: 248px;
	height: 60px;
}
.our-text {
	font-weight: 800;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	text-align: center;
	text-transform: uppercase;
	color: #efa8bc;
	font-family: TT Norms Pro;
	font-style: normal;
}
.our-team .team-swiper ul {
	padding: 15px;
	margin: 0;
}
.our-team .team-swiper ul li {
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
	margin-bottom: 12px;
}
.our-team .team-swiper strong {
	margin-right: 5px;
}
@media screen and (max-width: 1200px) {
	#team-leaf {
		display: none;
	}
}
@media screen and (max-width: 960px) {
	.our-team .team-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
	.our-team .container {
		padding-top: 45px;
	}
}
@media screen and (max-width: 560px) {
	.our-team .team-swiper ul,
	.our-team .team-swiper ul li {
		width: 100%;
	}
}
@media screen and (max-width: 410px) {
	.our-team .team-swiper {
		padding: 90px 20px 0;
	}
}
.gallery {
	overflow: hidden;
	background-color: #2b2b2b;
}
.gallery .gallery-title {
	position: relative;
	z-index: 1;
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 800;
	font-size: 48px;
	line-height: 58px;
	text-align: center;
	color: #ffffff;
	margin-bottom: 80px;
}
.gallery .gallery-block {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
.gallery .gallery-item {
	width: 16.666%;
	height: 260px;
	position: relative;
	display: block;
	transition: 0.3s ease;
}
.gallery .gallery-item img {
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
.gallery .gallery-item:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fb5b74;
	opacity: 0;
	transition: 0.3s ease;
}
.gallery .gallery-item:after {
	content: url(images/search.png);
	position: absolute;
	left: calc(50% - 18px);
	top: calc(50% - 21px);
	transition: 0.3s ease;
	opacity: 0;
}
.gallery .gallery-item:hover {
	transform: scale(1.1);
	z-index: 2;
}
.gallery .gallery-item:hover:before {
	opacity: 0.3;
}
.gallery .gallery-item:hover:after {
	opacity: 1;
}
@media screen and (max-width: 960px) {
	.gallery {
		padding-top: 45px;
	}
	.gallery .gallery-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
}
.last-news {
	background-image: url('images/bg-xs.png');
	background-repeat: no-repeat;
	background-position: left;
	background-color: #f0eced;
	background-position: -24%;
	padding: 60px 0 60px;
}
.last-news .container {
	position: relative;
}
.news-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-top: auto;
}
.news-wrap span {
	font-family: 'TT Norms Pro';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	text-align: right;
	text-transform: uppercase;

	color: #a7a7a7;
}
.last-news #news-leaf {
	position: absolute;
	top: 70px;
	right: -50px;
}
.last-news .news-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 58px;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 24px;
}
.last-news .news-block {
	margin-right: -15px;
	margin-left: -15px;
	display: flex;
	flex-wrap: wrap;
}
.last-news .news-item {
	width: calc(25% - 30px);
	margin-right: 15px;
	margin-left: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.news-img img {
	object-fit: cover;
	object-position: center;
}
.news-img {
	display: flex;
	height: 260px;
	margin-bottom: 16px;
	width: 100%;
}
.last-news img {
	width: 100%;
	display: block;
	height: 100%;
}
.last-news .item-title {
    text-align:center;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #2c2c2c;
	margin: 0 auto 10px auto;
}
.last-news .item-description,
.last-news .item-title {
	font-family: TT Norms Pro;
	font-style: normal;
	align-self: flex-start;
}
.last-news .item-description {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.26;
	color: #747474;
}
.last-news .more {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	align-self: flex-start;
	color: #fb5b74;
	border-bottom: 1px dashed #fb5b74;
	padding-bottom: 2px;
	transition: 0.3s ease;
}
.last-news .more:hover {
	color: #ad6952;
	border-bottom: 1px dashed #ad6952;
}
@media screen and (max-width: 1450px) {
	.last-news #news-leaf {
		top: 0;
		right: 15px;
	}
}
@media screen and (max-width: 1200px) {
	.last-news #news-leaf {
		display: none;
	}
	.last-news .news-item {
		width: calc(50% - 30px);
		margin-bottom: 30px;
	}
	.last-news .news-item .item-description,
	.last-news .news-item .item-title {
		text-align: center;
	}
	.last-news .news-item .more {
		align-self: center;
	}
	.center-text-btn, .center-text-btn .red-text{
	    text-align: center !important;
	}
	.center-text-btn .active-btn{
	    margin: 0 auto;
	}
	
}
@media screen and (max-width: 960px) {
	.last-news {
		padding-top: 60px;
	}
	.last-news .news-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
	.news-img {
		height: 260px;
	}
}
@media screen and (max-width: 690px) {
	.last-news .news-block,
	.last-news .news-item {
		margin-right: 0;
		margin-left: 0;
	}
	.last-news .news-item {
		width: 100%;
		margin-bottom: 30px;
	}
	.last-news .news-item .item-description,
	.last-news .news-item .item-title {
		text-align: center;
	}
	.last-news .news-item .more {
		align-self: center;
	}
}
.seo {
	padding-top: 40px;
}
.seo ul li{
    margin-bottom: 8px;
    line-height: 1.2;
}
.seo ul{
    margin: 8px 0;
}
.seo .seo-title {
	font-weight: 700;
	font-size: 36px;
	line-height: 1.1;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 10px;
}
.seo .container,
.seo .seo-title {
	font-family: TT Norms Pro;
	font-style: normal;
}
.seo .container {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	color: #000;
}
.seo .show-more {
	text-decoration: underline;
	color: #fb5b74;
	cursor: pointer;
}
.seo .show-more.hide {
	display: none;
}
.seo .hidden-text {
	display: none;
	opacity: 0;
	transition: 0.3s ease;
}
.seo .hidden-text.show {
	opacity: 1;
	display: block;
}
@media screen and (max-width: 960px) {
	.seo {
		padding-top: 60px;
	}
	.seo .seo-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
}
.pick {
	overflow-x: hidden;
	overflow-y: hidden;
	position: relative;
	background-image: url('images/bg-2.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 40px;
	padding-bottom: 20px;
	z-index: 1;
}
.pick::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(32, 32, 32, 0.9);
}
.pick .pick-wrap {
	border-radius: 50%;
	border: 2px solid #e56f91;
	box-sizing: border-box;
	width: 150px;
	height: 150px;
	position: relative;
	z-index: 2;
	margin-bottom: 0;
}
.pick .pick-title {
	margin-bottom: 40px;
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 58px;
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 2;
}
.pick-block .button-next, .pick-block .button-prev{opacity: 0.35;transition: opacity 0.3s ease;}
.pick-block .button-next:hover, .pick-block .button-prev:hover{ opacity: 1;}
.pick .pick-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	z-index: 2;
}
.pick .pick-block .pick-item {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 16px;
	padding-top: 10px;
}
.pick .pick-block .item-image {
	position: absolute;
	margin-bottom: 30px;
	top: -12px;
	left: -12px;
	border-radius: 50%;
	overflow: hidden;
	width: 150px;
	height: 150px;
}
.pick .pick-block .item-image img {
	width: 100%;
	display: block;
	object-fit: cover;
	height: 100%;
}
.pick .pick-block .number-wrap {
	position: absolute;
	left: -8px;
	top:  -8px;
	border-radius: 50%;
	border: 2px solid #e56f91;
	width: 48px;
	height: 48px;
}
.pick .pick-block .number {
	display: flex;
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	color: #ffffff;
	padding: 13px 9px;
	background-color: #e56f91;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 48px;
	height: 48px;
	left: -6px;
	top: -6px;
}
.pick .pick-block .item-sign {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	color: #2c2c2c;
	max-width: 380px;
}
@media screen and (max-width: 1200px) {
	.pick .pick-block .pick-item {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 960px) {
	.pick {
		padding-top: 45px;
		padding-bottom: 20px;
	}
	.pick .pick-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 660px) {
	.pick .pick-block .pick-item {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		margin-bottom: 30px;
	}
	.pick .pick-block .pick-item .item-sign {
		max-width: none;
	}
}
.modal-window, #modal-call,#modal-call-sert, #modal-call-installment, #modal-call-discount,#modal-call-discount1,
#modal-call-second {
	display: none;
	padding-left: 70px;
	padding-right: 70px;
	background: #2b2b2b;
	border-radius: 10px;
	box-shadow: 0px 24px 48px -30px rgba(173, 105, 82, 0.8);
}
.modal-window, #modal-call,#modal-call-sert,#modal-call-installment,
#modal-call-third, #modal-call-discount,#modal-call-discount1 {
	display: none;
	padding-left: 70px;
	padding-right: 70px;
	background: #2b2b2b;
	border-radius: 10px;
	box-shadow: 0px 24px 48px -30px rgba(173, 105, 82, 0.8);
}
.modal-window .modal-title, #modal-call-second .modal-title, #modal-call-sert .modal-title, #modal-call-installment  .modal-title,
#modal-call .modal-title, #modal-call-discount .modal-title, #modal-call-discount1 .modal-title{
	font-family: TT Norms Pro;
	font-style: normal;
	font-size: 30px;
	line-height: 36px;
	font-weight: 800;
	text-align: center;
	color: #fff;
	margin-bottom: 45px;
}
.modal-window .modal-title, #modal-call-third .modal-title, #modal-call-sert .modal-title, #modal-call-installment .modal-title,
#modal-call .modal-title, #modal-call-discount .modal-title,#modal-call-discount1 .modal-title{
	font-family: TT Norms Pro;
	font-style: normal;
	font-size: 30px;
	line-height: 36px;
	font-weight: 800;
	text-align: center;
	color: #fff;
	margin-bottom: 45px;
}
#modal-call-second form,  #modal-call-sert form, #modal-call-installment form,
#modal-call form, #modal-call-discount form, #modal-call-discount1 form{
	display: flex;
	flex-direction: column;
}
#modal-call-third form,  #modal-call-sert form, #modal-call-installment form,
#modal-call form, #modal-call-discount form,#modal-call-discount1 form {
	display: flex;
	flex-direction: column;
}
#modal-call-second textarea,  #modal-call-sert textarea, #modal-call-installment textarea,
#modal-call textarea, .new-select {
	resize: none;
	margin-bottom: 15px;
	background: #f4f4f4;
	border-radius: 30px;
	display: block;
	border: none;
	padding: 30px 28px;
}
#modal-call-third textarea,  #modal-call-sert textarea,#modal-call-installment textarea,
#modal-call textarea, .new-select {
	resize: none;
	margin-bottom: 15px;
	background: #f4f4f4;
	border-radius: 30px;
	display: block;
	border: none;
	padding: 30px 28px;
}
#modal-call-second textarea::-moz-placeholder, #modal-call-sert textarea::-moz-placeholder, #modal-call-installment textarea::-moz-placeholder,
#modal-call textarea::-moz-placeholder, .new-select__list {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
#modal-call-third textarea::-moz-placeholder,
#modal-call textarea::-moz-placeholder, .new-select__list {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
#modal-call-second textarea:-ms-input-placeholder,
#modal-call textarea:-ms-input-placeholder,
#modal-call-sert textarea:-ms-input-placeholder,#modal-call-installment textarea:-ms-input-placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
#modal-call-third textarea:-ms-input-placeholder,
#modal-call textarea:-ms-input-placeholder,
#modal-call-sert textarea:-ms-input-placeholder,#modal-call-installment textarea:-ms-input-placeholder{
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
#modal-call-second textarea::placeholder,
#modal-call textarea::placeholder,
#modal-call-sert textarea::placeholder,#modal-call-installment textarea::placeholder{
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
#modal-call-third textarea::placeholder,
#modal-call textarea::placeholder,
#modal-call-sert textarea::placeholder,#modal-call-installment textarea::placeholder{
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
#modal-call-second input,
#modal-call input,#modal-call select, #modal-call-discount input, #modal-call-discount select,#modal-call-sert input, #modal-call-installment input,#modal-call-sert select,#modal-call-installment select, #modal-call-discount1 input, #modal-call-discount1 select {
	margin-bottom: 15px;
	background: #f4f4f4;
	border-radius: 100px;
	display: block;
	border: none;
	padding: 30px 28px;
}
#modal-call-third input,
#modal-call input,#modal-call select,#modal-call-sert input, #modal-call-installment input,#modal-call-sert select, #modal-call-installment select, #modal-call-second select,
#modal-call-discount input, #modal-call-discount select,
#modal-call-discount1 input, #modal-call-discount1 select{
	margin-bottom: 15px;
	background: #f4f4f4;
	border-radius: 100px;
	display: block;
	border: none;
	padding: 30px 28px;
}


#modal-call-second select  option, #modal-call select  option,#modal-call-sert select  option, #modal-call-installment  select  option, .new-select__list,
#modal-call-discount select  option, #modal-call-discount select  option,
#modal-call-discount1 select  option, #modal-call-discount1 select  option, .new-select__list{
	/* background-position: left .7em top 50%, 0 0;  */
	padding: .6em .8em .5em 1.4em;

}


.select {
    display: block;
    /* max-width: 215px; */
    width: 100%;
    position: relative;
}

.new-select {
    position: relative;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    cursor: pointer;
    user-select: none;
}

.new-select__list {
    position: absolute;
    top: 45px;
    left: 0;
    border: 1px solid #ced4da;
    cursor: pointer;
    width: 100%;
    z-index: 2;
    background: #fff;
    user-select: none;
}

.new-select__list.on {
    display: block;
}

.new-select__item span {
    display: block;
    padding: 10px 15px;
}

.new-select__item span:hover {
    color: #12b223;
}

.new-select:after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 9px;
    top: 9px;
    background: url('path-to-image') no-repeat right center / cover;
    opacity: 0.6;

    -webkit-transition: all .27s ease-in-out;
        -o-transition: all .27s ease-in-out;
            transition: all .27s ease-in-out;

    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
}
.new-payments__flex{max-width: 1100px;margin: 0 auto;}
.pt70{padding-top:70px}.pb70{padding-bottom:70px}.mt56{margin-top:3.5rem}.new-payments{background-repeat:no-repeat;background-position:center center;background-size:cover}.new-payments__flex .mt56{margin-top:32px !important;} .new-payments__flex .active-btn{color:#fff;} .new-payments__flex{display:-ms-grid;display:grid;-ms-grid-columns:1fr auto;grid-template-columns:1fr auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:40px}.new-payments__main-img{margin:auto;text-align:right}.new-payments__title{font-weight:800;font-size:30px;line-height:1;text-transform:uppercase}.new-payments__text{font-weight:700;font-size:24px;line-height:1.25; margin-top:16px !important;}.new-payments__dark-text{font-weight:700;font-size:18px;line-height:1}.new-payments__flex-imgs{margin-top:24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-column-gap:48px;-moz-column-gap:48px;column-gap:48px;row-gap:16px;-ms-flex-wrap:wrap;flex-wrap:wrap}.new-payments__icon{max-width:100%;-o-object-fit:contain;object-fit:contain;max-height:90px}.new-payments__img{aspect-ratio:539/440;max-width:400px;width:100%;-o-object-fit:contain;object-fit:contain}.pink-text{color:#b04668}.mt24{margin-top:24px}@media (max-width:1370px){.new-payments__flex{gap:16px}}@media (max-width:991.98px){.new-payments__flex{-ms-grid-columns:1fr;grid-template-columns:1fr}.new-payments__main-img{text-align:center}}@media (max-width:767.98px){.pt70{padding-top:40px}.pb70{padding-bottom:40px}.mt56{margin-top:1.5rem}.new-payments__title{font-size:20px}.new-payments__text{font-size:18px}.new-payments__dark-text{font-size:16px}.new-payments__flex-imgs{-webkit-column-gap:20px;-moz-column-gap:20px;column-gap:20px;margin-top:1.25rem}.new-payments__icon{max-height:40px}}



.logo-block a{max-width: 100px;}
.slider .button-next, .slider .button-prev{top:100% !important; transform: translateY(calc(-100% - 15px)) !important;}

.new-select.on:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}

#modal-call-second select,#modal-call-sert select,#modal-call-installment select, #modal-call select, #modal-call-discount select,#modal-call-discount1 select {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;

	-moz-appearance: none;
 -webkit-appearance: none;
 appearance: none;
 background-color: #fff; 
background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); 
background-repeat: no-repeat, repeat;
background-position: right 1.7em top 50%, 0 0;
background-size: .65em auto, 100%; 

}
#modal-call-second input::-moz-placeholder,
#modal-call input::-moz-placeholder,
#modal-call-sert input::-moz-placeholder,
#modal-call-installment input::-moz-placeholder,
#modal-call-discount  input::-moz-placeholder,#modal-call-discount1  input::-moz-placeholder{
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
#modal-call-third input::-moz-placeholder,
#modal-call input::-moz-placeholder,
#modal-call-sert input::-moz-placeholder,
#modal-call-installment  input::-moz-placeholder,
#modal-call-discount  input::-moz-placeholder,
#modal-call-discount1  input::-moz-placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
#modal-call-second input:-ms-input-placeholder,
#modal-call input:-ms-input-placeholder,
#modal-call-sert input:-ms-input-placeholder,
#modal-call-installment input:-ms-input-placeholder,
#modal-call-discount input:-ms-input-placeholder,
#modal-call-discount1 input:-ms-input-placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
#modal-call-third input:-ms-input-placeholder,
#modal-call input:-ms-input-placeholder,
#modal-call-sert input:-ms-input-placeholder,
#modal-call-installment input:-ms-input-placeholder,
#modal-call-discount input:-ms-input-placeholder,
#modal-call-discount1 input:-ms-input-placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}

#modal-call-second input::placeholder,
#modal-call input::placeholder,
#modal-call-sert input::placeholder,
#modal-call-installment input::placeholder,
#modal-call-discount input::placeholder,
#modal-call-discount1 input::placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
#modal-call-third input::placeholder,
#modal-call input::placeholder,
#modal-call-sert input::placeholder,
#modal-call-installment input::placeholder,
#modal-call-discount input::placeholder,
#modal-call-discount1 input::placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
#modal-call-third .active-btn,
#modal-call .active-btn,
#modal-call-sert .active-btn,#modal-call-installment .active-btn{
	margin-bottom: 15px;
	width: 100%;
}
#modal-call-second .active-btn,
#modal-call .active-btn,
#modal-call-sert .active-btn, #modal-call-installment .active-btn,
	#modal-call-discount .active-btn,
	#modal-call-discount1 .active-btn {
	margin-bottom: 15px;
	width: 100%;
}
#btn-back-to-top {
	position: fixed;
	bottom: 220px;
	right: 70px;
	width: 70px;
	height: 70px;
	display: none;
	border-radius: 120%;
	align-items: center;
	justify-content: center;
	z-index: 2;
	color: #fff;
	cursor: pointer;
	background: radial-gradient(
		84.65% 132.74% at 50% -32.74%,
		#ff98a9 0,
		#fb5b74 100%
	);
}
#btn-back-to-top svg {
	transform: rotate(-90deg);
}
@media screen and (max-width: 500px) {
	.sevices .services-swiper {
		padding: 15px;
	}
	.modal-window,
	#modal-call,
	#modal-call-sert,
	#modal-call-installment,
	#modal-call-second,
	#modal-call-discount,
	#modal-call-discount1{
		padding-left: 10px;
		padding-right: 10px;
		width: 100%;
	}
		.modal-window,
	#modal-call,
	#modal-call-sert,#modal-call-installment,
	#modal-call-third {
		padding-left: 10px;
		padding-right: 10px;
		width: 100%;
	}
		.modal-window .modal-title,
	#modal-call-second .modal-title,
	#modal-call .modal-title,
	#modal-call-sert .modal-title,
	#modal-call-installment .modal-title,
	#modal-call-discount .modal-title,
	#modal-call-discount1 .modal-title{
		font-size: 24px;
		line-height: 31px;
		margin-bottom: 15px;
	}
	.modal-window .modal-title,
	#modal-call-third .modal-title,
	#modal-call .modal-title,
	#modal-call-sert .modal-title,#modal-call-installment .modal-title{
		font-size: 24px;
		line-height: 31px;
		margin-bottom: 15px;
	}
	#btn-back-to-top {
		bottom: 100px;
		right: 20px;
	}
	.services-text_wrap {
		margin-left: 15px;
		margin-right: 15px;
		border-radius: 19px;
	}
	section.adress .select-content .adress-block-item {
		margin-right: 15px;
		margin-left: 15px;
		border-radius: 19px;
	}
}
footer {
	background: #fff;
	padding-top: 70px;
	padding-bottom: 30px;
}
footer .footer-menu {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 0 90px;
	margin: 0 0 33px;
	position: relative;
}
footer .footer-menu::before {
	content: '';
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgb(255, 255, 255),
		rgb(43, 43, 43) 48%,
		rgb(255, 255, 255) 100%
	);
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
}
footer .menu-col-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 114.3%;
	color: #2c2c2c;
	margin-bottom: 30px;
}
footer .menu-col {
	display: flex;
	flex-direction: column;
}
footer .menu-col .menu-col-item {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 114.3%;
	margin-bottom: 30px;
	color: #232323;
	transition: 0.3s ease;
}
footer .menu-col .menu-col-item:hover {
	color: #ad6952;
}
footer .menu-col-contacts {
	display: flex;
	flex-direction: column;
}
footer .menu-col-contacts .menu-col-item {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 148.3%;
	color: #232323;
	margin-bottom: 18px;
}
footer .menu-col-contacts .menu-col-item.colored {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 148.3%;
	margin-bottom: 6px;
	color: #b04668;
}
footer .social-col {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
footer .social-col .phone {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	text-align: right;
	color: #2c2c2c;
	display: block;
}
footer .social-col .callback-call {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 32px;
	display: flex;
	align-self: flex-end;
	color: #202020;
	transition: 0.3s ease;
	border-bottom: 1px solid #202020;
	margin-bottom: 30px;
}
footer .social-col .callback-call:hover {
	color: #ad6952;
	border-bottom: 1px solid #ad6952;
}
footer .social-col .social-block {
	display: flex;
}
footer .social-col .social-block a {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 120%;
	margin-right: 10px;
	background: #fff;
	border-radius: 50%;
	background: linear-gradient(180deg, #fbc975 0%, #9d722d 100%);
}
footer .footer-copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .footer-copyright .copy {
	color: #2c2c2c;
}
footer .footer-copyright .copy,
footer .footer-copyright .politics {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
}
footer .footer-copyright .politics {
	text-align: right;
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	color: #b04668;
	transition: 0.3s ease;
}
footer .footer-copyright .politics:hover {
	color: #fb5b74;
}
@media screen and (max-width: 1200px) {
	footer .footer-menu {
		flex-wrap: wrap;
	}
	footer .footer-menu .logo-block {
		width: 100%;
		margin-bottom: 45px;
		justify-content: center;
	}
	footer .footer-menu .social-col {
		width: 100%;
		align-self: center;
		justify-content: center;
		align-items: center;
		margin-bottom: 30px;
	}
	footer .footer-menu .social-col .callback-call {
		align-self: center;
	}
	footer .footer-menu .menu-col,
	footer .footer-menu .menu-col-contacts {
		width: 50%;
	}
}
@media screen and (max-width: 460px) {
	footer .footer-menu .menu-col,
	footer .footer-menu .menu-col-contacts {
		width: 100%;
		align-items: center;
	}
	.news-img {
		height: 210px;
	}
}
.adress {
	padding-top: 120px;
	padding-bottom: 140px;
	position: relative;
	background: linear-gradient(0deg, #f495b2 0%, #ffe1ea 100%);
	z-index: 1;
}
.adress-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
	flex-direction: row;
}
.adress #adress-leaf {
	position: absolute;
	top: 0;
	left: -15px;
}
.adress .adress-title {
	font-weight: 700;
	font-size: 48px;
	line-height: 58px;
	text-align: center;

	margin-right: 30px;
}
.adress .adress-title,
.adress .city {
	font-family: TT Norms Pro;
	font-style: normal;
	color: #2c2c2c;
	font-weight: 800;
	border-left: 2px solid #2c2c2c;
	padding: 0 0 0 40px;
}
.adress .city {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
	color: #fff;
	background-color: #2b2b2b;
	padding: 16px 36px;
}
.adress .select {
	position: relative;
}
.adress .select__toggle {
	display: flex;
    background: none;
    border: none;
    border-radius: 0.3125rem;
    cursor: pointer;
    align-items: center;
    width: 100%;
    padding: 0.375rem 0.75rem;
    line-height: 1.4;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1rem;
    font-style: italic;
    font-family: TT Norms Pro;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #fb5b74;
    justify-content: center;
}
.adress .select__toggle:after {
	content: '';
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-left: 1rem;
	background-size: cover;
	background-image: url(images/arrow_down.svg);
	transition: 0.3s ease;
}
.adress .select__toggle:focus {
	outline: none;
}
.adress .select_show .select__toggle:after {
	transform: rotate(180deg);
}
.adress .select__dropdown {
	display: none;
	position: absolute;
	top: 3.7rem;
	left: -223px;
	background: #2b2b2b;
	border: none;
	z-index: 2;
	transition: 0.3s ease;
}
.adress .select_show .select__dropdown {
	display: block;
	width: 404.69px;
}
.adress .select_show .select__backdrop {
	display: block;
}
.adress .select__options {
	margin: 0;
	padding: 0;
}
.adress .select__option {
    display: block; 
    color: #fff;
	margin: 0 30px;
	padding: 14px 0;
	border-bottom: 1px solid #f4e5dc;
}
.adress .select__option_selected {
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.adress .select__option_selected:after {
	width: 0.75rem;
	height: 0.75rem;
	color: #0277bd;
	background-size: cover;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='100' width='100' class='svg-inline--fa fa-check fa-w-16' data-icon='check' data-prefix='fas' aria-hidden='true'%3E%3Cpath d='M33.964 85.547l-32.5-32.251a4.935 4.935 0 010-7.017l7.071-7.017a5.027 5.027 0 017.071 0L37.5 60.987l46.894-46.534a5.028 5.028 0 017.07 0l7.072 7.017a4.935 4.935 0 010 7.017l-57.5 57.06a5.027 5.027 0 01-7.072 0z' fill='%230277bd'/%3E%3C/svg%3E");
}
.adress .select__option:hover {
	cursor: pointer;
}
.adress .select-content {
	display: none;
	margin-top: 60px;
}
.adress .select-content.show {
	display: block;
}
.adress .select-content .select-content-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.adress .select-content .adress-block-item {
    overflow: hidden;
    position: relative;
	background-color:#E4DFE0;
	margin-right: 15px;
	margin-left: 15px;
	width: calc(33.33% - 30px);
	margin-bottom: 30px;
}
.adress .select-content .item-wrapper {
    position: relative;
    z-index:1;
	height: 100%;
	padding: 16px 28px;
}
.adress .select-content .item-wrapper p,
.adress .select-content .item-wrapper p a {
	font-family: TT Norms Pro;
	font-style: normal;
	font-size: 18px;
	line-height: 28px;
	color: #202020;
}
.item-col-wrap {
	margin-bottom: 13px;
}
.item-col {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.adress .select-content .item-wrapper .more {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 800;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	align-self: flex-start;
	color: #e56f91;
	padding-bottom: 2px;
	transition: 0.3s ease;
}
.adress .select-content .item-wrapper .more span {
	border-bottom: 1px solid #e56f91;
	transition: 0.3s ease;
}

.adress .select-content .item-wrapper .more svg {
	fill: #e56f91;
	transition: all 0.3s ease;
}

.adress .select-content .map {
	margin-top: 70px;
	border-radius: 24px;
	height: 480px;
	overflow: hidden;
}
.adress .select-content .active-btn {
	margin: 20px auto 40px;
}
@media screen and (max-width: 1200px) {
	#adress-leaf {
		display: none;
	}
	.adress .select-content .adress-block-item {
		width: calc(50% - 30px);
	}
	.slider-img,.adaptive-img{max-height: 180px !important;width:auto !important;}
    .adaptive-text{font-size:18px !important;}
}
@media screen and (max-width: 960px) {
	.adress .adress-title {
		font-size: 31px;
		line-height: 38px;
	}
	.adress .select-content .active-btn {
		margin-top: 20px;
		margin-bottom: 0;
	}
}
@media screen and (max-width: 850px) {
	.adress-wrap {
		flex-direction: column;
	}
	.adress .adress-title,
	.adress {
		border-left: none;
		padding: 0 0 20px 0;
		margin-bottom: 15px;
		margin-right: 0;
		width: 100%;
		border-bottom: 1px solid #202020;
	}
	.adress {
		padding-bottom: 45px;
		padding-top: 45px;
	}
	.adress .select-content {
		margin-right: 0;
		margin-left: 0;
	}
	.adress .select-content .adress-block-item {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}
}
@media screen and (max-width: 500px) {
	.adress .select_show .select__dropdown {
		width: 266px;
		left: -40px;
	}
	.adress .city {
		flex-direction: column;
		border-radius: 19px;
	}
	.adress .city .city-sign {
		width: 100%;
	}
	.adress .select__toggle {
		padding: 0;
		justify-content: flex-start;
	}
	.adress .select {
		width: 100%;
	}
	.services .services-swiper {
		padding-left: 15px;
		padding-right: 15px;
	}
	.sevices .top-img {
		border-radius: 19px;
	}
	.top-img img {
	    object-fit: cover;
		border-radius: 19px;
	}
	.sevices .services-swiper .swiper-slide {
		border-radius: 19px;
	}.top-img {
	height: 180px;
}
}
.inner-main {
	background: url(images/bg-intro.png),
		linear-gradient(270deg, #f5628d -0.44%, rgba(255, 255, 255, 0) 50%);
	background-repeat: no-repeat;
	background-size: contain;
	padding-bottom: 90px;
	position: relative;
	    /* overflow: hidden; */
	z-index: 2;
}
.inner-main #heart-right {
	top: -76px;
}
.inner-main::before {
	content: none;
	position: absolute;
	background: url(images/inner-bg.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 85%;
	height: 100%;
	right: 0;
	top: 0;
	z-index: 1;
}
@media(min-width:768px){
    .inner-main::before {
    content: '';
	position: absolute;
	background: url(images/inner-bg.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	width: 85%;
	height: 100%;
	right: -170px;
	top: 0;
	z-index: 1;
    }
}
.inner-main .container {
	position: relative;
	z-index: 1;
}
.inner-main #inner-leaf1 {
	position: absolute;
	bottom: 120px;
	left: 62%;
	z-index: 3;
}
.inner-main #inner-leaf2 {
	position: absolute;
	bottom: -75px;
	left: 45%;
	z-index: 3;
}
.inner-main .breadcrumbs {
	margin-top: 100px;
	margin-bottom: 16px;
	display: flex;
	color: #2c2c2c;
}
.inner-main .breadcrumbs,
.inner-main .breadcrumbs a {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
}
.inner-main .breadcrumbs a {
	color: #fb5b74;
}
.inner-main .breadcrumbs .splitter {
	height: 18px;
	width: 1px;
	background-color: #fb5b74;
	margin-right: 10px;
	margin-left: 10px;
}
.inner-main .inner-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 60px;
	line-height: 72px;
	color: #2c2c2c;
	max-width: 1200px;
	width: 100%;
}
@media screen and (max-width: 1200px) {
	#content-heart,
	#inner-leaf1,
	#inner-leaf2 {
		display: none;
	}
}
.content {
	padding: 80px 0 80px;
	position: relative;
	background-color: #f0eced;
	position: relative;
	background-image: url(images/bg-our.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 35%;
}
.content .container {
	position: relative;
}
.content #content-heart {
	position: absolute;
	top: 180px;
	left: -170px;
}
.content img {
	float: left;
	margin-right: 70px;
	margin-bottom: 35px;
	border-radius: 24px;
	max-width: 540px;
}
.content h1 {
	font-weight: 700;
	font-size: 36px;
	line-height: 43px;
	margin-bottom: 18px;
}
.content h1,
.content p {
	font-family: TT Norms Pro;
	font-style: normal;
	color: #2c2c2c;
}
.content p {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}
.content ul {
	margin-top: 28px;
	margin-bottom: 28px;
}
.content ul li {
	margin-bottom: 26px;
}
table {
	overflow: hidden;
	border-collapse: collapse;
	margin-top: 60px;
	margin-bottom: 60px;
	box-shadow: 0 24px 48px -30px rgba(173, 105, 82, 0.8);
}
table,
table tbody {
	width: 100%;
}
table tr {
	border-bottom: 1px solid #383838;
}
.content-page .price-wrap table thead {
    display: table;
    width: inherit;
}
table thead tr th{
    padding: 15px 40px !important;
    background-color: #fff;
    text-align: left;
    font-size: 18px;

}
.price table tr > th:first-child {
    width: 60%;
}
.price table tr > th:last-child {
    width: auto;
}
/* table tr:hover td {
	background: rgba(251, 91, 116, 0.30196078431372547);
} */
table tr:last-child {
	border: none;
}
table tr:first-child > td {
	background: #b04668;
	padding: 25px 40px;
	font-weight: 700;
	font-size: 14px;
	line-height: 120.2%;
	color: #fff;
}

table tr > td {
	transition: 0.3s ease;
	padding: 15px 40px;
	background: #2b2b2b;
	color: #c4c4c4;
}
table tr > td:first-child {
	padding-top: 30px;
}
table tr > td:last-child {
	padding-bottom: 30px;
}
@media screen and (max-width: 1200px) {
	.inner-main {
		padding-bottom: 30px;
	}
	.inner-main .inner-title {
		font-size: 48px;
		line-height: 50px;
	}
	.inner-main .breadcrumbs,
	table {
		margin-top: 30px;
	}
	table {
		/* overflow-x: scroll; */
		margin-bottom: 30px;
		display: block;
		box-shadow: none;
	}
	table tbody {
		width: 1000px;
		display: block;
	}
	.content {
		padding-top: 60px;
	}
	.content img {
		margin-right: 30px;
	}
}
@media screen and (max-width: 960px) {
	.inner-main .inner-title {
		font-size: 31px;
		line-height: 38px;
	}
	.content {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	.content h1 {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 15px;
	}
	.content img {
		float: none;
		margin: auto auto 15px;
	}
}
.service-gallery {
	padding-top: 70px;
	background-color: #f0eced;
	padding-bottom: 120px;
	background-image: url(images/bbb.png);
	background-position: left top;
	background-repeat: no-repeat;
}
.service-gallery .container {
	position: relative;
}
.service-gallery #serviceg-heart {
	position: absolute;
	right: -30px;
	top: -100px;
}
.service-gallery .services-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 58px;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 80px;
}
.service-gallery .service-block {
	display: flex;
	margin-right: -15px;
	margin-left: -15px;
	flex-wrap: wrap;
}
.service-gallery .service-item {
	background: #fff;
	padding: 8px;
	margin-right: 15px;
	margin-left: 15px;
	box-shadow: 0 24px 32px -30px rgba(173, 105, 82, 0.8);
	border-radius: 24px;
	width: calc(33.33% - 30px);
	margin-bottom: 48px;
}
.service-gallery .service-item .slide-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 18px;
	border: 1px solid #f4e5dc;
	padding: 7px;
	height: 100%;
}
.service-gallery .service-item .slide-wrapper .top-info {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.bottom-info {
	position: relative;
}
.bottom-info:before {
	content: '';
	position: absolute;
	width: 90px;
	border-top: 1px solid #404040;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
}
.service-gallery .service-item .slide-wrapper .top-info img {
	width: 100%;
	margin-bottom: 38px;
	border-radius: 18px;
}
.service-gallery .service-item .slide-wrapper .top-info .slide-name {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 14px;
}
.service-gallery .service-item .slide-wrapper .slide-description {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #898989;
	max-width: 72%;
	margin-bottom: 45px;
}
.service-gallery .service-item .slide-wrapper .bottom-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 44px;
}
.service-gallery .service-item .slide-wrapper .slide-price {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 58px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 24px;
	color: #ad6952;
}
@media screen and (max-width: 1200px) {
	.service-gallery .active-btn {
		width: 100%;
	}
	.service-gallery #serviceg-heart {
		display: none;
	}
}
@media screen and (max-width: 960px) {
	.service-gallery {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	.service-gallery .services-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
	.service-gallery .active-btn {
		width: 100%;
	}
	.service-gallery .service-item {
		width: calc(50% - 30px);
	}
	.service-gallery .service-item .slide-wrapper .top-info .slide-name {
		font-size: 31px;
		line-height: 38px;
	}
	.service-gallery .service-item .slide-wrapper .slide-price {
		font-size: 35px;
		line-height: 39px;
	}
}
@media screen and (max-width: 660px) {
	.service-gallery .service-block {
		margin-right: 0;
		margin-left: 0;
	}
	.service-gallery .service-item {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}
	.service-gallery .service-item .slide-wrapper .top-info .slide-name {
		font-size: 31px;
		line-height: 38px;
	}
}
.map-section {
	padding-top: 120px;
	padding-bottom: 140px;
	background: linear-gradient(0deg, #f495b2 0%, #ffe1ea 100%);
}
.map-section .container {
	position: relative;
}
.map-section #map-leaf {
	position: absolute;
	top: -170px;
	left: 17%;
}
.map-section .map-wrapper {
	display: flex;
}
.map-section .map-info {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.map-section .map-info .info-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 50px;
	color: #2c2c2c;
	margin-bottom: 16px;
}
.map-section .map-info .info-row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}
.map-section .map-info .info-row .info-row-col {
	display: flex;
	padding-right: 15px;
	margin-bottom: 30px;
	width: 50%;
	align-items: center;
}
.map-section .map-info .info-row .info-row-col .col-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.map-section .map-info .info-row .info-row-col,
.map-section .map-info .info-row .info-row-col a {
	font-family: TT Norms Pro;
	font-style: normal;
	font-size: 18px;
	line-height: 22px;
	color: #2c2c2c;
}
.map-section .map-info .info-row .info-row-col img {
	margin-right: 18px;
}
.map-section .map-info .info-row .info-row-col .col-title {
	font-size: 24px;
	line-height: 29px;
	font-weight: 700;
	margin-bottom: 6px;
}
.map-section .map-info .map {
	overflow: hidden;
	border-radius: 24px;
	height: 380px;
	height: 100%;
	min-height: 280px;
}
.map-section .map-block {
	width: 70%;
	margin-right: 60px;
}
.form-block {
	max-width: 490px;
	width: 100%;
	padding: 24px;
	background: #2b2b2b;
	box-shadow: 0px 24px 48px -30px rgba(173, 105, 82, 0.8);
}
.form-block .modal-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-size: 30px;
	line-height: 36px;
	text-align: center;
	color: #fff;
	margin-bottom: 24px;
}
.form-block form {
	display: flex;
	flex-direction: column;
}
.form-block textarea {
	resize: none;
	margin-bottom: 15px;
	background: #f4f4f4;
	border-radius: 30px;
	display: block;
	border: none;
	padding: 36px 28px;
}
.form-block textarea::-moz-placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
.form-block textarea:-ms-input-placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
.form-block textarea::placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
.form-block input {
	margin-bottom: 15px;
	background: #f4f4f4;
	border-radius: 100px;
	display: block;
	border: none;
	padding: 36px 28px;
}
.form-block input::-moz-placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
.form-block input:-ms-input-placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
.form-block input::placeholder {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #898989;
}
.form-block .active-btn {
	margin-bottom: 15px;
	width: 100%;
}
label {
	display: flex;
	align-items: center;
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 32px;
	align-self: center;
	color: #2c2c2c;
}
label a {
	color: #fb5b74;
	text-decoration: underline;
}
label input {
	margin-bottom: 0;
	opacity: 0;
	position: absolute;
}
label input ~ .custom_chk {
	width: 18px;
	max-width: 18px;
	height: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(-1px);
	flex-basis: 16%;
	margin-right: 10px;
	transition: all 0.3s ease;
}
label input ~ .custom_chk img {
	position: static;
	opacity: 0;
}
label input:checked ~ .custom_chk {
	width: 18px;
	max-width: 18px;
	height: 18px;
	background: #e56f91;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(-1px);
	flex-basis: 16%;
}
label input:checked ~ .custom_chk img {
	opacity: 1;
	position: static;
	max-width: toRem(9);
}
@media screen and (max-width: 1200px) {
	.map-section .map-info .info-row {
		flex-direction: column;
	}
	.map-section .map-info .info-row .info-row-col {
		width: 100%;
		margin-bottom: 15px;
	}
	.map-section #map-leaf {
		display: none;
	}
}
@media screen and (max-width: 960px) {
	.map-section {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	.map-section .map-block {
		margin-right: 30px;
	}
	.map-section .map-info .info-row {
		flex-direction: column;
	}
	.map-section .map-info .info-row .info-row-col {
		width: 100%;
		margin-bottom: 15px;
	}
	.map-section .map-info .info-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
	.map-section #map-leaf {
		display: none;
	}
	.form-block {
		padding-left: 25px;
		padding-right: 25px;
	}
	.form-block .modal-title {
		font-size: 28px;
		line-height: 35px;
	}
}
@media screen and (max-width: 860px) {
	.map-section .map-block {
		width: 100%;
		margin-right: 0;
	}
	.map-section .map-wrapper {
		flex-direction: column;
	}
	.map-section .map-info .info-row {
		margin-bottom: 15px;
	}
	.map-section .map-info .info-row .info-row-col {
		font-size: 16px;
		line-height: 21px;
	}
	.map-section .map-info .info-row .info-row-col .col-title {
		font-size: 21px;
		line-height: 26px;
	}
	.map-section .map-info .info-row .info-row-col a {
		font-size: 16px;
		line-height: 21px;
	}
	.map-section .map-info .map {
		height: 350px;
		margin-bottom: 30px;
	}
}
.examples {
	background-color: #f0eced;
	position: relative;
	background-image: url(images/bg-our.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 35%;
	padding-bottom: 120px;
}
.examples-block {
	padding-top: 120px;
	padding-bottom: 50px;
	margin-right: -15px;
	margin-left: -15px;
	display: flex;
	flex-wrap: wrap;
}
.examples-block .examples-item {
	width: calc(24% - 30px);
	margin-bottom: 20px;
	margin-right: 15px;
	margin-left: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.examples-block .examples-item img {
	width: 100%;
	height: 442px;
	margin-bottom: 20px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.examples-block .examples-item .item-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #2c2c2c;
	margin-bottom: 10px;
	align-self: flex-start;
}
.examples-block .examples-item .item-description {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	align-self: flex-start;
	color: #747474;
	margin-bottom: 15px;
}
.examples-block .examples-item .more {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	align-self: flex-start;
	color: #fb5b74;
	border-bottom: 1px dashed #fb5b74;
	padding-bottom: 2px;
	transition: 0.3s ease;
}
.examples-block .examples-item .more:hover {
	color: #ad6952;
	border-bottom: 1px dashed #ad6952;
}
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: auto auto;
}
.pagination .next,
.pagination .prev {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	text-align: right;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ff98a9;
}
.pagination .next.active,
.pagination .prev.active {
	color: #fb5b74;
}
.pagination .prev {
	margin-right: 15px;
}
.pagination .first,
.pagination .last {
	display: none;
}
.pagination .first.active,
.pagination .last.active {
	color: #fb5b74;
}
.pagination .first.active,
.pagination .last.active,
.pagination .number-item {
	width: 40px;
	height: 40px;
	border-radius: 120%;
	border: 1px solid #ff98a9;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 3px;
	margin-left: 3px;
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
}
.pagination .number-item {
	color: #ff98a9;
}
.pagination .number-item.active {
	background: radial-gradient(
		84.65% 132.74% at 50% -32.74%,
		#ff98a9 0,
		#fb5b74 100%
	);
	color: #fff;
}
.pagination .next {
	margin-left: 15px;
}
@media screen and (max-width: 1200px) {
	.examples-block {
		padding-top: 60px;
		padding-bottom: 45px;
	}
	.examples-block .examples-item {
		width: calc(50% - 30px);
	}
	.examples-block .examples-item img {
		width: 100%;
		height: 300px;
	}
}
@media screen and (max-width: 650px) {
	.examples-block {
		padding-top: 45px;
		padding-bottom: 0;
	}
	.examples-block .examples-item {
		width: 100%;
	}
	.examples-block .examples-item img {
		width: 100%;
		height: 300px;
	}
	.examples .pagination {
		margin-bottom: 30px;
	}
}
.blog {
	background-color: #f0eced;
	position: relative;
	background-image: url(images/bg-our.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 35%;
	padding-bottom: 120px;
}
.blog-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-top: auto;
}
.blog-block {
	padding-top: 120px;
	padding-bottom: 50px;
	margin-right: -15px;
	margin-left: -15px;
	display: flex;
	flex-wrap: wrap;
}
.blog-block .blog-item {
	width: calc(25% - 30px);
	margin-bottom: 50px;
	margin-right: 15px;
	margin-left: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.blog-block .blog-item .item_date {
	font-family: TT Norms Pro;
	font-style: normal;
	font-size: 12px;
	line-height: 24px;
	color: #2c2c2c;
}
.blog-block .blog-item .item_date span {
	font-weight: 700;
	color: #fb5b74;
}
.blog-block .blog-item img {
	width: 100%;
	height: 311px;
	margin-bottom: 20px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.blog-block .blog-item .item-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #2c2c2c;
	margin-bottom: 10px;
	align-self: flex-start;
}
.blog-block .blog-item .item-description {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	align-self: flex-start;
	color: #747474;
	margin-bottom: 15px;
}
.blog-block .blog-item .more {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 800;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	align-self: flex-start;
	color: #e56f91;
	border-bottom: 1px solid #e56f91;
	padding-bottom: 2px;
	transition: 0.3s ease;
}

@media screen and (max-width: 1200px) {
	.blog-block {
		padding-top: 45px;
		padding-bottom: 0;
	}
	.blog-block .blog-item {
		width: calc(50% - 30px);
	}
	.blog-block .blog-item img {
		width: 100%;
	}
	.blog .pagination {
		margin-bottom: 45px;
	}
}
@media screen and (max-width: 660px) {
	.blog-block,
	.blog-block .blog-item {
		margin-right: 0;
		margin-left: 0;
	}
	.blog-block .blog-item,
	.blog-block .blog-item img {
		width: 100%;
	}
	.blog {
		padding-bottom: 50px;
	}
}
.content-page {
	padding: 120px 0 110px;
	position: relative;
	background-color: #f0eced;
	position: relative;
	background-image: url(images/bg-our.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 35%;
}
.content-page img {
	float: left;
	margin-right: 70px;
	margin-bottom: 35px;
	border-radius: 24px;
}
.content-page h1 {
	font-weight: 700;
	font-size: 36px;
	line-height: 43px;
	margin-bottom: 18px;
}
.content-page h1,
.content-page p {
	font-family: TT Norms Pro;
	font-style: normal;
	color: #2c2c2c;
}
.content-page p {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 20px;
}
.content-page ol {
	padding-left: 15px;
	margin-bottom: 30px;
}
.content-page ol li {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #2c2c2c;
}
.content-page ul {
	margin-top: 30px;
	margin-bottom: 30px;
	padding-left: 20px;
}
.content-page ul li {
	margin-bottom: 0;
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #2c2c2c;
	display: list-item;
}
.content-page ul li:before {
	content: none;
}
.content-page ul li::marker {
	color: #ff98a9;
	font-size: 21px;
}
.content-page #content-leaf {
	position: absolute;
	width: 7%;
	top: 50%;
	left: 0;
}
.content-page h2 {
	font-size: 36px;
	line-height: 43px;
}
.content-page h2,
.content-page h3 {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	color: #2c2c2c;
	margin-bottom: 30px;
}
.content-page a,
.content-page a {
    color: inherit;
}
.content-page h3 {
	font-size: 30px;
	line-height: 36px;
}
.content-page h4 {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	color: #2c2c2c;
	margin-bottom: 30px;
}
.content-page table {
	margin-bottom: 0;
}
.content-gallery {
	padding: 120px 0 0;
	width: 100%;
	background: linear-gradient(0deg, #f495b2 0%, #ffe1ea 100%);
}
.content-gallery .gallery-title {
	margin-top: 120px;
}
.text-video {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #202020;
}
.video-block .video-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 24px;
	text-align: center;
	margin-bottom: 80px;
	color: #2c2c2c;
}
.video-block .video-item {
	display: block;
	position: relative;
	height: 640px;
	margin-bottom: 48px;
}
.video-block .video-item > img {
	width: 100%;
	height: 100%;
	border-radius: 24px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.video-block .video-item .play-block {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-block .video-item .play-button {
	background: radial-gradient(
		84.65% 132.74% at 50% -32.74%,
		rgba(255, 152, 169, 0.19215686274509805) 0,
		rgba(251, 91, 115, 0.2196078431372549) 100%
	);
	transition: 0.3s ease;
}
.video-block .video-item .play-button,
.video-block .video-item .play-button .button-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border-radius: 120%;
	-webkit-animation-name: ButtonAnimation;
	animation-name: ButtonAnimation;
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
.video-block .video-item .play-button .button-wrapper {
	background: radial-gradient(
		84.65% 132.74% at 50% -32.74%,
		rgba(255, 152, 169, 0.29411764705882354) 0,
		rgba(251, 91, 115, 0.30980392156862746) 100%
	);
}
.video-block .video-item .play-button .button-wrapper .button-wrapper-inner {
	background: radial-gradient(
		84.65% 132.74% at 50% -32.74%,
		#ff98a9 0,
		#fb5b74 100%
	);
	width: 140px;
	height: 140px;
	border-radius: 120%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-block
	.video-item
	.play-button
	.button-wrapper
	.button-wrapper-inner
	img {
	margin: auto;
	float: none;
	border-radius: 0;
}
@-webkit-keyframes ButtonAnimation {
	0% {
		padding: 20px;
	}
	50% {
		padding: 30px;
	}
}
@keyframes ButtonAnimation {
	0% {
		padding: 20px;
	}
	50% {
		padding: 30px;
	}
}
@media screen and (max-width: 1200px) {
	.content-page {
		padding-top: 45px;
	}
	.content-page #content-leaf {
		display: none;
	}
	.content-page img {
		float: none;
		margin: auto auto 15px;
	}
	.video-block .video-item {
		height: 450px;
	}
}
@media screen and (max-width: 960px) {
	.video-block .video-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
	.video-block .video-item {
		height: 350px;
	}
	.video-block .video-item .play-button .button-wrapper .button-wrapper-inner {
		width: 60px;
		height: 60px;
	}
	.video-block
		.video-item
		.play-button
		.button-wrapper
		.button-wrapper-inner
		img {
		width: 60%;
	}
	.content-page table {
		margin-bottom: 45px;
	}
	.content-page h2 {
		font-size: 26px;
		line-height: 33px;
	}
	.content-page h3,
	.content-page h4 {
		font-size: 21px;
		line-height: 28px;
	}
	.content-gallery {
		padding-bottom: 60px;
	}
	.content-page {
		padding: 40px 0;
	}
}
.video-review-bg {
	background-image: url('images/bg-vid2.png');
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #2b2b2b;
	position: relative;
	padding: 0 0 100px 0;
}
.video-review-bg .active-btn {
	margin: 80px auto 0 auto;
	padding: 6px;
}
.video-review-bg::before {
	content: '';
	position: absolute;
	background-image: url('images/bg-vid.svg');
	background-repeat: no-repeat;
	width: 64%;
	height: 100%;
	right: 0;
	top: 0;
}

.video-review {
	padding-top: 20px;
}
.video-review .swiper_video {
	padding: 0 30px;
}
.video-review .video-review-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 800;
	font-size: 60px;
	line-height: 72px;
	text-align: center;
	margin-bottom: 80px;
	color: #b04668;
	position: relative;
	z-index: 1;
}
.video-review .video-item {
	display: block;
	position: relative;
	height: 420px;
}
.video-review .video-item > img {
	height: 100%;
	width: 100%;
	border-radius: 24px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.video-review .video-item .play-block {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-review .video-item .play-button {
	background: radial-gradient(
		84.65% 132.74% at 50% -32.74%,
		rgba(255, 152, 169, 0.19215686274509805) 0,
		rgba(251, 91, 115, 0.2196078431372549) 100%
	);
	transition: 0.3s ease;
}
.video-review .video-item .play-button,
.video-review .video-item .play-button .button-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	border-radius: 120%;
	/*-webkit-animation-name: ButtonAnimation;
	animation-name: ButtonAnimation;
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;*/
}
.video-review .video-item .play-button .button-wrapper {
	background: radial-gradient(
		84.65% 132.74% at 50% -32.74%,
		rgba(255, 152, 169, 0.29411764705882354) 0,
		rgba(251, 91, 115, 0.30980392156862746) 100%
	);
}
.video-review .video-item .play-button .button-wrapper .button-wrapper-inner {
	background: radial-gradient(
		84.65% 132.74% at 50% -32.74%,
		#ff98a9 0,
		#fb5b74 100%
	);
	width: 100px;
	height: 100px;
	border-radius: 120%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-review
	.video-item
	.play-button
	.button-wrapper
	.button-wrapper-inner
	img {
	margin: auto;
	float: none;
	border-radius: 0;
}
@-webkit-keyframes ButtonAnimation2 {
	0% {
		padding: 15px;
	}
	50% {
		padding: 25px;
	}
}
@keyframes ButtonAnimation2 {
	0% {
		padding: 15px;
	}
	50% {
		padding: 25px;
	}
}
.photo-review {
	padding: 100px 0 38px;
	position: relative;
	background-color: #f0eced;
	position: relative;
	background-image: url(images/bg-our.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 30%;
}

.photo-review #content-leaf {
	position: absolute;
	width: 7%;
	top: 50%;
	left: 0;
}
.photo-review .photo-review-title {
	font-family: TT Norms Pro;
	font-style: normal;
	font-weight: 800;
	font-size: 60px;
	line-height: 72px;
	text-align: center;
	color: #2c2c2c;
	margin-bottom: 80px;
}
.photo-review .container-right {
	overflow: hidden;
	/* margin-left: calc(50% - 670px); */
}
.photo-review .swiper_photo {
	padding: 30px 30px;
	overflow: visible;
	margin-left: 0;
}
.photo-review .swiper_photo .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	align-self: center;
	transform: scale(0.7);
	transition: all 0.3s ease;
}
.photo-review .swiper_photo .swiper-slide img {
	width: 100%;
	height: 100%;
	display: block;
}
.photo-review .swiper_photo .swiper-slide-active {
	padding: 0 40px;
	transform: scale(1.2);
}
.review-img {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
@media screen and (max-width: 1400px) {
	.photo-review .container-right {
		margin-left: auto;
		margin-right: auto;
		max-width: calc(100% - 30px);
	}
}
@media screen and (max-width: 1200px) {
	.photo-review #content-leaf {
		display: none;
	}
}

@media screen and (max-width: 960px) {
	.content img {
		max-width: 100%;
	}
	.photo-review .container-right {
		margin-left: auto;
		margin-right: auto;
		max-width: calc(100% - 30px);
	}
	.photo-review .container-right .swiper_photo {
	}
	.photo-review .container-right .swiper_photo .swiper-slide {
		padding: 0 10px;
		background-size: 100% 100%;
	}
	.photo-review .container-right .swiper_photo .swiper-slide-active {
		padding: 0;
	}

	.video-review .video-review-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
	.video-review .video-item {
		height: 350px;
	}
	.photo-review {
		padding-top: 45px;
	}
	.photo-review .photo-review-title {
		font-size: 31px;
		line-height: 38px;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 700px) {
	.photo-review .container-right .swiper_photo {
		padding: 40px 0px;
	}
	.photo-review .container-right .swiper_photo .swiper-slide-active {
		padding: 0 20px;
	}
	.photo-review .container-right .swiper_photo .swiper-slide {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.swiper_photo .button-next {
		top: 90% !important;
	}
	.swiper_photo .button-prev {
		top: 90% !important;
	}
}
@media screen and (max-width: 540px) {
    	.content img {
		max-width: 100%;
		height:380px;
		object-fit: cover;
	}
}
@media screen and (max-width: 460px) {
	/* .photo-review .container-right .swiper_photo .swiper-slide img,
	.video-review .video-item {
		height: 400px;
	} */

	.photo-review .container-right .swiper_photo .swiper-slide {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

.review.video-review .active-btn {
	margin: auto;
	margin-top: 20px;
}
.review.video-review .container {
	display: block;
}
@media screen and (max-width: 460px) {
	.adress .select-content .item-wrapper p {
		font-size: 14px;
	}
	.adress .select-content .item-wrapper {
		padding: 10px 15px;
	}
	.adress .select-content .item-wrapper .more {
		font-size: 13px;
	}
}
@media screen and (max-width: 991px) {
	.gallery .gallery-item {
		height: 25vw;
	}
}

.tiktok {
	position: relative;
	background-color: #2b2b2b !important;
	background-image: none;
	padding: 0 0 12px;
}
@media (min-width: 760px) {
	.tiktok {
		padding: 0 0 121px;
	}
}
.tiktok .container {
	position: relative;
	z-index: 1;
}
.decor-section {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 1;
}
.decor-section img {
	/*height: 78%;*/
	width: 100%;
}
.tiktok .tiktok-title {
	color: #fff;
	font-weight: 800;
	font-size: 48px;
	line-height: 58px;
	text-align: center;
	margin-bottom: 80px;
}
.color {
	color: #b04668;
}
.wrap-section {
	position: relative;
}
.salon-adress {
	background-image: url(images/bg-our.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-color: #f0eced;
	background-size: 35%;
}
.decor {
	background-image: url(images/bg-vid2.png);
	background-repeat: no-repeat;
	background-position: left top;
	position: relative;
}
.decor::before {
	content: '';
	position: absolute;
	width: 80%;
	height: 100%;
	background-size: 120%;
	background-image: url(images/2.svg);
	background-repeat: no-repeat;
	right: 0;
	top: 0;
}
/* .price-wrap{
    display:flex;
    flex-wrap:wrap;
    margin: 0 -15px -30px;
}
.price{
    width:100%;
     padding: 0 15px 30px;
} */
@media(max-width: 768px){
    .price table tr .small{font-size:10px;line-height:1.1;}
    .price table tr{
        display:flex;
    }
    /*.price table{
        min-width:280px;
        margin: 0 auto;
        max-width:85%;
    }*/
    .price table tr > td{
        padding: 2px;
        text-align: center;
        width: 100%;
        width: 50%;
    }
    .price table tr > td:last-child{
        background: #c84f76;
    }
    
    .price thead tr th {
    padding: 8px !important;
    width: 100% !important;
    font-size: 14px;
}
    table tr > td:first-child {
    padding: 2px;
    }
    
    table:nth-child(odd) thead tr th {
    width: 100% !important;
        
    }
}
@media(min-width: 769px){
.price table tr > td:first-child{
        width:60%;
    }
}
.price table{
       display:table;
   }
   .price table tbody{
       display:table;
       width:inherit;
   } 
@media(min-width: 900px){
   /*  .price{
        width:50%;
   } */
   
   .price table tr > td:last-child{
       /* width:auto !important; */
   }
}

 .price table tr > td:last-child{
       /* width:80%; */
   }
.price thead  tr th{
    padding: 10px 15px;
}
.price__btn{
    margin-top:15px;
    display:flex;
    justify-content: center;
}
.price-page{
    padding:1px 0 110px;
}
.seoTwo{
    padding: 50px 0;
}
.uslugi-section{
    padding: 40px 0 100px 0;
    background-color: #f0eced;
    position: relative;
}
.uslugi-wrap{
    display:flex;
    flex-wrap:wrap;
    margin: 0 -15px -30px;
}
.uslugi{
    width:100%;
    padding:0 15px 30px;
     min-height:100%;
}
.uslugi .active-btn{
    width:100%;
    height:60px;
     margin-top: auto;
}
@media(min-width:768px){
    .uslugi{
     width:50%;
    }
}
@media(min-width:1201px){
    .uslugi{
     width:33.33%;
    }
    .uslugi__image{
          min-height:200px;
    }
}
.uslugi__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    height:100%;
    padding: 15px;
    box-shadow: 6px 6px 12px 4px rgb(0 0 0 / .5);
     background-color: #fff;
     border-radius: 15px;
}
.uslugi__image{
    width:100%;
    display: flex;
    align-items: center;
    margin-bottom:10px;
     border-radius: 15px;
     overflow: hidden;
     height: 300px;
}
.uslugi__image img{
    width:100%;
    display:block;
    height:100%;
    object-fit: cover;
}
.uslugi__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}
.uslugi__text{
     margin-bottom: 10px;
}

.inner-main .breadcrumbs{
    margin-top:18px;
}
.inner-main #inner-leaf1{
    margin-bottom: -30px;
}
#heart-right{
    width:285px;
}
.inner-main #heart-right{
    margin-top: 30px;
}
.inner-main{
    padding-bottom: 24px;
}
.content-page{
    padding-top: 60px;
}
.content-page .price-wrap table:nth-child(1){
    margin-top: 0;
}
.content-page .price-wrap table tr > td{
    /* width:67%; */
}
.examples-block{
    padding-top: 60px;
}
.blog-block{
    padding-top: 60px;
}
.salon-adress{
    padding-top: 60px;
}
.adress .city{
    width:45%;
}
.adress .city-sign{
    width:55%;
}
.adress{
    padding-top: 15px;
}
@-webkit-keyframes whatsapp2 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(30, 73, 70, 0.9);
        box-shadow: 0 0 0 0 rgba(30, 73, 70, 0.9);
    }
    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(30, 73, 70, 0);
        box-shadow: 0 0 0 20px rgba(30, 73, 70, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(30, 73, 70, 0);
        box-shadow: 0 0 0 0 rgba(30, 73, 70, 0);
    }
}
@keyframes whatsapp2 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(30, 73, 70, 0.9);
        box-shadow: 0 0 0 0 rgba(30, 73, 70, 0.9);
    }
    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(30, 73, 70, 0);
        box-shadow: 0 0 0 20px rgba(30, 73, 70, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(30, 73, 70, 0);
        box-shadow: 0 0 0 0 rgba(30, 73, 70, 0);
    }
}

.whatsapp2 {
    position: fixed;
    z-index: 99999;
    bottom: 30%;

    left: 0;
    z-index:100;
    
      -webkit-transform: ranslateY(50%);
  -ms-transform:  translateY(50%);
  transform: translateY(50%);
}
.whatsapp2-items {
    display:none;
    position: fixed;
    z-index: 99999;
    bottom: 350px;
    left: 115px;    
    z-index:100;
}
.whatsapp2-items.active{
    opacity:1 !important;
    display:block;
}
.whatsapp2-items ul li::before{
    display:none;
}
.whatsapp2-items ul li a{
    display:flex;
}
.whatsapp2-items ul li a span{
    margin-left: 8px;
    padding: 8px;
    background: #333333;
    border: 1px solid #FFFFFF;
    border-radius: 224px;
    
    font-family: 'TT Norms Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    
    color: #FFFFFF
}
.whatsapp2-items ul li a:hover span{
    color:black;
    background:white;
}
.whatsapp2 span {
    cursor:pointer;
    /*width: 120px;
    height: 120px;*/
    padding: 16px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* display: block; */
    background: rgb(30, 73, 70);
    /* text-indent: -99999px; */
    animation: whatsapp2 2s infinite;
    border-radius: 0 16px 16px 0;
    
writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl; /* Safari */
  -ms-writing-mode: tb-rl;           /* IE/Edge старые */
}
@media (max-width:600px){
    .whatsapp2{
        bottom: 0;
        left: 50%;

        
          -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
    }
    .whatsapp2-items{
        bottom: 305px;
        left: 34px;
    }
    .whatsapp2 span{
        font-size: 12px;
        padding: 8px 16px;
        border-radius: 16px 16px 0 0;
        writing-mode: unset;
    }
    
}
.pick.mva-kurs{
    background-image: url('images/IMG_0023 1(1).png');
}
.pick.mva-kurs .pick-block .pick-item{
    background: linear-gradient(180deg, #4B3239 0%, #AC5670 100%);
    width: calc(25% - 50px);
}
.pick.mva-kurs .pick-block .pick-item ul li{
    color:#FFF;
    display: flex;
      flex-direction: row;
      align-items: baseline;
      justify-content: flex-start;
}
.pick.mva-kurs .pick-block .item-sign{
    text-align:start !important;
}
.pick.mva-kurs ul li::before{
    display: block !important;
}
.mva-documents{
    display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mva-link{
    border-radius: 200px;
  background: linear-gradient(180deg, #FBC975 0%, #9D722D 100%);
  box-shadow: 0px 4px 0px 0px #8E692F;
  z-index: 1;
  padding: 32px 48px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  color: #FFF;
  text-align: center;
  font-family: TT Norms Pro;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}
.mva-sevices{
    background:url('Frame 19.png');
}
.mva-sevices .bottom-info:before{
    display:none;
}
.mva-sevices .slide-price{
    color: #FFF !important;
    text-align: center !important;
    font-size: 40px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 100% !important;
}
.mva-sevices .slide-price del{
    color: #D9AD95;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
.mva-sevices .active-btn{
        color: #FFF;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 26px;
        text-transform: capitalize;
}
.mva-sevices .button-prev, .mva-sevices .button-next{
    display:none;
}
.mva-advantages{
    background: linear-gradient(180deg, #FFE1EA 0%, #F495B2 100%);
}
.mva-advantages.last-news .news-title{
    margin-bottom: 143px;
}
.mva-advantages .news-block{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.mva-advantages .news-title{
    color: #000;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
.mva-advantages .news-title span{
    color: #B04668;
}

/*header.stiky menu{
display: none;
}*/

.mva-item{
    background:url('Frame 30.png');
    position:relative;
    width: calc(25% - 50px);
    padding-top: 76px;
    padding-left: 59px;
    padding-right: 59px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.mva-item p{
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%
}
.mva-circle{
    display: flex;
    top:-70px;
    position:absolute;
    width: 120px;
    height: 120px;
    padding: 28px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: linear-gradient(180deg, #FBC975 0%, #9D722D 100%);
}
.mva-form{
    background:url('Frame 20.png');
}
@media (max-width:1400px){
    .mva-sevices .button-prev, .mva-sevices .button-next{
        display:flex;
    }
}

.marquee-header{display:block;}
@media (max-width:1200px){
    .pick.mva-kurs .pick-block .pick-item{
        width: calc(50% - 50px) !important;
    }
    .mva-item{
        width: calc(50% - 50px) !important;
        margin-bottom: 80px;
    }
    .marquee-header{display:none;}
}
@media (max-width:1010px){
    .map-section .map-wrapper{
            flex-direction: column-reverse !important;
    align-items: center;
    gap: 15px;
    }
    
}
@media (max-width:800px){
    .pick.mva-kurs .pick-block .pick-item{
        width: calc(100% - 50px) !important;
    }
    .mva-documents{
      flex-direction: column;
    }
    .mva-link{
        font-size: 16px;
        padding: 5px 10px;
    }
    .mva-video.video-review .video-item > img{
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: right;
        object-position: right;
    }
    .mva-advantages .news-block{
        justify-content: center;
    }
    .mva-item{
        width: calc(100% - 50px) !important;
        margin-bottom: 80px;
        
    }
    .inner-main{
        background-size: 100% 100%;
    }
    .adress .city{
        width:100%;
    }
}

#myForm select, #modal-call select,#modal-call-installment select, #modal-call-sert select, #modal-call-discount select, #modal-call-discount1 select {
    font-family: TT Norms Pro;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #898989;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    background-position: right 1.7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}
#myForm input, #modal-call input, #modal-call-installment input, #modal-call-sert input, #myForm select, #modal-call-second select, #modal-call-discount input, #modal-call-discount select, #modal-call-discount1 input, #modal-call-discount1 select {
    margin-bottom: 15px;
    background: #f4f4f4;
    border-radius: 100px;
    display: block;
    border: none;
    padding: 15px;
}
#myForm input,#myForm select, #modal-call input, #modal-call-sert input, #modal-call-installment input, #modal-call select, #modal-call-sert select, #modal-call-installment select, #modal-call-discount input, #modal-call-discount select, #modal-call-discount1 input, #modal-call-discount1 select {
    margin-bottom: 15px;
    background: #f4f4f4;
    border-radius: 100px;
    display: block;
    border: none;
    padding: 24px 28px;
}
.ajax_form label{
    line-height: 1;
}

.leto-slide2 .slide-items-small__text{font-size: 20px;}
.leto-slide2 .desc-title{font-size: 24px;}
.leto-slide2 .bonus{font-size: 30px;    flex-shrink: 0;}
@media(max-width: 768px){
    .leto-slide2 .slide-items-small__text{font-size: 16px;}
    .leto-slide2 .desc-title{font-size: 16px;}
    .leto-slide2 .bonus{font-size: 16px;}
    #myForm select, #myForm input, #modal-call input, #modal-call select, #modal-call-sert input,#modal-call-installment input, #modal-call-sert select,#modal-call-installment select, #modal-call-discount input, #modal-call-discount select, #modal-call-discount1 input, #modal-call-discount1 select {
        padding: 15px 15px;
    }
    .tac {
    justify-content: center;
}
}


select option:disabled {
    background-color: #2c2c2c;
}
select option:disabled {
    display: none;
}

/* .header-price-fixed .anckor-navigation{display:none;} */
/* header .anckor-navigation{display:none;} */
/* .logo-block .anckor-navigation{display:none;} */
@media(min-width: 1200px){
    .header-price-fixed header .anckor-navigation{display: -webkit-box;display: -ms-flexbox;display: flex}
}
@media(max-width: 1200px){
    .header-price-fixed .logo-block .anckor-navigation{position: absolute;top: 100%;width: 100%;left: 0;display: -webkit-box;display: -ms-flexbox;display: flex}
}

@media(max-width: 640px) {
    .hidden-header {
        padding-top: 145px;
    }
}
@media(max-width: 467px) {
    .hidden-header {
        padding-top: 155px;
    }
}

.tglink{
    /* Старый Safari */
    display: -webkit-inline-box;
    display: -webkit-inline-flex;

    /* IE10–11 */
    display: -ms-inline-flexbox;

    /* Современный стандарт */
    display: inline-flex;

    /* Выравнивание по поперечной оси */
    -webkit-box-align: center;   /* старый Safari */
    -webkit-align-items: center; /* старый Safari */
    -ms-flex-align: center;      /* IE10–11 */
    align-items: center;

    /* gap (не поддерживается в IE и старом Safari) */
    gap: 6px;
}
.colorpink{color: #e56f91 !important;}
 .mball-12 > * {
  margin-bottom: 0.75rem;
}
.mball-12 > *:last-child {
  margin-bottom: 0rem;
}
.adress-block-item .item-wrapper .item-col .item-col-wrap p{line-height: 1.2;padding: 6px 0;}
.adress-block-item .item-wrapper .item-col .item-col-wrap span{line-height: 1.2;}

.banner_swiper .swiper-pagination{bottom:unset;left:unset;position: relative; display:flex;gap:12px;align-items:center;justify-content: center;}
.banner_swiper .swiper-pagination-bullet{margin:0;background-color:#FFFFFF; }
.banner_swiper .swiper-pagination-bullet-active{width: 12px; height: 12px; background-color:#E56F91; }
.video-review .active-btn::after{display:none;}
.services-swiper .active-btn::after{display:none;}
.fbg{min-height:100vh;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;font-family:"TT Norms Pro";color:#202020}.fbg__con{text-align:center;padding:24px 15px}.fbg__title{font-size:56px;font-weight:700;line-height:1.06}.fbg__sbtitle{margin-top:1rem;font-size:24px;font-weight:400;line-height:1.29}.fbg__c{margin-top:5rem}.fbg__prize{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;gap:16px;font-size:20px;font-weight:400;line-height:1.2}.fbg__prize p{text-align:left}.fbg__bottom{margin-top:7.5rem}.fbg__soc{margin-top:1.5rem}.fbg__soc a{position:relative;display:inline-block}.fbg__soc a span{position:absolute;right:8px;top:8px;color:red;font-size:12px}.fbg__soc a:not(:first-child){margin-left:8px}.fbg__skid{margin-top:1.5rem;display:-webkit-box;display:-ms-flexbox;display:flex}.fbg__skid-1{background-color:#202020;padding:16px}.fbg__skid-title{font-size:44px;font-weight:700;line-height:1;background:-webkit-gradient(linear,left top,left bottom,from(#fbc975),to(#9d722d));background:linear-gradient(180deg,#fbc975 0,#9d722d 100%);background:linear-gradient(180deg,#fbc975 0,#9d722d 100%);-webkit-background-clip:text;background-clip:text;color:transparent}.fbg__skid-sbtitle{font-size:24px;font-weight:700;line-height:1;text-transform:uppercase;color:#fff}.fbg__skid-2{color:#fff;background-color:#e56f91;max-width:380px;padding:16px;font-size:24px;font-weight:400;line-height:1;text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.fbg__pred{margin-top:.5rem;font-size:12px}.fbg__pred span{color:red;font-size:12px}.fbg__text{font-size:16px;font-weight:400;line-height:1.18}@media (max-width:47.99875em){.fbg__title{font-size:32px}.fbg__sbtitle{font-size:18px}.fbg__c{margin-top:2.5rem}.fbg__prize{font-size:16px}.fbg__bottom{margin-top:2.5rem}.fbg__soc{margin-top:1.5rem}.fbg__skid{margin-top:1.5rem}.fbg__skid-title{font-size:24px}.fbg__skid-sbtitle{font-size:20px}.fbg__skid-2{font-size:16px}}
.left-part .active-btn{max-height: 70px;}
.btn-border{max-height: 72px;}
.td-none td{display: unset !important;}
.mt20{margin-top:20px;}
.fts24{font-size: 24px;}
.mt40{margin-top: 40px;}.mt56{margin-top: 56px;}
.cards-sertifics{max-width:1000px;margin-left:auto;margin-right:auto;}
#srcmap{margin-top: 70px;border-radius: 24px;height: 480px;overflow: hidden;}
.seo-block h2{font-size: 22px;}
.depos{padding:46px 0;background:linear-gradient(213.95deg,#ffe0e8 20.12%,#fff 111.71%)}.depos__title{font-weight:700;font-size:50px;line-height:1;text-align:center;text-transform:uppercase;margin-bottom:0!important;background:-webkit-gradient(linear,left top,left bottom,from(#fbc975),to(#9d722d));background:linear-gradient(180deg,#fbc975 0,#9d722d 100%);-webkit-background-clip:text;background-clip:text;color:transparent!important}.depos__under-title{padding:0!important;font-weight:600;font-size:20px!important;line-height:1;text-align:center;color:#000}.depos__under-title span{color:#b04668}.depos__content{margin-left:auto;margin-right:auto;margin-top:30px;max-width:740px}.depos__white-cards{margin-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:12px}.depos__btn-block{text-align:center}.depos__last-text{margin-top:35px;color:#7d7d7d!important;font-size:12px!important;line-height:1;padding:0!important;text-align:center}.depos__border-cards{display:-ms-grid;display:grid;-ms-grid-columns:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr;gap:20px;margin-top:20px}.border-card{border-radius:15px;border:1px solid #b04668;position:relative;overflow:hidden;display:-ms-grid;display:grid;-ms-grid-columns:1fr auto;grid-template-columns:1fr auto}.border-card__text{padding:10px 0 14px 16px;position:relative;z-index:1;color:#b04668!important;font-weight:500;font-size:12px;line-height:1;margin-bottom:0!important}.border-card__text span{font-weight:600;font-size:20px;line-height:1;text-transform:uppercase}.border-card__img{max-width:100%;-o-object-fit:cover;object-fit:cover;-ms-flex-negative:0;flex-shrink:0;max-height:100%;-ms-flex-item-align:end;align-self:flex-end;float:unset!important;margin-right:0!important;margin-bottom:0!important;border-radius:0!important}.depos-white{background-color:#fff;border-radius:15px;padding:10px 14px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-flex:1;-ms-flex:1;flex:1;gap:14px}.depos-white__left{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:10px}.depos-white__title{font-weight:500;font-size:24px;line-height:1;text-transform:uppercase}.depos-white__time{font-weight:300;font-size:15px;line-height:1;color:#7d7d7d}.depos-white__right{text-align:right}.depos-white__akc{margin-top:6px;border-radius:30px;background-color:#b04668;font-weight:500;font-size:10px;line-height:1;color:#fff;display:inline-block;padding:2px 4px}.depos-white__price{font-weight:700;font-size:30px;line-height:1;text-transform:uppercase;color:#b04668;white-space:nowrap}.depos-white__price span{font-weight:500;font-size:15px;line-height:1;text-transform:uppercase}.depos-white__price--old{font-weight:300;font-size:10px;text-transform:uppercase;text-decoration:line-through;color:#7d7d7d}@media (max-width:991.98px){.depos__title{font-size:30px}}@media (max-width:767.98px){.depos__under-title{font-size:16px!important}.depos__content{margin-top:20px}.depos__white-cards{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-top:30px}.depos__border-cards{-ms-grid-columns:1fr;grid-template-columns:1fr;gap:10px}.border-card__text span{font-size:17px}.depos-white__price{font-weight:500}}
.buy-more{overflow:hidden;position:relative;padding:3.5rem 0;background-color:#f4e5dc}.buy-more__container{position:relative;z-index:1}.buy-more img{margin:0!important;float:unset!important;border-radius:0!important}.buy-more__title{font-weight:800;font-size:48px;line-height:1.15;text-align:center;text-transform:uppercase;background:-webkit-gradient(linear,left top,left bottom,from(#fbc975),to(#9d722d));background:linear-gradient(180deg,#fbc975 0,#9d722d 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;color:transparent}.buy-more__flex-block{font-weight:700;font-size:24px;line-height:1.3;color:#b04668;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:12px;margin-top:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.buy-more__flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:4px}.buy-more__cards{margin-top:40px;display:-ms-grid;display:grid;gap:24px;-ms-grid-columns:1fr .9fr;grid-template-columns:1fr .9fr}.buy-more__cards-left{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:end;-ms-flex-align:end;align-items:end}.buy-more__card{padding:1.5rem;border-radius:24px}.buy-more__card--y{position:relative;z-index:1;background-color:#fed385;-webkit-transform:rotate(-6deg);-ms-transform:rotate(-6deg);transform:rotate(-6deg)}.buy-more__card--w{background-color:#fff;-webkit-transform:rotate(4deg);-ms-transform:rotate(4deg);transform:rotate(4deg);max-width:400px}.buy-more__card-title{font-size:24px;line-height:1.12;text-transform:uppercase;font-weight:400}.buy-more__card-title span{font-weight:700}.buy-more__card-content{margin-top:24px;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:end;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:16px}.buy-more__card-count{font-size:16px;line-height:1.3}.buy-more__card-price-block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:4px;-ms-flex-wrap:wrap;flex-wrap:wrap}.buy-more__card-price{font-weight:700;font-size:30px;line-height:1;color:#b04668}.buy-more__card-ac{font-weight:700;font-size:18px;line-height:1.3;text-transform:uppercase;padding:4px 10px;background-color:#b04668;color:#fff;border-radius:100px}.buy-more__card-icon{max-width:400px;background:linear-gradient(93.04deg,rgba(255,255,255,.32) .1%,rgba(255,255,255,.08) 100.1%);-webkit-backdrop-filter:blur(56px);backdrop-filter:blur(56px);border:1px solid #b04668;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:24px;padding:24px;border-radius:24px}.buy-more__card-icon:not(:first-child){margin-top:1.5rem}.buy-more__card-icon-title{font-weight:500;font-size:24px;line-height:1;text-transform:uppercase;color:#b04668}.buy-more__card-icon-title-small{font-size:16px;margin-top:8px;line-height:1.2}.buy-more__bg-img{position:absolute;right:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);max-width:80%}.buy-more__text{text-align:center;margin-top:24px;color:#b04668;font-size:14px;line-height:1.3}.mt24{margin-top:24px}@media (max-width:991.98px){.buy-more__title{font-size:32px}.buy-more__flex-block{font-size:20px}.buy-more__cards{-ms-grid-columns:1fr;grid-template-columns:1fr;gap:32px}.buy-more__card-title{font-size:24px}.buy-more__card-content{margin-top:24px}.buy-more__card-count{font-size:16px}.buy-more__card-price{font-size:30px}.buy-more__card-ac{font-size:16px}.buy-more__card-icon-title{font-size:24px}}
.middle-title{font-weight:700;font-size:28px;line-height:1.3;text-align:center}.middle-title__subtitle{margin-top:16px;padding:0}.devichnik{position:relative}.devichnik .slide-title{margin-bottom:16px!important}.devichnik__content{position:relative;z-index:1;display:block!important}.devichnik__btn{position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);bottom:56px;z-index:2}.devichnik__img-decor-1{position:absolute;right:30px;bottom:0}.devichnik__img-decor-2{position:absolute;left:0;bottom:56px}.devichnik__flex{padding-top:24px;display:-ms-grid;display:grid;-ms-grid-columns:1fr auto 1fr;grid-template-columns:1fr auto 1fr;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:40px}.devichnik__list--left{text-align:right}.devichnik__list--left .devichnik__item{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.devichnik__list--left .devichnik__item:nth-child(2){padding-right:32px}.devichnik__list--right{text-align:left}.devichnik__list--right .devichnik__item:nth-child(2){padding-left:32px}.devichnik__item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:20px}.devichnik__item:not(:first-child){padding-top:32px}.devichnik__item-title{font-weight:700;font-size:56px;line-height:1.2;color:#e56f91;padding:0}.devichnik__item-text{font-size:20px;line-height:1.2;padding:0}.devichnik__item-text span{font-weight:700}.devichnik__img{-ms-flex-item-align:end;align-self:flex-end;max-width:480px}.otdel{position:relative}.otdel__sub-title{margin-top:16px}.otdel__content{position:relative;z-index:1;text-align:center;width:100%;display:block!important}.otdel .middle-title__subtitle{margin-top:8px}.otdel .slide-title{margin-bottom:0!important}.otdel__title-small{font-weight:500;font-size:24px;line-height:1.32;padding:0}.otdel__btn{margin-top:40px}.otdel__btn a{margin:0 auto}.otdel__img-decor-1{position:absolute;right:120px;bottom:0}.otdel__img-decor-2{position:absolute;left:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.otdel__img{max-width:600px;margin:0 auto}.pt56{padding-top:3.5rem}.pb56{padding-bottom:3.5rem}.resultscustom{overflow:hidden;background-color:#f0eced;position:relative}.resultscustom .swiper-wrapper{padding-bottom:24px}.resultscustom__container{position:relative;z-index:1}.resultscustom__decor{position:absolute;right:-32px;top:-84px;max-width:80%;-o-object-fit:contain;object-fit:contain;height:calc(100% + 160px)}.resultscustom__under-title{margin-top:16px;color:#202020;text-align:center;font-size:30px;line-height:1.3}.resultscustom__grid{display:-ms-grid;display:grid;gap:30px;-ms-grid-columns:1fr 1fr 1fr;grid-template-columns:1fr 1fr 1fr}.resultscustom__item{max-width:344px;height:344px;border-radius:24px;overflow:hidden;margin:0 auto}.resultscustom__item img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%}.mt56{margin-top:3.5rem}.mt24{margin-top:24px}@media (max-width:991.98px){.devichnik__img-decor-1{z-index:1;right:-60px;max-width:230px}.devichnik__flex{gap:0;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:start}.devichnik__list--left .devichnik__item:nth-child(2){padding-right:0}.devichnik__list--left{text-align:left}.devichnik__list--left .devichnik__item{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.devichnik__list--right .devichnik__item:nth-child(2){padding-left:0}.devichnik__item:not(:first-child){padding-top:10px}.devichnik__img{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-top:24px;max-width:100%;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.otdel__img-decor-1{display:none}.otdel__img-decor-2{display:none}.otdel__img{max-width:100%}}@media (max-width:767.98px){.middle-title{font-size:18px}.devichnik__btn{bottom:40px}.devichnik__img-decor-2{max-width:170px}.devichnik__item-title{font-size:32px}.devichnik__item-text{font-size:16px}.otdel__title-small{font-size:16px}.pt56{padding-top:1.5rem}.pb56{padding-bottom:1.5rem}.resultscustom .review-title{font-size:24px;line-height:1.3}.resultscustom__decor{display:none}.resultscustom__under-title{font-size:16px}.resultscustom__grid{gap:8px}.resultscustom__item{border-radius:16px;height:234px}.mt56{margin-top:1.5rem}}
.section-bg{background-position:center center;background-repeat:no-repeat;background-size:cover}.pt112{padding-top:112px}.pb112{padding-bottom:112px}.title-elements{text-align:center}.title-up{padding:0 100px 0 85px;font-size:24px;font-weight:700;line-height:1.06;display:inline-block;position:relative}.abs1{position:absolute;right:0;top:-64px}.abs2{position:absolute;bottom:0;left:0}.abs3{position:absolute;left:70px;bottom:10px}.title-down{font-size:24px;font-weight:700;line-height:1.06;text-transform:uppercase;margin-top:12px;background:-webkit-gradient(linear,left top,left bottom,from(#fbc975),to(#9d722d));background:linear-gradient(180deg,#fbc975 0,#9d722d 100%);-webkit-background-clip:text;background-clip:text;color:transparent}.title-down span{color:#b04668}.cards-sertifics{margin-top:20px;position:relative}.mt24{margin-top:24px}.card-sertif{overflow:hidden;width:100%;position:relative;padding:24px 24px 0 24px;border-radius:24px;display:-ms-grid;display:grid;-ms-grid-columns:1fr auto;grid-template-columns:1fr auto;gap:18px}.card-sertif__text{position:relative;z-index:1;font-size:20px;line-height:1.1;padding-bottom:16px}.card-sertif__text span{font-weight:700}.card-sertif__img{height:178px;-ms-flex-item-align:end;-ms-grid-row-align:end;align-self:end;max-height:80%;max-width:100%;-o-object-fit:cover;object-fit:cover;-ms-grid-column-align:right;justify-self:right}.card-sertif__first-title{font-size:64px;font-weight:700;line-height:1;margin-bottom:8px}.bg-color-1{background:linear-gradient(289.37deg,#ffe6e8 60.05%,#fff4f5 100%)}.bg-color-2{background:linear-gradient(60.65deg,#ffe1ed 58.32%,#ffeef5 100%)}.bg-color-3{background:linear-gradient(68.49deg,#ffeef5 0,#ffe1ed 40.72%)}.bg-color-4{background:linear-gradient(94.82deg,#ffe6e8 39.39%,#fff4f5 100.92%)}.grid-03-1{display:-ms-grid;display:grid;-ms-grid-columns:.65fr 1fr;grid-template-columns:.65fr 1fr;gap:20px}.grid-1-03{display:-ms-grid;display:grid;-ms-grid-columns:1fr .65fr;grid-template-columns:1fr .65fr;gap:20px}.nomination{position:relative;z-index:1;display:-ms-grid;display:grid;-ms-grid-columns:.5fr 1fr;grid-template-columns:.5fr 1fr;gap:56px}.nomination__decor{position:absolute;right:120px;top:0;z-index:-1}.nomination__img{max-width:100%}.nomination__content{position:relative;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-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.nomination__title{font-size:32px;font-weight:800;line-height:1.18;color:#fff}.nomination__text-block{margin-top:40px;-webkit-box-flex:1;-ms-flex:1;flex:1}.nomination__nomination{font-size:24px;font-weight:700;line-height:1;background:-webkit-gradient(linear,left top,left bottom,from(#fbc975),to(#9d722d));background:linear-gradient(180deg,#fbc975 0,#9d722d 100%);-webkit-background-clip:text;background-clip:text;color:transparent}.nomination__text{font-size:32px;font-weight:700;line-height:1.08;color:#fff}.nomination__text span{color:#b04668}.nomination__bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.nomination__date{display:inline-block;font-size:14px;font-weight:400;line-height:1.14;text-transform:uppercase;color:#fff;padding:0}.nomination__link{font-size:14px;font-weight:800;line-height:1.14;letter-spacing:.1em;color:#e56f91;text-transform:uppercase}@media (max-width:1370px){}@media (max-width:991.98px){.card-sertif{padding:16px 16px 0 16px}.card-sertif__text{padding-bottom:16px}.nomination{-ms-grid-columns:1fr;grid-template-columns:1fr;gap:24px}}@media (max-width:767.98px){.mt40{margin-top: 24px;}.mt56{margin-top: 40px;}.fts24{font-size: 18px;}.pt112{padding-top:40px}.pb112{padding-bottom:40px}.title-up{font-size:18px;padding:0 24px 0 20px}.abs1{top:-40px;right:-10px}.abs3{left:12px;bottom:6px}.title-down{font-size:24px}.cards-sertifics{margin-top:18px}.card-sertif__text{font-size:18px}.card-sertif__img{max-height:190px}.card-sertif__first-title{font-size:40px}.nomination__decor{right:0;max-width:100px}.nomination__title{font-size:24px}.nomination__nomination{font-size:18px}.nomination__text{font-size:20px}}@media (max-width:479.98px){.grid-03-1,.grid-1-03{gap:8px;}.grid-03-1{margin-top:8px;}.mt20{margin-top:10px;}.about .container .about-img{max-height:380px;} .card-sertif__img{height:auto;max-height:200px;} 

