body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

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

header {
    position: absolute; /* Изменено для наложения */
    top: 60px; /* Увеличено чтобы не перекрывать info */
    left: 0;
    right: 0;
    max-width: 1200px;
    margin: 0 auto; /* Центрирование по горизонтали */
    padding: 15px 30px;
    background: #0c5640;
    z-index: 999; /* Убеждаемся, что шапка под info */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

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

header nav {
    display: flex;
    gap: 25px;
    max-height: 25px;
    text-transform: uppercase;
}

header nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}

.hero {
    color: white;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background: url("./hero.webp") no-repeat center center/cover;
    will-change: transform;
    z-index: -1;
}

.hero-media {
    position: absolute;
    bottom: 20px;
    left: calc(50% - 625px);
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media (max-width: 1240px) {
    .hero-media {
        left: 50px;
    }
}

.hero-media:hover {
    transform: scale(1.05);
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section {
    padding: 60px 0;
}

.section .container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
}

.awards-section {
    padding: 60px 0;
}

.awards {
    background-color: #0c5640;
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
}

.projects {
    padding: 60px 0;
}

.projects h2 {
    text-align: center;
    margin-bottom: 40px;
}

.projects-slider {
    position: relative;
    overflow: hidden;
}

.projects-slider .swiper {
    position: relative;
}

.project-item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-item img {
    height: 100%;
    object-fit: fit;
}

.project-item h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.project-item p {
    display: none;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #0c5640;
}

footer {
    background-color: #b3b3b3;
    color: #333;
    padding: 40px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

footer h4 {
    margin-top: 0;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li a {
    color: #333;
    text-decoration: none;
}

.info {
    backdrop-filter: blur(10px) grayscale(10%) brightness(0%);
    -webkit-backdrop-filter: blur(10px) grayscale(10%) brightness(110%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info p,
.info a {
    margin: 0;
    font-size: 14px;
    color: white;
    vertical-align: middle;
}

.info a {
    text-decoration: none;
}

.info img {
    vertical-align: middle;
}
.about {
    margin-top: 10px;
    display: flex;
    width: 100%;
    height: 600px;
    background-color: #e6e6e6;
}

.about__content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #e6e6e6;
    position: relative;
}

.about__header {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #005847;
    color: #fff;
    padding: 12px 25px;
    font-weight: 600;
}

.about__title {
    font-size: 22px;
    margin-bottom: 20px;
}

.about__link {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
}

.about__link .arrow {
    font-size: 24px;
    margin-left: 10px;
}

.about__media {
    flex: 1;
    background-color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.about__media .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.about__media .play-overlay:hover {
    opacity: 0.8;
}

.about__media .play-button {
    transition: transform 0.2s ease;
    width: 360px !important;
    height: 360px !important;
}

.about__media .play-overlay:hover .play-button {
    transform: scale(1.1);
}

.about__media .play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* адаптив */
@media (max-width: 900px) {
    .about {
        flex-direction: column;
    }

    .about__media {
        height: 300px;
    }
}
.awards {
    width: 100%;
    padding: 40px 60px;
    box-sizing: border-box;
    background-color: #f4f4f4; /* фон страницы */
}

.awards__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #005847;
    color: #fff;
    padding: 20px 40px;
}

.awards__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.awards__left img {
    width: 80px;
    height: auto;
}

.awards__status {
    font-size: 20px;
    font-style: italic;
}

.awards__right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.awards__title {
    font-size: 18px;
    font-style: italic;
}

.awards__link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.awards__link .arrow {
    font-size: 28px;
    line-height: 1;
}

/* адаптив */
@media (max-width: 900px) {
    .awards__container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .awards__left img {
        width: 60px;
    }
}
.new-product {
    display: flex;
    width: 100%;
    height: 450px;
}

.new-product__media {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.new-product__media img,
.new-product__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-text {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 16px;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 45px solid white;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    margin-left: 10px;
}

.new-product__content {
    flex: 1;
    background-color: #005847;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.content-header {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #dcdcdc;
    color: #222;
    padding: 12px 25px;
    font-weight: 600;
}

.content-title {
    font-size: 40px;
    margin-bottom: 20px;
}

.content-box {
    border: 1px solid #fff;
    padding: 20px;
    max-width: 400px;
    margin-bottom: 60px;
}

.content-link {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.content-link .arrow {
    font-size: 30px;
    line-height: 1;
    transition: transform 0.3s;
}

.content-link:hover .arrow {
    transform: translateX(6px);
}

/* адаптив */
@media (max-width: 900px) {
    .new-product {
        flex-direction: column;
    }

    .new-product__content {
        padding: 40px 30px;
    }

    .play-circle {
        width: 120px;
        height: 120px;
    }
}
.site-footer {
    background: #4a4a4a;
    color: #ffffff;
    padding: 40px 20px 30px;
}

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

.logo-placeholder {
    width: 200px;
    height: 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 12px;
    margin-bottom: 15px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.footer-column h3 {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #ffffff;
    text-decoration: none;
}

.footer-column a {
    list-style: none;
}

.footer-column a {
    margin-bottom: 6px;
    text-decoration: none;
    color: white;
}

.footer-column a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 30px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
.dropdown-trigger {
    position: relative;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-menu {
    position: absolute;
    background: white;
    padding: 20px 30px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
    min-width: 250px;
}

.popup-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: #000;
}

.popup-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 10px;
}

.popup-nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s ease;
}

.popup-nav a:last-child {
    border-bottom: none;
}

.popup-nav a:hover {
    color: #000;
}
@media (max-width: 480px) {
    .site-footer {
        padding: 30px 15px 20px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-column h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }
    .footer-column h3 a{
        color: white;
    }

    .footer-column ul li {
        margin-bottom: 4px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .logo-placeholder {
        margin-bottom: 10px;
    }
}
