:root{
	--base:#0F0F0F;
	--primary:#6c8cd7;
	--primary-hover:#4672d3;
	--secondary:#FF438C;
	--secondary-hover:#FE0062;
	--green:#127252;
	--green-hover:#105D44;
	--gray:#5A5A5A;
	--light-gray:#E1E1E1;
	--light:#F3F9FC;
	--white:#FFFFFF;
}

/*--- MAIN ---*/
section {
	padding: 60px 0;
	position: relative;
	background: var(--white);
}
section.bg-light {
	background: var(--light);
}
section .section-back {
	position: absolute;
	left: 0;
	color: var(--light);
	font-weight: 700;
	font-size: 140px;
	font-weight: 700;
	transform: scale(-1) translateY(50%);
	position: absolute;
	top: 50%;
	left: calc(50vw - 630px - 220px);
	width: 300px;
	height: 100%;
	writing-mode: vertical-rl;
	text-align: center;
	white-space: nowrap;
	word-spacing: 0px;
	pointer-events: none;
	overflow: hidden;
}
section.bg-light .section-back {
	color: var(--white);
}
section .section-back.section-back_top {
	transform: scale(-1);
	top: 50px;
	height: fit-content;
	max-height: 100%;
}
section .section-back.section-back_right {
	right: calc(50vw - 630px - 220px);
	left: auto;
	transform: scale(1) translateY(-50%);
}
section .section-back.section-back_top.section-back_right {
	transform: scale(1);
}
.section-title {
	margin-bottom: 40px;
}
.section-title__title {
	font-size: 42px;
	line-height: 120%;
	font-weight: 600;
	margin-bottom: 20px;
}
.section-title__desc {
	font-size: 18px;
	line-height: 140%;
}
h1, .h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 400;
}

h2, .h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 400;
}

h3, .h3 {
  font-size: 28px;
  line-height: 1.33;
  font-weight: 400;
}

h4, .h4 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
}

h5, .h5 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
}

h6, .h6 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
}
p {
	font-size: 16px;
	line-height: 150%;
	margin: 0 0 20px 0;
}
blockquote {
	padding: 15px 30px 15px 30px;
	border-radius: 10px;
	background: var(--light);
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}
blockquote:before {
	content: '';
	position: absolute;
	width: 5px;
	height: calc(100% - 28px);
	left: 0px;
	top: 14px;
	border-radius: 0 4px 4px 0;
	background: var(--primary);
}
blockquote p:last-child {
  margin: 0;
}
blockquote.no-line:before {
	display: none;
}
input, textarea {
	user-select: text!important;
	-webkit-user-select: text!important;
	-moz-user-select: text!important;
	-ms-user-select: text!important;
	user-select: text!important;
}
ul {

}
ul li {

}
ol {

}
ol li {
	
}

.content a[data-fancybox]{
  display: inline-block;
}
.content img {
	border-radius: 10px;
	margin: 0 0 5px 0;
}
.content .zoom-img {
	position: relative;
	margin: 0 0 5px 0;
	overflow: hidden;
	border-radius: 10px;
}
.content .zoom-img img {
	margin: 0;
}
.content .zoom-img:hover img {
	transform: scale(1.05);
}
.content .zoom-img::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: linear-gradient(rgba(53, 50, 56, 0) 0%, rgba(53, 50, 56, 0.64) 100%);
	opacity: 0;
	z-index: -1;
	transition: .4s;
}
.content .zoom-img:hover::before {
	opacity: 1;
}
.content .zoom-img::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	background: rgba(53, 50, 56, 0.2);
	right: 10px;
	bottom: 10px;
	border-radius: 5px;
	background-image: url(../icons/eye.svg);
	background-size: 22px 22px;
	background-repeat: no-repeat;
	background-position: center;
	opacity: .6;
	z-index: 2;
	transition: .4s;
}
.content .zoom-img:hover::after {
	opacity: 1;
}
.smooth {
  height: 100vh;
  width: 100vw;
}
.scroll-content {
	padding-top: 130px;
}
.slide_up_anim {
	display: block;
	opacity: 0!important;
	transform: translateY(50px);

}
.slide_up_anim_show {
	opacity: 1;
	transition: transform 1.2s, opacity 1.2s;
	transform: translateY(0%);
}
.anim_none {}

