@import url('../fonts/Mont/stylesheet.css');
:root {
	--color-white: #ffffff;
	--color-black: #191919;
	--color-bg: #EDEDED;
	--color-hover: #99C33B;
	--color-active: #779348;
	--Logo-green: #779348;
	--Yellow: #F2B705;
	
	--container-width: 100%;
    --container-padding: 3.13rem;
    --header-height: 5.625rem;

	--font-f: 'Mont';
	--font-inter: 'Inter', sans-serif;
	
	--transition: all .3s ease-in-out;

	--size-h1: 3rem;
	--size-h2: 2.5rem; 
	--size-h3: 2.2rem;
	--size-h4: 1.8rem;
	--size-h5: 1.5rem;
	--size-h6: 1.2rem;
	--size-p: 1rem;

	--logo-height: 3.81738rem; 
	--logo-footer-height: 4.75rem; 
}


body {
	margin: 0;
	font-family: var(--font-f);
	font-size: var(--size-p);
	font-weight: 400;
	line-height: normal;
	color: var(--color-black);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
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;
}

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: var(--size-h1);
	line-height: 96.2%;
	color: var(--color-white);
}

h2 {
	font-family: var(--font-f);
	font-weight: 700;
	font-size: var(--size-h2);
	line-height: 96.2%;
	color: var(--color-white);
}

h3 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: var(--size-h3);
	line-height: 1.16;
	color: var(--color-black);
}

h4 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: var(--size-h4);
	line-height: 1.16;
	color: var(--color-black);
}

h5 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: var(--size-h5);
	line-height: 1.16;
	color: var(--color-black);
}

h6 {
	font-family: var(--font-f);
	font-weight: 500;
	font-size: var(--size-h6);
	line-height: 1.16;
	color: var(--color-black);
}

p {
	font-family: var(--font-f);
	font-weight: 400;
	font-size: var(--size-p);
	line-height: 1.18;
	display: block;
	color: var(--color-black);
}

