@import "../fonts/stylesheet.css";
:root {
	--red: #dd2a1b;
	--black: #000;
	--white: #fff;
	--gray: #e6e6e6;
	--gray-text: #717171;
}

:root {
	--breakpoint-mobile: 1200px;
}

* {
	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: "Golos Text";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

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

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

address {
	font-style: normal;
}

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

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

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

.title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 40px;
	line-height: 125%;
	color: var(--black);
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1024px) {
	.title {
		font-size: 32px;
	}
}
@media (max-width: 820px) {
	.title {
		font-size: 28px;
	}
}
@media (max-width: 480px) {
	.title {
		font-size: 24px;
		text-align: center;
	}
}

.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;
	gap: 10px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	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;
	background: var(--red);
	border-radius: 12px;
	padding: 10px 20px;
	height: 50px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	color: var(--white);
	border: 1px solid var(--red);
}
.btn img {
	width: 24px;
}
@media (max-width: 1200px) {
	.btn img {
		width: 18px;
	}
}
@media (max-width: 1200px) {
	.btn {
		height: 50px;
		padding: 10px 24px;
	}
}
@media (max-width: 480px) {
	.btn {
		padding: 10px 20px;
		gap: 5px;
	}
}
@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: #fff;
		color: var(--red);
	}
}

.btn_w {
	border: 1px solid var(--red);
	background: #fff;
	color: var(--red);
}
@media (min-width: 1024px) {
	.btn_w:hover {
		color: #fff;
		background: #dd2a1b;
	}
}

.text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--gray-text);
}
.text > *:not(:last-child) {
	margin: 0px 0px 16px 0px;
}
@media (max-width: 820px) {
	.text > *:not(:last-child) {
		margin: 0px 0px 14px 0px;
	}
}
@media (max-width: 820px) {
	.text {
		font-size: 14px;
	}
}

.text20 {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 150%;
	color: var(--gray-text);
}
.text20 > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.text20 > *:not(:last-child) {
		margin: 0px 0px 16px 0px;
	}
}
@media (max-width: 1024px) {
	.text20 {
		font-size: 16px;
	}
}

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

.mt {
	margin-top: 80px;
	padding-bottom: 80px;
}
@media (max-width: 480px) {
	.mt {
		margin-top: 50px;
		padding-bottom: 50px;
	}
}

.mb {
	margin-bottom: 80px;
}
@media (max-width: 480px) {
	.mb {
		margin-bottom: 50px;
	}
}

.blocktitle {
	position: relative;
	opacity: 0;
	visibility: hidden;
	top: 50px;
	-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-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.blocktitle._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
.blocktitle > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}

.blocktitle_row {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	gap: 20px 30px;
}
.blocktitle_row .blocktitle__block {
	margin: 0;
}
@media (max-width: 480px) {
	.blocktitle_row .blocktitle__block {
		text-align: center;
		margin: auto;
	}
}

.blocktitle__block {
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.blocktitle__block._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
.blocktitle__block > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}
@media (max-width: 480px) {
	.blocktitle__block > *:not(:last-child) {
		margin: 0px 0px 14px 0px;
	}
}

.cover__btn {
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.cover__btn._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}

#hidd {
	display: none !important;
}

.header {
	position: relative;
	background: white;
	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;
	-webkit-box-shadow: 0 15px 40px 0 rgba(116, 116, 116, 0.1);
	        box-shadow: 0 15px 40px 0 rgba(116, 116, 116, 0.1);
}
.header._active {
	position: fixed;
	top: -100%;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	-webkit-box-shadow: 0px 14px 27px -6px rgba(0, 0, 0, 0.14);
	        box-shadow: 0px 14px 27px -6px rgba(0, 0, 0, 0.14);
}
.header._fixed {
	top: 0;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	-webkit-backdrop-filter: blur(16px);
	        backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.5);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: -80px;
}
@media (max-width: 1024px) {
	.header._fixed {
		top: 0;
	}
}

.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;
	padding: 20px 0px;
}
@media (max-width: 1200px) {
	.header__row {
		padding: 0;
	}
}

.header__top {
	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;
	padding: 15px 0px;
	position: relative;
	z-index: 1;
	gap: 30px;
}
.header__top::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 100vw;
	height: 1px;
	background: #e6e6e6;
}
@media (max-width: 1200px) {
	.header__top {
		padding: 20px 55px 20px 0px;
	}
	.header__top::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}

.header__logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 160px;
	        flex: 0 0 160px;
	position: relative;
	z-index: 5;
}
.header__logo img {
	width: 100%;
}
@media (max-width: 1200px) {
	.header__logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 120px;
		        flex: 0 0 120px;
	}
}

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

