
:root {
    --wx-clr: #0000ba;
    --wx-clr-rgb: rgb(0, 2, 190);
    --wx-clr-bg: #f9f9fe;
    --mobile-breakpoint: 769px;
    --wx-clr-footer: rgb(0, 0, 95);
    --wx-clr-rgb-50: rgba(0, 0, 186, 0.5);
    --wx-clr-btn-hover: #F9BA00;;
    --white-text-color: #eef2f3;
    --backgroud-box-color: rgba(0, 0, 0, 0.4);
    --bg-clr-blue-200: #f9f9fe;
    --bg-clr-karta: #f5f5fe;
    --lcr-bg-svg-hover: background-color: #F9BA00;
    --fs-headings: clamp(2.2rem, calc(1.54rem + 2.03vw), 3rem);
    --fs-bodytext: clamp(0.9rem, calc(1.06rem + 0.33vw), 1rem);
    --fs-300: clamp(0.94rem, calc(0.92rem + 0.08vw), 0.98rem);
    --fs-400: clamp(1rem, calc(1.06rem + 0.33vw), 1.11rem);
    --fs-450: clamp(1.4rem, calc(1.01rem + 0.33vw), 1.39rem);
    --fs-500: clamp(1.35rem, calc(1.21rem + 0.69vw), 1.75rem);
    --fs-600: clamp(1.62rem, calc(1.37rem + 1.24vw), 2.33rem);
    --fs-700: clamp(1.94rem, calc(1.54rem + 2.03vw), 3.11rem);
    --fs-750: clamp(2.1rem, calc(1.54rem + 2.03vw), 3.51rem);
    --fs-800: clamp(2.33rem, calc(1.7rem + 3.15vw), 4.14rem);
    --fs-900: clamp(2.8rem, calc(1.85rem + 4.74vw), 5.52rem);
    --fs-hero-h1: clamp(2.23rem, 5vw, 4rem);
    --fs-hero-p: clamp(1rem, 3.15vw, 1.2rem);
    --width-hero: clamp(300px, 100%, 950px);
}
.content-grid {
    --padding-inline: 1.8rem;
    --content-max-width: 1300px;
    --breakout-max-width: 1350px;
    --breakout-size: calc(
        (var(--breakout-max-width) - var(--content-max-width)) / 2
    );
    --content-width: calc(100% - (var(--padding-inline) * 2));
    display: grid;
    grid-template-columns:
        [full-width-start] minmax(var(--padding-inline), 1fr)
        [breakout-start] minmax(0, var(--breakout-size))
        [content-start] min(var(--content-width), var(--content-max-width))
        [content-end] minmax(0, var(--breakout-size))
        [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}
.content-grid > :not(.breakout, .full-width),
.full-width > :not(.breakout, .full-width) {
    grid-column: content;
}
.content-grid > .breakout {
    grid-column: breakout;
}
.content-grid > .full-width {
    grid-column: full-width;
    display: grid;
    grid-template-columns: inherit;
}
img.full-width {
    width: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "DMSans";
    src: url("../fonts/DMSans-Variable.woff2") format("woff2");
    font-weight: 200 700;
    font-display: swap;
    font-style: normal;
}
body,
html {
    font-family: "DMSans", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu, "Open Sans", "Helvetica Neue",
        sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.header-container {
    width: 100%;
    margin: 0 auto;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 25px 0; 
    color: white;
    transition: all 0.4s ease-in-out;
}
header.transparent {
    background-color: transparent;
    color: white;
}
header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
}
header.shrunk {
    padding: 20px 0;
}
nav.transparent *,
nav.scrolled * {
    font-weight: 400;
    color: white;
}
#burger-menu.transparent span {
    background-color: white;
}
#burger-menu.scrolled span {
    background-color: var(--wx-clr);
}
.hidden {
    display: none;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1rem;
    font-weight: bold;
    color: var(--wx-clr);
    text-decoration: none;
    z-index: 9999;
}
.logo img {
    transition: opacity 0.5s ease-in-out;
}
.logo img.hidden {
    opacity: 0;
}
.logo img:not(.hidden) {
    opacity: 1;
    margin-top: 2px;
    margin-left: 0; 
}
nav {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
    margin-right: 0; 
}
nav ul {
    position: absolute;
    top: 0;
    left: 0;
    display: none; 
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100dvh;
    padding-top: 10rem;
    list-style: none;
    background-color: rgba(0, 0, 95, 0.9);
    color: white;
    z-index: -1;
}
nav ul li {
    margin-block: 10px;
    margin-left: 10vw;
    text-align: left;
}
nav ul li::before {
    content: "";
    margin-right: 15px;
}
nav ul li a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    width: 100%;
    margin: auto;
}
nav ul.active {
    display: flex;
}
.burger-menu {
    position: absolute;
    right: 20px;
    display: flex; 
    flex-direction: column;
    margin-left: 20px;
    cursor: pointer;
}
.burger-menu span {
    width: 30px;
    height: 4px;
    margin: 3px 0;
    background-color: var(--wx-clr);
    transition: all 0.3s ease-in-out;
}
.burger-menu.active span:nth-child(1) {
    position: relative;
    top: 10px;
    transform: rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
    opacity: 0;
}
.burger-menu.active span:nth-child(3) {
    position: relative;
    top: -10px;
    transform: rotate(-45deg);
}
.scroll-icon {
    width: 50px;
    height: 50px;
    margin-left: auto;
    padding-top: 12px;
    font-size: 1.5rem;
    border-radius: 50%;
    color: var(--backgroud-box-color);
    background-color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
    display: none;
}
@media (min-width: 769px) {
    #hero {
        height: 100vh;
    }
    .scroll-icon {
        display: block;
    }
    .desktop {
        display: block;
    }
    .mobile {
        display: none;
    }
    nav {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        transform: translateX(0);
        z-index: auto;
        margin-right: 0;
    }
    nav ul {
        position: static;
        display: flex;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        background-color: transparent;
    }
    nav ul li {
        margin-block: 0;
        margin-left: 15px;
        text-align: center;
    }
    nav ul li a {
        font-size: var(--fs-bodytext);
        color: white;
    }
    nav.scrolled a {
        color: var(--wx-clr);
    }
    .burger-menu {
        display: none;
    }
    .logo img:not(.hidden) {
        margin-left: 0; 
    }
}
@media (min-width: 1431px) {
    .logo img:not(.hidden) {
        margin-left: -30px;
    }
    nav {
        margin-right: -30px;
    }
}
#hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    height: 100dvh;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 186, 0.65);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
h1 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1em;
}
.hero-image {
    width: 100%;
    max-width: 3920px;
    margin: auto;
}
.hero-image img {
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    width: 100%;
    max-width: 2220px;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: -1;
    margin: auto;
    max-height: 92%;
    margin-top: 4%;
}
.hero-content {
    position: absolute;
    width: 100%;
}
.hero-content h1 {
    margin-bottom: 1.5rem;
    max-width: 17ch;
    font-size: var(--fs-hero-h1);
    font-weight: 600;
    text-align: left;
}
.hero-content p {
    margin-top: 30px;
    margin-bottom: 20px;
    max-width: 48ch;
    font-size: var(--fs-hero-p);
    font-weight: 500;
    line-height: 1.4;
    color: white;
    text-align: left;
}
.hero-buttons {
    position: absolute;
    bottom: -100px;
    display: flex;
    width: 100%;
    margin: auto;
    gap: 20px;
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.baner {
    position: relative;
    margin-bottom: 4rem; 
}
.baner-img,
.dark-foto {
    object-fit: cover;
    object-position: center;
    background-color: black;
    width: 100%;
    height: 250px; 
}
.baner img {
    display: block;
    background-color: darkslategray;
    object-fit: cover;
    width: 100%;
    min-height: 250px;
}
.baner h1,
.baner-h1 {
    display: block;
    color: white;
    margin-top: -80px; 
    font-size: var(--fs-800);
    letter-spacing: 1px;
    font-weight: 400;
    z-index: 20;
}
@media (min-width: 769px) {
    .baner {
        margin-bottom: 8rem; 
    }
    .baner-img,
    .dark-foto {
        height: 450px; 
    }
    .baner img {
        min-height: 450px;
    }
    .baner h1,
    .baner-h1 {
        margin-top: -250px; 
    }
}
footer {
    padding-top: 4rem;
    padding-bottom: 2rem;
    background-color: var(--wx-clr-footer);
    color: white;
}
.footer-content {
    display: flex; 
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    width: 100%;
    margin: 30px auto;
    padding-bottom: 4vw;
}
.footer-content_col {
    display: flex;
    flex-direction: column;
    color: white;
}
.footer-content_col h2,
.footer-content_col h3 {
    padding-bottom: 2vw;
    font-size: var(--fs-450);
    font-weight: 600;
}
.footer-content_col p {
    padding-bottom: 5px;
    font-size: var(--fs-bodytext);
    font-weight: 400;
    color: white;
}
.footer-content_col a {
    padding-bottom: 5px;
    font-size: var(--fs-bodytext);
    font-weight: 400;
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
}
hr {
    height: 1px;
    margin-bottom: 3rem;
    border: 0;
    background-color: white;
}
.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
}
.footer-logo {
    height: 30px;
}
.footer-logo img {
    width: auto;
    height: 27px;
    object-fit: cover;
    object-position: left center;
}
.footer-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    row-gap: 0.7rem;
    list-style: none;
    margin-bottom: 0.8rem;
    padding-block: 0.5rem;
}
.footer-links a {
    font-size: 1rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
}
.h3-footer {
    font-size: var(--fs-400);
    font-weight: 600;
    color: white;
}
.fb-icon {
    width: 30px;
    height: 30px;
    margin-top: 5px;
    margin-right: auto;
    cursor: pointer;
}
@media (min-width: 860px) {
    .footer-content {
        display: grid;
        grid-template-columns: 27% 30% 27% auto;
        grid-auto-flow: column;
    }
    .footer-info {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
    .fb-icon {
        margin-left: auto;
    }
}
#box-section {
    padding: 15px 0;
}
.hp-box-counters {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(2, 170px);
    row-gap: 2rem;
    column-gap: .5rem;
    width: 100%;
    padding-block: 3rem;
}
.hp-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3em;
    width: 100%;
    min-width: 100px;
    margin: 0 auto;
}
.hp-counter__number {
    width: 100%;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wx-clr);
    text-align: left;
}
.hp-counter__text {
    width: 100%;
    margin: auto;
    font-size: var(--fs-bodytext);
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--wx-clr);
    justify-content: left;
}
@media (min-width: 510px) {
    .hp-box-counters {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        padding: 7vw 0;
    }
    .hp-counter__number {
        font-size: 2.2rem;
        text-align: center;
    }
    .hp-counter__text {
        text-align: center;
    }
}
@media (min-width: 700px) {
    .hp-counter__number {
        font-size: 3rem;
    }
}
.hp-about__section {
    max-height: 800px;
    margin-bottom: 60px;
    padding: 55px 0;
}
.hp-about {
    display: grid;
    gap: 5vw;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}