.content-collapse__wrap {
	
}
.content-collapse__inner {
	/*height: 150px;*/
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: -10px;
	z-index: 2;
	position: relative;
}
.content-collapse__inner.content-collapse__inner_show {
	margin-bottom: 30px;
	height: auto;
	overflow: visible;
	transition: .3s;
}
.content-collapse__text {
	position: relative;
	z-index: -1;
	padding: 0 0 50px 0;
}
.content-collapse__btn {
	z-index: 3;
	position: relative;
	box-shadow: 0px -10px 10px 10px #fff;
	background: #fff;
	margin: 0;
	width: 100%;
	display: block;
	transition: .3s;

	border: none;
	font-size: 13px;
	padding: 0 0 30px 0;
	color: var(--base);
}
.content-collapse__btn:hover {
	cursor: pointer;
	color: var(--primary);
}
.section__back {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.section__back_auto {
	height: auto;
}
.section__back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.section_transparent {
	background: transparent;
}
.list-style {
	list-style: none;
	padding: 0;
}
.list-style li {
	position: relative;
	padding-left: 35px;
	margin: 0 0 5px 0;
}
.list-style li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 26px;
	height: 26px;
	background: url(../icons/list-style-1.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-size: 120%;
	background-position: center center;
}
.list-style.list-style_logo li::before {
	background: url(../icons/eye.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center center;
}
.list-style.list-style_circle li::before {
	background: rgba(90, 160, 208, .3);
	border-radius: 50%;
	border: 2px solid var(--primary);
	width: 18px;
	height: 18px;
	top: 4px;
	left: 2px;
}


@media screen and (max-width: 1700px) {
	section .section-back {left: 0px;}
	section .section-back.section-back_right {left: auto;right: 0px;}
}
@media screen and (max-width: 1500px) {
	section .section-back {display: none;}
}
@media screen and (max-width: 1300px) {
	.container {max-width: 100%;}
}
@media screen and (max-width: 1200px) {
	.section-title__title {font-size: 42px;}
	h1, .h1 {font-size: 38px;}
	h2, .h2 {font-size: 32px;}
	h3, .h3 {font-size: 26px;}
	h4, .h4 {font-size: 24px;}
	h5, .h5 {font-size: 20px;}
	h6, .h6 {font-size: 18px;}
}
@media screen and (max-width: 992px) {
	section {padding: 50px 0;}
	.scroll-content {padding-top: 70px;}
	.section-title__title {font-size: 38px;}
	.section-title__desc {font-size: 17px;}
	h1, .h1 {font-size: 32px;}
	h2, .h2 {font-size: 28px;}
	h3, .h3 {font-size: 24px;}
	h4, .h4 {font-size: 22px;}
	h5, .h5 {font-size: 20px;}
	h6, .h6 {font-size: 18px;}
}
@media screen and (max-width: 768px) {
	section {padding: 40px 0;}
	.scroll-content {padding-top: 60px;}
}
@media screen and (max-width: 576px) {
	/*MAIN*/
	.section-title__title {font-size: 30px;}
	.section-title__desc {font-size: 15px;}
	h1, .h1 {font-size: 26px;}
	h2, .h2 {font-size: 24px;}
	h3, .h3 {font-size: 22px;}
	h4, .h4 {font-size: 20px;}
	h5, .h5 {font-size: 18px;}
	h6, .h6 {font-size: 16px;}
	p {font-size: 14px;}
	blockquote {font-size: 14px;}
	ul, ol {font-size: 14px;}
	.btn, .content .btn {padding: 11px 20px 10px;font-size: 13px;}
	.btn + .btn {margin-left: 10px;}
	.pt-15 {padding-top: 10px!important;}
	.pt-30 {padding-top: 20px!important;}
	.pt-50 {padding-top: 30px!important;}
	.pt-80 {padding-top: 50px!important;}
	.pb-15 {padding-bottom: 10px!important;}
	.pb-30 {padding-bottom: 20px!important;}
	.pb-50 {padding-bottom: 30px!important;}
	.pb-80 {padding-bottom: 50px!important;}
	.mt-15 {margin-top: 10px!important;}
	.mt-30 {margin-top: 20px!important;}
	.mt-50 {margin-top: 30px!important;}
	.mt-80 {margin-top: 50px!important;}
	.mb-15 {margin-bottom: 10px!important;}
	.mb-30 {margin-bottom: 20px!important;}
	.mb-50 {margin-bottom: 30px!important;}
	.mb-80 {margin-bottom: 50px!important;}
	.content img {margin: 15px 0!important;max-width: 100%;object-fit: cover;}
}

/*--- END MAIN ---*/

/*--- PRELOADER ---*/

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	background: #fff;
	z-index: 9999;
	display: block;
	opacity: 1;
	transition: opacity .5s ease .2s, top .4s ease .7s;
}
.preloader.loaded {
	opacity: 0;
	top: 105vw;

}
.preloader .preloader__wrap {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.preloader .preloader__logo {
	width: 180px;
	height: auto;
	max-width: 80vw;
}

/*--- END PRELOADER ---*/

/*--- SCROLL ---*/

.scroll-top {
	position: fixed;
	right: 3vw;
	bottom: -60px;
	width: 50px;
	height: 50px;
	border-radius: 4px;
	overflow: hidden;
	transition: .3s;
	opacity: 0;
	z-index: 99;
}
.scroll-top.show {
	bottom: 200px;
	opacity: .6;
}
.scroll-to-top {
	width: 100%;
	height: 100%;
	display: flex;
	background: var(--base);
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: .3s;
}
.scroll-to-top:hover {
	background: var(--secondary);
	color: var(--white);
	opacity: 1;
}
.scroll-to-top svg {
	width: 24px;
	height: 24px;
}

.page-anchors {
	width: 100%;
  padding: 0;
  margin: 15px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
}
.page-anchor {
	margin: 0 3px 6px 3px;
  background: var(--light);
  padding: 2px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--base);
}
.page-anchor:hover {
	text-decoration: none;
	color: var(--primary-hover);
}

@media screen and (max-width: 576px) {
	.page-anchors {justify-content: flex-start;}
}

/*--- END SCROLL ---*/

/*--- HEADER ---*/

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1111;
	background: var(--white);
	transition: .8s;
}
.header-top {
	background: var(--light);
}
.header-top__inner {
	width: 100%;
	padding: 8px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-top__left {
	font-size: 13px;
	color: var(--gray);
	font-weight: 500;
}
.header-top__left p {
	margin: 0;
}
.header-top__right {
	font-size: 13px;
	color: var(--gray);
	font-weight: 600;
}
.header-top__right p {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
}
.header-top__menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}
.header-top__menu-item {

}
.header-top__menu-item a {
	font-size: 13px;
	color: var(--gray);
	font-weight: 700;
	text-decoration: none;
	margin: 0 15px 0 0;
}
.header-top__menu-item a:hover {
	color: var(--primary-hover);
	text-decoration: none;
}
.header-top__menu-item.active a {
	color: var(--primary-hover);
	text-decoration: none;
}
.header-main {

}
.header-main__inner {
	width: 100%;
	padding: 10px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-main__left {
	display: flex;
	align-items: center;
}
.header-main__logo-wrap {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.header-main__logo-wrap:hover {
	text-decoration: none;
	color: var(--base);
}
.header-main__logo_mob {
	display: none;
}
.header-main__logo {
	height: 60px;
	width: auto;
}
.header-main__logo-title {
	margin: 0 0 0 10px;
	font-weight: 300;
	color: #00a0d2;
	font-size: 26px;
}
.header-main__logo-right {
	border-left: 1px solid var(--light);
	margin: 0 0 0 17px;
	padding: 5px 0 5px 20px;
}
.header-main__logo-desc {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.3;
	color: var(--gray);
	margin: 0 0 5px 0;
}
.header-main__logo-city {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.3;
	color: var(--gray);
	margin: 0;
}
.header-main__logo-city a {
	text-decoration: none;
}
.header-main__logo-city a:hover {
	text-decoration: none;
}
.header-main__right {
	display: flex;
	align-items: center;
}
.header-main__phone {

}
.header-main__phone-link {
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	margin: 0 40px 0 0;
	padding: 0 0 0 40px;
	position: relative;
}
.header-main__phone-link:hover {
	text-decoration: none;
}
.header-main__phone-link span {
	width: 30px;
	height: 30px;
	display: flex;
	background: var(--primary);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: -4px;
	padding: 8px;
}
.header-main__phone-link span img {
	width: 100%;
	height: 100%;
	filter: brightness(10);
}
.header-main__request {
	padding: 17px 18px 15px;
	margin: 0;
}
.header-main__request:hover {

}
.header-bottom {
	background: var(--white);
}
.header-bottom__inner {
	width: 100%;
	padding: 0px;
	position: relative;
}
.header-bottom__inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 15px;
	width: calc(100% - 30px);
	height: 1px;
	background: var(--light-gray);
	opacity: 1;
	transition: .3s;
}
.header.fixed .header-bottom__inner::before {
	opacity: 0;
}
.menu__wrap {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	
	justify-content: flex-start;
    gap: 15px;
}
.menu__item {
	position: relative;
}
.menu__link {
	color: var(--base);
	text-transform: uppercase;
	text-decoration: none;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 20px 15px 13px 15px;
	font-size: 14px;
	font-weight: 500;
}
.menu__link.active,
.menu__link:hover {
	color: var(--primary-hover);
	text-decoration: none;
}
.menu__link svg {
	width: 14px;
	height: 14px;
	margin: -2px 0 0 5px;
	transition: .3s ease;
}
.menu__link:hover svg {
	color: var(--primary-hover);
}
.submenu__wrap {
	display: block;
	position: absolute;
	background: #fff;
	width: 360px;
	left: 0;
	top: 70px;
	opacity: 0;
	visibility: hidden;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
	padding: 15px 5px;
	border-radius: 10px;
	z-index: 99;
	list-style: none;
	transition: .3s;
}
.menu__item:last-child .submenu__wrap {
	right: 0;
	left: auto;
}
.menu__item:hover .submenu__wrap {
	opacity: 1;
	top: 55px;
	visibility: visible;
}
.submenu__item {
	width: 100%;
	position: relative;
}
.submenu__link {
	width: 100%;
	display: block;
	padding: 5px 10px;
	text-decoration: none;
	color: var(--base);
}
.submenu__link:hover {
	color: var(--primary-hover);
	text-decoration: none;
	transform: translateX(8px);
}
.submenu__item .submenu__link~svg {
	position: absolute;
  right: 5px;
  top: 8px;
  color: var(--base);
  background-color: transparent;
}
.submenu__item .submenu__link:hover~svg {
	color: var(--primary-hover);
}
.menu__item .submenu__wrap .submenu__wrap {
	opacity: 0;
  visibility: hidden;
  top: 0px;
  left: 100%;
}
.menu__item .submenu__wrap .submenu__item:hover .submenu__wrap {
	top: -15px;
  opacity: 1;
  visibility: visible;
}

.header-main__menu-btn {
	position: relative;
	width: 35px;
	height: 35px;
	margin-left: 30px;
}
.header-main__menu-btn span {
	position: absolute;
	right: 0;
	top: 16px;
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: var(--gray);
	transition: .3s;
}
.header-main__menu-btn span::before {
	content: '';
	position: absolute;
	right: 0;
	top: -10px;
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: var(--gray);
	transition: .3s;
}
.header-main__menu-btn span::after {
	content: '';
	position: absolute;
	right: 0;
	top: 10px;
	width: 32px;
	height: 3px;
	border-radius: 10px;
	background: var(--gray);
	transition: .3s;
}
.header-main__menu-btn:hover {
	cursor: pointer;
}
.header-main__menu-btn:hover span {
	width: 26px;
}
.header-main__menu-btn:hover span,
.header-main__menu-btn:hover span::before,
.header-main__menu-btn:hover span::after {
	background: var(--primary-hover);
}
.header-main__menu-btn.active span {
	background: #fff;
	width: 0;
}
.header-main__menu-btn.active span::before {
	transform: rotate(-45deg);
	top: -3px;
	right: -4px;
	width: 32px;
}
.header-main__menu-btn.active span::after {
	transform: rotate(45deg);
	top: -3px;
	right: -4px;
	width: 32px;
}

@media screen and (min-width: 992px) and (max-width:  1050px) {
	.header-main__logo {max-height: 50px;}
	.header-main__request {font-size: 13px;}
	.header-main__phone-link {font-size: 18px;}
	.header-main__phone-link span {top: -5px;}
}

@media screen and (min-width: 992px) {
	.header.fixed {margin-top: 55px;}
	.header.fixed .header-bottom {position: fixed;top: 0;left: 0;width: 100%;z-index: 999;}
	.header.header__hide {top: -82px;}
}
@media screen and (max-width: 992px) {
	.header {position: fixed;width: 100%;top: 0;z-index: 1001;background: #fff;}
	.header-top__left {font-size: .7rem;}
	.header-top__menu-item a {font-size: .7rem;}
	.header-bottom {display: none;}
	.header-main__logo {max-height: 50px;}
	.header-main__request {font-size: 13px;}
	.header-main__phone-link {font-size: 18px;}
	.header-main__phone-link span {top: -5px;}
	.header-main__logo-right {display: none;}
}
@media screen and (max-width: 768px) {
	.header-top {display: none;}
	.header-main__request {display: none;}
	.header-main__phone-link {margin: 0 20px 0 0;}
}
@media screen and (max-width: 650px) {
	.header-main__menu-btn {margin-left: 20px;}
}
@media screen and (max-width: 600px) {
	.header-main__logo {display: none;}
	.header-main__logo_mob {display: block;height: 42px;width: auto;margin: 3px 0 -3px;}
	.header-main__phone-link {position: relative;right: auto;top: 2px;padding: 0;margin: 0;}
	.header-main__phone-link span {display: none;}
}
@media screen and (max-width: 450px) {
	.header-main__logo_mob {height: 32px;margin: 2px 0 -2px;}
	.header-main__phone-link {font-size: 15px;font-weight: 700;}
	.header-main__logo-title {font-size: 18px;margin: 0 0 0 5px;}
	.backcall-inner-wrap {top: -240px;}
	.backcall-inner-item {margin-bottom: 6px;}
}

/*--- END HEADER ---*/

/*--- MOBILE MENU ---*/

.mobile-menu {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: -110vw;
	padding: 60px 0 50px;
	background: var(--white);
	z-index: 999;
	transition: .4s;
}
.mobile-menu.active {
	left: 0;
}
.mobile-menu__inner {
	padding: 15px 40px 45px 40px;
}
.mobile-menu__nav {
	padding: 0;
	margin: 10px 0 0 0;
	list-style: none;
}
.mobile-menu__nav-item {

}
.mobile-menu__nav-link {
	text-decoration: none;
	font-weight: 400;
	padding: 4px 0;
	display: inline-block;
	position: relative;
}
.mobile-menu__nav-link:hover {
	text-decoration: none;
}
.mobile-menu__nav-link.active::before {
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 3px;
	background: var(--primary-hover);
}
.mobile-menu__category {
	padding: 0;
	margin: 0;
	list-style: none;
}
.mobile-menu__category-item {
	padding: 8px 0;
	position: relative;
	border-bottom: 1px solid #f2f2f2;
	max-width: 500px;
}
.mobile-menu__category-item::before {
	content: '';
	position: absolute;
	background: url('../icons/arrow-left.svg');
	width: 20px;
	height: 20px;
	background-size: contain;
	right: 0;
	top: 12px;
	transform: rotate(180deg);
	opacity: .3;
	z-index: 1;
}
.mobile-menu__category-link {
	text-decoration: none;
	font-size: 1.15rem;
	display: block;
	z-index: 2;
	position: relative;
}
.mobile-menu__category-link:hover {
	text-decoration: none;
}
.mobile-menu__subcategory-wrap {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: -110vw;
	padding: 60px 0 50px;
	background: var(--white);
	z-index: 999;
	transition: .4s;
}
.mobile-menu.active .mobile-menu__subcategory-wrap {
	display: block;
}
.mobile-menu__subcategory-inner {
	padding: 45px 40px;
}
.mobile-menu__subcategory-wrap.active {
	left: 0;
}
.mobile-menu__subcategory-title {
	font-size: 1.15rem;
	font-weight: 600;
	border-bottom: 1px solid #f2f2f2;
	max-width: 500px;
	padding: 8px 0 8px 30px;
	position: relative;
	transition: .3s;
	cursor: pointer;
}
.mobile-menu__subcategory-title:hover {
	color: var(--primary-hover);
}
.mobile-menu__subcategory-title::before {
	content: '';
	position: absolute;
	background: url('../icons/arrow-left.svg');
	width: 20px;
	height: 20px;
	background-size: contain;
	left: 0;
	top: 12px;
	opacity: .3;
}
.mobile-menu__subcategory {
	padding: 0;
	margin: 30px 0 0 0;
	list-style: none;
}
.mobile-menu__subcategory-item {

}
.mobile-menu__subcategory-item a {
	text-decoration: none;
	font-weight: 400;
	padding: 5px 0;
	display: inline-block;
}
.mobile-menu__subcategory-item a:hover {
	text-decoration: none;
}
.btn.mobile-menu__inner-request {
	margin: 0px 0 20px 0;
	padding: 16px 20px 15px;
	width: 100%;
	text-align: center;
}
.mobile-menu__city {
	margin: 0 0 10px 0;
}


/*--- END MOBILE MENU ---*/



/*--- BREADCRUMBS ---*/

.breadcrumbs {
	padding: 30px 0;
	margin: 0;
	background: var(--primary);
	z-index: 1;
}
.breadcrumbs_light {
	background: var(--light);
}
.breadcrumbs_light::before {
	content: '';
	width: 100%;
	height: 150px;
	position: absolute;
	left: 0;
	bottom: 100%;
	background: var(--light);
	z-index: 1;
}
.breadcrumb__wrap {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.breadcrumb__item {
	position: relative;
	padding: 0 0 0 20px;
	line-height: 1.2;
}
.breadcrumb__item:first-child {
	padding: 0;
}
.breadcrumb__item:last-child .breadcrumb__link {
	pointer-events: none;
}
.breadcrumb__link {
	text-decoration: none;
	color: var(--white);
	font-weight: 400;
	font-size: 14px;
	position: relative;
}
.info-block-1__wrap .breadcrumb__link{
	text-shadow: 0 0 15px rgba(20,20,20,.3);
}
.breadcrumbs_light .breadcrumb__link {
	color: var(--gray);
}
.breadcrumbs_light .breadcrumb__item:not(:last-child) .breadcrumb__link {
	color: var(--primary);
}
.breadcrumb__link:hover {
	text-decoration: none;
	color: var(--primary);
}
.breadcrumbs_light .breadcrumb__item .breadcrumb__link:hover {
	text-decoration: none;
	color: var(--primary-hover);
}
.breadcrumb__link::before {
	content: '/';
	position: absolute;
	left: -12px;
	bottom: 0px;
	color: inherit;
	font-weight: 400;
	font-size: 12px;
}
.breadcrumbs_light .breadcrumb__link::before {
	color: var(--gray);
	opacity: .3;
}
.breadcrumb__item:first-child .breadcrumb__link::before {
	display: none;
}
.breadcrumb__link img,
.breadcrumb__link svg {
	width: 17px;
	border-right-width: 17px;
	margin: -3px 0 0 0;
}
.breadcrumb__title {
	position: relative;
	margin: 10px 0 0 0;
	padding: 0;
	color: var(--white);
	line-height: 1.1;
}
.breadcrumbs_light .breadcrumb__title {
	font-weight: 600;
	color: var(--primary-hover);
}

@media screen and (max-width: 576px) {
	.breadcrumbs {padding: 10px 0 15px 0;}
	.breadcrumb__wrap {flex-wrap: nowrap;overflow: auto;width: 100%;padding: 0 0 5px 0;}
	.breadcrumb__item {padding: 0 0 0 14px;line-height: 1.1;width: max-content;white-space: nowrap;}
	.breadcrumb__link {font-size: 12px;}
	.breadcrumb__link::before {left: -9px;font-size: 11px;}
}

/*--- END BREADCRUMBS ---*/


/*--- FOOTER ---*/

.main-footer {
	z-index: 1;
	background: var(--white);
	position: relative;
}
.footer-top {
	
}
.footer-top__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
	border-bottom: 1px solid var(--light-gray);
}
.footer-top__left {

}
.footer-top__right {

}
.footer-top__image {

}
.footer-top__image a {
	
}
.footer-top__image img {
	height: 60px;
	width: auto;
}
.footer-top__social {
	display: flex;
	align-items: center;
}
.footer-top__social-item {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #F5F5F5;
	padding: 12px;
	margin: 0 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-top__social-item:hover {
	/*filter: brightness(.7);*/
}
.footer-top__social-item img {
	transition: .3s;
}
.footer-top__social-item:hover img {
	filter: brightness(0) invert(1);
}
.footer-top__social-item_whatsapp:hover {
	background: #4CAF50;
}
.footer-top__social-item_vk:hover {
	background: #0077FE;
}
.footer-top__social-item_telegram:hover {
	background: #23B7EC;
}
.footer-top__social-item_ok:hover {
	background: #F96600;
}
.footer-top__social-item_zoon {
	padding: 7px;
}
.footer-top__social-item_zoon:hover {
	background: #5939a6;
}
.footer-top__social-item_prodoctorov:hover {
	background: #EC2327;
}
.footer-top__social-item_yandex:hover {
	background: #FC3F1D;
}
.footer-bottom {
	padding: 0;
}
.footer-bottom__inner {
	padding: 30px 0 15px;
	display: flex;
	border-bottom: 1px solid var(--light-gray);
}
.footer-bottom__menu {
	width: calc(100% - 350px);
}
.footer-bottom__links-wrap {
	display: grid;
	grid-template-areas: "a b c" "a b c";
	grid-auto-columns: 33.333%;
}
.footer-bottom__links {
	
}
.footer-bottom__links:nth-child(1) {
  grid-area: a;
}
.footer-bottom__links:nth-child(2) {
  grid-area: b;
}
.footer-bottom__links:nth-child(3) {
  grid-area: c;
}
.footer-bottom__links-title {
	font-weight: 700;
	font-size: 16px;
	margin: 0 0 8px 0;
	text-decoration: none;
}
.footer-bottom__links-title a:hover {
	text-decoration: none;
}
.footer-bottom__links ul {
	margin: 0 0 15px 0;
	padding: 0 15px 0 0;
	list-style: none;
}
.footer-bottom__links ul li {
	margin: 0;
	line-height: 130%;
}
.footer-bottom__link {
	font-size: 14px;
	color: var(--base);
	text-decoration: none;
}
.footer-bottom__link:hover {
	text-decoration: none;
}
.footer-bottom__contact {
	width: 350px;
	text-align: right;
}
.footer-bottom__contact-wrap {
	
}
.footer-bottom__phone-link {
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	padding: 0 0 0 40px;
	position: relative;
}
.footer-bottom__phone-link:hover {
	text-decoration: none;
}
.footer-bottom__phone-link span {
	width: 30px;
	height: 30px;
	display: flex;
	background: var(--primary);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: -4px;
	padding: 8px;
}
.footer-bottom__phone-link span img {
	width: 100%;
	height: 100%;
	filter: brightness(10);
}
.footer-bottom__btn {
	margin: 20px 0;
}
.footer-bottom__content {
	
}
.footer-bottom__content p {
	font-size: 13px;
	margin: 0 0 3px 0;
	line-height: 140%;
}
.footer-bottom__content a {
	text-decoration: underline;
}
.footer-bottom__content a:hover {

}
.footer-copy {
	
}
.footer-copy__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px 0;
}
.footer-copy__left {
	width: 600px;
}
.footer-copy__left p {
	font-size: 12px;
	line-height: 150%;
	margin: 0;
	display: block;
	color: #7D7D7D;
	font-weight: 400;
}
.footer-copy__right {
	width: calc(100% - 600px);
	text-align: right;
}
.footer-copy__right p {
	margin: 0;
	line-height: 100%;
}
.footer-copy__right a {
	font-size: 12px;
	line-height: 150%;
	margin: 0;
	display: inline-block;
	color: #7D7D7D;
	font-weight: 400;
	text-decoration: none;
}
.footer-copy__right a:hover {
	text-decoration: none;
	color: var(--primary-hover);
}
.footer-copy__bottom {
	text-align: center;
	width: 180px;
	margin: 0 auto;
	font-size: 12px;
	color: #7D7D7D;
	font-weight: 400;
	position: relative;
}
.footer-copy__bottom p {
	margin: 0;
	padding: 0;
	font-size: 12px;
}
.footer-copy__bottom a {
	font-weight: 700;
	color: var(--base);
}
.footer-copy__bottom a:hover {
	text-decoration: none;
	color: var(--primary-hover);
}
.footer-copy__item {
	
}
.footer-copy__link {
	
}
.footer-copy__content ~ .footer-copy__bottom-develop {
	transition: .5s;
	transition-delay: .2s;
}
.footer-copy__content:hover ~ .footer-copy__bottom-develop {
	opacity: 1;
	transition: .5s;
	transition-delay: 1s;
	z-index: 1;
	margin: 0 0 30px 0;
}
.footer-copy__bottom-develop {
	position: absolute;
	left: 50%;
	bottom: 0px;
	margin: 0 0 15px 0;
	transform: translateX(-50%);
	background: var(--white);
	box-shadow: rgba(149, 157, 165, 0.29) 0px 2px 28px;
	border-radius: 10px;
	padding: 0px;
	width: 162px;
	opacity: 0;
	transition: .5;
	transition-delay: .2s;
	z-index: -1;
}
.footer-copy__bottom-develop:hover {
	opacity: 1;
	transition: .5s;
	transition-delay: 1s;
	z-index: 1;
	margin: 0 0 30px 0;
}
.footer-copy__bottom-develop::before {
	content: '';
	position: absolute;
	left: 74px;
	bottom: -6px;
	width: 14px;
	height: 14px;
	border-radius: 3px;
	transform: rotate(45deg);
	background: var(--white);
	box-shadow: rgba(149, 157, 165, 0.29) 0px 2px 28px;
}
.footer-copy__bottom-develop a {
	display: block;
	padding: 20px;
}
.footer-copy__bottom-develop img {
	width: 40px;
}
.footer-copy__bottom-develop_top {
	color: var(--base);
	font-weight: 700;
	font-size: 16px;
	margin: 10px 0 0 0!important;
}
.footer-copy__bottom-develop_bottom {
	font-size: 12px;
	font-weight: 700;
	color: var(--base);
	opacity: .5;
	margin: 0;
}

@media screen and (max-width: 992px) {
	.footer-bottom__links-wrap {grid-template-areas: "a b" "a c";grid-auto-columns: 50%;}
	.footer-copy__bottom {margin: 15px auto 0 auto;}
}
@media screen and (max-width: 768px) {
	.footer-bottom__inner {flex-wrap: wrap;}
	.footer-bottom__menu {width: 100%;order: 1;}
	.footer-bottom__contact {text-align: left;margin: 0 0 35px 0;}
	.footer-bottom__links-wrap {grid-template-areas: "a b c" "a b c";grid-auto-columns: 33.333%;}
	.footer-top__inner {flex-wrap: wrap;}
	.footer-top__right {margin: 15px 0 0 0;}
}
@media screen and (max-width: 650px) {
	.footer-top__social {flex-wrap: wrap;}
	.footer-top__social-item {margin: 0 10px 10px 0;}
}
@media screen and (max-width: 576px) {
	.footer-top__image img {height: 50px;}
	.footer-top__social-item {width: 40px;height: 40px;padding: 8px;}
	.footer-top__social-item_whats img {position: relative;top: -1px;left: 0px;}
	.footer-bottom__links-wrap {grid-template-areas: "a b" "a c";grid-auto-columns: 50%;}
	.footer-bottom__link {font-size: 13px;}
	.footer-copy__left {width: 100%;}
	.footer-copy__left p {display: inline-block;}
	.footer-copy__right {width: 100%;text-align: left;}
}
@media screen and (max-width: 500px) {
	.footer-bottom__link {font-size: 12px;}
}
@media screen and (max-width: 450px) {
	.footer-top__image img {height: 32px;}
}


/*--- END FOOTER ---*/


/*--- RATING ---*/

.rating__wrap {

}
.rating__inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -3px;
	justify-content: flex-start;
	column-gap: 0px;
}
.rating__item {
	width: 100%;
	padding: 3px;
	max-width: 200px;
}
.rating__item-link {
	height: 90px;
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 10px 10px;
	border: 2px solid var(--light);
	background: var(--white);
	border-radius: 10px;
	text-decoration: none;
	transition: .3s ease;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
	overflow: hidden;
}
.rating__item-logo {
	height: 18px;
	width: 100%;
	padding: 3px 0 1px 0;
}
.rating__item-logo img {
	border-radius: 0;
	margin: 0!important;
	padding: 0;
	height: 14px;
	width: auto;
	max-width: 100%;
	display: block;
	position: relative;
}
.rating__item_yandex .rating__item-logo img{
	height: 120%;
	top: -10%;
}
.rating__item-content {
	width: 100%;
	position: relative;
	padding: 0 0 0 60px;
	margin: 0;
	height: 46px;
}
.rating__item-score {
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	color: var(--secondary);
}
.rating__item-stars {
	position: absolute;
	left: 65px;
	top: 12px;
	width: 100px;
	height: 17px;
}
.rating__item-stars_gray {
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../icons/star-fill-gray.svg);
	background-size: 20px 16px;
	z-index: 1;
}
.rating__item-stars_gold {
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../icons/star-fill-gold.svg);
	background-size: 20px 16px;
	z-index: 2;
}
.rating__item-desc {
	margin: 0;
	color: var(--gray);
	font-size: 12px;
	position: absolute;
	bottom: 0;
	left: 65px;
}

