@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('/assets/fonts/TT_Ricordi_Marmo_Trial_Regular/stylesheet.css');
:root {
	--color-white: #ffffff;
	--color-black: #000000;
	--color-bg: #ffffff;
	--Accent: #540206;
	--Floral-white: #FCF6ED;

	--color-hover: var(--Accent);
	--container-width: 1760px;
    --container-padding: 15px;

	--font-f: "Montserrat", sans-serif;
	--font-r: "TT Ricordi Marmo Trial Regular", sans-serif;

	--logo-width: 240px;
	--logo-height: 57px;

	--transition: all .3s ease-in-out;
}

body {
	margin: 0;
	font-family: var(--font-f);
	font-size: 1rem;
	font-weight: 400;
	line-height: normal;
	color: var(--color-black);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
html, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	padding: 0;
	border: none;
	font: inherit;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
	outline: none !important;
	transition: var(--transition);
}
input,
textarea {
	outline: none !important;
}

input[type='number'] {
    -moz-appearance: textfield;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

svg {
	fill: transparent;
	width: 100%;
	height: 100%;
}

a {
	text-decoration: none !important;
	color: inherit;
	display: inline-block;
	position: relative;
	outline: none !important;
	transition: var(--transition);
}

a:hover {
	color: var(--color-hover);
}

section {
	position: relative;
}

strong, b {
	font-weight: 700;
}

.container {
	width: 100%;
	max-width: calc(var(--container-width) + var(--container-padding) + var(--container-padding));
	margin: 0 auto;
	padding: 0 var(--container-padding);
	position: relative;
	z-index: 2;
}

h1 {
	font-family: var(--font-f);
	font-style: normal;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.2;
}

h2 {
	font-family: var(--font-f);
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1.2;
}

h3 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: 2.1rem;
	line-height: 1.16;
}

h4 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.2;
}

h5 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.2;
}

h6 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.2;
}

p {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.2;
	display: block;
}

