.rentgo-cat-gallery {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.rentgo-cat-gallery,
.rentgo-cat-gallery * {
    box-sizing: border-box;
}

.rentgo-cat-gallery__container {
    position: relative;
}

.rentgo-cat-gallery__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 52px;
}

.rentgo-cat-gallery__intro {
    max-width: 760px;
}

.rentgo-cat-gallery__label {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    padding-bottom: 9px;
    color: #f20712;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.rentgo-cat-gallery__label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 2px;
    background: currentColor;
}

.rentgo-cat-gallery__title {
    margin: 0;
    color: #071b63;
    font-size: clamp(34px, 3.1vw, 50px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.4px;
}

.rentgo-cat-gallery__description {
    max-width: 660px;
    margin-top: 18px;
    color: #5d6475;
    font-size: 16px;
    line-height: 1.8;
}

.rentgo-cat-gallery__nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    padding-bottom: 2px;
}

.rentgo-cat-gallery__nav-btn {
    font-size: 17px;
    color: var(--uicolor2);
    width: 60px;
    height: 40px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    opacity: 1;
    position: relative;
    overflow: hidden;
    transition: 0.2s all ease;
}

.rentgo-cat-gallery__nav-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.7);
    background-color: var(--uicolor);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.rentgo-cat-gallery__nav-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.rentgo-cat-gallery__nav-btn svg,
.rentgo-cat-gallery__nav-btn i,
.rentgo-cat-gallery__nav-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    transition: 0.2s all ease;
}

.rentgo-cat-gallery__nav-btn:hover i {
    color: white
}

.rentgo-cat-gallery__nav-btn.disabled-btn {
    pointer-events: none;
    opacity: 0.45;
}

.rentgo-cat-gallery__slider {
    display: block;
    opacity: 0;
    transition: opacity 0.25s ease;
    margin: 0 auto;
    padding: var(--container-padding);
    margin-bottom: 20px;
}

.rentgo-cat-gallery__slider.owl-loaded {
    opacity: 1;
}

.rentgo-cat-gallery__slider .owl-stage-outer {
    overflow: hidden;
}

.rentgo-cat-gallery__slider .owl-stage {
    display: flex;
}

.rentgo-cat-gallery__slider .owl-item {
    display: flex;
    min-height: 1px;
}

.rentgo-cat-gallery__slider .owl-item > .rentgo-cat-card {
    width: 100%;
}

.rentgo-cat-card {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 18px;
    background: #eef1f6;
    isolation: isolate;
}

.rentgo-cat-card__link,
.rentgo-cat-card__media,
.rentgo-cat-card__shade {
    position: absolute;
    inset: 0;
    display: block;
}

.rentgo-cat-card__link {
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

.rentgo-cat-card__media {
    z-index: 1;
    background: #eef1f6;
}

span.rentgo-cat-card__media img {
    width: 100%;
    height: 100%;
}

.rentgo-cat-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.55s ease, filter 0.55s ease;
}

