@import "../fonts/stylesheet.css";
:root {
	--font-family: "TT Interfaces", sans-serif;
	--second-family: "TT Firs Neue", 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: "TT Interfaces";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

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

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: 20px;
}

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: 1340px;
	margin: 0 auto;
	padding: 0 30px;
}
@media (max-width: 480px) {
	._container {
		padding: 0 20px;
	}
}

.blocktitle {
	text-align: center;
	margin: 0px 0px 40px 0px;
}
.blocktitle > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.blocktitle {
		margin: 0px 0px 30px 0px;
	}
}

.title {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 48px;
	line-height: 120%;
	text-align: center;
	color: #020202;
	margin: 0px 0px 40px 0px;
}
@media (max-width: 1340px) {
	.title {
		font-size: calc(25px + 25 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.title {
		margin: 0px 0px 30px 0px;
	}
}

.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;
	height: 60px;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	border-radius: 16px;
	padding: 20px 40px;
	height: 60px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 18px;
	background: #1354eb;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1024px) {
	.btn {
		height: 45px;
		border-radius: 12px;
		font-size: 16px;
		padding: 10px 25px;
	}
}
@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: #0D3FB2;
	}
}

.text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #020202;
}
@media (max-width: 480px) {
	.text {
		font-size: 14px;
	}
}

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

.header {
	position: fixed;
	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;
}
.header._fixed {
	-webkit-backdrop-filter: blur(16px);
	        backdrop-filter: blur(16px);
	border-bottom: 1px solid #CFD4E0;
}
.header._fixed .header__row {
	padding: 10px 0px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
	.header._fixed .header__row {
		padding: 20px 0px;
	}
}

.header__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 20px 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) {
	.header__row {
		margin: 0px 55px 0px 0px;
	}
}
@media (max-width: 480px) {
	.header__row {
		margin: 0px 45px 0px 0px;
	}
}

.header__logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 100px;
	        flex: 0 1 100px;
	position: relative;
	top: 4px;
	z-index: 5;
}
.header__logo img {
	width: 100%;
}

.header__menu {
	margin: 0px 50px 0px 0px;
}
@media (max-width: 1340px) {
	.header__menu {
		margin: 0px 20px 0px 0px;
	}
}
@media (max-width: 480px) {
	.header__menu {
		margin: 0;
	}
}

.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
}
@media (max-width: 1340px) {
	.menu__list {
		gap: 20px;
	}
}
@media (max-width: 1024px) {
	.menu__list {
		-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: flex-end;
		gap: 30px 20px;
	}
}

