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

.hero {
    padding: 20px;
    background: #f5f5f5;
}

.biol-full{
	height: 500px;
	width: auto !important;
	display: block; 
	margin: auto;
	}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.hero-media {
    position: relative;
}

.desktop-video-container {
    display: block;
}

.desktop-video-container video {
    width: 100%;
    display: none;
}

.desktop-video-container img.desktop-image {
    width: 100%;
    display: block;
}

.mobile-image {
    width: 100%;
    display: none;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-icons img {
    width: 50px;
    margin: 0;
}

.hero-text {
    text-align: left;
    max-width: 340px;
    padding: 50px 15px 35px 120px;
}

.hero-text h1 {
font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #315263;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 22px;
}

#openVideo {
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
}

.video-popup video {
    width: 80%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-content{
    border: 1px solid #e5e5e5;
    background: #fff;
    -webkit-box-shadow: 0 0 30px rgba(49, 82, 99, 0.05);
    box-shadow: 0 0 30px rgba(49, 82, 99, 0.05);
	}

/* Section Two */
.section-two .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.section-two .section-image {
    width: 100%;
}

.section-two h2 {
font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #315263;
    margin-bottom: 20px;
}

.section-two h3 {
font-size: 18px;
    font-weight: 700;
    color: #315263;
    margin-bottom: 18px;
}

.section-text p{
	font-size: 14px;
    line-height: 24px;
	}

/* Section Three */
.section-three {
    padding: 20px;
    text-align: center;
}

.section-three h2 {
font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #315263;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    width: 50px;
    margin-bottom: 10px;
}

.feature-item h3 {
font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #315263;
}

.feature-item p {
font-size: 12px;
    line-height: 18px;
    max-width: 140px;
    margin: 0 auto;
}

/* Section Four */
.section-four {
    padding: 20px;
}

.section-four h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #315263;
    margin-bottom: 20px;
    text-align: center;
}

.how-it-works-content {
    position: relative;
    margin-bottom: 20px;
}

.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider {
    display: flex;
    width: 500%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 20%;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    display: flex;
    flex-direction: row; /* По умолчанию бок о бок */
    align-items: center;
    gap: 20px;
    padding: 20px;
    height: 100%;
}

.slide-content p {
    margin: 0;
    flex: 1;
    text-align: left;
}

.slide-content img {
    width: 100%;
    object-fit: cover;
    max-width: 50%;
    height: auto;
    display: block;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .slide-content {
        flex-direction: column; /* Столбец для мобильных */
        align-items: center; /* Центрируем содержимое */
        text-align: center; /* Центрируем текст */
    }

    .slide-content img {
        max-width: 100%; /* Полная ширина на мобильных */
        max-height: 300px; /* Ограничение высоты */
        order: -1; /* Изображение поднимается вверх (меньше, чем у текста по умолчанию 0) */
    }

    .slide-content p {
        order: 0; /* Текст остаётся ниже */
    }
}

