@charset "UTF-8";
@import "../fonts/icomoon/style.css";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
	--white: #fff;
	--deep-blue-txt-color: #011632;
	--blue: #1376f8;
	--light-blue: #e6f6fe;
	--blue-light-250: rgba(230, 246, 254, 0.25);
	--grey-secondary: #b4b4b4;
	--font-family: "Inter", sans-serif;
	--second-family: "Roboto", sans-serif;
}

* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

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

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

aside,
nav,
footer,
header,
section {
	display: block;
}

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

body {
	line-height: 1;
	font-family: "Inter";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: "Inter";
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	background: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

html.lock, body._lock {
	overflow: hidden;
	-ms-touch-action: none;
	    touch-action: none;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 0px;
}

body {
	background: #fff;
}

._ibg {
	position: relative;
}
._ibg img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	   object-fit: cover;
}

body.ie ._ibg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.ie ._ibg img {
	width: 0;
	height: 0;
	opacity: 0;
	visibility: hidden;
}

.wrapper {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	overflow: hidden;
}
.wrapper > main {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.wrapper > * {
	min-width: 0;
}

._container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 20px;
}

.title {
	font-family: var(--second-family);
	font-weight: 800;
	font-size: 58px;
	line-height: 110%;
	color: var(--deep-blue-txt-color);
}
.title span {
	color: var(--blue);
}
@media (max-width: 1024px) {
	.title {
		font-size: 40px;
	}
}
@media (max-width: 375px) {
	.title {
		font-size: 34px;
	}
}

.btn {
	position: relative;
	cursor: pointer;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 18px 20px;
	height: 66px;
	font-family: var(--second-family);
	font-weight: 500;
	font-size: 20px;
	line-height: 115%;
	color: var(--white);
	background: var(--blue);
	border-radius: 6px;
	text-align: center;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.btn:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #1339f8;
	}
}
@media (max-width: 1024px) {
	.btn {
		height: 60px;
	}
}

.text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 170%;
	color: var(--deep-blue-txt-color);
}
.text span {
	font-weight: 600;
}
@media (max-width: 480px) {
	.text {
		font-size: 16px;
	}
}

.header {
	position: relative;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	margin: 30px 0px 0px 0px;
}
@media (max-width: 820px) {
	.header {
		margin: 20px 0px 0px 0px;
	}
}

