.features-container {
    max-width: 1440px;
    padding-left: 160px;
    padding-right: 80px;
    margin: 0 auto;
}

.features-wrap {
    display: grid;
    grid-template-columns: 240px auto;
    padding-top: 120px;
}

.features-sidebar {
    position: fixed;
    width: 240px;
    top: 160px;

    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    height: calc(100% - 100px);
    overflow-y: scroll;
}

.features-sidebar::-webkit-scrollbar {
    display: none;
}

.features-nav,
.features-nav-mob {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
}

.features-nav::-webkit-scrollbar,
.features-nav-mob::-webkit-scrollbar {
    display: none;
}

.features-link {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: #070019;
    text-decoration: none;
    position: relative;
}
.features-link:after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #070019;
    position: absolute;
    bottom: -2px;
    left: 0;
    opacity: 0;
}

.features-link.active:after,
.features-link:hover:after {
    opacity: 1;
}
/*.features-link.active:after {*/
/*    transition-delay: 0.1s;*/
/*}*/

.features-link:not(:last-of-type) {
    margin-bottom: 20px;
}

.features-content {
    display: flex;
    flex-direction: column;
    grid-column-start: 2;
}

.features-row {
    display: flex;
}

.features-col-1,
.features-col-2 {
    width: 100%;
    max-width: 456px;
    cursor: pointer;
    margin-bottom: 40px;
}

.features-img:hover + .features-sub-title,
.features-sub-title:hover{
    text-decoration: underline;
}


.features-col-1 {
    margin-right: 40px;
}

.features-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.features-title:not(:first-of-type) {
    margin-top: 80px;
}

.features-text {
    font-size: 14px;
    line-height: 20px;
    color: #070019;
    font-weight: 500;
    margin-bottom: 0;
}

.features-img {
    margin-bottom: 28px;
}

.features-sub-title {
    color: #060019;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

@media (max-width: 1300px) {
    .features-container {
        padding-left: 80px;
    }

}

.features-mob-bar {
    display: none;
}

@media (max-width: 868px) {
    .features-container {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 28px;
    }

    .features-sidebar {
        position: static;
        height: unset;
        top: unset;
        width: 100%;
        overflow: hidden;
    }

    .features-wrap {
        grid-template-columns: 100%;
        grid-column-start: unset;
        padding-top: 40px;
    }

    .features-content {
        grid-column-start: unset;
        margin: 0 auto;
    }

    .features-row {
        flex-direction: column;
    }

    .features-col-1 {
        margin-right: 0;
    }

    .features-mob-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        color: #070019;
        font-size: 14px;
        font-weight: 600;
        line-height: 16px;
        padding: 20px 0;
        border: none;
        outline: none;
        background: transparent;

    }

    .features-mob-btn:focus,
    .features-mob-btn:active {
        outline: none;
    }

    .features-mob-btn img {
        transition: 0.3s;
        width: 16px;
        height: 16px;
    }

    .features-mob-btn img.active {
        transform: rotate(45deg);
        transition: 0.3s;
    }

    .features-mob-bar {
        display: none;
        flex-direction: column;
        position: fixed;
        left: 20px;
        right: 20px;
        top: 54px;
        background: white;
        transition: 0.3s;
    }

    .features-mob-wrap {
        display: none;
        padding: 20px 0;
    }
    .features-col-1,
    .features-col-2 {
        margin-bottom: 20px;
    }

}

.video-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    cursor: pointer;
}

.video-popup-container {
    max-width: 1040px;
    max-height: 548px;
    width: 100%;
    height: fit-content;
    position: relative;
    cursor: auto;
    background-color: #fff;
    border-radius: 8px;
}

.video-popup.active {
    display: flex;
}
video {
    border-radius: 8px;
}

.video-close {
    position: absolute;
    right: 8px;
    top: 8px;
    background-color: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 10000;
}
.video-close:hover{
    background-color: rgba(0,0,0,0.04);
}

@media (max-width: 868px) {
    video {
        border-radius: 0;
    }
    .video-popup-container {
        border-radius: 0;
    }
}


.features-text a {
    text-decoration: none;
    color: #027aff;
}
.features-text a:hover{
    text-decoration: underline;
}