:root {
    --primary-color: #c7002f; /* Красный */
    --primary-hover-color: #ff002e;
    --secondary-color: #f8f9fa; /* Светлый фон */
    --text-color: #505050; /* Белый */
    --white-color: #ffffff; /* Белый */
    --dark-color: #343a40; /* Темный */
    --grey-color: #f1efec; /* Темный */
    --rem: 20px;

    --bs-primary: #c7002f; /* Новый цвет для primary */
    --bs-secondary: #ff5722; /* Новый цвет для secondary */
    --bs-success: #8bc34a; /* Новый цвет для success */
    --bs-info: #00bcd4; /* Новый цвет для info */
    --bs-warning: #ffeb3b; /* Новый цвет для warning */
    --bs-danger: #f44336; /* Новый цвет для danger */

    --bs-blue: #c7002f;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;

    --padding-lang: 10px;
    --margin-lang: 5px;
    --width-lang: 30px;
    --translate-lang: 35px;
}


* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*,*::before,*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


ul {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
    unicode-bidi: normal;
}

body {
    position: relative;
    /*font-family: "Roboto", sans-serif;*/
    font: 400 var(--rem)/1.42857 "Open Sans", sans-serif;
    overflow-x: hidden;
    height: 100%;
    letter-spacing: -.016em;
    color: #403231;
    scroll-behavior: smooth;
    overflow-anchor: none;
}

.wrapper {
    padding-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pg-main {
    flex: 1 0 30%;
    min-height: 60vh;
}

.container {
    max-width: 1720px;
    padding: 0 2.5%;
}

.header {
    background: var(--primary-color);
    transition: .2s ease-in-out;
    z-index: 1000;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 7px 0;
}

.mobile-header {
    display: none;
}

.logo {
    position: absolute;
    top: 0;
    font-size: 0;
    left: 50%;
    width: 205px;
    height: 70px;
    transform: translate(-50%, 30%);
    border-radius: 4px;
    overflow: hidden;
    /*padding: 10px;*/
    /*transition: .2s ease-in-out;*/
}

.header.fixed-header {
    position: fixed;
    left: 0;
    right: 0;
    top: -120px;
    z-index: 1000;
    transition: .2s ease-in-out;
}

.header .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.header.fixed-header.show {
    top: 0; /* Показывает шапку при добавлении класса show */
}

.header.fixed-header.show .logo{
    width: 150px;
    height: 50px;
    /*transition: .2s ease-in-out;*/
    transform: translate(-50%, 0%);
}

.navbar {
    justify-content: space-between;
    align-content: center;
    min-width: 100%;
    margin: 0 !important;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-list {
    margin: 0 !important;
    list-style: none;
}

.nav-list li {
    letter-spacing: -.02em;
    font-size: 14px;
}

.nav-list li a {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 14px;
    padding: 0;
    margin: 10px 30px 10px 0px;
    text-decoration: none;
    letter-spacing: .01em;
    font-weight: 500;

}

.nav-list li:hover a, .nav-list li:focus a, .nav-list li.active a {
    color: #d4d4d4;
}

.nav-list li a:focus,
.nav-list li a:hover {
    color: #d4d4d4;
}

.header-btn {
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: .05em;
    align-content: center;
    align-self: center;
    color: var(--white-color);
    padding: 5px 14px;
    border: 1px solid var(--white-color);
    display:  inline-block;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s ease-in-out;
}

.header-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
    text-decoration: none;
}


.top-banner {
    position: relative;
    height: 85vh;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    z-index: 2;
}

.top-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.top-banner__bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repaet;
    border-radius: 10px;
    z-index: -1;
    opacity: .8;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Плавный переход для transform и opacity */
    transform: scale(1);
}

.top-banner__main {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.top-banner__title {
    font-size: 42px;
    max-width: 600px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: var(--white-color);
    margin-bottom: 28px;
    line-height: 1.05;
    letter-spacing: .03em;
    transition: transform .1s ease;
}

.top-banner__btn, .section-btn {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
    line-height: 16px;
    font-size: 12px;


    text-transform: uppercase;
    text-decoration: none;
    color: var(--white-color);
    background-color: var(--primary-color);
    transition: transform .1s ease;
}
.top-banner__btn:hover, .section-btn:hover {
    opacity: 0.7;
    text-decoration: none;
    color: var(--white-color);
}

.title {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 20px;
}

.form-btn-wrapper {
    position: relative;
}

.form-btn {
    background: var(--white-color);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    color: #a9a9a9;
    width: 600px;
    border: none;
    text-align: left;
}

.form-btn__dot {
    position: absolute;
    right: 16px;
    top: 20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--dark-color);
    opacity: .8;
}

