/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Defaults */
/* Media */
body {
	padding-top: 21.875vw;
	font-family: "Montserrat", "Arial", "Helvetica", sans-serif;
	font-weight: 400;
	font-size: 5vw;
	line-height: 1.25;
}

body.light {
	background: #f0f7ff;
	color: #1a1921;
}

body.dark {
	background: #1a1921;
	color: #fff;
}

body.noscroll {
	overflow: hidden;
}

.container {
	max-width: 100vw;
	padding-left: 3.125vw;
	padding-right: 3.125vw;
}

img {
	max-width: 100%;
	border: 0;
}

a {
	color: inherit;
	outline: none;
}

a:active, a:hover, a:focus {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

ul,
li,
P {
	padding: 0;
	margin: 0;
}

[href^="tel:"] {
	white-space: nowrap;
}

button,
input,
select,
textarea {
	font-family: inherit;
	color: inherit;
}

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

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

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

::placeholder {
	color: inherit;
	opacity: 1;
}

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

.nowrap {
	white-space: nowrap;
}

.button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 15.625vw;
	padding: 0;
	border: 0;
	border-radius: 3.125vw;
	font-weight: 500;
	font-size: 4.375vw;
	cursor: pointer;
}

.button_1, .button_1:hover, .button_1:focus {
	background: #ff6e0d;
	color: #fff;
}

.button_2, .button_2:hover, .button_2:focus {
	background: #fff;
	color: #ff6e0d;
}

.button_3, .button_3:hover, .button_3:focus {
	background: #1a1921;
	color: #fff;
}

.button_4, .button_4:hover, .button_4:focus {
	border: 0.625vw solid #1a1921;
	color: #1a1921;
}

.button:hover {
	opacity: 0.9;
}

.button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.button-more {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 8.125vw;
	height: 8.125vw;
	text-indent: -3125vw;
}

.button-more:after {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	content: '';
	width: 8.125vw;
	height: 3.125vw;
	background: url(../img/common/icon-more.svg) no-repeat 50% 50%/100% 100%;
}

.button-more_black:after {
	-webkit-filter: invert(8%) sepia(14%) saturate(921%) hue-rotate(208deg) brightness(97%) contrast(94%);
	        filter: invert(8%) sepia(14%) saturate(921%) hue-rotate(208deg) brightness(97%) contrast(94%);
}

.button-more_white:after {
	-webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
	        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
}

.button-more_full {
	display: inline-flex;
	width: inherit;
	height: inherit;
	padding-right: 5.3125vw;
	font-weight: 500;
	font-size: 4.375vw;
	line-height: 85%;
	text-indent: inherit;
	white-space: nowrap;
}

.button-more_full:after {
	width: 1.875vw;
	height: 3.125vw;
	background: url(../img/common/icon-more-short.svg) no-repeat 50% 50%/100% 100%;
}

.button-download {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 8.125vw;
	height: 8.125vw;
	text-indent: -3125vw;
}

.button-download:after {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	content: '';
	width: 12.5vw;
	height: 12.5vw;
	background: url(../img/common/icon-download.svg) no-repeat 50% 50%/100% 100%;
}

.button-download_black:after {
	-webkit-filter: invert(8%) sepia(14%) saturate(921%) hue-rotate(208deg) brightness(97%) contrast(94%);
	        filter: invert(8%) sepia(14%) saturate(921%) hue-rotate(208deg) brightness(97%) contrast(94%);
}

.button-download_white:after {
	-webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
	        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
}

H1 {
	font-weight: 900;
	font-style: italic;
	font-size: 7.5vw;
	line-height: 90%;
	text-transform: uppercase;
	margin: 0;
}

.section-head {
	display: flex;
	justify-content: space-between;
}

.section-title {
	font-weight: 800;
	font-size: 9.375vw;
	line-height: 106%;
	text-transform: uppercase;
	margin: 0;
}

.hidden {
	display: none;
}

.drop-block {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9;
	display: block;
	min-height: 100vh;
	background: #1a1921;
	color: #fff;
}

.drop-block-inner {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}

.drop-block-scroll {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: block;
	overflow: auto;
}

.drop-block_flex .drop-block-scroll {
	display: flex;
}

.tabsblock .tabs {
	display: flex;
}

.tabsblock .tabsbox {
	display: none;
}

