.modern-why {
    padding: 48px 56px;
    border-radius: 16px;
    overflow: hidden;
    background-image: linear-gradient(90deg, #fff, #fff 75%, transparent);
    position: relative;
    margin-bottom: 88px;
}
.modern-why:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(/local/templates/modern/assets/img/bg-img-left.png) no-repeat 100% 100%;
    background-size: contain;
    z-index: -1;
}

.modern-why h2 {
    margin-bottom: 32px;
}

.modern-why__list ul{
    list-style: none;
}
.modern-why__list ul li {
    margin-bottom: 32px;
    padding-left: 64px;
    position: relative;
    transition: .2s;
    transition-delay: .15s;
}
.modern-why__list ul li b {
    display: block;
    font-size: 18px;
}

.modern-why__list ul li b:before {
    content: '';
    height: 2px;
    background: #3339D6;
    width: 40px;
    display: block;
    border-radius: 16px;
    position: absolute;
    left:0;
    top:13px;
    transition: .2s;
    transition-delay: .15s;
}
.modern-why__list ul li:before {
    content: '';
    height: 10px;
    width: 10px;
    display: block;
    border-radius: 10px;
    position: absolute;
    left:0;
    top:9px;
    background: #3339D6;
    transition: .2s;
    transition-delay: .15s;
}
.modern-why__list ul li:hover {
    padding-left: 76px;
}
.modern-why__list ul li:hover b:before {
    background: #41CC58;
    width: 52px;
}
.modern-why__list ul li:hover:before {
    background: #41CC58;
}
.modern-why__list ul li:hover b {
    color: #41CC58;
    transition: .2s;
    transition-delay: .15s;
}
.modern-why__list ul li b:after {
    content: '';
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #41CC58;
    border-right: 2px solid #41CC58;
    transform: rotate(315deg);
    display: inline-block;
    position: absolute;
    left:31px;
    top:9px;
    opacity: 0;
    transition: .2s;
    transition-delay: .15s;
}
.modern-why__list ul li:hover b:after {
    left:43px;
    opacity: 1;
}
