.banner-registration{
    margin: 25px 0;
    padding: 21px 24px;
    min-height: 204px;
    background-color: #0e0a6d;
    color: #fff;
    border-radius: 6px;
}
.banner-registration > strong {
    display: block;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.banner-registration > small{
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}
.banner-registration > ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.banner-registration > ul > li{
    display: flex;
    align-items: center;
    margin: 10px 19px;
}
.banner-registration > ul > li > i{
    width: 24px;
    height: 24px;
    background-color: #56b218;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    border-radius: 50%;
    padding-top: 2px;
    margin-right: 10px;
}
.banner-registration > ul > li > strong {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.banner-registration__box__action{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}
.banner-registration__box__action > .btn{
    min-width: 150px;
    font-weight: bold;
}
@media (max-width: 991px) {
    .banner-registration{
        margin: 0 -15px;
        border-radius: 0;
    }
    .banner-registration > strong,
    .banner-registration > small{
        text-align: left;
    }
    .banner-registration > ul{
        flex-direction: column;
    }
    .banner-registration > ul > li{
        margin-left: 0;
    }
    .banner-registration__box__action{
        justify-content: start;
    }
    .banner-registration__box__action .btn {
        width: calc(50% - 10px);
    }
}
@media (max-width: 768px) {
    .banner-registration > strong{
        font-size: 24px;
    }
}