.form-btn__dot:before {
    content: '';
    position: absolute;
    right: 0;
    top: -10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--dark-color);
    opacity: .8;
}

.form-btn__dot:after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--dark-color);
    opacity: .8;
}


.line {
    height: 2px;
    background-color: var(--white-color);
    border-radius: 10px;
    margin: 60px 0;
}

.form-list {
    position: absolute;
    top: 115%;
    background: var(--white-color);
    padding: 12px 0px;
    border-radius: 8px;
    left: 0;
    right: 0;
    width: 100%;
}

.form-list a {
    text-decoration: none;
    color: var(--dark-color);
    padding: 8px 20px;
    display: block;
    transition: .2s ease-in-out;
}

.form-list a:hover {
    background: var(--primary-color);
    color: var(--white-color)
}

.footer {
    background-color: var(--primary-color);
    padding: 60px 0 20px;
}

.footer-menu {
    list-style: none;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-menu li {
    display: inline-block;
    padding: 0 20px;
    margin: 10px 0;
}

.footer-menu li a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white-color);
    font-size: 1rem;
    transition: .2s ease-in-out;
}

.footer-menu li a:hover {
    text-decoration: underline;
    opacity: .8;
}

.pg-social {
    display: flex;
    justify-content: flex-end;
}

.pg-social a {
    color: var(--white-color);
    font-size: 80px;
    display: inline-block;
    margin: 0px 12px;
    transition: .2s ease-in-out;
}

.pg-social a:hover {
    opacity: .8;
    transform: scale(1.2);
}

.copyright {
    padding-top: 40px;
}

.section {
    padding: 100px 0;
}

.section h3 {
    font-size: 50px;
}

