@charset "UTF-8";

@font-face {
	font-family: Gilroy;
	font-style: normal;
	font-weight: 300;
	src: url(../fonts/Gilroy-Light.woff2) format("woff2");
}

@font-face {
	font-family: Gilroy;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/Gilroy-Regular.woff2) format("woff2");
}

@font-face {
	font-family: Gilroy;
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/Gilroy-Medium.woff2) format("woff2");
}

@font-face {
	font-family: Gilroy;
	font-style: normal;
	font-weight: 600;
	src: url(../fonts/Gilroy-Semibold.woff2) format("woff2");
}

@font-face {
	font-family: Gilroy;
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/Gilroy-Bold.woff2) format("woff2");
}

@font-face {
	font-family: Gilroy;
	font-style: normal;
	font-weight: 800;
	src: url(../fonts/Gilroy-Extrabold.woff2) format("woff2");
}

@font-face {
	font-family: Gilroy;
	font-style: normal;
	font-weight: 900;
	src: url(../fonts/Gilroy-Black.woff2) format("woff2");
}

@font-face {
	font-family: Gilroy;
	font-style: normal;
	font-weight: 1000;
	src: url(../fonts/Gilroy-Heavy.woff2) format("woff2");
}

:root {
	--indexSize: 1vh + 1vw;
}

html {
	font-size: 10px;
	scroll-behavior: auto;
}

body,
html {
	height: 100%;
	min-width: 320px;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #1f2229;
	font-size: 1.8rem;
	line-height: 1.2;
}

body,
button,
input,
textarea {
	font-family: Gilroy, sans-serif;
}

button,
input,
textarea {
	font-size: inherit;
	line-height: inherit;
}

body.lock {
	overflow: hidden;
	padding-right: 17px;
}

.touch body.lock {
	padding-right: 0;
}

.wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
	opacity: 0;
	overflow: hidden;
	-webkit-transition: opacity 0.8s ease;
	transition: opacity 0.8s ease;
	-webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
}

.wrapper.loaded {
	opacity: 1;
}

@supports (overflow: clip) {
	.wrapper {
		overflow: clip;
	}
}

.wrapper>main,
main {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

::-moz-selection {
	background-color: #e84255;
	color: #fff;
}

::selection {
	background-color: #e84255;
	color: #fff;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
	border-color: #d31543;
}

input:required:valid,
textarea:required:valid {
	border-color: #bc9e7b;
}

input,
textarea {
	-webkit-box-shadow: none;
	box-shadow: none;
}

button:focus,
input,
textarea {
	outline: none;
}

[data-fullscreen] {
	min-height: 100vh;
}

.touch [data-fullscreen] {
	min-height: calc(var(--vh, 1vh) * 100);
}

@-webkit-keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
	display: none;
	height: 0;
	width: 0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}

