:root {
    --navbar-height: 110px;
    --footer-bg: #003d5b;
    --footer-top-bg: #002a41;
    --text-white: #ffffff;
    --text-gray: #b0c4de;
}

body {
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
        "slnt" 0,
        "wdth" 100,
        "GRAD" 0,
        "ROND" 0;
}

img,
video {
    max-width: 100%;
    height: auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--uw-body-bg);
    -webkit-box-shadow: 0px 8px 16px 6px rgba(18, 25, 38, 0.1);
    box-shadow: 0px 8px 16px 6px rgba(18, 25, 38, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    height: var(--navbar-height);
    position: relative;
    transition: all 0.25s ease-in-out;
}

.navbar.scrolled {
    --navbar-height: 100px;
    background-color: #ffffff;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 100%;
    max-width: 85%;
}

.navbar__logo {
    width: var(--navbar-height);
    height: var(--navbar-height);
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);

    z-index: 100;

    opacity: 0;
    animation-name: zoomUp;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: forwards;

    transition: box-shadow 0.25s ease, padding 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.navbar__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.navbar__logo:hover {
    padding: 10px;
}

.navbar.scrolled .navbar__logo {
    padding: 10px;
}

.nav__collapse {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-overlay.active {
    opacity: 0.5;
    visibility: visible;
}

.nav-links {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--uw-body-color);
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease, opacity 0.3s ease;
    padding: 0 10px;
    opacity: 0.7;
    position: relative;
    height: 100%;
}

.nav-link.active {
    color: #000;
    font-weight: 600;
}

.nav-link:hover {
    color: #000;
    opacity: 1;
}


.nav-line {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #000;
    transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
    left: 0;
    width: 0;
    pointer-events: none;
}


button.nav-link {
    background: none;
    border: none;
    cursor: pointer;
    margin: 0;
}

.dropdown {
    position: relative;
}

.dropdown__wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 325px;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s 0.4s;
    overflow: hidden;
    visibility: hidden;
    background-color: var(--uw-body-bg);
}

.dropdown__inner {
    min-height: 0;
}

.dropdown__menu {
    background-color: var(--uw-body-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    transition: all 300ms ease;
}

@media (min-width: 992px) {

    .dropdown:hover .dropdown__wrapper,
    .dropdown:focus-within .dropdown__wrapper,
    .dropdown.open .dropdown__wrapper {
        visibility: visible;
        grid-template-rows: 1fr;
        transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0s 0s;
    }

    .dropdown:hover .dropdown__menu,
    .dropdown:focus-within .dropdown__menu,
    .dropdown.open .dropdown__menu {
        padding: 15px 0;
    }

    .dropdown:hover .dropdown__icon,
    .dropdown:focus-within .dropdown__icon,
    .dropdown.open .dropdown__icon {
        transform: rotate(180deg);
    }
}

.dropdown__item {
    display: block;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    color: var(--uw-body-color);
    transition: background 0.2s ease;
}

.dropdown__item:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--uw-primary);
}

.dropdown__icon {
    transition: transform 0.3s ease;
}

.menu-toggle {
    display: none;
    padding: 0.5rem;
    background: transparent;
    border: none;
}

.nav__actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 3rem;
    height: 100%;
}

.nav__collapse,
.nav__actions {
    opacity: 0;
    animation-name: fadeDown;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: forwards;
}