.tabsblock .tabsbox.visible {
	display: block;
}

.video-link {
	position: relative;
	display: block;
}

.video-link:after {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	content: '';
	display: block;
	width: 11.875vw;
	height: 11.875vw;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.25);
	background-image: url(../img/common/icon-play.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 5.625vw 5.625vw;
	-webkit-backdrop-filter: blur(2.46875vw);
	        backdrop-filter: blur(2.46875vw);
	box-shadow: -0.29px 0.29px 0.29px -0.58px rgba(255, 255, 255, 0.35) inset;
	border: 1px solid;
	border-image-source: linear-gradient(202.36deg, rgba(255, 255, 255, 0.2) 8.26%, rgba(255, 255, 255, 0) 85.43%);
}

.video-link IMG {
	-o-object-fit: cover;
	   object-fit: cover;
}

/* slick-carousel ------------------------------------------------------- */
.slick-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3.125vw;
}

.slick-slider-dots {
	display: flex;
	justify-content: center;
	flex-grow: 1;
	overflow: hidden;
}

.slick-slider-dots ul {
	display: flex;
	flex-flow: row;
	justify-content: center;
	align-items: center;
	gap: 0 2.5vw;
}

.slick-slider-dots ul li {
	flex-grow: 1;
}

.slick-slider-dots ul li button {
	display: block;
	width: 1.875vw;
	height: 1.875vw;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #6e6e73;
	font-size: 0;
	line-height: 0;
	color: transparent;
	outline: none;
	cursor: pointer;
}

.slick-slider-dots ul li.slick-active button {
	background: #fff;
}

.slick-slider-dots_light ul li.slick-active button {
	background: #ff6e0d;
}

.slick-arrow {
	width: 11.875vw;
	height: 11.875vw;
	background: url(../img/common/icon-arrow-darkgray.svg) no-repeat 50% 50%/100% 100%;
	-webkit-transform: rotate(-180deg);
	        transform: rotate(-180deg);
	cursor: pointer;
}

.slick-arrow:hover {
	background-image: url(../img/common/icon-arrow-white.svg);
}

.slick-slider-next {
	-webkit-transform: rotate(0deg);
	        transform: rotate(0deg);
}

.slick-disabled {
	opacity: .3;
	cursor: auto;
}

.slick-disabled:hover {
	background-image: url(../img/common/icon-arrow-darkgray.svg);
	-webkit-filter: none;
	        filter: none;
}

.notification {
	position: fixed;
	left: 50%;
	top: 3.125vw;
	-webkit-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	z-index: 100000;
	display: none;
	width: calc(100% - 6.25vw);
}

.notification DIV {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 93.75vw;
	padding: 10.9375vw 3.125vw 10.9375vw 25.625vw;
	background: #e8eff7;
	box-shadow: 0 1.25vw 1.25vw 0 rgba(0, 0, 0, 0.25);
	border-radius: 5vw;
	font-size: 4.375vw;
	line-height: 128%;
	color: #1a1921;
}

.notification DIV:before {
	position: absolute;
	left: 6.875vw;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	content: '';
	display: block;
	width: 15.625vw;
	height: 15.625vw;
	background: url(../img/common/ellipse-seccess.png) no-repeat 50% 50%/100% 100%;
}

.lazy {
	background-image: none !important;
	opacity: 0;
}

.lazy:before, .lazy:after {
	content: none !important;
}

.lazy-loaded {
	opacity: 1;
	transition: 0.1s;
}

.form ::-webkit-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #1a1921;
}

.form ::-moz-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #1a1921;
}

.form ::-ms-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #1a1921;
}

.form ::placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #1a1921;
}

.form :-ms-input-placeholder {
	/* IE 10+ */
	color: #1a1921;
}

.form__title {
	font-weight: 500;
	font-size: 5.625vw;
	line-height: 92.3%;
	margin-bottom: 4.6875vw;
}

.form__title_small {
	font-size: 4.375vw;
	line-height: 100%;
	margin-bottom: 3.125vw;
}

.form__text {
	font-weight: 500;
	font-size: 5vw;
	line-height: 100%;
	margin-bottom: 3.125vw;
}

.form__items {
	display: flex;
	flex-flow: column;
	gap: 3.125vw;
}

.form__items_last {
	padding-top: 3.125vw;
}

.form__item {
	flex: 1 0;
}

