﻿/*====================================================
======================================================
AIDELab.HTML
======================================================
====================================================*/
/*  ↓   ↓ ↓   ↓ ↓   ↓ ↓   ↓ */
/*====================================================
Header Top
====================================================*/
#main-render {
    background-color: #fff;
}

a {
    color: #fff;
}
img {
    width: 100%;
    height: auto;
}

    img.icon {
        width: auto;
    }

.main-content {
    background-color: rgb(0, 18, 35);

}



.shapka {
    position: relative;
    background: #001223 url(/images/header-bg.webp) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 30vh;
    min-height: 405px;
}

.container-aide {
    padding-top: 40px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.main-logo {
    display: block;
}

    .main-logo img {
        width: auto;
    }

.language-menu {
    display: flex;
    position: relative;
    justify-content: center;
    padding: 18px 0;
    width: 88px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s ease-in-out;
}

    .language-menu:hover {
        background: rgba(0, 0, 0, 0.4);
    }

        .language-menu:hover .dropdown-language-menu {
            top: 100%;
            animation: fadeInDown 0.2s ease-in-out;
        }

    .language-menu .rus {
        display: flex;
        align-items: center;
        text-transform: uppercase;
    }

    .language-menu i {
        font-size: 18px;
        margin-right: 10px;
    }

.dropdown-language-menu {
    display: block;
    position: absolute;
    top: -9999px;
    left: 0;
    width: 88px;
    padding: 10px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    border-top: solid 2px rgba(3, 168, 73, 0.4);
    border-radius: 0 3px 3px 3px;
    z-index: 999;
}

    .dropdown-language-menu li {
        margin: 10px 0;
    }

    .dropdown-language-menu a {
        color: #fff;
    }

        .dropdown-language-menu a:hover {
            color: #00a650;
        }

nav.nav-main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    nav.nav-main-menu ul.user-menu li {
        border-radius: 3px;
        transition: background 0.2s ease-in-out;
    }

        nav.nav-main-menu ul.user-menu li:hover {
            background: rgba(0,65,106, 1);
        }

    nav.nav-main-menu ul.user-menu a {
        display: block;
        padding: 16px 19px;
        transition: color 0.2s ease-in-out;
    }

        nav.nav-main-menu ul.user-menu a:hover {
            color: #00a650;
        }

    nav.nav-main-menu ul.user-menu i {
        font-size: 20px;
    }

    nav.nav-main-menu .mobile-btn-visible {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        nav.nav-main-menu .mobile-btn-visible .user-menu {
            font-size: 14px;
        }

            nav.nav-main-menu .mobile-btn-visible .user-menu a:hover {
                color: #00a650;
            }

            nav.nav-main-menu .mobile-btn-visible .user-menu i {
                font-size: 16px;
                margin-right: 10px;
            }

.main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

    .main-menu li {
        position: relative;
        text-align: center;
        border-radius: 3px;
        transition: background 0.2s ease-in-out;
    }

        .main-menu li:not(:last-child):hover {
            background: rgba(0,65,106, 1);
            border-bottom-left-radius: 0px;
            border-bottom-right-radius: 0px;
        }

        .main-menu li:hover .drop-menu {
            top: 100%;
            animation: fadeInDown .2s;
        }

            .main-menu li:hover .drop-menu .drop-menu {
                top: -9999px;
            }

        .main-menu li:first-child .drop-menu {
            width: 500px;
            height: 120px;
        }

            .main-menu li:first-child .drop-menu li {
                width: auto;
            }

    .main-menu a {
        display: block;
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        letter-spacing: .5px;
        padding: 19px;
        text-transform: uppercase;
        transition: color 0.2s ease-in-out;
    }

        .main-menu a:hover {
            color: #00a650;
        }

    .main-menu .drop-menu {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        position: absolute;
        top: -9999px;
        left: 0;
        width: 150px;
        border-radius: 0 3px 3px 3px;
        padding: 15px 0 15px 20px;
        background: rgba(0,65,106, 1);
        border-top: solid 2px rgba(3, 168, 73, 0.4);
        z-index: 999;
    }

        .main-menu .drop-menu li {
            position: static;
            text-align: left;
            width: 100%;
        }

            .main-menu .drop-menu li:hover {
                background: transparent;
            }

                .main-menu .drop-menu li:hover .drop-menu {
                    top: -2px;
                    animation: fadeInLeft .2s;
                }

        .main-menu .drop-menu a {
            display: inline-block;
            font-size: 15px;
            line-height: 18px;
            font-weight: 300;
            padding: 5px 0;
            text-transform: none;
        }

        .main-menu .drop-menu .drop-menu {
            position: absolute;
            left: 100%;
            width: 350px;
            margin-left: 1px;
            border-radius: 3px;
            padding: 15px 15px 15px 25px;
        }

.mobile-dropdown-link {
    text-align: right;
    cursor: pointer;
}

    .mobile-dropdown-link i {
        font-size: 24px;
    }

.menu-mobile-content {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: rgba(0, 18, 35, 0.85);
    border-top: solid 1px #00a650;
    padding: 30px 0 20px 0;
    z-index: 500;
    animation-duration: .5s;
}

    .menu-mobile-content a:hover {
        color: #00a650;
    }

.user-menu-mobile {
    font: 15px/20px 'Exo 2.0 Semi';
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
}

    .user-menu-mobile i {
        margin-right: 10px;
    }

.menu-mobile-content {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: rgba(0, 18, 35, 0.85);
    border-top: solid 1px #00a650;
    padding: 30px 0 20px 0;
    z-index: 500;
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s;
}

    .menu-mobile-content a:hover {
        color: #00a650;
    }

.main-menu-mobile {
    display: flex;
    justify-content: space-between;
}

.menu-mobile-block {
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .menu-mobile-block:first-child {
        padding-right: 10px;
    }

    .menu-mobile-block:last-child {
        padding-left: 10px;
    }

.menu-mobile {
    margin-bottom: 10px;
}

    .menu-mobile .title-menu {
        font: 12px/20px 'Exo 2.0 Semi';
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .menu-mobile li {
        margin-bottom: 10px;
    }

    .menu-mobile a {
        display: inline-block;
        font-size: 12px;
        font-weight: 300;
        line-height: 16px;
    }

.mobile-sub-menu {
    padding-right: 25px;
    padding-top: 16px;
}

    .mobile-sub-menu a {
        display: inline-block;
        font-size: 10px;
        line-height: 14px;
    }

        .mobile-sub-menu a::before {
            content: '-';
            margin-right: 5px;
        }

/*====================================================
Header Bottom
====================================================*/

.company-tagline {
    font: 40px/50px "Exo 2.0";
    text-transform: uppercase;
    padding-left: 50px;
    margin-bottom: -5px;
}

/*====================================================
Company Info
====================================================*/
.company-info {
    background: #fff;
    color: #414141;
    padding: 120px 0 160px;
}

.description-block {
    margin-bottom: 90px;
}

.img-description {
    width: 250px;
    height: auto;
}

.description {
    overflow: hidden;
}

    .description .title {
        font-size: 60px;
        line-height: 68px;
        text-transform: uppercase;
        margin-bottom: 35px;
    }

    .description .text {
        line-height: 32px;
    }

.project-manager {
    display: flex;
    justify-content: space-between;
}

    .project-manager .title {
        font-size: 37px;
        line-height: 42px;
    }

    .project-manager .name {
        font-size: 21px;
        line-height: 21px;
        margin-bottom: 15px;
        padding-top: 10px;
    }

    .project-manager .text {
        font-size: 16px;
        line-height: 30px;
    }

.img-manager {
    flex-shrink: 0;
    width: 241px;
    height: 241px;
    margin: 0 65px;
    border-radius: 50%;
    overflow: hidden;
}

/*====================================================
Brochure Content
====================================================*/
.brochure-content {
    margin-top: 50px;
}

    .brochure-content .brochure-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .brochure-content .img-block {
        width: 100px;
        height: 150px;
        margin-bottom: 50px;
        overflow: hidden;
    }

    .brochure-content .text-block {
        display: flex;
    }

    .brochure-content .brochure-link {
        font-size: 18px;
        line-height: 42px;
        font-weight: 300;
        color: #414141;
        height: 50px;
        padding: 0 20px;
        border: solid 2px #414141;
        border-radius: 4px;
        text-align: center;
        transition: background 0.4s, color 0.4s, opacity 0.4s ease-in-out;
    }

        .brochure-content .brochure-link:hover {
            background: #414141;
            color: #fff;
        }

.brochure-content.brochure-AIDELab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

    .brochure-content.brochure-AIDELab .brochure-block {
        flex-direction: row;
    }

    .brochure-content.brochure-AIDELab .img-block {
        margin: 0 50px;
    }

    .brochure-content.brochure-AIDELab .brochure-link {
        color: #fff;
        border-color: #fff;
    }

        .brochure-content.brochure-AIDELab .brochure-link:hover {
            background: #fff;
            color: #414141;
        }

/*====================================================
Main Directions
====================================================*/
.main-directions {
    padding: 100px 0;
    padding-top: 0;
    background-color: #001223;
}

.title-directions {
    font-size: 40px;
    line-height: 60px;
    color: #fff;
}

.direction {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}

    .direction.direct-left .title-direction {
        width: 240px;
    }

    .direction.direct-center .title-direction {
        width: 235px;
    }

    .direction.direct-right .title-direction {
        width: 210px;
    }

    .direction .text {
        font-size: 16px;
        line-height: 22px;
        font-weight: 600;
        overflow: hidden;
        padding: 20px 40px;
    }

    .direction:hover {
        color: #fff;
    }

        .direction:hover .direction-content {
            padding-top: 70px;
            padding-bottom: 110px;
        }

        .direction:hover .add-text {
            opacity: 1;
        }

        .direction:hover .direction-bg {
            opacity: 1;
        }

.direction-img {
    overflow: hidden;
    border-radius: 7px;
}

    .direction-img img {
        height: 100%;
    }

.direction-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 33, 55, 0.5);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.direction-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 110px;
    text-align: center;
    transition: padding 0.3s ease-in-out;
    z-index: 4;
}

    .direction-content .add-text {
        position: absolute;
        bottom: 35px;
        left: 0;
        height: 60px;
        overflow: hidden;
        font-size: 14px;
        line-height: 20px;
        padding: 0 30px;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

@media(max-width: 768px) {
    .direction .text {
        padding: 10px 20px;
    }
    .direction-content .add-text {
        font-size: 11px;
    }
    .swiper-button-next, .swiper-button-prev {
        top: -15px !important;
    }
}

/*====================================================
History Content
====================================================*/
.history-content {
    background-color: #001223;
    padding-bottom: 60px;
}

.history-block {
    padding: 0 60px;
}

    .history-block .title {
        flex-grow: 1;
        padding: 22px 0;
        font-size: 31px;
        line-height: 31px;
        font-weight: 600;
        background: #001223;
    }

.history-bg {
    background: url(/images/history-bg.webp) no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.history-block-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-nav {
    flex-wrap: nowrap;
    position: relative;
}

    .history-nav .nav-link {
        display: block;
        font-size: 15px;
        line-height: 15px;
        padding: 30px 25px;
        background: #001223;
        color: #fff;
        border-radius: 8px 8px 0 0;
        box-shadow: 0 -8px 0 #001223;
        transition: box-shadow 0.2s, background 0.2s ease-in-out;
    }

        .history-nav .nav-link.active {
            background: transparent;
        }

        .history-nav .nav-link:hover {
            background: transparent;
        }

.history-nav-block {
    display: block;
    position: relative;
}

    .history-nav-block i {
        position: absolute;
        top: 50%;
        right: 20px;
        margin-top: -12px;
        font-size: 24px;
        color: #fff;
    }

#history-nav {
    background: transparent;
    border: none;
    color: #fff;
    width: auto;
    font-size: 24px;
    padding: 0 50px 0 30px;
    height: 75px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

    #history-nav:focus {
        outline: none;
    }

    #history-nav option {
        background: transparent;
        color: #000;
    }

        #history-nav option:focus {
            outline: none;
        }

.history-block-bottom {
    padding: 50px 20px;
}

.date-slider {
    position: relative;
}

    .date-slider .slide {
        margin: 0 30px;
    }

    .date-slider .title-slide {
        font: 26px/26px "Exo 2.0";
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 30px;
    }

    .date-slider .text-slide {
        line-height: 32px;
        min-height: 160px;
        max-height: 260px;
        overflow: hidden;
    }

    .date-slider .slider-btn {
        position: absolute;
        top: 0;
        font-size: 24px;
        cursor: pointer;
        transition: color 0.2s ease-in-out;
    }

        .date-slider .slider-btn:hover {
            color: #0076c1;
        }

    .date-slider .fa-chevron-circle-left {
        left: -90px;
    }

    .date-slider .fa-chevron-circle-right {
        right: -90px;
    }

/*====================================================
Footer Top
====================================================*/
.main-footer {
    padding-top: 85px;
    background: #001223;
    color: #fff;
}

.footer-top {
    margin-bottom: 80px;
}

.footer-logo {
    display: block;
    width: 48px;
}

    .footer-logo img {
        width: auto;
    }

.footer-menu .title-menu {
    margin-bottom: 25px;
    font: 15px/15px 'Exo 2.0 Semi';
    font-weight: 600;
    text-transform: uppercase;
}

    .footer-menu .title-menu a {
        font: 15px/15px 'Exo 2.0 Semi';
        font-weight: 600;
        text-transform: uppercase;
    }

        .footer-menu .title-menu a:hover {
            color: #0076c1;
        }

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    font-size: 15px;
    line-height: 15px;
    color: #fff;
}

    .footer-menu a:hover {
        color: #0076c1;
    }