.menu__link {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	color: #020202;
	white-space: nowrap;
	-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 {
		font-size: 24px;
	}
}
@media (min-width: 1024px) {
	.menu__link:hover {
		color: #1354eb;
		-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: 1024px) {
	.menu__body {
		position: fixed;
		top: 0;
		bottom: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #fff;
		-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: flex-end;
		padding: 30px 40px;
		overflow: auto;
	}
	.menu__body._active {
		right: 0;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1024px) and (max-width: 1024px) {
	.menu__body {
		padding: 125px 40px 75px 40px;
	}
}
@media (max-width: 1024px) and (max-width: 480px) {
	.menu__body {
		padding: 100px 20px;
	}
}
@media (max-width: 1024px) {
	.menu__body > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}

.icon-menu {
	display: none;
}
@media (max-width: 1024px) {
	.icon-menu {
		display: block;
		position: absolute;
		top: 50%;
		right: 30px;
		-webkit-transform: translate(0, -50%);
		    -ms-transform: translate(0, -50%);
		        transform: translate(0, -50%);
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
	}
	.icon-menu span {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		top: calc(50% - 1px);
		left: 0px;
		position: absolute;
		width: 100%;
		height: 2px;
		background: #000;
	}
	.icon-menu span:first-child {
		top: 0px;
	}
	.icon-menu span:last-child {
		top: auto;
		bottom: 0px;
	}
	.icon-menu._active span {
		-webkit-transform: scale(0);
		    -ms-transform: scale(0);
		        transform: scale(0);
	}
	.icon-menu._active span:first-child {
		-webkit-transform: rotate(-45deg);
		    -ms-transform: rotate(-45deg);
		        transform: rotate(-45deg);
		top: calc(50% - 1px);
	}
	.icon-menu._active span:last-child {
		-webkit-transform: rotate(45deg);
		    -ms-transform: rotate(45deg);
		        transform: rotate(45deg);
		bottom: calc(50% - 1px);
	}
}
@media (max-width: 480px) {
	.icon-menu {
		right: 15px;
	}
}

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

.header__tel {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 20px;
	color: #020202;
	white-space: nowrap;
}
@media (max-width: 1340px) {
	.header__tel {
		font-size: 18px;
	}
}
@media (max-width: 480px) {
	.header__tel {
		font-size: 16px;
	}
}

.header__btn {
	height: 50px;
	padding: 10px 25px;
}
@media (max-width: 1024px) {
	.header__btn {
		height: 45px;
		border-radius: 12px;
		font-size: 16px;
	}
}

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: 20px;
	height: 20px;
	background: url("../img/icons/close.svg") no-repeat;
	background-size: contain;
}

.callback-popup .popup__content {
	max-width: 730px;
}
.popup-video .popup__content {
	max-width: 1500px;
}
.popup-video .popup__close {
	top: -35px;
	right: 5px;
	width: 30px;
	height: 30px;
}
@media (max-width: 1400px) {
	.popup-video .popup__close {
		right: 0px;
		top: 0px;
	}
}
.popup-video iframe, .popup-video video {
	width: 100%;
	height: calc(100vh - 100px);
}

.footer {
	margin: 120px 0px 0px 0px;
}
@media (max-width: 1024px) {
	.footer {
		margin: 80px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.footer {
		margin: 60px 0px 0px 0px;
	}
}

.footer__row {
	border-top: 1px solid #e6e6e6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 40px 0px;
	margin: -20px;
}
@media (max-width: 480px) {
	.footer__row {
		padding: 20px 0;
	}
}

.footer__col {
	padding: 20px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
}
.footer__col address {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #020202;
	font-style: normal;
}
@media (max-width: 480px) {
	.footer__col address {
		font-size: 14px;
	}
}
.footer__col > *:not(:last-child) {
	margin: 0px 0px 25px 0px;
}
@media (max-width: 480px) {
	.footer__col > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 820px) {
	.footer__col {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 480px) {
	.footer__col {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		text-align: center;
	}
}

.footer__t {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	color: #777;
}
@media (max-width: 1024px) {
	.footer__t {
		font-size: 20px;
	}
}

.footer__list a {
	display: block;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	color: #020202;
}
@media (min-width: 1024px) {
	.footer__list a:hover {
		text-decoration: underline;
	}
}
@media (max-width: 480px) {
	.footer__list a {
		font-size: 14px;
	}
}
.footer__list > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.footer__list > *:not(:last-child) {
		margin: 0px 0px 15px 0px;
	}
}

.footer__bot {
	border-top: 1px solid #e6e6e6;
	padding: 30px 0px;
}
@media (max-width: 480px) {
	.footer__bot {
		text-align: center;
	}
}

.footer__copy {
	font-size: 14px;
	line-height: 1.5;
	color: #a0a0a0;
}

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;
	background: #f2f4f6;
	border-radius: 50px;
	font-size: 16px;
	border-radius: 16px;
	padding: 10px 20px;
	height: 60px;
	color: #020202;
}
.input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #020202;
}
.input::-moz-placeholder, textarea::-moz-placeholder {
	color: #020202;
}
.input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #020202;
}
.input::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: #020202;
}
.input::placeholder, textarea::placeholder {
	color: #020202;
}
.input._form-error, textarea._form-error {
	border: 1px solid red;
}
@media (max-width: 1024px) {
	.input, textarea {
		height: 45px;
	}
}
@media (max-width: 480px) {
	.input, textarea {
		border-radius: 10px;
		font-size: 14px;
		padding: 10px 15px;
	}
}

textarea {
	resize: none;
	height: 100px;
	border-radius: 16px;
	padding: 20px;
}
@media (max-width: 480px) {
	textarea {
		border-radius: 10px;
		padding: 15px;
	}
}

.form__item {
	width: 100%;
	position: relative;
}
.form__item .form__error {
	position: absolute;
	bottom: 17px;
	left: 15px;
	right: 15px;
	background: #f2f4f6;
	padding: 5px;
	color: red;
	pointer-events: none;
}

.form-sent-msg {
	position: fixed;
	z-index: 5;
	top: -100px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	padding: 15px;
	background: #06CF27;
	border-radius: 50px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 5px 32px 5px rgba(146, 146, 146, 0.5);
	box-shadow: 0px 5px 32px 5px rgba(146, 146, 146, 0.5);
}
.form-sent-msg p {
	color: #fff;
	font-size: 20px;
	text-align: center;
}
.form-sent-msg._active {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 20px;
}

.contactus-form {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
.contactus-form .form__label {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: #020202;
	margin: 0px 0px 10px 0px;
	display: block;
}
.contactus-form textarea {
	height: 142px;
}
.contactus-form > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.contactus-form__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px 20px;
}
.contactus-form__block p {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	color: #777;
}
.contactus-form__block p a {
	color: #777;
	text-decoration: underline;
}
@media (max-width: 1340px) {
	.contactus-form__block {
		-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;
	}
}

