.intro {
    height: 70vh;
    color: white;
    position: relative;
}

.intro::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(2, 0, 47, 0.6), rgba(2, 0, 47, 0.6)), linear-gradient(90deg, rgba(1, 0, 17, 0.75) 0%, rgba(2, 0, 47, 0) 70.13%);
    z-index: 2;
}

.intro .swiper {
    width: 100%;
    height: 100%;
}

.intro .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: var(--landing-header-height);
}

.intro-overlay__content {
    max-width: 600px;
    margin: 0 auto;
}

.intro-title {
    font-size: 50px;
    font-weight: 700;
}

.intro-btn {
    margin: 0 auto;
    margin-top: 40px;
}

.home-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.home-stats__item-title {
    color: #8492a6;
    margin-bottom: 15px;
    line-height: 1;
}

.home-stats__item-number {
    font-size: 40px;
    color: #41a9ff;
    font-weight: 700;
    line-height: 1;
}

.home-second {
    margin-bottom: 50px;
    display: flex;
    gap: 50px;
    align-items: flex-end;
    scroll-margin-top: calc(var(--landing-header-height) + 30px);
}

.home-second__info {
    width: calc(40% - 25px);
    flex-shrink: 0;
    line-height: 160%;
}

.home-second__title {
    font-weight: 600;
    margin-bottom: 15px;
}

.home-second__info-download {
    display: flex;
    margin-top: 30px;
    align-items: center;
    gap: 15px;
}

.home-second__timeline {
    position: relative;
    width: calc(60% - 25px);
    margin: 0 auto;
    margin-top: -15px;
}

.home-second__timeline .swiper:before {
    content: "";
    position: absolute;
    width: 100%;
    top: 17px;
    left: 0;
    height: 2px;
    background: #41a9ff
}

.home-second__timestamp {
    margin: 70px 15px 20px;
    padding: 30px 20px;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: none;
    background: transparent;
    border: 1px solid #41a9ff;
    border-radius: 30px;
    position: relative;
}

.home-second__timestamp.active {
    background: #41a9ff;
    color: white;
} 

.home-second__timestamp:before,
.home-second__timestamp:after {
    content: "";
    position: absolute;
    left: 50%;
    background: #41a9ff
}

.home-second__timestamp:before {
    width: 2px;
    height: 46px;
    top: -46px;
    transform: translateX(-50%)
}

.home-second__timestamp:after {
    width: 13px;
    height: 13px;
    top: -59px;
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg)
}

.home-second__timestamp-icon {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #41a9ff;
    background: linear-gradient(45deg, transparent, #41a9ff21);
    border-radius: 100%;
    margin-bottom: 15px;
}

.home-second__timestamp.active .home-second__timestamp-icon {
    color: #f8f9fc;
    background: linear-gradient(45deg, transparent, rgba(248, 249, 252, 0.2));
}

.home-second__timestamp-subtitle {
    color: #8492a6;
    font-size: 16px;
    margin-bottom: 8px;
}

.home-second__timestamp.active .home-second__timestamp-subtitle {
    color: white;
}

.home-second__timestamp-title {
    font-size: 16px;
}

.home-second__timestamp.active .home-second__timestamp-title {
    color: white;
}

.download-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    color: black;
    border: 1px solid #dee2e6;
    cursor: pointer;
}

.download-item i {
    font-size: 25px;
}

@media (max-width: 991px){
    .intro-title {
        font-size: 40px;
    }

    .home-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .home-stats__item {
        width: calc(50% - 15px);
    }

    .home-stats__item:last-child {
        display: none;
    }
    .home-second {
        flex-direction: column;
    }

    .home-second__info-download {
        flex-direction: column;
    }

    .home-second__info-download .btn {
        width: 100%;
        justify-content: center;
    }

    .home-second__info {
        width: 100%;
    }

    .home-second__timeline {
        width: 100%;
    }
}