.top-block-menu {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
}

    .top-block-menu .footer-menu {
        flex-grow: 1;
    }

    .top-block-menu + .footer-menu {
        font-size: 0;
    }

        .top-block-menu + .footer-menu li {
            display: inline-block;
            margin-right: 10px;
        }

            .top-block-menu + .footer-menu li.title-menu {
                display: block;
            }

.contact-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

    .contact-footer .number {
        flex-grow: 1;
        font-size: 30px;
        font-weight: 400;
        line-height: 26px;
    }

    .contact-footer .email {
        flex-grow: 5;
    }

        .contact-footer .email li {
            text-align: center;
            margin-bottom: 8px;
        }

.social-menu {
    flex-grow: 1;
    text-align: right;
    font-size: 0;
    text-align: center;
}

    .social-menu .text {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 20px;
    }

    .social-menu li {
        display: inline-block;
        margin: 0 8px;
    }

        .social-menu li:last-child {
            margin-right: 10px;
        }

    .social-menu a {
        font-size: 14px;
        color: #0076c1;
        transition: color 0.1s ease-in-out;
    }

        .social-menu a:hover {
            color: #fff;
        }

/*====================================================
Footer Bottom
====================================================*/
.footer-bottom {
    padding: 10px 0;
    background: #1e1e1e;
}