@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {
	.rating__inner {justify-content: center;}
	.rating__item {width: 50%;}
}
@media screen and (max-width: 500px) {
	.rating__item {max-width: 200px;width: 50%;}
	.rating__item-link {padding: 5px;height: 80px;}
	.rating__item-content {padding: 0 0 0 50px;}
	.rating__item-score {font-size: 30px;bottom: 3px;}
	.rating__item-stars {left: 50px;}
	.rating__item-desc {left: 50px;}
	.rating__item-logo img {height: 12px;}
}


/*--- END RATING ---*/


/*--- COLLAPSE ---*/

.collapse {
	border-top: 1px solid var(--light-gray);
	margin: 25px 0 0 0;
}
.collapse__item {
	border-bottom: 1px solid var(--light-gray);
	transition: .3s ease;
}
.collapse__item.active {

}
.collapse__head {
	padding: 20px 0;
	position: relative;
	height: 70px;
	display: flex;
	align-items: center;
}
.collapse__head:hover {
	cursor: pointer;
}
.collapse__title {
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	color: var(--base);
	letter-spacing: -0.02em;
	-webkit-letter-spacing: -0.02em;
	-moz-letter-spacing: -0.02em;
	-ms-letter-spacing: -0.02em;
	-o-letter-spacing: -0.02em;
	margin: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 0 40px 0 10px;
}
.collapse__content {
	padding: 0 0 20px 10px;
	display: none;
}
.collapse__content p {
	margin: 0 0 15px 0;
	font-size: 16px;
	line-height: 150%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.collapse__content > *:last-child {
	margin: 0;
}
.collapse__price {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 30px;
	border-bottom: 1px solid var(--light);
}
.collapse__price:nth-child(odd) {
	background: var(--light);
}
.collapse__price:nth-child(1) {
	background: var(--white);
	padding-bottom: 20px;
}
.collapse__price-name {
	margin: 0!important;
	padding: 0;
	line-height: 1.3;
	width: calc(100% - 280px);
	flex: 0 0 calc(100% - 280px);
}
.collapse__price-cost {
	margin: 0!important;
	padding: 0;
	width: 280px;
	text-align: right;
	flex: 0 0 280px;
}
.collapse__btn {
	position: absolute;
	right: 0px;
	top: 15px;
	z-index: 1;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}
.collapse__btn img {
	width: 40px;
	height: 40px;
	display: block;
	transition: .3s ease;
}
.collapse__item.active .collapse__btn {

}
.collapse__item.active .collapse__btn img {
	transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
	.collapse__price_head .collapse__price-cost {width: 200px;flex: 0 0 170px;}
	.collapse__price_head .collapse__price-name {width: calc(100% - 170px);flex: 0 0 calc(100% - 170px);}
	.collapse__price-cost {width: 80px;flex: 0 0 80px;font-size: 14px!important;}
	.collapse__price-name {width: calc(100% - 80px);flex: 0 0 calc(100% - 80px);font-size: 14px!important;}
}

@media screen and (max-width: 576px) {
	.collapse__content_price {padding: 0 0 20px 0px;margin: 0 -15px;}
	.collapse__price {padding: 5px 15px;}
	.collapse__title {font-size: 16px;line-height: 100%;padding: 0 35px 0 0;}
	.collapse__content {padding-top: 0 0 20px 0;}
	.collapse__content p {font-size: 14px;line-height: 140%;}
}


/*--- END COLLAPSE ---*/


/*--- PRICE ITEMS ---*/

.block-prices__items {
	display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
}
.block-prices__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 180px;
	margin: 0 0 10px 0;
	padding: 15px 0;
	text-align: center;
}
.block-prices__items_3 .block-prices__item {
	width: 33.33%;
}
.block-prices__items_4 .block-prices__item {
	width: 25%;
}
.block-prices__items_5 .block-prices__item {
	width: 20%;
}
.block-prices__items_6 .block-prices__item {
	width: 33.33%;
}
.block-prices__item-title {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: 300;
	color: var(--gray);
}
.block-prices__item-cost {
	margin: 0;
  padding: 0;
  font-size: 26px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
	
}
@media screen and (max-width: 576px) {
	.block-prices__item {width: 50%;}
	.block-prices__items_3 .block-prices__item {width: 50%;}
	.block-prices__items_4 .block-prices__item {width: 50%;}
	.block-prices__items_5 .block-prices__item {width: 50%;}
	.block-prices__items_6 .block-prices__item {width: 50%;}
	.block-prices__item-title {font-size: 16px;}
	.block-prices__item-cost {font-size: 20px;}
}

