.ups-list {
    z-index: 11;
    position: relative;
}

.ups-list-sec-inner {
    padding: 60px 0;
}

.ups-list-wrapper {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 40px;
}

.ups-list-wrapper>li {
    width: 300px;
}

.ups-list-wrapper * {
    font-family: "Muli", sans-serif;
}

.ups-content-wrapper {
    padding-left: 100px;
    position: relative;
}

.ups-content-wrapper>.ups-icon-holder {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
}

.ups-text-wrapper>span {
    display: block;
    line-height: 1;
}

.ups-title {
    color: #fff;
    font-size: 18px;
}

.ups-number {
    font-size: 45px;
    margin-bottom: 15px;
}

.ups-list-sec-bottom-content {
    margin-top: 50px;
}

.ups-list-sec-bottom-content * {
    font-family: "Muli", sans-serif;
    color: #fff;
}

.ups-list-sec-bottom-content p {
    margin-bottom: 15px;
}

.ups-list-sec-bottom-content p:last-child {
    margin-bottom: 0;
}

.ups-list-sec-bottom-content p>em {
    font-size: 15px;
    text-align: center;
    display: block;
    line-height: 1.4;
}

.ups-list-sec-bottom-content p>em>a {
    color: #81ab8f;
    transition: all 0.5s cubic-bezier(0.17, 0.66, 0.34, 0.98);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.ups-list-sec-bottom-content p>em>a:hover {
    border-bottom: 1px solid #81ab8f;
}

@media (min-width: 550px) {
    .ups-list-wrapper>li {
        width: calc(50% - 40px);
    }
}

@media (min-width: 990px) {
    .ups-list-wrapper {
        justify-content: start;
    }
    .ups-list-wrapper>li {
        width: calc(33.3% - 40px);
    }
}