.nav__actions-social-media {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.nav__actions-social-media a {
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a00101;
    background-color: #FFFAFA;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.nav__actions-social-media svg {
    width: 35px;
    height: 35px;
}

.nav__actions-social-media a:hover {
    background-color: #f9f9f9;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.nav__actions-call {
    display: flex;
    align-items: center;
}

.nav__actions-call a {
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: rgb(121, 0, 0);
    font-size: 1.2rem;
    font-weight: 600;
    transition: box-shadow 0.25s ease, padding 0.25s ease, transform 0.5s ease;

    animation-name: play;
    animation-duration: 3s;
    animation-delay: 3s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.nav__actions-call svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;

    animation-name: swing;
    animation-duration: 3s;
    animation-delay: 3s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    transform: rotateZ(0deg);
}



.top-changelang {
    position: relative;
}

.lang-menu {
    left: -50%;
    min-width: 150px;
    text-align: center;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    height: 100%;
}

.lang-flag {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 2px;
}

.lang-menu .dropdown__item .lang-flag {
    margin-right: 0.5rem;
}



@media (max-width: 991.98px) {
    .navbar {
        --navbar-height: 100px;
    }

    .navbar.scrolled {
        --navbar-height: 80px;
    }

    .menu-toggle {
        display: block;
        background: #fff;
        z-index: 1000;
        padding: 5px;
    }

    .menu-toggle__icon {
        width: 30px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        transition: transform 330ms ease-out;
    }

    .menu-toggle.open .menu-toggle__icon {
        height: 30px;
        transform: rotate(-45deg);
    }

    .icon-line-menu {
        background-color: #000;
        border-radius: 5px;
        width: 100%;
        height: 2px;
    }

    .icon-line-menu.icon-line-half {
        width: 50%;
    }

    .icon-line-menu.icon-line-start {
        transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
        transform-origin: right;
    }

    .menu-toggle.open .icon-line-menu.icon-line-start {
        transform: rotate(-90deg) translateX(1px);
    }

    .icon-line-menu.icon-line-end {
        align-self: flex-end;
        transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
        transform-origin: left;
    }

    .menu-toggle.open .icon-line-menu.icon-line-end {
        transform: rotate(-90deg) translateX(-1px);
    }


    .nav__collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 77%;
        height: 100dvh;
        height: 100vh;
        background: linear-gradient(135deg, #003d5b 0%, #002a41 100%);
        display: block;
        padding: 2rem 0;
        opacity: 0;
        visibility: hidden;
        animation: none;
        transform: translateX(100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav__collapse.open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-links {
        height: auto;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .dropdown__wrapper {
        position: relative;
        background-color: #002a41 !important;
        min-width: 100%;
    }

    .dropdown__menu {
        background-color: #002a41 !important;
        border: none;
    }

    .dropdown.open .dropdown__wrapper {
        visibility: visible;
        grid-template-rows: 1fr;
        transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0s 0s;
    }

    .dropdown.open .dropdown__icon {
        transform: rotate(180deg);
    }

    .dropdown__item {
        color: #aeaeae;
    }

    .dropdown__item:hover {
        background-color: #010101;
        color: #fff;
    }

    .nav-link {
        font-size: 1rem;
        justify-content: space-between;
        width: 100%;
        color: #fff;
        padding: 0.7rem 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    .nav-link.active {
        color: #fff;
        opacity: 1;
        font-weight: 700;
    }

    .nav-link:hover {
        color: #fff;
        opacity: 0.7;
    }

    .nav-line {
        display: none;
    }

    .nav__actions {
        height: auto;
        flex-direction: column;
        margin-top: 30px;
        padding: 20px;
        gap: 1.5rem;
    }

    .nav__actions-social-media {
        justify-content: flex-start;
    }

    .nav__actions-social-media svg {
        width: 25px;
        height: 25px;
    }

    .nav__actions-call a {
        animation: none;
        color: #a00101;
        background-color: #fff;
        padding: 8px 16px;
    }

    .lang-toggle {
        color: #fff;
        width: 100%;
    }

    .lang-menu {
        left: 0;
        width: 50px;
    }

    .top-changelang .dropdown__wrapper {
        margin-top: 14px;
    }
}







.hero__slider {
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    -webkit-box-shadow: 0px 8px 16px 6px rgba(18, 25, 38, 0.1);
    box-shadow: 0px 8px 16px 6px rgba(18, 25, 38, 0.1);
}

.hero__slider .splide__track {
    height: 100%;
}

.hero__slider .splide__slide {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__slide-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(19, 20, 24, 0.75) 33%, rgba(19, 20, 24, 0.75) 40%, rgba(0, 0, 0, 0.3) 100%);
}

.hero__slide-content {
    position: relative;
    color: #fff;
    z-index: 5;
    opacity: 0;
    text-align: center;
    max-width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__slide.is-active .hero__slide-content {
    animation-name: fadeUp;
    animation-duration: 1.4s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: forwards;
}

.hero__slide-title {
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 800;
    font-size: 4rem;
    font-variant: small-caps;
}

.hero__slide-text {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.9;
    width: 70%;
}

.hero__slide-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero__slide-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero__slide-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 0;
    opacity: 0;
    overflow: hidden;

    transition: max-width 0.4s ease, opacity 0.3s ease, margin-right 0.3s ease;
}

.hero__slide-button-icon svg {
    width: 35px;
    height: 35px;
}

.hero__slide-button:hover {
    background-color: transparent;
    color: #fff;
    background: #25D366;
    padding-left: 20px;
}

.hero__slide-button:hover .hero__slide-button-icon {
    max-width: 40px;
    opacity: 1;
    margin-right: 10px;
}


.hero__slider .splide__arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
}

.hero__slider .splide__arrow--prev {
    left: 4rem;
}

.hero__slider .splide__arrow--next {
    right: 4rem;
}

.hero__slider .splide__arrow svg {
    width: 30px;
    height: 30px;
}

.hero__slider .splide__arrow:hover:not(:disabled) {
    background: transparent;
    border-color: #ffffff;
}

.hero__slider .splide__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.hero__slider .splide__arrow--prev svg {
    transform: none !important;
}


.hero__slider .splide__pagination {
    gap: 7px;
    margin-bottom: 20px;
}

.hero__slider .splide__pagination__page {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.4s ease;
    border-radius: 0;
}

.hero__slider .splide__pagination__page.is-active {
    background: #fff;
    width: 15px;
    height: 15px;
}


.about-main {
    position: relative;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.about-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about_bg.png);
    background-repeat: repeat-x;
    opacity: 0.05;
    z-index: -1;
}

.about-main__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.about-main__text {
    flex: 0 0 55%;
    z-index: 2;
}

.about-main__text p {
    position: relative;
    color: #000;
    z-index: 1;
    margin-bottom: 60px;
}

.about-main__title {
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 3rem;
    text-transform: uppercase;
}

.about-main__title span {
    display: inline-block;
    line-height: 1.6;
}

.about-main__title span:first-child {
    background-color: #a00101;
    color: #fff;
    padding: 0 20px;
}

.about-main__title span:last-child {
    margin-left: 40px;
}

.about-main__button {
    color: #0f1115;
    font-size: 1.3rem;
    padding: 7px 14px;
}

.about-main__button svg {
    width: 30px;
    margin-right: 20px;
    transition: all 0.23s ease;
}

.about-main__button:hover svg {
    margin-right: 30px;
}

.about-main__advantages {
    padding: 30px 0;
}

.about-main__advantages-title {
    font-size: 2rem;
    font-weight: 700;
    padding: 10px 0;
    text-transform: uppercase;
    background-color: #A20B0B;
    color: #fff;
    padding: 15px 30px;
}

.about-main__advantages-content {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 30px;
}

.about-main__advantages-company {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: #000;
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
    flex: 1 1 50%;
}

.about-main__advantages-company img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.about-main__advantages-company span {
    font-size: 1rem;
    font-weight: 400;
    z-index: 1;
    opacity: 0.9;
    text-align: center;
}

.about-main__advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.about-main__advantage-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-main__advantage-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    border-color: #A20B0B;
}

.about-main__advantage-icon {
    width: 70px;
    height: 100%;
    background: #A20B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0 20px;
}

.about-main__advantage-icon svg {
    width: 35px;
    height: 35px;
}

.about-main__advantage-content {
    padding: 12px 20px 12px 0;
}

.about-main__advantage-title {
    font-size: 20px;
    font-weight: 600;
    color: #A20B0B;
    margin-bottom: 12px;
    line-height: 1.3;
}

.about-main__advantage-text {
    font-size: 14px;
    color: #49454f;
    line-height: 1.6;
    margin: 0;
}


.about-main__video-wrapper {
    flex: 0 0 40%;
    transform: rotate(0deg);
    position: relative;
    z-index: 1;
    width: 100%;
    height: 550px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-main__video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: linear-gradient(90deg, rgb(0 0 0 / 45%) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgb(0 0 0 / 45%) 0%, rgba(255, 255, 255, 0) 100%);
}

.about-main__video {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.about-main__video-expand-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    transition: box-shadow 0.5s ease;
    z-index: 5;
    animation: playBtn 2s ease infinite;
    color: #cecece;
}

.about-main__video-expand-btn svg {
    width: 75px;
    height: 75px;
}

.about-main__video-expand-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(0.9);
}