/*--- END PRICE ITEMS ---*/


/*-- MODAL --*/

.modal {
	width: 96vw;
	max-width: 550px;
	border-radius: 8px;
}
.modal#success-modal {
	max-width: 520px;
}
.modal-close-btn {
	position: absolute;
	right: 30px;
	top: 30px;
	width: 20px;
	height: 20px;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
.modal-close-btn span {
	width: 100%;
	height: 2px;
	display: block;
	background: var(--primary);
	border-radius: 5px;
	transform: rotate(-45deg);
}
.modal-close-btn span:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	display: block;
	background: var(--primary);
	border-radius: 5px;
	transform: rotate(90deg);
}
.modal-title-wrap {
	margin: 0 0 20px 0;
}
.modal-title__title {
	font-size: 26px;
}
.modal-title__desc {
	font-size: 14px;
	margin: 30px 0 0 0;
}
.modal-title__success-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 20px 0;
}
.modal-title__success-icon img {
	width: 160px;
	height: 160px;
	margin: 0;
	padding: 0;
}
.form {

}
.form .form-group {
	position: relative;
	margin: 0 0 10px 0;
}
.form .form-control {
	height: 60px;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 4px;
	outline: none!important;
	padding: 20px;
	font-weight: 400;
	font-size: 16px;
	line-height: 155%;
	color: var(--base);
	transition: .3s;
}
.form.form_light .form-control {
	border-color: #BABCCE;
}
.form textarea.form-control {
	height: 120px;
	resize: none;
}
.form.form_light .form-control:focus,
.form.form_light .form-control:active {
	border-color: var(--primary);
}
.form .modal-form-btn {
	border-radius: 4px;
	margin: 5px 0 15px 0;
	width: 100%;
}
.politic-text {
	font-size: 12px;
	line-height: 130%;
}
.politic-text a {
	text-decoration: underline;
}
#form_subscribe .politic-text {
	margin: 0;
	font-size: 12px;
	line-height: 15px;
}
.choose-city {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.choose-city__btn {
	width: 200px;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
}

.form .form-select {
	background: var(--white);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	line-height: 1.2;
}
.form .form-select:required:invalid {
  color: #777;
}
.form-select-disable {
	pointer-events: none;
	user-select: none;
	cursor: default;
	opacity: .4;
}
.form .form-select option {
	color: var(--base);
}
.form .form-select option[value=""][disabled] {
  display: none;
}
.form .form-group-select::after {
	content: '';
	width: 18px;
	height: 18px;
	display: block;
	background: url('../icons/chevron-down.svg');
	position: absolute;
	right: 9px;
	top: calc(50% - 7px);
}

.form-group__privacy {
	display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 20px;
}
.form-group__privacy input {
	position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-group__privacy label {
	position: relative;
	width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid #BABCCE;
  border-radius: 3px;
  cursor: pointer;
}
.form-group__privacy label::after {
	content: '';
	background: url('../icons/checkmark.svg');
	opacity: 0;
	width: 20px;
  height: 20px;
  display: block;
  background-size: cover;
  background-position: -1px 0px;
	transition: .3s ease;
}
.form-group__privacy input:checked ~ label::after {
	opacity: 1;
}
.form-group__privacy p {
	width: calc(100% - 35px);
  color: var(--gray);
  font-weight: 300;
  font-style: italic;
  margin: 0;
}
.modal-form-btn.disable {
	opacity: .5;
  pointer-events: none;
}


@media screen and (max-width: 576px) {
	.modal-title__title {font-size: 18px;}
	.modal.fancybox-content {padding: 30px 20px;}
	.choose-city__btn {width: 100%;margin: 0 0 10px 0!important;}
}

/*-- END MODAL --*/


/*--- BACKCALL WIDGETS ---*/

.backcall-fixed-btn {
  position: fixed;
  right: 4vw;
  bottom: 4vw;
  z-index: 998;
}
.backcall-fixed-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary) 40%, #fff0);
  z-index: 1;
  opacity: .85;
  transform: scale(0.9);
  border-radius: 50%;
  box-shadow: 0 0 5px 1px #5aa0d09e;
  animation: 1.6s backcall-pulse infinite;
}
@keyframes backcall-pulse {
    0% {opacity: .85;transform: scale(0.9);}
    100% {opacity: .0;transform: scale(1.75);}
}
.backcall-fixed-btn.active::before {
  opacity: .0!important;
}
.backcall-main-btn {
  background: var(--primary);
  box-shadow: 3px 5px 15px #4b111035;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 3;
  position: relative;
  transition: .3s ease;
}
.backcall-main-btn:hover {
  cursor: pointer;
  background: var(--primary-hover);
}
.backcall-fixed-btn.active .backcall-main-btn {
  background: var(--primary-hover);
}
.backcall-main-btn svg {
  width: 30px;
  height: 30px;
}
.backcall-inner-wrap {
  position: absolute;
  top: -210px;
  width: max-content;
  right: 0;
  opacity: 1;
  visibility: visible;
  transition: .4s ease;
}
.backcall-inner-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
  transition: .4s ease;
}
.backcall-inner-item-text {
  background: #383A51;
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  opacity: 1;
  visibility: visible;
  transition: .4s ease;
  white-space: nowrap;
}
.backcall-inner-item-text p {
  margin: 0;
}
.backcall-inner-item-link {
  background: #fff;
  box-shadow: 3px 5px 15px #44444435;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  order: 1;
  margin-left: 20px;
  transition: .3s ease;
}
.backcall-inner-item-link:hover {
  margin-left: 10px;
}
.backcall-inner-item-link svg {
  width: 30px;
  height: 30px;
}
.backcall-inner-item-link.backcall-inner-item-link-whatsapp {
  background: #37C263;
  box-shadow: 3px 5px 15px #154A2635;
}
.backcall-inner-item-link.backcall-inner-item-link-whatsapp:hover {
  color: #fff;
  background: #2EA554;
}
.backcall-inner-item-link.backcall-inner-item-link-telegram {
  background: #fff;
  color: #16ABF2;
  box-shadow: 3px 5px 15px #0E364A35;
}
.backcall-inner-item-link.backcall-inner-item-link-telegram:hover {
  background: #fff;
  color: #1493CF;
}
.backcall-inner-item-link.backcall-inner-item-link-telegram svg {
  width: 50px;
  height: 50px;
}

.backcall-inner-item-link.backcall-inner-item-link-phone {
  background: #7f35dc;
  color: #FFF;
  box-shadow: 3px 5px 15px #0E364A35;
}
.backcall-inner-item-link.backcall-inner-item-link-phone:hover {
  background: #6b2bba;
  color: #FFF;
  cursor: pointer;
}
.backcall-inner-item-link.backcall-inner-item-link-phone svg {
  width: 25px;
  height: 25px;
}

.backcall-inner-item-link.backcall-inner-item-link-appointment {
  background: #2178B4;
  color: #FFF;
  box-shadow: 3px 5px 15px #0E364A35;
}
.backcall-inner-item-link.backcall-inner-item-link-appointment:hover {
  background: #186295;
  color: #FFF;
  cursor: pointer;
}
.backcall-inner-item-link.backcall-inner-item-link-appointment svg {
  width: 25px;
  height: 25px;
}

.backcall-inner-wrap.backcall-inner-wrap-hide {
  top: 15px;
  opacity: 0;
  visibility: hidden;
}
.backcall-inner-wrap.backcall-inner-wrap-hide .backcall-inner-item {
  margin-bottom: -50px;
}
.backcall-inner-wrap.backcall-inner-wrap-hide .backcall-inner-item:last-child {
  margin-bottom: 0px;
}
.backcall-inner-item-text.backcall-inner-item-text-hide {
  opacity: 0;
  visibility: hidden;
}

