.service-nav {
    display: flex;
    flex-wrap: wrap;
    gap:24px;
    margin-bottom: 24px;
}
.service-nav-item {
    position: relative;
    width: calc(100% / 6 - 20px);
    display: flex;
    flex-direction: column;
    border: 1px solid #30343F;
    backdrop-filter: blur(14px);
    background-color: #191A1F;
    border-radius: 24px;
    padding: 24px 7px 24px 24px;
    transition: .3s;
    cursor: pointer;
    overflow: hidden;
}
.service-nav-item:hover,
.service-nav-item.active {
    background-color: #262A35;
}
.service-nav-item .icon {
    width: 35px;
    height: 35px;
    margin-bottom: 20px;
}
.service-nav-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.service-nav-item .name {
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -1%;
    margin: 0;
    margin-bottom: 46px;
    word-break: break-word;
}
.service-nav-item .counter {
    margin-top: auto;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    opacity: .6;
    display: inline-flex;
}
.service-nav-item::after {
    content:'';
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 9px;
    bottom: 9px;
    background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3CforeignObject x='-14' y='-14' width='78' height='78'%3E%3Cdiv xmlns='http://www.w3.org/1999/xhtml' style='backdrop-filter:blur(7px);clip-path:url(%23bgblur_0_376_262_clip_path);height:100%25;width:100%25'%3E%3C/div%3E%3C/foreignObject%3E%3Cg data-figma-bg-blur-radius='14'%3E%3Crect x='50' y='2.18557e-06' width='50' height='50' rx='16' transform='rotate(90 50 2.18557e-06)' fill='%23262A35'/%3E%3Cpath d='M32 22L25 29L18 22' stroke='white' stroke-width='1.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='bgblur_0_376_262_clip_path' transform='translate(14 14)'%3E%3Crect x='50' y='2.18557e-06' width='50' height='50' rx='16' transform='rotate(90 50 2.18557e-06)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s;
}
.service-nav-item:hover::after,
.service-nav-item.active::after {
    background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3CforeignObject x='-14' y='-14' width='78' height='78'%3E%3Cdiv xmlns='http://www.w3.org/1999/xhtml' style='backdrop-filter:blur(7px);clip-path:url(%23bgblur_0_376_5_clip_path);height:100%25;width:100%25'%3E%3C/div%3E%3C/foreignObject%3E%3Cg data-figma-bg-blur-radius='14'%3E%3Crect x='50' y='2.18557e-06' width='50' height='50' rx='16' transform='rotate(90 50 2.18557e-06)' fill='%231F5FFF'/%3E%3Cpath d='M32 22L25 29L18 22' stroke='white' stroke-width='1.5'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='bgblur_0_376_5_clip_path' transform='translate(14 14)'%3E%3Crect x='50' y='2.18557e-06' width='50' height='50' rx='16' transform='rotate(90 50 2.18557e-06)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
}
.service-nav-item::before {
    content:'';
    display: block;
    width: 202px;
    height: 206px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg width='202' height='206' viewBox='0 0 202 206' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.6' filter='url(%23filter0_f_2024_2)'%3E%3Ccircle cx='168' cy='172' r='72' fill='%231F5FFF'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_2024_2' x='-4' y='0' width='344' height='344' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='50' result='effect1_foregroundBlur_2024_2'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E ");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: .3s;
    opacity: 0;
}
.service-nav-item:hover::before,
.service-nav-item.active::before {
    opacity: 1;
}

.service-content-for {
    display: flex;
    background-color: #262A35;
    border: 1px solid #333742;
    border-radius: 32px;
    overflow: hidden;
}
.service-content-for-ls {
    width: calc(100% - 498px);
    padding: 48px;
    padding-right: 210px;
    position: relative;
}

