/* Общие классы */
.slider {
	position: relative;
	margin: 0 70px;
}
.slider__nav {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% + 144px);
	display: flex;
	justify-content: space-between;
}
.slider-arrow {
	width: 40px;
	height: 40px;
	background-size: contain;
	cursor: pointer;
}
.slider-arrow--prev {
	background-image: url("/local/images/icons/icon-arrow-left-green.svg");
}
.slider-arrow--next {
	background-image: url("/local/images/icons/icon-arrow-right-green.svg");
}
.slick-dots {
	position: absolute;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}
.slick-dots button {
	font-size: 0;
	width: 20px;
	height: 20px;
	background-color: #D9D9D9;
	border-radius: 50%;
	cursor: pointer;
}
.slick-dots .slick-active button {
	background-color: var(--green);
}
.slick-dots li:not(:last-child) {
	margin-right: 12px;
}
.slider__count {
	display: none;
}

@media screen and (max-width: 800px) {
	.slider {
		margin: 0;
		padding-bottom: 40px;
	}
	.slider__nav {
		width: 100%;
		top: calc(100% + 10px);
		transform: translate(-50%, -100%);
		padding: 0 10px;
	}
	.slider__count {
		display: flex;
		align-items: center;
		color: var(--green);
		font-size: 20px;
		line-height: 24px;
		font-weight: 600;
	}
}
/* Общие классы конец */

/* Кнопки */
.btn {
	display: inline-block;
	color: var(--title-color);
	font-size: 18px;
	line-height: 21px;
	font-weight: 600;
	text-decoration: none;
	padding: 29px 105px;
	border-radius: 40px;
	border: 1px solid #F1F9FE;
	cursor: pointer;
}
.btn:hover {
	filter: drop-shadow(0px 8px 16px rgba(61, 107, 148, .16));
}
.btn-rect {
	border-radius: 8px;
}
.btn--white {
	background-color: white;
}
.btn--white:focus {
	background-color: #F1F9FE;
}
.btn--green {
	background: linear-gradient(180deg, #8EB743 0%, #81A63E 100%);
	color: white;
	padding: 22px 63px;
}
.btn--green:focus {
	background-color: #8EB743;
}

@media screen and (max-width: 1332px) {
	.btn {
		padding: 14px 66px;
	}
}

@media screen and (max-width: 1332px) {
	.btn {
		padding: 13px 37px;
	}
}
@media screen and (max-width: 500px) {
	.btn {
		font-size: 12px;
		padding: 6px 20px;
	}
}
/* Кнопки конец */

/* Список с точками */
.list-w-dots li,
.detail ul li,
.akcia ul li {
	position: relative;
	padding-left: 20px;
	font-size: 18px;
	line-height: 22px;
}
.list-w-dots li::before,
.detail ul li::before,
.akcia ul li::before {
	content: "";
	width: 10px;
	height: 10px;
	background-color: var(--green);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 6px;
}
/* Конец списка с точками */

/* Список с цифрами */
.list-w-nums li {
	display: flex;
	align-items: center;
	break-inside: avoid;
	margin-bottom: 25px;
}
.list-w-nums li div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background-image: url("/local/images/icons/mask_list_item_1.svg");
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 25px;
}
.list-w-nums li span {
	margin: auto;
	font-size: 40px;
	font-weight: 600;
	color: var(--green);
}
.list-w-nums h4 {
	width: 50%;
	flex-grow: 1;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	text-align: left;
	margin-bottom: 0;
}

@media screen and (max-width: 800px) {
	.list-w-nums li {
		flex-direction: column;
	}
	.list-w-nums li div {
		width: 40px;
		height: 40px;
		margin-right: 0;
		margin-bottom: 6px;
	}
	.list-w-nums li span {
		font-size: 18px;
	}
	.list-w-nums h4 {
		width: 100%;
	}
}
/* Конец списка с цифрами */