/*--- END BACKCALL WIDGETS ---*/



/*--- CTA-BLOCK ---*/

.cta-block {
	width: 100%;
}
.cta-block__inner {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	background: var(--primary-hover);
}
.cta-block__back {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.cta-block__back img {
	margin: 0!important;
	padding: 0;
	border-radius: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cta-block__content {
	position: relative;
	z-index: 1;
	padding: 30px 50px;
}
.cta-block__title {
	font-weight: 600;
}
.cta-block__links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	white-space: nowrap;
	column-gap: 30px;
}
.cta-block__link-item {
	width: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.cta-block__links_rating {
	align-items: flex-end;
}
.cta-block__links_rating .cta-block__link-item {
	flex-direction: column;
}
.cta-block__link-item_rating {
	width: 630px;
}
.cta-block__link-item_rating .rating__inner {
	gap: 0 15px;
}
.cta-block__link-item a {
	text-decoration: none;
	color: var(--white);
	margin: 0;
}
.cta-block__link-item a:hover {
	text-decoration: none;
	color: var(--light-gray);
}
.cta-block__link-item a.cta-block__btn {
	margin: 0;
	color: var(--primary-hover);
	font-weight: 600;
	background: var(--white);
}
.cta-block__link-item a.cta-block__btn:hover {
	background: var(--light-gray);
}

@media screen and (max-width: 992px) {
	.cta-block__content {
		padding: 20px 20px 0 20px;
	}
	.cta-block__link-item {
		margin: 0 auto 30px auto;
	}
}
@media screen and (max-width: 500px) {
	.cta-block__inner {margin: 0 -15px;}
	.cta-block__title {text-align: center;}
	.cta-block__content {padding: 30px 15px 0 15px;}
	.cta-block__link-item {margin: 0 0 20px 0;width: 100%;}
	.cta-block__links_rating .cta-block__link-item {margin: 0 0 30px 0;}
	.cta-block__link-item a.cta-block__btn {width: 100%;text-align: center;font-size: 15px;padding: 20px;}
	.cta-block__link-item_rating .rating__inner {gap: 0;}
}

/*--- END CTA-BLOCK ---*/




/*--- CATEGORY-TAGS ---*/

.category-tags {

}
.category-tags__inner {
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
	column-gap: 10px;
}
.category-tags__item {
	padding: 5px 15px;
	background: var(--light);
	color: var(--primary);
	border-radius: 6px;
	text-decoration: none!important;
}
.category-tags__item:hover {
	background: var(--primary);
	color: var(--white);
}
.category-tags__item.active {
	background: var(--primary);
	color: var(--white);
	pointer-events: none;
}

@media screen and (max-width: 576px) {
	.category-tags__inner {row-gap: 4px;column-gap: 4px;}
	.category-tags__item {padding: 3px 8px;border-radius: 4px;font-size: 12px;}
}

/*--- END CATEGORY-TAGS ---*/



/*--- ARTICLES ---*/

.articles {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.articles__inner {
	padding: 0 10px 30px 10px;
	width: calc(100% / 3);
}
.articles__item {

}
.articles__item-inner {
	position: relative;
	text-decoration: none!important;
	transition: .3s ease;
}
.articles__item-back {
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
	border-radius: 10px;
	aspect-ratio: 3/2;
	overflow: hidden;
}
.articles__item-back img {
 	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s ease;
}
.articles__item-inner:hover .articles__item-back img {
	transform: scale(1.03);
}
.articles__item-content {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 10px 0 0 0;
}
.articles__item-title {
	width: 100%;
	margin: 0;
	padding: 0;
	line-height: 1.2;
	height: 42px;
	overflow: hidden;
	text-transform: none;
	color: var(--base);
	margin: 0;
	transition: .3s ease;
}
.articles__item-inner:hover .articles__item-title {
	color: var(--primary);
}
.articles__item-desc {
	margin: 0 0 15px 0;
	color: var(--gray);
	font-weight: 300;
	font-size: 14px;
	line-height: 1.3;
	height: 36px;
	overflow: hidden;
}
.articles__item-bottom {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}
.articles__item-date {
	color: var(--base);
	font-weight: 300;
	font-size: 13px;
	line-height: 1.3;
}
.articles__item-time {
	color: var(--gray);
	font-weight: 300;
	font-size: 13px;
	line-height: 1.3;
	margin: 0 0 0 20px;
	opacity: .75;
}
.articles__inner-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 15px 0 0 0;
	padding: 0 15px;
}
.articles__inner-date {
	color: var(--base);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.3;
}
.articles__inner-time {
	color: var(--gray);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.3;
	margin: 0 0 0 20px;
	opacity: .75;
}
.neighbors {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

@media screen and (max-width: 992px) {
	.articles__inner {width: 50%;}
	.slider-block-4__wrap .articles__inner {width: 400px; max-width: 75vw;}
}
@media screen and (max-width: 576px) {
	.articles__inner {width: 100%;}
	.articles__inner-date {font-size: 14px;}
	.articles__inner-time {font-size: 14px;}

	.slider-block-4__wrap .articles__inner {padding: 0 5px 10px 5px;}
}

/*--- END ARTICLES ---*/



/*--- PAGINATION ---*/

.pagination-wrapper {
	padding:30px 0 0;
}
.pagination {
	display:flex;
	align-items: center;
	justify-content: center;
	list-style:none;
	padding:0;
	margin:0;
}
.page-item {
	margin:0 5px 0 0;
}
.page-link {
	display:block;
	height:35px;
	width:35px;
	line-height:35px;
	font-size:1rem;
	font-weight:500;
	text-align:center;
	margin:0;
	padding:0;
	text-decoration:none!important;
	background:var(--white);
	border-radius:5px;
	border:1px solid #e9e9e9;
}
.page-link:hover {
	text-decoration:none;
	color:var(--primary);
}
.page-item.active .page-link {
	background:var(--primary);
	border-color:var(--primary);
	color:var(--white);
}
.page-link svg {
	top:-2px;
	position:relative;
}

/*--- END PAGINATION ---*/


/*--- SLIDER SETTINGS ---*/

.slider-arrows-wrap {
	/*position: absolute;
	right: 0;
	bottom: 0;
	padding: 0px 90px 40px 0px;*/
}
.slider-arrows-wrap .btn-slider {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	outline: none;
	background: var(--white);
	box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
	margin: 0 5px;
	opacity: .4;
	transition: .3s;
	position: absolute;
}
.slider__wrap:hover ~ .slider-arrows-wrap .btn-slider,
.slider-arrows-wrap:hover .btn-slider {
	opacity: .7;
}
.slider-arrows-wrap .btn-slider:hover {
	opacity: 1;
	cursor: pointer;
}
.slider-arrows-wrap .btn-slider.btn-slider-prev {
	padding: 6px 8px 6px 4px;
	left: 20px;
	top: calc(50% - 10px);
}
.slider-arrows-wrap .btn-slider.btn-slider-next {
	padding: 6px 4px 6px 8px;
	right: 20px;
	top: calc(50% - 10px);
}
.slick-list {
	width: 100%;
}
.slick-track {
	width: 100%;
	margin-left: 0;
}
.slick-dots {
	bottom: 0;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	margin: 0;
	list-style: none;
	padding: 5px 15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	border-radius: 10px 10px 0 0;
}
.slick-dots > li {
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.slick-dots > li > button {
	background: var(--light-gray);
	border-radius: 6px;
	height: 5px;
	margin: 0 4px;
	padding: 0;
	width: 18px;
	box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
	transition: .35s;
	font-size: 0;
	line-height: 0;
	display: block;
	color: transparent;
	border: 0;
	outline: none;
}
.slick-dots > li > button::before {
	display: none;
}
.slick-dots > li.slick-active > button {
	background: var(--primary);
	width: 30px;
}
.no-dots .slick-dots {
	display: none;
}

@media screen and (max-width: 576px) {
	.slick-dots > li > button {width: 12px;}
	.slick-dots > li.slick-active > button {width: 20px;}
}
@media screen and (max-width: 500px) {
	.slick-dots {height: 18px;}
}

/*--- END SLIDER SETTINGS ---*/

/*SLIDER*/

.slider {
	
}
.slider__wrap {
	border-radius: 10px;
	overflow: hidden;
	/*box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);*/
}
.slider__item {
	height: 515px;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}
.slider__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.slider__image::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgb(13,40,59);
	background: linear-gradient(105deg, rgba(13,40,59,1) 0%, rgba(13,40,59,0.8741829495470064) 51%, rgba(13,40,59,0) 100%);
	opacity: .25;
}
.slider__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.slider__image video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.slider__content {
	z-index: 3;
	height: 100%;
	width: 100%;
	max-width: 800px;
	padding: 40px 80px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
}
.slider__content_xcenter {
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	text-align: center;
}
.slider__content_xright {
	margin-left: auto;
	align-items: flex-end;
	text-align: right;
}
.slider__content_ytop {
	justify-content: flex-start;
}
.slider__content_ybottom {
	justify-content: flex-end;
}
.slider__title {
	font-size: 40px;
	line-height: 120%;
	font-weight: 700;
	margin: 0 0 15px 0;
	z-index: 5;
	text-shadow: 0 0 15px rgba(20,20,20,.3);
}
.slider__desc-top {
	font-size: 20px;
	margin: 0 0 10px 0;
	z-index: 5;
	font-weight: 800;
	color: var(--primary);
	letter-spacing: -0.01em;
	text-shadow: 0 0 15px rgba(20,20,20,.2);
}
.slider__desc {
	font-size: 16px;
	margin: 0 0 15px 0;
	z-index: 5;
	text-shadow: 0 0 15px rgba(20,20,20,.2);
}
.slider__btn {
	margin: 25px 0 0 0;
	z-index: 5;
	min-width: 200px;
	text-align: center;
}
.slider .breadcrumb__wrap {
	position: absolute;
	bottom: 40px;
	left: 95px;
}
.slider .breadcrumb__link {
  text-shadow: 0 0 15px rgba(20,20,20,.3);
}

@media screen and (max-width: 1300px) {
	.slider__item{height: 37vw;}
}
@media screen and (max-width: 1200px) {
	.slider {padding-bottom: 0;}
}
@media screen and (max-width: 992px) {
	.slider__item{height: 38vw;}
	.slider__content{width: 70%;padding: 30px 60px;}
	.slider__title{font-size: 36px;}
	.slider__desc-top{font-size: 16px;}
	.slider__desc{font-size: 16px;}
	.slider__btn{margin: 15px 0 0 0;padding: 10px 22px;min-width: 180px;}
	.slider .breadcrumb__wrap {left: 75px;}
}
@media screen and (max-width: 768px) {
	.slider__content{width: 75%;padding: 20px 25px;}
	.slider__title{font-size: 24px;margin: 0 0 10px 0;}
	.slider__desc-top{font-size: 14px;}
	.slider__desc{font-size: 13px;margin: 0 0 10px 0;}
	.slider__btn{margin: 10px 0 0 0;min-width: 170px;font-size: 15px;}
	.slider .breadcrumb__wrap {left: 40px;}
}
@media screen and (max-width: 576px) {
	.slider__content{width: 70%;padding: 20px 20px;}
	.slider__title{font-size: 18px;margin: 0 0 8px 0;}
	.slider__desc-top{font-size: 13px;}
	.slider__desc{font-size: 12px;margin: 0 0 8px 0;}
	.slider__btn{margin: 8px 0 0 0;}
	.slider .breadcrumb__wrap {left: 35px;bottom: 25px;}
	.slider__image::before {opacity: .7;}
}
@media screen and (max-width: 500px) {
	.slider__item {height: 80vw;}
	.slider__content {width: 90%;padding: 15px 15px;}
	.slider__title {margin: 0 0 5px 0;}
	.slider__desc {margin: 0 0 8px 0;}
	.slider__btn {margin: 10px 0 0 0;line-height: 1.2;padding: 11px 10px 10px;}
	.slider .breadcrumb__wrap {left: 30px;width: calc(100% - 45px);}
}

/*--- END SLIDER ---*/


/*--- SLIDER-BLOCK-2 ---*/

.slider-block-2 {
	
}
.slider-block-2__wrap {
	position: relative;
	margin: 0 -3px;
}
.slider-block-2__inner {

}
.slider-block-2__inner .slick-track {
	display: flex;
}
.slider-block-2__item {
	padding: 0 3px;
	height: inherit;
}
.slider-block-2__item-link {
	display: block;
	text-decoration: none;
	height: 100%;
  display: flex;
  flex-direction: column;
}
.slider-block-2__item-link:hover {
	text-decoration: none;
}
.slider-block-2__no-hover .slider-block-2__item-link {
	pointer-events: none;
}
.slider-block-2__item-image {
	border-radius: 10px;
	overflow: hidden;
}
.slider-block-2__item-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: .5s;
}
.slider-block-2__item-link:hover .slider-block-2__item-image img {
/*	transform: scale(1.05);*/
}
.slider-block-2__no-hover .slider-block-2__item-link:hover .slider-block-2__item-image img {
	transform: scale(1);
}
.slider-block-2__item-title {
	font-size: 18px;
	line-height: 110%;
	font-weight: 500;
	margin: 20px 0 10px 0;
	padding: 0 15px 0 0;
}
.slider-block-2__no-hover .slider-block-2__item-title {
	color: var(--primary);
}
.slider-block-2__item-desc {
	margin: 0 0 10px 0;
	padding: 0 15px 0 0;
	line-height: 120%;
	font-size: 14px;
	color: var(--gray);
	font-weight: 400;
}
.slider-block-2__item-desc.text-green {
    margin: 0 0 15px 0;
}
.slider-block-2__item-btn {
	width: 100%;
    text-align: center;
    padding: 15px 5px 13px;
    margin: auto 0 0 0;
}
.slider-arrows-wrap-2 .btn-slider.btn-slider-prev {
	left: -20px;
	opacity: 1;
	top: 170px;
}
.slider-arrows-wrap-2 .btn-slider.btn-slider-next {
	right: -20px;
	opacity: 1;
	top: 170px;
}
.slider-arrows-wrap-2 .btn-slider.btn-slider-prev:hover,
.slider-arrows-wrap-2 .btn-slider.btn-slider-next:hover {
	background: #F9F9F9;
}

@media screen and (max-width: 1200px) {
	.slider-block-2__item-title {font-size: 20px;}
}
@media screen and (max-width: 992px) {
	.slider-block-2__item {width: 30vw;}
}
@media screen and (max-width: 850px) {
	.slider-block-2__item {width: 37vw;}
}
@media screen and (max-width: 768px) {
	.slider-block-2__item-title {font-size: 18px;}
	.slider-block-2__item-desc {font-size: 12px;}
}
@media screen and (max-width: 650px) {
	.slider-block-2__item {width: 300px;}
}
@media screen and (max-width: 450px) {
	.slider-block-2__item {width: 250px;}
	.slider-block-2__item-btn {font-size: 11px;}
	.slider-block-2__item-desc.text-green {margin: 0 0 10px 0;}
}

/*--- END SLIDER-BLOCK-2 ---*/


/*--- SLIDER-BLOCK-3 ---*/

.slider-block-3 {
	
}
.slider-block-3__back {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.slider-block-3__back img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top center;
}
.slider-block-3__wrap {
	position: relative;
	margin: 0 -3px;
}
.slider-block-3__inner {

}
.slider-block-3__item {
	padding: 0 3px;
}
.slider-block-3__item-link {
	display: block;
	text-decoration: none;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.slider-block-3__item-link:hover {
	text-decoration: none;
}
.slider-block-3__item-link::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 40%;
	background: rgb(90,160,208);
	background: linear-gradient(0deg, rgba(90,160,208,1) 0%, rgba(90,160,208,0) 100%);

	display: none;
}
.slider-block-3__item-image {
	overflow: hidden;
	position: relative;
	z-index: -1;
}
.slider-block-3__item-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: .5s;
}
.slider-block-3__item-link:hover .slider-block-3__item-image img {
	transform: scale(1.05);
}
.slider-block-3__item-title {
	line-height: 110%;
	font-weight: 400;
	margin: 0;
	padding: 0 15px 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 16px;
	color: var(--white);
	z-index: 5;
}
.slider-block-3__item-icon {
	position: absolute;
	width: 60px;
	height: 40px;
	left: calc(50% - 30px);
	top: calc(50% - 20px);
	border-radius: 10px;
	background: rgba(255,255,255,.7);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	transition: .4s ease;
	z-index: 5;
	backdrop-filter: blur(3px);
	opacity: 1;
}
.slider-block-3__item-icon img {
	margin: 0 0 0 4px;
	transition: .4s ease;
}
.slider-block-3__item-link:hover .slider-block-3__item-icon {
	background: var(--light);
}
.slider-arrows-wrap-3 .btn-slider.btn-slider-prev {
	left: -20px;
	opacity: 1;
	top: calc(50% - 20px);
}
.slider-arrows-wrap-3 .btn-slider.btn-slider-next {
	right: -20px;
	opacity: 1;
	top: calc(50% - 20px);
}
.slider-arrows-wrap-3 .btn-slider.btn-slider-prev:hover,
.slider-arrows-wrap-3 .btn-slider.btn-slider-next:hover {
	background: #F9F9F9;
}

@media screen and (max-width: 992px) {
	.slider-block-3__item {width: 45vw;}
}
@media screen and (max-width: 850px) {
	.slider-block-3__item {width: 47vw;}
}
@media screen and (max-width: 650px) {
	.slider-block-3__item {width: 300px;}
}
@media screen and (max-width: 450px) {
	.slider-block-3__item {width: 250px;}
}

/*--- END SLIDER-BLOCK-3 ---*/


/*--- SLIDER-BLOCK-3 ---*/

.slider-block-4 {
	
}
.slider-block-4__wrap {
	position: relative;
	margin: 0 -3px;
}
.slider-block-4__inner {

}
.slider-block-4__item {
	padding: 0 3px;
}
.slider-block-4__item-image {
	overflow: hidden;
	position: relative;
	z-index: -1;
}
.slider-block-4__item-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: .5s;
	border-radius: 10px;
}
.slider-arrows-wrap-4 .btn-slider.btn-slider-prev {
	left: -20px;
	opacity: 1;
	top: calc(50% - 20px);
}
.slider-arrows-wrap-4 .btn-slider.btn-slider-next {
	right: -20px;
	opacity: 1;
	top: calc(50% - 20px);
}
.slider-arrows-wrap-4 .btn-slider.btn-slider-prev:hover,
.slider-arrows-wrap-4 .btn-slider.btn-slider-next:hover {
	background: #F9F9F9;
}

