@charset "UTF-8";
/* Reset */
*{box-sizing:border-box;margin:0;padding:0;}
html,body{width:100%;margin:0;padding:0;overflow-x: hidden;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
body{font-family: "Roboto", sans-serif;font-weight:400;background:#fff;color:#272727;font-size:16px;line-height:140%;width:100%;}
ol,ul{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
table{border-collapse:collapse;border-spacing:0;width: 100%;border-collapse: separate;border-spacing: 6px;}
.anchor_list::-webkit-scrollbar-button{background-image:url();background-repeat:no-repeat;width:9px;height:0;}
::selection,::-moz-selection,::-webkit-selection{background:#000;color:#fff;}
input {outline:none;border:none;}
img {display:block;}
::-webkit-input-placeholder {color:#c0392b;}
::-moz-placeholder          {color:#c0392b;}
:-moz-placeholder           {color:#c0392b;}
:-ms-input-placeholder      {color:#c0392b;}
hr {width: 100%;height: 1px;background: #e0dede;border: none;outline:none;margin: 32px 0;}
a {text-decoration: none;}
/* General */
.container {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 20px;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.btn_yellow {
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    display: flex;
	align-items: center;
	justify-content: center;
    width: fit-content;	
	color: #272727;
	background: #ffe100;
	height: 60px;
	padding: 0 60px;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.15s ease-in;
}
.btn_grey {
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    display: flex;
	align-items: center;
	justify-content: center;
    width: fit-content;	
	color: #272727;
	background: #f5f5f5;
	height: 60px;
	padding: 0 60px;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.15s ease-in;
}
.btn_red {
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    display: flex;
	align-items: center;
	justify-content: center;
    width: fit-content;	
	color: #fff;
	background: #862000;
	height: 60px;
	padding: 0 60px;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.15s ease-in;
}
.btn_red:hover, 
.btn_grey:hover,
.btn_yellow:hover {
	transform: scale(1.05);
}
.breadcrumb {
	color: #707070;
	padding: 16px 0;
	font-weight: 300;
	font-size: 15px;
	display: flex;
	flex-wrap: wrap;
    gap: 7px;
}
.breadcrumb a {	
	color: #91001c;
	text-decoration: none;
}
h1 {
    font-weight: 600;
    font-size: 42px;
	line-height: 120%;
	text-align: center;
	padding: 32px 16px 16px 16px;
}
h2 {
	font-weight: 600;
	font-size: 42px;
	line-height: 120%;
	text-align: center;
	padding: 48px 16px 16px 16px;
}
/* Popup */
.popup {
	width: 100%;
	height: 100%;
	z-index: 999999;
	position: fixed;
	backdrop-filter: blur(5px);
	display: none;
}
.popup.active {
	display: block;
}
.popup__container {
	width: 500px;
	height: auto;
	padding: 48px;
	border-radius: 5px;
	background: #fff;
	z-index: 99;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.popup__close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}
.popup__title {
	font-weight: 600;
    font-size: 42px;
	line-height: 100%;
    text-align: center;
    margin-bottom: 8px;
}
.popup__subtitle {
	text-align: center;
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 32px;
}
.popup__subtitle span {
	color: green;
}
.popup input {
	height: 50px !important;
	width: 100% !important;	
	padding: 0 0 0 15px !important;
	margin: 0 0 16px 0 !important;
}
.popup .wpforms-container .wpforms-field {
    padding: 0 !important;
}
.popup button {
	background: #91001d !important;	
    color: #fff !important;	
    border-radius: 5px !important;
    font-weight: 600;
    text-align: center;
	height: 58px !important;
    cursor: pointer;
    display: inline-block;
    width: 100% !important;
    margin-top: 18px !important;
    font-size: 16px !important;
}
.popup .wpforms-field-checkbox input[type="checkbox"] {
    flex: 0 16px;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
}
.popup .wpforms-field-checkbox li,
.popup .wpforms-field-checkbox li a {
	font-size: 14px !important;
	color: #000;
}
.popup div.wpforms-container-full {
    margin: 0 !important;
}
.wpforms-form .wpforms-required-label {
	display: none !important;
}
/* Header */
header {
	box-shadow: 1px -6px 11px black;
	position: absolute;
	width: 100%;
	left: 0;
	top: 10px;
	z-index: 10;
}
.header_fixed {
    background: #fff;
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: -54px;
    height: 54px;
    left: 0;
	transition: all 0.15s ease-in;
}
.header_fixed.active {
	top: 0;
}
.header__logo_white {
	display: none;
}
.header_fixed__inner {
	height: 54px;
	align-items: center;
	justify-content: space-between;
}
.home nav li a,
.home .header__address,
.home .header__phone, .home .header__email,
.home .header__call {
	color: #fff !important;
}
.home header {
	box-shadow: none !important;
}
.home .header__frame {
    background: rgb(255 255 255 / 5%) !important;
}
.header_fixed ul {
	display: flex;
	gap: 24px;
}
.header_fixed li {
	position: relative;
}
.header_fixed li:last-of-type:after {
	display: none;
}
.header_fixed li:after {
	content: "";
	display: block;
	background: #707070;
	width: 2px;
	height: 18px;
	position: absolute;
	top: 2px;
	right: -12px;
}
.header_fixed .btn_yellow {
	width: 142px;
	height: 38px;
	font-size: 14px;
	padding: 0;
}
.header_fixed li a {
	font-size: 14px;
	font-weight: 600;
	display: block;
	color: #272727;
}
.archive header, .page header, .single header {
    top: 10px;
}
.header__logo {
	height: 40px;
	width: auto;
}
.header__inner {
	align-items: center;
}
.header__inner > div:nth-child(1) {
	flex: 0 216px;
}
.header__inner > div:nth-child(2) {
    flex: 0 calc(100% - 361px);
    align-items: center;
}
.header__inner > div:nth-child(3) {
	flex: 0 145px;
}
.header__row {
	gap: 16px;
}
.header__frame {
	background: #f6f6f6;
	padding: 8px 16px 0px 16px;
    border-radius: 4px;
    height: fit-content;
}
.header__frame p {
	padding: 0 !important;
	line-height: 100% !important;
}
.header__subtitle {
	color: #aaa9a9;
    font-size: 12px;
}
.header__phone,
.header__email {
	color: #000;
	text-decoration: none;
	font-weight: 300;
    position: relative;
    top: -4px;
	font-size: 14px;
	display: block;
}
.header__phone:before {
	content: "";
	display: inline-block;
	background: url(images/phone.svg) no-repeat;
	height: 15px;
	width: 15px;
	background-size: cover !important;
	margin: 0 8px 0 0;
	top: 3px;
    position: relative;
}
.header__email:before {
	content: "";
	display: inline-block;
	background: url(images/email.svg) no-repeat;
	height: 18px;
	width: 18px;
	background-size: cover !important;
	margin: 0 8px 0 0;
	top: 3px;
    position: relative;
}
.header__call {
	text-decoration: underline;
    font-weight: 600;
    margin-bottom: 8px;
    cursor: pointer;
    color: #000;
	text-align: right;
}
.header__bottom {
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 15px 0;
}
.header__address {
	font-weight: 300;
	font-size: 11px;
	line-height: 15px;
	color: #272727;
	text-align: right;
}
.home .header__address,
.archive .header__address {
	color: #272727;
}
.header__yandex {
	display: block;
    background: #f6f6f6;
    border-radius: 4px;
    padding: 8px;
	height: 55px;
	width: 157px;
}
.header__yandex a {
	text-decoration: none;
}
.custom-h9gk16,
.custom-111wcb7 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.custom-s5xdrg {
	display: flex;
	align-items: center;
}
.custom-111wcb7 {
	gap: 4px;
}
.custom-6xxxzn {
	font-weight: 300;
    color: #4d4d4d;
    font-size: 8px;
    margin-left: 0;
}
.custom-1ezs1cz {
	font-weight: 500;
    color: #000;
    font-size: 16px;
}
.page-template-page-individual .header__frame,
.tax-category-catalog .header__frame {
	background: #f6f6f6;
}
.page-template-page-individual .header__phone, .page-template-page-individual .header__email,
.tax-category-catalog .header__phone, .tax-category-catalog .header__email {
	color: #000;
}
.page-template-page-individual .header__call,
.tax-category-catalog .header__call {
	color: #000;
}
.page-template-page-individual .header__logo_white,
.tax-category-catalog .header__logo_white {
	display: none !important;
}
.tax-category-catalog nav li a {
    color: #272727 !important;
}
.tax-category-catalog header {
	box-shadow: 1px -6px 11px black;
}
.page-template-page-individual .header__social,
.tax-category-catalog .header__social {
    margin: 8px 0 0 0;
}
.tax-category-catalog .header__address {
	color: #272727;
}
.term-bani-iz-brusa nav li a,
.term-bani-iz-brusa .header__address,
.term-bani-iz-brusa .header__phone, 
.term-bani-iz-brusa .header__email,
.term-bani-iz-brusa .header__call,
.term-doma-iz-brusa nav li a,
.term-doma-iz-brusa .header__address,
.term-doma-iz-brusa .header__phone,
.term-doma-iz-brusa .header__email,
.term-doma-iz-brusa .header__call,
.term-karkasnie-bani nav li a,
.term-karkasnie-bani .header__address,
.term-karkasnie-bani .header__phone,
.term-karkasnie-bani .header__email,
.term-karkasnie-bani .header__call,
.term-karkasnie-doma nav li a,
.term-karkasnie-doma .header__address,
.term-karkasnie-doma .header__phone,
.term-karkasnie-doma .header__email,
.term-karkasnie-doma .header__call,
.term-gotovie-bani nav li a,
.term-gotovie-bani .header__address,
.term-gotovie-bani .header__phone,
.term-gotovie-bani .header__email,
.term-gotovie-bani .header__call {
	color: #fff !important;
}
.term-bani-iz-brusa header,
.term-doma-iz-brusa header,
.term-karkasnie-bani header,
.term-karkasnie-doma header,
.term-gotovie-bani header {
	box-shadow: none !important;
}
.term-bani-iz-brusa .header__logo_white,
.term-doma-iz-brusa .header__logo_white,
.term-karkasnie-bani .header__logo_white,
.term-karkasnie-doma .header__logo_white,
.term-gotovie-bani .header__logo_white {
	display: block !important;
}
.term-bani-iz-brusa .header__frame,
.term-doma-iz-brusa .header__frame,
.term-karkasnie-bani .header__frame,
.term-karkasnie-doma .header__frame,
.term-gotovie-bani .header__frame {
    background: rgb(255 255 255 / 5%) !important;
}
.term-bani-iz-brusa .header__logo_color,
.term-doma-iz-brusa .header__logo_color,
.term-karkasnie-bani .header__logo_color,
.term-karkasnie-doma .header__logo_color,
.term-gotovie-bani .header__logo_color {
	display: none !important;
}
.archive .block_why .btn_red {
	display: none;
}
.home .header__logo_white, 
.home .header__logo_color {
	display: none;
}
nav ul {
	display: flex;
	gap: 32px;
}
nav li a {
	text-decoration: none;
	color: #272727;
	display: block;	
	font-size: 15px;
	font-weight: 600;
}
.archive nav li a  {
	color: #272727;
}
.btn__menu {
	width: 28px;
	height: 23px;
	display: none;
}
.btn__menu span {
	display: block;
	position: relative;
	background: #000;
	height: 2px;
	width: 28px;
	transition: 0.2s;
}
.btn__menu span:nth-child(2) {
	top: 7px;
}
.btn__menu span:nth-child(3) {
	top: 14px;
}
.btn__menu.active span:nth-child(2) {
	display: none;
}
.btn__menu.active span:nth-child(1) {
	transform: rotate(45deg);
	transition: 0.2s;
	top: 8px;
}
.btn__menu.active span:nth-child(3) {
	transform: rotate(-45deg);
	transition: 0.2s;
	top: 6px;
}
/* Menu Mobile */
.menu__mobile {
    width: 100%;
    position: absolute;
    z-index: 9999;
    padding: 30px 40px 40px 40px;
    transition: 0.3s;
    display: none;
    background: #ffff;
    top: 70px;
    height: calc(100vh - 70px);
}
.menu__mobile .menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
}
.menu__mobile.active {
	display: block;
	transition: 0.3s;
}
.menu__mobile a {
	text-decoration: none;
	color: #000 !important;
	display: block;
	padding: 0 0 20px 0;
}
.home .menu__mobile a,
.tax-category-catalog .menu__mobile a {
	color: #000 !important;
}
.menu__mobile .header__frame {
    background: #f6f6f6 !important;
}
.home .btn__menu span,
.term-bani-iz-brusa .btn__menu span,
.term-doma-iz-brusa .btn__menu span,
.term-karkasnie-bani .btn__menu span,
.term-karkasnie-doma .btn__menu span,
.term-gotovie-bani .btn__menu span {
    background: #fff;
}
/* Home */
.block_start {
	height: 850px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}
.block_start:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
}
.archive .block_start {
    margin: 0 0 -120px 0;
}
.block_start .container {
	position: relative;
	z-index: 2;
}
.block_start h1 {
    color: #fff;
    font-size: 52px;
    line-height: 130%;
    padding: 150px 0 0 0;
    max-width: 730px;
    font-weight: 500;
	text-align: left;
}
.block_start__subtitle {
	font-size: 38px;
	line-height: 100%;
    font-weight: 300;
    color: #fff;
    padding: 20px 0 32px 0;
}
.block_start__benefits {
    padding: 16px 0 0 0;
    max-width: 1000px;
}
.block_start__benefits > div {
	flex: 0 25%;
}
.block_start__benefits_title {
	font-size: 40px;
    font-weight: 600;
    color: yellow;	
	line-height: 100%;
}
.block_start__benefits_text {
    font-size: 20px;
    color: white;
	line-height: 130%;
    font-weight: 300;
    margin: 10px 0 0 0;
}
.block_start__action {
    text-align: left;
    background-color: rgb(77 77 77 / 50%);
    border-radius: 5px;
    color: white;
    font-size: 24px;
    padding: 16px;
    max-width: 1200px;
    font-weight: 200;
    line-height: 1.4;	
	width: fit-content;
	margin: 32px 0 0 0;
}
.block_start__title {
	font-weight: 700;
}
.block_start__text {
    font-size: 24px;
    margin: 5px 0;
}
.block_start__data {
	font-size: 16px;
	margin: 8px 0 0 0;
}
.block_start__btns {
	gap: 16px;
	margin: 40px 0 0 0;
}
.header__social {
	gap: 4px;
}
.header__social img {
	height: 25px;
	width: auto;
}
/* Catalog */
.single_catalog {
    padding: 140px 0 0 0;
}
.single_catalog__inner {
	display: grid;
	grid-template-columns: calc(100% - 412px) 412px;
}
.single_photos__info_full h2 {
	text-align: center !important;
}
.single_catalog__inner > div:nth-child(2) {
	padding: 0 0 0 32px;
}
.single-photos h2 {
	text-align: left;
	font-size: 26px;
	padding: 48px 0 16px 0;
}
.swiper-catalog {
	border-radius: 6px;
}
.swiper-catalog,
.swiper-catalog-thumbs {
	position: relative;
	overflow: hidden;
}
.swiper-catalog .swiper-slide {
	height: 566px;
	overflow: hidden;
}
.swiper-catalog .swiper-slide img,
.swiper-catalog-thumbs .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-catalog-thumbs .swiper-slide {
	height: 56px;
	max-width: 56px;
	border-radius: 6px;
    cursor: pointer;
	overflow: hidden;
}
.swiper-catalog-thumbs .swiper-slide.swiper-slide-active {
    outline: 2px solid #000;
	outline-offset: -2px;	
}
.swiper-button-prev-catalog {
	width: 50px !important;
	height: 100% !important;
    position: absolute !important;
    top: 0 !important;
	left: 0 !important;
    background: rgba(197, 197, 197, 0.5);
	color: #000 !important;
}
.swiper-button-next-catalog {
	width: 50px !important;
	height: 100% !important;
    position: absolute !important;
    top: 0 !important;
	right: 0 !important;
    background: rgba(197, 197, 197, 0.5);
	color: #000 !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 31px !important;
}
.swiper-catalog-thumbs {
	margin: 6px 0 0 0;
}
.single_catalog__inner h1 {
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 8px;
    max-width: 500px;
    font-weight: 600;
    text-align: left;
    padding: 0;
}
.single_catalog__info {
    margin: 20px 0;
    gap: 16px 0;
}
.single_catalog__info_item {
	gap: 12px;
	align-items: center;
}
.single_catalog__info_item img {
	height: 32px;
	width: auto;
}
.single_catalog__info > div {
	flex: 0 50%;
}
.single_catalog__info_subtitle {
	font-size: 10px;
	line-height: 120%;
}
.single_catalog__info_text {
	font-weight: 300;
	line-height: 120%;
}
.single_catalog__info_text span {
	font-size: 10px;
	position: relative;
	top: -5px;
}
.single_catalog__price_subtitle {
	color: rgb(0, 0, 0);
    font-size: 14px;
    line-height: 1.4;
}
.single_catalog__price_text {
	color: rgb(0, 0, 0);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
}
.single_catalog__price {
    margin: 0 0 15px 0;
}
.single_catalog .btn_red {
	width: 100%;
	margin: 32px 0 0 0;
}
.slider-catalog .slick-slide {
	height: 566px;
	overflow: hidden;
	border-radius: 6px;
}
.slider-catalog .slick-slide div {
	height: 100%;
}
.slider-catalog-thumbs .slick-track {
	display: flex;
	gap: 6px;
}
.slider-catalog-thumbs .slick-track .slick-slide {
	height: 56px;
	width: 56px;
	overflow: hidden;
	border-radius: 6px;
}
.slider-catalog-thumbs .slick-track .slick-slide div {
	height: 56px;
}
.slider-catalog-thumbs .slick-current {
	outline: 2px solid #000;
    outline-offset: -2px;
}
.slick-slide img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.slick-prev {
	background: rgba(197, 197, 197, 0.5) url(images/prev.svg) no-repeat center;
	width: 50px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	outline: none;
	border: none;
	z-index: 6;
	text-indent: -9999px;
	cursor: pointer;
}
.slick-next {
	background: rgba(197, 197, 197, 0.5) url(images/next.svg) no-repeat center;
	width: 50px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	outline: none;
	border: none;
	z-index: 6;
	text-indent: -9999px;
	cursor: pointer;
}
.slider-catalog {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
}
.slider-catalog-thumbs {
	margin: 6px 0 0 0;
}
.single_catalog__work {
	margin: 32px 0 0 0;
}
.single_catalog__work > div {
    display: flex;
    flex-grow: 1;
	margin-right: 16px;
    flex-direction: column;
    justify-content: center;
    background: #ededed;
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 8px 14px;	
	height: 56px;
}
.single_catalog__work > div:nth-child(2),
.single_catalog__work > div:nth-child(4) {
	margin-right: 0;
}
.single_catalog__work_title {
	font-size: 12px;
}
.single_catalog__work_text {
	font-size: 15px;
    font-weight: 600;
}
.single_catalog__work_category {
	margin: 32px 0 0 0;
}
.single_catalog__work_category_list {
	gap: 8px;
}
.single_catalog__work_category_list a {
	text-decoration: none;
	padding: 8px;
    margin: 4px 8px 4px 0;
    border-radius: 4px;
    font-weight: 200;
    cursor: pointer;
    color: #272727;
    background: #f5f5f5;
	transition: all 0.15s ease-in;
}	
.single_catalog__work_category_list a:hover {
	background: #98c4e8;
}
.single_catalog__work_category_title {
	font-size: 14px;
    font-weight: 300;
}
.single_catalog__banner {
	width: 100%;
	height: auto;
	margin: 32px 0 0 0;
}
.single_catalog__video_list {
	gap: 12px;
}
.single_catalog__video_list > div {
	flex: 0 calc(50% - 8px);
}
.single_catalog__video_preview {
	height: 400px;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}
.single_catalog__video_preview:after {
	content: "";
	display: block;
	background: rgba(0,0,0,0.7);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.btn_video_play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
	width: 60px;
	height: 60px;
	padding: 16px;
	background: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.15s ease-in;
}
.btn_video_play:hover {
	transform: translate(-50%,-50%) scale(1.15);
	background: rgba(0,0,0,0.8);
}
.single_catalog__title {
    font-size: 52px;
	line-height: 110%;
    color: #fff;
    text-align: center;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 120px;
    width: 100%;
	z-index: 2;
}
.single_catalog__preview {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single_catalog__video_list {
	margin: 32px 0 0 0;
}
.single_catalog__video_popup {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.4);
	display: none;
}
.single_catalog__video_popup.active {
	display: block;
}
.single_catalog__video {
	width: 854px;
	height: 458px;	
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.single_catalog__video iframe {
	width: 100% !important;
	height: 100% !important;
}
.single_catalog__btns {
	margin: 32px 0;
	gap: 24px;
	justify-content: center;
}
.single_catalog__credit_btns {
	gap: 32px;
	margin: 48px 0;
}
.single_catalog__credit_btns > div {
	flex: 0 calc(50% - 26px);
	height: 152px;
	overflow: hidden;
	border-radius: 6px;
	position: relative;
}
.single_catalog__credit_btns > div a:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}
.single_catalog__credit_btns > div a {
	text-decoration: none;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}
.single_catalog__credit_btns > div img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.single_catalog__credit_btns_title {
	text-align: center;
	font-weight: 600;
	font-size: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	z-index: 2;
}
.block_etaps {
	background: #f5f5f5;
	padding: 48px 0;
}
.block_etaps h2 {
	text-align: center;
	font-size: 42px;
	font-weight: 600;
	padding: 0 0 16px 0;
}
.block_etaps__list > div {
	flex: 0 33.33%;
	padding: 16px;
}
.block_etaps__list_icon {
	height: 100px;
	width: 100px;
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}
.block_etaps__list_icon img {
	max-height: 100px;
	max-width: 100px;
	min-width: 90px;
	height: auto;
}
.block_etaps__list_header {
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.block_etaps__list_num {
	font-weight: 600;
    font-size: 48px;
}
.block_etaps__list_title {
	text-align: center;
    padding-top: 16px;
	font-size: 26px;
	font-weight: 600;
}
.block_etaps__list_text {
	text-align: center;
	font-size: 19px;
	line-height: 24px;
	padding: 16px 0 0 0;
	font-weight: 300;
}
.block_etaps__btn {
    width: 258px !important;
    margin: 32px auto 0 auto !important;
}
.block_popuplar {
	padding: 48px 0 0 0;
}
.block_popuplar__title {
	font-weight: 600;
	font-size: 26px;
}
.block_popuplar__list > div {
	margin: 48px 0 0 0;
}
.block_popuplar__title {
	padding: 0 0 16px 0;
}
.swiper_popular {
	position: relative;
	overflow: hidden;
	padding: 0 0 50px 0;
}
.swiper_popular__thumb {
	height: 160px;
	overflow: hidden;
}
.swiper_popular__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper_popular .swiper-slide {
	background: #f5f5f5;
	border-radius: 6px;
    overflow: hidden;	
	position: relative;
}
.swiper_popular .swiper-slide:last-of-type {
	height: auto !important;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.swiper_popular .swiper-slide:last-of-type a {
	color: #272727;
}
.swiper_popular .swiper-slide:last-of-type:hover a {
	text-decoration: underline;
}
.swiper_popular__hit {
	position: absolute;
    top: 0;
    right: 0;
    padding: 4px;
    font-size: 12px;
    margin: 8px;
    border-radius: 4px;
    color: #000;
    background: #ffe100;
    z-index: 1;
}
.swiper_popular .swiper-slide a {
	text-decoration: none;
}
.swiper-container-horizontal>.swiper-scrollbar {
    height: 10px !important;
}
.swiper_popular__link {
	position: relative;
}
.block_popuplar__header_link {
	font-weight: 600;
    font-size: 18px;
    color: #272727;
	text-decoration: none;
}
.swiper_popular__link:after {
	content: "";
	display: inline-block;
	background: url(images/next.svg) no-repeat;
	height: 17px;
    width: 10px;
    margin: 0 0 0 5px;
    position: relative;
    top: 3px;
    background-size: cover !important;
}
.block_popuplar__header_link:after {
	content: "";
	display: inline-block;
	background: url(images/next.svg) no-repeat;
	height: 17px;
    width: 10px;
    margin: 0 0 0 5px;
    position: relative;
    top: 3px;
    background-size: cover !important;
}
.block_popuplar__header {
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px 0;
}
.swiper_popular__main_title {
	text-align: center;
	color: #272727;
}
.swiper_popular__title {
	text-align: center;
	color: #862000;
	margin: 5px 0 0 0;
}
.swiper_popular__info {
	padding: 16px;
}
.swiper_popular__price {
    font-weight: 700;
    text-align: center;
    font-size: 16px;
    color: #862000;
    margin: 20px 0 0 0;
}
.single_catalog__nav {
	justify-content: space-between;
	align-items: center;
	padding: 0 0 12px 0;
}
.single_catalog__nav a {
	text-decoration: none;
	font-size: 14px;
	color: #000;
	display: flex;
	align-items: center;
	gap: 3px;
}
.block_ready__list {
	gap: 32px;
	padding: 50px 0 32px 0;
}
.block_ready__list > div {
	flex: 0 calc(33.33% - 24px);
    border-radius: 6px;
    overflow: hidden;
	background: #f5f5f5;
}
.block_ready__list > div a {
	text-decoration: none;
}
.block_ready__subtitle {
	text-align: center;
	font-size: 19px;
	line-height: 24px;
	max-width: 738px;
	margin: 0 auto;
	font-weight: 300;
}
.block_ready__thumb {
	height: 220px;
	overflow: hidden;
}
.block_ready__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.15s ease-in;
}
.block_ready__thumb:hover img {
	transform: scale(1.1);
}
.block_ready__main_title {
	font-size: 19px;
	line-height: 24px;
	padding: 16px 16px 0 16px;
	color: #272727;
	font-weight: 300;
}
.block_ready__main_title span {
	color: #862000;
}
.block_ready__main_text {
	color: #272727;
	font-size: 15px;
	line-height: 20px;
	font-weight: 300;
}
.block_ready__info {
	padding: 16px 16px 32px 16px;
}
.block_ready .btn_red {
	margin: 32px auto 48px auto;
}
.block_why {
	background: #f5f5f5;
	margin: 48px 0 0 0;
	padding: 0 0 48px 0;
}
.block_why__list {
	gap: 32px;
	margin: 32px 0 0 0;
}
.block_why__list > div {
	flex: 0 calc(33.33% - 24px);
	background: #fff;
	border-radius: 6px;
	padding: 32px 24px;
}
.block_why__list_icon {
	width: 52px;
}
.block_why__list_icon img {
	width: 100%;
	height: auto;
}
.block_why__list_inner > div:nth-child(1) {
	flex: 0 52px;
}
.block_why__list_inner > div:nth-child(2) {
	flex: 0 calc(100% - 52px);
	padding: 0 0 0 20px;
}
.block_why__list_title {
    font-weight: 600;
    font-size: 18px;	
}
.block_why__list_text {
    padding-top: 12px;
    font-size: 17px;	
	line-height: 24px;
	font-weight: 300;
}
.block_why .btn_red {
	margin: 50px auto 0 auto;
}
.swiper_videoreview_1,
.swiper_videoreview_2,
.swiper_videoreview_3,
.swiper_videoreview_4,
.swiper_visibility_1,
.swiper_visibility_2,
.swiper_visibility_3,
.swiper_visibility_4 {
    position: relative;
    overflow: hidden;
    padding: 0 0 32px 0;
}
.swiper_videoreview_1 .swiper-slide,
.swiper_videoreview_2 .swiper-slide,
.swiper_videoreview_3 .swiper-slide,
.swiper_videoreview_4 .swiper-slide,
.swiper_visibility_1 .swiper-slide,
.swiper_visibility_2 .swiper-slide,
.swiper_visibility_3 .swiper-slide,
.swiper_visibility_4 .swiper-slide {
	height: 400px;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}
.swiper_videoreview_1 .swiper-slide:after,
.swiper_videoreview_2 .swiper-slide:after,
.swiper_videoreview_3 .swiper-slide:after,
.swiper_videoreview_4 .swiper-slide:after,
.swiper_visibility_1 .swiper-slide:after,
.swiper_visibility_2 .swiper-slide:after,
.swiper_visibility_3 .swiper-slide:after,
.swiper_visibility_4 .swiper-slide:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 2;
}
.swiper_videoreview_1 .swiper-slide > iframe,
.swiper_videoreview_2 .swiper-slide > iframe,
.swiper_videoreview_3 .swiper-slide > iframe,
.swiper_videoreview_4 .swiper-slide > iframe,
.swiper_visibility_1 .swiper-slide > iframe,
.swiper_visibility_2 .swiper-slide > iframe,
.swiper_visibility_3 .swiper-slide > iframe,
.swiper_visibility_4 .swiper-slide > iframe {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.swiper_videoreview_play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	cursor: pointer;
	z-index: 5;
}
.swiper_videoreview_title {
	font-size: 18px;
    color: white;
    text-align: center;
    font-weight: 600;
    margin: 8px 64px -52px;
    padding: 8px;
    background: rgb(0 0 0 / 25%);
    border-radius: 6px;
	position: absolute;
	z-index: 5;
	bottom: 100px;
	width: fit-content;
}
.swiper_videoreview_preview {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-container-horizontal>.swiper-scrollbar {
    left: 0 !important;
    width: 100% !important;
}
.popup_videoreview > div {
	display: none;
}
.popup_videoreview > div.active {
	display: block;
}
.block_video_review h2 {
	text-align: left;
	font-size: 26px;
	padding: 48px 0 16px 0;
}
.single_photos {
	padding: 140px 0 0 0;
}
.single_photos .single_catalog__inner h1 {
    margin-bottom: 20px;
    text-align: left;
    padding: 0;
}
.single_photos__info {
	font-size: 14px;
	color: #777;
	line-height: 130%;
	padding: 0 0 24px 0;
}
.single_photos .single_catalog__inner > div:nth-child(2) .btn_yellow,
.single_photos .single_catalog__inner > div:nth-child(2) .btn_red {
	width: 100%;
}
.single_photos .single_catalog__inner > div:nth-child(2) .btn_yellow {
	margin: 0 0 16px 0;
}
.single_photos__info_full_subtitle {
    text-align: center;
    font-size: 19px;
    line-height: 24px;
    max-width: 960px;
    margin: 0 auto;
    font-weight: 300;
    color: #272727;
    margin: 0 auto 32px auto;
}
.single_photos__info_full_text p {
	padding: 19px 0;
	font-size: 19px;
	line-height: 24px;
}
.single_photos__info_full_text li {
	position: relative;
	padding: 0 0 3px 19px;
}
.single_photos__info_full_text li:before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 20px;
	background: #272727;
	position: absolute;
	left: 0;
	top: 7px;
}
.single_photos__info_full .btn_yellow {
	margin: 32px auto 0 auto;
}
.block_sales {
	padding: 0 0 32px 0;
}
.block_sales__inner {
	display: grid;
	grid-template-columns: calc(100% - 350px) 320px;
	gap: 30px;
	margin: 20px 0 0 0;
}
.swiper_sales {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	height: 415px;
}
.swiper_sales .swiper-slide {
	background-size: cover !important;
}
.swiper_sales__info {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    border: 1px solid hsla(0, 0%, 100%, 0.18);
    background: hsla(0, 0%, 100%, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 6px;	
}
.swiper_sales__title {
	font-size: 26px;
	line-height: 120%;
	font-weight: 600;
	margin: 4px 0;
}
.swiper_sales__text {
	padding: 10px 0 0 0;
	font-size: 15px;
	line-height: 120%;
}
.swiper_sales__data {
	padding: 25px 0 0 0;
	font-size: 15px;
	line-height: 120%;
	font-style: italic;
}
.swiper-button-prev-sales,
.swiper-button-next-sales {
	-webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    width: 36px !important;
    height: 36px !important;
    top: calc(50% - 25px) !important;
    z-index: 1;
    background: rgba(197, 197, 197, 0.5) !important;
    border-radius: 6px !important;
    display: flex !important;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;    
}
.swiper-button-prev-sales {
	left: 16px !important;	
}
.swiper-button-next-sales {
	right: 16px !important;	
}
.swiper-button-prev-sales:after {
	content: "" !important;
	background: url(images/prev.svg) no-repeat;
	height: 16px !important;
	width: 9px !important;
	background-size: cover !important;
}
.swiper-button-next-sales:after {
	content: "" !important;
	background: url(images/next.svg) no-repeat;
	height: 16px !important;
	width: 9px !important;
	background-size: cover !important;
}
.block_sales__inner input[type="text"],
.block_sales__inner input[type="tel"] {
	height: 60px !important;
    border-radius: 6px !important;
    padding: 0 16px 0 50px !important;
    border: 1px solid #cecece !important;	
	margin: 0 0 20px 0 !important;
}
.block_sales__inner .wpforms-field-text {
	position: relative;
}
.block_sales__inner .wpforms-field-text:after {
	content: "";
	display: block;
	position: absolute;
	left: 16px;
    top: 17px;
	z-index: 3;
	background: url(images/input-name.svg) no-repeat;
	width: 25px;
	height: 25px;
	background-size: cover;
}
.block_sales__inner .wpforms-field-phone {
	position: relative;
}
.block_sales__inner .wpforms-field-phone:after {
	content: "";
	display: block;
	position: absolute;
	left: 16px;
    top: 17px;
	z-index: 3;
	background: url(images/input-phone.svg) no-repeat;
	width: 25px;
	height: 25px;
	background-size: cover;
}
.block_sales__inner button[type="submit"] {
	height: 58px !important;
	background: #ffe100 !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    text-align: center !important;
    cursor: pointer;
	width: 100% !important;
	font-size: 16px !important;
	color: #272727 !important;
	transition: all 0.15s ease-in;
}
.block_sales__inner button[type="submit"]:hover {
	transform: scale(1.04);
}
.block_sales__inner legend {
	display: none !important;
}
.block_sales__inner .wpforms-field-checkbox label {
	margin-bottom: 16px !important;
    font-size: 14px !important;
	margin: 0 !important;
}
.block_sales__inner .wpforms-field-checkbox label a {
	color: #272727 !important;
}
.block_sales__inner .wpforms-container .wpforms-field {
    padding: 0 !important;
}
.block_sales__inner div.wpforms-container-full {
    margin: 0 !important;
}
.block_sales .btn_red {
	margin: 32px auto 0 auto;
}
.block_review_best__list {
	max-width: 728px;
	margin: 50px auto 0 auto;
}
.block_review_best__list > div {
	border-bottom: 1px solid #e2e2e2;
    padding-bottom: 32px;
	margin: 0 0 32px 0;
}
.block_review_best__avatar {
	width: 80px;
	height: 80px;
	border-radius: 200px;
	overflow: hidden;
}
.block_review_best__avatar img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.block_review_best__name {
	font-weight: 600;
    margin-bottom: 4px;
}
.block_review_best__header {
	gap: 16px;
	align-items: center;
}
.block_review_best__review {
	margin-top: 20px;
	line-height: 150%;
}
.block_review_best .btn_yellow {
	margin: 32px auto 0 auto;
}
.block_review_best__star {
	gap: 3px;
}
.block_review_best__subtitle {
    text-align: center;
    color: #777;
    font-size: 14px;
    padding: 10px 0 0 0;
}
.block_review_best__header_raiting {
    align-items: center;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
}
.category_filter {
	gap: 10px 32px;
}
.category_filter ul {
    display: flex;
    flex-wrap: wrap;
}
.category_filter ul li a {
	background: #98c4e8;
    padding: 8px;
    margin: 4px 8px 4px 0;
    border-radius: 4px;
    cursor: pointer;
	display: block;
	color: #272727;
	text-decoration: none;
	transition: all 0.1s ease-in;
	line-height: 100%;
}
.category_filter ul li a:hover {
    background: #204471;
	color: #fff;
}
.archive .category_filter ul li a:hover {
	background: #ffe100;
}
.category_filter ul li a.active {
	background: #204471;
	color: #fff;
}
.tax-category-photos .category_filter ul li a.active {
	background: #862000 !important;
	color: #fff;
}
.post-type-archive-photos .category_filter ul li a,
.tax-category-photos .category_filter ul li a,
.archive .category_filter ul li a {
	background: #f5f5f5;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 300;
    padding: 8px;
    margin: 4px 8px 4px 0;
    border-radius: 4px;
    cursor: pointer;
	color: #272727;
	text-decoration: none;
	transition: all 0.1s ease-in;
	line-height: 100%;
} 
.post-type-archive-photos .category_filter ul li a:hover,
.tax-category-photos .category_filter ul li a:hover {
    background: #862000;
	color: #fff;
}
.wp-pagenavi {
    border-top: 1px solid #f0f0f0;
    margin-top: 8px;
	display: flex;
	padding: 24px 16px;
}
.wp-pagenavi a {
	display: flex;
	align-items: center;
	justify-content: center;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
	width: 42px;
	height: 42px;
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    cursor: pointer;
	text-decoration: none;
	transition: all 0.15s ease-in;
}
.wp-pagenavi a:hover {
	border: 1px solid #d1d5db !important;
	background: #e5e7eb !important;
}
.wp-pagenavi > span {
	display: flex;
	align-items: center;
	justify-content: center;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
	width: 42px;
	height: 42px;
    background: #6b7280;
    color: #fff;
    border: 1px solid #6b7280;
    cursor: pointer;
	text-decoration: none;	
}
.wp-pagenavi span.pages {
	border: none !important;
	padding: 0 !important;
	color: #6b7280 !important;
	background: transparent !important;
	width: fit-content !important;
}
.wp-pagenavi a, .wp-pagenavi span {
    margin: 0 6px !important;
}
.block_faq {
	background: #f5f5f5;
	margin: 32px 0 0 0;
	padding: 0 0 32px 0;
}
.block_faq__list {
	max-width: 728px;
	margin: 0 auto;
	padding: 32px 0 0 0;
}
.block_faq__list_title {
	font-size: 20px;
    color: #707070;
    margin-bottom: 12px;
	font-weight: 400;
}
.block_faq__a {
	height: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.15s ease-in;
}
.block_faq__item {
	padding: 24px 0;
	border-top: 1px solid #e0dede;
}
.block_faq__item.active .block_faq__a {
	height: auto;
	opacity: 1;
	visibility: visible;
	margin-top: 16px;
}
.block_faq__q {
	color: #272727;
	font-size: 19px;
	line-height: 24px;
	font-weight: 400;
	cursor: pointer;
}
.block_faq__a {
	color: #272727;
	font-size: 19px;
	line-height: 24px;
	font-weight: 300;
}
.block_partners__list {
	padding: 32px 0 0 0;
}
.block_partners__list > div {
	flex: 0 33.33%;
	padding: 32px;
}
.block_partners__list a {
	color: #272727;
	text-decoration: none;
}
.block_partners__list_title {
	font-weight: 600;
    font-size: 26px;
    text-align: center;
    padding-top: 16px;
	margin: 32px 0 0 0;
}
.block_partners__list_text {
    font-size: 19px;
    text-align: center;
    padding-top: 16px;
}
.block_partners__list_logo {
    height: auto;
    width: auto;
    max-height: 60px;
    margin: 0 auto;
    max-width: 100%;
}
.block_diplom {
	background: #f5f5f5;
	margin: 32px 0 0 0;
	padding: 0 0 32px 0;
}
.block_diplom__list {
	gap: 32px;
	justify-content: center;
	margin: 32px 0 0 0;
}
.block_diplom__list > div {
	flex: 0 calc(33.33% - 22px);
	position: relative;
	overflow: hidden;
	height: 550px;
}
.block_diplom__list > div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.15s ease-in;
}
.block_diplom__list > div:hover img {
	transform: scale(1.05);
}
.block_diplom__list > div a {
	position: relative;
	overflow: hidden;
}
.block_diplom__list > div:hover a:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index:2;
	background: rgb(181 181 181 / 30%);
}
.single_post {
	padding: 120px 0 0 0;
}
.single_post h1 {
	text-align: center;
	font-weight: 600;
	font-size: 42px;
	line-height: 130%;
	padding: 32px 0;
}
.single_post__content {
	max-width: 728px;
	margin: 0 auto;
}
.single_post__content p {
	font-size: 19px;
	line-height: 24px;
	padding: 0 0 24px 0;
}
.wp-block-image.size-full, .wp-block-image.size-large {
    padding: 16px 0;
}
.single_post__content h2 {
	font-weight: 600;
    font-size: 26px;
	padding: 16px 0;
	text-align: left;
}
.single_post__content ul li {
	font-size: 19px;
	line-height: 24px;	
	padding: 0 0 24px 24px;
	position: relative;
}
.single_post__content ul li:before {
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	background: #333;
	position: absolute;
	left: 0;
	top: 7px;
	border-radius: 20px;
}
.single_post__expert {
	gap: 32px;
	max-width: 932px;
	margin: 32px auto 0 auto;
	align-items: center;
}
.single_post__expert > div:nth-child(1) {
	flex: 0 400px;
}
.single_post__expert > div:nth-child(2) {
	flex: 0 calc(100% - 432px);
}
.single_post__expert_photo {
	width: 100%;
	height: auto;
}
.single_post__expert_title {
	font-size: 18px;
    margin-bottom: 8px;
	font-weight: 600;
}
.single_post__expert_name {
	font-size: 26px;
    text-align: left;
	font-weight: 600;
    margin-bottom: 16px;
}
.single_post__expert_text p {
	font-size: 19px;
	line-height: 24px;
	padding: 0 0 24px 0;
	font-weight: 300;
}
.single_post__expert_text p:last-of-type {
	padding: 0;
}
.single_post__content_date {
	margin: 32px 0 0 0;
}
.single_post__content ol {
	list-style-type: none; 
	counter-reset: num;
	margin: 0 0 0 25px;
	padding: 15px 0 5px 0;
	font-size: 19px;
}
.single_post__content ol li {
	position: relative;	
	margin: 0 0 0 0;
	padding: 0 0 10px 0;
	color: #272727;
}
.single_post__content ol li:before {
	content: counter(num) '.'; 
	counter-increment: num;
	display: inline-block;	
	position: absolute;
	top: 0px;
	left: -26px;
	width: 20px;    
	color: #272727;
	text-align: right;
}
.single_post__content_menu {
	margin: 0 0 32px 0;
}
.single_post__content_menu a {
	text-decoration: none;
	display: block;
	color: #272727;
}
.single_post__banner {
	margin: 0 0 32px 0;
	cursor: pointer;
}
.single_post__banner img {
	width: 100%;
	height: auto;
}
.block_callback__frame {
	margin: 32px 0 48px 0;
	background: #f5f5f5;
	padding: 48px 32px;
    border-radius: 6px;
}
.block_callback__title {
	font-weight: 600;
    font-size: 42px;
	line-height: 110%;
    text-align: left;
    margin-bottom: 16px;	
}
.block_callback__subtitle {
	text-align: left;
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 32px;
	padding: 8px 0 0 0;
}
.block_callback .wpforms-field-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.block_callback .wpforms-field-text,
.block_callback .wpforms-field-phone {
	flex: 0 calc(50% - 10px);
}
.block_callback .wpforms-field-checkbox {
	flex: 0 100%;
}
.block_callback .wpforms-field-text input,
.block_callback .wpforms-field-phone input {
	height: 60px !important;
    border-radius: 6px !important;
    background-color: white !important;
    padding: 0 16px 0 50px !important;
	border: none !important;
	outline: none !important;
}
.block_callback .wpforms-field-checkbox .wpforms-field-label {
	display: none !important;
}
.block_callback button {
	background: #862000 !important;
	width: calc(50% - 10px) !important;
	border-radius: 5px !important;
    font-weight: 600 !important;
    text-align: center !important;
    cursor: pointer;
	height: 58px !important;
	margin: 16px 0 0 0 !important;
}
.block_callback .wpforms-field-checkbox label {
	font-size: 14px !important;
	color: #000 !important;
}
.block_callback .wpforms-field-checkbox label a {
	color: #000 !important;
}
.block_callback .wpforms-container .wpforms-field {
    padding: 0 !important;
}
.block_callback .wpforms-field-text {
	position: relative;
}
.block_callback .wpforms-field-text:after {
	content: "";
	display: block;
	position: absolute;
	left: 16px;
    top: 17px;
	z-index: 3;
	background: url(images/input-name.svg) no-repeat;
	width: 25px;
	height: 25px;
	background-size: cover;
}
.block_callback .wpforms-field-phone {
	position: relative;
}
.block_callback .wpforms-field-phone:after {
	content: "";
	display: block;
	position: absolute;
	left: 16px;
    top: 17px;
	z-index: 3;
	background: url(images/input-phone.svg) no-repeat;
	width: 25px;
	height: 25px;
	background-size: cover;
}
.block_blog__list {
    gap: 32px;
    margin: 32px 0 0 0;
}
.block_blog__list > a {
	flex: 0 calc(33.33% - 24px);
	background: #f5f5f5;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	color: #272727;
}
.block_blog__thumb {
    height: 220px;
    overflow: hidden;
}
.block_blog__thumb:hover img {
	transform: scale(1.1);
}
.block_blog__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.15s ease-in;
}
.block_blog__date {
	padding: 16px 16px 0 16px;
	font-weight: 300;
	font-size: 15px;
}
.block_blog__title {
	font-size: 19px;
	padding: 16px;
}
.block_blog__excerpt {
    font-size: 15px;
    padding: 0 16px 16px 16px;
    font-weight: 300;
}
.block_blog .btn_red {
	margin: 32px auto 0 auto;
}
.block_ready .wpc-filters-widget-wrapper,
.archive .wpc-filters-widget-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 0 32px;
}
.block_ready .wpc-filters-section-563,
.block_ready .wpc-filters-section-564,
.archive .wpc-filters-section-658,
.archive .wpc-filters-section-659 {
	flex: 0 400px;	
}
.block_ready .widget_wpc_filters_widget,
.archive .widget_wpc_filters_widget {
	max-width: 900px;
	margin: 32px 0 0 0;
}
.block_ready .wpc-filters-section-569 .wpc-filter-title,
.archive .wpc-filters-section-660 .wpc-filter-title,
.tax-category-photos .wpc-filters-section-4459 .wpc-filter-title {
	display: none !important;
}
.wpc-filters-section-4459 {
    display: flex !important;
    gap: 8px !important;
    align-items: center;
}
.block_ready .wpc-filters-section-572,
.archive .wpc-filters-section-662 {
	display: flex;
	gap: 8px;
}
.block_ready .wpc-filters-section-563 .wpc-filter-title,
.block_ready .wpc-filters-section-564 .wpc-filter-title,
.archive .wpc-filters-section-658 .wpc-filter-title,
.archive .wpc-filters-section-659 .wpc-filter-title {
	margin-bottom: 4px !important;
}
.block_ready .wpc-filter-content a,
.block_ready .wpc-filter-title,
.archive .wpc-filter-content a,
.archive .wpc-filter-title {
    color: #000;
    font-size: 14px;	
}
.block_ready input[type="number"],
.archive input[type="number"] {
	height: 39px !important;
	width: 156px !important;
	font-size: 16px !important;
    border-radius: 5px !important;
    text-align: center;
    border: 1px solid #999 !important;
}
.block_ready .wpc-filters-range-slider-wrapper,
.archive .wpc-filters-range-slider-wrapper {
    margin: 1.5em 0 10px 0 !important;
}
.block_ready .wpc-instead-of-posts-found,
.archive .wpc-instead-of-posts-found {
	display: none;
}
.block_ready input[type="range"],
.archive input[type="range"] {
	accent-color: #c56fff;
}
.wpc-edit-filter-set {
	display: none !important;
}
.block_ready .wpc-filters-main-wrap li.wpc-term-item input[type=checkbox] {
	position: relative;
	top: 0px;
}
.page_default {
    padding: 140px 0 48px 0;
}
.page_review__yandex {
	max-width: 760px;
	margin: 0 auto;
}
.page-template-page-reviews .block_popuplar h2 {
	display: none;
}
.block_moreproject {
	background: #862000;
	padding: 48px 0 32px 0;
	margin: 32px 0 0 0;
}
.block_moreproject__title {
	color: #fff;
	text-align: center;
	font-size: 26px;
	line-height: 120%;
	font-weight: 600;
	padding: 0 0 16px 0;
}
.block_moreproject__subtitle {
	color: #fff;
	text-align: center;
	font-size: 19px;
	line-height: 120%;
	font-weight: 600;
	padding: 0 0 32px 0;
}
.block_moreproject .btn_yellow {
	margin: 0 auto;
}
.block_archive_desc h2 {
	font-size: 32px;
    line-height: 38px;
	text-align: left;
	padding: 0;
}
.block_archive_desc h3 {
	font-size: 26px;
    line-height: 32px;
	text-align: left;
	padding: 0;
}
.block_archive_desc p {
	padding: 16px 0;
	font-size: 19px;
	line-height: 130%;
}
.block_archive_tags__list {
	max-width: 728px;
	margin: 32px auto;
}
.block_archive_desc__text p {
    font-size: 19px;
    line-height: 120%;
    font-weight: 300;
}
.block_archive_desc__text h2 {
	font-size: 26px;
	line-height: 130%;
}
.block_archive_desc__text ol {
	list-style-type: none; 
	counter-reset: num;
	padding: 24px 0 24px 24px;
}
.block_archive_desc__text ol li {
	position: relative;
    font-size: 19px;
    line-height: 120%;
	padding: 0 0 0 4px;
	font-weight: 300;
}
.block_archive_desc__text ol li:before {
	content: counter(num) '.'; 
	counter-increment: num;
	display: inline-block;	
	position: absolute;
	top: 0px;
	left: -26px;
	width: 20px;    
	text-align: right;
}
.block_archive_desc__text ul {
	padding: 24px 0;
}
.block_archive_desc__text ul li {
	position: relative;
    font-size: 19px;
    line-height: 120%;
	padding: 0 0 12px 24px;
	font-weight: 300;
}
.block_archive_desc__text ul li:before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 10px;
	position: absolute;
	left: 0;
	top: 7px;
	background: #272727;
}
.block_archive_tags__list a {
	padding: 8px;
    margin: 4px 8px 4px 0;
    border-radius: 4px;
    font-weight: 200;
    cursor: pointer;
    color: #272727;
    background: #f5f5f5;
	display: block;
	text-decoration: none;
	transition: all 0.15s ease-in;
}
.block_archive_tags__list a:hover {
	background: #204471;
	color: #fff;
}
.catalog_archive {
	gap: 32px;
}
.catalog_archive > div {
	flex: 0 calc(33.33% - 24px);
	border-radius: 6px;
	overflow: hidden;
	background: #f5f5f5;
	position: relative;
}
.catalog_archive > div a {
    color: #272727;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.catalog_archive__thumb {
	height: 276px;	
	overflow: hidden;
}
.catalog_archive__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.15s ease-in;
}
.catalog_archive__thumb:hover img {
	transform: scale(1.1);
}
.catalog_archive__info {
    padding: 16px;
    gap: 16px 0;
}
.catalog_archive__info > div {
	flex: 0 50%;
}
.catalog_archive__price {
	font-size: 17px;
    font-weight: 600;
    color: #000;
}
.catalog_archive__btns {
	padding: 16px;
	align-items: center;
	gap: 32px;
}
.catalog_archive__btns .btn_red {
	width: 135px;
	height: 38px;
	color: #fff;
}
.catalog_archive__title {
	font-size: 19px;
	gap: 8px;
	padding: 16px 16px 0 16px;
}
.catalog_archive__title span {
	color: #862000;
}
.archive .widget_wpc_filters_widget {
	max-width: 900px;
}
.archive_page .wpc-filters-widget-wrapper,
.archive .wpc-filters-widget-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 0 32px;
}
.archive_page .wpc-filters-section-563,
.archive_page .wpc-filters-section-564 {
	flex: 0 400px;	
}
.archive_page .wpc-filter-title {
    color: #000;
	font-size: 14px;
}
.archive_page .widget_wpc_filters_widget {
	padding: 0px 0 0 0;
	margin: 16px 0 0 0;
}
.archive_page .wpc-instead-of-posts-found,
.archive .wpc-instead-of-posts-found {
	display: none;
}
.wpc-filters-range-max {
	text-align: right;
	margin: 0 0 0 20px;
}
.indiv_text {
	font-weight: 300;
	padding: 16px 0;
	text-align: center;
	font-size: 19px;
	line-height: 24px;
}
.btn_ind {
	margin: 16px auto;
}
.block_what_dont__list {
	padding: 32px;
}
.block_what_dont__list > div {
	flex: 0 25%;
}
.block_what_dont__icon {
	margin: 0 auto;
}
.block_what_dont__list > div p {
	text-align: center;
	font-size: 26px;
	line-height: 120%;
	padding: 16px 0 0 0;
}
.post-type-archive-photos .archive_page {
    padding: 140px 0 0 0;
}
.archive_photos__subtitle {
    text-align: center;
    padding: 0 0 64px 0;
    max-width: 980px;
    margin: 0 auto;
}
.category_filter_sort {
	justify-content: end;
	gap: 10px;
	font-size: 14px;
}
.category_filter_sort button {
	background: none;
	outline: none;
	border: none;
	color: #000;
	font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 300;
	position: relative;
	width: fit-content;
}
.category_filter_sort button.active:before {
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	background: #000;
	position: absolute;
	bottom: -2px;
}
.category_filter_sort button:after {
	content: "";
	display: inline-block;
	background: #000;
	height: 16px;
	width: 1px;
	margin: 0 5px;
	position: absolute;
	top: 4px;
}
.category_filter_sort button:last-of-type:after {
	display: none;
}
.catalog_archive__panel {
    justify-content: space-between;
    align-items: center;
	margin: 15px 0;
}
.catalog_archive__panel p {
	color: #000;
	font-size: 14px;
    font-weight: 300;	
}
.page-template-page-standart a {
	text-decoration: none;
}
.pressa_banner.wp-block-cover {
	min-height: 245px;
	border-radius: 8px;
	margin: 32px 0 0 0;
	overflow: hidden;
}
.pressa_banner.wp-block-cover span {
	height: 245px;
	overflow: hidden;
}
.pressa_banner.wp-block-cover p {
	font-weight: 600;
	font-size: 42px !important; 
}
.pressa_banner .wp-block-button__link {
	width: 196px !important;
    margin: 0 auto;
	font-size: 16px;
	height: 61px;
	font-weight: 600;
	transition: all 0.15s ease-in;
}
.pressa_banner .wp-block-button__link:hover {
	transform: scale(1.05);
}
.pressa_banner .wp-block-buttons {
	justify-content: center;
	margin: 25px 0 0 0;
}
.pressa_banner.wp-block-cover .wp-block-cover__background {
	opacity: .75;
}
.page-template-page-standart .block_popuplar h2 {
	display: none;
}
.page-template-page-standart p {
    font-size: 19px;
    line-height: 140%;
    font-weight: 300;
}
.pressa_img {
	margin: 32px 0;
}
.page-template-page-standart h1 {
    padding: 0;
	margin: 32px 16px 48px 16px;
}
.page-template-page-standart .wp-block-heading {
    font-size: 26px;
    padding: 32px 0 16px 0;
}
.page-template-page-standart ol {
	list-style-type: none; 
	counter-reset: num;
	font-size: 19px;
	padding: 0 0 0 20px;
}
.page-template-page-standart ol li {
	position: relative;	
	padding: 0 0 3px 0;
	font-weight: 300;
}
.page-template-page-standart ol li:before {
	content: counter(num) '.'; 
	counter-increment: num;
	display: inline-block;	
	position: absolute;
	top: 0px;
	left: -26px;
	width: 20px;    
	color: #272727;
	text-align: right;
}
.page-template-page-standart .block_728 {
	max-width: 728px;
	margin: 0 auto;
}
.page-template-page-standart ul.wp-block-list li {
	position: relative;
	font-size: 19px;
	font-weight: 300;
	padding: 0 0 3px 18px;
}
.page-template-page-standart ul.wp-block-list li:before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 20px;
	background: #272727;
	position: absolute;
	left: 0;
	top: 7px;
}
.page-template-page-standart p {
	padding: 0 0 16px 0;
}
.page-template-page-standart strong {
	font-weight: 700;
}
.gost_btn {
	margin: 0 0 48px 0 !important;
}
.gost_btn > a {
	width: 112px;
	height: 38px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page_sale__sale_list_inner {
    gap: 32px;
    align-items: center;
}
.page_sale__sale_list_inner > div:nth-child(1) {
	flex: 0 400px;
}
.page_sale__sale_list_inner > div:nth-child(2) {
	flex: 0 calc(100% - 432px);
}
.page_sale__subtitle {
    font-size: 19px;
    line-height: 24px;
    font-weight: 300;
    max-width: 640px;
    margin: 16px auto 0 auto;
}
.page_sale__sale_list {
	max-width: 936px;
	margin: 64px auto 0 auto;
}
.page_sale__sale_list > div {
	margin: 0 0 64px 0;
}
.page_sale__sale_list > div:last-of-type {
	margin: 0;
}
.page_sale__sale_list_img {
	height: 300px;
	overflow: hidden;
}
.page_sale__sale_list_img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.page_sale__sale_list_title {
    font-weight: 600;
    font-size: 26px;
	line-height: 130%;
    text-align: left;
    margin-bottom: 16px;	
}
.page_sale__sale_list_text {
	font-size: 19px;
	margin: 0 0 16px 0;
	font-weight: 300;
}
.page_sale__sale_list_text p {
	margin: 0 0 15px 0;
}
.page_sale__sale_list_text p:last-of-type {
	margin: 0;
}
.page_sale__sale_list_link {
	background: #862000;
	margin: 16px 0;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	width: 100%;
	height: 61px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}
.page-template-page-sale .block_popuplar h2 {
	display: none;
}
.single_tekhnologii__text {
	max-width: 728px;
	margin: 0 auto;
}
.single_tekhnologii__text ul {
	margin: 0 0 24px 0;
}
.single_tekhnologii__text ul li {
	position: relative;
	font-size: 19px;
	font-weight: 300;
	padding: 0 0 3px 18px;
}
.single_tekhnologii__text ul li:before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 20px;
	background: #272727;
	position: absolute;
	left: 0;
	top: 8px;
}
.single_tekhnologii__text p {
	margin: 0 0 24px 0;
	font-size: 19px;
	line-height: 24px;
	font-weight: 300;
}
.single_tekhnologii h1 {
    padding: 32px 16px 32px 16px;
}
.single_tekhnologii__text h2 {
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    text-align: left;
    padding: 16px 0 16px 0;
}
.mce-menu {
	top: 0 !important;
	position: absolute !important;
}
.single_tekhnologii a {
	color: #272727;
}
.single_tekhnologii ol {
	list-style-type: none; 
	counter-reset: num;
	font-size: 19px;
	padding: 0 0 30px 20px;
}
.single_tekhnologii ol li {
	position: relative;	
	padding: 0 0 3px 0;
	font-weight: 300;
}
.single_tekhnologii ol li:before {
	content: counter(num) '.'; 
	counter-increment: num;
	display: inline-block;	
	position: absolute;
	top: 0px;
	left: -26px;
	width: 20px;    
	color: #272727;
	text-align: right;
}
.single_tekhnologii hr {
	margin: 0 0 24px 0;
	width: 100%;
	height: 1px;
	background: #e0dede;
	outline: none;
	border: none;
}
.content_gallery {
    display: inline-block;
    height: 250px;
    overflow: hidden;
	width: calc(33.33% - 16px);
	margin: 5px 8px;
	position: relative;
}
.content_gallery:before {
	content: "открыть";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
    font-size: 20px;
    color: white;
	background: rgb(181 181 181 / 30%);
    display: flex;
    align-items: center;
    justify-content: center;
	opacity: 0;
	z-index: 10;
	transition: all 0.15s ease-in;
}
.content_gallery:hover:before {
	opacity: 1;
}
.content_gallery img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: all 0.15s ease-in;
}
.content_gallery:hover img {
	transform: scale(1.05);
}
.archive_page {
	padding: 140px 0 48px 0;
}
.block_tech__list {
	gap: 32px;
	margin: 32px 0 0 0;
}
.block_tech__list > div {
    flex: 0 calc(33.33% - 24px);
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
    height: auto;
}
.block_tech__list > div a {
	text-decoration: none;
	color: #272727;
}
.block_tech__thumb {
	height: 220px;
	overflow: hidden;
}
.block_tech__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.block_tech__main_title {
	 font-size: 19px;
	line-height: 24px;
	color: #272727;
	display: block;	
	padding: 16px;
}
.block_tech__main_date {
	font-weight: 300;
	font-size: 15px;
	padding: 16px 16px 0 16px;
}
.block_tech__main_excerpt {
	padding: 0 16px 32px 16px;
	font-size: 15px;
	line-height: 20px;
}
.post-type-archive-tekhnologii .block_popuplar h2,
.tax-category-tekhnologii .block_popuplar h2 {
	display: none;
}
.page_blog__subtitle {
	text-align: center;
	font-size: 24px;
	line-height: 30px;
	font-weight: 300;
}
.page_blog .block_blog__list {
    margin: 64px 0 0 0;
}
.wp-element-caption {
    font-size: 14px !important;
    line-height: 120% !important;	
	text-align: center;
	color: #999999 !important;
}
.wp-block-image :where(figcaption) {
    margin-top: 18px !important;
}
.wp-block-separator {
	height: 1px;
	width: 100%;
	border: none !important;
	outline: none;
	background: #e0dede;
	margin: 0 0 30px 0;
}
.block_telegram {
	height: 341px;
	background: #98c4e8;
}
.block_telegram .container {
	height: 100%;
}
.block_telegram__frame {
    height: 245px;
    background: url(images/20027714.jpg) no-repeat center;
	background-size: cover !important;
    border-radius: 8px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
	overflow: hidden;
}
.block_telegram__frame_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)) !important;	
}
.block_telegram__title {
    text-align: center;
    color: #fff;
    font-size: 42px;
    line-height: 120%;
    font-weight: 600;
	position: relative;
	z-index: 2;
}
.block_telegram__btn {
	width: 196px;
	height: 61px;
	font-weight: 600;
	background: #fff;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 16px;
	color: #22282d;
	margin: 32px auto 0 auto;
	position: relative;
	z-index: 2;
	transition: all 0.15s ease-in;
}
.block_telegram__btn:hover {
	transform: scale(1.05);
}
.page-template-page-question .block_popuplar h2 {
	display: none;
}
.block_review_link {
	height: 215px;
	background: #862000;
}
.block_review_link .container {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}
.block_review_link__title {
	color: #fff;
	text-align: center;
	font-weight: 600;
	font-size: 26px;
	line-height: 120%;
}
.block_review_link__btn {
    width: 271px;
    height: 61px;
    border-radius: 5px;
    background: #ffe100;
    margin: 32px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #272727;
    font-weight: 600;
	transition: all 0.15s ease-in;
}
.block_review_link__btn:hover {
	transform: scale(1.05);
}
.page_why__list {
	gap: 32px;
	margin: 32px 0 0 0;
}
.page_why__list > div {
    flex: 0 calc(33.33% - 24px);
    padding: 32px 24px;
	position: relative;
}
.page_why__list_inner > div:nth-child(1) {
	flex: 0 52px;
}
.page_why__list_inner > div:nth-child(2) {
    flex: 0 calc(100% - 52px);
    padding: 0 0 0 20px;
}
.block_why__list_link {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 4;
}
.page_why__subtitle {
    text-align: center;
    font-size: 19px;
    line-height: 24px;
    margin: 10px 0 0 0;
    font-weight: 300;
}
.block_why__list_title.active {
	text-decoration: underline;
}
.page_contacts__inner {
    gap: 32px;
    margin: 48px 0 00;
}
.page_contacts__inner > div {
	flex: 0 calc(50% - 24px);
}
.page_contacts__name {
	font-size: 24px;
	line-height: 120%;
	font-weight: 600;
}
.page_contacts__inner > div:nth-child(2) {
	font-size: 16px;
	line-height: 120%;
	font-weight: 300;
}
.page_contacts__inner > div:nth-child(2) a {
	color: #000;
	text-decoration: none;
}
.page_contacts__inner > div:nth-child(2) > div {
	margin: 0 0 24px 0;	
}
.page_contacts__subtitle {
	color: #9b9b9b;
	margin: 0 0 2px 0;
}
.page_contacts__text > div,
.page_contacts__text > p {
	margin: 0 0 24px 0;
}
.page_contacts__btn {
    font-size: 16px;	
	color: #fff !important;
	background: #862000;
	border-radius: 5px;
	font-weight: 600;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 304px;
	height: 61px;
	margin: 16px 0;
}
.page_contacts__social {
	gap: 8px;
}
.page_contacts__social img {
	height: 25px;
	width: 25px;
}
.page-template-page-contacts .block_popuplar h2 {
	display: none;
}
.page_kapital__subtitle {
	text-align: center;
	font-weight: 300;
	font-size: 19px;
	line-height: 120%;
	margin: 32px 0 16px 0;
	letter-spacing: -0.2px;
}
.page_kapital__steps {
	gap: 8px;
}
.page_kapital__steps > div {
	flex: 0 calc(25% - 6px);
	background: #862000;
	border-radius: 4px;
	height: 37px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
}
.page_kapital__link {
	text-decoration: none;
}
.page_kapital__img {
	height: 500px;
	width: auto;
	margin: 32px auto;
}
.page_kapital__info_title {
    text-align: center;
    font-weight: 600;
    font-size: 42px;
    line-height: 120%;
    margin: 64px 0 0 0;
}
.page_kapital__info_text {
	text-align: center;
	font-weight: 300;
	font-size: 19px;
	margin: 32px 0 16px 0;
}
.page_kapital__info_list > div {
	flex: 0 33.33%;
	padding: 32px;
}
.page_kapital__list_icon {
	margin: 0 auto;
}
.page_kapital__info_list_title {
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	margin: 22px 0;
}
.page_kapital__info_list_text {
	text-align: center;
	font-size: 19px;
	line-height: 130%;
	font-weight: 300;
}
.page_kapital__etaps_text {
	font-size: 19px;
	line-height: 120%;
	margin: 32px 0 0 0;
	font-weight: 300;
}
.page_kapital__etaps_text a {
	text-decoration: none;
}
.page_kapital__etaps_text p {
	margin: 0 0 24px 0;
}
.page_kapital__etaps_text ol {
	list-style-type: none; 
	counter-reset: num;
	font-size: 19px;
	padding: 0 0 30px 20px;
}
.page_kapital__etaps_text ol li {
	position: relative;	
	padding: 0 0 24px 0;
	font-weight: 300;
}
.page_kapital__etaps_text ol li:before {
	content: counter(num) '.'; 
	counter-increment: num;
	display: inline-block;	
	position: absolute;
	top: 0px;
	left: -26px;
	width: 20px;    
	color: #272727;
	text-align: right;
}
.page_kapital__etaps_text ol li:last-of-type {
	padding: 0;
}
.page_kapital__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	height: 61px;
	padding: 0 60px;
	border-radius: 5px;
    font-weight: 600;
	background: #ffe100;
	color: #272727;
	width: fit-content;
	margin: 64px auto 0 auto;
}
.page_kapital__faq_text {
	margin: 64px 0 0 0;
	font-size: 19px;
	line-height: 130%;
	font-weight: 300;
}
.page_kapital__faq_text p {
	margin: 0 0 16px 0;
}
.page_kapital__faq_text p:last-of-type {
	margin: 0;
}
.page-template-page-kapital .block_popuplar h2,
.page-template-page-credit .block_popuplar h2 {
	display: none;
}
.page_kapital__info_text_2 li {
	padding: 0 0 4px 24px;
	position: relative;
	font-size: 19px;
	line-height: 120%;
	font-weight: 300;
}
.page_kapital__info_text_2 li:before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 30px;
	background: #272727;
	position: absolute;
	left: 0;
	top: 8px;
}
.page_default iframe {
	margin: 0 auto;
	display: block;
}
.page-template-page-etaps .block_etaps {
    background: transparent;
    padding: 0;
}
.page-template-page-etaps .block_etaps h2 {
	display: none;
}
.page-template-page-videoreview h2 {
	font-size: 26px;
    text-align: left;
    padding: 32px 0 16px 0;	
}
.page-template-page-videoreview ul.wp-block-list li {
    position: relative;
    font-size: 19px;
    font-weight: 300;
    padding: 0 0 3px 18px;
}
.page-template-page-videoreview ul.wp-block-list li:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 20px;
    background: #272727;
    position: absolute;
    left: 0;
    top: 7px;
}
.page-template-page-videoreview p {
	padding: 0 0 16px 0;
    font-size: 19px;
    line-height: 140%;
    font-weight: 300;
}
.page-template-page-videoreview .block_popuplar h2 {
	display: none;
}
.wpc-filters-ul-list.wpc-filters-checkboxes {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 2px 0 0 0 !important;
}
.wpc-filters-ul-list.wpc-filters-checkboxes a {
	font-size: 14px !important;
}
.wpc-filters-ul-list.wpc-filters-checkboxes input[type="checkbox"] {
	width: 16px !important;
	height: 16px !important;
}
.wpc-filters-main-wrap ul.wpc-filters-ul-list {
    padding: 0 !important;
}
.wpc-filters-range-inputs .ui-slider-horizontal {
    width: calc(100% - 24px);
}
.page_ind__subtitle {
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    margin: 48px 0 0px 0;
}
.page-template-page-individual .block_ready__list {
    padding: 32px 0 32px 0;
}
.catalog_archive__subtitle_2 {
    text-align: center;
    font-weight: 300;
    font-size: 19px;
    line-height: 120%;
    margin: 0 0 32px 0;
}
.page_about__text {
	margin: 0 auto 64px auto;
	max-width: 728px;
}
.page_about__text p {
	font-size: 19px;
	line-height: 140%;
	margin: 0 0 30px 0;
	font-weight: 300;
}
.page_about__text p:last-of-type {
	margin: 0 0 30px 0;
}
.page_about__text a {
	color: #963113;
}
.swiper_about {
	position: relative;
	padding: 0 0 32px 0;
	margin: 64px 0 0 0;
	overflow: hidden;
}
.swiper_about .swiper-slide {
	height: 360px;
	overflow: hidden;
}
.swiper_about .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.15s ease-in;
}
.swiper_about .swiper-slide:hover img {
	transform: scale(1.04);
}
.page_about__prod {
	margin: 64px 0 0 0;
}
.page_about__prod_subtitle {
	text-align: center;
	margin: 16px 0 0 0;
	font-size: 19px;
	line-height: 120%;
}
.page_about__team_list > div {
	margin: 32px auto 64px auto;
}
.single_post__expert_photo_container {
	height: 300px;
	overflow: hidden;
}
.single_post__expert_photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page_about__geo_list {
	margin: 64px 0 0 0;
}
.page_about__geo_list > div {
	flex: 0 25%;
}
.page_about__geo_list_num {
    font-size: 40px;
    color: #4a6fa5;	
	font-weight: 600;
	text-align: center;
}
.page_about__geo_list_text {
	text-align: center;
	font-size: 19px;
	line-height: 140%;
	margin: 24px 0 0 0;
	font-weight: 300;
}
.page_about__geo_list_text a {
	color: #272727;
	text-decoration: underline;
}
.page_about__geo_photo {
	width: 100%;
	height: auto;
	margin: 64px 0 0 0;
}
.page_about__office_list {
	gap: 16px;
	margin: 32px 0 0 0;
}
.page_about__office_list > div {
	flex: 0 calc(33.33% - 12px);
	overflow: hidden;
}
.page_about__office_list a {
	position: relative;
	overflow: hidden;	
}
.page_about__office_list a:before { 
	content: ""; 
	display: block; 
	padding-top: 100%;
}
.page_about__office_list > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.15s ease-in;
}
.page_about__office_list > div:hover img {
	transform: scale(1.05);
}
.page_about__office_list > div:hover a:after {
	content: "";
	display: block;
	background: rgb(181 181 181 / 30%);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.page_about__office_contacts {
	gap: 32px;
}
.page_about__office_contacts {
    margin: 32px 0 64px 0;
}
.page_about__office_contacts > div {
	flex: 0 calc(33.33% - 23px);
    display: flex;
    align-items: flex-start;
    padding: 15px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    border-radius: 8px;
	min-height: 78px;
}
.page_about__office_contacts_inner > div:nth-child(1) {
	flex: 0 30px;
}
.page_about__office_contacts_inner > div:nth-child(2) {
	flex: 0 calc(100% - 30px);
}
.page_about__office_contacts_subtitle {
	font-weight: 700;
    color: #333;
}
.page_about__office_contacts_text {
	font-size: 16px;
	font-weight: 300;
}
.page_about__office_contacts_text a {
	color: #4a6fa5;
}
.page_about__office_contacts_text a:hover {
	text-decoration: underline;
}
.page_about__office_contacts_inner svg {
	width: 20px;
	height: auto;
}
.page_about__office_contacts_inner:nth-child(1) svg path,
.page_about__office_contacts_inner:nth-child(1) svg circle,
.page_about__office_contacts_inner:nth-child(2) svg path {
	stroke: #4a6fa5;
}
.page_about__office_contacts_inner:nth-child(3) svg path {
	fill: #4a6fa5;
}
.page_about__office_contacts_inner:nth-child(4) svg path,
.page_about__office_contacts_inner:nth-child(4) svg polyline {
	stroke: #4a6fa5;
}
.page_about__office_contacts_inner:nth-child(5) svg circle,
.page_about__office_contacts_inner:nth-child(5) svg polyline {
	stroke: #4a6fa5;
}
.page_about__office_contacts_inner:nth-child(6) svg rect,
.page_about__office_contacts_inner:nth-child(6) svg line {
	stroke: #4a6fa5;
}
.btn_top {
	position: fixed;
    cursor: pointer;
    z-index: 10;
    background: rgb(114 114 114 / 40%);
    border-radius: 6px;
	right: 16px;
    bottom: 86px;
	transition: all 0.15s ease-in;
	display: none;
}
.btn_top:hover {
    background: rgb(114 114 114 / 80%);
}
.btn_top > .btn_top__inner {
        width: 22px;
        height: 22px;
        border-top: 4px solid rgb(255 255 255 / 60%);
        border-right: 4px solid rgb(255 255 255 / 60%);
        margin-right: 16px;
        transform: rotate(-45deg);
        margin-left: 16px;
        margin-top: 23px;
        margin-bottom: 9px;
}
.page_sitemap__title {
	font-weight: 600;
    margin: 16px 8px 8px 8px;
}
.page_sitemap__inner a {
    margin: 8px;
    display: block;
    text-decoration: underline;
    color: black;
	font-weight: 300;
	max-width: 360px;
}
.page_sitemap__subtitle {
	font-weight: 600;
    margin: 8px;
	padding: 0 0 0 20px;
}
.page_sitemap__subinner {
	padding: 0 0 0 20px;
}
.phone_fixed {
	position: fixed;
    z-index: 10;
    right: 16px;
    bottom: 16px;
}
.phone_fixed img {
	width: 54px;
	height: 54px;	
}
/* Footer */
footer {
	background: #111111;
	padding: 45px 0;
}
.footer__inner {
	justify-content: space-between;
}
.footer__inner > div {
	flex: 0 25%;
	max-width: 200px;
}
.footer__logo {
	height: 36px;
	width: auto;
}
.header__social {
    margin: 0;
    justify-content: end;
}
.footer__phone {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}
.footer__phone_text {
    color: #fff;
    font-size: 12px;
    line-height: 110%;
    margin: 0 0 10px 0;
}
.footer__email {
	color: #db8519;
	text-decoration: none;
}
.footer__clock {
	color: #fff;
	font-size: 12px;
	line-height: 120%;
	margin: 16px 0;
}
.footer__address {
    color: #9c9c9c;
    font-size: 12px;
    line-height: 1.4;
    margin: 0 0 16px 0;
    max-width: 185px;
}
footer .btn_yellow {
	width: 168px;
	height: 38px;
	margin: 16px 0 0 0;
	font-size: 14px;
	padding: 0;
}
.footer__subtitle {
	font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}
.footer__social {
	gap: 8px;
	margin: 32px 0;
}
.footer__social img {
	height: 25px;
	width: auto;
}
footer .menu li {
	margin: 0 0 16px 0;
}
footer .menu a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	display: block;
}
.footer__bottom {
    margin: 0 48px;
    border-top: 1px solid #9c9c9c;
    padding: 16px 0;	
}
.footer__bottom_text {
	color: rgb(156, 156, 156);
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 8px;
	gap: 8px;
}
.footer__bottom_text a {
	color: rgb(156, 156, 156);
}
#cookie_note {
    position: fixed;
    z-index: 999;
	left: 16px;
    right: 16px;
	bottom: 15px;
    max-width: 646px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px 40px;
    background: white;
    padding: 12px;
    margin: 0px auto;
    border-radius: 5px;
	display: none;
	font-size: 14px;
	align-items: center;
	color: #000;
}
#cookie_note.show {
	display: flex;
}
.cookie_accept {
	height: 32px;
	width: 76px;
    background: #862000;
    color: #fff;
	cursor: pointer;
	font-size: 13px;
	display: flex;
	align-items: center;
    border-radius: 5px;
    padding: 8px 12px;
	justify-content: center;
	outline: none;
	border: none;
}
#cookie_note > div:nth-child(2) {
	flex: 0 76px;
	position: relative;
	z-index: 3;
}
#cookie_note > div:nth-child(1) {
	flex: 0 calc(100% - 76px);
	position: relative;
	z-index: 3;
	padding: 0 20px 0 0;
}
#cookie_note a {
	color: #000;
}
#cookie_note p {
	font-size: 14px !important;
	padding: 0 !important;
}