.form__item_approval {
	display: flex;
	flex-direction: column;
	gap: 3.125vw;
}

.form__input {
	width: 100%;
	height: 15.625vw;
	border: 0;
	border-radius: 3.125vw;
	font-weight: 500;
	font-size: 4.375vw;
	color: #1a1921;
	padding: 0 5.625vw;
	background-color: #fff;
	-webkit-appearance: none;
	outline: none;
}

.form__input.error {
	border: 0.625vw solid #ff2626;
	background: #fff;
}

.form__input.error::-webkit-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__input.error::-moz-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__input.error::-ms-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__input.error::placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__input.error:-ms-input-placeholder {
	/* IE 10+ */
	color: #ff2626;
}

.form__button {
	height: 15.625vw;
	border-radius: 3.125vw;
	font-weight: 500;
	font-size: 4.375vw;
}

.form__button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.form__more {
	display: flex;
	flex-direction: column;
	gap: 3.125vw;
	font-size: 3.75vw;
	line-height: 116%;
}

.form__more A {
	text-decoration: underline;
}

.form__footer {
	position: relative;
	display: block;
	font-size: 3.75vw;
	line-height: 116%;
	cursor: pointer;
	margin-bottom: 0;
}

.form__footer-checkbox {
	position: absolute;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5.625vw;
	height: 5.625vw;
	border: 1px solid #e1e1e1;
	border-radius: 50%;
}

.form__footer-checkbox input {
	display: none;
}

.form__footer-checkbox-icon:before {
	display: none;
	content: '';
	width: 3.75vw;
	height: 3.75vw;
	border-radius: 50%;
	background: #fff;
}

input:checked + .form__footer-checkbox-icon:before {
	display: block;
}

.form__footer-text {
	padding-left: 10.3125vw;
}

.form__footer-text a {
	text-decoration: underline;
}

.form_vertical .form__items {
	flex-direction: column;
}

.form_horisontal .form__title {
	margin-bottom: 7.1875vw;
}

label.error {
	display: none !important;
}

.widget-form-privacy {
	display: none !important;
}

.send-success {
	color: #000000;
}

.phone-info {
	padding-top: 3.125vw;
}

.phone-info__text {
	max-width: 90.625vw;
	padding-bottom: 3.4375vw;
	font-size: 3.4375vw;
	line-height: 3.75vw;
	letter-spacing: 0.04em;
	color: #222;
	text-transform: uppercase;
}

.phone-info__number {
	font-size: 6.5625vw;
	font-weight: 700;
	line-height: 100%;
	color: #000;
}

.phone-info__number:hover, .phone-info__number:focus {
	color: #000;
	text-decoration: none;
}

/* Blocks */
.header {
	position: fixed;
	width: 100%;
	left: auto;
	right: auto;
	top: 0;
	z-index: 20;
	background: #1a1921;
	color: #fff;
}

.page-scrolled .header {
	box-shadow: 0 0 3.125vw rgba(255, 255, 255, 0.2);
}

.header__box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 15.625vw;
	transition: 0.3s;
}

.page-scrolled .header__box {
	min-height: 15.625vw;
}

.header__icon {
	position: relative;
	z-index: 13;
	padding-left: 0.625vw;
}

.header__icon-menu {
	position: relative;
	z-index: 11;
	display: block;
	width: 6.25vw;
	height: 0.625vw;
	background-color: #fff;
	transition: all .0s;
}

.header__icon-menu:before, .header__icon-menu:after {
	position: absolute;
	content: '';
	width: 6.25vw;
	height: 0.625vw;
	background-color: #fff;
	transition: all .2s;
}

.header__icon-menu:before {
	top: -2.5vw;
}

.header__icon-menu:after {
	top: 2.5vw;
}

.header__icon-menu.open {
	background-color: transparent;
}