@media screen and (max-width: 992px) {
	.slider-block-4__item {width: 45vw;}
}
@media screen and (max-width: 850px) {
	.slider-block-4__item {width: 47vw;}
}
@media screen and (max-width: 650px) {
	.slider-block-4__item {width: 300px;}
}
@media screen and (max-width: 450px) {
	.slider-block-4__item {width: 250px;}
}

/*--- END SLIDER-BLOCK-4 ---*/


/*--- BENEFITS ---*/

.benefits {

}
.benefits__items {
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.benefits__item {
	width: 25%;
}
.benefits__item-inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	padding: 0 10px;
}
.benefits__item-icon {
	width: 110px;
	height: auto;
	position: relative;
}
.benefits__item-icon img {
	width: 100%;
	height: auto;
	z-index: 1;
	position: relative;
	border-radius: 0px;
}
.benefits__item-icon::before {
	content: '';
  position: absolute;
  left: -40%;
	top: -40%;
	width: 160%;
	height: 160%;
	z-index: 0;
	background: url('../images/benefits/benefit-blob-1.svg');
	transition: .4s ease;
}
.benefits__item:nth-child(1) .benefits__item-icon::before {
	background: url('../images/benefits/benefit-blob-1.svg');
}
.benefits__item:nth-child(2) .benefits__item-icon::before {
	background: url('../images/benefits/benefit-blob-2.svg');
}
.benefits__item:nth-child(3) .benefits__item-icon::before {
	background: url('../images/benefits/benefit-blob-3.svg');
}
.benefits__item:nth-child(4) .benefits__item-icon::before {
	background: url('../images/benefits/benefit-blob-4.svg');
}
.benefits__item:nth-child(5) .benefits__item-icon::before {
	background: url('../images/benefits/benefit-blob-5.svg');
}
.benefits__item-title {
	margin: 20px 0 20px;
	text-align: center;
	line-height: 1.3;
	font-size: 14px;
	z-index: 1;
	position: relative;
}
.benefits__item-suptitle {
	margin: 0;
  font-size: 40px;
  font-weight: 500;
  color: var(--secondary-hover);
}
.benefits__item-suptitle + .benefits__item-title {
	margin-top: 0;
  color: var(--gray);
}

@media screen and (max-width: 1200px) {
	.benefits__item-icon {width: 70px;}
}
@media screen and (max-width: 992px) {
	.benefits__items {flex-wrap: wrap;}
	.benefits__item {width: 25%;}
	.benefits__item-suptitle {font-size: 32px;}
}
@media screen and (max-width: 576px) {
	.benefits__items {margin: 50px 0 0 0;}
	.benefits__item {width: 50%;}
	.benefits__item-suptitle {font-size: 24px;}
}

/*--- END BENEFITS ---*/


/*--- STEPS ---*/

.steps {
	
}
.steps__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.steps__left {
	width: calc(50% - 60px);
}
.steps__image {
	
}
.steps__image img {
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
}
.steps__right {
	width: calc(50% + 60px);
	padding: 0px 0 0 35px;
}
.steps__item {
	position: relative;
	min-height: 50px;
	padding: 10px 0 0 0;
	margin: 0 0 40px 0;
}
.steps__item:last-child {
	margin: 0;
}
.steps__item::after {
	content: '';
	position: absolute;
	left: 25px;
	top: 49px;
	width: 2px;
	height: calc(100% + 40px);
	background: var(--secondary);
}
.steps__item:last-child::after {
	display: none;
}
.steps__item-number {
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	border: 2px solid var(--secondary);
	background: var(--white);
	z-index: 1;
}
.bg-light .steps__item-number {
	background: var(--light);
}
.steps__item-content {
	padding: 0 0 0 80px;
	font-size: 20px;
}
.steps__item-content *:last-child {
	margin: 0;
}

@media screen and (max-width: 768px) {
	.steps__left {
		width: 100%;
		order: 1;
		margin: 0 0 40px 0;
	}
	.steps__right {
		width: 100%;
		order: 2;
		padding: 0;
		margin: 0 0 50px 0;
	}
}

/*--- END STEPS ---*/



/*--- INSTRUCTIONS ---*/

