section[data-cattype="88896"] {
    --services-88896-orange: #FA9028;
    --services-88896-blue: #06346E;
    --services-88896-text: #242424;
    --services-88896-nav-gray: #d8d8d8;
    --services-88896-dot-size: 12px;
    --services-88896-dot-gap: 9px;
    --services-88896-dot-border: #FA9028;
    --services-88896-dot-active: #FA9028;
    --services-88896-hover-speed: .42s;
    --services-88896-hover-lift: -8px;
    --services-88896-hover-zoom: 1.08;
    --services-88896-hover-img-opacity: .62;
    --services-88896-title-anim-duration: 4s;
    --services-88896-title-anim-delay: 0s;
    --services-88896-title-anim-repeat: 1;
    font-family: 'Open Sans', Arial, sans-serif;
    background: #ffffff;
    overflow: hidden;
}

section[data-cattype="88896"] .services-88896-wrap {
    padding: 30px 0 92px;
}

section[data-cattype="88896"] .services-88896-container {
    max-width: 1640px;
}

section[data-cattype="88896"] .services-88896-heading {
    max-width: 980px;
    margin: 0 auto 36px;
    text-align: center;
}

section[data-cattype="88896"] .services-88896-heading h2 {
    margin: 0 0 14px;
    font-size: 50px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--services-88896-text);
    text-transform: capitalize;
}

section[data-cattype="88896"] .services-88896-title-anim {
    display: inline-block;
    color: var(--services-88896-text);
    background: linear-gradient(to right, currentColor, currentColor, currentColor, currentColor, rgba(255, 255, 255, 0));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 500% auto;
    background-repeat: no-repeat;
    animation-duration: var(--services-88896-title-anim-duration);
    animation-delay: var(--services-88896-title-anim-delay);
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-iteration-count: var(--services-88896-title-anim-repeat);
}

section[data-cattype="88896"] .services-88896-title-anim-right {
    background-position: 150% center;
    animation-name: services88896TitleRevealRight;
}

section[data-cattype="88896"] .services-88896-title-anim-left {
    background-position: -150% center;
    animation-name: services88896TitleRevealLeft;
}

@keyframes services88896TitleRevealRight {
    from {
        background-position: 150% center;
    }
    to {
        background-position: 0 center;
    }
}

@keyframes services88896TitleRevealLeft {
    from {
        background-position: -150% center;
    }
    to {
        background-position: 0 center;
    }
}

section[data-cattype="88896"] .services-88896-intro,
section[data-cattype="88896"] .services-88896-intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: var(--services-88896-text);
}

section[data-cattype="88896"] .services-88896-slider-wrap {
    position: relative;
    padding: 0 62px;
}

section[data-cattype="88896"] .services-88896-slider:not(.owl-carousel-ready) {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

section[data-cattype="88896"] .services-88896-item {
    padding: 0;
}

section[data-cattype="88896"] .services-88896-card {
    position: relative;
    display: block;
    min-height: 390px;
    height: 390px;
    border-radius: 28px;
    overflow: hidden;
    color: #ffffff;
    background: #a8aaae;
    text-decoration: none;
    box-shadow: 0 0 0 rgba(250, 144, 40, 0);
    transform: translateY(0);
    transition: transform var(--services-88896-hover-speed) ease, box-shadow var(--services-88896-hover-speed) ease, background var(--services-88896-hover-speed) ease;
}

section[data-cattype="88896"] .services-88896-card:hover,
section[data-cattype="88896"] .services-88896-card:focus,
section[data-cattype="88896"] .services-88896-card:focus-within {
    color: #ffffff;
    text-decoration: none;
    background: var(--services-88896-orange);
    transform: translateY(var(--services-88896-hover-lift));
    box-shadow: 0 18px 36px rgba(250, 144, 40, .36);
}

section[data-cattype="88896"] .services-88896-photo,
section[data-cattype="88896"] .services-88896-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

section[data-cattype="88896"] .services-88896-photo img {
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
    transition: transform var(--services-88896-hover-speed) ease, filter var(--services-88896-hover-speed) ease, opacity var(--services-88896-hover-speed) ease;
}

section[data-cattype="88896"] .services-88896-card:hover .services-88896-photo img,
section[data-cattype="88896"] .services-88896-card:focus .services-88896-photo img,
section[data-cattype="88896"] .services-88896-card:focus-within .services-88896-photo img {
    transform: scale(var(--services-88896-hover-zoom));
    filter: saturate(1.08) contrast(1.03);
    opacity: var(--services-88896-hover-img-opacity);
}

section[data-cattype="88896"] .services-88896-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 52, 110, 0.04) 0%, rgba(6, 52, 110, 0.30) 48%, rgba(6, 52, 110, 0.94) 100%);
    z-index: 2;
    opacity: 1;
    transition: background var(--services-88896-hover-speed) ease, opacity var(--services-88896-hover-speed) ease;
}

section[data-cattype="88896"] .services-88896-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--services-88896-orange) 58%, var(--services-88896-orange) 100%);
    opacity: 0;
    transform: translateY(18%);
    transition: opacity var(--services-88896-hover-speed) ease, transform var(--services-88896-hover-speed) ease;
}

section[data-cattype="88896"] .services-88896-card:hover .services-88896-overlay::before,
section[data-cattype="88896"] .services-88896-card:focus .services-88896-overlay::before,
section[data-cattype="88896"] .services-88896-card:focus-within .services-88896-overlay::before {
    opacity: .92;
    transform: translateY(0);
}

