.c-service {
    padding: 2rem 16px;
}

.c-service__title {
    font-size: 5.6vw;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 3rem;
    color: #313235;
}

.c-ctrl-width {
    max-width: 550px;
    margin: 0 auto;
}

.c-service-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
    column-gap: 7px;
    margin: 20px auto;
}

.c-service__link {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border: 1px solid #c9c9c9;
    text-align: center;
    border-radius: 8px;
    color: #50535A;
    line-height: normal;
    font-size: 3.3vw;
}

.c-service__link img {
    height: 25px;
    width: auto;
    transition: all .4s ease;
}

.c-service__link.active img {
    transform: rotate(180deg);
}
.c-service__link.item-Wifi.item5{
    flex-direction: row;
    order: 1;
    grid-column: span 3;
}
.saltoMob{
    display: none;
}
.c-service__link.item-Wifi a{
    color: var(--blue);
    text-decoration: underline;
}

.c-service-more{
    display: none;
    opacity: 0;
    transition: all .3s ease;
}

.c-service-more__slider{
    max-width: 850px;
    margin: 0 auto 8px;
}

.c-service-more__item{
    display: block !important;
    padding: 20px 16px 16px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0px 0px 4px 3px rgba(11, 39, 57, 0.05);
    margin: 12px auto;
    max-width: 340px;
}

.c-service-more__sectitle{
    color: #0B2739;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 24px;
}

.c-service-more__list{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.c-service-more__link{
    width: 100%;
    display: grid;
    grid-template-columns: 30px 1fr;
    place-items: center;
    gap: 12px;
    border-bottom: 1px solid #EEE;
    padding: 12px 8px 12px 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    color: #50535A;
}

.c-service-more__link:last-child{
    border-bottom: 0;
}

.c-service-more__link span{
    justify-self: flex-start;
}

.c-service-more__link img {
    height: auto;
    width: 25px;
}


/* CONFIG ARROWs */
.c-service-more__control {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 40px;
}

.c-service-more__arrow {
    background-image: url(/pages/persons/home/box-phone/images/icon/icon-arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    color: transparent;
    font-size: 0;
}

.c-service-more__arrow.--next {
    transform: scaleX(-1);
}

/* CONFIG DOTS */
.c-service-more__dots{
    min-height: 28px;
}

.c-service-more__control .slick-dots {
    position: relative;
    bottom: auto;
}

.c-service-more__control .slick-dots li {
    width: 28px;
    height: 28px;
}

.c-service-more__control .slick-dots li button {
    position: relative;
    color: #8E8E8E;
    font-size: 16px;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.c-service-more__control .slick-dots li.slick-active button {
    animation: animateslide 6s ease-in .4s 1 alternate forwards;
    background: conic-gradient(var(--blue) var(--mbangle), var(--bg-lightGray) 0deg);
    color: var(--blue);
    font-weight: bold;
}

.c-service-more__control .slick-dots li button::before {
    content: ' ';
    background-color: transparent;
    border-radius: 50%;
    height: 90%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: -1;
}

.c-service-more__control .slick-dots li.slick-active button::before {
    background-color: #ddedf5;
    opacity: 1;
}

@keyframes animateslide {
    to {
        --mbangle: 360deg;
    }
}


@media screen and (min-width: 500px) {
    .c-service__title {
        font-size: 26px;
    }
    .c-service__link {
        font-size: 13px;
    }
}

@media screen and (max-width: 830px) {
    .--movreverse {
        grid-column: span 3;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding: 8px 16px;
    }

    .--movreverse.active {
        border: 1px solid var(--blue);
    }

    .--movreverse br {
        display: none;
    }
}

@media screen and (min-width: 830px) {

    .c-ctrl-width {
        max-width: 1200px;
    }

    .c-service-box {
        grid-template-columns: repeat(7, 1fr);
        column-gap: 8px;
    }
    .c-service__link.item-Wifi.item5{
        width: max-content;
        order: 0;
        grid-column: span 1;
    }
    .c-service__link:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 11px 0 rgb(0 0 0 / 10%), 0 2px 4px 0 rgb(0 0 0 / 10%);
    }

    .c-service-more__link:hover {
        color: var(--blue);
        border-bottom: 1px solid var(--blue);
    }
    .saltoMob{
        display: block;
    }

}


@media screen and (min-width: 1050px) {
    .c-service__link {
        padding: 14px 10px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 8px;
        text-align: left;
    }

    .--reverse {
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .--reverse.active {
        border: 1px solid var(--blue);
    }
}

@media screen and (min-width: 1060px) {
    /* CONFIG ARROWs */
    .c-service-more__control {
        display: none;
    }
}