/*!
Theme Name: mayak-3k
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mayak-3k
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

mayak-3k is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*
Theme Name: mayak-3k
*/
@font-face {
  font-family: 'Geologica';
  src: url('fonts/geologica-v4-cyrillic_latin-regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url('fonts/geologica-v4-cyrillic_latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geologica';
  src: url('fonts/geologica-v4-cyrillic_latin-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-v19-cyrillic_latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-v19-cyrillic-100.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-v19-cyrillic_latin-regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Normalize
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
	5.3 - Comments
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
13.0 - Footer
14.0 -rtl.css
--------------------------------------------------------------*/
/* Header */
.site-header {
	padding-left: 80px;
	padding-right: 80px;
	background-color: #252526;
	color: #F5F5F5;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding .custom-logo {
    max-height: 50px;
    width: auto;
}

.main-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.main-navigation li {

}

.main-navigation a {
	color: #F5F5F5;
	font-family: Geologica;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
	transition: color 0.3s ease;
}
.main-navigation a:hover {
	color: #FFF70D;
}
.header-socials {
    display: flex;
    align-items: center;
	gap: 12px;
}

.header-socials a {
	display: flex;
}

.header-socials img {
	height: 24px;
    width: 24px;
}

.menu-toggle {
    display: none; /* Hidden by default on desktop */
    z-index: 1001; /* Above page overlay */
    position: relative;
}

.menu-toggle .line {
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.menu-toggle.is-active .line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
    margin-top: 50px;
    position: fixed;
    top: 0;
    right: 0; /* Changed from left to right */
    left: auto; /* Ensure left is not set */
    width: 82%; /* Width of the slide-out menu */
    max-width: 90vw;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    padding: 0px;
    box-sizing: border-box;
    overflow-y: auto;
    transform: translateX(100%); /* Changed from -100% to 100% */
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

body.mobile-menu-open .mobile-menu-overlay {
    position: absolute;
    transform: translateX(0);
}

/*.page-overlay {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*    z-index: 999;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: opacity 0.4s ease, visibility 0.4s ease;*/
/*}*/

/*body.mobile-menu-open .page-overlay {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navigation a {
    color: #252526;
    font-family: Geologica;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0;
    text-decoration: none;
    width: fit-content;
    display: block;
}

.mobile-menu-footer {
    margin-top: 40px;
    text-align: center;
}
.phone-reveal-group.mobile-phone-group {
    margin: auto;
    width: fit-content;
}
.mobile-menu-button {
    border-radius: 4px;
    background: #FE0;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin-left: 15px;
    margin-right: 15px;
    width: auto;
    margin-bottom: 48px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    color: #000;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.72px;
}

.mobile-menu-phone {
    color: #252526;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 24px;
    text-decoration: none;
    display: block;
}

.mobile-menu-hours {
    color: #252526;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    margin-top: 0px;
    margin-bottom: 24px;
}

.mobile-menu-socials {
    padding-left: 28px;
    padding-right: 28px;
    max-width: 300px;
    margin: auto;
    gap: 20px;
    justify-content: space-between;
    display: flex;
}

.mobile-menu-socials img {
    width: 36px;
    height: 36px;
}




/*@media screen and (max-width: 768px) {*/
/*    .main-navigation.toggled {*/
/*        display: block;*/
/*        position: absolute;*/
/*        top: 70px;*/
/*        left: 0;*/
/*        width: 100%;*/
/*        background-color: #333;*/
/*    }*/

/*    .main-navigation ul {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/

/*    .main-navigation li {*/
/*        margin: 10px 0;*/
/*    }*/

/*    .menu-toggle {*/
/*        display: block;*/
/*        background: none;*/
/*        border: 1px solid white;*/
/*        color: white;*/
/*        padding: 5px 10px;*/
/*    }*/
/*}*/

/* Hero Section */
.hero-section {
    position: relative;
	height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-section::before {
    /*content: '';*/
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    /*background-color: rgba(0, 0, 0, 0.5); !* Overlay *!*/
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-heading {
	color: #F5F5F5;
	font-family: Geologica;
	font-size: 60px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	letter-spacing: 7.2px;
	margin-bottom: 72px;
	margin-top: 0px;
}

.hero-subheading {
	color: #F5F5F5;
	font-family: Inter;
	font-size: 36px;
	font-style: normal;
	font-weight: 100;
	line-height: normal;
	letter-spacing: 1.44px;
	margin-top: 0px;
	margin-bottom: 107px;
}

.hero-button {
	color: #FFF70D;
	font-family: Inter;
	font-size: 36px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 1.44px;
	border-radius: 4px;
	border: 2px solid #FFF70D;
	text-decoration: none;
	padding: 16px 36px;
    transition: background-color 0.3s, color 0.3s;
}

.hero-button:hover {
    background-color: #FFF70D;
    color: #333;
}

/* About Section */
.about-section {
	padding-left: 80px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 160px;
	justify-content: unset;
	display: flex;
	gap: 100px;
	background-color: #F5F5F5;
	align-items: end;
}

.about-content {
    /*max-width: 500px;*/
}

.about-heading {
	color: #000;
	font-family: Geologica;
	font-size: 52px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	margin-top: 0px;
	margin-bottom: 90px;
}

.about-highlighted-text {
	border-left: 6px solid #FE0;
	padding-left: 48px;
	color: #000;
	font-family: Geologica;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 90px;
}

.about-main-text {
	color: #000;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
	margin-bottom: 0px;
	margin-top: 0px;
}

.about-image-column {
    text-align: center;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	margin-top: -120px;
	z-index: 5;
	position: relative;
}

.about-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.about-button {
	border-radius: 4px;
	background: #FE0;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	width: 340px;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.3s;
	color: #000;
	font-family: Inter;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.12px;
	margin-top: -66px;
	position: relative;
	z-index: 5;
}

.about-button:hover {
    background-color: #e6e00b;
}

.about-image-mobile {
    display: none; /* Hidden by default on desktop */
}

/* Ticker Section */
.ticker-section {
	background: #FE0;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
	align-items: center;
	display: flex;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
}

.ticker-move {
    display: flex;
    flex-shrink: 0;
    /* Animation will be applied when the .animated class is added */
}

.ticker-section.animated .ticker-move {
    animation: ticker-animation 28s linear infinite;
}
main#primary {
	background-color: #F5F5F5;
}
.ticker-item {
	color: #000;
	font-family: Geologica;
	font-size: 16px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	text-transform: uppercase;
	flex-shrink: 0;
	padding: 0 60px;
}

@keyframes ticker-animation {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Products Section */
.products-section {
	margin-left: 140px;
	margin-top: 60px;
	display: flex;
	gap: 100px;
	align-items: center;
	padding-top: 64px;
	padding-bottom: 64px;
	padding-left: 0px;
	padding-right: 64px;
	background: #FFF;
}

.products-side-image {
	margin-left: -80px;
	flex-shrink: 0;
}

.products-side-image img {
    max-width: 100%;
    height: auto;
}

.products-main-content {
	max-width: 850px;
	display: flex;
	flex-direction: column;
}

.products-heading {
	margin-top: 0px;
	margin-bottom: 70px;
	color: #000;
	font-family: Geologica;
	font-size: 52px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
}

.products-description {
	border-left: 6px solid #FE0;
	padding-left: 48px;
	margin-bottom: 100px;
	color: #000;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
}

.products-button {
	height: 70px;
	width: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-bottom: 25px;
	padding: 0;
	text-decoration: none;
	border-radius: 4px;
	background: #FE0;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	color: #000;
	font-family: Inter;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.12px;
	transition: background-color 0.3s;
}
.products-button:hover {
	background-color: #e6e00b;
}
.price-list {
	margin-bottom: 15px;
}

.price-category {
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.price-category-title {
	color: #000;
	font-family: Geologica;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 0px;
	margin-top: 0px;
}

.price-category-icon {
    display: none; /* Hide icon by default on desktop */
}

.price-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-left: 40px;
	max-width: 640px;
	margin-bottom: 95px;
}
.price-category .item-name {
	color: #000;
	text-align: justify;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
}
.price-category .item-price {
	color: #000;
	text-align: justify;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
}
.price-category li {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: center;
}

.item-dots {
    flex-grow: 1;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #000 0, #000 20px, transparent 20px, transparent 25px);
    position: relative;
}

.pdf-download-section {
    /*margin-top: 40px;*/
}

.pdf-title {
	color: #000;
	font-family: Geologica;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	margin-top: 0px;
	margin-bottom: 45px;
}

.pdf-description {
	padding-left: 40px;
	max-width: 620px;
	color: #000;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
	margin-bottom: 0px;
}

.pdf-download-link {
	flex-direction: column;
	gap: 40px;
	width: 100%;
	align-items: end;
	max-width: 850px;
	text-decoration: none;
	display: flex;
}

.pdf-icon {
	width: 100px;
	height: auto;
}
.pdf-link-text {
	color: #565656;
	font-family: Inter;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.pdf-link-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

/* Advantages Section */
.advantages-section {
    position: relative;
	padding-top: 60px;
	padding-bottom: 100px;
	padding-left: 80px;
	padding-right: 80px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.advantages-section::before {
    /*content: '';*/
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    /*background-color: rgba(0, 0, 0, 0.7); !* Dark overlay *!*/
}

.advantages-container {
    position: relative;
    z-index: 1;
	max-width: unset;
    margin: 0 auto;
}

.advantages-main-heading {
	margin-top: 0px;
	margin-bottom: 80px;
	color: #FFF;
	font-family: Geologica;
	font-size: 52px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	text-align: start;
}

.advantages-content-wrapper {
	display: flex;
	gap: 270px;
	margin-bottom: 100px;
	align-items: center;
	justify-content: space-between;
}

.advantages-subheading {
	margin-bottom: 70px;
	margin-top: 0px;
	color: #FFF;
	font-family: Geologica;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	padding-left: 24px;
	border-left: 6px solid #FE0;
}

.advantages-right {
	flex-shrink: 0;
	max-width: 480px;
	width: 100%;
}
.advantages-left {
	max-width: 500px;
}

.advantages-text {
	color: #FFF;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.advantages-list li {
	color: #F5F5F5;
	font-family: Geologica;
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0px;
    position: relative;
    padding-left: 25px;
}

.advantages-list li::before {
	content: '•';
	color: #F5F5F5;
	position: absolute;
	left: 0px;
	font-size: 24px;
	top: 3px;
}

.advantages-button-container {
    text-align: center;
}

.advantages-button {
	border-radius: 4px;
	background: #FE0;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	width: 340px;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	color: #000;
	font-family: Inter;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 1.12px;
	text-decoration: none;
	transition: background-color 0.3s;
}
.advantages-button:hover {
	background-color: #e6e00b;
}

/* Projects Section */
.projects-section {
	padding-top: 36px;
	padding-bottom: 48px;
    background-color: #f5f5f5;
}

.projects-text-content {
	padding-left: 115px;
	padding-right: 20px;
	margin-bottom: 150px;
}

.projects-heading {
	margin-top: 0px;
	margin-bottom: 70px;
	color: #000;
	font-family: Geologica;
	font-size: 52px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
}

.projects-description {
	border-left: 6px solid #FE0;
	padding-left: 48px;
	color: #000;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
	margin-left: 60px;
	max-width: 750px;
}

.projects-carousel-wrapper {
    overflow: hidden;
    cursor: grab;
    /*touch-action: pan-y; !* Allows vertical page scrolling while enabling horizontal drag *!*/
}

.projects-carousel-track {
    display: flex;
    /* The width will be set by the content */
}

.projects-carousel-track.active {
    cursor: grabbing;
}

.carousel-image-container {
    flex-shrink: 0;
    padding: 0 6px;
    /* Width is now determined by the image inside */
}

.carousel-image-container img {
    height: 380px; /* Fixed height as requested */
    width: auto;   /* Width will adjust to maintain aspect ratio */
    object-fit: cover;
    pointer-events: none; /* Prevents browser's default image drag */
    user-select: none;
}

/* Contacts Section */
.contacts-section {
    background-color: #3B3B3B;
    color: #fff;
	padding-top: 60px;
	padding-bottom: 150px;
	padding-left: 115px;
	padding-right: 115px;
}

.contacts-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
}

.contacts-main-heading {
	color: #F5F5F5;
	font-family: Geologica;
	font-size: 52px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	margin-bottom: 72px;
	margin-top: 0px;
}

.contacts-description {
	border-left: 6px solid #FE0;
	color: #FFFAFA;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
	padding-left: 48px;
	margin-bottom: 150px;
	max-width: 850px;
}

.contacts-subheading {
	color: #F5F5F5;
	font-family: Geologica;
	font-size: 28px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	margin-top: 0px;
	margin-bottom: 70px;
}

.contacts-content-wrapper {
	display: flex;
	gap: 32px;
	justify-content: space-between;
	align-items: end;
}

.contact-item {
	display: grid;
	grid-template-columns: 190px 1fr;
	gap: 20px;
	/*margin-bottom: 25px;*/
	align-items: center;
}
.contacts-details {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.contact-label {
	color: #F5F5F5;
	font-family: Geologica;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
}

.contact-value a {
    color: #fff;
    text-decoration: none;
}
.contact-value {
	color: #FFF;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
	text-decoration: none;
}

.contact-messengers {
    display: flex;
    gap: 15px;
}

.contact-messengers img {
    width: 36px;
    height: 36px;
}

.contacts-map iframe {
    width: 100%;
    /*height: 100%;*/
    min-height: 350px;
    border: 0;
}
.contacts-map {
	max-width: 476px;
	max-height: 476px;
	width: 100%;
}

/* Footer */
.site-footer {
	background-color: #252526;
    color: #fff;
	padding-top: 40px;
}

.footer-main {
	padding-left: 80px;
	padding-right: 80px;
	padding-bottom: 40px;
	display: flex;
	gap: 160px;
}

.footer-col-1 .custom-logo-link {
    margin-bottom: 46px;
    display: block;
}
.footer-col-1 #menu-main-1 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}
.footer-col-1 #menu-main-1 li a {
    color: #FFF;
    font-family: Geologica;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    text-decoration: unset;
}
.footer-tagline {
	color: #F5F5F5;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 100;
	line-height: normal;
	letter-spacing: 0.96px;
	margin-bottom: 38px;
	margin-top: 0px;
}

.footer-main ul#menu-main {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.footer-main #menu-main a {
    text-decoration: none;
	color: #FFF;
	font-family: Geologica;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 125%;
}

.footer-col-2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
	background: #000;
	height: 50px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-bottom p {
    margin: 0;
	color: rgba(255, 255, 255, 0.60);
	text-align: right;
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 125%;
}
.footer-col-2 .contact-label {
	color: #F5F5F5;
	font-family: Geologica;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
}
.footer-col-2 .contact-item {
	grid-template-columns: 120px 1fr;
}
.footer-col-2 .contact-messengers img {
	width: 20px;
	height: 20px;
}
.footer-col-2 .contact-value {
	color: #FFF;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: 40px;
}


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
/*body,*/
/*button,*/
/*input,*/
/*select,*/
/*optgroup,*/
/*textarea {*/
/*	color: #404040;*/
/*	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;*/
/*	font-size: 1rem;*/
/*	line-height: 1.5;*/
/*}*/

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
/*a {*/
/*	color: #4169e1;*/
/*}*/

/*a:visited {*/
/*	color: #800080;*/
/*}*/

/*a:hover,*/
/*a:focus,*/
/*a:active {*/
/*	color: #191970;*/
/*}*/

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: fit-content;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	/*margin: 0 0 1.5em;*/
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
/* Fixed Action Buttons */
.fixed-action-buttons {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.action-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #FE0;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	transition: transform 0.2s ease;
}

.action-button:hover {
	transform: scale(1.1);
}

.action-button img {
	width: 32px;
	height: 32px;
}
/* Responsive styles */
@media screen and (max-width: 1330px) {
    .main-navigation,
    .header-socials {
        display: none!important;
    }

    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: white;
        padding: 0;
    }

    .menu-toggle .hamburger-lines {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .menu-toggle .line {
        width: 30px;
        height: 3px;
        background-color: #fff;
    }
    .site-header {
        padding-left: 15px;
        padding-right: 15px;
        background: #2B2A35;
        height: 50px;
    }
    .site-branding .custom-logo {
        max-height: 36px;
    }
    .mobile-navigation {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 48px;
        padding-bottom: 80px;
    }
    .mobile-navigation ul {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .hero-heading {
        color: #F5F5F5;
        font-family: Geologica;
        font-size: 32px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 3.84px;
        margin-bottom: 30px;
    }
    .hero-subheading {
        color: #F5F5F5;
        text-align: center;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 100;
        line-height: normal;
        letter-spacing: 0.64px;
        margin-bottom: 60px;
    }
    .hero-button {
        color: #FFF70D;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        letter-spacing: 0.72px;
        border-radius: 4px;
        border: 2px solid #FFF70D;
        padding: 8px 36px;
    }
    .hero-section {
        height: 380px;
    }
    .about-section {
        flex-direction: column-reverse;
        gap: 0;
        padding: 0;
		padding-bottom: 80px;
	}
    .about-image-desktop {
        display: none;
    }

    .about-image-mobile {
        display: block;
        margin-bottom: 0px;
    }
    .about-image-column {
        margin-top: -100px;
    }
    .about-button {
        display: none;
    }
	.about-content {
		padding-left: 15px;
		padding-right: 15px;
	}
	.about-heading {
		color: #000;
		font-family: Geologica;
		font-size: 24px;
		font-style: normal;
		font-weight: 900;
		line-height: normal;
		margin-bottom: 20px;
	}
	.about-highlighted-text {
		color: #000;
		font-family: Geologica;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 28px;
		padding-left: 16px;
		margin-bottom: 36px;
	}
	.about-main-text {
		color: #000;
		font-family: Inter;
		font-size: 14px;
		font-style: normal;
		font-weight: 300;
		line-height: 20px;
	}
	.ticker-item {
		color: #000;
		font-family: Geologica;
		font-size: 14px;
		font-style: normal;
		font-weight: 900;
		line-height: normal;
		text-transform: uppercase;
		padding: 0 20px;
	}
	.products-section {
		margin-left: 0px;
		margin-top: 36px;
		padding-top: 36px;
		padding-right: 0px;
		padding-bottom: 46px;
	}
	.products-side-image {
		display: none;
	}
    .price-category-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
		padding-left: 15px;
		color: #000;
		font-family: Geologica;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 28px;
    }
    
    .price-category-icon {
        display: block; /* Show icon on mobile */
    }
	.products-main-content {
		max-width: unset;
	}
	.price-category {
		gap: 0;
	}
	.price-category ul {
		padding-left: 15px;
		padding-right: 15px;
		max-width: unset;
		margin-bottom: 48px;
	}
	.price-category .item-name , .price-category .item-price {
		color: #000;
		text-align: start;
		font-family: Inter;
		font-size: 14px;
		font-style: normal;
		font-weight: 300;
		line-height: 20px;
	}
	.item-dots {
		background-image: repeating-linear-gradient(to right, #000 0, #000 10px, transparent 10px, transparent 15px);
		min-width: 40px;
	}
	.price-category li {
		gap: 12px;
	}
	.pdf-download-section {
		padding-left: 15px;
		padding-right: 15px;
	}
	.pdf-title {
		color: #000;
		font-family: Geologica;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 28px;
		margin-bottom: 28px;
	}
	.pdf-description {
		padding-left: 0px;
		color: #000;
		font-family: Inter;
		font-size: 16px;
		font-style: normal;
		font-weight: 300;
		line-height: 20px;
		margin-bottom: 48px;
		max-width: unset;
	}
	.pdf-download-link {
		gap: 12px;
		width: 100%;
		align-items: center;
		max-width: unset;
	}
	.pdf-link-content {
		gap: 12px;
		width: 100%;
		align-items: center;
		max-width: unset;
	}
	.pdf-link-text {
		color: #565656;
		font-family: Geologica;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 28px;
	}
	.advantages-section {
		background-image: url('/wp-content/uploads/2025/09/betonnaa-tekstura-v-stile-granz-1.webp')!important;
		padding-top: 48px;
		padding-bottom: 96px;
		padding-left: 36px;
		padding-right: 36px;
	}
	.advantages-main-heading {
		color: #FFF;
		font-family: Geologica;
		font-size: 24px;
		font-style: normal;
		font-weight: 900;
		line-height: normal;
		margin-bottom: 45px;
	}
	.advantages-content-wrapper {
		flex-direction: column;
		align-items: start;
		gap: 64px;
		margin-bottom: 64px;
	}
	.advantages-subheading {
		padding-left: 16px;
		margin-bottom: 46px;
		color: #FFF;
		font-family: Geologica;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 28px;
	}
	.advantages-text {
		color: #FFF;
		font-family: Geologica;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 28px;
	}
	.advantages-left {
		max-width: unset;
	}
	.advantages-list li {
		color: #F5F5F5;
		font-family: Geologica;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		padding-left: 20px;
	}
	.advantages-list li::before {
		top: -4px;
	}
	.advantages-button {
		color: #000;
		font-family: Inter;
		font-size: 18px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 0.72px;
		height: 38px;
		width: 100%;
	}
	.projects-text-content {
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 48px;
	}
	.projects-heading {
		color: #000;
		font-family: Geologica;
		font-size: 24px;
		font-style: normal;
		font-weight: 900;
		line-height: normal;
		margin-bottom: 32px;
	}
	.projects-description {
		padding-left: 16px;
		margin-left: 0px;
		color: #000;
		font-family: Inter;
		font-size: 16px;
		font-style: normal;
		font-weight: 300;
		line-height: 20px;
		max-width: unset;
	}
	.carousel-image-container img {
		height: 220px;
	}
	.carousel-image-container {
		padding: 0 2px;
	}
	.contacts-section {
		padding-top: 40px;
		padding-bottom: 30px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.contacts-main-heading {
		color: #F5F5F5;
		font-family: Geologica;
		font-size: 24px;
		font-style: normal;
		font-weight: 900;
		line-height: normal;
		margin-bottom: 32px;
	}
	.contacts-description {
		color: #FFFAFA;
		font-family: Inter;
		font-size: 16px;
		font-style: normal;
		font-weight: 300;
		line-height: 20px;
		padding-left: 16px;
		max-width: unset;
		margin-bottom: 32px;
	}
	.contacts-subheading {
		margin-bottom: 32px;
		color: #F5F5F5;
		font-family: Geologica;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 28px;
	}
	.contacts-content-wrapper {
		flex-direction: column;
		align-items: start;
		gap: 40px;
	}
	.contacts-details {
		gap: 30px;
	}
	.contact-item {
		display: flex;
		flex-direction: column;
		align-items: start;
		gap: 8px;
	}
	.contact-label {
		color: #F5F5F5;
		font-family: Geologica;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 40px;
	}
	.contact-value {
		color: #FFF;
		font-family: Inter;
		font-size: 16px;
		font-style: normal;
		font-weight: 300;
		line-height: 20px;
	}
	.contact-messengers {
		gap: 20px;
	}
	.contacts-map {
		max-width: unset;
		max-height: 358px;
		width: 100%;
	}
	.contacts-map iframe {
		max-height: 358px;
	}
	.action-button {
		width: 32px;
		height: 32px;
	}
	.site-footer {
		padding-top: 20px;
	}
	.footer-main {
		padding-left: 15px;
		padding-right: 15px;
		flex-direction: column;
		gap: 40px;
	}
	.footer-col-1 .custom-logo-link {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 24px;
	}
	.footer-col-1 .custom-logo {
		width: 163px;
	}
	.footer-tagline {
		color: #F5F5F5;
		font-family: Inter;
		font-size: 16px;
		font-style: normal;
		font-weight: 100;
		line-height: normal;
		letter-spacing: 0.64px;
		text-align: center;
		margin-bottom: 24px;
	}
	.footer-col-1 #menu-main-1 {
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
	}
	.footer-col-1 #menu-main-1 li a {
		color: #FFF;
		text-align: center;
		font-family: Geologica;
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
	}
	.products-heading {
		color: #000;
		font-family: Geologica;
		font-size: 24px;
		font-style: normal;
		font-weight: 900;
		line-height: normal;
		margin-bottom: 35px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.products-description {
		color: #000;
		font-family: Inter;
		font-size: 14px;
		font-style: normal;
		font-weight: 300;
		line-height: 20px;
		padding-left: 16px;
		margin-left: 15px;
		padding-right: 15px;
		margin-bottom: 26px;
	}
	.products-button {
		width: unset;
		border-radius: 4px;
		background: #FE0;
		padding-left: 0px;
		margin-left: 15px;
		margin-right: 15px;
		box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
		height: 38px;
		color: #000;
		font-family: Inter;
		font-size: 18px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		letter-spacing: 0.72px;
	}
	.projects-carousel-wrapper {
		touch-action: pan-y; /* Allows vertical page scrolling while enabling horizontal drag */
	}
  }