.header__icon-menu.open:before {
	top: 0;
	left: -0.625vw;
	width: 7.5vw;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.header__icon-menu.open:after {
	top: 0;
	left: -0.625vw;
	width: 7.5vw;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.header__logo {
	position: relative;
	z-index: 11;
}

.header__logo IMG {
	width: 31.25vw;
}

.header__right {
	display: flex;
	align-items: flex-end;
	gap: 3.75vw;
}

.header__desk {
	display: none;
}

.header__drop {
	display: none;
	flex-direction: column;
	padding: 31.25vw 3.75vw 12.5vw 3.75vw;
}

.header__drop.open {
	display: flex !important;
	width: 100%;
}

.header__menu {
	display: flex;
	flex-direction: column;
	gap: 5.9375vw;
}

.header__menu-item_border {
	padding-top: 5.9375vw;
	border-top: 1px solid #6e6e73;
}

.header__menu-link {
	display: block;
	font-size: 5vw;
	line-height: 112%;
	text-transform: none;
	color: #fff;
}

.header__menu-link:hover {
	color: #ff6e0d;
}

.header__menu-link_extra {
	position: relative;
}

.header__menu-link_extra:after {
	position: absolute;
	top: 50%;
	right: 5vw;
	content: '';
	display: block;
	width: 1.5625vw;
	height: 3.125vw;
	background: url(../img/header/icon-pointer.svg) no-repeat 50% 50%/cover;
	-webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
	        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
}

.header__menu-link_extra.open:after {
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.header__menu-link_dark {
	color: #b5b5b0;
}

.header__menu-link_dark:after {
	-webkit-filter: invert(80%) sepia(5%) saturate(176%) hue-rotate(22deg) brightness(91%) contrast(88%);
	        filter: invert(80%) sepia(5%) saturate(176%) hue-rotate(22deg) brightness(91%) contrast(88%);
}

.header__menu UL {
	display: none;
	flex-direction: column;
	gap: 5vw;
	padding-top: 5vw;
}

.header__menu UL.open {
	display: flex;
}

.header__menu UL LI {
	font-weight: 300;
	font-size: 3.75vw;
	color: #b5b5b0;
}

.header__contacts {
	display: flex;
	align-items: flex-end;
}

.header__contacts A:hover {
	color: #ff6e0d;
}

.header__contacts-phone {
	display: block;
	width: 5.625vw;
	height: 5.625vw;
	text-indent: -3125vw;
	background: url(../img/header/icon-phone.svg) no-repeat 50% 50%/100% 100%;
	-webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
	        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
}

.header__contacts-phone A {
	display: block;
}

.header__contacts-email {
	display: none;
}

.header__tools {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 4.375vw;
}

.header__tools .full {
	position: relative;
}

.header__tools .full:before {
	position: absolute;
	top: -1.25vw;
	left: 2.5vw;
	z-index: 1;
	content: '';
	width: 2.8125vw;
	height: 2.8125vw;
	border-radius: 50%;
	background: #ff0000;
}

.header__tools-icon {
	display: block;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 100% 100%;
	-webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
	        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
}

.header__tools-icon:hover {
	-webkit-filter: invert(40%) sepia(77%) saturate(1010%) hue-rotate(352deg) brightness(107%) contrast(103%);
	        filter: invert(40%) sepia(77%) saturate(1010%) hue-rotate(352deg) brightness(107%) contrast(103%);
}

.header__tools-icon_basket {
	width: 6.25vw;
	height: 5.625vw;
	background-image: url(../img/header/icon-basket.svg);
}

.header__tools-icon_phone {
	width: 5.625vw;
	height: 5.625vw;
	background-image: url(../img/header/icon-phone.svg);
}

.header__tools-avatar IMG {
	width: 5vw;
	height: 5.625vw;
	-webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
	        filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(105%) contrast(101%);
}

.header__tools-avatar IMG:hover {
	-webkit-filter: invert(40%) sepia(77%) saturate(1010%) hue-rotate(352deg) brightness(107%) contrast(103%);
	        filter: invert(40%) sepia(77%) saturate(1010%) hue-rotate(352deg) brightness(107%) contrast(103%);
}

.breadcrumbs {
	padding-bottom: 5vw;
}

.breadcrumbs__block {
	display: flex;
	align-items: center;
	gap: 6.25vw;
	font-size: 3.75vw;
	line-height: 100%;
}

.breadcrumbs__block A {
	position: relative;
	color: #6e6e73;
}

.breadcrumbs__block A:after {
	position: absolute;
	top: 50%;
	left: calc(100% + 2.8125vw);
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	content: '';
	display: block;
	width: 1.5625vw;
	height: 2.5vw;
	background: url(../img/breadcrumbs/breadcrumbs.svg) no-repeat 50% 50%/100% 100%;
	-webkit-filter: invert(51%) sepia(0%) saturate(464%) hue-rotate(35deg) brightness(82%) contrast(88%);
	        filter: invert(51%) sepia(0%) saturate(464%) hue-rotate(35deg) brightness(82%) contrast(88%);
}

.breadcrumbs__block A:hover {
	color: #ff6e0d;
}

.dark .breadcrumbs {
	color: #b5b5b0;
}

.light .breadcrumbs {
	color: #1a1921;
}

.form-section {
	padding: 9.375vw 0;
}

.form-section__box {
	padding: 5.625vw 3.75vw 6.25vw 3.75vw;
}

.form-section__content {
	display: flex;
	flex-direction: column;
}

.form-section__content-title {
	font-weight: 800;
	font-size: 7.5vw;
	line-height: 90%;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 3.125vw;
}

.form-section__content-image {
	order: -1;
	padding: 0 0.9375vw;
	margin-top: -20.3125vw;
}

.form-section .form__title {
	font-weight: 800;
	font-size: 7.5vw;
	line-height: 90%;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 3.125vw;
}

.form-section .form__text {
	font-size: 4.375vw;
	line-height: 114%;
	text-align: center;
	margin-bottom: 3.125vw;
}

.form-section .form__input {
	border: 1px solid;
	background: none;
	text-align: center;
}

.form-section .form_white {
	color: #fff;
}

.form-section .form_white ::-webkit-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #fff;
}

.form-section .form_white ::-moz-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #fff;
}

.form-section .form_white ::-ms-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #fff;
}