.img_cont img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.img_cover img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(0, 0, 0, 0.80);
	-webkit-backdrop-filter: blur(7.5px);
	        backdrop-filter: blur(7.5px);
	padding: 0.88rem 0 0.93rem 0;
	z-index: 1000;
	height: var(--header-height);
	display: flex;
	align-items: center;
}
.header_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_left {
	width: 44%;
	display: flex;
	align-items: center;
}
.header_center {
	width: 10%;
}
.header_logo {
	max-height: var(--logo-height);
}
.header_right {
	width: 44%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header_right > div {
	height: 2.63rem;
	display: flex;
	align-items: center;
}
.header_right > div:not(:last-child) {
	border-right: 1px solid rgba(217, 217, 217, 0.25);
	padding-right: 2.19rem;
	margin-right: 2.19rem;
}
.header_info {
	display: flex;
	align-items: center;
	position: relative;
}
.header_info_icon {
	display: flex;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.5rem;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 0.5px solid rgba(224, 224, 224, 0.40);
	margin-right: 0.75rem;
}
.header_info_icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: white;
    fill: none;
}
.header_info_wrapper {
	display: flex;
	flex-direction: column;
}
.header_info_phones {
	display: flex;
	align-items: center;
}
.header_info_phones a {
	color: #FFF;
	font-family: var(--font-f);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	white-space: nowrap;
}
.header_info_phones a:hover {
	color: var(--color-hover);
}
.drop_arrow {
	width: 1rem;
	height: 1rem;
	margin-left: 0.5rem;
	cursor: pointer;
}
.drop_arrow svg {
	width: 100%;
	height: 100%;
	opacity: .45;
	transition: var(--transition);
}
.drop_arrow:hover svg,
.drop_arrow.open svg {
	opacity: 1;
}
.drop_arrow.open svg {
	transform: scale(1, -1);
}
.header_info_phones_list {
	position: absolute;
	top: calc(100% + 1.23rem);
	left: 50%;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0.9375rem 1.25rem;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 1rem);
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(0, 0, 0, 0.80);
	-webkit-backdrop-filter: blur(7.5px);
	        backdrop-filter: blur(7.5px);
	transition: var(--transition);
	z-index: 2;
}
.header_info_phones_list li:not(:last-child) {
	margin-bottom: 0.38rem;
}
.header_info_phones_list li a {
	padding: 0.25rem 0.64rem;
	border-radius: 0.375rem;
	border: 1px solid transparent;
	-webkit-backdrop-filter: blur(4px);
	        backdrop-filter: blur(4px);
	color: #FFF;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	display: flex;
	align-items: center;
}
.header_info_phones_list li a svg {
	width: 1.5rem;
	height: 1.5rem;
	margin-right: 0.94rem;
}
.header_info_phones_list li a:hover {
	border-color: #99C33B;
}
.header_info_phones_list.open {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 0);
}
.header_info_time {
	margin-top: 0.44rem;
	opacity: .6;
}
.header_info_time p {
	color: rgba(255, 255, 255, 0.70);
	font-family: var(--font-f);
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.header_info_time b,
.header_info_time strong {
	font-weight: 400;
	color: #FFFFFF;
}
.current_lang {
	display: flex;
	align-items: center;
}
.current_lang svg {
	fill: transparent;
	width: 1.3125rem;
	height: 0.9375rem;
}
.current_lang span {
	color: #FFF;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	cursor: pointer !important;
}
.lang_switcher_list_drop {
    position: absolute;
    top: calc(100% + 0.93rem);
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, 1rem);
    transition: var(--transition);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.80);
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
    padding: 0.94rem 0.37rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.38rem;
    width: 100%;
}
.lang_switcher_list_drop.open {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}
.lang_switcher_list_drop a {
    height: 2.125rem;
    padding: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid transparent;
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
}
.lang_switcher {
    position: relative;
    padding-left: 2.19rem;
}
.intro {
    position: relative;
    overflow: hidden;
}
.intro_slide {
    position: relative;
}
.intro_slide > video, .intro_slide > img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.intro .container {
    min-height: 600px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.intro_slide_info {
    max-width: 33.25rem;
}
.intro_slide_title {
    color: #FFF;
    font-family: var(--font-f);
    font-size: 4.71844rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
.intro_slide_subtitle {
    color: #ffffff;
    font-family: var(--font-f);
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.intro_scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}
.intro_scroll img, .intro_scroll svg {
    width: 2.9375rem;
    height: 2.5rem;
    transition: var(--transition);
    -webkit-animation: scroll .5s linear alternate infinite;
    animation: scroll .5s linear alternate infinite;
}
@-webkit-keyframes scroll {
	0% {
		transform: translateY(0)
	}
	100% {
		transform: translateY(-5px)
	}
}
@keyframes scroll {
	0% {
		transform: translateY(0)
	}
	100% {
		transform: translateY(-5px)
	}
}
.about {
    padding-top: 5.4rem;
    padding-bottom: 5.8rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-top: -2rem;
    z-index: 3;
}
.about_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
}
.about_title {
    color: #FFF;
    font-size: 4rem;
    font-style: normal;
    font-weight: 950;
    line-height: normal;
    text-transform: uppercase;
}
.about_text > *:not(:last-child) {
    margin-bottom: 0.875rem;
}
.about_text * {
    color: rgba(242, 242, 242, 0.70);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.about_info .btn {
    margin-top: 1.5rem;
}
.btn {
    display: flex;
    padding: 0.9375rem 1.25rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 11.125rem;
    border-radius: 0.625rem;
    border: 1px solid #99C33B;
    background: #191919;
    color: #99C33B;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 145.023%;
}
.front_products {
    margin-top: 8rem;
    padding-bottom: 6rem;
}
.front_products::before {
    content: '';
    background-image: url('../images/Vector.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 12.25rem;
    width: 100%;
    position: absolute;
    bottom: calc(100% - 3rem);
    left: 0;
    right: 0;
}
.front_products_title_wrapper {
    position: relative;
}
.front_products_title_bg {
    color: #E0E0E0;
    font-size: 8.06069rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.front_products_title {
    color: #191919;
    font-size: 4rem;
    font-style: normal;
    font-weight: 950;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 3;
}
.paper_bg {
    background-image: url('../images/white-paper-texture-background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #64646414;
	z-index: 1;
}
.crawl_lines {
    padding-top: 3.69rem;
    padding-bottom: 3rem;
}
.crawl_lines_item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.crawl_lines_item > div {
    color: var(--Black, #191919);
    leading-trim: both;
    text-edge: cap;
    font-size: 8rem;
    font-style: normal;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
    margin-right: 1.9375rem;
    white-space: nowrap;
}
.crawl_lines_item > .green {
    color: var(--Logo-green, #779348);
}
.about_section {
    margin-top: 4.5rem;
    margin-bottom: 7.5rem;
}
.about_section_wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-gap: 1.875rem;
    justify-content: space-between;
}
.about_section_img_main {
    display: flex;
    aspect-ratio: 1000/660;
	height: fit-content;
	box-shadow: 2px 11px 19px 0px rgba(0, 0, 0, 0.37);
}
.about_section_text_main {
    width: 100%;
    margin-right: 0;
    margin-left: auto;
}
.about_section_text * {
    color: var(--Black, #191919);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    line-height: 145.023%;
}
.about_section_title {
    color: var(--Black, #191919);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0.63rem;
}
.about_section_img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
	box-shadow: 2px 11px 19px 0px rgba(0, 0, 0, 0.37);
}
.wall {
    background-image: url(../images/concrete-wall\ 1.png);
    background-position: center top;
    background-repeat: no-repeat;
    padding-bottom: 5rem;
}
.contact_us {
    margin-top: 9rem;
}
.wall .front_products_title_bg {
    color: rgba(255, 255, 255, 0.49);
}
.contact_us_wrapper {
    margin-top: 2.8rem;
}
.contact_us_tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 62.625rem;
}
.contact_us_tabs li {
    color: var(--Black, #191919);
    font-family: Mont;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    opacity: 0.7;
    height: 2.625rem;
    transition: var(--transition);
    width: 50%;
    text-align: center;
    position: relative;
}
.contact_us_tabs li::after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--Black, #191919);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.6;
}
.contact_us_tabs li.active::after, .contact_us_tabs li:hover::after {
    opacity: 1;
    height: 2px;
}
.contact_us_tabs li.active, .contact_us_tabs li:not(.active):hover {
    font-size: 2rem;
    opacity: 1;
}
.contact_us_content {
    margin-top: 2.19rem;
}
.contact_us_content li {
    position: relative;
    width: 100%;
    aspect-ratio: 1820/550;
    overflow: hidden;
}
.contact_us_content li iframe {
    -webkit-mask: url(../images/map-bg.png) 0 0/100% 100%;
    mask: url(../images/map-bg.png) 0 0/100% 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.contact_us_content_info {
    background: #161616;
    position: absolute;
    left: 2.8rem;
    bottom: 1.5rem;
    padding: 2.5rem 1.875rem;
    max-width: 20.25rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.contact_us_content_info > * {
    color: #FFF;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.contact_us_content_info > *:not(:last-child) {
    margin-bottom: 0.5rem;
}
.contact_us_content_info > .contact_us_content_info_city {
    color: #FFF;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 900;
    line-height: 0.7875rem;
    text-transform: uppercase;
}
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--Black, #191919);
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
    padding: 3.75rem 0 1.875rem 0;
    margin-top: auto;
    margin-bottom: 0;
}
.footer_wrapper {
    display: flex;
    justify-content: space-between;
}
.footer_left_top {
    display: flex;
    align-items: center;
}
.footer_logo {
    max-height: var(--logo-footer-height);
}
.contact_us_content_info.footer {
    padding: 0.62rem 0;
    margin-top: 0;
    position: static;
    background: transparent;
    max-width: 17.5rem;
}
.footer_center {
    width: 30%;
    display: flex;
    justify-content: space-between;
}
.footer_center > div {
    padding-top: 2.06rem;
    padding-right: 0.88rem;
}
.footer_center_title {
    color: #FFF;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 900;
    line-height: 0.7875rem;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}
footer ul {
    display: flex;
    flex-direction: column;
}
footer ul > li:not(:last-child) {
    margin-bottom: 0.54rem;
}
footer ul > li > * {
    color: #FFF;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.footer_right {
	width: 40%;
    display: flex;
    justify-content: space-between;
}
.copyright {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
	text-align: center;
}
.wall::before {
	content: '';
	background-image: url('../images/Vector.png');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 12.25rem;
	width: 100%;
	position: absolute;
	bottom: calc(100% - 3rem);
	left: 0;
	right: 0;
	z-index: 0;
}
.products_wrapper {
	max-width: 1020px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.about_section_text_main_wrapper {
	display: grid;	
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 11px;
	margin-bottom: 37px;
}