.about-main__video-wrapper:hover .about-main__video-expand-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);

    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
    transition-delay: 0s;
}

.about-main__video-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
    background-color: #fff;
    padding: 10px 15px;
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
}


@media (max-width: 1200px) {
    .about-main__advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {

    .about-main {
        padding: 20px 0;
    }

    .about-main__content {
        flex-direction: column;
    }

    .about-main>.container {
        padding: 0;
    }

    .about-main__text {
        margin: 0;
    }

    .about-main__title {
        margin: 20px 14px;
        font-size: 1.6rem;
    }

    .about-main__sub-title {
        padding: 6px 14px;
        font-size: 1rem;
        width: 100%;
        display: block;
    }

    .about-main__text p {
        font-size: 0.9rem;
        text-align: left;
        padding: 10px 20px;
        margin: 0;
        border: 0;
    }

    .about-main__video-wrapper {
        flex: none;
        height: 300px;
    }

    .about-main__video-caption {
        padding: 5px 8px;
        font-size: 1rem;
    }

    .about-main__video-expand-btn {
        width: 80px;
        height: 80px;
    }

    .about-main__video-expand-btn svg {
        width: 50px;
        height: 50px;
    }

    .about-main__advantages-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        max-width: 95%;
    }

    .about-main__advantages-grid {
        grid-template-columns: 1fr;
    }

    .about-main__advantages-company {
        gap: 1rem;
        flex: 1 1 50%;
        padding: 20px;
    }

    .about-main__advantages-company img {
        width: 100px;
        height: 100px;
    }

    .about-main__advantages-company span {
        font-size: 0.9rem;
    }

    .about-main__advantage-card {
        gap: 1rem;
    }

    .about-main__advantage-icon {
        width: 50px;
        padding: 0 10px;
    }

    .about-main__advantage-content {
        padding: 15px 10px;
    }

    .about-main__advantage-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .about-main__advantage-text {
        font-size: 12px;
        line-height: 1.6;
    }

}




.local-production {
    padding: clamp(40px, 8vw, 80px) 0;
    background-color: #f1f5f9;
}

.production-header {
    margin-bottom: clamp(30px, 6vw, 60px);
    border-left: 4px solid #a00101;
    padding-left: clamp(15px, 3vw, 25px);
}

.production-header__tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 2px;
}

.production-header__title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: #a00101;
    margin: 8px 0;
    line-height: 1.1;
}

