@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: "Open Sans", sans-serif;font-weight:400;background:#fff;color:#000;font-size:16px;line-height:130%;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;}
::-webkit-input-placeholder {color:#000;}
::-moz-placeholder          {color:#000;}
:-moz-placeholder           {color:#000;}
:-ms-input-placeholder      {color:#000;}
p {padding: 0;}
img {display:block;}
/* General */
.container {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 20px;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.frm_forms {
	position: relative !important;
	z-index: 2 !important;
}
.frm_forms label span, .frm_forms label {
	display: none !important;
}
.frm_forms input {
	height: 50px !important;
	background: #fff;
}
.frm_button_submit {
	width: 100% !important;
    border: none;
	height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    color: #fff !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    background: #C9ADA7 !important;
    background: linear-gradient(180deg, rgba(201, 173, 167, 1) 0%, rgba(175, 151, 145, 1) 100%) !important;
    -webkit-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);	
	transition: all 0.2s ease-in;
}
.frm_button_submit:hover {
	filter: brightness(1.1);
}
.with_frm_style .frm_form_fields > fieldset {
	padding: 0 !important;
}
.with_frm_style .frm_message, .frm_success_style {
    margin: 0 !important;
    border: none !important;
    background-color: transparent !important;
}
.with_frm_style .frm_message p {
    margin-bottom: 0 !important;
    color: #000 !important;
	font-weight: 500 !important;
}
h2 {
	color: #191d29;
	font-size: 54px;
	line-height: 110%;
	margin: 0 0 50px 0;
	font-family: "Noto Serif", serif;
	font-weight: 700;
}
.btn__gold {
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 400px;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
    font-weight: 700;
    font-size: 12px;
	text-transform: uppercase;
	background: #C9ADA7;
	background: linear-gradient(180deg, rgba(201, 173, 167, 1) 0%, rgba(175, 151, 145, 1) 100%);
	-webkit-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);	
	transition: all 0.2s ease-in;
}
.btn__gold:hover {
	filter: brightness(1.1);
}
.margin_80 {
	margin: 80px 0;
}

/* 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: 50px;
	border-radius: 30px;
	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 {
	text-align: center;
	margin: 0 0 30px 0;
	font-size: 24px;
	line-height: 130%;
	font-family: "Noto Serif", serif;
	font-weight: 700;
}
.popup input {
	height: 50px !important;
	width: 100% !important;	
	padding: 0 0 0 15px !important;
	margin: 0 0 10px 0 !important;
}
/* Header */
nav ul {
	display: flex;
	gap: 30px;
}
nav li a {
	text-decoration: none;
	color: #fff;
	display: block;	
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
}
.btn__menu {
	width: 28px;
	height: 23px;
	display: none;
}
.btn__menu span {
	display: block;
	position: relative;
	background: #fff;
	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: 90%;
	position: fixed;
	right: 5%;
	z-index: 9999;
	padding: 40px;
	transition: 0.3s;
	display: none;
	background: #fff;
	border-radius: 15px;
	top: 90px;
	-webkit-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);
}
.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;
	display: block;
	padding: 0 0 20px 0;
	font-family: "Noto Serif", serif;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}
.menu__mobile li:last-of-type a {
	padding: 0;
}
/* Home */
header {
    position: fixed;
	background: #191d29;
    width: 100%;
    top: 0;
    z-index: 99999;	
	border-bottom: 1px solid #2a3347;
}
.header__inner {
	align-items: center;
	justify-content: space-between;
	height: 70px;
}
.header__logo {
	height: 60px;
	width: auto;
}
.header__btn {
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
    font-weight: 700;
    font-size: 12px;
	text-transform: uppercase;
	background: #C9ADA7;
	background: linear-gradient(180deg, rgba(201, 173, 167, 1) 0%, rgba(175, 151, 145, 1) 100%);
	-webkit-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease-in;
}
.header__btn:hover {
	filter: brightness(1.1);
}
.block_start {
	height: 700px;
	background: #191d29;
	position: relative;
	overflow: hidden;
}
.block_start:before {
	content: "";
	background-image: url(images/noise.jpg);
	height: 700px;
	width: 100%;
	background-size: cover;
	mix-blend-mode: overlay;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.5;
}
.block_start .container {
	height: 100%;
	position: relative;
}
h1 {
	font-family: "Noto Serif", serif;
	font-weight: 500;
	font-size: 50px;
	line-height: 130%;
	color: #191d29;
}
.block_start h1 {
	color: #fff;
}
.block_start h1 strong {
	color: #c9ada7;
}
.block_start__subtitle {
	color: #fff;
	margin: 20px 0 0 0;
	font-size: 20px;
}
.block_start__img {
    position: absolute;
    right: -250px;
    top: 150px;
    height: 700px;
	width: auto;
    transform: rotate(15deg);
}
.block_start__container {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
.block_start__list {
	gap: 40px;
	margin: 50px 0 0 0;
}
.block_start__list > div {
	color: #fff;
	position: relative;
	padding: 0 0 0 30px;
	font-size: 18px;
	border-radius: 8px;
	background: #252f45;
	height: 70px;
	padding: 20px;
    display: flex;
    align-items: center;
	gap: 4px;
}
.block_start__list > div:before {
	content: "";
	display: block;
	background-image: url(images/check.svg);
	background-size: cover;
	width: 20px;
	height: 21px;
	position: absolute;
	left: 0;
	top: 0;
}
.block_start__form {
	position: absolute;
	width: 600px;
	background: #fff;
	bottom: 0;
	left: 20px;
	padding: 40px 30px;
	border-radius: 30px 30px 0 0;
	overflow: hidden;
	-webkit-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.4);
	box-shadow: 0px 8px 5px 0px rgba(0, 0, 0, 0.4);
}
.block_start__form:before {
	content: "";
	background-image: url(images/noise.jpg);
	height: 700px;
	width: 100%;
	background-size: cover;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.15;
	z-index: 0;
}
.block_start__form .frm_form_field,
.block_start__form .frm_submit {
	flex: 0 calc(33.33% - 6px);
}
.block_start__form .frm_form_fields .frm_fields_container {
	display: flex !important;
	gap: 10px;
}
.frm_start_over {
	display: none !important;
}
.block_benefits__list {
	border-radius: 0 0 30px 30px;
    padding: 50px 0;
	position: relative;
	overflow: hidden;
	border-bottom: #dee3e7 1px solid;
	border-right: #dee3e7 1px solid;
	border-left: #dee3e7 1px solid;
}
.block_benefits__list > div {	
	flex: 0 25%;
	height: 100px;
	padding: 0 30px;
	position: relative;
}
.block_benefits__icon {
	margin: 0 0 20px 0;
}
.block_benefits__list > div:after {
    content: "";
    display: block;
    background: #dee3e7;
    width: 1px;
    height: 150%;
    position: absolute;
    top: -25%;
    right: 0;
}
.block_benefits__list > div:last-of-type:after {
	display: none;
}
.block_benefits__list > div p {
	font-weight: 500;
}
.block_questions__text {
    max-width: 70%;
    line-height: 170%;
	color: #313131;
}
.block_questions__text ul {
	margin: 0 0 20px 0;
}
.block_questions__text li {
	padding: 0 0 0 32px;
	position: relative;
}
.block_questions__text li:before {
	content: "";
	display: block;
	background: #c9ada7;
	height: 1px;
	width: 20px;
	position: absolute;
	left: 0;
	top: 12px;
}
.block_questions__list {
	margin: 50px 0;
}
.block_questions__question {
    background: #f7f8fa;
    height: 90px;
    border-radius: 30px;
	font-family: "Noto Serif", serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 130%;
	display: flex;
	padding: 30px;
	border-bottom: 1px #e4e8f0 solid;
	align-items: center;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease-in;
}
.block_questions__question:after {
	content: "";
	display: block;
	position: absolute;
	right: 30px;
	top: 35px;
	background-image: url(images/arrow-up.svg);
	background-size: cover;
	width: 20px;
	height: 20px;
	transition: all 0.2s ease-in;
}
.block_questions__answer {
	border-radius: 0 0 30px 30px;	
	line-height: 150%;
	transition: all 0.2s ease-in;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}
.block_questions__answer p {
	padding: 0 0 15px 0;
}
.block_questions__answer ul {
	margin: 0 0 20px 0;
}
.block_questions__answer li {
	padding: 0 0 0 32px;
	position: relative;
}
.block_questions__answer li:before {
	content: "";
	display: block;
	background: #c9ada7;
	height: 1px;
	width: 20px;
	position: absolute;
	left: 0;
	top: 12px;
}
.block_questions__list_inner {
	border-radius: 30px;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.07);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.07);	
	margin: 0 0 30px 0;
}
.block_questions__list_inner.active .block_questions__answer {
	height: auto;
	overflow: auto;
	visibility: visible;
	padding: 30px;
}
.block_questions__list_inner.active .block_questions__question {
	border-radius: 30px 30px 0 0;
}
.block_questions__list_inner.active .block_questions__question:after {
	transform: rotate(90deg);
}
.block_about {
	padding: 60px 0;
	background: #f7f8fa;
}
.block_about__inner > div:nth-child(1) {
	flex: 0 calc(100% - 500px);
}
.block_about__inner > div:nth-child(2) {
    flex: 0 500px;
    display: flex;
    align-items: end;
    justify-content: end;
}
.block_about__text {
	line-height: 150%;
	color: #313131;
}
.block_about__call {
    border-radius: 15px;
    background: #fff;
    padding: 30px;
    width: 400px;
	border: 1px #e4e8f0 solid;
}
.block_about__call_title {
	font-family: "Noto Serif", serif;
	font-weight: 700;	
	font-size: 22px;
	margin: 0 0 30px 0;
}
.block_about__call_subtitle {
	margin: 0 0 30px 0;
	line-height: 150%;
}
.swiper_review {
	position: relative;
	padding: 0 0 50px 0;
}
.swiper_review .swiper-slide {
	padding: 40px;
	border-radius: 15px;
	border: 1px #e4e8f0 solid;
	position: relative;
	overflow: hidden;
}
.swiper_review .swiper-slide:after {
	content: "";
	display: block;
	border-bottom: 7px solid #2e3856;
	height: 100%;	
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
    z-index: 0;
}
.swiper_review__avatar {
    width: 120px;
    height: 120px;
    border-radius: 100px;
	position: relative;
    z-index: 2;
}
.swiper_review__review {
	line-height: 150%;
	margin: 25px 0 0 0;
	position: relative;
    z-index: 2;
}
.swiper_review__name {
	font-weight: 700;
	margin: 15px 0 0 0;
	position: relative;
    z-index: 2;
}
.swiper-scrollbar-drag {
    background: #c9ada7 !important;
}
.swiper-scrollbar {
    background: rgba(201, 173, 167, .1) !important;
}
.block_review__header_btns {
    width: 90px;
    height: 40px;
    position: relative;
    justify-content: space-between;
}
.swiper-button-prev {
	left: 0 !important;
}
.swiper-button-next {
	right: 0 !important;
}
.block_review__header {
    justify-content: space-between;
    align-items: baseline;
	margin: 0 0 50px 0;
}
.block_review__header > div:nth-child(1) {
	flex: 0 calc(100% - 90px);
}
.block_review__header > div:nth-child(2) {
	flex: 0 90px;
}
.block_review__header h2 {
	margin: 0;
}
.swiper-button-next, .swiper-button-prev {
    top: 0 !important;
    background: #c9ada7;
    border-radius: 60px;
    width: 40px !important;
    height: 40px !important;
	color: #fff !important;
	position: relative !important;
	top: -10px !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px !important;
}
.block_contacts__phone {
	font-family: "Noto Serif", serif;
	font-weight: 500;	
	font-size: 42px;	
	line-height: 120%;
	text-decoration: none;
	color: #C9ADA7;
}
.block_contacts__address {
	font-family: "Noto Serif", serif;
	font-weight: 700;	
	font-size: 26px;	
	line-height: 120%;	
}
.block_contacts__social {
	gap: 10px;
	margin: 30px 0;
}
.block_contacts__social img {
	height: 45px;
	width: 45px;
}
.block_contacts__inner {
    gap: 60px;
    align-items: center;
}
.block_contacts__inner > div {
	flex: 0 calc(50% - 40px);
}
.block_contacts iframe {
	border-radius: 15px;
}
.block_contacts__subtitle {
	font-family: "Noto Serif", serif;
	font-weight: 700;	
	font-size: 26px;	
	line-height: 120%;	
	color: #dee3e7;
	margin: 0 0 15px 0;
}
.swiper_review .swiper-wrapper,
.swiper_review .swiper-slide {
	height: fit-content !important;
}
/* Footer */
footer {
	background: #191d29;
	border-top: 1px solid #2a3347;	
}
.footer__inner {
	height: 90px;
	justify-content: space-between;
	align-items: center;
}