.input,
.textarea {
	background: transparent;
	border: 0.06rem solid #1f2229;
	border-radius: 0.4rem;
	color: #1f2229;
	font-family:
		Nunito Sans,
		sans-serif;
	font-size: 1.8rem;
	font-weight: 400;
	padding: 0 2.3rem;
	text-align: left;
	-webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	width: 100%;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
	color: #616161;
	opacity: 1;
	-webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
	color: #616161;
	opacity: 1;
	-moz-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
	color: #616161;
	opacity: 1;
	-ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
	color: #616161;
	opacity: 1;
	-ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::placeholder,
.textarea::placeholder {
	color: #616161;
	opacity: 1;
	-webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
	opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
	opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
	opacity: 0;
}

.input:focus::-ms-input-placeholder,
.textarea:focus::-ms-input-placeholder {
	opacity: 0;
}

.input:focus::placeholder,
.textarea:focus::placeholder {
	opacity: 0;
}

.textarea {
	padding: 1.6rem 2.3rem;
	resize: none;
}

.select-box {
	display: block;
	font-size: 1.8rem;
	max-width: 100%;
	position: relative;
	width: 100%;
}

.select-box__current {
	background: transparent;
	border: 1px solid #bababa;
	border-radius: 0.6rem;
	color: #fff;
	color: #1f2229;
	cursor: pointer;
	font-family:
		Nunito Sans,
		sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	padding: 0;
	text-align: left;
	-webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	width: 100%;
}

.select-box__current:focus+.select-box__list {
	-webkit-animation-name: none;
	animation-name: none;
	opacity: 1;
}

.select-box__current:focus+.select-box__list .select-box__option {
	cursor: pointer;
}

.select-box__current:focus .select-box__icon {
	-webkit-transform: translateY(-60%) rotate(180deg);
	-ms-transform: translateY(-60%) rotate(180deg);
	transform: translateY(-60%) rotate(180deg);
}

.select-box__icon {
	position: absolute;
	right: 1.4rem;
	top: 52%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
	width: 0.9rem;
}

.select-box__value {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.select-box__value:first-of-type .select-box__input-text {
	color: #1f2229;
}

.select-box__input {
	display: none;
}

.select-box__input:checked+.select-box__input-text {
	display: block;
}

.select-box__input-text {
	display: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.select-box__list {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-name: HideList;
	animation-name: HideList;
	-webkit-animation-timing-function: step-start;
	animation-timing-function: step-start;
	background-color: #fff;
	border: none;
	-webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
	font-size: 1.4rem;
	list-style: none;
	opacity: 0;
	padding: 0.8rem 0;
	position: absolute;
	width: 100%;
	z-index: 2;
}

.select-box__option {
	background: #fff;
	color: #1f2229;
	display: block;
	margin-bottom: 0;
	padding: 0.5rem 1.4rem;
	-webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.select-box__option:focus,
.select-box__option:hover {
	background-color: #fbfbfb;
}

@-webkit-keyframes HideList {
	0% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
		z-index: 1;
	}

	to {
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
		z-index: -1;
	}
}

@keyframes HideList {
	0% {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
		z-index: 1;
	}

	to {
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
		z-index: -1;
	}
}

.control {
	color: #1f2229;
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: 400;
	margin-bottom: 0;
	padding-left: 2.9rem;
	padding-top: 0.9rem;
	position: relative;
}

.control,
.control a {
	display: inline-block;
	line-height: 1;
}

.control a {
	color: #cd1e40;
	text-decoration: none;
}

.control a:after {
	background-color: #cd1e40;
	content: "";
	display: block;
	height: 1px;
	-webkit-transition: width 0.5s ease-out;
	transition: width 0.5s ease-out;
	width: 100%;
}

.control a:hover {
	color: #cd1e40;
}

.control a:hover:after {
	width: 0;
}

.control input {
	left: 0.6rem;
	opacity: 0;
	position: absolute;
	top: 0.2rem;
	z-index: -1;
}

.control_indicator {
	background: #fff;
	border: 0.07rem solid #1f2229;
	border-radius: 0.4rem;
	height: 2.1rem;
	left: 0;
	position: absolute;
	top: 0.4rem;
	width: 2.1rem;
}

.control_indicator:after {
	-webkit-box-sizing: unset;
	box-sizing: unset;
	content: "";
	display: none;
	position: absolute;
}

.control-checkbox .control_indicator:after {
	background: url(../img/checkbox.svg) 50% / contain no-repeat;
	height: 0.8rem;
	left: 51%;
	top: 52%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 1rem;
}

.control input:checked~.control_indicator:after {
	display: block;
}

.link {
	position: relative;
}

.link:hover {
	color: #e84255;
}

.link:after {
	background: #212529;
	bottom: 0;
	content: "";
	height: 0.1rem;
	left: 0;
	position: absolute;
	-webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	width: 100%;
}

.link:hover:after {
	width: 0;
}

.h1 {
	font-size: 3.8rem;
	font-weight: 800;
	line-height: 1.2105263158;
}

.h2 {
	font-size: 6rem;
	font-weight: 200;
	text-transform: uppercase;
}

.h3 {
	font-size: 2rem;
	font-weight: 600;
}

img {
	height: auto;
	max-width: 100%;
}

a {
	-webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

a,
a:hover {
	color: #1f2229;
	text-decoration: none;
}

.container-1440 {
	max-width: 152rem;
	max-width: 174.4rem;
}

.container,
.container-1440 {
	margin: 0 auto;
	padding-left: 4rem;
	padding-right: 4rem;
}

.container {
	max-width: 152rem;
	width: 100%;
}

.btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	background: #3a4fa1;
	border: none;
	border-radius: 0.6rem;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family:
		Nunito Sans,
		sans-serif;
	font-size: 1.8rem;
	font-weight: 400;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.2;
	padding: 0;
	position: relative;
	text-shadow: none;
	text-transform: none;
	-webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.btn:hover {
	background: #4f66bf;
	color: #fff;
}

svg {
	-webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.svg-hidden {
	display: none;
}

.fancybox-custom .fancybox-button {
	background: #1e1e20;
	color: #fff;
	height: 5.6rem;
	width: 5.6rem;
}

.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right {
	background: #1e1e20;
	color: #fff;
	height: 5.6rem;
	padding: 0.5rem;
	width: 5.6rem;
}

.fancybox-custom.fancybox-is-open .fancybox-bg {
	background: #fff;
	opacity: 0.98;
}

.swiper-wrapper {
	-webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@-webkit-keyframes hvr-buzz-out {
	10% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}

	20% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}

	30% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}

	40% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}

	50% {
		-webkit-transform: translateX(2px) rotate(1deg);
		transform: translateX(2px) rotate(1deg);
	}

	60% {
		-webkit-transform: translateX(-2px) rotate(-1deg);
		transform: translateX(-2px) rotate(-1deg);
	}

	70% {
		-webkit-transform: translateX(2px) rotate(1deg);
		transform: translateX(2px) rotate(1deg);
	}

	80% {
		-webkit-transform: translateX(-2px) rotate(-1deg);
		transform: translateX(-2px) rotate(-1deg);
	}

	90% {
		-webkit-transform: translateX(1px) rotate(0);
		transform: translateX(1px) rotate(0);
	}

	to {
		-webkit-transform: translateX(-1px) rotate(0);
		transform: translateX(-1px) rotate(0);
	}
}

@keyframes hvr-buzz-out {
	10% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}

	20% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}

	30% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}

	40% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}

	50% {
		-webkit-transform: translateX(2px) rotate(1deg);
		transform: translateX(2px) rotate(1deg);
	}

	60% {
		-webkit-transform: translateX(-2px) rotate(-1deg);
		transform: translateX(-2px) rotate(-1deg);
	}

	70% {
		-webkit-transform: translateX(2px) rotate(1deg);
		transform: translateX(2px) rotate(1deg);
	}

	80% {
		-webkit-transform: translateX(-2px) rotate(-1deg);
		transform: translateX(-2px) rotate(-1deg);
	}

	90% {
		-webkit-transform: translateX(1px) rotate(0);
		transform: translateX(1px) rotate(0);
	}

	to {
		-webkit-transform: translateX(-1px) rotate(0);
		transform: translateX(-1px) rotate(0);
	}
}

