/* reset */
:root {
--hero-blue: #3590f3;
--hero-red: #e71d36;
--hero-yellow: #ffd23f;
--main-white: #fff;
--procent: 1

}

::-webkit-scrollbar {
    display: none;
}


html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6, span, a, button{
margin: 0;  
padding: 0;
text-decoration: none;
font-family: "Unbounded", sans-serif;
font-optical-sizing: auto;
font-weight: normal;
font-style: normal;
z-index: 0;
}
h1,h2,h3,h4,h5,h6 {
font-size: 100%;  
font-weight: normal;

} 
ul {
list-style: none;
} 
button,input,select,textarea {
margin: 0;
} 
html {
box-sizing: border-box;
scrollbar-width: none;

} 
*, *:before, *:after { 
box-sizing: inherit;

}
img,embed,iframe,object,audio,video {
height: auto;  
max-width: 100%;
} 
iframe {
border: 0;
} 
table {
border-collapse: collapse;
border-spacing: 0;
}
td,th {
padding: 0;  
text-align: left;
}

/*   section {

scroll-snap-align: center;
} */

body {

height: calc(100 * var(--vh));

}

.bm_container {
width: 13%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}

.bm_container img {
max-width: 2.6vw;
}


.section-scroll {
scroll-snap-type: y mandatory;  
height: 92%;
overflow: auto;
}


.logo-name {

}

/* Элемент для анимации */
.floating-element {

animation: floatUpDown 10s ease-in-out infinite;
}

/* Ключевые кадры анимации */
@keyframes floatUpDown {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}}


.scroll-hint {
position: relative;
/* color: #333;
font-size: 18px; */
opacity: 0;
animation: scrollHintAnimation 6s infinite;
}

@keyframes scrollHintAnimation {
0% {
transform: translateY(0);
opacity: 0;
}
20% {
opacity: 1;
}
70% {
opacity: 1;
}
100% {
transform: translateY(2vh);
opacity: 0;
}
}

@keyframes freeSeeIt {
0% {
transform: scale(1);
}
70% {
transform: scale(1);
}
75% {
transform: scale(1.1);
}
85% {
transform: scale(1.1);
}
90% {
transform: scale(1);
}
100% {
transform: scale(1);
}
}


/* ШАПКА */

header {
position: sticky;
top: 0;
left: 0;
width: 100%;
background: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: background-color 0.01s; /* Небольшая задержка для плавности */
  z-index: 1000;
height: 8%;
}

.header-item,
.burger-line {
  transition: color 0.3s ease-out, background-color 0.3s ease-out, all 0.5s ease !important; 
}

/* Стили для анимационного оверлея */
header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: currentColor;
  z-index: -1;
  transition: height 0.5s ease-out;
}

.header-container {
width: 100%;
max-width: 1200px;
height: 100%;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
position: relative;
}

.logo-container {
position: absolute;
left: 50%;
transform: translateX(-50%);
height: 100%;
width: 200px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.header-item {
position: absolute;
transition: all 0.5s ease;
text-align: center;
width: 100%;
/* color: black; */
opacity: 0;
transform: translateY(100%);
}

.header-item.logo {
font-size: 24px;
font-weight: bold;
}

.header-item.phone {
font-size: 18px;
}

.header-item.whatsapp {
color: #25D366;
font-size: 18px;
cursor: pointer;
}

.header-item.prices {
font-size: 18px;
}

/* Бургер-меню справа */
.burger-wrapper {
margin-left: auto; /* Сдвигаем вправо */
}

.burger-menu {
position: relative;
width: 30px;
height: 30px;
display: flex;
flex-direction: column;
justify-content: space-around;
cursor: pointer;
z-index: 1001;
}

.burger-line {
width: 100%;
height: 3px;
background: white;
transition: all 0.3s ease;
}

.mobile-menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: white;
z-index: 1000;
display: flex;
justify-content: center;
align-items: center;
transform: translateX(100%);
transition: transform 0.3s ease;
}

.mobile-menu.active {
transform: translateX(0);
}

.burger-menu.active .burger-line:nth-child(1) {
transform: rotate(45deg) translate(5px, 6px);
}

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

.burger-menu.active .burger-line:nth-child(3) {
transform: rotate(-45deg) translate(5px, -6px);
}


/* Футер */
footer {
background: #000;
color: #fff;
padding: 60px 0 30px;
border-top: 1px solid #333;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
}

.footer-top {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 50px;
}

.footer-title {
font-size: 1.2rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}

.footer-title::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background: #fff;
}

.footer-brand .footer-logo {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 15px;
}

.footer-slogan {
opacity: 0.8;
}

.footer-services ul, .footer-cities ul, .footer-contacts ul {
list-style: none;
padding: 0;
}

.footer-services li, .footer-cities li, .footer-contacts li {
margin-bottom: 12px;
}

.footer-services a, .footer-cities a, .footer-contacts a {
color: #fff;
text-decoration: none;
opacity: 0.8;
transition: opacity 0.3s;
}

.footer-services a:hover, .footer-cities a:hover, .footer-contacts a:hover {
opacity: 1;
}

.social-links {
display: flex;
gap: 15px;
margin-top: 15px;
}

.social-icon {
display: inline-block;
width: 36px;
height: 36px;
background: #fff;
border-radius: 50%;
position: relative;
}

.social-icon::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 18px;
height: 18px;
background: #000;
}

.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 30px;
border-top: 1px solid #333;
font-size: 0.9rem;
opacity: 0.7;
}

.footer-links {
display: flex;
gap: 20px;
}

.footer-links a {
color: #fff;
text-decoration: none;
}

/* Адаптивность */
@media (max-width: 768px) {
.contact-container, .cta-container {
flex-direction: column;
}

.city-grid {
grid-template-columns: 1fr;
}

.footer-top {
grid-template-columns: 1fr;
}

.footer-bottom {
flex-direction: column;
gap: 15px;
text-align: center;
}
}


.ssp {
scroll-snap-align: end;
scroll-snap-stop: always;
overflow-y: auto;
overflow-x: hidden;
width: 100%;
height: 100%;

}

.white-t {
  color: white;
}

.red-one::before {
  background-color: #e71d36 !important;
}