.header__contacts {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px 60px;
}
@media (max-width: 1200px) {
	.header__contacts {
		-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;
	}
}
@media (max-width: 480px) {
	.header__contacts {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}

.header__item a, .header__item p {
	display: block;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	color: var(--black);
}
.header__item a {
	font-weight: 600;
	white-space: nowrap;
}
.header__item > *:not(:last-child) {
	margin: 0px 0px 5px 0px;
}
.header__item:last-child {
	text-align: right;
}
@media (max-width: 480px) {
	.header__item:last-child {
		text-align: left;
	}
}

.header__item_addr a, .header__item_addr p {
	color: #999;
}
@media (max-width: 1200px) {
	.header__item_addr {
		display: none;
	}
}

@media (max-width: 1200px) {
	.header__item_tel a {
		font-size: 18px;
	}
}

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

.menu__link {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	color: var(--black);
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.menu__link:hover {
		color: #dd2a1b;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 1200px) {
	.menu__link {
		font-size: 18px;
	}
}

.menu__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
@media (max-width: 1200px) {
	.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: 1200px) and (max-width: 1200px) {
	.menu__body {
		padding: 80px 40px 75px 40px;
	}
}
@media (max-width: 1200px) and (max-width: 480px) {
	.menu__body {
		padding: 100px 20px;
	}
}
@media (max-width: 1200px) {
	.menu__body > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}

.icon-menu {
	display: none;
}
@media (max-width: 1200px) {
	.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;
	}
}

.menu__buttons {
	display: none;
}
@media (max-width: 1200px) {
	.menu__buttons {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		gap: 20px;
		position: relative;
		width: 100%;
		padding: 20px 0px 0px 0px;
	}
	.menu__buttons::after {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
		width: 100vw;
		height: 1px;
		background: #e6e6e6;
	}
	.menu__buttons .contacts-icons {
		gap: 15px;
	}
	.menu__buttons .contacts-icons img {
		width: 40px;
	}
}
@media (max-width: 1200px) and (max-width: 480px) {
	.menu__buttons {
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}

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

.header__mobtel {
	position: relative;
	width: 26px;
	height: 26px;
	background: url("../img/icons/tel.svg?1") no-repeat;
	background-size: contain;
}

.header__mobuser {
	position: relative;
	width: 22px;
	height: 22px;
	background: url("../img/icons/user.svg") no-repeat;
	background-size: contain;
}

.btn_lc {
	padding: 0;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 18px;
	line-height: 150%;
	color: #dd2a1b;
	height: auto;
	border: 0;
	background: none;
}
@media (min-width: 1024px) {
	.btn_lc:hover {
		background: none;
		color: #000;
	}
}

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

.connect-popup .popup__content,
.callback-popup .popup__content {
	max-width: 630px;
	background: #fff;
	border-radius: 30px;
	padding: 40px;
}
@media (max-width: 820px) {
	.connect-popup .popup__content,
.callback-popup .popup__content {
		padding: 30px;
		border-radius: 20px;
	}
}
@media (max-width: 480px) {
	.connect-popup .popup__content,
.callback-popup .popup__content {
		padding: 20px;
	}
}
.connect-popup .popup__title,
.callback-popup .popup__title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: var(--black);
	margin: 0px 0px 20px 0px;
}
@media (max-width: 820px) {
	.connect-popup .popup__title,
.callback-popup .popup__title {
		font-size: 20px;
	}
}

.terminal-popup .popup__content {
	max-width: 826px;
	background: #fff;
	padding: 30px;
}
.terminal-popup .popup__title {
	font-size: 24px;
	text-align: left;
	padding: 0px 50px 0px 0px;
	margin: 0px 0px 20px 0px;
}
.terminal-popup .terminal-popup__list {
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
	-moz-column-gap: 40px;
	-webkit-column-gap: 40px;
	column-gap: 40px;
}
@media (max-width: 480px) {
	.terminal-popup .terminal-popup__list {
		columns: 1;
		-webkit-columns: 1;
		-moz-columns: 1;
	}
}
.terminal-popup li {
	margin: 0px 0px 0px 20px;
	line-height: 1.8;
	list-style-type: disc;
}

.terminal-popup__select {
	width: 373px;
	max-width: 100%;
	margin: 0px 0px 20px 0px;
}

footer {
	border-top: 1px solid var(--gray);
	padding-top: 60px;
}
footer > ._container > *:not(:last-child) {
	margin: 0px 0px 60px 0px;
}
footer .social {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.footer__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.footer__row > *:not(:last-child) {
	padding: 0px 30px 0px 0px;
}
@media (max-width: 1024px) {
	.footer__row {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		gap: 30px 0;
	}
}

.footer__col {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.footer__col h3 {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: var(--black);
}
@media (max-width: 1024px) {
	.footer__col h3 {
		font-size: 20px;
	}
}
.footer__col .footer__btn {
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
}
@media (max-width: 1024px) {
	.footer__col .footer__btn {
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
	}
}
.footer__col > *:not(:last-child) {
	margin: 0px 0px 30px 0px;
}
@media (max-width: 820px) {
	.footer__col > *:not(:last-child) {
		margin: 0px 0px 15px 0px;
	}
}
@media (max-width: 1024px) {
	.footer__col:nth-child(1), .footer__col:nth-child(4) {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		padding: 0;
	}
}
@media (max-width: 1024px) {
	.footer__col:nth-child(2), .footer__col:nth-child(3) {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 480px) {
	.footer__col:nth-child(2), .footer__col:nth-child(3) {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		text-align: center;
		padding: 0;
	}
}

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

.footer__logo {
	max-width: 160px;
}
.footer__logo img {
	width: 100%;
}

.footer__pay {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.footer__pay img {
	max-width: 50px;
	max-height: 28px;
}

.footer__links a {
	display: block;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 120%;
	color: var(--gray-text);
}
@media (min-width: 1024px) {
	.footer__links a:hover {
		color: #dd2a1b;
	}
}
.footer__links > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}

.footer__block {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: right;
	color: var(--black);
}
.footer__block a {
	color: var(--black);
	font-weight: 600;
}
@media (max-width: 1024px) {
	.footer__block {
		text-align: center;
	}
}

.footer-bot {
	padding: 30px 0px;
	position: relative;
}
.footer-bot::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	width: 100vw;
	border-top: 1px solid var(--gray);
}
.footer-bot > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.footer-bot__info {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--gray-text);
}
@media (max-width: 820px) {
	.footer-bot__info {
		font-size: 12px;
		text-align: center;
	}
}

.footer-bot__block p {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	color: #c5c5c5;
}
@media (max-width: 820px) {
	.footer-bot__block p {
		font-size: 12px;
		text-align: center;
	}
}

#cookie_notification {
	display: none;
	position: fixed;
	z-index: 100;
	bottom: 20px;
	right: 20px;
	width: 300px;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
	        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
	border: 1px solid #ddd;
}
#cookie_notification h4 {
	font-size: 24px;
	margin: 0px 0px 10px 0px;
	font-weight: 500;
}
#cookie_notification p {
	font-size: 14px;
	line-height: 1.3;
	color: #000;
}
#cookie_notification a {
	color: #000;
	text-decoration: underline;
}
@media (min-width: 1024px) {
	#cookie_notification a:hover {
		text-decoration: none;
	}
}
#cookie_notification > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
@media (max-width: 480px) {
	#cookie_notification {
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
		width: calc(100% - 30px);
		right: 0;
	}
}