.hvr-buzz-out {
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	display: inline-block;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	vertical-align: middle;
}

.hvr-buzz-out:active,
.hvr-buzz-out:focus,
.hvr-buzz-out:hover {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-name: hvr-buzz-out;
	animation-name: hvr-buzz-out;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes fadeInDownMini {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -32%, 0);
		transform: translate3d(0, -32%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes fadeInDownMini {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -32%, 0);
		transform: translate3d(0, -32%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.fadeInDownMini {
	-webkit-animation-name: fadeInDownMini;
	animation-name: fadeInDownMini;
}

[class*="-ibg"] {
	position: relative;
}

[class*="-ibg"] img {
	height: 100%;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}

[class*="-ibg_contain"] img {
	-o-object-fit: contain;
	object-fit: contain;
}

header .container {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 3.8rem;
	padding-top: 3.6rem;
	width: 100%;
}

.header__info {
	display: flex;
	gap: 6.8rem;
}

.header__info-tel {
	font-size: 2.2rem;
	display: flex;
	align-items: center;
	gap: 0.37rem;
	font-weight: 600;
	color: #1F2229;
}

.header__lk,
header .container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header__lk {
	cursor: pointer;
	gap: 0.89rem;
}

.header__lk span {
	color: #231f20;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 15px;
	max-width: 11.4rem;
	text-align: right;
}

.header__lk img {
	height: 2.9rem;
	width: 2.8rem;
}

.massonry {
	gap: 1.3rem;
	margin-bottom: 1.2rem;
}

.massonry,
.massonry__item-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.massonry__item-left {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	border-radius: 24px;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4.2rem;
	height: 57.8rem;
	max-width: 89rem;
	position: relative;
	width: 100%;
}

.massonry__item-left h1 {
	color: #fff;
	font-size: 6.3rem;
	font-weight: 800;
	line-height: 6.8339rem;
	margin-bottom: 4.2rem;
}

.massonry__item-left a {
	background: #e84255;
	border-radius: 0.5rem;
	height: 5.9rem;
	max-width: 28.6rem;
	width: 100%;
}

.massonry__item-left .massonry__subtext {
	color: #a8afcb;
	font-size: 1.2rem;
	font-weight: 300;
	margin-top: 1rem;
	max-width: 28.6rem;
	text-align: center;
}

.massonry__item-left ul {
	margin-bottom: 4.4rem;
	padding-left: 0;
}

.massonry__item-left ul li {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 500;
	list-style: none;
	padding-left: 2rem;
	position: relative;
}

.massonry__item-left ul li:before {
	color: #e84255;
	content: "•";
	font-size: 4rem;
	left: 0;
	position: absolute;
	top: -0.5rem;
}

.massonry__item-left-text {
	max-width: 58.1rem;
	padding-left: 5.6rem;
	padding-top: 12.5rem;
	position: relative;
	width: 100%;
	z-index: 2;
}

.massonry__bg {
	bottom: 0;
	height: 100%;
	position: absolute;
	right: 0;
	width: 100%;
	z-index: 1;
}

.massonry__bg img {
	border-radius: 2.4rem;
	height: 100%;
	width: 100%;
}

.massonry__item-right {
	border-radius: 2.4rem;
	max-width: 53.8rem;
	position: relative;
	width: 100%;
}

.massonry__item-right-text {
	max-width: 32rem;
	padding-left: 3.7rem;
	padding-top: 12.5rem;
	position: relative;
	width: 100%;
	z-index: 2;
}

.massonry__item-right-text h2 {
	color: #fff;
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 5.4rem;
}

.massonry__item-right-text p {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 3.5rem;
	margin-bottom: 0;
}

.best__wrapper {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	gap: 1.2rem;
	justify-content: space-between;
	margin-bottom: 6rem;
}

.best__wrapper,
.best__wrapper-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.best__wrapper-item {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #3a4fa1;
	border-radius: 1.8rem;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	gap: 1.8rem;
	height: 13.9rem;
	justify-content: center;
	width: 100%;
}

.clients__wrapper-item ul {
	padding-left: 1.5rem;
}

.clients__wrapper-item ul:first-of-type li {
	padding-left: 0.5rem;
}

.clients__wrapper-item-text {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 2.1rem;
}

.clients__wrapper-item-text:first-of-type {
	padding-top: 2.1rem;
}

.clients__wrapper-item {
	max-width: 95.7rem;
	width: 100%;
}

.clients__wrapper-item h2 {
	color: #1f2229;
	font-size: 4.5rem;
	font-weight: 700;
	margin-bottom: 5.5rem;
}

.clients__wrapper-item-wrapper {
	gap: 3.5rem;
}

.clients__wrapper,
.clients__wrapper-item-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.clients__wrapper {
	gap: 1.3rem;
	margin-bottom: 6.1rem;
}

.clients__wrapper-item-left {
	max-width: 59.7rem;
	width: 100%;
}

.clients__wrapper-item-images {
	max-width: 32.5rem;
	width: 100%;
}

.clients__wrapper-item-images img:first-of-type {
	width: 100%;
}

.clients__wrapper-item-images img,
.clients__wrapper-photo img {
	border-radius: 1.8rem;
}

.clients__wrapper-item-text li,
.clients__wrapper-item-text p {
	color: #1f2229;
	font-size: 1.9rem;
	font-weight: 400;
	line-height: 2.9rem;
}

.clients__wrapper-item-images a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	background: #e84255;
	border: none;
	border-radius: 0.5rem;
	-webkit-box-shadow: 0 0 4rem 0 rgba(31, 34, 41, 0.1);
	box-shadow: 0 0 4rem 0 rgba(31, 34, 41, 0.1);
	color: #fff;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 2rem;
	font-weight: 400;
	gap: 1.6rem;
	height: 7.8rem;
	justify-content: center;
	margin-top: 1.6rem;
	padding-left: 4rem;
	padding-right: 4rem;
	text-align: left;
}

.clients__wrapper-item-images a img {
	max-width: 2.2rem;
}

.howitwork h2 {
	color: #1f2229;
	font-size: 4.5rem;
	font-weight: 700;
	margin-bottom: 3.7rem;
}

.howitwork-wrapper {
	display: grid;
	gap: 3rem;
	grid-template-columns: repeat(3, 1fr);
}

.howitwork-item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	background-image: url(../img/how-bg.jpg);
	background-repeat: no-repeat;
	border-radius: 1.8rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 23.5rem;
}

.howitwork-item img {
	height: 14.6rem;
	max-width: 12.7rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.howitwork-item span {
	color: #000;
	font-size: 2.4rem;
	font-weight: 500;
	padding-left: 3.8rem;
	padding-right: 3.8rem;
}

.callback,
.howitwork {
	margin-bottom: 6rem;
}

.callback {
	background: #26387d;
	border-radius: 2.4rem;
	padding-top: 3.7rem;
}

.callback-wrapper {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 3.3rem;
	justify-content: center;
	margin: 0 auto;
	max-width: 96.5rem;
}

.callback-form,
.callback-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.callback-form {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-bottom: 5.6rem;
	padding-top: 4.5rem;
	width: 100%;
}

.callback-form h2 {
	color: #fff;
	font-size: 4.5rem;
	font-weight: 700;
	margin-bottom: 1.9rem;
}

.callback-form h3 {
	line-height: 2.2rem;
	margin-bottom: 3.1rem;
}

.callback-form h3,
.callback-form input {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 300;
}

.callback-form input {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: transparent;
	border: 0.1rem solid #d9d9d9;
	border-radius: 0.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 5rem;
	margin-bottom: 0.9rem;
	padding-left: 1.6rem;
	width: 100%;
}

.callback-form input::placeholder {
	color: #fff;
	opacity: 0.7;
}

.callback-form textarea::placeholder {
	color: #fff;
	opacity: 0.7;
}

.callback-form input:last-of-type {
	margin-bottom: 0;
}

.callback-form textarea {
	background: transparent;
	border: 0.1rem solid #d9d9d9;
	border-radius: 0.5rem;
	font-size: 1.8rem;
	font-weight: 300;
	height: 10.4rem;
	padding-left: 1.6rem;
	padding-top: 1.5rem;
	resize: none;
}

.callback-form button,
.callback-form textarea {
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 0.9rem;
	width: 100%;
}

.callback-form button {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	background: #e84255;
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	font-size: 2rem;
	font-weight: 500;
	height: 5.5rem;
	justify-content: center;
	margin-bottom: 1.3rem;
}

.callback-form button,
.callback__personal {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.callback__personal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 1.1rem;
}

.callback__personal input {
	border-radius: 0.2rem;
	height: 1.8rem;
	width: 1.8rem;
}

.callback__personal span {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 300;
	opacity: 0.5;
}

.callback-women {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 43.1rem;
	width: 100%;
}

.footer {
	background: #f7f7f8;
	border-radius: 2.4rem;
	padding: 6.9rem 6.7rem 7.6rem 6.9rem;
}

.footer span {
	color: #4a4a4a;
	display: block;
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 2.9rem;
	margin-top: 4.4rem;
}

.footer-wrapper {
	gap: 9.2rem;
}

.footer-item,
.footer-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer-item {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 2.2rem;
}

.footer-item p {
	color: #000;
	font-size: 2rem;
	font-weight: 400;
	margin-bottom: 2rem;
}

.footer-item a[href^="tel:"] {
	color: #000;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.footer-item a[href^="mail:"] {
	color: #000;
	font-size: 2rem;
	font-weight: 400;
	margin-bottom: 2rem;
}

.footer-item img {
	margin-top: 0.2rem;
}

.footer-left {
	max-width: 42.5rem;
	width: 100%;
}

.footer-left h2 {
	color: #000;
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 3.1rem;
}

.footer-right {
	width: 100%;
}

.footer-right h3 {
	color: #000;
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 1.9rem;
}

.footer-right p {
	color: #4a4a4a;
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 0;
}

.footer-policy {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 2rem;
}

.footer-policy a {
	color: #4a4a4a;
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 0;
	text-decoration: underline;
}

.massonry__bg,
.massonry__bg img {
	-o-object-fit: cover;
	object-fit: cover;
}

.best__wrapper-item {
	padding-left: 2rem;
	padding-right: 2rem;
}

.clients__wrapper-item-text.mobile {
	display: none;
}

.howtoconnect {
	margin-bottom: 6rem;

	h2 {
		color: #1F2229;
		font-size: 4.5rem;
		font-weight: 700;
		margin-bottom: 3.6rem;
	}
}

.howtoconnect__wrapper {
	display: grid;
	gap: 0.9rem;
	grid-template-columns: repeat(4, 1fr);

}

.howtoconnect__wrapper-item {
	border-radius: 2.4rem;
	background: #26387D;
	/* height: 19.3rem; */
	display: flex;
	flex-direction: column;
	padding-top: 2.1rem;
	padding-right: 0.9rem;
	padding-left: 2.1rem;
	padding-bottom: 1.8rem;
}

.howtoconnect__item-top {
	display: flex;
	gap: 1.4rem;
	margin-bottom: 2rem;
	align-items: center;

	span {
		color: #FFF;
		font-size: 7rem;
		font-weight: 800;
		opacity: 0.7;
		line-height: 1;
	}

	h3 {
		color: #FFF;
		font-size: 2.4rem;
		font-weight: 600;
		line-height: 1;
		max-width: 26.4rem;
		margin-bottom: 0;
	}
}

.howtoconnect__wrapper-item p {
	color: #FFF;
	font-size: 1.6rem;
	font-weight: 400;
	margin-bottom: 0;
	opacity: 0.7;
}

@media (min-width: 1930px) {
	html {
		font-size: 12px;
	}
}

@media (max-width: 1700px) {
	html {
		font-size: 9px;
	}
}

@media (max-width: 1500px) {
	.control {
		font-size: 1.5rem;
	}
}

@media (max-width: 1430px) {
	html {
		font-size: 8.6px;
	}
}

@media (max-width: 1400px) {
	.h1 {
		font-size: 3.3rem;
	}
}

@media (max-width: 1320px) {
	html {
		font-size: 8.4px;
	}
}

@media (max-width:1150px) {
	.howtoconnect__wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1100px) {
	body.lock {
		padding-right: 0;
	}

}

@media (max-width: 930px) {
	.massonry__item-left-text {
		padding-left: 3.6rem;
		padding-top: 6.5rem;
	}

	.massonry__item-right-text {
		padding-top: 6.5rem;
	}

	.best__wrapper-item {
		gap: 1rem;
	}

	.best__wrapper-item img {
		width: 24%;
	}

	.massonry__item-left h1 {
		font-size: 5rem;
		line-height: 5rem;
		margin-bottom: 2.2rem;
	}
}

@media (max-width: 776px) {
	.control {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.callback-wrapper {
		padding-bottom: 3rem;
	}
  .header__info{
    gap: 1rem;
    margin-left: 1rem;
  }
  .header__info-tel{
    font-size: 1.2rem;
    margin-right: 1rem;
  }

	.howtoconnect {
		h2 {
			font-size: 3.5rem;
		}
	}

	.howtoconnect__item-top {
		span {
			font-size: 3.8rem;
		}

		h3 {
			font-size: 2rem;
		}

		.howtoconnect__wrapper-item p {
			font-size: 1.6rem;
		}
	}

	.callback-women {
		display: none;
	}

	html {
		font-size: 10px;
	}

	.touch [data-fullscreen] {
		-webkit-transition: height 0.2s;
		transition: height 0.2s;
	}

	.input,
	.textarea {
		font-size: 15px;
		padding: 0 13px;
		text-align: left;
	}

	.textarea {
		padding: 13px;
	}

	.select-box {
		font-size: 14px;
		width: 100%;
	}

	.select-box__current {
		font-size: 14px;
		height: 54px;
		padding-left: 12px;
		padding-right: 35px;
	}

	.select-box__icon {
		right: 16px;
		width: 10px;
	}

	.select-box__list {
		font-size: 14px;
		width: 100%;
	}

	.select-box__option {
		padding: 6px 20px;
	}

	.h1 {
		font-size: 23px;
	}

	.h2 {
		font-size: 27px;
		letter-spacing: 0;
	}

	.h3 {
		font-size: 15px;
	}

	.container,
	.container-1440 {
		padding-left: 12px;
		padding-right: 12px;
	}

	.btn {
		font-size: 16px;
		height: 50px;
		line-height: 1;
		padding: 0;
	}

	.fancybox-custom .fancybox-button {
		height: 4rem;
		width: 4rem;
	}

	.fancybox-custom .fancybox-navigation .fancybox-button {
		top: calc(50% - 20px);
	}

	.fancybox-custom .fancybox-navigation .fancybox-button--arrow_left,
	.fancybox-custom .fancybox-navigation .fancybox-button--arrow_right {
		height: 4rem;
		width: 4rem;
	}

	.massonry {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.massonry__item-left {
		max-width: 100%;
	}

	.massonry__item-right {
		height: 400px;
		max-width: 100%;
	}

	.massonry__item-right-text h2 {
		margin-bottom: 30px;
	}

	.best__wrapper {
		display: grid;
		gap: 1rem;
		grid-template-columns: repeat(2, 1fr);
	}

	header .container {
		padding-bottom: 2rem;
		padding-top: 2rem;
	}

	.best__wrapper {
		margin-bottom: 3rem;
	}

	.clients__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.clients__wrapper-item h2 {
		margin-bottom: 1rem;
	}

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

	.howitwork-wrapper {
		gap: 1rem;
		grid-template-columns: repeat(2, 1fr);
	}

	.howitwork-item {
		background-size: cover;
		height: auto;
		padding-bottom: 24px;
	}

	.howitwork-item img {
		height: 10rem;
	}

	.howitwork-item span {
		font-size: 1.8rem;
		padding-left: 1.2rem;
		padding-right: 1.2rem;
	}

	.clients__wrapper-item h2,
	.howitwork h2 {
		font-size: 3.5rem;
	}

	.massonry__item-left-text {
		display: flex;
		flex-direction: column;
		height: 100%;
		justify-content: space-between;
	}

	.massonry__item-left-bot {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.header__lk span {
		font-size: 12px;
	}

	.massonry__item-left a {
		max-width: 100%;
	}

	.callback-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 1rem;
		padding-left: 3rem;
		padding-right: 3rem;
	}

	.callback-form {
		padding-bottom: 0;
		padding-top: 0;
	}

	.callback-form h2 {
		font-size: 3.5rem;
	}

	.footer-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 3rem;
	}

	.footer {
		padding: 3.9rem 3.7rem 3.6rem 3.9rem;
	}

	.footer-item p {
		font-size: 1.8rem;
	}
}

@media (max-width: 560px) {
	.callback-form h2 {
		font-size: 3rem;
	}

	.massonry__item-left h1 {
		font-size: 3.4rem;
		line-height: 39.265px;
		margin-bottom: 1.8rem;
	}

	.massonry__item-left-text {
		padding: 2rem 2rem 2rem;
	}

	.massonry__item-left {
		height: 48.5rem;
	}

	.massonry__item-right-text {
		padding: 2rem 2rem 2rem;
	}

	.massonry__item-right-text h2 {
		font-size: 3.4rem;
		margin-bottom: 29px;
	}

	.massonry__item-left ul li {
		font-size: 2rem;
	}

	.massonry__item-right-text p {
		font-size: 2.2rem;
		max-width: 196px;
	}

	.best__wrapper-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		font-size: 1.2rem;
		height: 10rem;
		max-width: 48%;
		text-align: center;
		width: 100%;
	}

	.best__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.clients__wrapper-item-images,
	.clients__wrapper-item-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.clients__wrapper-item-images {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		max-width: 100%;
	}

	.clients__wrapper-item-images img {
		margin: 0 auto;
		width: 100%;
	}

	.clients__wrapper-item-images a {
		font-size: 1.8rem;
		max-width: 100%;
		width: 100%;
	}

	.clients__wrapper-item-images a img {
		max-width: 31px;
	}

	.footer span {
		margin-bottom: 2rem;
		margin-top: 2rem;
	}

	header .container {
		gap: 2rem;
	}

	.clients__wrapper-item-text img,
	.clients__wrapper-item-text.desktop {
		display: none;
	}

	.clients__wrapper-item-text.mobile {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

@media (max-width: 458px) {
	.footer-policy {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 1rem;
	}

	.howtoconnect__wrapper-item p {
		font-size: 1.4rem;
	}

	.howtoconnect__item-top {
		h3 {
			font-size: 1.6rem;
		}

	}

	.howtoconnect__item-top {
		gap: 0.8rem;
	}

	.howtoconnect__wrapper-item {
		padding-left: 1.4rem;
		padding-top: 1.4rem;
		border-radius: 1.4rem;
	}
  .header__logo{
    width: 100%;
    max-width: 30%;
  }
  .header__info-tel{
    white-space: nowrap;
    margin-right: 1rem;
  }
  .header__info{
    max-width: 100%;
  }
}

@media (max-width: 430px) {
	/* .header__logo {
		max-width: 50%;
	} */
  .header__logo{
    max-width: 40%;
  }
  .header__lk span{
    display: none;
  }

	.footer {
		padding: 3.9rem 1.7rem 3.6rem 1.9rem;
	}

	.massonry__item-left h1 {
		font-size: 3rem;
	}

	.massonry__item-left ul li {
		font-size: 1.8rem;
	}

	.massonry__item-left ul li:before {
		font-size: 3rem;
		top: -0.7rem;
	}

	.massonry__item-left-text {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: column;
		flex-direction: column;
		height: 100%;
		justify-content: space-between;
	}
}

@media (max-width: 340px) {
	.massonry__item-left h1 {
		font-size: 2.6rem;
	}

	.massonry__item-right-text h2 {
		font-size: 2.6rem;
		margin-bottom: 1rem;
	}

	.clients__wrapper-item-text:first-of-type {
		padding-top: 0;
	}

	.clients__wrapper-item h2,
	.howitwork h2 {
		font-size: 2.4rem;
		margin-bottom: 1rem;
	}

	.howitwork-item span {
		font-size: 1.6rem;
	}

	.howtoconnect__item-top {
		span {
			font-size: 2.8rem;
		}

		h3 {
			font-size: 1.4rem;
		}
	}

	.howtoconnect__wrapper-item p {
		font-size: 1.2rem;
	}

	.howtoconnect__wrapper-item {
		padding-bottom: 1rem;
	}

	.howtoconnect {
		h2 {
			font-size: 2.4rem;
			margin-bottom: 1rem;
		}
	}
}