.service-slider-arrows {
    display: flex;
    align-items: center;
    gap:10px;
    position: absolute;
    right: 32px;
    bottom: 48px;
}
.service-slider-arrows .slick-next {
    width: 56px;
    height: 56px;
}
.service-slider-arrows .slick-prev {
    width: 56px;
    height: 56px;
}
.service-slider-arrows .sl-count {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    width: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-slider {
    height: 100%;
}
.service-slider .slick-list {
    height: 100%;
}
.service-slider .slick-track {
    display: flex;
    height: 100%;
}
.service-slider .slick-slide {
    height: auto;
}
.service-slider .slick-slide > div {
    height: 100%;
}
.service-slider-item {
    display: flex !important;
    flex-direction: column;
    height: 100%;
}
.service-slider-item .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -1%;
    opacity: .6;
    margin-bottom: 64px;
}
.service-slider-item .description > *:last-child {
    margin-bottom: 0;
}
.service-slider-item .description > *:first-child {
    margin-top: 0;
}
.service-slider-item .price {
    margin-top: 24px;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -1%;
    margin-bottom: 26px;
    margin-top: auto;
}
.service-slider-item .btns-rows {
    display: flex;
    gap:10px;
    justify-content: flex-start;
    margin-top: auto;
}
.service-slider-item .btns-rows > * {
    width: 100%;
    white-space: nowrap;
}
.service-slider-item .btns-rows .email::before {
    content: '';
    display: block;
    width: 15px;
    height: 12px;
    margin-right: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='12' viewBox='0 0 15 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 2.65141V9.75023C15 10.3241 14.7808 10.8764 14.387 11.2939C13.9933 11.7115 13.4549 11.9628 12.882 11.9965L12.75 12.0003H2.25C1.67609 12.0003 1.12386 11.781 0.706304 11.3873C0.288745 10.9936 0.0374194 10.4552 0.00375009 9.88223L0 9.75023V2.65141L7.08375 7.37421L7.17075 7.42371C7.27328 7.47381 7.38589 7.49985 7.5 7.49985C7.61411 7.49985 7.72672 7.47381 7.82925 7.42371L7.91625 7.37421L15 2.65141Z' fill='white'/%3E%3Cpath d='M12.75 0C13.56 0 14.2702 0.427504 14.6662 1.07026L7.49999 5.84781L0.33374 1.07026C0.521834 0.764875 0.780208 0.50888 1.08732 0.32362C1.39443 0.13836 1.74138 0.0292032 2.09924 0.00525003L2.24999 0H12.75Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.service-slider-item .btn-border {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
    box-shadow: unset;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    padding: 19px;
    transition: .3s;
    cursor: pointer;
    border-radius: 16px;
    background-color: transparent;
    border: 1px solid #1F5FFF;
}
.service-slider-item .btn-border::after {
    content: '';
    display: block;
    width: 7px;
    height: 11px;
    margin-left: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.353516 0.353546L5.35352 5.35355L0.353516 10.3535' stroke='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.service-slider-item .btn-border:hover {
    background-color: #1F5FFF;
    box-shadow: 0px 0px 15px 0px #1F5FFF80;
}
.service-content-for-rs {
    width: 498px;
    border-radius: 32px;
    overflow: hidden;
}
.service-content-for-rs .slick-list {
    height: 100%;
}
.service-content-for-rs .slick-track {
    display: flex;
    height: 100%;
}
.service-content-for-rs .slick-slide {
    /* height: auto; */
    height: 100%;
}
.service-content-for-rs .slick-slide > div {
    height: 100%;
}
.service-content-for-rs .slick-slide img {
    width: 100%;
    height: 100%;
}
@media(max-width:1400px) {
    .service-nav-item .name {
        font-size: 19px;
    }
    .service-slider-item .btns-rows {
        flex-wrap: wrap;
    }
    .service-slider-item .btns-rows > * {
        width: auto;
    }
}
@media(max-width:1200px) {
    .service-nav-item {
        width: calc(100% / 3 - 16px);
    }
    .service-content-for-ls {
        width: 100%;
        padding: 48px;
        padding-right: 216px;
    }
    .service-content-for-rs {
        display: none;
    }
}
@media(max-width:992px) {
    .service-nav-item {
        width: calc(100% / 2 - 12px);
    }
    .service-slider-arrows {
        gap:6px;
        right: 32px;
        bottom: unset;
        top: 43px;
        z-index: 9;
    }
    .service-slider-arrows .slick-prev,
    .service-slider-arrows .slick-next {
        width: 42px;
        height: 42px;
    }
    .service-slider-arrows .sl-count {
        font-size: 20px;
        width: 23px;
    }
    .service-content-for-ls {
        padding-right: 48px;
    }
    .service-slider-item .name {
        padding-right: 120px;
    }
}
@media(max-width:576px) {
    .service-slider-item .name {
        word-wrap: break-word;
    }
    .service-slider-item .btns-rows {
        gap:8px;
    }
    .service-slider-item .btns-rows > .email {
        display: none;
    }
    .service-slider-item .btns-rows > * {
        width: calc(100% / 2 - 4px);
    }
    .service-slider-arrows {
        right: 24px;
    }
    .service-content-for-ls {
        padding: 48px 24px;
    }
    .service-slider-item .description {
        font-size: 14px;
        margin-bottom: 32px;
    }
    .service-nav {
        gap: 10px;
    }
    .service-nav-item {
        width: calc(100% / 2 - 5px);
        padding: 24px 7px 24px 12px;
    }
    .service-nav-item .name {
        font-size: 18px;
        margin-bottom: 32px;
    } 
    .service-nav-item .icon {
        width: 28px;
        height: 28px;
        margin-bottom: 12px;
    }
    .service-nav-item .counter {
        font-size: 16px;
    }
}