.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: #EFEFEF url("../img/icons/check.svg") no-repeat;
	background-size: 26px;
	background-position: center;
}
.checkbox__label {
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	gap: 10px;
	font-size: 16px;
	line-height: 1.4;
}
.checkbox__label:before {
	content: "";
	-ms-flex-item-align: start;
	    align-self: flex-start;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 24px;
	        flex: 0 0 24px;
	width: 24px;
	height: 24px;
	background: #EFEFEF;
	border-radius: 4px;
}
.checkbox a {
	color: #000;
	text-decoration: underline;
}
@media (min-width: 1024px) {
	.checkbox a:hover {
		text-decoration: none;
	}
}
.checkbox._form-error .checkbox__label {
	color: red;
}
.checkbox._form-error .checkbox__label::before {
	border: 1px solid red;
}

.select {
	position: relative;
}
.select__body {
	position: relative;
}
.select__title {
	color: inherit;
	text-align: left;
	background: #f2f4f6;
	cursor: pointer;
	width: 100%;
	border-radius: 16px;
	height: 60px;
	padding: 0px 20px;
	font-family: var(--font-family);
	font-size: 16px;
	color: #020202;
}
@media (max-width: 1024px) {
	.select__title {
		height: 45px;
	}
}
@media (max-width: 480px) {
	.select__title {
		border-radius: 10px;
		font-size: 14px;
	}
}
.select__value {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: rem(30);
	padding: 0 rem(15);
	gap: rem(10);
}
.select__value > * {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.select__value:after {
	content: "";
	-ms-flex-item-align: stretch;
	    align-self: stretch;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 10px;
	        flex: 0 0 10px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	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;
}
._select-open .select__value:after {
	-webkit-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}
.select__value._select-pseudo-label::before {
	content: attr(data-pseudo-label);
	opacity: 0.5;
}
.select__text {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.select__input {
	width: 100%;
	background-color: transparent;
	height: 100%;
}
.select__options {
	color: #000;
	position: absolute;
	z-index: 2;
	top: 64px;
	border-radius: 16px;
	min-width: 100%;
	left: 0;
	background-color: #f2f4f6;
	border-top: 0;
	padding: 10px 0px 5px 0px;
	overflow: hidden;
}
@media (max-width: 1024px) {
	.select__options {
		top: 50px;
	}
}
.select__scroll {
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 200px;
}
.select__option {
	width: 100%;
	display: block;
	text-align: left;
	cursor: pointer;
	padding: 10px 20px;
	color: inherit;
	background: none;
	font-size: 16px;
	color: #020202;
}
.select__option._select-selected {
	background-color: #eee;
}
.select__option[hidden] {
	display: none;
}
@media (any-hover: hover) {
	.select__option:hover {
		background: #e0e9f6;
	}
}
@media (max-width: 480px) {
	.select__option {
		font-size: 14px;
	}
}
.select__row {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.select._select-open::after {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-transform: translate(0, -50%) rotate(-180deg);
	    -ms-transform: translate(0, -50%) rotate(-180deg);
	        transform: translate(0, -50%) rotate(-180deg);
}
.select::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 15px;
	height: 15px;
	background: url("../img/icons/select.svg") no-repeat;
	background-size: contain;
	background-position: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	pointer-events: none;
}
.select._form-error .select__title {
	border: 1px solid red;
}

._select-tag {
	cursor: pointer;
}

.bread {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 7px 24px;
	margin: 0px 0px 40px 0px;
}
.bread a, .bread p {
	position: relative;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	color: #777;
}
@media (max-width: 480px) {
	.bread a, .bread p {
		font-size: 14px;
	}
}
@media (min-width: 1024px) {
	.bread a:hover {
		color: #1354eb;
	}
}
.bread p {
	font-weight: 600;
	color: #000;
}
.bread > *:not(:last-child)::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	top: 50%;
	right: -16px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	background-image: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L1 9' stroke='%23888888' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
@media (max-width: 480px) {
	.bread {
		margin: 20px 0px 30px 0;
	}
}

.block .block__item .block__title {
	width: 100%;
	text-align: left;
	position: relative;
	padding-right: 60px;
}
.block .block__item .block__title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 50px;
	height: 50px;
	background: url("../img/icons/arrow.svg") no-repeat;
	background-size: contain;
	background-position: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 820px) {
	.block .block__item .block__title::after {
		width: 35px;
		height: 35px;
		right: 20px;
	}
}
.block .block__item .block__title._active::after {
	-webkit-transform: translate(0, -50%) rotate(-180deg);
	    -ms-transform: translate(0, -50%) rotate(-180deg);
	        transform: translate(0, -50%) rotate(-180deg);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.hero {
	position: relative;
}

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

.hero__content {
	position: relative;
	height: 100vh;
	max-height: 1000px;
	padding: 100px 0px;
}
.hero__content ._container {
	height: 100%;
}
@media (max-width: 820px) {
	.hero__content {
		height: 800px;
		max-height: auto;
	}
}
@media (max-width: 480px) {
	.hero__content {
		padding: 60px 0px;
		height: auto;
	}
}

.hero__title {
	font-size: 64px;
}
@media (max-width: 1340px) {
	.hero__title {
		font-size: calc(32px + 38 * ((100vw - 320px) / 1600));
	}
}

.hero__row {
	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;
	text-align: center;
	height: 100%;
}
.hero__row > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 480px) {
	.hero__row > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}

.hero__sub {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: #020202;
}
@media (max-width: 480px) {
	.hero__sub {
		font-size: 18px;
	}
}

.hero__text {
	font-family: var(--font-family);
	font-size: 20px;
	line-height: 150%;
	color: #020202;
}
@media (max-width: 480px) {
	.hero__text {
		font-size: 14px;
	}
}

.hero_404 {
	height: 100vh;
}
.hero_404 .hero__content {
	height: 100%;
}
.hero_404 .hero__title {
	margin: 0px 0px 10px 0px;
}
@media (max-width: 820px) {
	.hero_404 {
		height: -webkit-fill-available;
	}
}

.serv {
	padding: 0;
	scroll-margin-top: 120px;
}

.serv-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -10px;
}