#cookie_notification.show {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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 20px;
	border: 1px solid var(--blue);
	font-size: 16px;
	background: #fafafa;
	border-radius: 12px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	color: var(--black);
}
.input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	background: #fafafa;
}
.input::-moz-placeholder, textarea::-moz-placeholder {
	background: #fafafa;
}
.input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	background: #fafafa;
}
.input::-ms-input-placeholder, textarea::-ms-input-placeholder {
	background: #fafafa;
}
.input::placeholder, textarea::placeholder {
	background: #fafafa;
}
.input._form-error, textarea._form-error {
	border: 1px solid red;
}
@media (max-width: 1200px) {
	.input, textarea {
		height: 50px;
		font-size: 14px;
		padding: 10px;
	}
}

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

.form__item {
	width: 100%;
	position: relative;
}
.form__item .form__error {
	position: absolute;
	top: 50%;
	left: 20px;
	right: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	background: #fafafa;
	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;
}

.form__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
}

.cover-form > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
.cover-form .form__row .form__item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 33.333%;
	        flex: 0 1 33.333%;
}
.cover-form .checkbox {
	padding: 15px 0px;
}

.capt {
	width: 350px;
	max-width: 100%;
	display: block;
}

.login-lc-form {
	border-radius: 30px;
	background: #fff;
	padding: 30px;
	max-width: 630px;
	margin: 0 auto;
}
.login-lc-form > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
.login-lc-form .form__btn {
	width: 100%;
}
@media (max-width: 820px) {
	.login-lc-form {
		padding: 20px;
		border-radius: 30px;
	}
}

.login-lc-form__t {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: var(--black);
}
@media (max-width: 820px) {
	.login-lc-form__t {
		font-size: 20px;
	}
}

.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: 12px;
	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: 14px;
	line-height: 1.2;
}
.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;
	border-radius: 12px;
	background-color: #fafafa;
	cursor: pointer;
	width: 100%;
	height: 60px;
	padding: 0px 20px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	color: var(--black);
}
@media (max-width: 1200px) {
	.select__title {
		height: 50px;
	}
}
.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: 1;
	top: 52px;
	border-radius: 0 0 4px 4px;
	min-width: 100%;
	left: 0;
	background-color: #fafafa;
	border-top: 0;
	border-top: 0;
	padding: 10px 0px 5px 0px;
	overflow: hidden;
}
.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;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--black);
	color: inherit;
	background: none;
}
.select__option._select-selected {
	background-color: #eee;
}
.select__option[hidden] {
	display: none;
}
@media (any-hover: hover) {
	.select__option:hover {
		background: #d9d9d9;
	}
}
.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/select2.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;
}

.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 {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	padding: 40px 0px 0px 0px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.slider-controls .button-prev,
.slider-controls .button-next {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	-webkit-transform: translate(0);
	    -ms-transform: translate(0);
	        transform: translate(0);
}
.slider-controls .button-prev {
	margin: 0px 20px 0px 0px;
}

.button-prev {
	position: absolute;
	top: 50%;
	left: -60px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 40px;
	height: 40px;
	background: url("../img/icons/p-left.svg") no-repeat;
	background-size: contain;
	background-position: right center;
	cursor: pointer;
}
@media (max-width: 1340px) {
	.button-prev {
		left: -5px;
	}
}
@media (max-width: 480px) {
	.button-prev {
		width: 30px;
		height: 30px;
		left: 5px;
	}
}

.button-next {
	position: absolute;
	top: 50%;
	right: -60px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 40px;
	height: 40px;
	background: url("../img/icons/p-right.svg") no-repeat;
	background-size: contain;
	background-position: left center;
	cursor: pointer;
}
@media (max-width: 1340px) {
	.button-next {
		right: -5px;
	}
}
@media (max-width: 480px) {
	.button-next {
		width: 30px;
		height: 30px;
		right: 5px;
	}
}

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

.tarifs-slider {
	position: relative;
}
.tarifs-slider._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
}
.tarifs-slider .block-items {
	margin: 0;
}
.tarifs-slider .block-items-item {
	padding: 0px;
}
.tarifs-slider .block-items-item__row {
	height: auto;
}
.tarifs-slider .swiper-slide {
	min-height: 100% !important;
}
@media (max-width: 1340px) {
	.tarifs-slider {
		margin: 0px -40px;
		padding: 0px 40px;
	}
}
@media (max-width: 480px) {
	.tarifs-slider {
		margin: 0px -30px;
		padding: 0px 40px;
	}
}

