body {
   font-family: 'NotoSans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #658393;
}

.header-hero-wrapper {
    
    background-color: rgba(49, 82, 99, 0.5);
background-image: url('/img/pattern.png');
    z-index: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.header-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/main-img.jpg') no-repeat center center/cover;
        
    z-index: -1; /* Ensure the image is behind the content */
}

header {
    color: white;
    padding: 10px 20px;
    position: absolute;
    width: 96.8%;
    top: 60px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin-right: 1rem;
}

nav li {
    margin: 0 10px;
    position: relative; /* Important for positioning the submenu */
}

nav a {
    text-decoration: none;
    color: white;
    display: block; /* Makes the entire list item clickable */
    padding: 10px; /* Add some padding for better click area */
}

nav a:hover {
    color: #00ce52; /* Highlight submenu items on hover */
}

/* Submenu Styles */
.submenu {
    display: none; /* Initially hidden */
    position: absolute;
    top: 100%; /* Position below the parent link */
    left: 0;
    background-color: #fff; /* Example background color */
    list-style-type: none;
    padding: 0;
    margin: 0;
    z-index: 1; /* Ensure it's above other content */
    width: 259px; /* Adjust as needed */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow */
}

.submenu li {
    border-bottom: 1px solid rgba(101, 131, 147, .2);
    margin-bottom: 0;
}

.submenu a {
    padding: 10px;
    white-space: nowrap; /* Prevent text from wrapping */
    color: rgb(49, 82, 99);
    white-space: pre-wrap;
}

/* Hover Effect */
nav li:hover .submenu {
    display: block; /* Show the submenu on hover */
}

.submenu a:hover {
    color: #00ce52; /* Highlight submenu items on hover */
}

.hero {
    color: white;
    text-align: center;
    padding: 100px 20px;
    animation: slide-in 0.5s ease-out;
    margin-top: 120px; /* Adjust for the fixed top-section and header */
    max-width: 100%;
}

.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    width: 100%;
    position: fixed;



    top: 0;
    z-index: 1001;
}

/* Styles for the navigation menu */
.nav-menu {
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column; /* Change to column for vertical alignment */
    align-items: center;
}

.nav-item {
    margin: 10px 0;
    font-size: 1.2em;
}

.nav-link {
    text-decoration: none;
    color: #65839399;
    display: block;
    padding: 10px 20px;
}

/* Menu styles */
.menu {
    position: relative;
}

.menu button {
    background-color: #fff;
    color: #65839399;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5em;
}

.menu-content {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
}

.menu-content.show {
    display: flex;
    transform: translateY(0);
}

.menu-left {
    flex: 1; /* Occupies one-third of the screen */
    display: flex;
    justify-content: center;
}

.menu-right {
    flex: 2; /* Occupies two-thirds of the screen */
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.disabled img {
    opacity: .3;
}

.menu-item p {
    
    align-items: center;
}

.menu-item img {
    max-width: 100%;
    height: auto;
}

.menu-item a {
    text-decoration: none;
    color: #65839399;
    text-align: center;
    margin-top: 5px;
}

.menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2em;
    cursor: pointer;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fade-in 0.3s;
}



.logo img {
    max-width: 100%; 
    height: auto; 
}


.language-switcher {
    position: relative;
    right: 3rem;
}

.language-switcher select {
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.hero h1 {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 100;
}

.hero p {
    font-size: 1.2em;
}

button {
    background-color: #00ce52;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
}

.vertical-menu {
    position: fixed; /* Fixed positioning */
    top: 30%; /* Align to the top */
    left: 0; /* Align to the left */
    height: 100%; /* Occupy full viewport height */
    width: 80px; /* Or whatever width you want */
    color: white; /* Text color */
    z-index: 8; /* Ensure it's above other elements */
    overflow-y: auto; /* Add scroll if content overflows */
}

.vertical-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.vertical-menu li {
    margin: 20px 0;
    text-align: center; /* Center the list items */
}

.vertical-menu li a.active {
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #00ce52;
    -webkit-transition: all .3sease-in-out;
    transition: all .3sease-in-out;
}

    .vertical-menu li a.active:after {
        font-size: 26px;
        padding-left: 20px;
        
    }

.vertical-menu li a { /* Style the links if needed */
    font-size: 18px;
    color: #658393;
    text-decoration: none;
    display: block; /* Make the whole list item clickable */
    padding: 10px;
}

.vertical-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Highlight on hover */
}