.rentgo-cat-card__shade {
    z-index: 2;
    background: rgba(7, 27, 99, 0.62);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.rentgo-cat-card__overlay {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 3;
    min-height: 104px;
    display: block;
    transform: translateY(calc(100% + 19px));
    transition: transform 0.35s ease;
}

.rentgo-cat-card__content {
    position: absolute;
    right: 0;
    left: 54px;
    bottom: 0;
    z-index: 2;
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 25px 22px 24px 30px;
    background: #f20712;
    color: #fff;
    border-radius: 0 10px 0 0;
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
}

.rentgo-cat-card__text {
    display: block;
    min-width: 0;
}

.rentgo-cat-card__title {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.rentgo-cat-card__description {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
    max-width: 300px;
}

.rentgo-cat-card__icon {
    position: absolute;
    top: 28px;
    left: 34px;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--uicolor);
    font-size: 16px;
    z-index: 3;
    border: 10px solid white;
}

.rentgo-cat-card__icon svg,
.rentgo-cat-card__icon i,
.rentgo-cat-card__icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.rentgo-cat-card:hover .rentgo-cat-card__image {
    transform: scale(1.06);
    filter: saturate(1.04);
}

.rentgo-cat-card:hover .rentgo-cat-card__shade {
    opacity: 1;
}

.rentgo-cat-card:hover .rentgo-cat-card__overlay,
.rentgo-cat-card:focus-within .rentgo-cat-card__overlay,
.rentgo-cat-card--initial-overlay .rentgo-cat-card__overlay {
    transform: translateY(0);
}

.rentgo-cat-gallery__empty {
    padding: 24px;
    border: 1px solid #e6e8ef;
    border-radius: 14px;
    color: #071b63;
    background: #fff;
}

@media (max-width: 1199px) {
    .rentgo-cat-card {
        height: 330px;
    }
}

@media (max-width: 991px) {

    .rentgo-cat-gallery__head {
        align-items: flex-start;
        margin-bottom: 34px;
    }

    .rentgo-cat-gallery__nav {
        padding-bottom: 0;
    }
}

@media (max-width: 575px) {

    .rentgo-cat-gallery__title {
        letter-spacing: -0.7px;
    }

    .category-card__read-more {
    width: 49% !important;
}

    .rentgo-cat-card {
        height: 310px;
        border-radius: 16px;
    }

    .rentgo-cat-card__content {
        min-height: 96px;
        padding: 22px 16px 22px 22px;
    }

    .rentgo-cat-card__overlay {
        min-height: 96px;
    }

    .rentgo-cat-card__icon {
        width: 50px;
        height: 50px;
    }
}

.category-card {
    --category-card-background: #f6f6f6;
    --category-card-text: #111827;
    --category-card-muted-text: #887873;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px 10px 10px;
    overflow: hidden;
    box-sizing: border-box;
    background: var(--category-card-background);
    border-radius: 18px;
    text-align: center;
    max-width: 100%;
    min-width: 250px;
    flex: 1;
}

.category-card,
.category-card * {
    box-sizing: border-box;
}

.category-card .cat-info {
    position: relative;
    z-index: 3;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding-inline: 22px;
}

.category-card .sics-two__sin {
    display: grid;
    color: var(--category-card-text);
}

.-cat-bo:hover .sics-two__sin svg {
    transform: rotateY(
180deg);
}

.-cat-bo:hover .sics-two__sin svg g {
    fill: var(--uicolor);
}

.-cat-bo:hover .sics-two__sin svg path {
    fill: var(--uicolor);
}

.category-card .sics-two__sin > * {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.category-card .sics-two__sin img,
.category-card .sics-two__sin svg {
    width: 132px;
    height: 103px;
    object-fit: contain;
    transition: 0.6s all ease;
}

.category-card .content-box {
    width: 100%;
    margin: 15px 0 0;
    color: var(--category-card-text);
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}

.category-card .content-box a {
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-card .content-box a:hover,
.category-card .content-box a:focus-visible {
    color: inherit;
}

.category-card .-p-cat-desc {
    display: -webkit-box;
    width: 100%;
    min-height: 58px;
    margin-top: 14px;
    overflow: hidden;
    color: var(--category-card-muted-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-card__read-more {
    position: relative;
    z-index: 4;
    display: inline-flex;
    width: 60%;
    height: 40px;
    margin-top: 16px;
    margin-bottom: -35px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--category-card-background);
    border-radius: 0 0 18px 18px;
    color: var(--category-card-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: gap 180ms ease, color 180ms ease;
    cursor: pointer;
}

.category-card__read-more svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.category-card__read-more:hover,
.category-card__read-more:focus-visible {
    gap: 14px;
    color: var(--category-card-text);
}

.category-card__read-more:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -5px;
}

.category-card .cat-img {
    position: relative;
    order: 2;
    width: 100%;
    height: 234px;
    flex: 0 0 214px;
    overflow: hidden;
    border-radius: 18px;
    mask-image: var(--mask-bcg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
}

.category-card .category-card__image-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    display: block;
    transition: all 500ms ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-card .category-card__image-layer--primary {
    z-index: 2;
}

.category-card .category-card__image-layer--secondary {
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.category-card:hover .cat-img--has-hover-image .category-card__image-layer--primary,
.category-card:focus-within .cat-img--has-hover-image .category-card__image-layer--primary {transform: translateX(-50%) scaleX(2);opacity: 0;filter: blur(10px);}

.category-card:hover .cat-img--has-hover-image .category-card__image-layer--secondary,
.category-card:focus-within .cat-img--has-hover-image .category-card__image-layer--secondary {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.category-card .cat-img img,
.category-card .cat-img picture img,
.category-card .cat-img .-cat-img {
    object-fit: cover;
    object-position: center;
}

@media (prefers-reduced-motion: reduce) {
    .category-card .category-card__image-layer {
        transition-duration: 1ms;
    }
}

@media (max-width: 900px) {
    .category-card {
    max-width: 100% !important;
    padding: 0px 10px 10px;
}
}

@media (max-width: 530px) {
    .rentgo-cat-gallery__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

    .rentgo-cat-gallery__nav-btn {
    width: 50px;
    height: 30px;
}

.rentgo-cat-gallery__nav-btn i {
    font-size: 15px;
}
}

@media (max-width: 500px) {
    .category-card .-p-cat-desc {
    font-size: 13px;
    margin-top: 6px;
}

.category-card__read-more {
    font-size: 12px;
}

.category-card .cat-info {
    padding-inline: 10px;
}

    .category-card .content-box {
    font-size: 16px;
    margin: 0;
}

.category-card .sics-two__sin img, .category-card .sics-two__sin svg {
    width: 60px;
    height: 60px;
}
}

@media (max-width: 420px) {
    .category-card {
        width: 100%;
    }

    .footer-sec {
    text-align: center;
}
}