/* Шапка */
.header__top {
	display: flex;
	align-items: center;
	padding-top: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid #D2E8F5;
}
.header__office {
	margin-right: 35px;
}
.header__office-btn {
	font-weight: 300;
	font-size: 16px;
	line-height: 19px;
	text-decoration: underline;
	position: relative;
	padding-left: 20px;
	cursor: pointer;
}
.header__office-btn::before {
	content: "";
	width: 12px;
	height: 16px;
	background-image: url("/local/images/icons/icon-location-blue.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}
.header__phone {
	font-weight: 600;
	color: var(--blue);
	margin-right: 5px;
}
.header__text {
	font-size: 18px;
	line-height: 22px;
	margin-right: 15px;
	margin-left: auto;
}
.btn-h {
	display: flex;
	align-items: center;
	font-size: 18px;
	line-height: 22px;
	color: white;
	background-color: black;
	border-radius: 24px;
	padding: 8px 8px 8px 18px;
}
.btn-h:not(:last-child) {
	margin-right: 15px;
}
.btn-h--blue {
	background-color: var(--blue);
}
.btn-h--green {
	background-color: var(--green);
}
.btn-h__icon {
	margin-right: 11px;
}
.header__bottom {
	display: flex;
	align-items: center;
	padding-top: 5px;
	padding-bottom: 13px;
}
.header__bottom__logo {
	margin-right: 40px;
}
.header-menu {
	flex-wrap: wrap;
	margin-left: auto;
}
.header-mobile {
	display: none;
}
.attention {
	background-color: rgba(255, 0, 0, .1);
	border: 1px solid red;
	padding: 20px 0;
	text-align: center;
}
.header-menu__item {
	margin-bottom: 12px;
}

@media screen and (max-width: 1332px) {
	.header__office,
	.header__text,
	.btn-h:not(:last-child) {
		margin-right: 10px;
	}
	.header__phone {
		font-size: 12px;
	}
}

@media screen and (max-width: 1200px) {
	.header__office-btn,
	.header__text,
	.btn-h,
	.header-menu__link {
		font-size: 12px;
		line-height: 15px;
	}
	.header__bottom__logo {
		margin-right: 20px;
	}
}

@media screen and (max-width: 1000px) {
	.header__office,
	.header__text,
	.btn-h:not(:last-child) {
		margin-right: 5px;
	}
	.header__office-btn,
	.header__text,
	.btn-h,
	.header-menu__link {
		font-size: 10px;
		line-height: 13px;
	}
	.header__bottom__logo {
		max-width: 150px;
	}
}

@media screen and (max-width: 800px) {
	.header {
		display: none;
	}
	.header-mobile {
		display: block;
		position: relative;
	}
	.header-mobile__wrap {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 11px 0;
	}
	.header-mobile__logo {
		max-width: 132px;
	}
	.burger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		cursor: pointer;
	}
	.burger__line {
		width: 16px;
		height: 2px;
		background-color: var(--green);
	}
	.burger__line:not(:last-child) {
		margin-bottom: 3px;
	}
	.header__phone {
		margin-right: 15px;
	}
	.header__office-btn,
	.header__text,
	.header-menu__link {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.btn-h {
		font-size: 15px;
		margin-bottom: 10px;
	}
	.btn-h__icon {
		width: 17px;
		height: 17px;
		margin-right: 5px;
	}
	.header__office,
	.header__text,
	.btn-h:not(:last-child) {
		margin-right: 0;
	}
	.header-mobile__menu .header-menu {
		flex-direction: column;
	}
	.header-mobile__menu .header-menu__item {
		margin-left: 0;
		margin-right: auto;
		margin-bottom: 12px;
	}
	.header-mobile__menu-wrap {
		background-color: white;
		padding: 20px 0;
	}
	.header-mobile__menu {
		display: none;
		background-color: transparent;
		z-index: 20;
		position: absolute;
		top: -1000px;
		left: 0;
		width: 100%;
		height: 100vh;
		transition: top .3s, background-color 1s;
	}
	.header-mobile__menu.act {
		top: 0;
		background-color: rgba(0, 0, 0, .7);
		display: block;
	}
}

/* Конец шапки */

/* Подвал */
.footer__top {
	background-color: var(--blue);
	padding: 14px 0;
}
.footer__bottom {
	background: linear-gradient(180deg, rgba(242, 247, 250, 0) 0%, #D2E8F5 100%);
	padding-top: 35px;
	padding-bottom: 23px;
}
.footer__wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer__bottom .footer__wrap {
	align-items: flex-start;
}
.footer__phone {
	position: relative;
	padding-left: 65px;
	padding-right: 45px;
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	color: white;
}
.footer__phone::before {
	content: "";
	width: 40px;
	height: 40px;
	background-image: url("/local/images/icons/icon-phone.svg");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -7px;
	left: 0;
}
.footer__bottom-left {
	column-count: 2;
	column-gap: 55px;
}
.footer__footnote {
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--title-color);
	padding: 10px 0;
}
.footer__office {
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	color: var(--title-color);
	font-weight: 600;
}
.footer__office-metro {
	display: flex;
	align-items: center;
	margin-bottom: 32px;
}
.footer__office-address {
	margin-bottom: 32px;
	text-decoration: underline;
}
.footer__office-metro-icon {
	margin-right: 25px;
}
.footer__copyright {
	text-decoration: underline;
	color: var(--title-color);
	font-size: 18px;
	line-height: 22px;
}
.footer__bottom-phone {
	display: none;
}
.footer__bottom-left .footer__copyright {
	display: none;
}
.footer__map {
	position: relative;
	height: 573px;
}
.footer__map iframe {
	height: 100%;
}
.map__substrate {
	position: absolute;
	background-color: #F2F7FA;
	box-shadow: 0 8px 16px rgba(61, 107, 148, .16);
	border-radius: 24px;
	padding: 74px 51px 53px 60px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
.map__substrate p:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 800px) {
	.footer__phone {
		display: none;
	}
	.footer__logo {
		margin-left: auto;
		margin-right: auto;
	}
	.footer__bottom-phone {
		display: block;
		font-size: 18px;
		line-height: 22px;
		font-weight: 400;
		color: var(--blue);
		margin-bottom: 33px;
		position: relative;
		padding-left: 45px;
	}
	.footer__bottom-phone::before {
		content: "";
		width: 20px;
		height: 20px;
		background-image: url("/local/images/icons/icon-phone-blue.svg");
		background-size: contain;
		background-repeat: no-repeat;
		position: absolute;
		left: 0;
		top: 0;
	}
	.footer__bottom-left {
		order: 1;
		column-count: 1;
	}
	.footer__copyright {
		display: none;
	}
	.footer__footnote {
		display: none;
	}
	.footer__bottom-left .footer__copyright {
		display: block;
	}
	.footer__map {
		margin-bottom: 250px;
	}
	.map__substrate {
		width: 100%;
		max-width: 280px;
		top: 100%;
		left: 50%;
		transform: translate(-50%, -50%);
		padding: 42px 7px 63px 20px;
	}
}
/* Конец подвала */
.popup_gallery a {
	cursor: zoom-in;
}
.popup_gallery img {
	width:32%;
	margin-top:1%;
	margin-right:1%;
	height:auto;
	display: inline-block;
	vertical-align: middle;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.popup_gallery img:nth-child(last) {
	margin-right: 0;
}

.zag_big {
	background: var(--blue);
	color: #fff;
	text-align: center;
	padding: 8px 15px;
	font-size: 20px;
	margin-bottom: 10px;
}

/*callibri window*/
#callibri-catcher-main-wrapper .callibri-catcher-send-btn {
	background-color: var(--blue) !important;
}
#callibri-catcher-headers-block {
	box-shadow: inset 0 0 0 2px var(--blue) !important;
}
#callibri-catcher-main-wrapper .callibri-catcher-input {
	border: 2px solid var(--blue) !important;
}