.production-header__subtitle {
    color: #475569;
    font-size: clamp(14px, 2vw, 16px);
    max-width: 100%;
    line-height: 1.5;
}

.production-header__link {
    display: inline-block;
    background-color: #a00101;
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
}

.production-header__link:hover {
    background-color: #c13232;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.prod-card {
    background: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prod-card__visual {
    height: clamp(180px, 30vw, 280px);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prod-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prod-card__content {
    padding: clamp(15px, 3vw, 20px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prod-card__name {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.prod-card__footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
}

.prod-card__action {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

@media (hover: hover) {
    .prod-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.05);
        border-color: #334155;
    }

    .prod-card:hover .prod-card__visual img {
        transform: scale(1.08);
    }

    .prod-card:hover .prod-card__dot {
        background: #334155;
        transform: scale(1.3);
    }
}


@media (max-width: 1200px) {
    .production-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .production-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .production-header {
        border-left-width: 3px;
        margin-bottom: 30px;
    }

    /* .prod-card__visual {
        height: 200px;
    } */
}





.products-main {
    padding: 120px 0;
    background-color: #0f1115;
    color: #fff;
    overflow: hidden;
}

.products-main__grid-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.products-main__tag {
    color: #A20B0B;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.products-main__title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.products-main__title span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.products-main__line {
    width: 60px;
    height: 2px;
    background: #A20B0B;
    margin-bottom: 30px;
}

.products-main__desc {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.products-main__categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 20px;
}

.cat-box {
    position: relative;
    height: 350px;
    background: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #2d333d;
}

.cat-box__visual {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cat-box__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.cat-box__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.cat-box__title {
    font-size: 25px;
    font-weight: 800;
    color: #1a1d23;
    max-width: 100%;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
    overflow-wrap: break-word;
}

.cat-box__arrow {
    display: none !important;
    width: 40px;
    height: 40px;
    border: 1px solid #2d333d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1d23;
    transition: all 0.3s ease;
}

.cat-box:hover {
    background: #A20B0B;
    border-color: #A20B0B;
}

.cat-box:hover .cat-box__title {
    color: #fff;
}

.cat-box:hover .cat-box__visual img {
    transform: scale(1.1);
}

.cat-box:hover .cat-box__arrow {
    background: #fff;
    color: #A20B0B;
    border-color: #fff;
}

.cat-box:hover .cat-box__code,
.cat-box:hover .cat-box__icon {
    color: #fff;
    opacity: 1;
}

@media (max-width: 1198px) {
    .products-main {
        padding: 40px 0;
    }

    .products-main__grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-main__info-block {
        max-width: 600px;
    }

    .products-main__title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .products-main__desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cat-box {
        height: 250px;
    }

}

@media (min-width: 992px) {
    .products-main .container {
        max-width: 80%;
    }
}





.blog-main {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.blog-main__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.blog-main__title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1b1e;
    margin: 0;
}

.blog-main__all-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0056b3;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: gap 0.3s;
}

.blog-main__all-link:hover {
    gap: 15px;
}

.blog-main__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.blog-main__sidebar {
    display: flex;
    flex-direction: column;
}

.blog-card {
    position: relative;
    background: #fff;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.blog-card__image {
    overflow: hidden;
    position: relative;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.08);
}

.blog-card__content {
    position: relative;
    z-index: 2;
}

.blog-card__link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 10;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    color: #797979;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
}

.blog-card__title {
    color: #1a1b1e;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card__title {
    color: #767676;
}

.blog-card--large {
    display: flex;
    flex-direction: column;
}

.blog-card--large .blog-card__image {
    height: 220px;
}

.blog-card--large .blog-card__content {
    padding: 25px;
}

.blog-card--large .blog-card__title {
    font-size: 28px;
    margin-bottom: 15px;
}

.blog-card--large .blog-card__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-card--large .blog-card__link {
    margin-top: 20px;
}

.blog-card--small {
    display: flex;
    height: 150px;
}

.blog-card--small .blog-card__image {
    width: 160px;
    flex-shrink: 0;
}

.blog-card--small .blog-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card--small .blog-card__title {
    font-size: 17px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 8px;
}

.blog-card--small .blog-card__date {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

@media (max-width: 991.98px) {
    .blog-main {
        padding: 40px 0;
    }

    .blog-main__grid {
        grid-template-columns: 1fr;
    }

    .blog-card--large .blog-card__image {
        height: 200px;
    }


    .blog-main__all-link {
        gap: 5px;
        font-size: 14px;
    }

    .blog-card--large .blog-card__title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .blog-card--small {
        height: auto;
        flex-direction: column;
    }

    .blog-card--small .blog-card__image {
        width: 100%;
        height: 180px;
    }

    .blog-main__title {
        font-size: 24px;
    }
}



.partners {
    padding: 100px 0;
    background-color: #f6f5f5;
}

.partners__wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.partners__content {
    flex: 1;
}

.partners__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.partners__text {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}

.partners__info {
    display: flex;
    gap: 40px;
}

.partners__info-item {
    display: flex;
    flex-direction: column;
}

.partners__number {
    font-size: 28px;
    font-weight: 800;
    color: #ac1100;
}

.partners__info-label {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.partners__logos {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.partner-logo {
    background-color: #fff;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background-color: #fafafa;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 991.98px) {

    .partners {
        padding: 40px 0;
    }

    .partners__wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .partners__info {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .partners__logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners__title {
        font-size: 26px;
    }
}



.cta-section {
    padding: 80px 0;
    background-color: #000000;
    scroll-margin-top: 125px;
}

.cta-section__inner {
    background: linear-gradient(135deg, #000000 0%, #393939 100%);
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0, 42, 65, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-section__inner::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-section__title {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-section__text {
    color: #ffffff;
    opacity: 0.8;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-section__features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-section__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 500;
}

.cta-section__feature svg {
    width: 20px;
    height: 20px;
    color: #089e57;
}

.cta-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cta-form__group {
    margin-bottom: 15px;
}

.cta-form__input,
.cta-form__textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.cta-form__textarea {
    height: 120px;
    resize: none;
}

.cta-form__input:focus,
.cta-form__textarea:focus {
    background: #fff;
    border-color: #089e57;
    border-spacing: 2px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.cta-form__submit {
    width: 100%;
    background: #089e57;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-form__submit-icon {
    width: 25px;
    height: 25px;
}

.cta-form__submit:hover {
    background: #07854a;
    transform: translateY(-2px);
}

.cta-form__response {
    display: none;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
    border-radius: 8px;
    color: #fff;
}

.cta-form__response.success {
    padding: 10px;
    background: #2ecc71
}

.cta-form__response.error {
    padding: 10px;
    background: #e74c3c;
}

@media (min-width: 992px) {
    .cta-section .container {
        max-width: 80%;
    }
}

@media (max-width: 991.98px) {

    .cta-section {
        padding: 40px 0;
    }

    .cta-section__inner {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 20px;
    }

    .cta-section__title {
        font-size: 30px;
    }

    .cta-section__text {
        font-size: 0.9rem;
    }

    .cta-form {
        padding: 12px;
    }
}

@media (max-width: 600px) {
    .cta-form__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}




.inner-hero {
    background-color: #a00101;
    padding: 60px 0 60px;
}

.inner-hero__nav {
    display: flex;
    gap: 5px 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    flex-wrap: wrap;
    margin-top: 20px;
}

.inner-hero__nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.inner-hero__nav a:hover {
    color: #a9a9a9;
}

.inner-hero__nav .active {
    color: #b5bac0;
}

.inner-hero__title {
    color: #fff;
    font-size: 45px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
}

.about-content {
    padding: 100px 0;
    background: #fff;
}

.about-content__top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 80px;
    align-items: stretch;
    overflow: hidden;
}

.about-content__left {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 40vw;
    margin: auto;
}

.about-content__right {
    display: flex;
    height: auto;
}

.about-content__badge {
    color: #A20B0B;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-content__main-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1b1e;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content__lead {
    font-size: 20px;
    color: #475569;
    line-height: 1.6;
}

.about-content__text {
    font-size: 17px;
    color: #fafafa;
    background: #a00101;
    line-height: 1.9;
    padding: 20px 30px;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.about-content__visual {
    display: grid;
    align-items: center;
    grid-template-columns: 3fr 1fr 3.5fr;
    gap: 50px;
}

.about-content__img-box {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: #fff3f3;
    border-radius: 20px;
    padding: 20px;
}

.about-content__img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-content__experience-tag {
    background: #A20B0B;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content__experience-tag strong {
    font-size: 32px;
    white-space: nowrap;
}

.feature-line {
    display: flex;
    gap: 25px;
    padding: 20px 0 10px 0;
    border-bottom: 1px solid #eee;
}

.feature-line__num {
    font-size: 24px;
    font-weight: 800;
    color: #A20B0B;
}

.feature-line h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1b1e;
}

.feature-line p {
    font-size: 15px;
    color: #666;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
    overflow: hidden;
}

.mv-card {
    padding: 60px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.mv-card--dark {
    background: #1a1b1e;
    color: #fff;
}

.mv-card--dark .mv-card__title {
    color: #fff;
}

.mv-card__label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    color: #A20B0B;
    margin-bottom: 15px;
    display: block;
}

.mv-card__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-certificates {
    margin-top: 80px;
    scroll-margin-top: 180px;
}

.certificates-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.about-certificates .certificates-gallery {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.about-certificates .certificates-gallery-item {
    position: relative;
    overflow: hidden;
}

.certificates-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002a41;
    opacity: 0;
    transition: opacity 0.25s;
}

.about-certificates .certificates-gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: filter 0.1s;
}

.about-certificates .certificates-gallery-item:hover .certificates-gallery-overlay {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .about-content {
        padding: 50px 0;
    }

    .about-content__lead {
        font-size: 16px;
    }

    .about-content__top-grid {
        gap: 20px;
        margin-bottom: 20px;
    }

    .about-content__text {
        font-size: 14px;
    }

    .mv-card {
        padding: 30px;
    }

    .about-content__left {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
        margin: auto;
        padding: 0;
    }

    .about-content__img-box {
        height: 130px;
    }

    .about-content__visual {
        gap: 25px;
    }

}

@media (max-width: 1024px) {

    .about-content__top-grid,
    .about-content__visual,
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .inner-hero__title {
        font-size: 27px;
        line-height: 1.3;
    }
}

@media (max-width: 991.98px) {
    .inner-hero {
        padding: 30px 0 30px;
    }

    .inner-hero__nav {
        font-size: 11px;
    }
}



.categories {
    margin-bottom: 50px;
}

.categories-content {
    padding: 50px 0;
    color: #fff;
    overflow: hidden;
}

.categories__text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 40px 0;
}

.categories__text span {
    color: #A20B0B;
    margin-right: 10px;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.category {
    position: relative;
    height: 330px;
    background: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #2d333d;
}

.category__visual {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.category__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.category__title {
    font-size: 25px;
    font-weight: 800;
    color: #1a1d23;
    max-width: 100%;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
    overflow-wrap: break-word;
}

.category__arrow {
    display: none !important;
    width: 40px;
    height: 40px;
    border: 1px solid #2d333d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1d23;
    transition: all 0.3s ease;
}

.category:hover {
    background: #A20B0B;
    border-color: #A20B0B;
}

.category:hover .category__title {
    color: #fff;
}

.category:hover .category__img {
    transform: scale(1.1);
}

.category:hover .category__arrow {
    background: #fff;
    color: #A20B0B;
    border-color: #fff;
}

.category:hover .category__icon {
    color: #1a1d23;
    opacity: 1;
}


@media (max-width: 991.98px) {
    .categories__text {
        font-size: 1.1rem;
    }

    .category {
        height: 250px;
    }
}

@media (min-width: 992px) {
    .categories>.container {
        max-width: 80%;
    }

}



.products {
    padding: 30px 0;
}

.products__filters {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.products__filters button {
    border: none;
    background-color: #000000;
    color: #fff;
    padding: 12px 20px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: opacity 0.25s ease-in, transform 0.25s ease-in;
}

.products__filters button:hover {
    opacity: 0.65;
    transform: translateY(-3px);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #eee;
    overflow: hidden;
    background: #fff;
    transition: opacity 0.3s ease;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
}

.product-card.hidden {
    display: none !important;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-card__visual {
    position: relative;
    height: 250px;
    background: #fcfcfc;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #A20B0B;
    color: #fff;
    padding: 5px 12px;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 10;
}

.product-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1f2937;
}

.product-card__model {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.product-card__footer {
    border-top: 1px solid #f3f4f6;
    padding-top: 15px;
    margin-top: auto;
}

.product-card__button {
    display: block;
    text-decoration: none;
    width: 100%;
    background: #A20B0B;
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.product-card__button:hover {
    background: #202020;
}

.product-card__button svg {
    width: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

.product-card .splide__track {
    height: 100%;
}

.product-card .splide__slide {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card .splide__arrow {
    background: rgba(255, 255, 255, 0.9) !important;
}

.sl-overlay {
    background: #000 !important;
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button {
    color: #fff !important;
}

.sl-wrapper .sl-caption {
    background: rgba(0, 0, 0, 0.7) !important;
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .products__filters {
        flex-direction: column;
        gap: 10px;
    }

    .products__filters button {
        padding: 8px 15px;
        font-size: 0.8rem;
        font-weight: 400;
        width: 100%;
    }

    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card__visual {
        height: 120px;
    }

    .product-card__badge {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .product-card__content {
        padding: 10px;
    }

    .product-card__title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .product-card__button {
        padding: 5px 10px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .product-card__button {
        font-size: 14px;
    }

    .product-card__button svg {
        width: 20px;
        margin-right: 5px;
    }
}


.contact {
    padding: 50px 0;
}

.contact__text {
    font-size: 1.5rem;
    font-weight: 500;
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(160, 1, 1, 0.1);
    padding: 0 20px;
    transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.contact-item__icon {
    padding: 20px;
    background-color: #a00101;
}

.contact-item__icon svg {
    width: 50px;
    height: 50px;
    color: #fff;
}

.contact-item__heading {
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-item__elements {
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 1.2rem;
}

.contact-item__elements a {
    color: #4e4e4e;
    text-decoration: none;
}

.contact-item__elements a:hover {
    color: #000;
    text-decoration: underline;
}

.contact-item:hover {
    border-color: rgba(160, 1, 1, 1);
    border-right: 1px solid rgba(160, 1, 1, 1) !important;
}



@media (min-width: 992px) {
    .contact-item:not(:last-child) {
        border-right: 1px solid transparent;
    }
}

@media (max-width: 991.98px) {
    .contact__text {
        font-size: 1.1rem;
    }

    .contact__grid {
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-item__icon {
        padding: 10px;
    }

    .contact-item__icon svg {
        width: 30px;
        height: 30px;
    }

    .contact-item__elements a {
        font-size: 1rem;
    }
}







.blogs {
    padding: 50px 0;
}

.blogs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.blogs-card {
    position: relative;
    overflow: hidden;
    height: 360px;
    border-radius: 0.375rem;
    display: flex;
    align-items: flex-end;
}

.blogs-card__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blogs-card__image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
    transition: opacity 0.23s cubic-bezier(0.4, 0, 0.2, 1);
}

.blogs-card:hover .blogs-card__image-wrapper::after {
    opacity: 0.8;
}

.blogs-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogs-card__content {
    color: #fff;
    padding: 30px;
    z-index: 1;
}

.blogs-card__link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.7rem;
}

.blogs-card__link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}


@media (max-width: 991.98px) {
    .blogs-card {
        height: 300px;
    }

    .blogs-card-link {
        font-size: 1.4rem;
    }
}



.post-single {
    padding: 50px 0;
    background-color: #fff;
}

.post-single__image-wrapper {
    max-width: 850px;
    height: 450px;
    margin: 0 auto 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.post-single__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-single__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #888;
}

.post-single__typography {
    line-height: 1.8;
    font-size: 17px;
    color: #333;
}

.post-single__typography h2 {
    font-size: 28px;
    margin: 35px 0 15px;
    color: #000;
}

.post-single__typography a {
    color: #003d5b;
}

.post-single__typography a:hover {
    color: #002b41;
}

.post-single .post-video video {
    display: block;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    object-fit: none;
}

@media (max-width: 991.98px) {
    .post-single {
        padding: 40px 0;
    }

    .post-single__image-wrapper {
        height: 250px;
        margin-bottom: 25px;
        border-radius: 12px;
    }

    .post-single__typography {
        font-size: 16px;
    }

    .post-single .post-video video {
        height: 450px;
    }

}




.product-single {
    padding: 50px 0;
}

.product-single__grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 20px;
}

.product-single__main-img {
    width: 100%;
    /* height: 350px; */
    object-fit: cover;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
}

.product-single__title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.product-single__meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-single__meta-item span {
    display: block;
    font-size: 13px;
    color: #888;
}

.product-single__meta-item strong {
    font-size: 16px;
    color: #333;
}

.product-single__description h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.product-single__description p {
    line-height: 1.7;
    color: #555;
}

.offer-card {
    background: #ededed;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 20px;
    position: sticky;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-card__title {
    font-size: 18px;
}

.offer-card__text {
    font-size: 14px;
    color: #666;
}

.offer-card__btn {
    width: 100%;
    text-decoration: none;
    background: #000;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.offer-card__btn:hover {
    background: #333;
}

.offer-card__note {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    font-size: 12px;
    color: #888;
}

.product-single__gallery {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.gallery-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #eee;
}

@media (max-width: 1200px) {
    .product-single__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .product-single__visual {
        grid-column: 1 / 2;
    }

    .product-single__info {
        grid-column: 2 / 3;
    }

    .product-single__aside {
        grid-column: 1 / 3;
        width: 100%;
    }

    .product-single__main-img {
        height: 300px;
    }

}

@media (max-width: 991.98px) {
    .product-single__grid {
        grid-template-columns: 1fr;
    }

    .product-single__visual,
    .product-single__info,
    .product-single__aside {
        grid-column: 1 / -1;
    }

    .product-single__title {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .product-single__description p {
        font-size: 1rem;
    }

    .product-single__main-img {
        width: 50%;
        height: 100%;
    }
}




.location-card__map {
    display: block;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .location-card__map {
        height: 250px;
    }
}


.footer {
    background-color: var(--footer-bg);
    color: var(--text-white);
}

.footer__top {
    background-color: var(--footer-top-bg);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__top-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__top-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    transition: opacity 0.3s;
}

.footer__top-link:hover {
    opacity: 0.7;
}

.footer__main {
    padding: 50px 0;
}

.footer__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.footer__logo {
    max-width: 150px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 50%;
}

.footer__subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.footer__contact-list {
    list-style: none;
    padding: 0;
}

.footer__contact-list li {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 400;
}

.footer__contact-list a {
    color: var(--text-white);
    text-decoration: none;
}

.footer__disclaimer {
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.siteby span {
    margin: 0 10px;
}

.uniweb-logo img {
    width: 100px;
    vertical-align: middle;
}

.footer__social-flags {
    display: flex;
}

.social-flag {
    background: white;
    color: var(--footer-bg);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transition: transform 0.3s, background 0.3s;
}

.social-flag svg {
    width: 30px;
    height: 30px;
}

.social-flag:hover {
    background: #c7c7c7;
}

.footer__copyright {
    padding: 20px 0;
    text-align: left;
    font-size: 13px;
    background: white;
    color: #333;
}

.footer__copyright p {
    margin-bottom: 0;
}

.whatsapp-fixed {
    position: fixed;
    bottom: 40px;
    right: 0;
    background-color: #25d366;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.whatsapp-fixed svg {
    width: 45px;
    height: 45px;
}

@media (max-width: 991.98px) {
    .navbar .container {
        max-width: 95%;
    }

    .footer__main {
        padding: 20px 0;
    }

    .footer__logo {
        max-width: 100px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__info {
        text-align: center;
    }

    .footer__top-nav {
        gap: 15px;
    }

    .footer__top-link {
        font-size: 1.1rem;
    }

    .footer__content {
        gap: 1rem;
    }

    .footer__disclaimer {
        font-size: 0.8rem;
    }

    .whatsapp-fixed {
        width: 60px;
        height: 60px;
    }

    .whatsapp-fixed svg {
        width: 30px;
        height: 30px;
    }
}



@media (max-width: 1198px) {
    .hero__slide-content {
        max-width: 95%;
    }

    .hero__slide-title {
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }

    .hero__slide-text {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .hero__slide-buttons {
        gap: 1rem;
    }

    .hero__slide-button {
        padding: 5px 15px;
        font-size: 0.8rem;
    }

    .hero__slide-button-icon svg {
        width: 30px;
        height: 30px;
    }

    .hero__slide-button:hover {
        padding-left: 10px;
    }

    .hero__slide-button:hover .hero__slide-button-icon {
        margin-right: 5px;
    }


    .hero__slider .splide__arrow {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .hero__slider .splide__arrow--prev {
        left: 1rem;
    }

    .hero__slider .splide__arrow--next {
        right: 1rem;
    }

    .hero__slider .splide__arrow svg {
        width: 20px;
        height: 20px;
    }


    .hero__slider .splide__pagination {
        gap: 5px;
        margin-bottom: 20px;
    }

    .hero__slider .splide__pagination__page {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1220px) {
    .nav__actions-call a {
        padding: 8px 16px;
        font-size: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1580px) {
    .navbar .container {
        max-width: 99%;
    }

    .navbar__logo {
        width: var(--navbar-height);
        height: var(--navbar-height);
    }

    .nav__actions {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero__slide-title {
        margin-bottom: 3rem;
        font-size: 3rem;
    }

    .hero__slide-text {
        font-size: 1rem;
        margin-bottom: 3rem;
    }



}

@media (min-width: 992px) and (max-width: 1277px) {
    .nav-link {
        font-size: 0.8rem;
    }

    .nav__actions-social-media {
        display: none;
    }

}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(70px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-70px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomUp {
    from {
        opacity: 0;
        transform: translate(-50%, 0) scale(0);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
}

@keyframes play {
    5% {
        transform: scale(1.05);
    }

    15% {
        -webkit-box-shadow: 0 0 0 3px rgba(121, 0, 0, 0.6);
        -moz-box-shadow: 0 0 0 3px rgba(121, 0, 0, 0.6);
        box-shadow: 0 0 0 3px rgba(121, 0, 0, 0.6);
    }

    25% {
        -webkit-box-shadow: 0 0 0 6px rgba(255, 7, 64, 0.6), 0 0 0 10px rgba(121, 0, 0, 0.3);
        -moz-box-shadow: 0 0 0 6px rgba(255, 7, 64, 0.6), 0 0 0 10px rgba(121, 0, 0, 0.3);
        box-shadow: 0 0 0 6px rgba(255, 7, 64, 0.6), 0 0 0 10px rgba(121, 0, 0, 0.3);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(121, 0, 0, 0.6), 0 0 0 20px rgba(121, 0, 0, 0.3);
        -moz-box-shadow: 0 0 0 10px rgba(121, 0, 0, 0.6), 0 0 0 20px rgba(121, 0, 0, 0.3);
        box-shadow: 0 0 0 10px rgba(121, 0, 0, 0.6), 0 0 0 20px rgba(121, 0, 0, 0.3);
    }
}

@keyframes swing {
    0% {
        transform: rotateZ(0deg);
    }

    5% {
        transform: rotateZ(20deg) scale(1.1);
    }

    10% {
        transform: rotateZ(-20deg);
    }

    15% {
        transform: rotateZ(20deg);
    }

    20% {
        transform: rotateZ(-20deg);
    }

    25%,
    60% {
        transform: rotateZ(0deg);
    }
}

@keyframes playBtn {
    15% {
        -webkit-box-shadow: 0 0 0 5px rgb(188, 188, 188, 0.6);
        -moz-box-shadow: 0 0 0 5px rgb(188, 188, 188, 0.6);
        box-shadow: 0 0 0 5px rgb(188, 188, 188, 0.6);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgb(255, 255, 255, 0.4), 0 0 0 20px rgb(198, 198, 198, 0.2);
        -moz-box-shadow: 0 0 0 10px rgb(255, 255, 255, 0.4), 0 0 0 20px rgb(198, 198, 198, 0.2);
        box-shadow: 0 0 0 10px rgb(255, 255, 255, 0.4), 0 0 0 20px rgb(198, 198, 198, 0.2);
    }

    50% {
        -webkit-box-shadow: 0 0 0 15px rgb(255, 255, 255, 0.4), 0 0 0 30px rgb(168, 168, 168, 0.3);
        -moz-box-shadow: 0 0 0 15px rgb(255, 255, 255, 0.4), 0 0 0 30px rgb(168, 168, 168, 0.3);
        box-shadow: 0 0 0 15px rgb(255, 255, 255, 0.4), 0 0 0 30px rgb(168, 168, 168, 0.3);
    }
}