.serv-item {
	padding: 10px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}
@media (max-width: 700px) {
	.serv-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.serv-item__row {
	height: 100%;
	background: #f2f4f6;
	border-radius: 16px;
	padding: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 20px;
}
.serv-item__row .text {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}

.serv-item__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.serv-item__icon {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 40px;
	        flex: 0 0 40px;
}
.serv-item__icon img {
	width: 100%;
}

.serv-item__t {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	color: #020202;
}
@media (max-width: 480px) {
	.serv-item__t {
		font-size: 20px;
	}
}

.serv_p {
	padding: 120px 0px 0px 0px;
}
.serv_p .serv-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
}
@media (max-width: 1024px) {
	.serv_p .serv-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 700px) {
	.serv_p .serv-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}
@media (max-width: 1024px) {
	.serv_p {
		padding: 80px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.serv_p {
		padding: 60px 0px 0px 0px;
	}
}

.whyus-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -10px;
}

.whyus-item {
	padding: 10px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
}
@media (max-width: 1024px) {
	.whyus-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 700px) {
	.whyus-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.whyus-item__row {
	height: 100%;
	background: #f2f4f6;
	border-radius: 16px;
	padding: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 20px;
}
.whyus-item__row .text {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
@media (max-width: 480px) {
	.whyus-item__row {
		gap: 15px;
	}
}

.whyus-item__icon {
	width: 40px;
}
.whyus-item__icon img {
	width: 100%;
}

.whyus-item__t {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	color: #020202;
}
@media (max-width: 480px) {
	.whyus-item__t {
		font-size: 20px;
	}
}

.about {
	padding-bottom: 120px;
}
@media (max-width: 1024px) {
	.about {
		padding-bottom: 80px;
	}
}
@media (max-width: 480px) {
	.about {
		padding-bottom: 60px;
	}
}

.about__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
	-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: 1340px) {
	.about__row {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
@media (max-width: 1024px) {
	.about__row {
		gap: 30px;
	}
}
@media (max-width: 700px) {
	.about__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}

.about__img {
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 580px;
	        flex: 0 1 580px;
}
.about__img > img {
	width: 100%;
	border-radius: 16px;
}
@media (max-width: 700px) {
	.about__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.about__cloud {
	position: absolute;
	bottom: 40px;
	left: 40px;
	max-width: 200px;
}
.about__cloud img {
	width: 100%;
}
@media (max-width: 1024px) {
	.about__cloud {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}
}

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

.about__text {
	font-size: 20px;
}
.about__text > *:not(:last-child) {
	margin: 0px 0px 25px 0px;
}
@media (max-width: 820px) {
	.about__text > *:not(:last-child) {
		margin: 0px 0px 15px 0px;
	}
}
@media (max-width: 1024px) {
	.about__text {
		font-size: 18px;
	}
}
@media (max-width: 820px) {
	.about__text {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.about__text {
		font-size: 14px;
	}
}

.about__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.about__items > *:not(:last-child) {
	border-right: 1px solid #cdced1;
}

.about__item {
	padding: 0px 60px;
}
.about__item > * {
	display: block;
}
.about__item b {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 48px;
	line-height: 120%;
	color: #1354eb;
}
@media (max-width: 1024px) {
	.about__item b {
		font-size: 38px;
	}
}
@media (max-width: 820px) {
	.about__item b {
		font-size: 30px;
	}
}
.about__item span {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	color: #020202;
}
@media (max-width: 820px) {
	.about__item span {
		font-size: 14px;
	}
}
.about__item:first-child {
	padding-left: 0;
}
.about__item:last-child {
	padding-right: 0;
}
@media (max-width: 1024px) {
	.about__item {
		padding: 0px 40px;
	}
}
@media (max-width: 820px) {
	.about__item {
		padding: 0px 20px;
	}
}

.contactus {
	background: #f2f4f6;
	padding-bottom: 120px;
}
@media (max-width: 1024px) {
	.contactus {
		padding-bottom: 80px;
	}
}
@media (max-width: 480px) {
	.contactus {
		padding-bottom: 60px;
	}
}

.contactus__t {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 150%;
	text-align: center;
	color: #020202;
}
@media (max-width: 480px) {
	.contactus__t {
		font-size: 16px;
	}
}

.contactus__row {
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	padding: 50px;
	border-radius: 16px;
}
@media (max-width: 1340px) {
	.contactus__row {
		padding: 30px;
	}
}
@media (max-width: 820px) {
	.contactus__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media (max-width: 480px) {
	.contactus__row {
		padding: 20px;
	}
}

.contactus__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
.contactus__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	border-radius: 16px;
}
@media (max-width: 820px) {
	.contactus__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 500px;
		        flex: 0 0 500px;
		height: 500px;
	}
}
@media (max-width: 820px) {
	.contactus__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 350px;
		        flex: 0 0 350px;
		height: 350px;
	}
}

.faq .block > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
.faq .block__item {
	background: #f2f4f6;
	border-radius: 16px;
}
.faq .block__title {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 120%;
	color: #020202;
	padding: 40px 30px;
}
@media (max-width: 480px) {
	.faq .block__title {
		font-size: 20px;
		padding: 20px;
	}
}
.faq .block__text {
	padding: 0 30px 40px 30px;
	margin: -10px 0px 0px 0px;
}
@media (max-width: 480px) {
	.faq .block__text {
		padding: 0 20px 20px 20px;
	}
}

.product__content {
	border-bottom: 1px solid #e6e6e6;
	padding: 0px 0px 60px 0px;
}
.product__content > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.product__title {
	text-align: left;
}

.product__img {
	padding-bottom: 43%;
}
.product__img img {
	border-radius: 16px;
}
@media (max-width: 480px) {
	.product__img img {
		border-radius: 10px;
	}
}

.product__sub {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
}

.product__text > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}

.contacts__title {
	text-align: left;
}

.contacts__links {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0;
	background: white;
	overflow: hidden;
	border-bottom: 1px solid #e6e6e6;
	margin: 0px 0px 30px 0px;
}
.contacts__links a {
	position: relative;
	z-index: 1;
	display: block;
	padding: 0px 0 16px 0;
	text-decoration: none;
	color: #444;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
	white-space: nowrap;
}
.contacts__links a._active {
	color: #2563eb;
}
.contacts__links::before {
	content: "";
	position: absolute;
	z-index: 10;
	bottom: -1px;
	left: 0;
	height: 3px;
	background: -webkit-gradient(linear, left top, right top, from(#2563eb), to(#3b82f6));
	background: -o-linear-gradient(left, #2563eb, #3b82f6);
	background: linear-gradient(90deg, #2563eb, #3b82f6);
	-webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: 0;
}
.contacts__links > *:not(:last-child) {
	margin: 0px 20px 0px 0px;
}

.contacts__info > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}

.contacts__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px 20px;
	line-height: 1.6;
	font-size: 16px;
}
.contacts__item a {
	color: #000;
}
@media (min-width: 1024px) {
	.contacts__item a:hover {
		color: #1354eb;
	}
}
@media (max-width: 820px) {
	.contacts__item {
		font-size: 14px;
	}
}
@media (max-width: 700px) {
	.contacts__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.contacts__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 250px;
	        flex: 0 0 250px;
	font-weight: 600;
}
@media (max-width: 820px) {
	.contacts__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 200px;
		        flex: 0 0 200px;
	}
}
@media (max-width: 700px) {
	.contacts__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

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