.form-section .form_white ::placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #fff;
}

.form-section .form_white :-ms-input-placeholder {
	/* IE 10+ */
	color: #fff;
}

.form-section .form_white .form__input {
	border-color: #fff;
	color: #fff;
}

.form-section .form_black .form__input {
	border-color: #1a1921;
}

.form-section .form_black .form__footer-checkbox {
	border: 1px solid #1a1921;
}

.form-section .form_black .form__footer-checkbox-icon:before {
	background: #1a1921;
}

.form-section_orange .form-section__box {
	border-radius: 3.125vw;
	background: linear-gradient(90deg, #FF5201 0%, #FF6E0D 50%, #FF5201 100%);
}

.form-section_orange .form-section__content-title {
	color: #fff;
}

.form-section_white .form-section__box {
	border-radius: 3.125vw;
	background: #f0f7ff;
	color: #1a1921;
}

.form-section_big .form-section__box {
	padding: 0 3.75vw 6.25vw 3.75vw;
}

.footer {
	padding: 18.75vw 0;
	background: #1a1921;
	color: #fff;
}

.footer__logo {
	text-align: center;
	margin-bottom: 6.25vw;
}

.footer__logo IMG {
	width: 31.25vw;
}

.footer__box {
	display: flex;
	flex-direction: column;
	gap: 3.125vw;
}

.footer__contacts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 3.125vw;
	padding: 3.125vw 0;
	border: solid #6e6e73;
	border-width: 1px 0;
	font-size: 3.75vw;
	line-height: 133%;
}

.footer__contacts-list {
	display: flex;
	flex-direction: column;
	gap: 3.125vw;
	font-size: 3.75vw;
	line-height: 133%;
}

.footer__contacts-social {
	display: flex;
	gap: 3.125vw;
}

.footer__contacts-social A {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 8.125vw;
	height: 8.125vw;
	text-indent: -3125vw;
}

.footer__contacts-social A:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 100% 100%;
}

.footer__contacts-social A.vk:after {
	background-image: url(../img/footer/vk.svg);
}

.footer__contacts-social A.tg:after {
	background-image: url(../img/footer/tg.svg);
}

.footer__contacts-social A.wa:after {
	background-image: url(../img/footer/wa.svg);
}

.footer__contacts-address.mob {
	flex: 0 0 100%;
	padding-top: 3.125vw;
	border-top: 1px solid #6e6e73;
	color: #b5b5b0;
}

.footer__contacts-address.desk {
	display: none;
}

.footer__contacts-legal.desk {
	display: none;
}

.footer__contacts-legal.mob {
	padding-top: 3.125vw;
	border-top: 1px solid #6e6e73;
	font-size: 3.75vw;
	line-height: 133%;
	color: #b5b5b0;
}

.footer__menu {
	display: flex;
}