.header__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: var(--light-blue);
	border-radius: 6px;
	padding: 15px;
	height: 78px;
}
.header__row._active .header__logo {
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.header__logo {
	white-space: nowrap;
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	color: var(--deep-blue-txt-color);
	position: relative;
	z-index: 10;
	margin: 0px 20px 0px 0px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.menu__list li {
	margin: 0px 30px 0px 0px;
}
.menu__list li:last-child {
	margin: 0;
}
@media (max-width: 820px) {
	.menu__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.menu__list li {
		margin: 0px 0px 30px 0px;
	}
}

.menu__link {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	color: var(--deep-blue-txt-color);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	padding: 0px 10px;
	position: relative;
}
.menu__link::before {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--blue);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1024px) {
	.menu__link {
		padding: 0;
	}
}
@media (max-width: 820px) {
	.menu__link {
		color: #fff;
		font-size: 18px;
	}
}
@media (min-width: 1024px) {
	.menu__link:hover {
		color: var(--blue);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.menu__link:hover::before {
		width: 100%;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.menu__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
@media (max-width: 820px) {
	.menu__body {
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
		-webkit-transition: all 0.6s ease 0s;
		-o-transition: all 0.6s ease 0s;
		transition: all 0.6s ease 0s;
		background: var(--deep-blue-txt-color);
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		padding: 30px 40px;
		overflow: auto;
	}
	.menu__body._active {
		top: 0;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 820px) and (max-width: 820px) {
	.menu__body {
		padding: 144px 20px 100px 20px;
	}
}
.menu__body .hero-phone {
	display: none;
}
@media (max-width: 820px) {
	.menu__body .hero-phone {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.menu__body .hero-phone .hero-phone__block a {
	color: #fff;
}
@media (max-width: 820px) {
	.menu__body > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}

.icon-menu {
	display: none;
}
@media (max-width: 820px) {
	.icon-menu {
		display: block;
		width: 48px;
		height: 48px;
		background: var(--blue);
		border-radius: 6px;
		position: relative;
		z-index: 1;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.icon-menu::before {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		    -ms-transform: translate(-50%, -50%);
		        transform: translate(-50%, -50%);
		color: #fff;
		font-size: 20px;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.icon-menu._active {
		background: #fff;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.icon-menu._active::before {
		color: var(--blue);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.menu__time {
	position: relative;
	padding: 0px 0px 0px 40px;
	display: none;
}
.menu__time p {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 170%;
	color: var(--white);
}
.menu__time::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 24px;
	height: 24px;
	background: url("../img/icons/time.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 820px) {
	.menu__time {
		display: block;
	}
}

.header__btn {
	height: 48px;
}
@media (max-width: 820px) {
	.header__btn {
		display: none;
	}
}

body::after {
	content: "";
	background-color: rgba(0, 0, 0, 0.8);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: opacity 0.8s ease 0s;
	-o-transition: opacity 0.8s ease 0s;
	transition: opacity 0.8s ease 0s;
	pointer-events: none;
	z-index: 149;
}

.popup-show body::after {
	opacity: 1;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 30px 10px;
	-webkit-transition: visibility 0.8s ease 0s;
	-o-transition: visibility 0.8s ease 0s;
	transition: visibility 0.8s ease 0s;
	visibility: hidden;
	pointer-events: none;
}

.popup_show {
	z-index: 150;
	visibility: visible;
	overflow: auto;
	pointer-events: auto;
}

.popup_show .popup__content {
	visibility: visible;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

.popup__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 100%;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	width: 100%;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	align-items: center;
}

.popup__content {
	visibility: hidden;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	transition: -webkit-transform 0.3s ease 0s;
	-o-transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	width: 100%;
	max-width: 900px;
	border-radius: 20px;
}
.lock .popup__content {
	visibility: visible;
}

.popup__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	background: url("../img/icons/close.svg") no-repeat;
	background-size: contain;
}

.callback-popup .popup__content {
	max-width: 845px;
	background: #fff;
	padding: 40px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 6px;
	overflow: hidden;
}
.callback-popup .popup__content > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}
@media (max-width: 480px) {
	.callback-popup .popup__content > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
.callback-popup .popup__title {
	text-align: center;
	font-size: 50px;
}
@media (max-width: 480px) {
	.callback-popup .popup__title {
		font-size: 32px;
	}
}
.callback-popup .contactus-form .form__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.callback-popup .contactus-form .input, .callback-popup .contactus-form textarea, .callback-popup .contactus-form .btn {
	max-width: 328px;
}
.callback-popup .contactus-form .btn {
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
}

.footer {
	margin: 120px 0px 0px 0px;
}
.footer ._container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.footer ._container > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}
@media (max-width: 1024px) {
	.footer {
		margin: 80px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.footer {
		margin: 60px 0px 0px 0px;
	}
}

.footer__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-bottom: 2px solid var(--deep-blue-txt-color);
	padding: 0px 0px 30px 0px;
}
.footer__top > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 700px) {
	.footer__top {
		border: 0;
		padding: 0;
	}
}

.footer__logo {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 32px;
	color: var(--deep-blue-txt-color);
}

.footer__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.footer__menu a {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 18px;
	line-height: 140%;
	color: var(--deep-blue-txt-color);
	white-space: nowrap;
}
@media (min-width: 1024px) {
	.footer__menu a:hover {
		text-decoration: underline;
	}
}
.footer__menu > *:not(:last-child) {
	margin: 0px 30px 0px 0px;
}
@media (max-width: 700px) {
	.footer__menu {
		display: none;
	}
}

.footer__contacts .contacts-block__item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 320px;
	        flex: 0 1 320px;
}

.footer__blocks {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 20px;
}
@media (max-width: 900px) {
	.footer__blocks {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}

.footer-vk {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: var(--third-family);
	font-weight: 600;
	font-size: 24px;
	color: var(--deep-blue-txt-color);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-ms-flex-item-align: start;
	    align-self: start;
}
.footer-vk .icon-vk {
	margin: 0px 14px 0px 0px;
}
.footer-vk .icon-vk::before {
	font-size: 38px;
	color: #000;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.footer-vk:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		color: #1339f8;
	}
	.footer-vk:hover .icon-vk::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		color: #1339f8;
	}
}
@media (max-width: 480px) {
	.footer-vk {
		font-size: 18px;
	}
}

.footer-bot {
	margin: 30px 0px 0px 0px;
	background: var(--deep-blue-txt-color);
}

.footer-bot__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 40px 0px;
}
.footer-bot__row p, .footer-bot__row a {
	text-align: center;
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 18px;
	line-height: 165%;
	color: var(--white);
}
@media (max-width: 820px) {
	.footer-bot__row p, .footer-bot__row a {
		font-size: 14px;
	}
}
@media (min-width: 1024px) {
	.footer-bot__row a:hover {
		text-decoration: underline;
	}
}
.footer-bot__row > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 700px) {
	.footer-bot__row > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 700px) {
	.footer-bot__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

input {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input::-webkit-input-placeholder {
	opacity: 1;
}

input::-moz-placeholder {
	opacity: 1;
}

input:-moz-placeholder {
	opacity: 1;
}

input:-ms-input-placeholder {
	opacity: 1;
}

input:focus::-webkit-input-placeholder {
	opacity: 0;
}

input:focus::-moz-placeholder {
	opacity: 0;
}

input:focus:-moz-placeholder {
	opacity: 0;
}

input:focus:-ms-input-placeholder {
	opacity: 0;
}

.input, textarea {
	width: 100%;
	height: 60px;
	padding: 10px 12px;
	border: 1px solid var(--grey-secondary);
	border-radius: 6px;
	font-size: 16px;
	font-family: var(--font-family);
	letter-spacing: 0.01em;
	color: #000;
}
.input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: var(--grey-secondary);
}
.input::-moz-placeholder, textarea::-moz-placeholder {
	color: var(--grey-secondary);
}
.input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: var(--grey-secondary);
}
.input::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: var(--grey-secondary);
}
.input::placeholder, textarea::placeholder {
	color: var(--grey-secondary);
}
.input._form-error, textarea._form-error {
	border: 2px solid red !important;
	background: rgba(255, 62, 62, 0.2);
}
@media (max-width: 480px) {
	.input, textarea {
		height: 50px;
		font-size: 14px;
	}
}

textarea {
	resize: none;
	height: 112px;
	border-radius: 6px;
	background: var(--light-blue);
}

.form__item {
	width: 100%;
	position: relative;
}
.form__item._form-error input::-webkit-input-placeholder, .form__item._form-error textarea::-webkit-input-placeholder {
	color: red;
}
.form__item._form-error input::-moz-placeholder, .form__item._form-error textarea::-moz-placeholder {
	color: red;
}
.form__item._form-error input:-ms-input-placeholder, .form__item._form-error textarea:-ms-input-placeholder {
	color: red;
}
.form__item._form-error input::-ms-input-placeholder, .form__item._form-error textarea::-ms-input-placeholder {
	color: red;
}
.form__item._form-error input::placeholder, .form__item._form-error textarea::placeholder {
	color: red;
}

.form-sent-msg {
	background: var(--deep-blue-txt-color);
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 845px;
	max-width: calc(100% - 20px);
	height: 574px;
	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: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 6px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.form-sent-msg img {
	width: 136px;
	margin: 0px 0px 30px 0px;
}
@media (max-width: 480px) {
	.form-sent-msg img {
		width: 110px;
	}
}
.form-sent-msg p {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 36px;
	line-height: 170%;
	color: var(--white);
}
@media (max-width: 820px) {
	.form-sent-msg p {
		font-size: 28px;
	}
}
@media (max-width: 480px) {
	.form-sent-msg p {
		font-size: 24px;
	}
}
.form-sent-msg._active {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 1;
	visibility: visible;
}
@media (max-width: 820px) {
	.form-sent-msg {
		height: 400px;
	}
}

.phone-form > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.phone-form__block {
	max-width: 458px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
.phone-form__block::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 18px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 20px;
	height: 20px;
	background: url("../img/icons/tel.svg") no-repeat;
	background-size: contain;
}
.phone-form__block input {
	height: 48px;
	border-radius: 6px 0 0 6px;
	padding-left: 48px;
}
.phone-form__block .btn {
	height: 48px;
	border-radius: 0 6px 6px 0;
	font-size: 16px;
	padding: 8px;
	font-family: var(--font-family);
	font-weight: 600;
	line-height: 170%;
	text-align: center;
	color: var(--white);
}

.contactus-form {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
.contactus-form input,
.contactus-form textarea {
	border: 2px solid var(--blue);
}
.contactus-form > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
.contactus-form .btn {
	width: 100%;
}

.checkbox {
	position: relative;
}
.checkbox:not(:last-child) {
	margin-bottom: em(5);
}
.checkbox__input {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}
.checkbox__input:checked + .checkbox__label:before {
	background: #000;
	background: var(--blue) url("../img/icons/check.svg") no-repeat;
	background-size: 22px;
	background-position: center;
	border: 0;
}
.checkbox__label {
	cursor: pointer;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	display: block;
	padding: 0px 0px 0px 50px;
}
.checkbox__label:before {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	content: "";
	width: 32px;
	height: 32px;
	border: 1px solid var(--grey-secondary);
	background: none;
	border-radius: 6px;
}
.checkbox a {
	font-weight: 600;
	color: var(--blue);
}
@media (min-width: 1024px) {
	.checkbox a:hover {
		text-decoration: underline;
	}
}
.checkbox._form-error .checkbox__label:before {
	border: 1px solid red;
}

.swiper {
	overflow: hidden;
	position: relative;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

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

.swiper-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.swiper-initialized .swiper-slide {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	        transform: translate3d(0px, 0, 0);
}

.swiper-button-lock,
.swiper-pagination-lock {
	display: none !important;
}

.swiper-pagination-bullets {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0px 20px;
}

.swiper-pagination-bullet {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 10px;
	        flex: 0 0 10px;
	height: 10px;
	background: #969696;
	border-radius: 50%;
	margin: 0px 10px 0px 0px;
}
.swiper-pagination-bullet:last-child {
	margin: 0;
}

.swiper-pagination-bullet-active {
	background: #292929;
}

.slider-controls {
	display: none;
	padding: 30px 0px 0px 0px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 700px) {
	.slider-controls {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.slider-controls > *:not(:last-child) {
		margin: 0px 12px 0px 0px;
	}
}

.button-prev {
	width: 90px;
	height: 56px;
	background: url("../img/icons/p-left.svg") no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

.button-next {
	width: 90px;
	height: 56px;
	background: url("../img/icons/p-right.svg") no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: #D9D8D8;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: #F29BAB;
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-button-disabled {
	opacity: 0.6;
}

.advant-slider,
.staff-slider {
	position: relative;
}
@media (min-width: 700px) {
	.advant-slider .swiper-wrapper,
.staff-slider .swiper-wrapper {
		gap: 30px;
	}
}
.advant-slider .swiper-slide,
.staff-slider .swiper-slide {
	background: #fff;
	padding: 18px 28px;
	border-radius: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
	line-height: 170%;
}
.advant-slider .swiper-slide p,
.staff-slider .swiper-slide p {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	color: var(--deep-blue-txt-color);
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
@media (max-width: 1024px) {
	.advant-slider .swiper-slide p,
.staff-slider .swiper-slide p {
		font-size: 14px;
	}
}
.advant-slider .swiper-slide > *:not(:last-child),
.staff-slider .swiper-slide > *:not(:last-child) {
	margin: 0px 0px 8px 0px;
}
@media (min-width: 700px) {
	.advant-slider .swiper-slide,
.staff-slider .swiper-slide {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 33.333%;
		        flex: 0 1 33.333%;
	}
}
@media (max-width: 1024px) {
	.advant-slider .swiper-slide,
.staff-slider .swiper-slide {
		padding: 18px;
	}
}

.staff-slider .swiper-slide {
	padding: 0;
	text-align: left;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.staff-slider .swiper-slide p {
	font-size: 18px;
}
@media (min-width: 700px) {
	.staff-slider .swiper-slide {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 50%;
		        flex: 0 1 50%;
	}
}
.staff-slider .swiper-slide > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.feedb-slider .swiper {
	overflow: visible;
	margin: -15px;
}
@media (max-width: 820px) {
	.feedb-slider .swiper {
		overflow: hidden;
		margin: 0;
		padding: 5px;
	}
}
.feedb-slider .swiper-wrapper {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
@media (max-width: 820px) {
	.feedb-slider .swiper-wrapper {
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}
}
.feedb-slider .swiper-slide {
	padding: 15px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 1024px) {
	.feedb-slider .swiper-slide {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 820px) {
	.feedb-slider .swiper-slide {
		-webkit-box-flex: 0;
		    -ms-flex: none;
		        flex: none;
		padding: 0;
	}
}
.feedb-slider .slider-controls {
	margin: -10px 0px 0px 0px;
}
@media (max-width: 820px) {
	.feedb-slider .slider-controls {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.feedb-slider .slider-controls > *:not(:last-child) {
		margin: 0px 12px 0px 0px;
	}
}
@media (max-width: 820px) {
	.feedb-slider {
		margin: -3px;
	}
}

.feedb-slider__row {
	-webkit-box-shadow: 0 4px 10px 0 #f1f1f1;
	        box-shadow: 0 4px 10px 0 #f1f1f1;
	background: var(--white);
	padding: 15px;
	height: 100%;
	border-radius: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.feedb-slider__row > *:not(:last-child) {
	margin: 0px 0px 12px 0px;
}

section {
	padding: 120px 0px 0px 0px;
}
@media (max-width: 1024px) {
	section {
		padding: 80px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	section {
		padding: 60px 0px 0px 0px;
	}
}

.hero {
	padding: 0;
}

.hero__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
@media (max-width: 900px) {
	.hero__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

.hero__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 640px;
	        flex: 0 1 640px;
	padding: 50px 0px;
	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: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0px 20px 0px 0px;
	-ms-flex-item-align: center;
	    align-self: center;
}
.hero__left h1 {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: var(--deep-blue-txt-color);
	margin: 0px 0px 8px 0px !important;
}
.hero__left > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 900px) {
	.hero__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0;
	}
}
@media (max-width: 480px) {
	.hero__left {
		padding: 30px 0px;
	}
}

.hero__title {
	margin: 0px 0px 20px 0px;
}

.hero__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
}
@media (max-width: 820px) {
	.hero__block {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}

@media (max-width: 480px) {
	.hero__btn {
		width: 100%;
	}
}

.hero-phone {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.hero-phone > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}

.hero-phone__icon {
	border-radius: 10px;
	width: 54px;
	height: 54px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 54px;
	        flex: 0 0 54px;
	background: var(--light-blue);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.hero-phone__block {
	font-family: var(--font-family);
	white-space: nowrap;
	font-size: 20px;
	letter-spacing: 0.02em;
}
.hero-phone__block span {
	line-height: 155%;
	font-weight: 600;
	color: var(--blue);
}
.hero-phone__block a {
	color: var(--deep-blue-txt-color);
	font-weight: 500;
}
.hero-phone__block > * {
	display: block;
}
.hero-phone__block > *:not(:last-child) {
	margin: 0px 0px 2px 0px;
}

.hero__img {
	padding: 10px 0px 0px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 626px;
	        flex: 0 1 626px;
	position: relative;
}
.hero__img img {
	width: 100%;
}
.hero__img::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 60%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 140%;
	height: 140%;
	background: url("../img/hero/sh.webp") no-repeat;
	background-size: contain;
}
@media (max-width: 900px) {
	.hero__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		max-width: 600px;
	}
}

.hero-advant {
	background: var(--light-blue);
	border-radius: 6px;
	padding: 30px;
}

.hero-advant__img {
	width: 60px;
}
.hero-advant__img img {
	width: 100%;
}

.hero-advant__name {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	color: var(--deep-blue-txt-color);
}

.hero-advant__btn {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	color: var(--deep-blue-txt-color);
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #000;
	background: #fff;
	height: 42px;
}
.hero-advant__btn::after {
	font-family: icomoon;
	content: "";
	color: #000;
	font-size: 20px;
	margin: 0px 0px 0px 10px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.hero-advant__btn:hover {
		color: #fff;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.hero-advant__btn:hover::after {
		color: #fff;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1024px) {
	.hero-advant__btn {
		padding: 10px;
	}
}

.about__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media (max-width: 820px) {
	.about__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.about__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 625px;
	        flex: 0 1 625px;
	margin: 0px 60px 0px 0px;
}
.about__left > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 820px) {
	.about__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 30px 0px;
	}
}

.about__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 586px;
	        flex: 0 1 586px;
}
@media (max-width: 820px) {
	.about__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 100%;
	}
}

.about__img {
	position: relative;
}
.about__img img {
	width: 100%;
	border-radius: 6px;
	margin: 50px 0px 0px -38px;
}
@media (max-width: 1024px) {
	.about__img img {
		margin: 40px 0px 0px -28px;
	}
}
@media (max-width: 820px) {
	.about__img img {
		margin: 60px 0px 0px 0px;
		width: calc(100% - 38px);
	}
}
@media (max-width: 700px) {
	.about__img img {
		margin: 38px 0px 0px 0px;
		width: calc(100% - 28px);
	}
}
.about__img::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -o-linear-gradient(226deg, #13b3f8 0%, #84bdff 49.5%, #c1deef 95.5%);
	background: linear-gradient(224deg, #13b3f8 0%, #84bdff 49.5%, #c1deef 95.5%);
	border-radius: 6px;
	height: calc(100% - 50px);
}
@media (max-width: 820px) {
	.about__img::before {
		left: 38px;
		height: calc(100% - 60px);
		width: calc(100% - 38px);
	}
}
@media (max-width: 700px) {
	.about__img::before {
		height: calc(100% - 38px);
	}
}

.staff__title {
	margin: 0px 0px 20px 0px;
}

.staff__text {
	margin: 0px 0px 20px 0px;
}

.staff__img {
	padding: 0px 0px 80% 0px;
	width: 100%;
}
.staff__img img {
	border-radius: 6px;
}

.staff__name {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 32px;
	line-height: 120%;
	color: var(--deep-blue-txt-color);
	margin: 0px 0px 10px 0px !important;
}
@media (max-width: 1024px) {
	.staff__name {
		font-size: 28px;
	}
}

.staff__btn {
	width: 100%;
}

.united__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 85px;
	border-radius: 6px;
	background: var(--light-blue);
}
@media (max-width: 1024px) {
	.united__row {
		padding: 50px;
	}
}
@media (max-width: 900px) {
	.united__row {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
@media (max-width: 820px) {
	.united__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		padding: 30px;
	}
}

.united__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 410px;
	        flex: 0 0 410px;
	height: 490px;
	margin: 0px 30px 0px 0px;
}
.united__img img {
	border-radius: 6px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: left center;
	   object-position: left center;
}
@media (max-width: 1024px) {
	.united__img {
		height: 560px;
	}
}
@media (max-width: 900px) {
	.united__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 310px;
		        flex: 0 0 310px;
	}
}
@media (max-width: 820px) {
	.united__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 30px 0px 0px 0px;
		width: 100%;
		height: auto;
	}
}

.united__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 656px;
	        flex: 0 1 656px;
}
.united__right ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	color: var(--deep-blue-txt-color);
}
.united__right ul li::before {
	content: "";
	width: 21px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 21px;
	        flex: 0 0 21px;
	height: 25px;
	background: url("../img/icons/guard.svg") no-repeat;
	background-size: contain;
	margin: 0px 13px 0px 0px;
}
@media (max-width: 480px) {
	.united__right ul li {
		font-size: 16px;
	}
}
.united__right ul > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
.united__right > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 820px) {
	.united__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

@media (max-width: 1024px) {
	.contacts .phone-form {
		margin: 20px 0px 0px 0px;
	}
}

.contacts__title {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.contacts__title br {
		display: none;
	}
}

.contacts__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media (max-width: 1024px) {
	.contacts__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.contacts__left {
	margin: 0px 30px 0px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 516px;
	        flex: 0 1 516px;
}
.contacts__left > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1024px) {
	.contacts__left {
		margin: 0px 0px 20px 0px;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

@media (max-width: 1024px) {
	.contacts-blocks {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 30px;
	}
}
@media (max-width: 820px) {
	.contacts-blocks {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}

.contacts-block {
	-webkit-box-shadow: 0 4px 10px 0 #f1f1f1;
	        box-shadow: 0 4px 10px 0 #f1f1f1;
	background: var(--light-blue);
	border-radius: 6px;
	padding: 15px;
}
.contacts-block > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
@media (max-width: 1024px) {
	.contacts-block {
		-webkit-box-flex: 0;
		    -ms-flex: 0 1 50%;
		        flex: 0 1 50%;
	}
}
@media (max-width: 820px) {
	.contacts-block {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.contacts-block__item {
	position: relative;
	padding: 0px 0px 0px 48px;
}
.contacts-block__item p, .contacts-block__item a {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 170%;
	color: var(--deep-blue-txt-color);
	display: block;
}
@media (max-width: 480px) {
	.contacts-block__item p, .contacts-block__item a {
		font-size: 16px;
	}
}
.contacts-block__item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
}
@media (max-width: 480px) {
	.contacts-block__item {
		padding: 0px 0px 0px 40px;
	}
	.contacts-block__item::before {
		left: 0;
	}
}

.contacts-block__item_pin::before {
	width: 22px;
	height: 26px;
	background: url("../img/icons/pin.svg") no-repeat;
	background-size: contain;
}

.contacts-block__item_time {
	white-space: nowrap;
}
.contacts-block__item_time::before {
	width: 24px;
	height: 24px;
	background: url("../img/icons/time.svg") no-repeat;
	background-size: contain;
}

.contacts-block__item_tel {
	white-space: nowrap;
}
.contacts-block__item_tel::before {
	width: 23px;
	height: 23px;
	background: url("../img/icons/tel2.svg") no-repeat;
	background-size: contain;
}

.contacts-block__item_mail::before {
	width: 26px;
	height: 22px;
	background: url("../img/icons/mail.svg") no-repeat;
	background-size: contain;
}

.contacts__map {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 732px;
	        flex: 0 1 732px;
}
.contacts__map img, .contacts__map iframe {
	border-radius: 6px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 1024px) {
	.contacts__map {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 694px;
		        flex: 0 0 694px;
	}
}
@media (max-width: 375px) {
	.contacts__map {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 450px;
		        flex: 0 0 450px;
	}
}

.contacts__btn {
	width: 282px;
}
@media (max-width: 820px) {
	.contacts__btn {
		width: 100%;
	}
}

.feedb__title {
	max-width: 875px;
	text-align: center;
	margin: 0 auto 20px auto;
}

.feedb__text {
	text-align: center;
	max-width: 875px;
	margin: 0 auto 20px auto;
}

.feedb-slider__name {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 14px;
	line-height: 170%;
	color: var(--grey-secondary);
}

.feedb-slider__text {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 170%;
	color: var(--deep-blue-txt-color);
}

.feedb-slider__stars {
	width: 156px;
	min-height: 28px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 28px;
	        flex: 0 0 28px;
	background: url("../img/icons/stars.svg") no-repeat;
	background-size: contain;
}

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

.contactus__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
	margin: 0px 30px 0px 0px;
}
.contactus__left > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1024px) {
	.contactus__left {
		margin: 0px 0px 20px 0px;
	}
}

@media (max-width: 1024px) {
	.contactus__title {
		max-width: 588px;
	}
}

.policy {
	position: relative;
	padding: 120px 0px 0px 0px;
}
.policy .tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
@media (max-width: 1024px) {
	.policy .tabs {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.policy .tabs__navigation {
	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-flex: 0;
	    -ms-flex: 0 0 297px;
	        flex: 0 0 297px;
	margin: 0px 30px 0px 0px;
}
.policy .tabs__navigation > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
@media (max-width: 1024px) {
	.policy .tabs__navigation {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 80px 0px;
	}
}
@media (max-width: 480px) {
	.policy .tabs__navigation {
		margin: 0px 0px 40px 0px;
	}
}
.policy .tabs__title {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--black-);
	text-align: left;
	position: relative;
	padding: 10px;
	border-radius: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.policy .tabs__title svg {
	margin: 0px 15px 0px 0px;
	width: 14px;
	height: 14px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 14px;
	        flex: 0 0 14px;
}
.policy ._tab-active {
	font-weight: 500;
	background: var(--light-blue);
	color: var(--deep-blue-txt-color);
}
.policy ._tab-active svg path {
	fill: var(--deep-blue-txt-color);
}
.policy .policy__btn {
	border-radius: 8px;
	width: 100%;
	height: 80px;
	font-size: 18px;
	margin: 40px 0px 0px 0px;
}
@media (max-width: 1024px) {
	.policy .policy__btn {
		max-width: 342px;
	}
}
@media (max-width: 480px) {
	.policy .policy__btn {
		max-width: 100%;
		margin: 20px 0px 0px 0px;
	}
}
.policy .tabs__content {
	border: 1px solid rgba(48, 48, 48, 0.3);
	border-radius: 8px;
	padding: 30px;
	background: #fff;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	color: var(--deep-blue-txt-color);
}
@media (max-width: 820px) {
	.policy .tabs__content {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.policy .tabs__content {
		padding: 20px;
	}
}
.policy .tabs__body h2 {
	font-weight: 700;
}
.policy .tabs__body > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 480px) {
	.policy .tabs__body > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
.policy .tabs__block > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1024px) {
	.policy {
		padding: 80px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.policy {
		padding: 60px 0px 0px 0px;
	}
}

.policy__title {
	font-weight: 400;
	font-size: 32px;
	line-height: 122%;
	color: var(--black-);
	margin: 0px 0px 30px 0px;
}

.serv__head {
	margin: 0px auto 60px auto;
	max-width: 665px;
	text-align: center;
}
.serv__head > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}

.serv-list > *:not(:last-child) {
	margin: 0px 0px 60px 0px;
}

.serv-list__block > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}

.serv-list__title {
	font-family: var(--second-family);
	font-weight: 800;
	font-size: 48px;
	line-height: 110%;
	color: var(--deep-blue-txt-color);
}
@media (max-width: 820px) {
	.serv-list__title {
		font-size: 32px;
	}
}

.serv-list__items > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
@media (max-width: 820px) {
	.serv-list__items > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}

.serv-list-item {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-radius: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	overflow: hidden;
	position: relative;
	padding: 15px;
}
@media (max-width: 1024px) {
	.serv-list-item {
		padding: 15px 15px 76px 15px;
		-webkit-box-shadow: 0px 0px 7px 5px rgba(175, 184, 193, 0.2);
		        box-shadow: 0px 0px 7px 5px rgba(175, 184, 193, 0.2);
		border-radius: 6px;
	}
}
@media (max-width: 480px) {
	.serv-list-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		padding: 15px;
	}
}
@media (min-width: 1024px) {
	.serv-list-item:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		padding: 15px;
		-webkit-box-shadow: 0 4px 10px 0 #f1f1f1;
		        box-shadow: 0 4px 10px 0 #f1f1f1;
		background: var(--light-blue);
	}
	.serv-list-item:hover .serv-list-item__pricebtn {
		margin: 0;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
.serv-list-item > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 480px) {
	.serv-list-item > *:not(:last-child) {
		margin: 0px 0px 12px 0px;
	}
}

.serv-list-item__block {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 170%;
	max-width: 470px;
}
@media (max-width: 820px) {
	.serv-list-item__block {
		font-size: 16px;
	}
}

.serv-list-item__name {
	color: var(--deep-blue-txt-color);
}

.serv-list-item__num {
	color: #afb8c1;
}

.serv-list-item__pricebtn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0px -320px 0px 0px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1024px) {
	.serv-list-item__pricebtn {
		margin: 0;
	}
}
@media (max-width: 480px) {
	.serv-list-item__pricebtn {
		width: 100%;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.serv-list-item__pricebtn > *:not(:last-child) {
		margin: 0px 15px 0px 0px;
	}
}

.serv-list-item__price {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 24px;
	line-height: 170%;
	text-align: center;
	color: var(--blue);
	margin: 0px 129px 0px 0px;
	white-space: nowrap;
}
@media (max-width: 1024px) {
	.serv-list-item__price {
		margin: 0;
	}
}
@media (max-width: 820px) {
	.serv-list-item__price {
		font-size: 18px;
	}
}

.serv-list-item__btn {
	width: 190px;
	height: 50px;
}
@media (max-width: 1024px) {
	.serv-list-item__btn {
		position: absolute;
		bottom: 15px;
		left: 15px;
	}
}
@media (max-width: 820px) {
	.serv-list-item__btn {
		font-size: 18px;
	}
}
@media (max-width: 480px) {
	.serv-list-item__btn {
		position: relative;
		bottom: unset;
		left: unset;
	}
}
@media (max-width: 370px) {
	.serv-list-item__btn {
		width: 140px;
	}
}