@import url('../fonts/Bebas-Neue-Pro/stylesheet.css');
:root {
	--color-white: #ffffff;
	--color-black: #000000;
	--color-bg: #ffffff;

	--container-width: 100%;
	--container-gap: 30px;
    --container-padding: 30px;
    --section-padding: 70px;

	--font-f: "Bebas Neue Pro", sans-serif;

	--logo-width: 110px;
	--logo-height: 68px;

	--transition: all .3s ease-in-out;
}
html {
	scrollbar-gutter: stable;
}
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;
	counter-reset: section-counter;
}
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;
}
input {
	outline: none !important;
}

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

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

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

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 {
	color: #000;
	font-family: var(--font-f);
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
}

h2 {
	color: #000;
	font-family: var(--font-f);
	font-size: 35px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

h3 {
	color: #000;
	font-family: var(--font-f);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

h4 {
	color: #000;
	font-family: var(--font-f);
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

h5 {
	color: #000;
	font-family: var(--font-f);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

h6 {
	color: #000;
	font-family: var(--font-f);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

p {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
	color: #000000;
	display: block;
}
.post_item_content li {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
	color: #000000;
}

.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;
}
.intro {
	height: 100vh;
	min-height: 700px;
	display: flex;
	align-items: flex-end;
	padding-bottom: 10%;
}
.intro_bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.intro_bg::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 29.29%, rgba(0, 0, 0, 0.40) 43.44%, rgba(0, 0, 0, 0.23) 57.34%, rgba(0, 0, 0, 0.08) 73.89%, rgba(0, 0, 0, 0.00) 92.83%);
}
.intro_content {
	display: flex;
	flex-direction: column;
	position: relative;
}
.intro_content::before {
	content: '';
	height: 100%;
	width: 90px;
	position: absolute;
	top: 0;
	bottom: 0;
	transform: translateX(-50%);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='232' viewBox='0 0 90 232' fill='none'%3E%3Cpath d='M35.0304 0L69.8766 34.6472L70.1012 176.172L89.8591 197.551L55.7635 232L20.9173 197.353L20.6928 55.8285L0 34.4475L35.0304 0Z' fill='white' fill-opacity='0.2'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
}
.intro_line {
	color: #FFF;
	font-family: var(--font-f);
	font-size: 95px;
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: 0.285px;
    white-space: pre-line;
}
.container_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 50px var(--container-gap);
	align-items: flex-start;
}
.container_grid_center > div {
    grid-column: 2;
}
header {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, #000 29.29%, rgba(0, 0, 0, 0.79) 43.44%, rgba(0, 0, 0, 0.47) 57.34%, rgba(0, 0, 0, 0.15) 73.89%, rgba(0, 0, 0, 0.00) 92.83%);
	padding: 15px 0;
}
.header_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_logo {
	width: var(--logo-width);
	height: var(--logo-height);
}
.header_right {
	display: flex;
	align-items: center;
	gap: 24px;
}
.header_item {
	display: flex;
	padding: 15px;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
	border-bottom: 1px solid transparent;
	color: #FFF;
	font-family: var(--font-f);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.066px;
	text-transform: uppercase;
}
.header_item.disabled {
	opacity: 0.5;
}
.header_item svg {
	width: 24px;
	height: 24px;
	min-width: 24px;
}
.widget {
	position: fixed;
	z-index: 3;
	padding: var(--container-padding);
	bottom: 5%;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 4px;
}
.btn {
	display: flex;
	padding: 10px;
	justify-content: center;
	align-items: center;
	gap: 6px;
	border: 1px solid #000;
	background: #FFF;
	color: #000;
	font-family: var(--font-f);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.066px;
	text-transform: uppercase;
	width: fit-content;
}
.btn_black {
	border: 1px solid #FFF;
	background: #000;
	color: #FFFFFF;
}
.btn_wide {
	width: 100%;
}
.btn svg {
	width: 23px;
	height: 23px;
	min-width: 23px;
}
.quote {
	padding: var(--section-padding) 0;
}
.title_wrapper {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin-bottom: var(--section-padding);
}
.title {
	color: #000;
	font-family: var(--font-f);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 3.96px;
	text-transform: uppercase;
}
.counter .title_wrapper {
	counter-increment: section-counter;
}
.counter .title_wrapper::after {
	content: counter(section-counter, decimal-leading-zero);
	color: #000;
	font-family: var(--font-f);
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.03px;
}
.text {
	color: #000;
	font-family: var(--font-f);
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-wrap: balance;
}
.services {
	padding: var(--section-padding) 0;
}
.services_list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 414px;
	width: 100%;
}
.services_list_item {
	display: flex;
	padding: 15px 0;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px dashed #000;
	width: 100%;
	transition: var(--transition);
	cursor: pointer;
}
.services_list_item:not(.active) {
	opacity: .7;
}
.services_list_item_main {
	display: flex;
	align-items: center;
	gap: 6px;
}
.services_list_item_main svg {
	width: 24px;
	min-width: 24px;
	height: 24px;
}
.services_list_item_title {
	color: #000;
	font-family: var(--font-f);
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.services_list_item_info {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.services_list_item_info span {
	color: #B1ADA7;
	font-family: var(--font-f);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.054px;
}
.services_list_item_price {
	color: #000;
	font-family: var(--font-f);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.066px;
}
.services_items {
	max-width: 414px;
	width: 100%;
}
.services_item {
	display: none;
	width: 100%;
}
.services_item:first-child {
    display: block;
}
.services_item_img {
	aspect-ratio: 414/232;
	margin-bottom: 28px;
	display: flex;
	overflow: hidden;
}
.services_item_price {
	color: #000;
	font-family: var(--font-f);
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.services_item_time {
	display: flex;
	align-items: center;
	gap: 6px;
}
.services_item_time svg {
	width: 24px;
	min-width: 24px;
	height: 24px;
	color: #B1ADA7;
}
.services_item_time_label {
	color: #B1ADA7;
	font-family: var(--font-f);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.054px;
}
.services_item_time_value {
	color: #000;
	font-family: var(--font-f);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.054px;
}
.services_item_description {
	margin-top: 14px;
	color: rgba(0, 0, 0, 0.75);
	font-family: var(--font-f);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.48px;
}
.masters {
	padding: var(--section-padding) 0;
}
.slider-progress {
	width: 100%;
	margin-top: 50px;
	background: #F2F2F2;
	height: 6px;
}
.slider-progress-bar {
	background: #0C1014;
	height: 100%;
	transition: var(--transition);
	width: 0;
}
.master_item_info {
	position: relative;
	margin-top: 28px;
}
.master_item_info > * {
	position: relative;
}
.master_item_info::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 180px;
	background: #FFF;
	filter: blur(10px);
}
.master_item_tag {
	display: flex;
	align-items: center;
	width: fit-content;
	padding: 4px 6px;
	gap: 6px;
	background: #000;
	color: #FFF;
	font-family: var(--font-f);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.066px;
	text-transform: uppercase;
}
.master_item_tag svg {
	width: 24px;
	min-width: 24px;
	height: 24px;
}
.master_item_name {
	color: #000;
	font-family: var(--font-f);
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.master_item {
	padding-right: 25%;
}
.about {
	padding: var(--section-padding) 0;
}
.about_wrapper {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 150%;
	aspect-ratio: 1860/1020;
	display: flex;
	justify-content: center;
}
.about_wrapper_info_wrapper {
	width: calc((100% + var(--container-gap)) / 3 + var(--container-gap));
	border-left: var(--container-gap) solid #FFFFFF;
	border-right: var(--container-gap) solid #FFFFFF;
	display: flex;
	align-items: flex-end;
}
.about_wrapper_info {
	height: fit-content;
	background-color: #FFFFFF;
	padding-top: 150px;
}
.about_wrapper_info .btn {
	margin-top: 30px;
}
.banner {
	aspect-ratio: 1920/960;
	padding: 85px 0;
	display: flex;
	align-items: flex-end;
}
.banner_bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.banner_bg::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 29.29%, rgba(0, 0, 0, 0.395) 43.44%, rgba(0, 0, 0, 0.235) 57.34%, rgba(0, 0, 0, 0.075) 73.89%, rgba(0, 0, 0, 0) 92.83%);
}
.banner .title,
.banner .text,
.banner .title_wrapper::after {
	color: #FFFFFF;
}
.front_blog {
	padding: var(--section-padding) 0;
}
.blog_item {
	max-width: 430px;
	width: 100%;
}
.blog_item_img {
	aspect-ratio: 430/350;
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.blog_item_info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.blog_item_date {
	color: #FFF;
	font-family: var(--font-f);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.066px;
	text-transform: uppercase;
	padding: 4px 6px;
	background: #000;
	width: fit-content;
}
.blog_item_title {
	color: #000;
	font-family: var(--font-f);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.blog_item_teaser {
	overflow: hidden;
	color: rgba(0, 0, 0, 0.75);
	text-overflow: ellipsis;
	font-family: var(--font-f);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	align-self: stretch;
}
.front_blog_btn {
	margin-top: 50px;
}
.faq {
	padding: var(--section-padding) 0;
}
.faq_item {
	transition: var(--transition);
	padding: 15px 0;
	border-bottom: 2px dashed #000;
}
.faq_item:not(:last-child) {
	margin-bottom: 30px;
}
.faq_item:not(.active) {
	opacity: .7;
}
.faq_item.active .faq_item_trigger svg {
	transform: scale(1, -1);
}
.faq_item_trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	cursor: pointer;
}
.faq_item_trigger svg {
	transition: var(--transition);
	width: 24px;
	min-width: 24px;
	height: 24px;
}
.faq_item_title {
	color: #000;
	font-family: var(--font-f);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.faq_item_content {
	display: none;
	color: #000;
	font-family: var(--font-f);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
	padding-top: 6px;
	padding-right: 54px;
}
footer {
	margin-top: var(--section-padding);
	padding: var(--section-padding) 0 30px;
	background: #FAFAFA;
}
.footer_left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 200px;
}
.footer_logo {
	max-width: 242px;
	width: 100%;
	height: 150px;
}
.footer_text {
	color: rgba(0, 0, 0, 0.75);
	font-family: var(--font-f);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
	max-width: 430px;
	width: 100%;
}
.footer_center {
	border-left: 1px solid rgba(0, 0, 0, 0.20);
	padding: 0 30px 0 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.footer_menus {
	padding: 30px 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.menu_wrapper li > * {
	color: #000;
	font-family: var(--font-f);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.066px;
	text-transform: uppercase;
	display: flex;
	padding: 15px 0;
	align-items: center;
	gap: 8px;
	width: fit-content;
	border-bottom: 1px solid transparent;
}
.menu_wrapper li > span {
	opacity: 0.3;
}
.menu_wrapper li svg {
	width: 15px;
	min-width: 15px;
	height: 15px;
}
.socials {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.socials .btn {
	border: none;
}
.footer_right {
	border-left: 1px solid rgba(0, 0, 0, 0.20);
	padding: 0 30px 0 50px;
	height: 100%;
}
.footer_info {
	display: flex;
	flex-direction: column;
	max-width: 400px;
	width: 100%;
	padding: 30px 0;
	gap: 30px;
}
.footer_address {
	color: #000;
	font-family: var(--font-f);
	font-size: 42px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.126px;
	text-transform: uppercase;
}
.footer_item {
	color: #000000;
	width: fit-content;
	padding-left: 0;
	padding-right: 0;
}
.footer_marquee {
	padding: 30px 0;
	margin-top: 50px;
	opacity: 0.2;
	overflow: hidden;
	width: 100%;
}
.footer_marquee_item {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-right: 30px;
}
.marquee_track {
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	will-change: transform;
}
.footer_marquee_text {
	color: #000;
	font-family: var(--font-f);
	font-size: 90px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
.footer_marquee_item svg {
	width: 24px;
	min-width: 24px;
	height: 24px;
	color: #000000;
}
.footer_bottom {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}
.copyright {
	color: rgba(0, 0, 0, 0.75);
	font-family: var(--font-f);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
}
.footer_links {
	display: flex;
	align-items: center;
	gap: 34px;
}
.footer_links a {
	color: rgba(0, 0, 0, 0.75);
	font-family: var(--font-f);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
}
.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
	background: rgba(0, 0, 0, 0.40);
    transition: var(--transition);
    z-index: 5;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.sidebar {
    max-width: 500px;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    background-color: #FFFFFF;
    z-index: 100;
    display: flex;
    flex-direction: column;
	padding: 16px;
	transform: translateX(100%);
	will-change: transform;
}
.sidebar_body {
    overflow-y: auto;
    flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.sidebar_top {
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sidebar_close {
    width: 24px;
    min-width: 24px;
    height: 24px;
    color: #000000;
	align-self: flex-end;
}
.sidebar_close svg {
    width: 100%;
    height: 100%;
}
body.overlay_show {
    overflow: hidden;
}
.sidebar_title {
	color: rgba(0, 0, 0, 0.75);
	font-family: var(--font-f);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
	margin-bottom: 16px;
}
.sidebar_address {
	color: #000;
	font-family: var(--font-f);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.066px;
	text-transform: uppercase;
}
.contacts_wrapper_info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.header_black {
	background: none;
	position: relative;
}
.header_black .header_item {
    color: #000000;
}
.description {
	color: rgba(0, 0, 0, 0.75);
	font-family: var(--font-f);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.48px;
	max-width: 430px;
	width: 100%;
}
.blog_title_wrapper {
    margin-bottom: var(--section-padding);
}
.blog_title_wrapper .title_wrapper {
	margin-bottom: 10px;
}
.pagination_container {
	margin-top: 50px;
}
.pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
    max-width: 430px;
    width: 100%;
}
.pagination_link {
	color: #000;
	font-family: var(--font-f);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.066px;
	text-transform: uppercase;
	padding: 15px 0;
	border-bottom: 1px solid transparent;
}
span.pagination_link {
	opacity: 0.5;
}
.pagination_numbers {
	display: flex;
	align-items: center;
	gap: 10px;
}
.pagination_numbers > * {
	padding: 15px;
	color: rgba(0, 0, 0, 0.7);
	font-family: var(--font-f);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.066px;
	text-transform: uppercase;
	border-bottom: 1px solid transparent;
}
.pagination_numbers .current {
	color: #000000;
	border-color: #000000;
}
.post {
	padding: var(--section-padding) 0;
}
.post_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 70px;
}
.post_img {
	aspect-ratio: 70/57;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	overflow: hidden;
}
.post_item_title {
	color: #000;
	font-family: var(--font-f);
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.post_item_content {
	margin-top: var(--section-padding);
}
.post_item_content img {
	margin: var(--section-padding) 0;
}
.post_item_content p {
	margin-bottom: 18px;
}
.post_item_content > *:last-child {
	margin-bottom: 0;
}
.about_section {
	padding: var(--section-padding) 0;
}
.about_section .container {
	align-items: flex-end;
}
.about_section_text {
	color: rgba(0, 0, 0, 0.60);
	font-family: var(--font-f);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.48px;
}
.about_section_imgs {
	margin-top: 21px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-gap: 14px;
}
.about_section_left {
	max-width: 443px;
	width: 100%;
}
.about_section_center {
	display: flex;
	overflow: hidden;
}
.about_section_right {
	color: #000;
	font-family: var(--font-f);
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	max-width: 417px;
	width: 100%;
}
.scroll_section {
    min-height: 300vh;
}
.scroll_section_wrapper {
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
}
.scroll_images_wrapper {
    z-index: 1;
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.scroll_image {
    z-index: 1;
    width: 15vw;
    will-change: transform;
    position: absolute;
}
.scroll_image:nth-of-type(1) {
    left: 70%;
    top: 20%;
}
.scroll_image:nth-of-type(2) {
    left: 13%;
    top: 9%;
}
.scroll_image:nth-of-type(3) {
    left: 22%;
    top: 68%;
}
.scroll_image:nth-of-type(4) {
    left: 62%;
    top: 78%;
}
.scroll_section_info {
    max-width: 630px;
    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_title {
	color: #000;
	text-align: center;
	font-family: var(--font-f);
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.lang_switcher {
    position: relative;
}
.lang_switcher .dropdown_menu {
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
}
.dropdown_menu .header_item {
    padding: 10px 15px;
}