/* Остальные стили остаются без изменений */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.prev-btn, .next-btn {
    padding: 5px 15px;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.prev-btn:hover, .next-btn:hover {
    background: #45a049;
}

.steps {
    display: flex;
    gap: 10px;
}

.step {
    cursor: pointer;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

.step.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

/* Section Five */
.section-five {
    padding: 20px;
}

.tabs {
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #e9eff8;
}

.tab-button {
    padding: 10px 20px;
    background: #ddd;
    border: none;
    cursor: pointer;
    margin-right: 10px;
}

.tab-button.active {
    background: #4CAF50;
    color: white;
}

.tab-panel {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns for desktop */
    gap: 20px;
    display: none;
}

.tab-panel.active {
    display: grid;
}

.tab-panel-left {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center image and link vertically */
    gap: 10px; /* Space between image and download link */
}

.tab-panel-left img {
    width: 228px;
    text-align: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 20px 15px;
    margin-bottom: 12px;
    border: 1px solid #e9eff8;
}

.tab-panel-left a {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}


.tab-panel-right {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically in the column */
}

.tab-panel-right h3 {
    font-size: 18px;
    font-weight: 700;
    color: #315263;
    margin-bottom: 15px;
    text-transform: uppercase; /* Match your design style */
}

.tab-panel-right p {
    font-size: 14px;
    line-height: 24px;
    color: #658393;
    margin: 0;
}

/* Mobile Responsiveness (max-width: 768px) */
@media (max-width: 768px) {
    .tab-panel {
        grid-template-columns: 1fr; /* Stack columns vertically on mobile */
        gap: 15px; /* Reduce gap on mobile */
    }

    .tab-panel-left {
        order: 1; /* Image and link first on mobile */
    }

    .tab-panel-right {
        order: 2; /* Text content second on mobile */
        justify-content: flex-start; /* Align text to the top on mobile */
    }

    .tab-panel-left img {
        max-width: 100%; /* Full width on mobile */
        height: auto;
    }

    .tab-panel-left a {
        font-size: 12px; /* Smaller link text on mobile */
        padding: 6px 12px; /* Smaller padding on mobile */
    }

    .tab-panel-right h3 {
        font-size: 16px; /* Smaller title on mobile */
        margin-bottom: 10px; /* Reduce margin on mobile */
    }

    .tab-panel-right p {
        font-size: 12px; /* Smaller text on mobile */
        line-height: 20px; /* Adjust line height for smaller text */
    }
}

@media (max-width: 480px) { /* Small Mobile */
    .tab-panel {
        gap: 10px; /* Minimal gap on very small screens */
    }

    .tab-panel-left a {
        font-size: 10px; /* Even smaller link text on very small screens */
        padding: 4px 10px; /* Even smaller padding on very small screens */
    }

    .tab-panel-right h3 {
        font-size: 14px; /* Even smaller title on very small screens */
        margin-bottom: 8px; /* Even smaller margin on very small screens */
    }

    .tab-panel-right p {
        font-size: 10px; /* Even smaller text on very small screens */
        line-height: 18px; /* Adjust line height for very small screens */
    }
}

/* Section Six */
.section-six {
    padding: 20px 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

.logo-item img {
    width: 100%;
    max-width: 150px;
}

.full-logo{
		margin-bottom: 15px;
    display: flex;
    align-items: center;
    border: 2px solid #e8eef1;
    transition: all 0.3sease-in-out;
	}
.full-logo:hover{

border: 4px solid #e8eef1;
	}

.logo-item p {
    font-size: 12px;
    display: inline-block;
    padding-left: 10px;
    overflow-wrap: break-word;
    max-width: 9rem;
}

/* Section Seven */
.section-seven {
    padding: 20px;
}

.section-seven h2 {
font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #315263;
    margin-bottom: 20px;
    text-align: center;
}

.accordion {
    margin-bottom: 20px;
}

.accordion-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #315263;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-item p {
    padding: 10px;
    display: none;
}

/* Section Eight */
.section-eight {
    padding: 20px;
}

.section-eight h2 {
    text-align: center;
font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #315263;
    margin-bottom: 20px;
}

.unique-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.unique-content.reverse {
    grid-template-areas: "text image";
}

.unique-content img {
    width: 100%;
}

.unique-text h3 {
font-size: 18px;
    font-weight: 700;
    color: #315263;
    margin-bottom: 18px;
}

/* Mobile Responsiveness (max-width: 768px) */
@media (max-width: 768px) {
.hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .desktop-video-container, .desktop-video-container video {
        display: none;
    }

    .mobile-image {
        display: block;
    }

    .hero-right {
        flex-direction: column;
        align-items: center;
    }

    .hero-icons {
        justify-content: center; /* Center icons on mobile */
    }

    .hero-text {
        text-align: center;
     max-width: 100%;
    padding: 5px;
    }

    .section-two .content-wrapper {
        grid-template-columns: 1fr;
    }

    .section-two .section-image {
        order: 2;
    }

    .section-two .section-text {
        order: 1;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
    }

    

    .tab-panel {
        grid-template-columns: 1fr;
    }

    .logos-grid {
               grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        padding: 1rem;
    }

    .unique-content, .unique-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .unique-content.reverse {
    grid-template-areas: "image";
    }

    .unique-content img, .unique-content.reverse img {
        order: 2;
    }

    .unique-text {
        order: 1;
    }
}



.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;
}



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


.page-title {
    margin-bottom: 40px;
    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) {

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

.link_position{
margin: 2rem;
    text-align: left;
}

.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;
    }
    
.triggers__thumb {
    margin: 0 auto 35px;
    width: 120px;
    height: 120px;
    background-image: url(/img/triggers-bg.png);
    background-repeat: no-repeat;
    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;
}

.news-link {
 height: 32px;
    line-height: 31px;
    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;
}

.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) {


   .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);
    }


  .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;
  }
  
.footer-products-col {
    display: block;
}

   
}