.bread {
	padding-top: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 7px 32px;
	overflow: auto;
}
.bread::-webkit-scrollbar {
	display: none;
}
.bread a, .bread p {
	position: relative;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	color: var(--black);
}
@media (max-width: 480px) {
	.bread a, .bread p {
		font-size: 14px;
	}
}
.bread a {
	font-weight: 400;
	color: var(--gray-text);
}
@media (min-width: 1024px) {
	.bread a:hover {
		text-decoration: underline;
	}
}
.bread > *:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg width='6' height='9' viewBox='0 0 6 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.353516 0.353546L4.35352 4.35355L0.353516 8.35355' stroke='%23717171' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 9px;
	height: 9px;
}

[data-sticky]._sticked [data-sticky-item] {
	position: fixed !important;
	bottom: auto !important;
	left: 0 !important;
	right: 0 !important;
}

.block .block__item {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.block .block__item .block__title {
	width: 100%;
	text-align: left;
	position: relative;
	padding-right: 30px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: var(--black);
	padding-right: 70px;
}
@media (max-width: 1024px) {
	.block .block__item .block__title {
		font-size: 20px;
	}
}
@media (max-width: 820px) {
	.block .block__item .block__title {
		font-size: 18px;
	}
}
@media (max-width: 820px) {
	.block .block__item .block__title {
		font-size: 16px;
	}
}
.block .block__item .block__title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 14px;
	height: 14px;
	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;
	width: 50px;
	height: 50px;
}
@media (max-width: 820px) {
	.block .block__item .block__title::after {
		width: 30px;
		height: 30px;
	}
}
.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;
}
@media (max-width: 480px) {
	.block .block__item {
		padding: 20px;
	}
}

.hero {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #fafafa;
	padding: 0;
	position: relative;
}
.hero::before {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fafafa;
}

.hero__row {
	padding: 60px 0px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 40px;
	overflow: hidden;
}
@media (max-width: 700px) {
	.hero__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		text-align: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

.hero__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 620px;
	        flex: 0 1 620px;
	padding: 0px 0px 60px 0px;
}
.hero__left > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 1024px) {
	.hero__left > *:not(:last-child) {
		margin: 0px 0px 25px 0px;
	}
}
@media (max-width: 700px) {
	.hero__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		padding: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

.hero__title {
	font-size: 50px;
	margin-bottom: 25px !important;
	position: relative;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.hero__title._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
@media (max-width: 1340px) {
	.hero__title {
		font-size: calc(30px + 30 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.hero__title {
		margin-bottom: 15px !important;
	}
}

.hero__text {
	max-width: 375px;
	position: relative;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.hero__text._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}

.hero__img {
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 605px;
	        flex: 0 1 605px;
	margin: 0px 0px -60px 0px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	left: 50px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.hero__img._watcher-view {
	left: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}
.hero__img img {
	width: 100%;
}
@media (max-width: 1024px) {
	.hero__img {
		margin: 0;
	}
}
@media (max-width: 700px) {
	.hero__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		max-width: 400px;
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
	}
}

.hero__btn {
	position: relative;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.hero__btn._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}

.tarifs .block-items-item__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.tarifs .block-items-item__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
.tarifs .block-items-item__bg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
}
.tarifs .block-items-item__row {
	position: relative;
	border: 0;
}
.tarifs .block-items-item__row::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: -50%;
	width: 100px;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	-webkit-transform: skew(-25deg);
	    -ms-transform: skew(-25deg);
	        transform: skew(-25deg);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.tarifs .block-items-item__row._watcher-view::before {
	left: 150%;
	-webkit-transition: all 0.6s ease 1.2s;
	-o-transition: all 0.6s ease 1.2s;
	transition: all 0.6s ease 1.2s;
	opacity: 1;
	visibility: visible;
}
.tarifs .block-items-item__row > * {
	color: #fff;
}
.tarifs .block-items-item__btn {
	color: #dd2a1b;
	border: 0;
	overflow: hidden;
}
@media (min-width: 1024px) {
	.tarifs .block-items-item__btn:hover {
		color: #fff;
		border: 1px solid #FF7B70;
	}
}

@-webkit-keyframes ratesbg {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.04);
		        transform: scale(1.04);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@keyframes ratesbg {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.04);
		        transform: scale(1.04);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
.block-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -12px;
}

.block-items_2 .block-items-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
}
@media (max-width: 700px) {
	.block-items_2 .block-items-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.block-items-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	padding: 12px;
	position: relative;
}
@media (max-width: 1024px) {
	.block-items-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 700px) {
	.block-items-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.block-items-item_1 .block-items-item__bg {
	background: #FF1400;
}
.block-items-item_1 .block-items-item__img img {
	width: 70%;
}

.block-items-item_2 .block-items-item__bg {
	background: #DF1100;
}

.block-items-item_3 .block-items-item__bg {
	background: #C60F00;
}

.block-items-item_4 .block-items-item__bg {
	background: #B00D00;
}

.block-items-item_5 .block-items-item__bg {
	background: #950B00;
}
.block-items-item_5 .block-items-item__img img {
	width: 60%;
}

.block-items-item_6 .block-items-item__bg {
	background: #7D0900;
}
.block-items-item_6 .block-items-item__img img {
	width: 60%;
}

.block-items-item__row {
	border: 1px solid var(--red);
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	height: 100%;
	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;
}
.block-items-item__row > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
.block-items-item__row ul {
	padding: 10px 0px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.block-items-item__row ul li {
	position: relative;
	padding: 0px 0px 0px 20px;
}
.block-items-item__row ul li::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 10px;
	height: 14px;
	background: url("../img/icons/flash.svg") no-repeat;
	background-size: contain;
}
.block-items-item__row ul > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}
@media (max-width: 820px) {
	.block-items-item__row {
		padding: 20px;
	}
}
@media (max-width: 480px) {
	.block-items-item__row {
		border-radius: 20px;
	}
}

.block-items-item__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
}