.instructions__wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -3px;
	justify-content: flex-start;
}
.instructions__item	{
	width: 50%;
	padding: 3px;
}
.instructions__item-inner {
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 10px 10px 30px 60px;
	min-height: 70px;
	flex-direction: column;
	border: 2px solid var(--light);
	background: var(--white);
	border-radius: 10px;
	text-decoration: none;
	transition: .3s ease;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
	overflow: hidden;
}
.instructions__item-inner:hover {
	text-decoration: none;
}
.instructions__item-icon {
	position: absolute;
	left: 10px;
	top: 15px;
}
.instructions__item-icon img {
	width: 40px;
	height: auto;
	z-index: 1;
	position: relative;
	opacity: 1;
	transition: .3s ease;
}
.instructions__item-inner:hover .instructions__item-icon img{
	opacity: .7;
}
.instructions__item-icon::before {
  content: '';
	position: absolute;
	left: -60px;
	top: -80px;
	width: 150px;
	height: 150px;
	z-index: 0;
	background: url('../icons/blob-1.svg');
	transition: .4s ease;
}
.instructions__item-inner:hover .instructions__item-icon::before {
  transform: scale(4);
}
.instructions__item-title {
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	margin: 5px 0 0 0;
	font-size: 16px;
	color: var(--base);
	z-index: 1;
	padding: 0;
	line-height: 1.2;
}
.instructions__item-link {
	font-size: 15px;
	z-index: 1;
	line-height: 1;
	position: absolute;
	bottom: 5px;
}
.instructions__item-link img {
	width: 26px;
	height: 26px;
	transition: .3s ease;
}
.instructions__item-inner:hover .instructions__item-link img {
  transform: translateX(10px);
}

@media screen and (max-width: 768px) {
	.instructions__item {width: 100%;}
	.instructions__item-title {white-space: normal;margin: 5px 0 5px 0;}
}

/*--- END INSTRUCTIONS ---*/


/*--- GALLERY ---*/

.gallery__wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 -3px;
}
.gallery__item {
	width: 25%;
	padding: 0 3px 0 3px;
	margin: 0 0 6px 0;
}
.gallery__item a.zoom-img {
	margin: 0;
	width: 100%;
	display: flex;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
}
.gallery__item .zoom-img img {
	aspect-ratio: 3/2;
	object-fit: cover;
	transition: .5s ease;
}
@media screen and (max-width: 1100px) {
	.gallery__item {width: calc(100% / 3);}
}
@media screen and (max-width: 768px) {
	.gallery__item {width: 50%;}
}
@media screen and (max-width: 450px) {
	.gallery__item {width: 50%;}
}

/*--- END GALLERY ---*/



/*--- LICENSES ---*/

.licenses__wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	margin: 0 -3px;
}
.licenses__item {
	width: 20%;
	padding: 0 3px 0 3px;
	margin: 0 0 6px 0;
}
.licenses__item a.zoom-img {
	margin: 0;
	width: 100%;
	display: flex;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
}
.licenses__item .zoom-img img {
	aspect-ratio: 30/44;
	object-fit: cover;
	transition: .5s ease;
}
@media screen and (max-width: 1100px) {
	.licenses__item {width: 25%;}
}
@media screen and (max-width: 768px) {
	.licenses__item {width: calc(100% / 3);}
}
@media screen and (max-width: 450px) {
	.licenses__item {width: 50%;}
}

/*--- END LICENSES ---*/


/*--- INFO-BLOCK-1 ---*/

.info-block-1 {

}
.info-block-1__wrap {
	border-radius: 10px;
	overflow: hidden;
}
.info-block-1__item {
	height: 515px;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}
.info-block-1__back {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: var(--light);
}
.info-block-1__back::before {
	content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgb(13,40,59);
  background: linear-gradient(105deg, rgba(13,40,59,1) 0%, rgba(13,40,59,0.8741829495470064) 51%, rgba(13,40,59,0) 100%);
  opacity: 0;
}
.info-block-1__back video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.info-block-1__back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.info-block-1__content {
	z-index: 3;
	height: 100%;
	width: 100%;
	max-width: 800px;
	padding: 40px 80px 100px 80px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	position: relative;
}
.info-block-1__title {
	line-height: 120%;
	font-weight: 700;
	margin: 0 0 15px 0;
	z-index: 5;
	text-shadow: 0 0 15px rgba(20,20,20,.3);
}
@media screen and (max-width: 1300px) {
	.info-block-1__item {height: 37vw;}
}
@media screen and (max-width: 1200px) {
	.info-block-1 {padding-bottom: 0;}
}
@media screen and (max-width: 992px) {
	.info-block-1__item {height: 38vw;}
	.info-block-1__content {width: 70%;padding: 30px 60px;}
}
@media screen and (max-width: 768px) {
	.info-block-1__content {width: 75%;padding: 20px 25px;}
	.info-block-1__title {margin: 0 0 10px 0;}
}
@media screen and (max-width: 576px) {
	.info-block-1__content {width: 100%;padding: 20px 20px;}
	.info-block-1__title {margin: 0 0 8px 0;}
	.info-block-1 .breadcrumb__wrap {flex-wrap: wrap;}
	.info-block-1__back::before {opacity: .7;}
}
@media screen and (max-width: 500px) {
	.info-block-1__item {height: 80vw;}
	.info-block-1__content {padding: 15px 15px 40px 15px;justify-content: flex-end;}
	.info-block-1__title {margin: 0 0 5px 0;}
}

/*--- END INFO-BLOCK-1 ---*/

/*--- INFO-BLOCK-2 ---*/

.info-block-2 {

}
.info-block-2__back {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.info-block-2__back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.info-block-2__items {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	justify-content: flex-start;
}
.info-block-2__item {
	width: calc(100% / 3);
	padding: 3px;
}
.info-block-2__item-inner {
	height: 220px;
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 15px 10px;
	flex-direction: column;
	border: 2px solid var(--light);
	background: var(--white);
	border-radius: 10px;
	text-decoration: none;
	transition: .3s ease;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
	overflow: hidden;
}
.info-block-2__item-inner:hover {
	text-decoration: none;
}
.info-block-2__item-icon {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 80px;
}
.info-block-2__item-icon img {
	position: relative;
	z-index: 1;
}
.info-block-2__item-icon::before {
	content: '';
  position: absolute;
  left: -60px;
  top: -60px;
  width: 200%;
  height: 200%;
  z-index: 0;
	background: url('../icons/blob-1.svg');
	transition: .4s ease;
}
.info-block-2__item-inner:hover .info-block-2__item-icon::before {
 transform: scale(4);
}
.info-block-2__item-title {
	margin: auto 0 10px 0;
	font-size: 18px;
	color: var(--base);
	z-index: 1;
	padding: 0 10px 0 0;
	line-height: 1.25;
}
.info-block-2__item-link {
	font-size: 15px;
	z-index: 1;
}
.info-block-2__item-link img {
	width: 26px;
	height: 26px;
	transition: .3s ease;
}
.info-block-2__item-inner:hover .info-block-2__item-link img {
	transform: translateX(10px);
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 850px) {
.info-block-2__item-title {font-size: 16px;}
}
@media screen and (max-width: 700px) {
.info-block-2__item {width: 50%;}
}
@media screen and (max-width: 500px) {
	.info-block-2__item-icon {width: 60px;}
	.info-block-2__item-title {font-size: 15px;line-height: 1.2;}
	.info-block-2__item-link {font-size: 13px;}
}

/*--- END INFO-BLOCK-2 ---*/


/*--- INFO-BLOCK-3 ---*/

.info-block-3 {
	position: relative;
	overflow: hidden;
}
.info-block-3__back {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.info-block-3__back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.info-block-3__inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	padding: 50px 80px;
	border-radius: 10px;
	overflow: hidden;
}
.info-block-3__left {
	width: calc(100% - 520px);
	z-index: 2;
}
.info-block-3__left-title {
	max-width: 400px;
}
.info-block-3__right {
	width: 520px;
	z-index: 2;
}
.info-block-3__right form {
	background: rgba(255,255,255,.75);
	backdrop-filter: blur(5px);
	border-radius: 10px;
	padding: 30px 30px 10px 30px;
}

@media screen and (max-width: 850px) {
	.info-block-3__item-text p {line-height: 125%;font-size: 13px;}
	.info-block-3__item-content {padding: 10px 15px 15px 15px;}
}
@media screen and (max-width: 768px) {
	.info-block-3__item {flex-wrap: wrap;}
	.info-block-3__item-image {padding: 15px;}
	.info-block-3__item-image img {width: 100%;height: auto;max-width: 300px;}
	.info-block-3__item-content {width: 100%;padding: 0 15px 15px 15px;}
}
@media screen and (max-width: 576px) {
	.info-block-3__inner {padding: 60px 0;}
	.info-block-3__right form {background: rgba(255,255,255,.3);}
}

/*--- END INFO-BLOCK-3 ---*/


/*--- INFO-BLOCK-4 ---*/

.info-block-4 {

}
.info-block-4__items {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -3px;
	justify-content: flex-start;
}
.info-block-4__item {
	width: 50%;
	padding: 3px;
}
.info-block-4__item-inner {
	height: 300px;
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 15px 10px;
	flex-direction: column;
	border: 2px solid var(--light);
	background: var(--white);
	border-radius: 10px;
	text-decoration: none;
	transition: .3s ease;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
	overflow: hidden;
}
.info-block-4__item-inner:hover {
	text-decoration: none;
}
.info-block-4__item-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.info-block-4__item-image img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.info-block-4__item-image::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 160px;
	height: 50px;
	border-radius: 10px 0 0 0;
	z-index: 2;
	background: #f3f9fc;
	transition: .4s ease;

	display: none;
}
.info-block-4__item-link {
	font-size: 15px;
	z-index: 1;
	position: absolute;
	right: 20px;
	bottom: 10px;
	z-index: 3;

	display: none;
}
.info-block-4__item-link img {
	width: 26px;
	height: 26px;
	transition: .3s ease;
}
.info-block-4__item-inner:hover .info-block-4__item-link img {
	transform: translateX(10px);
}

@media screen and (max-width: 1200px) {
	.info-block-4__item-inner {height: 25vw;}
}
@media screen and (max-width: 650px) {
	.info-block-4__item {width: 100%;}
	.info-block-4__item-inner {height: 50vw;}
}

/*--- END INFO-BLOCK-4 ---*/


/*--- INFO-BLOCK-5 ---*/

.info-block-5 {

}
.info-block-5__items {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -3px;
	justify-content: flex-start;
}
.info-block-5__item {
	width: 50%;
	padding: 3px;
}
.info-block-5__item-inner {
	height: 300px;
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 15px 10px;
	flex-direction: column;
	border: 2px solid var(--light);
	background: var(--white);
	border-radius: 10px;
	text-decoration: none;
	transition: .3s ease;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
	overflow: hidden;
}
.info-block-5__item-inner:hover {
	text-decoration: none;
}
.info-block-5__item-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.info-block-5__item-image img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*--- END INFO-BLOCK-5 ---*/


/*--- INFO-BLOCK-6 ---*/

.info-block-6 {

}
.info-block-6__items {

}
.info-block-6__item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.info-block-6__item-map {
	width: 50%;
	height: 400px;
}
.info-block-6__item-map-inner {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}
.info-block-6__item-map-inner .ymaps-2-1-79-ground-pane {
	-webkit-filter: grayscale(100%)!important;
	filter: grayscale(100%)!important;
}
.info-block-6__item-contacts {
	width: 50%;
}
.info-block-6__item-contacts_right {
	padding-left: 40px;
}
.info-block-6__item-contacts-subtitle {
	margin: 0 0 5px 0;
	color: var(--gray);
}
.info-block-6__item-contacts-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.2;
}
.info-block-6__item-contacts-title a {
	font-size: 26px;
	font-weight: inherit;
	text-decoration: none;
	color: var(--primary);
}
.info-block-6__item-contacts-title a:hover {
	text-decoration: none;
	color: var(--primary-hover);
}