/* /profosmotri-302/ */
.advantages {
	width: 100%;
	display:flex;
	justify-content: space-between;
}
.advantages ul {
	width:46%;
}
.advantages li {
	margin-bottom:20px;
	position: relative;
	padding-left:50px;
	min-height:60px;
}
.advantages ul li:before {
	content: " ";
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
	width: 38px;
	height:33px;
}
.advantages ul:nth-child(1) li:nth-child(1):before {
	background-image: url("/profosmotri-302/images/1.png");
	top: -5px;
}
.advantages ul:nth-child(1) li:nth-child(2):before {
	background-image: url("/profosmotri-302/images/2.png");
}
.advantages ul:nth-child(1) li:nth-child(3):before {
	background-image: url("/profosmotri-302/images/3.png");
}
.advantages ul:nth-child(1) li:nth-child(4):before {
	background-image: url("/profosmotri-302/images/4.png");
}
.advantages ul:nth-child(1) li:nth-child(5):before {
	background-image: url("/profosmotri-302/images/5.png");
}
.advantages ul:nth-child(1) li:nth-child(6):before {
	background-image: url("/profosmotri-302/images/6.png");
}
.advantages ul:nth-child(2) li:nth-child(1):before {
	background-image: url("/profosmotri-302/images/7.png");
	top: -5px;
}
.advantages ul:nth-child(2) li:nth-child(2):before {
	background-image: url("/profosmotri-302/images/8.png");
}
.advantages ul:nth-child(2) li:nth-child(3):before {
	background-image: url("/profosmotri-302/images/9.png");
}
.advantages ul:nth-child(2) li:nth-child(4):before {
	background-image: url("/profosmotri-302/images/10.png");
}
.advantages ul:nth-child(2) li:nth-child(5):before {
	background-image: url("/profosmotri-302/images/11.png");
}
.advantages ul:nth-child(2) li:nth-child(6):before {
	background-image: url("/profosmotri-302/images/12.png");
}
@media (max-width: 800px) {
	.advantages {
		flex-direction: column;
	}
	.advantages ul {
		width:100%;
	}
}