section[data-cattype="88896"] .services-88896-content {
    position: absolute;
    left: 38px;
    right: 34px;
    bottom: 28px;
    z-index: 3;
    text-align: left;
    transform: translateY(0);
    transition: transform var(--services-88896-hover-speed) ease;
}

section[data-cattype="88896"] .services-88896-card:hover .services-88896-content,
section[data-cattype="88896"] .services-88896-card:focus .services-88896-content,
section[data-cattype="88896"] .services-88896-card:focus-within .services-88896-content {
    transform: translateY(calc(var(--services-88896-hover-lift) * .75));
}

section[data-cattype="88896"] .services-88896-content h3 {
    margin: 0 0 6px;
    font-size: 25px;
    line-height: 1.12;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
}

section[data-cattype="88896"] .services-88896-subtitle {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: #ffffff;
}

section[data-cattype="88896"] .services-88896-desc,
section[data-cattype="88896"] .services-88896-desc p,
section[data-cattype="88896"] .services-88896-desc div,
section[data-cattype="88896"] .services-88896-desc span {
    margin: 0;
    font-size: 18px;
    line-height: 1.28;
    font-weight: 400;
    color: #ffffff;
}

section[data-cattype="88896"] .services-88896-action {
    margin-top: 28px;
    text-align: center;
}

section[data-cattype="88896"] .services-88896-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 198px;
    min-height: 60px;
    padding: 14px 38px;
    border-radius: 18px;
    background: var(--services-88896-orange);
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

section[data-cattype="88896"] .services-88896-btn:hover,
section[data-cattype="88896"] .services-88896-btn:focus,
section[data-cattype="88896"] .services-88896-btn:active {
    background: var(--services-88896-blue);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(6, 52, 110, .32);
}

section[data-cattype="88896"] .owl-wrapper-outer {
    overflow: hidden;
}

section[data-cattype="88896"] .services-88896-slider.owl-carousel-ready .owl-item {
    padding: 0 14px;
}

section[data-cattype="88896"] .owl-theme .owl-controls {
    margin-top: 14px;
    text-align: center;
}

section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-prev,
section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: -30px;
    padding: 0;
    background: transparent;
    color: var(--services-88896-nav-gray);
    opacity: 1;
    font-size: 90px;
    line-height: 1;
    text-shadow: none;
    transition: color .25s ease, opacity .25s ease;
}

section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-prev:hover,
section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-next:hover,
section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-prev:focus,
section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-next:focus,
section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-prev:active,
section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-next:active {
    color: var(--services-88896-orange);
}

section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-prev {
    left: 4px;
}

section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-next {
    right: 4px;
}

section[data-cattype="88896"] .owl-theme .owl-controls .owl-pagination {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--services-88896-dot-gap);
    min-height: 16px;
}

section[data-cattype="88896"] .owl-theme .owl-controls .owl-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

section[data-cattype="88896"] .owl-theme .owl-controls .owl-page span {
    display: block;
    width: var(--services-88896-dot-size);
    height: var(--services-88896-dot-size);
    margin: 0;
    background: #D1D3D4;
    border: 0px solid var(--services-88896-dot-border);
    border-radius: 999px;
    opacity: 1;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

section[data-cattype="88896"] .owl-theme .owl-controls .owl-page:hover span,
section[data-cattype="88896"] .owl-theme .owl-controls .owl-page.active span {
    background: var(--services-88896-dot-active);
    border-color: var(--services-88896-dot-active);
    transform: scale(1.05);
}

@media (max-width: 1399px) {
    section[data-cattype="88896"] .services-88896-slider-wrap {
        padding: 0 46px;
    }

    section[data-cattype="88896"] .services-88896-card {
        height: 350px;
        min-height: 350px;
    }

    section[data-cattype="88896"] .services-88896-content {
        left: 28px;
        right: 26px;
    }
}

@media (max-width: 1199px) {
    section[data-cattype="88896"] .services-88896-slider:not(.owl-carousel-ready) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    section[data-cattype="88896"] .services-88896-wrap {
        padding: 40px 0 72px;
    }

    section[data-cattype="88896"] .services-88896-heading h2 {
        font-size: 36px;
    }

    section[data-cattype="88896"] .services-88896-intro,
    section[data-cattype="88896"] .services-88896-intro p,
    section[data-cattype="88896"] .services-88896-desc,
    section[data-cattype="88896"] .services-88896-desc p,
    section[data-cattype="88896"] .services-88896-subtitle {
        font-size: 16px;
    }

    section[data-cattype="88896"] .services-88896-slider-wrap {
        padding: 0 34px;
    }

    section[data-cattype="88896"] .services-88896-slider:not(.owl-carousel-ready) {
        grid-template-columns: 1fr;
    }

    section[data-cattype="88896"] .services-88896-slider.owl-carousel-ready .owl-item {
        padding: 0 8px;
    }

    section[data-cattype="88896"] .services-88896-card {
        height: 330px;
        min-height: 330px;
        border-radius: 22px;
    }

    section[data-cattype="88896"] .services-88896-content h3 {
        font-size: 23px;
    }

    section[data-cattype="88896"] .owl-theme .owl-controls {
        margin-top: 12px;
    }

    section[data-cattype="88896"] .services-88896-action {
        margin-top: 24px;
    }

    section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-prev,
    section[data-cattype="88896"] .owl-theme .owl-controls .owl-buttons .owl-next {
        font-size: 75px;
        margin: -25px;
    }
}
