.brxe-solutions {
    width: 100%;
}

.inner {
    display: flex;
    gap: clamp(40px, 5vw, 75px);
    align-items: center;
}

.left-panel {
    position: relative;
    width: 206px;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 39px;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 20px);
    border-left: 1px dashed #e5e5e5;
}

.left-panel__list {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.left-panel__list-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left-panel__list-item__name {
    font-size: 16px;
    /* line-height: 1.75; */
    color: #000;
    transition: all 0.36s ease-in-out;
    max-height: 72px;
    overflow: hidden;
    width: calc(100% - 78px);
    cursor: pointer;
}

.left-panel__list-item.active .left-panel__list-item__name {
    color: #68B85C;
}

.left-panel__list-item__icon {
    cursor: pointer;
    position: relative;
    width: 78px;
    height: 78px;
}

.left-panel__list-item__icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 5;
}

.left-panel__list-item.active .left-panel__list-item__icon-inner {
    background-color: #fff;
}

.left-panel__list-item__icon-inner img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.left-panel__list-item__icon-outter {
    position: relative;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    transform: rotate(-90deg);
    transition: all .36s;
}

.left-panel__list-item.active .left-panel__list-item__icon-outter {
    background: #9FE394;
    /* background: #d1e9cd; */
    box-shadow: 0 0 30px 10px rgb(104, 184, 92, 0.36);
}

.left-panel__list-item__icon-outter svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.left-panel__list-item__icon-outter circle {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
}

.left-panel__list-item.active .left-panel__list-item__icon-outter circle {
    animation: 4.5s svgcircle linear;
}

.right-panel {
    display: flex;
    align-items: center;
    gap: 40px 60px;
    width: calc(100% - 260px);
}

.right-panel__content {
    width: 400px;
}

.right-panel__content-item .item-title {
    font-size: 30px;
    /* line-height: 1.5; */
    color: #000;
    font-weight: bold;
    overflow: hidden;
    margin-bottom: 34px;
}

.right-panel__content-item .brxe-button {
    margin-top: 30px;
}

.right-panel__video {
    position: relative;
    width: calc(100% - 400px);
}

.right-panel__video video {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    z-index: 10;
}

@media (max-width: 1365px) {
    .left-panel {
        width: 68px;
    }

    .left-panel::before {
        right: 33px;
    }

    .left-panel__list-item__name {
        display: none;
    }

    .left-panel__list-item__icon {
        width: 68px;
        height: 68px;
    }

    .left-panel__list-item__icon-inner {
        width: 50px;
        height: 50px;
    }

    .left-panel__list-item__icon-inner img {
        width: 30px;
        height: 30px;
    }

    .left-panel__list-item__icon-outter {
        width: 68px;
        height: 68px;
    }

    .left-panel__list-item__icon-outter circle {
        cx: 34px;
        cy: 34px;
        r: 29px;
    }

    .left-panel__list-item.active .left-panel__list-item__icon-outter circle {
        animation-duration: 5.75s;
    }

    .right-panel {
        width: calc(100% - 68px);
        column-gap: 40px;
    }
}

@media (max-width: 767px) {
    .brxe-solutions .inner {
        flex-wrap: wrap;
    }

    .left-panel {
        width: 100%;
    }

    .left-panel::before {
        width: calc(100% - 20px);
        height: 1px;
        border-left: 0;
        border-bottom: 1px dashed #e5e5e5;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .left-panel__list {
        flex-direction: row;
        justify-content: space-between;
    }

    .left-panel__list-item__icon {
        width: 60px;
        height: 60px;
    }

    .left-panel__list-item__icon-inner {
        width: 45px;
        height: 45px;
    }

    .left-panel__list-item__icon-inner img {
        width: 30px;
        height: 30px;
    }

    .left-panel__list-item__icon-outter {
        width: 60px;
        height: 60px;
    }

    .left-panel__list-item__icon-outter circle {
        cx: 30px;
        cy: 30px;
        r: 26px;
    }

    .left-panel__list-item.active .left-panel__list-item__icon-outter circle {
        animation-duration: 6.5s;
    }

    .right-panel {
        width: 100%;
        flex-wrap: wrap;
    }

    .right-panel__content,
    .right-panel__video {
        width: 100%;
    }

    .right-panel__video video {
        min-height: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes svgcircle {
    0% {
        stroke-dashoffset: 220;
    }

    100% {
        stroke-dashoffset: 0;
    }
}