@media screen and (max-width: 850px) {
	.info-block-6__item-map {width: 100%;order: 1;}
	.info-block-6__item-contacts {width: 100%;}
	.info-block-6__item-contacts_right {padding-left: 0px;}
}
@media screen and (max-width: 576px) {
	.info-block-6__item-contacts-title {font-size: 16px;}
	.info-block-6__item-contacts-title a {font-size: 22px;}
}

/*--- END INFO-BLOCK-6 ---*/


/*--- INFO-BLOCK-7 ---*/

.info-block-7 {
	
}
.info-block-7__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	height: 100%;
}
.info-block-7__content {
	width: 55%;
}
.info-block-7__images {
	width: 45%;
	height: 100%;
	display: block;
	padding: 0 0 0 30px;
}
.info-block-7__images-inner {
	position: relative;
	display: block;
	height: 100%;
}
.info-block-7__images-inner img {
	position: absolute;
	border-radius: 10px;
	object-fit: cover;
}
.info-block-7__image_1 img {
	right: -50px;
	top: 0;
	width: 100%;
	height: 300px;
}
.info-block-7__image_2 img {
	left: 0;
	top: 306px;
	width: calc(55% - 6px);
	height: 220px;
}
.info-block-7__image_3 img {
	right: 0;
	top: 306px;
	width: 45%;
	height: 270px;
}
.info-block-7__image img {
	position: relative;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

@media screen and (max-width: 768px) {
	.info-block-7__content {width: 100%;}
	.info-block-7__images {width: 100%;padding: 0;height: auto;margin: 20px 0 0 0;}
	.info-block-7__images-inner {height: auto;display: flex;flex-wrap: wrap;margin: -6px -3px;}
	.info-block-7__images-inner img {position: relative;left: unset!important;right: unset!important;top: unset!important;padding: 3px;width: 100%;height: auto;}
	.info-block-7__image_1 {width: 100%;height: auto;}
	.info-block-7__image_2 {width: 50%;height: auto;}
	.info-block-7__image_3 {width: 50%;height: auto;}
}

/*--- END INFO-BLOCK-7 ---*/



/*--- INFO-BLOCK-8 ---*/

.info-block-8 {
	padding-bottom: 30px;
}
.info-block-8__inner {
	align-items: stretch;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
	position: relative;
	margin: 0 -3px;
}
.info-block-8__inner .slider-block-2__item {
	width: 100%;
	margin: 0 0 30px 0;
}
.info-block-8__inner .slider-block-2__item-link {
	height: 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 992px) {
	.info-block-8__inner {grid-template-columns: repeat(3, 1fr);}
}
@media screen and (max-width: 650px) {
	.info-block-8__inner {grid-template-columns: repeat(2, 1fr);}
}
@media screen and (max-width: 576px) {
	.info-block-8 {padding-bottom: 15px;}
	.info-block-8__inner .slider-block-2__item {margin: 0 0 15px 0;}
}
@media screen and (max-width: 450px) {
	.info-block-8__inner .slider-block-2__item-title {font-size: 15px;margin: 5px 0 5px 0;}
}

/*--- END INFO-BLOCK-8 ---*/



/*--- INFO-BLOCK-9 ---*/

.info-block-9 {

}
.info-block-9__items {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -3px;
	justify-content: center;
}
.info-block-9__item {
	width: 33.333%;
	padding: 3px;
}
.info-block-9__item-inner {
	height: auto;
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 0px;
	flex-direction: column;
	border: 2px solid var(--light);
	background: var(--white);
	border-radius: 10px;
	text-decoration: none;
	transition: .3s ease;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
	overflow: hidden;
}
.info-block-9__item-inner img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 992px) {
	.info-block-9__item {width: 50%}
}
@media screen and (max-width: 576px) {
	.info-block-9__item {width: 100%;}
}

/*--- END INFO-BLOCK-9 ---*/


/*--- INFO-BLOCK-10 ---*/

.info-block-10 {

}
.info-block-10__items {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.info-block-10__item {
	width: 100%;
	border-radius: 10px;
	text-decoration: none;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
	background: var(--white);
	overflow: hidden;
	position: relative;
	margin: 0 0 30px 0;
	padding: 20px 40px;
	border: 1px solid var(--light);
}
.info-block-10__item-top {
	padding: 0 0 15px 0;
	margin: 0 0 10px 0;
	border-bottom: 1px solid var(--light);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.info-block-10__item-name {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 110%;
	font-weight: 500;
}
.info-block-10__item-rating {
	display: flex;
	align-items: center;
}
.info-block-10__item-stars {
	width: 110px;
	height: 18px;
	position: relative;
}
.info-block-10__item-stars_gray {
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../icons/star-fill-gray.svg);
	background-size: 22px 18px;
	z-index: 1;
}
.info-block-10__item-stars_gold {
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../icons/star-fill-gold.svg);
	background-size: 22px 18px;
	z-index: 2;
}
.info-block-10__item-score {
	font-size: 18px;
	line-height: 110%;
	font-weight: 500;
	width: 50px;
	text-align: right;
}
.info-block-10__item-content {

}
.info-block-10__item-content *:last-child {
	margin-bottom: 0;
}
.info-block-10__item-date-wrap {
	margin: 15px 0 0 0;
	text-align: right;
	color: var(--gray);
	opacity: .5;
	font-size: 16px;
	font-weight: 300;
}
.info-block-10__item-date {

}

@media screen and (max-width: 992px) {
	
}
@media screen and (max-width: 576px) {
	.info-block-10__item {
		padding: 20px 15px 10px 15px;
	}
	.info-block-10__item-top {
		flex-wrap: wrap;
	}
	.info-block-10__item-name {
		width: 100%;
		margin: 0 0 10px 0;
		font-size: 16px;
	}
	.info-block-10__item-score {
		font-size: 16px;
		width: 40px;
	}
	.info-block-10__item-date-wrap {
		font-size: 14px;
	}
}

/*--- END INFO-BLOCK-10 ---*/


/*--- COMPARE-BLOCK ---*/

.compare-block {

}
.compare-block__wrap {
	display: grid;
  grid-template-columns: 1fr;
  border-radius: 15px;
  background: var(--light);
  margin: 0;
  padding: 50px 50px 25px 50px;
}
.compare-block__item {
	display: grid;
  grid-template-columns: 2fr 3fr 3fr;
  border-bottom: 1px solid var(--light-gray);
  /*padding: 0 0 15px 0;
  margin: 0 0 15px 0;*/
  gap: 15px;
}
.compare-block__item:last-child {
	border-bottom: none;
}
.compare-block__item-head {
	border-bottom: none;
	margin: 0 0 30px 0;
}
.compare-block__item-headtitle {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
  padding: 0 30px;
}
.compare-block__item-headtitle:first-child {
	grid-column-start: 2;
}
.compare-block__item-title {
	margin: 0;
	padding: 25px 0;
	font-size: 18px;
  font-weight: 600;
  color: var(--primary-hover);
}
.compare-block__item-left {
/*	border-left: 1px solid var(--light-gray);*/
  padding: 25px 30px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.compare-block__item-right {
/*	border-left: 1px solid var(--light-gray);*/
  padding: 25px 30px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.compare-block__item-empty {

}
.compare-block__item-suptitle {
	text-align: center;
  font-weight: 600;
  width: 100%;
  margin: 0 0 15px 0;
  display: none;
}
.compare-block__item-icon {
	width: 28px;
  height: 28px;
  margin: 0 12px 0 0;
}
.compare-block__item-content {
	width: calc(100% - 40px);
}
.compare-block__item-content p {
	margin: 0;
}
.compare-block__item-content .nowrap {
	white-space: nowrap;
}

@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 992px) {
	
}
@media screen and (max-width: 768px) {
	.compare-block__wrap {padding: 30px 15px 15px 15px;}
	.compare-block__item-head {display: none;}
	.compare-block__item {grid-template-columns: 1fr;gap: 0;margin: 0 0 30px 0;padding: 0 0 15px 0;}
	.compare-block__item:last-child {margin: 0;}
	.compare-block__item-empty {display: none;}
	.compare-block__item-title {padding: 0px 0 20px 0;text-align: center;font-size: 20px;}
	.compare-block__item-left {padding: 0 0 15px 0;}
	.compare-block__item-right {padding: 15px 0 15px 0;}
	.compare-block__item-suptitle {display: block;}
}
@media screen and (max-width: 576px) {
	
}

/*--- END COMPARE-BLOCK ---*/



/*--- BRANDS ---*/

.brands {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.brand {
	padding: 30px;
}
.brand:nth-child(1) {
	border-bottom: 1px solid var(--light);
	border-right: 1px solid var(--light);
}
.brand:nth-child(2) {
	border-bottom: 1px solid var(--light);
	border-right: 1px solid var(--light);
}
.brand:nth-child(3) {
	border-bottom: 1px solid var(--light);
}
.brand:nth-child(4) {
	border-right: 1px solid var(--light);
}
.brand:nth-child(5) {
	border-right: 1px solid var(--light);
}
.brand img {
	width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
	.brand {padding: 25px 10px;}
}
@media screen and (max-width: 576px) {
	.brands {grid-template-columns: repeat(2, 1fr);}
	.brand:nth-child(2) {border-right: unset;}
	.brand:nth-child(3) {border-right: 1px solid var(--light);}
	.brand:nth-child(4) {border-bottom: 1px solid var(--light);border-right: unset;}
}

/*--- END BRANDS ---*/



/*--- BVI ---*/

.cust-bvi-show_fixed {
	position: fixed;
	right: 0;
	top: 190px;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: var(--white);
	padding: 10px 20px 10px 15px;
	border-radius: 10px 0 0 10px;
	box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
	cursor: pointer;
	text-decoration: none;
	transform: translateX(calc(100% - 55px));
	transition: .4s ease;
}
.cust-bvi-show_fixed:hover {
	transform: translateX(0px);
	text-decoration: none;
}
.cust-bvi-show_fixed::after {
	content: '';
	position: absolute;
	left: 58px;
	top: 0;
	width: 1px;
	height: 100%;
	background: var(--light);
}
.cust-bvi-show_fixed svg {
	width: 28px;
  height: 28px;
  margin: 0 30px 0 0;
}
.cust-bvi-show_fixed span {
	width: min-content;
  line-height: 110%;
  font-size: 16px;
}
.cust-bvi-show_header {
	margin: 30px 0 0 0;
  display: flex;
  align-content: center;
  text-decoration: none;
}
.cust-bvi-show_header:hover {
	text-decoration: none;
}
.cust-bvi-show_header svg {
	width: 22px;
  height: 22px;
  margin: 0 10px 0 0;
}
.cust-bvi-show_header span {
	line-height: 130%;
}



#main.bvi-active {
	width: 100vw;
  overflow-x: hidden;
}
html body .bvi-panel {
	position: fixed;
}
.bvi-body .header {
	top: 100px;
}
.bvi-body .header.header__hide {
	top: 20px;
}
.bvi-panel-hide ~ .bvi-body .header {
	top: 0px;
}
.bvi-panel-hide ~ .bvi-body .header.header__hide {
	top: -80px;
}
.bvi-body .main-wrapper {
	padding-top: 90px;
}
.bvi-panel-hide ~.bvi-body .main-wrapper {
	padding-top: 0px;
}
body.bvi-active .bvi-body .info-block-1__content {
	background-color: transparent !important;
}
body.bvi-active .bvi-body .slider__content {
	background-color: transparent !important;
}

@media screen and (max-width: 992px) {
	.cust-bvi-show_fixed {display: none;}
}
/*--- END BVI ---*/