.img_cont img,
.img_cont video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.img_cover img,
.img_cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 20px 0;
	transition: var(--transition);
	z-index: 7;
}
header.open {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
}
.header_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.header_logo {
	width: var(--logo-width);
	height: var(--logo-height);
}
.header_center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.burger_btn {
    display: flex;
    align-items: center;
	font-family: var(--font-f);
	font-weight: 600;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--Accent, #540206);;
	min-width: 100px;
}
.burger_btn svg {
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin-right: 7px;
}
.header_left {
	display: flex;
	align-items: center;
	gap: 32px;
	flex: 1;
}
.location_btn {
	display: flex;
	align-items: center;
}
.header_info_icon {
	width: 40px;
	min-width: 40px;
	height: 40px;
	margin-right: 8px;
	padding: 8px;
	background: rgba(255, 255, 255, 0.2);
	color: #1A1A1A;
}
.location_btn_texts {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}
.location_btn_top {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 11px;
	line-height: 1.36;
	letter-spacing: 0.11px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #1A1A1A;
}
.location_btn_bottom {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	color: var(--Accent, #540206);;
}
.header_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 32px;
	flex: 1;
}
.header_info {
	display: flex;
	align-items: center;
}
.header_info_wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-gap: 4px;
}
.header_phone {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	color: var(--Accent, #540206);;
}
.header_info_time,
.header_info_time p {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 11px;
	line-height: 1.36;
	letter-spacing: 0.11px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #1A1A1A;
}
.header_info_time b,
.header_info_time strong {
	font-weight: 500;
}
.header_btn {
	padding: 15px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	text-align: center;
	background: var(--Accent, #540206);
	font-family: var(--font-f);
	font-weight: 600;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FCF6ED;
}
.intro__slide {
    overflow: hidden;
	height: 100vh;
	min-height: 700px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
}
.intro::before {
	content: '';
	width: 100%;
	height: 20%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
}
.slider_arrow {
	display: -ms-flexbox;
    display: flex;
	-ms-flex-align: center;
    align-items: center;
	-ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    height: 50px;
    opacity: .5;
    width: 90px;
	color: #FFFFFF;
	z-index: 1
}
.slider_arrow:hover:not(:disabled) {
    opacity: 1
}
.slider_arrow:disabled {
	cursor: default;
    opacity: .3
}
.slider_arrow-prev svg {
    transform: scaleX(-1)
}
.slider_arrow-prev {
    left: 80px;
}
.slider_arrow-next {
    right: 80px;
}
.intro_slide_wrapper {
    height: 100%;
    display: flex;
    align-items: center;
	justify-content: center;
	flex-direction: column;
}
.intro_slide_title {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 36px;
	line-height: 100%;
	text-align: center;
	color: #1A1A1A;
}
.intro_slide_wrapper .btn {
	margin-top: 46px;
}
.btn {
	--color: #540206;
	padding: 19px 46px;
	font-family: var(--font-f);
	font-weight: 600;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
	color: var(--color);
	position: relative;
	overflow: hidden;
}
.btn .btn_border {
    position: absolute;
    background: var(--color);
}
.btn .top {
    top: 0;
    left: 30px;
    width: 100%;
    height: 1px;
	transition: left .4s, background .4s;
}
.btn .left {
    left: 0;
    width: 1px;
    height: 100%;
	transition: top .3s .1s, background .4s;
}
.btn .left-bottom {
    top: 30px;
}
.btn .left-top {
    top: -100%;
}
.btn .bottom {
    bottom: 0;
    width: 100%;
    height: 1px;
	transition: right .4s .2s, background .4s;
}
.btn .bottom-right {
    right: 0;
}
.btn .bottom-left {
    right: 100%;
}
.btn .right {
    right: 0;
    width: 1px;
    height: 100%;
    top: 0;
	transition: top .4s .1s, background .4s;
}
.intro_bottom {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	text-transform: uppercase;
	color: #012B14;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
	padding: 20px;
	z-index: 3;
}
.quote_section {
	padding: 80px 0;
}
.quote_wrapper {
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 775px;
	width: 100%;
	margin: auto;
}
.quote_text {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 32px;
	line-height: 1.5;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #1A1A1A;
}
.quote_logo {
	margin-top: 32px;
	width: 70px;
	color: #540206;
}
.front_item_bg {
	position: absolute;
	width: 100%;
	height: 100%;
}
.front_item_wrapper {
	aspect-ratio: 1/1;
    background-color: #d8d8d8;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}
.front_item_wrapper:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.front_item_bg_wrapper {
    z-index: 2;
    justify-content: center;
    align-items: center;
    display: flex;
	flex-direction: column;
    position: absolute;
    inset: 0%;
	padding: 35px;
}
.front_item_title {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 32px;
	line-height: 28px;
	text-align: center;
	vertical-align: middle;
	color: #FFFFFF;
}
.front_item_logo {
	width: 50px;
	height: 8px;
	margin-bottom: 10px;
}
.front_items {
	margin-bottom: 125px;
    min-height: 80vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.front_items_slider {
	width: 100%;
}
.front_items_slide {
    color: #fff;
    text-align: center;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 20%;
    margin-right: 2%;
    padding: 0;
    display: flex;
    position: relative;
}
.front_item_wrapper img {
    object-fit: cover;
    width: 200%;
    max-width: none;
    height: 100%;
    position: absolute;
    inset: 0% auto 0% 0%;
}
.flickity-enabled.is-fade .flickity-slider > * {
	pointer-events: none;
	z-index: 0;
    transition: var(--transition);
}
.flickity-enabled.is-fade .flickity-slider > .is-selected {
	pointer-events: auto;
	z-index: 1;
}
.front_items_slider .flickity-viewport {
	overflow: visible;
}
.dots_section {
	margin-bottom: 140px;
}
.dots_section_dots {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1920/1100;
    display: flex;
    align-items: flex-end;
}
.dots_section_dot {
	width: 35px;
	min-width: 35px;
	height: 35px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .2);
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	vertical-align: middle;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	transition: var(--transition);
}
.dots_section_dot::before {
	content: '';
	width: 65px;
	min-height: 65px;
	height: 65px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: var(--transition);
	background: #000000;
	border-radius: 50%;
	opacity: 0;
}
.dots_section_dot:hover {
	background: #540206;
    color: #FFFFFF;
}
.dots_section_dot:hover::before {
	opacity: .3;
}
.dots_section_item {
	max-width: 567px;
	width: 100%;
	display: grid;
	grid-template-columns: 250px 1fr;
	position: absolute;
	left: 0;
	top: 57px;
	background: #FFFFFF;
}
.dots_section_item_info {
	padding: 15px;
}
.dots_section_item_info_top {
	display: flex;
	align-items: center;
	gap: 22px;
}
.dots_section_item_img {
    width: 100%;
    min-height: 250px;
}
.dots_section_item_number {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 36px;
	line-height: 48px;
	text-align: center;
	vertical-align: middle;
	color: #540206;
}
.dots_section_item_info_top svg {
	width: 124px;
	height: 20px;
	color: #540206;
}
.dots_section_item_info_text {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.11px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #1A1A1A;
	margin-top: 15px;
}
.dots_section_item_bottom {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #D9D9D9;
}
.dots_section_item_bottom_title {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 11px;
	line-height: 15px;
	letter-spacing: 0.11px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #616161;
	margin-bottom: 10px;
}
.dots_section_item_services {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 4px 0;
}
.dots_section_item_service {
	padding: 0 8px;
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	color: #1A1A1A;
	position: relative;
}
.dots_section_item_service::after {
	content: '';
	width: 0;
	height: 1px;
	position: absolute;
	bottom: 0;
	right: 4px;
	background-color: var(--color-hover);
	transition: var(--transition);
}
.dots_section_item_service:not(:last-child) {
	padding-right: 4px;
	margin-right: 4px;
	border-right: 1px solid #E0E0E0;
}
.inform_block {
	margin-bottom: 140px;
}
.inform_block_wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
}
.inform_block_info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 50px;
}
.inform_block_suptitle {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 11px;
	line-height: 15px;
	letter-spacing: 0.11px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #1A1A1A;
	margin-bottom: 14px;
}
.inform_block_title {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 45px;
	line-height: 1;
	vertical-align: middle;
	text-transform: uppercase;
	color: #540206;
}
.inform_block_bottom {
	max-width: 500px;
	width: 100%;
}
.inform_block_text {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.11px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #1A1A1A;
}
.inform_block_bottom .btn {
	margin-top: 50px;
}
.inform_block_img {
	aspect-ratio: 880/840;
}
.scroll_section {
	min-height: 300vh;
}
.scroll_section_wrapper {
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
}
.scroll_section_info {
	max-width: 775px;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    z-index: 2;
    height: 100%;
    padding-top: 7rem;
    padding-bottom: 7rem;
    position: relative;
}
.scroll_section_logo {
	width: 70px;
	height: 47px;
	color: #540206;
	margin-bottom: 50px;
}
.scroll_section_title {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 70px;
	line-height: 90px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #1A1A1A;
}
.scroll_section_info .btn {
	margin-top: 50px;
}
footer {
	margin-top: 88px;
	padding: 120px 0 40px;
}
.scroll_images_wrapper {
    z-index: 1;
    position: absolute;
	inset: 0;
    overflow: hidden;
}
.scroll_image {
    z-index: 1;
    width: 15vw;
    object-fit: contain;
	will-change: transform;
	position: absolute;
}
.scroll_image:nth-of-type(1) {
	left: 65%;
	top: 20%;
}
.scroll_image:nth-of-type(2) {
	left: 18%;
	top: 20%;
}
.scroll_image:nth-of-type(3) {
	left: 26%;
	top: 50%;
}
.scroll_image:nth-of-type(4) {
	left: 70%;
	top: 45%;
}
.inform_block_dark {
	color: #1A1A1A;
}
.faq {
	margin-top: 88px;
}
.faq_wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.faq_left .btn {
	margin-top: 50px;
}
.faq_accordion_title {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 20px 0;
    cursor: pointer;
    transition: var(--transition);
}
.faq_accordion_title span {
	max-width: 600px;
	width: 100%;
    font-family: var(--font-f);
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
    vertical-align: middle;
    text-transform: uppercase;
}
.faq_accordion_title svg {
	width: 32px;
	min-width: 32px;
	height: 32px;
	transition: var(--transition);
}
.faq_accordion_title.active svg {
	transform: rotate(180deg);
}
.faq_accordion_body {
    margin-bottom: 20px;
    display: none;
}
.faq_accordion_line {
	height: 1px;
	width: 0;
	background-color: #E0E0E0;
	display: inline-block;
}
.footer_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 450px;
	width: 100%;
	margin: auto;
}
.footer_logo {
	width: 131px;
	height: 88px;
	margin-bottom: 80px;
}
.copyright {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	vertical-align: middle;
	color: #9E9E9E;
	margin-bottom: 16px;
}
.footer_menu {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
}
.footer_menu li a,
.footer_menu li span {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	vertical-align: middle;
	text-decoration: underline !important;
	text-decoration-style: solid;
	text-decoration-thickness: 0%;
	text-decoration-skip-ink: auto;
	color: #000000;
}
.intro_wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding-top: 100px;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
    width: 100%;
}
.breadcrumbs {
	display: flex;
	align-items: center;
	padding: 50px 0;
}
.breadcrumbs a {
	font-family: var(--font-f);
	font-weight: 600;
	font-size: 10px;
	line-height: 100%;
	text-transform: uppercase;
	color: #9E9E9E;
	display: flex;
	align-items: center;
}
.breadcrumbs a::after {
	content: '';
	width: 16px;
	min-width: 16px;
	height: 16px;
	margin: auto 6px;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 4C6 4 9.99999 6.94593 10 8C10 9.05413 6 12 6 12' stroke='%239E9E9E' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.breadcrumbs span {
	font-family: var(--font-f);
	font-weight: 600;
	font-size: 10px;
	line-height: 100%;
	text-transform: uppercase;
	color: #540206;
}
.intro_info {
	max-width: 500px;
	width: 100%;
	margin-top: 120px;
}
.intro_title {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 45px;
	line-height: 1;
	vertical-align: middle;
	text-transform: uppercase;
	color: #1A1A1A;
}
.intro_text {
	margin-top: 60px;
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.11px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #1A1A1A;
}
.intro_content {
	display: flex;
	flex-direction: column;
}
.intro_img {
    flex: none;
    width: 50%;
    position: absolute;
    inset: 0% 0% 0% auto;
}
.intro_scroll {
    height: 300vh;
    position: relative;
}
.intro_scroll_sticky {
	height: 100vh;
    position: sticky;
    top: 0;
}
.advantages {
	margin-top: 84px;
	border-top: 1px solid #E0E0E0;
	border-bottom: 1px solid #E0E0E0;
}
.advantages_wrapper {
	border-left: 1px solid #E0E0E0;
	border-right: 1px solid #E0E0E0;
	padding-bottom: 150px;
}
.advantages_titles {
	padding: 35px 0;
	max-width: 800px;
	margin: auto;
}
.advantages_text {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.11px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #1A1A1A;
	margin-bottom: 16px;
}
.advantages_title {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 45px;
	line-height: 1;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #540206;
}
.advantages_items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-bottom: 1px solid #E0E0E0;
}
.advantages_items_4 {
	grid-template-columns: repeat(2, 1fr);
}
.advantages_item {
	border-top: 1px solid #E0E0E0;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 55px;
}
.advantages_item:nth-of-type(3n+2) {
	border-left: 1px solid #E0E0E0;
	border-right: 1px solid #E0E0E0;
}
.advantages_items_4 .advantages_item:nth-of-type(3n+2) {
	border-left: none;
	border-right: none;
}
.advantages_items_4 .advantages_item:nth-of-type(2n+1) {
	border-right: 1px solid #E0E0E0;
}
.advantages_item_icon {
	width: 48px;
	min-width: 48px;
	height: 48px;
	margin-bottom: 35px;
}
.advantages_item_title {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.11px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #1A1A1A;
}
.courses_item {
	padding: 50px 0;
	border-bottom: 1px solid #F0F0F0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	position: relative;
}
.courses_left {
	padding-right: 10px;
	max-width: 680px;
	width: 100%;
}
.courses_item_icon_info {
    display: flex;
    align-items: center;
}
.courses_item .inform_block_top .courses_item_icon_info {
	margin-top: 14px;
}
.courses_item_body {
	margin-top: 50px;
}
.courses_item_body,
.courses_item_body p,
.courses_item_body li {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.11px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #616161;
}
.courses_item_body > *:not(:last-child) {
	margin-bottom: 13px;
}
.courses_item_bottom {
	margin-top: 50px;
}
.courses_item_actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 50px;
}
.courses_item_bottom_note {
	margin-top: 10px;
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.11px;
	vertical-align: middle;
	color: #616161;
}
.courses_item_bottom_note span {
	font-weight: 700;
	color: #FF0000;
}
.courses_item_logo {
	position: absolute;
	bottom: 50px;
	right: 0;
	width: 300px;
	color: #FCF6ED;
}
.courses_right {
    display: grid;
    grid-gap: 50px;
}
.courses_right.row_2 {
    grid-template-columns: repeat(2, 1fr);
}
.courses_stage_duration {
	font-family: var(--font-f);
	font-weight: 700;
	font-size: 11px;
	line-height: 15px;
	letter-spacing: 0.11px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 4px;
	background-color: #1A1A1A;
}
.courses_stage_title {
	font-family: var(--font-f);
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	color: #1A1A1A;
	padding: 4px;
	margin-bottom: 16px;
}
.courses_stage_body p,
.courses_stage_body li {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 13px;
	line-height: 20px;
	letter-spacing: 0.11px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #616161;
}
.courses_stage_body ul {
	list-style-type: " • ";
	list-style-position: inside;
}
.courses_item_dark .inform_block_title,
.courses_item_dark .location_btn_bottom,
.courses_item_dark .btn {
	--color: #000000;
    color: #000000;
}
.courses_item_dark .courses_item_logo {
	color: #F2F2F2;
}
.services_top {
	display: flex;
	justify-content: space-between;
    gap: 10px;
}
.services_top .courses_item_actions {
	margin-top: 50px;
}
.services_masters {
	display: flex;
	gap: 10px;
    flex-wrap: wrap;
}
.services_master {
	padding: 40px 24px;
	border: 1px solid #000000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 285px;
	position: relative;
}
.services_master:first-child {
	border-color: #E4E4E4;
}
.services_master_title {
	font-family: var(--font-f);
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	text-align: center;
	color: #000000;
}
.services_master_price {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	margin-top: 25px;
	color: #000000;
	text-align: center;
}
.services {
	margin-top: 88px;
    overflow: hidden;
}
.services .inform_block_title,
.services .location_btn_bottom,
.services .btn {
	--color: #000000;
    color: #000000;
}
.label {
    font-family: var(--font-f);
    font-weight: 700;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.11px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 4px;
	width: fit-content;
    background-color: #1A1A1A;
}
.services_master .label {
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
}
.services_items {
    --gap: 34px;
	margin-top: 88px;
    width: calc(100% + var(--gap));
    margin-right: calc(var(--gap) * -1);
}
.services_item {
	display: flex;
	flex-direction: column;
    width: calc(100% / 3);
    padding-right: var(--gap);
}
.services_item_img {
	aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
}
.services_item_info {
	margin-top: 16px;
}
.services_item_info .label {
	margin-bottom: 6px;
}
.services_item_text,
.services_item_text p {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 13px;
	line-height: 22px;
	letter-spacing: 0.11px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #000000;
}
.services_img {
    flex-direction: column;
    align-items: center;
    height: 200vh;
    display: flex;
    position: relative;
}
.services_img_content {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    display: flex;
    position: sticky;
    top: 0;
}
.services_img_image {
    z-index: 0;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.services_img_content_bottom {
    justify-content: center;
    align-items: center;
	flex-direction: column;
    width: 100%;
    max-width: 80rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    position: absolute;
    inset: 0%;
}
.services_img_card {
    z-index: 1;
    overflow: hidden;
	background-color: #000000;
	padding: 24px 24px 20px;
	max-width: 608px;
	width: 100%;
}
.services_img_card_window {
	max-width: 608px;
	width: 100%;
	height: 304px;
	border: 24px solid #000000;
	border-top: none;
	margin-top: -1px;
}
.services_img_card_info {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.services_img_card_logo {
	width: 62px;
	height: 10px;
	margin-bottom: 29px;
	color: #FFFFFF;
}
.services_img_card_title {
	font-family: var(--font-f);
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	text-align: center;
	color: #FFFFFF;
}
.services_img_card_text {
	margin-top: 29px;
}
.services_img_card_text,
.services_img_card_text p {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 13px;
	line-height: 22px;
	letter-spacing: 0.11px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	color: #FFFFFF;
}
.services_img_card_text > *:not(:last-child) {
	margin-bottom: 13px;
}
.services_img_window_top .services_img_content_bottom {
	flex-direction: column-reverse;
}
.services_img_window_top .services_img_card_window {
	border: 24px solid #000000;
	border-bottom: none;
	margin-top: 0;
	margin-bottom: -1px;
}
.image_section {
	margin-top: 88px;
	aspect-ratio: 1920/960;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: flex-end;
	padding: 56px 0;
}
.image_section::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.2);
}
.image_section_text {
	font-family: var(--font-r);
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	vertical-align: middle;
	text-transform: uppercase;
	color: #FCF6ED;
}
.services_items_control {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.services_items_btns {
    display: flex;
    align-items: center;
    gap: 20px;
}
.services_items_btns .slider_arrow {
    color: #1A1A1A;
    position: static;
    transform: none;
}
.img_title_section {
    margin-top: 80px;
}
.img_title_section_wrapper {
    max-width: 1100px;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 65px;
    align-items: flex-end;
}
.img_title_section_title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
}
.img_title_section_title p {
    font-family: var(--font-r);
    font-weight: 400;
    font-size: 65px;
    line-height: 1;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
}
.img_title_section_title sup {
    font-family: var(--font-f);
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    vertical-align: super;
}
.img_title_section_img {
    aspect-ratio: 2 / 3;
    width: 100%;
    overflow: hidden;
}
.img_title_section_text {
    font-family: var(--font-f);
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.11px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
    max-width: 308px;
    width: 100%;
    padding-bottom: 80px;
}
.img_title_section_text * {
    font-family: var(--font-f);
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.11px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
}
.img_title_section_text > *:not(:last-child) {
    margin-bottom: 13px;
}
.title_section {
    margin: 88px 0;
}
.title_section_text {
    font-family: var(--font-r);
    font-weight: 400;
    font-size: 65px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
}
.intro__slide_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.header_drop {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 80px;
    border-top: 1px solid #FFFFFF;
    margin-top: 20px;
}
.header_drop_title {
    font-family: var(--font-r);
    font-weight: 400;
    font-size: 128px;
    line-height: 100%;
    color: #000000;
    text-transform: uppercase;
    padding: 55px 0;
}
.header_drop_wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}
.header_drop_menu {
    display: flex;
    flex-direction: column;
}
.header_drop_menu li:not(:last-child) {
    margin-bottom: 32px;
}
.header_drop_menu li > * {
    font-family: var(--font-f);
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1A1A1A;
}
.header_drop_menu li > span,
.header_drop_menu li > a.active {
    color: #540206;
}
.header_drop_left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.header_drop_contacts {
    display: flex;
    flex-direction: column;
}
.header_drop_contacts li:not(:last-child) {
    margin-bottom: 10px;
}
.header_drop_contacts_item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-r);
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #000000;
}
.social_icon {
    background: rgba(234, 234, 234, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    padding: 8px;
    width: 40px;
    min-width: 40px;
    height: 40px;
}
.header_drop_socials {
    display: flex;
    align-items: center;
    gap: 8px;
}
.services_menu {
    display: flex;
    flex-direction: column;
}
.services_menu li > * {
    display: grid;
    grid-template-columns: 50px auto 24px;
    grid-gap: 15px;
    align-items: center;
    font-family: var(--font-f);
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
    padding: 25px 15px;
    border-bottom: 1px solid #E4E4E4;
}
.services_menu li > * > span {
    font-family: var(--font-r);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #000000;
}
.services_menu li > * > svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}
#page-loader {
    position: fixed;
    inset: 0;
    background: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: var(--transition);
    padding: var(--container-padding);
    pointer-events: none;
    opacity: 0;
}
html.nprogress-busy #page-loader,
html.loading #page-loader {
    opacity: 1;
}
.loader-logo {
    width: 240px;
    margin-bottom: 50px;
}
.loader-line {
    max-width: 700px;
    width: 100%;
    height: 4px;
    background: #FCF6ED;
    overflow: hidden;
    position: relative;
}
.loader-line span {
    position: absolute;
    left: -40%;
    top: 0;
    height: 100%;
    width: 40%;
    background: #000000;
    animation: loader-line 1.2s ease-in-out infinite;
}
@keyframes loader-line{
    0%{
        left:-40%;
    }
    100%{
        left:100%;
    }
}
.loader_svg {
    width: 150px;
    height: 150px;
}
.loader_svg svg {
    fill: var(--Accent);
}
.services_page {
    padding-top: 100px;
}
.services_page_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.services_page_img {
    display: flex;
    padding-right: 80px;
    aspect-ratio: 1/1;
}
.admin-edit-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--Accent, #540206);
    color: #FCF6ED;
    padding: 12px 18px;
    border-radius: 6px;
    z-index: 99999;
    font-size: 14px;
}
.locations_wrapper {
    margin-top: 84px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}