.contact-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: green;
    padding: 10px;
    border-radius: 50%;
    animation: slide-up 0.5s ease-out;
}

.page-container {
    max-width: 960px;
    margin: 80px auto;
    padding: 20px;
}

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 12px;
}


.breadcrumb-item {
    display: inline;
    margin-right: 10px;
    margin-left: 10px;
}

.breadcrumbs a:hover{
     
    color: #00ce52;
   }

.breadcrumb-link {
    text-decoration: none;
    color: #333;
}

.page-title {
    margin-bottom: 40px;
    text-align: center;
}

.products-grid-prod  {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    grid-gap: 20px;
}

.text-newsr{
	font-size: 14px;
    line-height: 24px;
	}
	
.prod-rl{
    text-decoration: none;
    color: #658393;
    }

.product-item:hover{
	border: 2px solid #00ce52;
	}

.product-item-prod {
    padding: 20px;
    display: flex;
    align-items: center; /* Центрирует содержимое по вертикали */
    background: #fff;
}

.product-image-prod  {
    max-width: 150px;
    height: auto;
    margin-right: 20px;
}
.product-content-prod  {
    flex: 1; /* Контент занимает оставшееся место */
}

.product-title-prod  {
    margin-bottom: 10px;
}

.product-description-prod  {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 22px;
    max-height: 150px; /* You can adjust the height as needed */
    overflow-y: auto; /* Adds vertical scrolling */
    padding-right: 10px; /* Optional: adds some padding to the right */
}

.product-link-prod  {
    color: #4CAF50;
    text-decoration: none;
}

.arrow-prod  {
    margin-left: 5px;
}

.image-container-evidence, .video-container-evidence {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .image-item-evidence, .video-item-evidence {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .image-item-evidence img, .video-item-evidence img {
            width: 100%;
            transition: transform 0.3s ease, filter 0.3s ease;
        }
        
        .image-item-evidence::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 97, 155, 0.2); /* Цвет наложения */
    background-image: url('/img/pattern.png');
    pointer-events: none; /* Клики проходят через наложение */
}

        .image-item-evidence:hover img, .video-item-evidence:hover img {
            transform: scale(1.1);
            filter: brightness(50%);
        }

        .image-overlay-evidence {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: translateY(100%);
        }

        .image-item-evidence:hover .image-overlay-evidence {
            opacity: 1;
            transform: translateY(0);
        }

        .show-more-evidence {
            color: white;
            text-decoration: none;
        }

        .show-more-evidence:hover {
            color: rgb(110, 205, 92);
        }

        .youtube-icon-evidence {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: gray;
            font-size: 50px;
            pointer-events: none;
        }

        .video-player-evidence {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .video-player-evidence iframe {
            width: 80%;
            height: 80%;
        }

        .video-player-evidence .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }
        .video-description-evidence{
        margin-top: 8px;
}

@media (max-width: 768px) {
     .products-grid-prod  {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.image-section-healthcare {
    position: relative;
    overflow: hidden;
    margin: 0 auto 35px;
}

.overlay-container-healthcare {
    position: relative;
    display: block;
}

.overlay-container-healthcare img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-container-healthcare::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 97, 155, 0.2); /* Цвет наложения */
    background-image: url('/img/pattern.png');
    pointer-events: none; /* Клики проходят через наложение */
}

.overlay-healthcare {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .5s ease;
}

.overlay-container-healthcare:hover .overlay-healthcare {
    opacity: 1;
}