.block-items-item__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 80px;
	        flex: 0 0 80px;
	width: 80px;
	height: 80px;
	position: relative;
	background: #fff;
	border-radius: 50%;
	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;
}
.block-items-item__img img {
	width: 80%;
}
@media (max-width: 1200px) {
	.block-items-item__img {
		width: 60px;
		height: 60px;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 60px;
		        flex: 0 0 60px;
	}
}

.block-items-item__mbps {
	position: relative;
	font-family: var(--font-family);
	font-size: 16px;
	border: 1px solid var(--white);
	border-radius: 12px;
	padding: 7px 10px;
	white-space: nowrap;
	font-weight: 600;
}

.block-items-item__sub {
	position: relative;
}

.block-items-item__t {
	position: relative;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
}
@media (max-width: 820px) {
	.block-items-item__t {
		font-size: 20px;
	}
}

.block-items-item__price {
	position: relative;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 28px;
	line-height: 125%;
	margin: 0px 0px 20px 0px !important;
}
@media (max-width: 820px) {
	.block-items-item__price {
		font-size: 24px;
	}
}

.iptv__row {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.iptv__row._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
@media (max-width: 480px) {
	.iptv__row {
		border-radius: 20px;
	}
}

.iptv__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.iptv__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
.iptv__bg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background: #DD2A1B;
}

.iptv__content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 50px;
	gap: 20px 40px;
}
@media (max-width: 1024px) {
	.iptv__content {
		padding: 30px;
	}
}
@media (max-width: 700px) {
	.iptv__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 30px 20px 20px 20px;
	}
}

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

.iptv__title {
	color: #fff;
}
@media (max-width: 700px) {
	.iptv__title {
		text-align: left;
	}
}

.iptv__text {
	color: #fff;
}

@media (min-width: 1024px) {
	.iptv__btn:hover {
		border: 1px solid #FF7B70;
	}
}

.iptv__img {
	-ms-flex-item-align: end;
	    -ms-grid-row-align: end;
	    align-self: end;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 470px;
	        flex: 0 1 470px;
	margin: -30px -50px -50px 0px;
}
.iptv__img img {
	width: 100%;
}
@media (max-width: 1024px) {
	.iptv__img {
		margin: -30px -30px -30px 0px;
	}
}
@media (max-width: 700px) {
	.iptv__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px -20px -20px 0px;
	}
}

.cover {
	background: #fafafa;
}

.cover__blocktitle {
	margin: 0px 0px 30px 0px;
}
@media (max-width: 600px) {
	.cover__blocktitle {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin: 0px 0px 20px 0px;
	}
}

.cover__title {
	margin: 0 !important;
}

.cover__text {
	margin: 0px 0px 40px 0px;
}

.cover__map {
	height: 560px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.cover__map._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
.cover__map img, .cover__map iframe, .cover__map script {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	border-radius: 30px;
}
@media (max-width: 480px) {
	.cover__map img, .cover__map iframe, .cover__map script {
		border-radius: 20px;
	}
}
@media (max-width: 480px) {
	.cover__map {
		height: 400px;
	}
}

@media (max-width: 700px) {
	.about__title {
		margin: 0px 0px 16px 0px !important;
	}
}

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

.about__left {
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	left: -50px;
}
.about__left._watcher-view {
	left: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}
.about__left > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 700px) {
	.about__left > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}

.about__img {
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	right: -50px;
}
.about__img._watcher-view {
	right: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.7s;
	-o-transition: all 0.5s ease 0.7s;
	transition: all 0.5s ease 0.7s;
}
.about__img img {
	width: 100%;
}

.advant .block-items-item__row {
	border: 1px solid var(--gray);
}
.advant .promo__text {
	color: var(--black);
}

.faq {
	background: #fafafa;
}
.faq ._container {
	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;
	gap: 40px;
}
@media (max-width: 480px) {
	.faq ._container {
		gap: 25px;
	}
}
.faq .faq__title {
	margin: 0;
}
.faq h3 {
	font-size: 24px;
	font-weight: 600;
}
@media (max-width: 820px) {
	.faq h3 {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.faq h3 {
		font-size: 18px;
	}
}

.block {
	width: 100%;
}
.block > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.block > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}