.footer__menu UL {
	display: flex;
	flex-direction: column;
	gap: 3.75vw 0;
	flex: 1 0;
}

.footer__menu LI {
	font-size: 3.75vw;
	line-height: 133%;
	color: #b5b5b0;
}

.footer__menu LI:hover {
	color: #ff6e0d;
}

.fancybox-bg {
	background: rgba(26, 25, 33, 0.74);
}

.fancybox-slide {
	padding: 0;
}

.popup-thanks .fancybox-button svg,
.popup-video .fancybox-button svg {
	display: none;
}

.fancybox-slide--html .popup-thanks .fancybox-close-small,
.fancybox-slide--html .popup-video .fancybox-close-small {
	width: 11.875vw;
	height: 11.875vw;
	padding: 0;
	margin: 4.6875vw 4.6875vw 0 0;
}

.fancybox-slide--html .popup-thanks .fancybox-close-small:before,
.fancybox-slide--html .popup-video .fancybox-close-small:before {
	content: '';
	display: block;
	width: 11.875vw;
	height: 11.875vw;
	background: url(../img/common/icon-accordion-close-gray.svg) no-repeat 50% 50%/100% 100%;
}

.fancybox-slide--html .popup-thanks .fancybox-close-small:hover:before,
.fancybox-slide--html .popup-video .fancybox-close-small:hover:before {
	background-image: url(../img/common/icon-accordion-close-orange.svg);
}

.fancybox-slide--html .popup-video .fancybox-close-small {
	margin: 0;
}

.fancybox-navigation .fancybox-button svg {
	display: none;
}

.fancybox-navigation .fancybox-button {
	top: 50%;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 11.875vw;
	height: 11.875vw;
	padding: 0;
	background: url(../img/common/icon-arrow-white.svg) no-repeat 50% 50%/100% 100%;
}

.fancybox-navigation .fancybox-button:hover {
	background-image: url(../img/common/icon-arrow-orange.svg);
}

.fancybox-navigation .fancybox-button[disabled] {
	background-image: url(../img/common/icon-arrow-darkgray.svg);
}

.fancybox-navigation .fancybox-button--arrow_left {
	-webkit-transform: translate(0, -50%) rotate(-180deg);
	        transform: translate(0, -50%) rotate(-180deg);
}

.popup-thanks {
	padding: 9.375vw 1.5625vw 7.5vw 1.5625vw;
	border-radius: 5vw;
	background: #f0f7ff;
}

.popup-thanks__box {
	display: flex;
	flex-direction: column;
	gap: 6.25vw;
}

.popup-thanks__photo {
	text-align: center;
}

.popup-thanks__photo IMG {
	width: 62.5vw;
}

.popup-thanks__content {
	text-align: center;
}

.popup-thanks__title {
	font-weight: 700;
	font-size: 4.0625vw;
	line-height: 138%;
	text-transform: uppercase;
	color: #1a1921;
	margin-bottom: 4.6875vw;
}

.popup-thanks__text {
	display: flex;
	flex-direction: column;
	gap: 3.125vw;
}

.popup-thanks__text P {
	font-size: 4.375vw;
	line-height: 128%;
	color: #6e6e73;
	margin: 0;
}

.popup-thanks__text A:hover {
	text-decoration: underline;
	color: #ff6e0d;
}

.popup-video {
	width: 90vw;
	height: calc(90vw / 100 * 56.25 + 15.625vw);
	padding: 15.625vw 0 0 0;
	background: none;
}

.popup-video VIDEO,
.popup-video IFRAME {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #000;
}

.popup-video .fancybox-close-small {
	width: 3.75vw;
	height: 4.0625vw;
	padding: 0;
}

.popup-video .fancybox-close-small:before {
	width: 3.75vw;
	height: 4.0625vw;
}

.popup-login {
	width: 100%;
	min-height: 100vh;
	padding: 18.75vw 6.875vw 6.25vw 6.875vw;
	background: #1a1921;
	color: #fff;
}

.popup-login .hide {
	display: none;
}

.popup-login .form__title {
	font-weight: 600;
	font-size: 5vw;
	line-height: 100%;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 6.25vw;
}

.popup-login .form__bigtext {
	font-size: 5vw;
	line-height: 112%;
	letter-spacing: -0.02em;
	text-align: center;
	margin-bottom: 3.125vw;
}