.privacy-menu {
    display: flex;
}

    .privacy-menu li {
        margin-right: 40px;
        font-size: 14px;
    }

    .privacy-menu a {
        color: #fff;
    }


.history-content {
    color: white;
}

#tabContent {
    display: inline;
    color: white;
}

.swiper-wrapper {
    min-height: 230px;
}

button.nav-link {
    color:  rgb(13, 202, 240)!important;
}

button.nav-link.active {
    color: black!important;
}

.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Обёртка для стрелок и пагинации */
.swiper-nav {
  position: absolute;
  bottom: 10px; /* Располагаем элементы на 10px от низа */
  left: 50%;
  transform: translateX(-50%); /* Центрируем элементы по горизонтали */
  display: flex;
  justify-content: space-between; /* Расставляем стрелки и пагинацию равномерно */
  align-items: center;
  width: 80%; /* Ширина контейнера, которая будет включать стрелки и точки */
  z-index: 1000;
}

/* Настройка стрелок */


.swiper-button-prev::after {
  content: '←'!important; /* Стрелка влево */
}

.swiper-button-next::after {
  content: '→'!important; /* Стрелка вправо */
}

/* Настройка пагинации (точек) */
.swiper-pagination {
  display: flex;
  justify-content: center; /* Центрируем точки по горизонтали */
  align-items: center;
  margin: 0 10px; /* Отступы с обеих сторон для точек */
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  width: 12px; /* Размер точек */
  height: 12px;
  border-radius: 50%;
  margin: 0 5px; /* Отступы между точками */
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: aqua; /* Цвет активной точки */
}

@media (max-width: 768px) {
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        width: 95%;
    }

    .swiper-nav{
        width: 100%;
    }

    .direction:hover .direction-content {
        padding-top: 10px;
    }

}