.block__item._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}
@media (max-width: 820px) {
	.block__item {
		padding: 20px;
	}
}
@media (max-width: 480px) {
	.block__item {
		padding: 15px;
	}
}

.block__text {
	margin: 20px 0px 0px 0px;
}
.block__text li {
	list-style-type: disc;
	margin: 0px 0px 0px 20px;
}
.block__text > *:not(:last-child) {
	margin: 0;
}

.grey-bg {
	background: #fafafa;
	padding: 0px 0px 80px 0px;
}

.cover-block,
.faq-page,
.tv-page,
.pay-page,
.contacts {
	padding: 60px 0px 0px 0px;
}
.cover-block > ._container > *:not(:last-child),
.faq-page > ._container > *:not(:last-child),
.tv-page > ._container > *:not(:last-child),
.pay-page > ._container > *:not(:last-child),
.contacts > ._container > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 700px) {
	.cover-block > ._container > *:not(:last-child),
.faq-page > ._container > *:not(:last-child),
.tv-page > ._container > *:not(:last-child),
.pay-page > ._container > *:not(:last-child),
.contacts > ._container > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}
@media (max-width: 480px) {
	.cover-block,
.faq-page,
.tv-page,
.pay-page,
.contacts {
		padding: 40px 0px 0px 0px;
	}
}

.cover-block .blocktitle__text_1 {
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.cover-block .blocktitle__text_1._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}