.popup-login .form__text {
	font-size: 3.75vw;
	line-height: 120%;
	letter-spacing: -0.03em;
	color: #6e6e73;
	text-align: center;
	margin: 0;
}

.popup-login .form__text_col {
	display: flex;
	justify-content: space-between;
}

.popup-login .form__text SPAN {
	text-decoration: underline;
	cursor: pointer;
}

.popup-login .form__text SPAN.orange {
	color: #ff6e0d;
}

.popup-login .form__text SPAN:hover {
	text-decoration: none;
}

.popup-login .form__label {
	font-weight: 500;
	font-size: 4.375vw;
	line-height: 120%;
	color: #6e6e73;
	margin-bottom: 1.5625vw;
}

.popup-login .form__label SPAN {
	color: #ff6e0d;
}

.popup-login .form__placeholder {
	position: relative;
	width: 100%;
	border-radius: 3.125vw;
	background: #fff;
}

.popup-login .form__placeholder .form__label {
	position: absolute;
	top: 4.0625vw;
	left: 3.125vw;
	right: 0;
	display: block;
	margin: 0;
	-webkit-transform: translate(0, 1.5625vw);
	        transform: translate(0, 1.5625vw);
	-webkit-transform-origin: 0 0;
	        transform-origin: 0 0;
	transition: transform .5s,-webkit-transform .5s;
}

.popup-login .form__placeholder_focus .form__label {
	-webkit-transform: translateY(-1.5625vw) scale(0.75);
	        transform: translateY(-1.5625vw) scale(0.75);
	-webkit-transform-origin: 0 0;
	        transform-origin: 0 0;
}

.popup-login .form__input {
	position: relative;
	z-index: 1;
	height: 15.625vw;
	padding: 2.5vw 3.125vw 0 3.125vw;
	background: none;
	font-size: 4.375vw;
}

.popup-login .form__input::-webkit-input-placeholder {
	display: none;
	opacity: 0;
}

.popup-login .form__input::-moz-placeholder {
	display: none;
	opacity: 0;
}

.popup-login .form__input::-ms-input-placeholder {
	display: none;
	opacity: 0;
}

.popup-login .form__input::placeholder {
	display: none;
	opacity: 0;
}

.popup-login .form__footer {
	color: #6e6e73;
	margin: 0;
}

.popup-login .form__footer-checkbox {
	border: 1px solid #6e6e73;
}

.popup-login .form__footer-checkbox-icon:before {
	background: #6e6e73;
}

.popup-login .form__captcha {
	display: flex;
	flex-direction: column;
	gap: 3.125vw;
}

.popup-login .form__captcha.hide {
	display: none;
}

.popup-login .form__captcha IMG {
	max-width: 58.4375vw;
	border-radius: 3.125vw;
}

.popup-login .form__captcha-text {
	font-size: 3.75vw;
}

.popup-login .form__message:before {
	content: '';
	display: block;
	width: 30.3125vw;
	height: 30.3125vw;
	background: url(../img/common/ellipse-seccess.png) no-repeat 50% 50%/100% 100%;
	margin: 0 auto 6.25vw auto;
}

#popup-catalogue {
	display: none;
}

.popup-cookies {
	position: fixed;
	bottom: 2.8125vw;
	left: 0;
	right: 0;
	z-index: 10;
}

.popup-cookies__box {
	display: flex;
	flex-direction: column;
	padding: 3.125vw;
	border-radius: 3.125vw;
	background: #f0f7ff;
	box-shadow: 0 0.625vw 1.5625vw 0 rgba(0, 0, 0, 0.25);
	color: #1a1921;
	text-align: center;
}

.popup-cookies__title {
	font-weight: 600;
	font-size: 4.375vw;
	line-height: 100%;
	text-transform: uppercase;
	margin-bottom: 1.5625vw;
}

.popup-cookies__text {
	font-size: 3.75vw;
	line-height: 116%;
	color: #6e6e73;
	margin-bottom: 2.8125vw;
}

.popup-cookies__text A {
	text-decoration: underline;
}

.popup-cookies__buttonbox .button {
	border: 0.625vw solid #bfc4cc;
	background: none;
	color: #bfc4cc;
}

.popup-cookies__buttonbox .button:hover {
	border-color: #ff6e0d;
	color: #ff6e0d;
}