.section p{
    font-size: 22px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.section-subtitle {
    /*font-size: 20px;*/
    /*font-weight: 400;*/
    margin-bottom: 30px;
}

.section-link {
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 5px;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 30px;
}

.section-link:hover {
    background: var(--white-color);
    color: var(--primary-color);
}
.section-products .section-subtitle {
    margin-bottom: 40px !important;
}

.section-products .section-link {
    margin-bottom: 50px;
}

.partners-block {
    max-width: 75%;
}

.section-img {
    position: relative;
    width: 80%;
    height: 700px;
    background: #6c757d;
    border-radius: 10px;
    overflow: hidden;
}

section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section-btn {
    font-weight: 500;
    padding: 15px 40px;
}

.banner-second {
    height: 60vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.banner-second:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.banner-second__bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repaet;
    border-radius: 10px;
    z-index: -1;
    opacity: .8;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Плавный переход для transform и opacity */
    transform: scale(1);
}

.banner-second__main {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.banner-second__title {
    font-size: 50px;
    max-width: 600px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 40px;
    transition: transform .1s ease;
}

.section-products {
    position: relative;
    /*background: var(--primary-color);*/
    padding: 100px 0;
}
.section-products:before {
    content: '';
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    bottom: 300px;
    z-index: -1;
    background: var(--primary-color);
}

.products-carousel {
    padding-top: 50px;
}

.products-carousel .owl-nav {
    display: none;
}

.products-carousel__item {
    height: 600px;
    background-color: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
}

.mobile-menu, .on-mobile-utils {
    display: none;
}
.on-mobile {
    display: none;
}

.header .hamburger,
.header .mobile-phone, .header .mobile-lang {
    display: none;
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
}

.modal-body .form-control,
.modal-body .form-select {
    background-color: #f5f5f5;
    border: none;
    padding: 10px;
}

.modal-footer p {
    font-size: 12px;
    text-align: center;
    margin: 0;
    color: #555;
}

.btn-close:focus, .form-check-input:checked, .form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgba(246, 222, 225, 0.4) !important;
    border-color: rgba(246, 222, 225, 0.4);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .form-check-input:checked {
    background: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 .25rem rgba(133, 56, 67, 0.4) !important;
}

.page-banner {
    height: 400px;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "—"; /* Long dash */
    color: #b3b3b3; /* Gray color */
}

.custom-breadcrumb .breadcrumb-item a {
    color: #b3b3b3; /* Link color */
    text-decoration: none;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #b3b3b3;
}


.stat-card {
    background-color: #f5f3ef; /* light beige background */
    border: none;
    border-radius: 10px;
    text-align: left;
}

.stat-card p {
    margin: 0;
    font-size: 1rem;
    color: #3b3b3b;
}

.stat-card h2 {
    font-size: 4rem;
    color: #3b3b3b;
    font-weight: bold;
}

.employees-carousel {
    padding-top: 40px;
}

.employees-carousel__main {
    max-width: 80%;
}

.employees-items__img {
    height: 55vh;
    background: grey;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    position: relative;
}

.employees-items__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employees-items__img.is-video:before {
    content: "\f04b";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 50px;
    color: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    background: #b91d22 !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
}

.owl-carousel .owl-nav .owl-prev i,
.owl-carousel .owl-nav .owl-next i {
    color: var(--white-color)
}

.owl-carousel .owl-nav .owl-prev {
    left: -15px;
}

.owl-carousel .owl-nav .owl-next {
    right: -15px;
}

.btn-check:focus+.btn-primary, .btn-primary:focus, .btn-primary:active {
    box-shadow: none;
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}

.command-items__img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.command-items__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-values {
    background: #f1efec;
    padding: 50px 0;
}

.accordion-button:not(.collapsed) {
    color: var(--text-color);
    background: none;

}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.our-values .accordion {
    max-width: 850px;
    margin: 0 auto;
}

.accordion-button:focus {
    border-color: #6c757d;
    box-shadow: none;
    background: none;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    padding: 12px 20px;
}

.accordion-header span{
    font-size: 22px;
    font-weight: 600;
}


.product-list {

}

.product-item {
    margin-bottom: 40px !important;
}

.product-main {
    text-decoration: none;
    display: block;
    border: 1px solid rgba(0,0,0,.25);
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 16px;
}

.product-img {
    display: block;
    height: 340px;
    /*width: 90%;*/
    background: #e6e6e6;
    margin: 0 auto 16px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s;
}

.product-item:hover img {
    transform: scale(1.3);
}

.product-item:hover .product-title {
    color: var(--primary-hover-color);
}

.product-title {
    color: var(--text-color);
    /*color: rgba(0,0,0,.25);*/
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.modal-fullscreen .modal-dialog {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    margin: 0;
}

.recommended-values {
    background: #f1efec;
    padding: 50px 0;
}

.product-info-carousel .product-info-item {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    background: #f1efec;
    overflow: hidden;
    cursor: grab;
}

.product-info-carousel .product-info-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-carousel .product-info-item img,
.product-info-thumbnail-carousel .thumbnail-item img {
    width: 100%;
    display: block;
}

.product-info-thumbnail-carousel .thumbnail-item {
    cursor: pointer;
    opacity: 0.6;
}

.product-info-thumbnail-carousel .owl-item.current  .thumbnail-item {
    border: 2px solid var(--primary-color);
    opacity: 1;
}

.thumbnail-item {
    height: 60px;
    width: 100%;
    border-radius: 12px;
    background: #f1efec;
    overflow: hidden;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-left: 40px;
}

.product-details h2 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-details p {
    margin: 10px 0;
}

.product-details .attribute {
    font-weight: bold;
}

.product-details .text-danger {
    color: #d9534f; /* Bootstrap's 'danger' color */
    font-weight: bold;
    cursor: pointer;
}

.product-details .additional-info {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.product-details .additional-info:hover {
    text-decoration: underline;
}

.download-link {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    color: #d9534f;
    cursor: pointer;
}

.download-link:hover {
    text-decoration: underline;
}

.download-link i {
    margin-left: 5px;
    font-size: 1.2em;
}

.ms-4 {
    margin-left: 1.5rem;
}

.contact-map {
    height: 40vh;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
}


.contact-item {

}

.contact-item p {
    font-size: 1.2rem;
}
.contact-item a {
    color: var(--primary-hover-color);
}

.contact-item.after:after {
    content: '';
    display: block;
    margin-top: 10px;
    width: 100%;
    height: 1px;
    background: grey;
}

.career-card {
    background: var(--grey-color);
    border: none;
    border-radius: 10px;
}

.career-card .career-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.career-card .career-icon i {
    color: var(--white-color);
    font-size: 26px;
}

.career-card {
    text-align: left;
    font-weight: 600;
    font-size: 20px;
}

.text {
    font-size: 1.2rem;
    max-width: 90%;
    margin: 0 auto;
}


.our-production {
    padding-top: 50px;
    position: relative;
}

.regions {
    padding: 100px 0;
}

.regions .title {
    max-width: 450px;
    margin: 0 auto;
}

.regions-carousel-item {
    height: 200px;
    border-radius: 20px;
    background: #f1efec;
    overflow: hidden;
}

.regions-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-production:before {
    content: '';
    position: absolute;
    top: 0;
    z-index: -1;
    background: var(--primary-color);
    width: 100%;
    height: 60%;
    display: block;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

/* Button Styling */
.lang-dropdown {
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    background: var(--primary-color);
}

.lang-btn {
    outline: none;
    background: var(--white-color);
    color: var(--primary-color);
    margin: 10px 0;
}

.lang-dropdown a {
    cursor: pointer;
}

.lang-dropdown:hover  .lang-btn{
    /*color: var(--white-color) !important;*/
    /*background-color: var(--primary-color) !important;*/
    /*border-color: var(--primary-hover-color);*/
}

/* Dropdown Content */
.lang-content {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 10;
    min-width: 100px;
    overflow: hidden;
    transform: translate(-10%, 0);
}

/* Dropdown Links */
.lang-content a {
    color: #333;
    font-weight: 600;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s;
}

.lang-content a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Show Dropdown */
.lang-dropdown:hover .lang-content {
    display: block;
}

/* started media queries  */
@media (max-width: 1200px) {
    .on-mobile {
        display: block;
    }

    .header .nav-list {
        display: none !important;
    }

    .header .logo {
        width: 100px;
        height: 45px;
        transform: translate(-50%, 0);
    }

    .header.fixed-header.show .logo {
        width: 100px;
        height: 45px;
    }

    .header.fixed-header.show .logo {
        /*transform: translate(0, 0);*/
    }

    .header .hamburger {
        width: 30px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .header .on-mobile-utils {
        display: flex;
    }

    .header .mobile-phone {
        display: block;
    }

    body.overflow-hidden .header .mobile-lang {
        display: block;
    }

    .mobile-phone a {
        font-size: 30px;
        color: var(--white-color);
        transition: .2s ease-in-out;
    }
    .mobile-phone a:hover {
        transform: scale(1.2);
    }

    body.overflow-hidden .logo {
        display: none;
    }


    .lang_switch {
        display: none;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        transition: 0.3s ease;
    }

    /* Hamburger animation for open state */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    /* Mobile menu */
    .mobile-menu {
        display: none; /* Hidden by default */
        position: fixed;
        top: 55px; /* Adjust according to header height */
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px 0;
        text-align: center;
    }

    .mobile-menu ul {
        list-style: none;
    }

    .mobile-menu .nav-list {
        padding-top: 10%;
    }

    .mobile-menu .nav-list li a{
        margin: 0;
        margin-bottom: 20px;
    }
    .mobile-menu .btn-title.header-btn {
        margin-top: 10%;
    }


    .mobile-menu li {
        margin: 10px 0;
    }

    .mobile-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
    }

    .header-btn {
     margin: 0
    }


    .lang-btn {
        margin: 10px 0
    }


    .header .mobile-menu a {
        font-size: 14px;
    }

    /* Display mobile menu when active */
    .mobile-menu.active {
        display: block;
        z-index: 100;
    }
    .partners-block {
        max-width: 100%;
    }
    .section-img {
        width: 100%;
        height: 40vh;
    }

    .footer-logo {
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-logo img {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    .top-banner__title {
        font-size: 2.7rem;
        padding: 0 20px;
    }
    .section-title, .section h3, .title{
        font-size: 2.7rem;
    }
    .section-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    section .section-subtitle {
        width: 100% !important;
    }
    .products-carousel {
        padding: 0 20px;
    }
    .products-carousel__item {
        height: 40vh;
    }
    .section-products,
    section, .section {
        padding: 30px 0;
    }
    .form-btn {
        width: 380px;
    }
    .pg-social {
        justify-content: center;
    }
    .banner-second {
        height: 75vh;
    }
    .top-banner {
        height: 55vh;
    }

    .product-img {
        height: 280px;
    }

    .footer-logo {
        max-width: 200px;
    }


}

@media (max-width: 560px) {
    .top-banner__title {
        font-size: 2rem;
    }
    .section-title, .section h3 , .title{
        font-size: 2rem;
    }
    .top-banner {
        height: 50vh;
    }
    .line {
        margin: 30px 0;
    }
    .footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-menu li a {
        font-size: .8rem;
    }
    .banner-second p {
        width: 100% !important;
    }
    .pg-social a {
        font-size: 3rem;
    }
    .footer-menu {
        margin-top: 10px;
    }
    .product-info-carousel .product-info-item {
        height: 40vh;
    }

    .mobile-menu a {
        font-size: 12px
    }

    .product-img {
        height: 230px;
        margin-bottom: 10px;
    }

    .product-title {

    }


}

@media (max-width: 480px) {
    .top-banner__title {
        font-size: 1.2rem;
    }
    .section-title, .section h3, .title {
        font-size: 1.8rem;
    }
    .section-products,
    section, .section {
        padding: 40px 0;
    }
    .top-banner {
        height: 45vh;
    }

    .product-img {
        height: 200px;
        margin-bottom: 10px;
    }

    .product-item {
        margin-bottom: 24px !important;
    }

}

@media (max-width: 400px) {
    .form-btn {
        width: 290px;
    }

    .product-img {
        height: 160px;
        margin-bottom: 10px;
    }
}


.lang_switch {
    position: relative;
    display: flex;
    margin: auto;
    padding: var(--padding-lang);
    color: var(--white-color);
}
.lang_switch__text {
    width: var(--width-lang);
    height: var(--width-lang);
    line-height: var(--width-lang);
    text-align: center;
    font-size: 10px;
    font-weight: 700;
}
.lang_switch__text:first-of-type {
    margin-right: var(--margin-lang);
}
.lang_switch__blobs {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: url("#goo");
}
.lang_switch__blobs::before, .lang_switch__blobs::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: var(--padding-lang);
    left: var(--padding-lang);
    width: var(--width-lang);
    height: var(--width-lang);
    border-radius: 100%;
    background-color: var(--dark-color);
    transition: transform 0.2s cubic-bezier(0.51, 0.06, 0.56, 1.37);
    will-change: transform;
}
.lang_switch__blobs::before {
    transform: scale(0.8);
    transition-delay: 0.1s;
    transition-duration: 0.4s;
}

.lang_switch.changed .lang_switch__blobs::before {
    transform: translateX(var(--translate-lang)) scale(0.8);
}
.lang_switch.changed .lang_switch__blobs::after {
    transform: translateX(var(--translate-lang));
}

@media only screen and (min-width: 1025px) {
    .lang_switch__blobs::before {
        transform: scale(1);
        transition-delay: 0s;
        transition-duration: 0.2s;
    }

    .lang_switch:hover {
        cursor: pointer;
    }

    .lang_switch:not(.changed) .en:hover ~ .lang_switch__blobs::before {
        transform: scale(0.9);
    }
    .lang_switch:not(.changed) .en:hover ~ .lang_switch__blobs::after {
        transform:translateX(var(--translate-lang)) scale(0.8);
    }

    .lang_switch.changed .lang_switch__blobs::before {
        transform: translateX(var(--translate-lang));
    }
    .lang_switch.changed .pl:hover ~ .lang_switch__blobs::before {
        transform: translateX(var(--translate-lang)) scale(0.9);
    }
    .lang_switch.changed .pl:hover ~ .lang_switch__blobs::after {
        transform: scale(0.8);
    }
}


.pro-info {
    max-width: 600px;
    margin: auto;
    border-radius: 8px;
    padding: 25px;
}
.pro-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.pro-gost {
    color: #d00;
    font-size: 14px;
    margin-bottom: 20px;
}
.pro-description {
    margin-bottom: 20px;
    font-size: 12px;
}
.pro-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 12px;
}
.pro-table th,
.pro-table td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}
.additional-info {
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
}
.download-link {
    color: #d00;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}
.download-link:hover {
    text-decoration: underline;
}

.additional-code {
    font-size: 12px;
    text-transform: uppercase;
}