.cover-formblock {
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	padding: 40px;
	border-radius: 30px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.cover-formblock._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
.cover-formblock > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
@media (max-width: 1024px) {
	.cover-formblock {
		gap: 30px;
		padding: 30px;
	}
}
@media (max-width: 820px) {
	.cover-formblock {
		gap: 20px;
		padding: 20px;
	}
}
@media (max-width: 700px) {
	.cover-formblock {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media (max-width: 480px) {
	.cover-formblock {
		margin: 0px -20px !important;
		border-radius: 0;
	}
}

.cover-formblock__img img {
	width: 100%;
}

.cover-adv .block-items-item__row {
	border: 0;
	background: #fff;
}

.faq-page__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 25px;
}
@media (max-width: 820px) {
	.faq-page__row {
		gap: 20px;
	}
}
@media (max-width: 700px) {
	.faq-page__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}

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

.faq-page__block {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 410px;
	        flex: 0 0 410px;
	border-radius: 30px;
	background: #fff;
	padding: 30px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.faq-page__block._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
.faq-page__block h3 {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: var(--black);
	padding-right: 70px;
	margin: 0px 0px 20px 0px;
}
@media (max-width: 1024px) {
	.faq-page__block h3 {
		font-size: 20px;
	}
}
@media (max-width: 820px) {
	.faq-page__block h3 {
		font-size: 18px;
	}
}
@media (max-width: 820px) {
	.faq-page__block h3 {
		font-size: 16px;
	}
}
@media (max-width: 1024px) {
	.faq-page__block {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 300px;
		        flex: 0 0 300px;
	}
}
@media (max-width: 820px) {
	.faq-page__block {
		padding: 20px;
	}
}
@media (max-width: 700px) {
	.faq-page__block {
		width: 100%;
		border-radius: 30px;
	}
}

.faq-page__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 10px;
}
.faq-page__buttons button {
	color: #000;
	background: #fafafa;
	border: 1px solid #fafafa;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.faq-page__buttons button._active {
	background: #dd2a1b;
	color: #fff;
}

.faq-page__item {
	display: none;
}
.faq-page__item._active {
	display: block;
}

.tv-page {
	padding: 30px 0px 0px 0px;
}
.tv-page .tabs {
	background: #fff;
	padding: 40px;
	border-radius: 30px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.tv-page .tabs._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
@media (max-width: 1024px) {
	.tv-page .tabs {
		padding: 30px;
	}
}
@media (max-width: 700px) {
	.tv-page .tabs {
		padding: 20px;
		border-radius: 0;
		margin: 0px -20px !important;
	}
}
.tv-page .tabs__navigation {
	margin: 0px 0px 30px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.tv-page .tabs__navigation > *:not(:last-child) {
	margin: 0px 5px 0px 0px;
}
@media (max-width: 480px) {
	.tv-page .tabs__navigation > *:not(:last-child) {
		margin: 0px 0px 5px 0px;
	}
}
@media (max-width: 480px) {
	.tv-page .tabs__navigation {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.tv-page .tabs__title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	color: var(--black);
	border-radius: 12px;
	padding: 0px 25px;
	height: 60px;
	background: #fafafa;
}
.tv-page .tabs__title._tab-active {
	background: #dd2a1b;
	border: 1px solid #dd2a1b;
	color: #fff;
}
@media (max-width: 480px) {
	.tv-page .tabs__title {
		padding: 10px;
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
		font-size: 16px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media (max-width: 480px) {
	.tv-page .tabs__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.tv-page .tabs__body > *:not(:last-child) {
	margin: 0px 0px 25px 0px;
}
.tv-page .blocktitle__text {
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.tv-page .blocktitle__text._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
@media (max-width: 480px) {
	.tv-page {
		padding: 15px 0px 0px 0px;
	}
}

.tv-page__title {
	text-align: left;
	margin: 0px 0px 40px 0px;
}
@media (max-width: 480px) {
	.tv-page__title {
		margin: 0px 0px 20px 0px;
		text-align: center;
	}
}

.tvblock h3 {
	font-size: 20px;
	font-weight: 600;
	margin: 0px 0px 10px 0px;
}
@media (max-width: 480px) {
	.tvblock h3 {
		font-size: 18px;
	}
}

.tvblock__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -2px;
}

.tvblock-item {
	padding: 2px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 10%;
	        flex: 0 0 10%;
}
@media (max-width: 1024px) {
	.tvblock-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 16.666%;
		        flex: 0 0 16.666%;
	}
}
@media (max-width: 700px) {
	.tvblock-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 25%;
		        flex: 0 0 25%;
	}
}
@media (max-width: 480px) {
	.tvblock-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333%;
		        flex: 0 0 33.333%;
	}
}

.tvblock-item__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-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border: 1px solid #E2E2E8;
	background: #fff;
	border-radius: 8px;
	padding: 5px 3px;
	height: 100%;
	min-height: 110px;
}
.tvblock-item__row > *:not(:last-child) {
	margin: 0px 0px 10px 0px;
}

.tvblock-item__img {
	padding: 10px 20px 0px 20px;
}
.tvblock-item__img img {
	width: 100%;
	height: 50px;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}

.tvblock-item__name {
	font-size: 12px;
	text-align: center;
	width: 100%;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	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;
	font-weight: 600;
}

.tv-page .blocktitle .blocktitle__text {
	max-width: 845px;
}

.pay-page-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 20px;
}
@media (max-width: 480px) {
	.pay-page-items {
		gap: 15px;
	}
}

.pay-page-item {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 calc(33.333% - 14px);
	        flex: 0 1 calc(33.333% - 14px);
	background: #fff;
	border-radius: 30px;
	padding: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 15px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.pay-page-item._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
@media (min-width: 1024px) {
	.pay-page-item:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		-webkit-box-shadow: 0 0px 20px 0 rgba(116, 116, 116, 0.2);
		        box-shadow: 0 0px 20px 0 rgba(116, 116, 116, 0.2);
	}
}
@media (max-width: 1024px) {
	.pay-page-item {
		padding: 20px;
		-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;
		border-radius: 20px;
	}
}
@media (max-width: 700px) {
	.pay-page-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		text-align: left;
		padding: 15px;
	}
}

.pay-page-item__icon {
	width: 80px;
}
.pay-page-item__icon img {
	width: 100%;
}
@media (max-width: 480px) {
	.pay-page-item__icon {
		width: 60px;
	}
}

.pay-page-item__t {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: var(--black);
}
@media (max-width: 1024px) {
	.pay-page-item__t {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.pay-page-item__t {
		font-size: 16px;
	}
}

.pay-page__note {
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.pay-page__note._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}
.pay-page__note h3 {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: var(--black);
}
@media (max-width: 820px) {
	.pay-page__note h3 {
		font-size: 20px;
	}
}
.pay-page__note p {
	color: var(--black);
}
.pay-page__note > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 480px) {
	.pay-page__note > *:not(:last-child) {
		margin: 0px 0px 15px 0px;
	}
}

.pay-page-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px 25px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.pay-page-info._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
.pay-page-info > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
@media (max-width: 700px) {
	.pay-page-info {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.pay-page-info__col > *:not(:last-child) {
	margin: 0px 0px 25px 0px;
}
@media (max-width: 700px) {
	.pay-page-info__col > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}

.pay-page-info-block {
	background: #fff;
	border-radius: 30px;
	padding: 30px;
}
.pay-page-info-block h3 {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 20px;
	line-height: 150%;
	color: var(--black);
}
.pay-page-info-block > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}
@media (max-width: 820px) {
	.pay-page-info-block {
		padding: 20px;
		border-radius: 20px;
	}
}

.pay-page-info-block__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 5px 20px;
	font-size: 16px;
	line-height: 150%;
	font-family: var(--font-family);
}
.pay-page-info-block__item > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.pay-page-info-block__item p {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	font-weight: 600;
	color: #000;
}
.pay-page-info-block__item b, .pay-page-info-block__item a {
	font-weight: 400;
	color: var(--black);
	text-align: right;
}
.pay-page-info-block__item b span, .pay-page-info-block__item a span {
	font-weight: 600;
}
@media (max-width: 700px) {
	.pay-page-info-block__item b, .pay-page-info-block__item a {
		text-align: left;
	}
}
@media (max-width: 700px) {
	.pay-page-info-block__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.contacts__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}
.contacts__row > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 50%;
	        flex: 0 1 50%;
}
@media (max-width: 700px) {
	.contacts__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.contacts__main {
	border-radius: 30px;
	background: #fff;
	padding: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.contacts__main._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}
@media (max-width: 1024px) {
	.contacts__main {
		padding: 30px;
	}
}
@media (max-width: 700px) {
	.contacts__main {
		padding: 20px;
		border-radius: 20px;
	}
}

.contacts__block > * {
	display: block;
}
.contacts__block address {
	color: #000;
}
.contacts__block > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}

.contacts__tel {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 40px;
	line-height: 125%;
	color: var(--black);
	white-space: nowrap;
}
@media (max-width: 1919px) {
	.contacts__tel {
		font-size: calc(20px + 20 * ((100vw - 320px) / 1600));
	}
}

.contacts__mail {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: var(--black);
	white-space: nowrap;
}
@media (max-width: 1919px) {
	.contacts__mail {
		font-size: calc(16px + 8 * ((100vw - 320px) / 1600));
	}
}

.contacts__note {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--gray-text);
}