.locations_item {
    display: flex;
    flex-direction: column;
}
.locations_item_info {
    margin-top: 22px;
}
.locations_item iframe {
    aspect-ratio: 830/400;
    width: 100%;
    height: auto;
}
.locations_item_title {
    display: flex;
    align-items: center;
    font-family: var(--font-r);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #000000;
}
.locations_item_title svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.locations_item_address {
    margin-top: 8px;
    font-family: var(--font-f);
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.11px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
}
.modal_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
}
.modal_window {
    background: #fff;
    padding: 16px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 0 18px 0 #00000033;
    position: relative;
}
.notyf__message {
    font-family: var(--font-f);
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.notyf__toast {
    width: 100%;
    max-width: 400px;
}
.notyf__icon {
    width: 44px;
    height: 44px;
    padding: 10px;
}
.notyf__icon svg {
    width: 100%;
    height: 100%;
}
.notyf__toast--error {
    box-shadow: 1px 10px 12px 0 #5F050521;
    border-left: 4px solid #C10000;
}
.notyf__toast--success {
    box-shadow: 1px 10px 12px 0 #53EB0C21;
    border-left: 4px solid #53EB0C;
}
.notyf__ripple {
    height: 500px;
    width: 500px;
}
.input_wrappers {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
}
.input_wrapper {
    position: relative;
}
.input_wrapper label {
    font-family: var(--font-f);
    font-weight: 400;
    font-size: 10px;
    line-height: 17px;
    vertical-align: middle;
    color: #1A1A1A;
    transition: var(--transition);
    position: absolute;
    left: 11px;
    transform: translateY(-50%);
    padding-right: 5px;
    padding-left: 5px;
    background-color: #FFFFFF;
}
.input_wrapper em {
    color: #C60C0C;
}
.input_wrapper input,
.input_wrapper textarea {
    width: 100%;
    border: 1px solid #E0E0E0;
    padding: 15px 11px;
    font-family: var(--font-f);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    vertical-align: middle;
    color: #1A1A1A;
    transition: var(--transition);
}
.input_wrapper input:focus,
.input_wrapper textarea:focus {
    border-color: #540206;
}
.input_wrapper input:focus + label,
.input_wrapper textarea:focus +label {
    color: #540206;
}
.input_wrapper input::placeholder,
.input_wrapper textarea::placeholder {
    color: #9E9E9E;
}
.input_wrapper.error_input input {
    color: #C60C0C;
    border-color: #C60C0C;
}
.input_wrapper.error_input label {
    color: #C60C0C;
}
.input_wrapper textarea {
    height: 100px;
    resize: none;
}
.modal_close {
    width: 24px;
    height: 24px;
    color: #1A1A1A;
}
.modal_title {
    font-family: var(--font-f);
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    text-transform: uppercase;
    color: #9E9E9E;
}
.modal_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.modal_subtitle {
    font-family: var(--font-f);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
    text-transform: uppercase;
    color: #1A1A1A;
    margin-bottom: 20px;
}
ul li p {
    display: inline;
}
.quote_top {
    width: 35px;
    height: 29px;
    margin-bottom: 20px;
}
.quote_wrapper_2 {
    max-width: 1150px;
}
.quote_signature {
    margin-top: 32px;
    width: 180px;
    height: 20px;
}
.title_text_section {
    padding: 88px 0 0;
}
.title_text_section_title {
    font-family: var(--font-r);
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #540206;
    max-width: 250px;
    margin-left: auto;
    margin-right: 0;
}
.title_text_section_text {
    max-width: 388px;
}
.title_text_section_text * {
    font-family: var(--font-f);
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.11px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #1A1A1A;
}
.title_text_section_text > *:not(:last-child) {
    margin-bottom: 13px;
}
.title_text_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 180px;
}
.gallery {
    margin-top: 88px;
}
.gallery_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 100px 0;
}
.gallery_item {
    display: flex;
    flex-direction: column;
}
.gallery_item:nth-of-type(odd) {
    padding-right: 200px;
}
.gallery_title {
    margin-top: 22px;
    font-family: var(--font-f);
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.11px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #1A1A1A;
}
button:disabled {
    opacity: .7;
}
