.sw.swiper.sw--access {
    padding: 0 1px;
}
.access-head::before {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    background: var(--color3);
    width: calc(100% + 30px);
    height: calc(100% + 56px);
    z-index: -1;
}
.access-head {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 24px 0;
}

.access-item {
    border-radius: 12px;
    overflow: hidden;
    background: #EEEEF7;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 205, 0.5);
}
.access-item .icon-bg {
    min-width: 58px;
    height: 58px;
    background: #fff;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--color3);
}
.access-item .icon-bg img {
    max-width: 26px;
}
.access-content .title {
    color: var(--color3);
    font-size: 18px;
}
.access-content .title-en {
    color: var(--color3);
    font-weight: lighter;
    text-transform: uppercase;
    font-size: 13px;
}
.access-item > i {
    margin-right: auto;
    border: 1.5px solid var(--color3);
    min-width: 24px;
    height: 24px;
    border-radius: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: var(--color3);
    transition: 0.4s ease;
}
.access-item:hover > i {
    background: var(--color3);
    color: #fff;
}
.sw--access:not(.swiper-initialized) .swiper-slide {
  flex-shrink: unset;
  margin-left: 20px;
  width: 190px;
  flex: 0 0 190px;
}

@media screen and (min-width: 576px) {
    .access-head::before {
        border-radius: 39px;
        right: 0;
        width: 100%;
        height: calc(100% + 56px);
    }
}
@media screen and (min-width: 768px) {
    .access-head {
        max-width: 60%;
        padding: 24px;
    }

}