.hp-about__text {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    height: fit-content;
    margin: 0 auto;
    overflow: hidden;
}
.hp-about h2 {
    max-width: 17ch;
    font-size: var(--fs-headings);
    font-weight: 600;
    color: var(--wx-clr);
}
.hp-about p {
    padding-right: 20px;
    font-size: var(--fs-bodytext);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1px;
    color: var(--wx-clr);
}
.hp-about__image {
    height: 360px;
    margin: 30px 0 100px 0;
}
.hp-about .hp-about__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
}
@media (min-width: 920px) {
    .hp-about__section {
        margin-bottom: 100px;
        padding: 200px 0;
    }
    .hp-about__image {
        height: 800px;
        margin-top: -80px;
    }
}
.hp-about button {
    max-width: fit-content;
    padding-block: 10px;
    padding-inline: 20px;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background-color: var(--wx-clr);
    border: 2px solid var(--wx-clr);
    cursor: pointer;
}
.mobile {
    display: block;
}
.desktop {
    display: none;
}
.hp-sortiment {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 80px 0 50px 0;
}
.hp-sortiment__box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    row-gap: 0.6rem;
    margin-top: 1.4rem;
}
.hp-sortiment__box a {
    text-decoration: none;
    transition: all .2s ease;
    border: 0px solid #f3f3f3;
}
.hp-sortiment__box a:hover {
    box-shadow: 2px 2px 10px 0px #f3f3f3;
    border: 2px solid #f3f3f3;
    transition: all .2s ease;
}
.hp-sortiment__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 150px;
    height: 150px;
    background-color: var(--wx-clr-bg);
    border-radius: 20px;
}
.hp-sortiment__item h3 {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    color: var(--wx-clr);
}
.hp-sortiment__item img {
    max-width: 70px;
    height: auto;
}
.hp-sortiment__text {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.hp-sortiment__text h2 {
    padding-block: 2.3rem;
    font-size: var(--fs-headings);
    font-weight: 600;
    line-height: 1.2;
    color: var(--wx-clr);
    text-align: left;
}
.hp-sortiment__text p {
    font-size: var(--fs-bodytext);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1px;
    color: var(--wx-clr);
}
@media (min-width: 960px) {
    .mobile {
        display: none;
    }
    .desktop {
        display: block;
    }
    .hp-sortiment {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        padding-top: 170px;
        padding-bottom: 110px;
    }
    .hp-sortiment__box {
        order: 1;
        grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
        row-gap: 1.3rem;
        margin-top: 0;
    }
    .hp-sortiment__text {
        order: 2;
    }
    .hp-sortiment__item {
        width: 250px;
        height: 250px;
    }
    .hp-sortiment__item h3 {
        font-size: var(--fs-bodytext);
        font-weight: 600;
    }
}
.hp-services {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-height: 600px;
    margin: auto;
    color: white;
}
.hp-services img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: lightblue;
    z-index: 1;
}
.hp-services h2 {
    width: 100%;
    font-size: var(--fs-headings);
    font-weight: 600;
    text-align: center;
    z-index: 10;
}
.hp-services p {
    width: 100%;
    max-width: 57ch;
    margin-top: 2rem;
    padding-inline: 1.5rem;
    font-size: calc(var(--fs-bodytext) * 1.1);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1px;
    color: white;
    text-align: center;
    z-index: 10;
}
.hp-services__btn-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 7px;
    max-width: 420px;
    margin-top: 2rem;
    z-index: 10;
}
.hp-distributor {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 2rem;
    padding: 30px 0 60px 0;
}
.hp-distributor__box {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, 80px);
    gap: 2rem;
    margin-top: 1.5rem;
}
.hp-distributor__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70px;
}
.hp-distributor__item h3 {
    display: none;
}
.hp-distributor__item img {
    max-width: 70px;
    max-height: 70px;
}
.hp-distributor__item:not(:nth-child(3n)) {
    border-right: 0;
}
.hp-distributor__item:not(:nth-last-child(-n + 3)) {
    border-bottom: 0;
}
.hp-distributor__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.7rem;
}
.hp-distributor__text h2 {
    padding-block: 2.3rem;
    font-size: var(--fs-headings);
    font-weight: 600;
    line-height: 1.2;
    color: var(--wx-clr);
    text-align: left;
}
.hp-distributor__text p {
    font-size: var(--fs-bodytext);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1px;
    color: var(--wx-clr);
}
@media (min-width: 1200px) {
    .hp-distributor {
        grid-template-columns: auto 400px;
        gap: 4rem;
        padding: 130px 0;
    }
    .hp-distributor__box {
        order: 1;
        grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
        gap: 1rem;
        margin-top: 0;
    }
    .hp-distributor__text {
        order: 2;
    }
    .hp-distributor__item {
        height: 140px;
    }
    .hp-distributor__item img {
        max-width: 180px;
        max-height: 70px;
    }
}
.hp-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 30px 0 75px 0;
}
.hp-contact img {
    align-self: center;
    width: 100%;
    max-width: 600px;
    height: 100%;
    max-height: 380px;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
}
.hp-contact__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.7rem;
}
.hp-contact__text h2 {
    padding-block: 2.3rem;
    font-size: var(--fs-headings);
    font-weight: 600;
    color: var(--wx-clr);
    text-align: left;
}
.hp-contact__text p {
    font-size: var(--fs-bodytext);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1px;
    color: var(--wx-clr);
}
.hp-contact button {
    max-width: fit-content;
    padding-block: 7px;
    padding-inline: 20px;
    color: var(--wx-clr);
    background-color: transparent;
    border: 2px solid var(--wx-clr);
    cursor: pointer;
}
.hp-contact .map {
    width: 100%;
    height: 100%;
    margin: auto;
}
.hp-contact iframe,
.hp-contact img {
    display: none;
    border-radius: 15px;
}
@media (min-width: 1025px) {
    .hp-contact iframe,
    .hp-contact .map img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        margin: auto;
    }
}
@media (min-width: 1025px) {
    .hp-contact {
        display: grid;
        grid-template-columns: 400px auto;
        gap: 5rem;
        padding: 100px 0;
    }
}
.about-us-info {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-top: 3vw;
    padding-bottom: 6rem;
}
.about-us-info__cto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: auto;
}
.about-us-info .profile-image {
    max-height: 190px;
    max-width: 190px;
    border-radius: 50%;
    overflow: hidden;
}
.about-us-info .profile-image img {
    object-fit: cover;
    object-position: top;
    height: 100%;
    width: 100%;
}
.about-us-info p {
    font-weight: 450;
    font-size: var(--fs-bodytext);
    color: var(--wx-clr);
    line-height: 1.5;
}
.about-us-info .highlight {
    font-weight: 600;
    font-size: var(--fs-bodytext);
    line-height: 1.5;
    padding-top: 40px;
}
@media (min-width: 679px) {
    .about-us-info {
        display: grid;
        grid-template-columns: 35% auto; 
        padding-bottom: 9vw;
        grid-auto-flow: dense;
    }
    .about-us-info__cto {
        grid-column: 1;
    }
    .about-us-info__text {
        grid-column: 2;
    }
}
.contats-shorts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    justify-content: center;
    margin-bottom: 1.3rem;
}
@media (min-width: 570px) {
    .contats-shorts {
        justify-content: flex-start;
    }
}
.contacts-group {
    padding-block: 6rem;
}
.contacts-group h2 {
    display: block;
    font-size: var(--fs-600);
    font-weight: 600;
    padding-bottom: 4rem;
    color: var(--wx-clr);
    margin: auto;
    text-align: center;
}
@media (min-width: 570px) {
    .contacts-group h2 {
        text-align: left;
        margin: 0;
    }
}
.contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; 
    column-gap: 5rem;
    row-gap: 5rem;
}
.employee-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center; 
    row-gap: 0;
    column-gap: 2rem;
}
@media (min-width: 570px) {
    .employee-card {
        gap: 2rem;
    }
}
.employee-card img {
    width: auto;
    height: 190px;
    border-radius: 50%;
}
.employee-card .profile-image {
    max-width: 150px;
    max-height: 150px;
    overflow: hidden;
}
.employee-card .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.employee-info__contact,
.shop-contacts_contact {
    display: flex;
    align-items: center;
    padding-block: 4px;
}
.employee-info__name {
    padding-top: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--wx-clr);
}
.employee-info__position {
    font-size: 0.9rem;
    font-weight: 500;
    margin: auto;
    text-align: center;
    color: var(--wx-clr);
    padding-bottom: 1rem;
}
@media (min-width: 570px) {
    .employee-info__position {
        text-align: left;
    }
    .employee-info__name {
        text-align: left;
    }
}
.employee-info a,
.shop-info__contacts a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--wx-clr);
    text-decoration: none;
}
.icon {
    width: 16px;
    height: 16px;
    margin: 0 15px 0 10px; 
    fill: var(--wx-clr);
}
.shop-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--fs-400);
    width: 100%;
    margin-bottom: 5rem;
}
.shop-info__contacts {
    display: flex;
    flex-direction: column;
    min-width: 300px;
}
.shop-info__contacts h2,
.shop-info__contacts p {
    padding-block: 5px;
    color: var(--wx-clr);
    margin: auto;
}
.shop-info__contacts h2 {
    padding-bottom: 20px;
}
@media (min-width: 570px) {
    .shop-info__contacts {
        margin-right: auto;
    }
    .shop-info__contacts h2,
    .shop-info__contacts p {
        text-align: left;
        margin: 0;
    }
}
.shop-info__map {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border: 0;
}
@media (min-width: 764px) {
    .shop-info__map {
        max-width: 750px;
        max-height: 300px;
        border: 0;
    }
}
.shop-info__map iframe,
.shop-info__map img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.not-found__section {
    position: relative;
    width: 100%;
    height: 350px;
}
.not-found__section picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.not-found__section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}
.not-found__section h2 {
    position: absolute;
    top: 27%;
    left: 45%;
    display: block;
    color: white;
    font-size: var(--fs-500);
    font-weight: 700;
    letter-spacing: 0.5px;
    max-width:  20ch;
    flex-wrap: wrap;
    z-index: 1;
}
.not-found__section span {
    position: absolute;
    bottom: 30%;
    left: 45%;
    cursor: pointer;
    z-index: 1;
}
.services-items,
.sortiments-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2.5rem;
    padding-bottom: 8rem;
}
.services-items__item,
.sortiments-items__item {
    display: flex;
    flex: 1 1 290px;
    flex-direction: column;
    max-width: 290px;
    height: 480px;
    background-color: var(--bg-clr-karta);
    border-radius: 25px;
    overflow: hidden;
}
.services-items__item img,
.sortiments-items__item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
}
.services-items__item h2,
.sortiments-items__item h2 {
    display: block;
    margin: 2rem 2rem 0;
    font-size: var(--fs-450);
    font-weight: 500;
    color: var(--wx-clr);
}
.services-items__item p,
.sortiments-items__item p {
    display: block;
    margin: 1rem 2rem;
    font-size: calc(var(--fs-bodytext) * 0.9);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.2px;
    color: var(--wx-clr);
}
.services-items__item span,
.sortiments-items__item span {
    align-self: flex-start;
    margin: auto 0 2rem 2rem;
    padding: 10px 18px 9px;
    max-height: fit-content;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--wx-clr);
    background-color: transparent;
    border: 1px solid var(--wx-clr);
    border-radius: 25px;
    cursor: pointer;
}
.services-items a,
.sortiments-items a {
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid transparent;
}
.services-items a:hover,
.sortiments-items a:hover {
    border: 2px solid #f3f3f3;
    border-radius: 27px;
    transition: all .2s ease;
}
.services-items__item:hover span,
.sortiments-items__item:hover span {
    color: white;
    background-color: var(--wx-clr);
    border: 1px solid var(--wx-clr);
    transition: all 0.1s ease;
}
.service {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 7rem;
    padding-bottom: 100px;
}
.service__h1 {
    display: block;
    height: fit-content;
    padding-top: 3px;
    padding-bottom: 40px;
    font-size: var(--fs-headings);
    font-weight: 600;
    color: var(--wx-clr);
}
.service__description {
    padding-bottom: 20px;
}
.service__description h2 {
    display: inline;
    color: var(--wx-clr);
    font-size: 1rem;
}
.service__description p {
    color: var(--wx-clr);
    padding-bottom: 15px;
}
.service__description ul {
    padding-left: 25px;
}
.service__description ul li {
    color: var(--wx-clr);
    padding-bottom: 15px;
}
.service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .service {
        grid-template-columns: 5fr 4fr;
    }
}
.sortiment {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 7rem;
    padding-bottom: 100px;
}
.sortiments__heading {
    margin: auto auto 50px;
    font-size: var(--fs-headings);
    font-weight: 600;
    justify-content: center;
    color: var(--wx-clr);
}
.sortiments__infotext {
    margin: auto auto 50px;
    max-width: 40ch;
    font-size: var(--fs-bodytext);
    font-weight: 500;
    justify-content: center;
    color: var(--wx-clr);
}
.sortiment__h1 {
    display: block;
    height: fit-content;
    padding-top: 3px;
    padding-bottom: 40px;
    font-size: var(--fs-headings);
    font-weight: 600;
    color: var(--wx-clr);
}
.sortiment__description {
    padding-bottom: 20px;
}
.sortiment__description p {
    color: var(--wx-clr);
    padding-bottom: 15px;
}
.sortiment__description ul {
    padding-left: 25px;
}
.sortiment__description ul li {
    color: var(--wx-clr);
    padding-bottom: 15px;
}
.sortiment__links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.sortiment__links-box {
    display: grid;
    padding: 40px;
    border-radius: 15px;
    background-color: var(--bg-clr-karta);
}
.sortiment__links-box p {
    padding-bottom: 30px;
    color: var(--wx-clr);
}
@media (min-width: 768px) {
    .sortiment {
        grid-template-columns: 5fr 3fr;
    }
}
.btn-outline svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.1;
}
.btn-outline:hover svg {
    transition: all .2s ease;
}
.btn-outline {
    display: inline-flex;
    gap: .7rem;
}
.machines-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 5vw;
}
.machines-about__text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
    height: fit-content;
    overflow: hidden;
}
.machines-about h2 {
    display: block;
    max-width: 17ch;
    height: fit-content;
    font-size: var(--fs-700);
    font-weight: 600;
    color: var(--wx-clr);
}
.machines-about p {
    display: block;
    font-size: var(--fs-400);
    font-weight: 400;
    color: var(--wx-clr);
}
.machines-about__image {
    margin-top: 40px;
    margin-bottom: -20px;
    height: 300px;
}
@media (min-width: 708px) {
    .machines-about__image {
        height: 400px;
    }
}
@media (min-width: 920px) {
    .machines-about__image {
        height: 600px;
    }
}
.machines-about .machines-about__image img {
    display: block;
    width: 100%;
    height: 100%;
    margin-top: -20px;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    background-color: lightgreen;
}
.machines-about button {
    max-width: fit-content;
    padding-block: 7px;
    padding-inline: 20px;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    background-color: var(--wx-clr);
    border: 2px solid var(--wx-clr);
    cursor: pointer;
}
.machines-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    row-gap: 3rem;
    column-gap: 2rem;
    padding-block: 6rem;
}
.machines-items a {
    text-decoration: none;
}
.machines-item {
    display: flex;
    flex: 1 1 280px;
    flex-direction: column;
    max-width: 300px;
    height: 500px;
    background-color: var(--bg-clr-karta);
    border-radius: 25px;
    overflow: hidden;
}
.machines-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}
.machines-item h2 {
    display: block;
    margin: 2rem 2rem 0;
    font-size: var(--fs-450);
    font-weight: 500;
    color: var(--wx-clr);
}
.machines-item p {
    display: block;
    margin: 1rem 1.9rem;
    font-size: var(--fs-300);
    font-weight: 400;
    color: var(--wx-clr);
    hyphens: auto;
}
.machines-item span {
    align-self: flex-start;
    margin: auto 0 2rem 2rem;
    padding: 10px 18px 9px;
    max-height: fit-content;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--wx-clr);
    background-color: transparent;
    border: 1px solid var(--wx-clr);
    border-radius: 25px;
    cursor: pointer;
}
.machines-item:hover span {
    color: white;
    background-color: var(--wx-clr);
    border: 1px solid var(--wx-clr);
}
.mobile-machine {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 6.5vw;
    row-gap: 5.5vw;
    padding-bottom: 8vw;
}
.mobile-machine__text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    height: fit-content;
    overflow: hidden;
}
.mobile-machine__image {
    width: 100%;
    align-items: center;
    margin: auto;
}
.mobile-machine__image iframe {
    width: 100%;
    height: 290px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
@media (min-width: 570px) {
    .mobile-machine__image iframe {
        height: 440px;
    }
}
@media (min-width: 942px) {
    .mobile-machine__image iframe {
        height: 100%;
    }
}
.mobile-machine h1 {
    display: block;
    height: fit-content;
    padding-top: 3px;
    font-size: var(--fs-headings);
    font-weight: 600;
    color: var(--wx-clr);
}
.mobile-machine h1 span {
    display: block;
    height: fit-content;
    margin-top: 5px;
    font-weight: 400;
    letter-spacing: 1px;
}
.mobile-machine__params h2 {
    padding-bottom: 2rem;
    color: var(--wx-clr);
}
.mobile-machine__params a:hover {
    background-color: #fff;
}
.mobile-machine p {
    display: block;
    padding-block: 1rem;
    font-size: var(--fs-bodytext);
    font-weight: 400;
    line-height: 1.5;
    color: var(--wx-clr);
}
.mobile-machine button {
    align-self: flex-start;
    margin-bottom: 2rem;
    padding: 10px 18px 9px;
    max-height: fit-content;
    font-size: 1rem;
    font-weight: 500;
    color: var(--wx-clr);
    background-color: transparent;
    border: 2px solid var(--wx-clr);
    cursor: pointer;
}
.mobile-machine button:hover {
    color: white;
    background-color: var(--wx-clr);
    border: 2px solid var(--wx-clr);
}
.mobile-machine__params {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.mobile-machine__params a {
    display: inline-flex;
    gap: 10px;
    padding: 7px;
    line-height: 1.3;
    color: var(--wx-clr);
    text-decoration: none;
}
.pad-block {
    padding-block: 7vw;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th,
td {
    padding: 8px;
    font-size: var(--fs-300);
    font-weight: 400;
    text-align: left;
    color: var(--wx-clr);
}
tr:hover {
    background-color: white;
}
table td:first-child {
    font-weight: 500;
}
.slider {
    display: block;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    user-select: none;
    outline: none;
}
.slider__track {
    transition: opacity 0.5s ease;
    position: relative;
    overflow: hidden;
}
.slider__img {
    position: absolute;
    flex-shrink: 0;
    width: 100%;
    max-height: 90vh;
    object-fit: cover;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    user-select: none;
    pointer-events: none;
    aspect-ratio: 4/3;
    border-radius: 10px;
}
.slider__img.active {
    opacity: 1;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}
.slider__arrow {
    position: absolute;
    top: 37%;
    background: rgba(0, 0, 0, 0.5);
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    user-select: none;
    transition: background-color 0.3s;
    visibility: hidden;
}
.slider__arrow:hover,
.slider__arrow:focus {
    background: transparent;
    outline: none;
}
.slider__arrow--prev {
    left: 0px;
}
.slider__arrow--next {
    right: 15px;
}
.slider__dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.slider__dot {
    width: 6px;
    height: 6px;
    padding: 3px 3px;
    background: #ccc;
    margin: 0 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.3s;
}
.slider__dot[aria-selected="true"] {
    background: var(--wx-clr);
}
.slider__dot[aria-selected="true"]:hover {
    background: var(--wx-clr-btn-hover);
}
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal[aria-hidden="false"] {
    display: flex;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}
.modal__content {
    position: relative;
    width: 95vw;
    max-height: 100%;
    background: #222222;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    outline: none;
    user-select: none;
}
@media (min-width: 1024px) {
    .modal__content {
        width: 1000px;
        max-height: 98vh;
    }
}
.modal__img {
    max-width: 100%;
    max-height: 50vh;
    min-height: 50vh;
    margin-bottom: 10px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
    user-select: none;
    aspect-ratio: 4/3;
}
@media (min-width: 1024px) {
    .modal__img {
        max-width: 1000px;
        max-height: 85vh;
        min-height: 80vh;
    }
}
.modal__caption {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}
.modal__close {
    position: absolute;
    top: -35px;
    right: -30px;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #fff;
    user-select: none;
}
.modal__close:hover,
.modal__close:focus {
    scale: 1.1;
    background: transparent;
    outline: none;
}
.modal__arrow {
    position: absolute;
    top: 50%;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    transform: translateY(-50%);
    user-select: none;
    transition: background-color 0.3s;
    visibility: hidden;
}
.modal__arrow:hover,
.modal__arrow:focus {
    background: transparent;
    scale: 1.1;
    outline: none;
}
.modal__arrow--prev {
    left: 10px;
}
.modal__arrow--next {
    right: 30px;
}
.modal__thumbs {
    margin-top: 5px;
    display: flex;
    width: 100%;
    gap: 8px;
    padding-bottom: 8px;
    justify-content: center;
    user-select: none;
}
.modal__thumbs::-webkit-scrollbar {
    height: 6px;
}
.modal__thumbs::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}
.modal__thumb {
    flex-shrink: 0;
    width: 80px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    border: 2px solid transparent;
    max-height: 50px;
    max-width: 70px;
    transition: opacity 0.3s, border-color 0.3s;
}
@media (min-width: 1024px) {
    .modal__thumb {
        max-height: 60px;
        max-width: 90px;
    }
}
.modal__thumb.active,
.modal__thumb:hover {
    opacity: 1;
    border-color: gray;
}
@media (min-width: 769px) {
    .slider__img {
        width: 100%;
        max-height: 400px;
    }
    .slider__arrow {
        width: 36px;
        height: 36px;
        font-size: 2rem;
    }
    .modal__thumb {
        width: 80px;
        height: 60px;
    }
}
button,
.btn,
.btn-outline,
.btn-white,
.btn-outline-white {
    font: inherit;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    padding-block: 10px;
    padding-inline: 20px;
    height: fit-content;
    max-width: fit-content;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
button,
.btn {
    background-color: var(--wx-clr);
    color: white;
    border: 2px solid var(--wx-clr);
}
.btn-white {
    background-color: white;
    color: var(--wx-clr);
    border: 2px solid white;
}
.btn-outline,
.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--wx-clr);
    color: var(--wx-clr);
}
.btn-outline-white {
    border-color: white;
    color: white;
}
@media (min-width: 509px) {
    .btn-outline {
        max-width: fit-content;
    }
}
button:hover,
button:focus,
.btn:hover,
.btn:focus,
.btn-outline:hover,
.btn-outline:focus,
.btn-white:hover,
.btn-white:focus,
.btn-outline-white:hover,
.btn-outline-white:focus,
.scroll-icon:hover,
.scroll-icon:focus {
    background-color: rgb(58, 46, 221);
    background-color: #F9BA00;
    color: black;
    color: white;
    border: 2px solid transparent;
}
.ochrana-udaju {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 7rem;
    padding-bottom: 100px;
}
.ochrana-udaju__h1 {
    display: block;
    height: fit-content;
    padding-top: 3px;
    padding-bottom: 40px;
    font-size: var(--fs-headings);
    font-weight: 600;
    color: var(--wx-clr);
}
.ochrana-udaju h2 {
    display: block;
    height: fit-content;
    padding-top: 30px;
    padding-bottom: 40px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--wx-clr);
}
.ochrana-udaju__description {
    padding-bottom: 20px;
}
.ochrana-udaju__description p {
    color: var(--wx-clr);
    padding-bottom: 15px;
}
.ochrana-udaju__description ul {
    padding-left: 25px;
}
.ochrana-udaju__description ul li {
    color: var(--wx-clr);
    padding-bottom: 15px;
}
.mt-15 {
    margin-top: 15px;
}
.mb-5 {
    margin-bottom: 5px;
}
.mb-15 {
    margin-bottom: 15px;
}
.light-blue {
    background-color: var(--wx-clr-bg);
}
.no-display {
    display: none;
}
.relative {
    position: relative;
}
.jc-center {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
}
.no-padding {
    padding: 0;
}
.pb120 {
    padding-bottom: 120px;
}
.mt-45 {
    margin-top: 45px;
}
.mb-60 {
    margin-bottom: 60px;
}
.width-50 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex-grow: 1;
}
.width-50 .normal {
    font-size: 1rem;
    padding: 0;
    margin: 0;
    display: inline-block;
}
.linear-grad {
    background: transparent linear-gradient(90deg, #00000098 0%, #00000000 45%) 0% 0% no-repeat padding-box;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    z-index: 1;
}
.baner-img.dark-foto {
    filter: brightness(70%); 
}
.baner-img.dark-foto-60 {
    filter: brightness(60%); 
}
.baner-img.dark-top {
    box-shadow: inset 0 150px 150px -150px rgba(0, 0, 0, 0.5);
}
.dark-foto-fh {
    background: rgb(0, 0, 0, 0.4);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.flex-col {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.7em;
}
.wx-bg-clr-light {
    background-color: var(--bg-clr-blue-200);
}
.yt-placeholder {
    position: relative;
    width: 100%;
    max-width: 580px; 
    aspect-ratio: 16/9;
    justify-content: center;
    background: #fff; 
    overflow: hidden;
    border-radius: 20px;
}
.yt-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}
.yt-placeholder p {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 6px;
}
.yt-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4); 
    color: #fff;
    text-align: center;
    padding: 1rem;
    z-index: 2; 
}
.yt-overlay button {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f00;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    margin-inline: auto;
}
.yt-overlay button:hover {
    background: #c00;
    border: none;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 1000;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}