.contacts-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}
.contacts-icons img {
	width: 80px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 820px) {
	.contacts-icons img {
		width: 60px;
	}
}
@media (min-width: 1024px) {
	.contacts-icons img:hover {
		-webkit-transform: scale(1.1);
		    -ms-transform: scale(1.1);
		        transform: scale(1.1);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.contacts___map {
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.contacts___map._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;
}
.contacts___map img, .contacts___map script, .contacts___map iframe {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	border-radius: 30px;
	min-height: 400px;
}

.about-page > ._container > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 480px) {
	.about-page > ._container > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
.about-page .title {
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.about-page .title._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}

.about-page__block {
	border-radius: 30px;
	background: #fff;
	padding: 30px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 50px;
}
.about-page__block._watcher-view {
	top: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.5s ease 0.3s;
	-o-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
}
.about-page__block .tabs__navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}
.about-page__block .tabs__title {
	background: #fafafa;
	border: 0;
	color: #000;
}
.about-page__block ._tab-active {
	background: #dd2a1b;
	color: #fff;
}
.about-page__block .tabs__content {
	padding: 40px 0px 0px 0px;
}
@media (max-width: 700px) {
	.about-page__block .tabs__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 0;
	}
	.about-page__block .tabs__content > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
.about-page__block .pay-page-info-block__items {
	max-width: 600px;
}
.about-page__block > *:not(:last-child) {
	margin: 0px 0px 40px 0px;
}
@media (max-width: 480px) {
	.about-page__block > *:not(:last-child) {
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 820px) {
	.about-page__block {
		padding: 20px;
		border-radius: 20px;
	}
}
@media (max-width: 480px) {
	.about-page__block {
		margin-left: -20px;
		margin-right: -20px;
		border-radius: 0;
	}
}

.about-page-stat {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 50px;
}
@media (max-width: 480px) {
	.about-page-stat {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

.about-page-stat__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
	font-weight: 600;
	font-size: 40px;
}
.about-page-stat__item span {
	font-size: 20px;
	display: block;
	text-align: center;
	color: #929292;
	font-weight: 500;
}
@media (max-width: 820px) {
	.about-page-stat__item span {
		font-size: 14px;
	}
}
@media (max-width: 820px) {
	.about-page-stat__item {
		font-size: 30px;
		gap: 15px;
	}
}

.about-page-stat__img {
	width: 30px;
}
.about-page-stat__img img {
	width: 100%;
}
@media (max-width: 820px) {
	.about-page-stat__img {
		width: 20px;
	}
}

.about-page-stat__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-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;
}

.about-page__img img {
	width: 100%;
}

.about-page-info > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.about-page-info__item a {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 24px;
	line-height: 150%;
	color: var(--red);
}
@media (min-width: 1024px) {
	.about-page-info__item a:hover {
		text-decoration: underline;
	}
}
@media (max-width: 820px) {
	.about-page-info__item a {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.about-page-info__item a {
		font-size: 18px;
	}
}
.about-page-info__item > *:not(:last-child) {
	margin: 0px 0px 5px 0px;
}

.okved h3 {
	font-size: 18px;
	font-weight: 600;
}
@media (max-width: 480px) {
	.okved h3 {
		font-size: 16px;
	}
}
.okved > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}

.okved__items {
	line-height: 1.2;
}
.okved__items > *:not(:last-child) {
	margin: 0px 0px 15px 0px;
}
@media (max-width: 480px) {
	.okved__items > *:not(:last-child) {
		margin: 0px 0px 10px 0px;
	}
}
@media (max-width: 480px) {
	.okved__items {
		font-size: 14px;
	}
}

.infopage {
	line-height: 1.4;
}
.infopage h2 {
	font-weight: 600;
	font-size: 26px;
	color: #000;
	margin-top: 30px;
	margin-bottom: 15px;
}
.infopage p {
	margin-bottom: 15px;
	text-align: justify;
}
.infopage ul {
	margin: 15px 0 15px 25px;
}
.infopage li {
	margin-bottom: 8px;
	list-style: disc;
}
.infopage .contact-info {
	background-color: #ecf0f1;
	padding: 15px;
	border-radius: 5px;
	margin: 20px 0;
}
.infopage .highlight {
	background-color: #fff3cd;
	padding: 15px;
	border-left: 4px solid #ffc107;
	margin: 20px 0;
}
.infopage a {
	color: #dd2a1b;
	text-decoration: none;
}
.infopage a:hover {
	text-decoration: underline;
}
@media (max-width: 768px) {
	.infopage .container {
		padding: 15px;
	}
	.infopage h1 {
		font-size: 24px;
	}
	.infopage h2 {
		font-size: 20px;
	}
}

.social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}
.social img {
	width: 40px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.social img:hover {
		-webkit-transform: scale(1.1);
		    -ms-transform: scale(1.1);
		        transform: scale(1.1);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}