#home-choose {
    position: relative;
    background-image: url('/plugins/homechoose/image/footer-image.jpg');
    background-size: 255%;
    background-position: center bottom;
    background-repeat: no-repeat;
}
#home-choose::before,
#home-choose::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
#home-choose::before {
    top: 0;
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%,rgb(255, 255, 255) 60%,rgba(255,255,255,0) 100%);
}
#home-choose::after {
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.8) 51%,rgba(255,255,255,1) 100%);
    height: 18%;
}
.home-choose-circle {
    width: 275px;
    height: 275px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    text-align: center;
    position: relative;
}
.home-choose-circle p {
    margin: 0 0 5px;
}
.home-choose-circle-arrow {
    position: absolute;
    bottom: -62px;
    height: 60px;
    border-left: 2px solid rgba(0,0,0,0.1);
    width: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.home-choose-circle-arrow::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 2px solid rgba(0,0,0,0.1);
    border-right: 2px solid rgba(0,0,0,0.1);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 1px;
    left: -12px;
    margin: auto;
}
.home-choose-box {
    background-color: var(--white);
    -webkit-box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 26px 0px rgba(0,0,0,0.25);
    padding: 15px 30px;
}
.home-choose-box-res-item p {
    max-width: 210px;
    margin: 0 auto 10px;
}
.home-choose-box-res-item.small-res p {
    max-width: 190px;
}
.home-choose-box-res-item h3 {
    margin-left: auto;
    margin-right: auto;
    width: 175px;
}
/*Responsive - Mobile First*/
/* sm */
@media (min-width: 576px) {
    .home-choose-box-res-item h3 {
        width: 185px;
    }
}
/* md */
@media (min-width: 768px) {
    #home-choose::before {
        background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.8) 49%,rgba(255,255,255,0) 100%);
    }
    #home-choose::after {
        height: 30%;
    }
    .home-choose-circle {
        width: 325px;
        height: 325px;
    }
    .home-choose-circle::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -165px;
        margin: auto;
        height: 140px;
        border-left: 2px solid rgba(0,0,0,0.1);
        width: 0;
    }
    .home-choose-circle-arrow {
        bottom: -87px;
        height: 85px;
    }
    .home-choose-box {
        padding: 30px;
    }
    .home-choose-box-res-item p {
        max-width: 230px;
    }
    .home-choose-box-res-item.small-res p {
        max-width: 200px;
    }
}
/* lg */
@media (min-width: 1050px) {
    #home-choose {
        background-size: cover;
        background-position: center center;
    }
}
/* xxl */
@media (min-width: 1650px) {
    .home-choose-circle {
        width: 375px;
        height: 375px;
    }
    .home-choose-circle::before {
        top: -300px;
        height: 215px;
    }
}
/*Responsive - Desktop First*/
/* xs */
@media (max-width: 575.98px) {
    .home-choose-box-res-item:not(:first-child) .home-choose-box-res-wrap {
        border-top: 2px solid rgba(0, 0, 0, 0.1);
        margin-top: 15px;
        padding-top: 15px;
    }
}