.overlay-text-healthcare {
    position: absolute;
    bottom: 20px;
    color: white;
    width: 100%;

    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.overlay-container-healthcare:hover .overlay-text-healthcare {
    transform: translateY(0);
}

.overlay-text-healthcare p {
    margin: 0;
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 15px;
}

.overlay-text-healthcare a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.overlay-text-healthcare a:hover {
    color: #6ecd5c; /* Цвет подсветки */
}


.cta-section.healthcare {
    background-color: #e0f7fa;
    padding: 20px;
    text-align: center;
}

.cta-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #45a049;
}

@media (max-width: 600px) {
	.overlay-text-healthcare p {
    margin: 0;
    font-size: 18px;
    font-weight: 200;


    margin-bottom: 15px;
}

    .cta-section.healthcare h2 {
        font-size: 18px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

.company-info-about_us h1{
	    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #315263;
    text-align: center;
	}
.company-info-about_us p{	
	font-size: 14px;
    line-height: 24px;
    text-align: justify;
}

.company-info-about_us img{
max-width: 100%;
}

.products-about_us{
    padding: 40px 0;
    margin-bottom: 45px;
    border-top: 1px solid #edf1f8;
    border-bottom: 1px solid #edf1f8;
}

.products-container-about_us{
	display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
	}

.products-container-about_us img {
    flex: 1;
    max-width: 100%;
    height: auto;
}

.products-text-about_us {
    flex: 2;
    padding: 0 20px;
}

.products-text-about_us h2{
font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #315263;
}

.products-text-about_us p{
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
}

.products-about_us img{
	max-width: 100%;
	}


.company-info-about_us,
.products-about_us,
.certificates-about_us {
    margin-bottom: 40px;
}

.certificates-about_us h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #315263;
}

.certificates-about_us p {
    text-align: justify;
    font-size: 14px;
    line-height: 24px;
}

.certificates-wrapper {
    position: relative;
    max-width: 100%;
}

.certificates-slider-about_us {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.certificates-slider-about_us img,
.certificates-slider-about_us iframe {
    width: 200px;
    height: auto;
    margin-right: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(49, 82, 99, 0.8);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(49, 82, 99, 1);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

#modalImage {
    max-width: 100%;
    max-height: 90vh;
    display: block;
}

.close-modal {
    position: absolute;
    top: -30px;
    right: -30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .products-container-about_us {
        flex-direction: column;
    }

    .products-container img,
    .certificates-slider-about_us img,
    .certificates-slider-about_us iframe {
        width: 150px;
        max-width: 100%;
        max-height: 100%;
    }

    .products-text-about_us {
        padding: 0;
    }

    .slider-prev, .slider-next {
        padding: 8px 12px;
        font-size: 16px;
    }
}

.services-service {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.title-service {
    text-align: center;
  font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #315263;
}

.service-support-service {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-content-service {
    width: 58%;
    flex: 1;
}

.service-image-service {
    width: 40%;
    flex: 1;
}

.service-image-service img {
    width: 100%;
    height: auto;
    display: block;
}

.service-support-service, .service-warranties-service, .service-repair-service, .service-remote-service, .service-how-to-service {
    margin-bottom: 20px;
}

.service-support-service h2, .service-warranties-service h2, .service-repair-service h2, .service-remote-service h2, .service-how-to-service h2 {
        font-size: 18px;
    font-weight: 700;
    color: #315263;
    margin-bottom: 18px;
}

.service-support-service img, .service-warranties-service img, .service-repair-service img, .service-remote-service img, .service-how-to-service img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 20px auto;
}

.steps-service {
    justify-content: space-between;
    margin-bottom: 20px;
}


.step-number-service {
    display: block;
    margin-bottom: 10px;
}

.step-service ol {
font-size: 14px;
    line-height: 24px;
}

.features-service {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-feature-service {
    text-align: center;
    width: 48%;
    margin-bottom: 20px;
}

.service-feature-service img {
    width: 100px;
    height: 100px;
}

.service-order-service {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: #34495e;
    color: white;
    border-radius: 8px;
}

.service-order-service button {
    background: #1abc9c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.service-order-service button:hover {
    background: #16a085;
}

.service-warranties-service {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-image-service {
    width: 40%;
    flex: 1;
}

.service-content-service {
    width: 58%;
    flex: 1;
}

.service-image-service img {
    width: 100%;
    height: auto;
    display: block;
}

.service-repair-service {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-repair-service .service-content-service {
    width: 58%;
    flex: 1;
}

.service-repair-service .service-image-service {
    width: 40%;
    flex: 1;
}

.service-repair-service .service-image-service img {
    width: 100%;
    height: auto;
    display: block;
}

.steps-service {
    display: flex;
    flex-direction: column; /* Шаги располагаются вертикально друг под другом */
    gap: 20px; /* Расстояние между шагами */
}

.step-service {
    display: flex;
    align-items: flex-start; /* Выравнивание по верхнему краю */
    gap: 20px; /* Расстояние между номером шага и описанием */
}

.step-number-service {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px; /* Фиксированная ширина для круга */
    height: 50px; /* Фиксированная высота для круга */
    border-radius: 50%; /* Круглый бордер */
    background-color: #00ce52; /* Цвет фона (зеленый, как на изображении) */
    color: white; /* Цвет текста внутри круга */
    font-weight: bold; /* Жирный шрифт для номера шага */
    font-size: 16px; /* Размер текста */
    flex-shrink: 0; /* Предотвращает сжатие круга */
}

.step-description-service {
    flex: 1; /* Описание занимает оставшееся пространство */
}

.service-remote-service h1{
font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #315263;
    text-align: center;
}

.service-remote-service-text{
padding: 20px 0;
    border-top: 1px solid #edf1f8;
    border-bottom: 1px solid #edf1f8;
    font-size: 14px;
    line-height: 24px;
}

.features-service h1{
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #315263;
}

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

.faq-section-faq {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.faq-section-faq h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.faq-section-faq .see-all-faq {
    color: #2ecc71;
    text-decoration: none;
    font-size: 14px;
}

.faq-list-faq {
    margin-top: 20px;
}

.faq-item-faq {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.question-faq {
    margin: 0;
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    color: #315263;
}

.expand-faq {
    color: #2ecc71;
    font-size: 20px;
    font-weight: bold;
    align-self: flex-end;
}

.answer-faq {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.answer-faq.show-faq {
    display: block;
}

.contact-form-faq {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-form-faq h1 {
    text-align: center;
}

.form-grid-faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-column-faq {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contactForm-faq {
    display: block; /* Reset to block to avoid grid conflicts */
}

#contactForm-faq label {
    font-size: 14px;
    color: #666;
    display: block; /* Ensure labels stack properly */
}

#privacy-faq{
width: auto !important; 
	}

#contactForm-faq input, #contactForm-faq select, #contactForm-faq textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box; /* Ensure padding doesn’t affect width */
}

#contactForm-faq textarea {
    height: 100px;
    resize: vertical;
}

#contactForm-faq button {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
}

#contactForm-faq button:hover {
    background-color: #27ae60;
}

.chat-icon-faq {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #2ecc71;
    cursor: pointer;
}

.chat-icon-faq {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #2ecc71;
    cursor: pointer;
}
.question-container-faq {
    display: flex;
    justify-content: space-between;
    align-items: center;
        margin-bottom: 10px;
}

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

        .contact-content {
            background-color: white;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .contact-image {
            text-align: center;
            margin-bottom: 30px;
        }

        .contact-image img {
            max-width: 100%;
            height: auto;
        }

        .contact-office {
            margin: 20px 0;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 5px;
        }

        .contact-office h2 {
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .contact-office p {
            margin: 10px 0;
            color: #666;
        }

        .contact-region {
            margin: 20px 0;
            padding: 20px;
            border-radius: 5px;
        }
        

        .contact-region h2 {
font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #315263;
    text-align: center;
        }

        .contact-region-selects {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            
        }
        .contact-region-selects-colum{
        	width: 300px;
        	}

        .contact-region-select {
            padding: 12px;
            margin: 10px 0;
            width: 100%;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1em;
            background-color: white;
            color: #333;
            appearance: none; /* Remove default browser styling */
            background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); /* Down arrow icon */
            background-repeat: no-repeat;
            background-position: right 10px center;
            cursor: pointer;
        }

        .contact-region-select:focus {
            outline: none;
            border-color: #2ecc71; /* Green focus outline matching the screenshot */
            box-shadow: 0 0 5px rgba(46, 204, 113, 0.3);
        }

@media (max-width: 768px) {
    .step-service, .service-feature-service {
        width: 100%;
    }
    
    .service-support-service {
        flex-direction: column;
    }
    
    .service-content-service, .service-image-service {
        width: 100%;
    }
    
    .service-warranties-service {
        flex-direction: column;
    }
    
    .service-repair-service {
        flex-direction: column;
    }
    
    .service-repair-service .service-content-service, .service-repair-service .service-image-service {
        width: 100%;
    }
    .step-service {
        flex-direction: column; /* На мобильных устройствах шаги и описание в одной колонке */
        align-items: flex-start; /* Выравнивание по левому краю */
        gap: 10px; /* Уменьшаем расстояние на мобильных устройствах */
    }

    .step-number-service {
        width: 40px; /* Уменьшаем размер круга на мобильных устройствах */
        height: 40px; /* Уменьшаем размер круга на мобильных устройствах */
        font-size: 12px; /* Уменьшаем размер текста на мобильных устройствах */
    }
    
    .container-faq {
        padding: 10px;
    }

    .faq-section-faq, .contact-form-faq {
        padding: 20px;
    }
    
    .form-grid-faq {
        grid-template-columns: 1fr; /* Stack columns on mobile */
    }

    .contact-form-faq {
        padding: 20px;
    }
    
    .contact-content {
                padding: 20px;
            }

            .contact-office,
            .contact-region {
                padding: 15px;
            }
            .contact-container {
                padding: 0 10px;
            }

            .contact-content {
                border-radius: 0;
                box-shadow: none;
            }

            .contact-image img {
                max-width: 90%;
            }

            .contact-office h2 {
                font-size: 1.2em;
            }

            .contact-office p {
                font-size: 0.9em;
            }
            .contact-region h2 {
                font-size: 1em;
            }

            .contact-region-selects {
                flex-direction: column;
            }
   
}

@keyframes slide-up {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bio-tools-mhms {
    font-size: 14px;
    line-height: 24px;
}

.title-mhms {
    text-align: center;
 font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #315263;
}

.tool-item-mhms {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.tool-content-mhms {
    flex: 1;
}

.tool-content-mhms h3 {
    font-size: 18px;
    font-weight: 700;
    color: #315263;
    margin-bottom: 18px;
}

.tool-image-mhms {
    flex: 0 0 350px;
}

.tool-image-mhms img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Reverse the order for the second item (Health Analytics) on desktop */
.reverse-mhms {
    flex-direction: row-reverse;
}

/* Responsive Design for Mobile (below 768px) */
@media screen and (max-width: 768px) {
    .tool-item-mhms, .tool-item-mhms.reverse-mhms {
        flex-direction: column;
        text-align: center;
    }

    .tool-content-mhms {
        margin-bottom: 20px;
    }

    .tool-image-mhms {
        margin: 0 auto;
    }
}

.contact-icon a {
    color: white;
    text-decoration: none;
}

.screening-section {
    display: flex;
    align-items: center; /* Align items vertically in larger screens */
    padding-left: 20%;
    padding-right: 20%;
    background-color: #f0f0f0;
    height: 100vh;
}

.image-container { /* Style the container */
    position: relative; /* Needed for absolute positioning of pseudo-elements */
    
    margin-right: 20px;
    /* Prevents pseudo-elements from overflowing */
}

.image-container {
    position: relative;
        z-index: 1;
}



.image-container:after {
    position: absolute;
    content: '';
    display: block;
    top: 21px;
    bottom: 21px;
    right: 50%; /* Начальная позиция */
    width: 50%;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    z-index: -1;
    transition: all 1.5s ease-in-out;
}

.screening-section.visible .image-container:after {
    right: -50%; /* Конечная позиция */
}

/* Медиа-запросы для адаптивности */
@media screen and (max-width: 1024px) {
    .image-container:after {
        top: 15px; /* Уменьшаем отступы на планшетах */
        bottom: 15px;
        width: 60%; /* Увеличиваем ширину псевдоэлемента */
        right: 40%; /* Корректируем начальную позицию */
    }
    
    .screening-section.visible .image-container:after {
        right: 0%;
    }
}

@media screen and (max-width: 768px) {
    .image-container:after {
        top: 10px; /* Еще меньше отступы на мобильных */
        bottom: 10px;
        width: 70%;
        right: 30%;
    }
    
    .screening-section.visible .image-container:after {
        right: 0%;
    }
    
    /* Уменьшаем длительность анимации для мобильных */
    .image-container:after {
        transition: all 1s ease-in-out;
    }
}

@media screen and (max-width: 480px) {
    .image-container:after {
        top: 5px;
        bottom: 5px;
        width: 80%;
        right: 20%;
    }
    
    .screening-section.visible .image-container:after {
        right: 0%;
    }
}


.image-container img {
    display: block; /* Prevents a small space below the image */
    max-width: 100%; /* Image should fill its container */
    height: auto;
}

.image-content-mobile-health-care::before {
	 content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 97, 155, 0.2); /* Your desired overlay color */
    background-image: url('/img/pattern.png');
    pointer-events: none; /* Allows clicks to pass through the overlay */
	}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 97, 155, 0.2); /* Your desired overlay color */
    background-image: url('/img/pattern.png');
    pointer-events: none; /* Allows clicks to pass through the overlay */
}


.text-content {
    text-align: left; /* Default text alignment for larger screens */
}

.text-content h2 {
    margin-bottom: 10px;
    font-size: 44px;
    font-weight: 700;
    color: #315263;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.text-content p {
max-width: 420px;
    line-height: 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.text-content a {

    position: relative;
    z-index: 1;
}

.show-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00ce52;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    height: 100vh;
}

.section-mobile-health-care {
  background-color: #f8f8f8;
  padding: 80px 0;
  height: 100vh;
}

.container-mobile-health-care {
  padding-left: 20%;
    padding-right: 20%;
    margin: 10rem auto;
  display: flex;
  align-items: center;
}

.text-content-mobile-health-care {
  flex: 1;
  padding-right: 40px;
}

.highlight-number-mobile-health-care {
  font-size: 48px;
  font-weight: bold;
  color: #00ce52;
  margin-bottom: 20px;
}

.title-mobile-health-care {
  font-size: 36px;
  margin-bottom: 20px;
}

.list-mobile-health-care {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.item-mobile-health-care {
  font-size: 18px;
  margin-bottom: 10px;
}

.show-more-mobile-health-care {
  display: inline-block;
  padding: 15px 30px;
  background-color: #00ce52;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}

.image-content-mobile-health-care {
  flex: 1;
  position: relative;
}

.image-mobile-health-care {
  max-width: 100%;
  height: auto;
}

.section-products {
  background-color: #fff;
  padding: 80px 0;
  height: 100vh;
}

.container-products {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center; /* Центрирование контента */
}

.title-products {
  font-size: 36px;
  margin-bottom: 40px;
}

.products-grid {
  display: flex;
  justify-content: center; /* Центрирование элементов по горизонтали */
  gap: 40px; /* Расстояние между элементами */
  margin-bottom: 60px;
}

.product-item {
  display: flex;
  flex-direction: column; /* Вертикальное расположение элементов */
  align-items: center; /* Центрирование элементов по вертикали */
}

.product-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.product-title {
  font-size: 24px;
}

.all-products-link {
  margin-bottom: 80px;
}

.all-products-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #00ce52;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}

.logos-container {
  display: flex;
  justify-content: center; /* Центрирование логотипов */
  gap: 40px; /* Расстояние между логотипами */
}
.logo_skin {
  max-width: 100px;
  height: auto;
}

.section-news {
  background-color: #f8f8f8;
  padding: 80px 0;
   height: 100vh;
}

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

.title-news {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.news-content {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.news-image {
  flex: 1;
  margin-right: 40px;
}

.news-image-item {
  max-width: 100%;
  height: auto;
}

.news-text {
  flex: 1;
}

.news-date {
  font-size: 16px;
  color: #888;
  margin-bottom: 20px;
}

.news-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.news-link {
 height: 42px;
    line-height: 38px;
    width: 210px;
    max-width: 100%;
    cursor: pointer;
    text-decoration: none;
    background: rgb(0, 206, 82);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(0, 206, 82);
    border-image: initial;
    transition: 0.3sease-in-out;
  display: inline-block;
  padding: 10px 20px;
  color: white;
  font-size: 16px;
}

.news-link:hover {
    color: #00ce52;
    background: 0 0;
}

.btn {
    height: 42px;
    line-height: 38px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none;
    width: 210px;
    max-width: 100%;
    background: #00ce52;
    color: #fff;
    border: none;
    position: relative;
    border: 2px solid #00ce52;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .3sease-in-out;
    transition: all .3sease-in-out;
}

.btn--style:hover .btn__text {
    color: #89a1ae;
}

.btn--style {
display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background: 0 0;
    text-transform: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: none;
    width: auto;
    min-width: 150px;
}

.btn--style:after {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    top: 50%;
    right: -13px;
    border: 1px solid rgba(202, 210, 216, .3);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    -webkit-transition: all .5sease-in-out;
    transition: all .5sease-in-out;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.btn__text{
	color: #00ce52;
	text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    -webkit-transition: all .5sease-in-out;
    transition: all .5sease-in-out;
	}

.btn__icon{
margin-left: 15px;
    width: 42px;
    height: 9px;
    fill: #6ecd5c;
    -webkit-transition: all .3sease-in-out;
    transition: all .3sease-in-out;
    }

.news-sources {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
}

.news-source {
  max-width: 100px;
  height: auto;
}

.all-news-link {
  text-align: center;
}

.all-news-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #00ce52;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}

.main-footer {
  padding-top: 55px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
    background: #fff;
}

.footer-container {
  max-width: 1400px; /* Увеличенная ширина контейнера */
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: space-around; /* Равномерное распределение колонок */
  margin-bottom: 60px; /* Увеличенный отступ */
      margin-left: 8rem;
 
}

.footer-links-col {
  flex: 1;
}

.footer-col-title {
  font-size: 20px; /* Увеличенный размер шрифта */
  margin-bottom: 30px; /* Увеличенный отступ */
  color: #315263; /* Более темный цвет */
}

.footer-link {
  display: block;
  color: #658393; /* Более светлый цвет */
  text-decoration: none;
  margin-bottom: 15px; /* Увеличенный отступ */
  font-size: 16px; /* Увеличенный размер шрифта */
  transition: color 0.3s ease; /* Плавное изменение цвета при наведении */
}

.footer-link:hover {
  color: #00ce52; /* Цвет при наведении */
}

.footer-bottom {
  
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0; /* Добавлены внутренние отступы */
  border-top: 1px solid #ddd; /* Добавлена верхняя граница */
}

.footer-privacy {
  display: flex;
  gap: 30px; /* Увеличенный отступ */
  flex: 1; /* Занимает доступное пространство */
  justify-content: center; /* Центрирование по горизонтали */
  text-decoration: none;
    font-size: 14px;
    align-items: center;
    color: #658393;
    -webkit-transition: all .3sease-in-out;
    transition: all .3sease-in-out;
}

.footer-copyright {
  max-width: 455px;
    margin: 0 auto 35px;
    text-align: center;
    font-size: 12px;
    color: #b8c5cf;
    line-height: 1.25;
}

.footer-socials {
  display: flex;
  gap: 30px; /* Увеличенный отступ */
  flex: 1; /* Занимает доступное пространство */
  justify-content: center; /* Центрирование по горизонтали */
}

.footer-social-link {
  color: #658393; /* Более светлый цвет */
  font-size: 20px; /* Увеличенный размер шрифта */
  transition: color 0.3s ease; /* Плавное изменение цвета при наведении */
}

.footer-social-link:hover {
  color: #00ce52; /* Цвет при наведении */
}

.footer-contact {
  text-align: right;
}

.footer-contact-link {
  color: #00ce52; /* Цвет ссылки */
  text-decoration: none;
  font-size: 16px; /* Увеличенный размер шрифта */
  transition: color 0.3s ease; /* Плавное изменение цвета при наведении */
}

.footer-contact-link:hover {
  color: #0056b3; /* Цвет при наведении */
}

.footer-created {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888; /* Более светлый цвет */
}

.footer-created-link {
  color: #00ce52; /* Цвет ссылки */
  text-decoration: none;
  transition: color 0.3s ease; /* Плавное изменение цвета при наведении */
}

.footer-created-link:hover {
  color: #0056b3; /* Цвет при наведении */
}

.footer-products-col {
  display: flex; /* Контейнер для колонок продуктов */
}

.footer-products-col > div {
  flex: 1; /* Каждая колонка занимает половину ширины */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  header {
       display: none;
    }
    
    .hero h1 {
    font-size: 30px;
    }

    .hero {
        padding: 50px 20px;
    }

    .vertical-menu {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

   .top-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .menu {
        order: 1; /* Ensure menu is on the left */
    }
    
    .menu-right{
    display:none;
    	}

    .logo {
        order: 2; /* Ensure logo is in the center */
        justify-content: center;
    }

    .language-switcher {
        order: 3; /* Ensure language switcher is on the right */
    }

     .menu-content {
        flex-direction: column;
    }

    .menu-left,
    .menu-right {
        flex: 1;
        width: 100%;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-list {
        padding-top: 50px;
    }

    .nav-item {
        margin: 5px 0;
        font-size: 1em;
    }

    .nav-link {
        padding: 10px;
    }
    
     .screening-section {
  padding-top: 11rem;
    flex-direction: column;
        text-align: center;
  }

  .screening-section img {
    max-width: 300px;
    margin-right: 20px;
    margin-bottom: 0;
  }

  .text-content {
    text-align: left; /* Возвращаем выравнивание текста по левому краю */
  }
  
  .container-mobile-health-care {
    flex-direction: column;
    text-align: center;
  }

  .text-content-mobile-health-care {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .section-products {
  	padding-top: 13rem;
  	 height: auto;
  	}
  
   .products-grid {
    gap: 20px; /* Уменьшаем расстояние между элементами */
  }

  .logo_skin {
    max-width: 80px; /* Уменьшаем размер логотипов */
  }
  
  .section-news {

height: auto;
}
  
    .news-content {
    flex-direction: column;
    text-align: center;
  }

  .news-image {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .news-sources {
    flex-wrap: wrap; /* Перенос на новую строку при необходимости */
    gap: 20px;
  }
  
  .footer-links {
    flex-direction: column; /* Колонки располагаются вертикально */
  }

  .footer-bottom {
    flex-direction: column; /* Элементы располагаются вертикально */
    align-items: flex-start; /* Выравнивание по левому краю */
    text-align: left;
  }

  .footer-copyright {
    text-align: center;
     max-width: 70%;
  }

  .footer-contact {
    text-align: left;
    margin-top: 20px;
  }
  .vertical-menu {
display:none;
    }
.footer-products-col {
    display: block;
}

.section-mobile-health-care {
  padding: 10px 0;

}
   
}
