@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@font-face {
    font-family: "Expo Arabic Book";
    src: url("../../fonts/ExpoArabic-Book.woff2") format("woff2"),
        url("../../fonts/ExpoArabic-Book.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Expo Arabic";
    src: url("../../fonts/ExpoArabic-Light.woff2") format("woff2"),
        url("../../fonts/ExpoArabic-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Expo Arabic";
    src: url("../../fonts/ExpoArabic-Medium.woff2") format("woff2"),
        url("../../fonts/ExpoArabic-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

/*
 *  Owl Carousel - Core
 */

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */

.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
    /**
  This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  calculation of the height of the owl-item that breaks page layouts
  */
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*="owl-"] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #869791;
    color: #fff;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

.w-5- {
    width: 5px;
}

.w-10- {
    width: 10px;
}

.w-15- {
    width: 15px;
}

.w-20- {
    width: 20px;
}

.w-25- {
    width: 25px;
}

.w-30- {
    width: 30px;
}

.w-35- {
    width: 35px;
}

.w-40- {
    width: 40px;
}

.w-45- {
    width: 45px;
}

.w-50- {
    width: 50px;
}

.w-55- {
    width: 55px;
}

.w-60- {
    width: 60px;
}

.w-65- {
    width: 65px;
}

.w-70- {
    width: 70px;
}

.w-75- {
    width: 75px;
}

.w-80- {
    width: 80px;
}

.w-85- {
    width: 85px;
}

.w-90- {
    width: 90px;
}

.w-95- {
    width: 95px;
}

.w-100- {
    width: 100px;
}

* {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

em {
    font-style: normal;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ol,
ul,
h1,
h2,
h3,
h5,
h4,
h6 {
    margin: 0;
    padding: 0;
}

.pxt {
    margin-top: 50px;
}

a {
    text-decoration: none !important;
    color: inherit;
}

body {
    width: 100vw;
    overflow-x: hidden;
    display: block;
    font-family: "Expo Arabic";
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

header.header-homePage {
    position: sticky;
    top: 0;
    z-index: 9;
}

.header-bar {
    background: #fafafa;
    box-shadow: 2px 4px 24px 0px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.menu-bar,
ul.list-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-bar .logo {
    width: 60px;
    height: 60px;
}

.menu-bar .logo a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px;
}

.menu-bar .logo a img {
    width: auto;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    max-width: 100%;
    min-width: 100%;
}

.menu-bar ul.list-menu li {
    padding: 0 15px;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.menu-bar ul.list-menu li:hover a {
    color: #4671ad;
}

.menu-bar ul.list-menu .active {
    color: #4671ad;
}

.menu-bar ul.list-menu .active::before {
    position: absolute;
    content: "";
    bottom: 0;
    right: initial;
    background: #d9d9d9;
    height: 2px;
    width: 20px;
    border-radius: 10px;
}

.menu-bar .lang {
    cursor: pointer;
}

.menu-bar .lang span {
    font-size: 14px;
    color: #635d6f;
    font-weight: 400;
}

.menu-bar .lang em {
    width: 32px;
    height: 22px;
    display: inline-block;
}

.menu-bar .lang em img {
    width: auto;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    max-width: 100%;
    min-width: 100%;
}

section.Our-products .title-sec {
    display: flex;
    align-items: center;
    justify-content: start;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0px -10px 50px 0px rgba(0, 0, 0, 0.1);
    width: -moz-max-content;
    width: max-content;
    padding: 5px 5px 5px 10px;
}

section.Our-products .title-sec h3 {
    font-size: 18px;
    padding: 0 5px;
    font-weight: 500;
    color: #000000;
}

section.Our-products .title-sec .sec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: rgba(116, 178, 34, 0.1019607843);
    width: 44px;
    height: 44px;
    padding: 15px 15px 16px 16px;
}

section.Our-products .partner-info strong {
    padding-top: 20px;
    display: block;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px;
    color: #000000;
}

section.Our-products .partner-info strong span {
    color: #4671ad;
}

section.Our-products .partner-info p {
    padding-top: 20px;
    font-size: 14px;
    color: #959595;
    font-weight: 400;
    line-height: 34px;
}

section.Our-products .our-app {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
}

section.Our-products .our-app .app-img {
    width: 192px;
    height: 64px;
}

section.Our-products .our-app .app-img img {
    width: auto;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 5px;
}

section.Our-products .left-side-img {
    width: 100%;
    height: 550px;
}

section.Our-products .left-side-img img {
    width: auto;
    min-width: 100%;
    max-width: 100%;
}

section.Our-products .to-bottom-arrow {
    position: relative;
    width: 80px;
}

section.Our-products .to-bottom-arrow .to-bottom-img {
    height: 180px;
    width: 100%;
    position: relative;
    top: 40px;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

section.Our-products .to-bottom-arrow .to-bottom-img img.behiver-img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

section.Our-products .to-bottom-arrow .to-bottom-img img.behiver-img-2 {
    position: absolute;
    top: -48px;
    right: -41px;
    z-index: 2;
    /* width: 160px; */
    padding: 0;
}

.know-us-sec {
    position: relative;
    padding: 40px 0;
    background-image: url("../../../../imgs/Pinstripe-1.png");
}

.know-us-sec .know-us-details .title-sec strong {
    font-size: 30px;
    padding-bottom: 15px;
    display: block;
    color: #000000;
    text-align: start;
}

.know-us-sec .know-us-details p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.text-start {
    text-align: start;
}

.know-us-info {
    background: #f4f4f4;
    padding: 60px 0;
}

.know-us-info .col-lg-2.col-md-4.col-sm-6 {
    padding: 0 5px;
}

.know-us-info .partner-info {
    display: flex;
    align-items: center;
    justify-content: start;
}

.know-us-info .partner-info .partner-info-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--d-9-d-9-d-9, #fff);
}

.know-us-info .partner-info .info-partner {
    padding: 0 10px;
}

.know-us-info .partner-info .info-partner span {
    font-weight: 500;
    font-size: 13px;
    display: block;
}

.know-us-info .partner-info .info-partner em {
    font-size: 12px;
    font-weight: 600;
}

.app-opotions .title-sec strong {
    color: #000000;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    display: block;
}

.app-opotions .title-sec p {
    color: #757575;
    font-size: 16px;
    padding: 20px 0 60px 0;
    text-align: center;
    text-transform: capitalize;
    width: 80%;
    margin: 0 auto;
}

.opotions-desc-info {
    text-align: center;
    display: block;
    padding: 32px 10px;
}

.opotions-desc-info .options-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3bf45;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    margin: 0 auto 20px auto;
}

.opotions-desc-info span {
    font-size: 20px;
    padding-bottom: 10px;
    display: block;
    color: #000000;
}

.opotions-desc-info p {
    color: #757575;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    height: 76px;
    overflow: hidden;
}

.opotions-desc-info.center-img {
    width: 350px;
    padding: 0;
}

.opotions-desc-info.center-img img {
    width: auto;
    max-width: 100%;
    min-width: 100%;
}

.pets-app {
    margin: 150px 0;
}

.pets-app .pets-app-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 20px;
    padding: 30px;
    background: url("../../../../imgs/Shapes.png"),
        #f9f9f9 -332.333px -54.472px/151.707% 113.866% no-repeat;
}

.pets-app .pets-app-sec .details-side {
    width: 60%;
}

.pets-app .pets-app-sec .details-side .title-sec strong {
    font-size: 28px;
    display: block;
}

.pets-app .pets-app-sec .details-side p {
    font-size: 16px;
    padding: 25px 0;
    line-height: 40px;
}

.pets-app .pets-app-sec .details-side .our-app {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.pets-app .pets-app-sec .details-side .our-app .app-img {
    width: 192px;
    height: 94px;
}

.pets-app .pets-app-sec .details-side .our-app .app-img img {
    width: auto;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    max-width: 100%;
    min-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.pets-app .pets-app-sec .app-img-side {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

:lang(en) .pets-app .pets-app-sec .app-img-side {
    right: 0 !important;
}

:lang(ar) .pets-app .pets-app-sec .app-img-side {
    left: 0 !important;
}

.contact-us-details .title {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-bottom: 10px;
}

.contact-us-details .title strong {
    font-size: 28px;
    padding: 0 5px;
}

.contact-us-details .title .icon-arrow {
    width: 20px;
    height: 27px;
}

.contact-us-details .title .icon-arrow img {
    width: auto;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    max-width: 100%;
    min-width: 100%;
}

.contact-us-details p {
    color: #4e4e4e;
    font-size: 16px;
    font-weight: 400;
}

.contact-us-details .coutact-info {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-top: 20px;
}

.contact-us-details .coutact-info .icon-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: #f5f5f5;
    border-radius: 50%;
}

.contact-us-details .coutact-info .icon-contact img {
    width: 20px;
    height: 20px;
    filter: invert(40%) sepia(53%) saturate(700%) hue-rotate(196deg)
        brightness(94%) contrast(90%);
}

.contact-us-details .coutact-info-details {
    display: block;
    padding: 0 15px;
}

.contact-us-details .coutact-info-details span {
    display: block;
    color: #000000;
    font-size: 16px;
}

.contact-us-details .coutact-info-details em {
    color: #000000;
    font-size: 12px;
    font-weight: 400;
}

.form-control-details {
    border-radius: 20px;
    background: #f4f4f4;
    padding: 25px 20px;
}

.form-control-details .form-control-.details-contact {
    display: block;
    padding-bottom: 20px;
}

.form-control-details .form-control-.details-contact label {
    display: block;
    font-size: 16px;
    color: #000000;
}

.form-control-details .form-control-.details-contact label small {
    color: #f00;
}

.form-control-details .form-control-.details-contact input,
.form-control-details .form-control-.details-contact textarea {
    border-radius: 12px;
    border: 1.5px solid #f6f6f6;
    background: #fff;
    width: 100%;
    padding: 10px 15px;
}

.form-control-details .form-control-.details-contact input::-moz-placeholder,
.form-control-details
    .form-control-.details-contact
    textarea::-moz-placeholder {
    color: #c5c5c5;
    font-size: 14px;
    font-weight: 300;
}

.form-control-details .form-control-.details-contact input::placeholder,
.form-control-details .form-control-.details-contact textarea::placeholder {
    color: #c5c5c5;
    font-size: 14px;
    font-weight: 300;
}

.form-control-details .form-control-.details-contact input:focus-visible,
.form-control-details .form-control-.details-contact textarea:focus-visible {
    outline: none;
}

.form-control-details .submit-btn button {
    width: 100%;
    border-radius: 8px;
    background: #4671ad;
    padding: 10px;
    border: unset;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.privacy-bar {
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
}

.privacy-bar .title strong {
    font-size: 24px;
    padding-bottom: 5px;
    display: block;
    color: #000000;
}

.privacy-bar p {
    font-size: 14px;
    color: #000000;
    padding: 5px 0;
}

.privacy-details strong {
    padding-bottom: 20px;
    display: block;
    font-size: 16px;
}

.privacy-details p {
    font-size: 14px;
    line-height: 28px;
}

.main-category .title strong {
    font-size: 20px;
    padding-bottom: 20px;
    display: block;
    color: #000000;
}

.main-category .col-lg-3.col-md-6.col-sm-12 {
    padding: 10px;
}

.main-category .all-category {
    display: flex;
    align-items: start;
    justify-content: space-between;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    /*scrollbar-width: thin;         !* Firefox *!*/
    /*scrollbar-color: #aaa transparent; !* Firefox *!*/
}

.main-category .all-category::-webkit-scrollbar {
    height: 2px !important; /* slim horizontal scrollbar */
}

.main-category .all-category::-webkit-scrollbar-track {
    background: transparent;
}

.main-category .all-category::-webkit-scrollbar-thumb {
    background-color: #4671ad;
    border-radius: 2px;
}

.main-category .all-category .category-name {
    width: 9%;
    margin: 5px 12px;
    cursor: pointer;
}

.main-category .all-category .category-name.active .cat-name {
    color: #4671ad;
}

.main-category .all-category .category-name.active .cat-icon img {
    filter: invert(40%) sepia(53%) saturate(700%) hue-rotate(196deg)
        brightness(94%) contrast(90%);
}

.main-category .all-category .category-name .cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #f9f9f9;
    width: 70px;
    height: 70px;
    padding: 15px;
    margin: 0 auto;
}

.main-category .all-category .category-name .cat-icon img {
    padding: 5px;
    width: 45px;
    height: 45px;
}

.main-category .all-category .category-name .cat-name {
    text-align: center;
    font-size: 12px;
    /*width: -moz-max-content;*/
    /*width: max-content;*/
    padding: 10px 0;
    margin: 0 auto;
}

.main-category .filter-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: start;
}

.main-category .filter-category .sub-cat-name span {
    display: block;
    font-size: 18px;
    padding-bottom: 5px;
}

.main-category .filter-category .sub-cat-name em {
    color: #757575;
    font-size: 12px;
}

.main-category .filter-category .sub-cat-filter span {
    border: 1px solid rgba(183, 183, 183, 0.7215686275);
    padding: 8px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

.main-category .category-card {
    border-radius: 20px;
    border: 2px solid #f8f8f8;
    background: #fff;
    box-shadow: 2px 4px 24px 0px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
}

.main-category .category-card .category-img {
    /*width: 210px;*/
    margin: 0 auto;
    max-height: 250px;
    min-height: 250px;
}

.main-category .category-card .category-img img {
    /*width: 210px;*/
    /*height: 250px;*/
    padding: 10px;
    -o-object-fit: contain;
    object-fit: contain;
    /*max-height: 250px;*/
    /*min-height: 250px;*/
}

.pagination-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}
.pagination-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.pagination {
    white-space: nowrap;
}

.main-category .category-card .category-desc span {
    font-size: 12px;
    display: block;
    color: #000000;
}

.main-category .category-card .category-desc em {
    display: flex;
    justify-content: end;
    align-items: center;
}

.main-category .category-card .category-desc em a {
    text-align: end;
    display: block;
    border-radius: 11111px;
    border: 1px solid #4671ad;
    background: rgba(70, 113, 173, 0.1019607843);
    font-size: 12px;
    padding: 5px 7px;
    color: #4671ad;
}

.main-category .chose-ur-mark {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(174, 174, 174, 0.7098039216);
    display: none;
}

.main-category .chose-ur-mark.active {
    display: block;
}

.main-category .chose-ur-mark .popup-body {
    width: 60%;
    height: 80%;
    margin: 3% auto;
    border-radius: 22px;
    background: #fff;
    padding: 30px;
}

.main-category .chose-ur-mark .popup-body .popup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.main-category .chose-ur-mark .popup-body .popup-head .close-ur-window {
    cursor: pointer;
}

.main-category .chose-ur-mark .popup-body .popup-head .chose-mark strong {
    font-size: 16px;
    color: #000000;
}

.main-category .chose-ur-mark .popup-body .popup-content {
    height: auto;
    max-height: 95%;
    overflow-y: visible !important;
    overflow: hidden;
    padding: 10px;
    position: relative;
}

.main-category .chose-ur-mark .popup-body .popup-content::-webkit-scrollbar {
    width: 5px;
}

.main-category
    .chose-ur-mark
    .popup-body
    .popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.main-category
    .chose-ur-mark
    .popup-body
    .popup-content::-webkit-scrollbar-thumb {
    background: #888;
}

.main-category
    .chose-ur-mark
    .popup-body
    .popup-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.main-category
    .chose-ur-mark
    .popup-body
    .popup-content
    .mark-logo.active
    .card-mark {
    border: 1px solid #74b222 !important;
}

.main-category .chose-ur-mark .popup-body .popup-content .card-mark {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #efefef;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.main-category
    .chose-ur-mark
    .popup-body
    .popup-content
    .card-mark
    .mark-img
    img {
    width: 70px;
    height: 70px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: auto;
    padding: 5px;
}

.nave-responsive {
    display: none;
}

.footer-sec {
    background: var(--d-9-d-9-d-9, #fff);
    box-shadow: 0px -10px 50px 0px rgba(0, 0, 0, 0.05);
}

.footer-sec .footer-box {
    padding: 60px 0 20px 0;
}

.footer-sec .footer-box .logo {
    width: 60px;
    height: 60px;
}

.footer-sec .footer-box .logo img {
    width: auto;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    max-width: 100%;
    min-width: 100%;
}

.footer-sec .footer-box .footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: start;
}

.footer-sec .footer-box .footer-info .col-footer-deatils:first-child {
    width: 40%;
    margin-inline-start: 0;
}

.footer-sec .footer-box .footer-info .col-footer-deatils:nth-child(2) {
    width: 10%;
}

.footer-sec .footer-box .footer-info .col-footer-deatils:nth-child(3) {
    width: 21%;
}

.footer-sec .footer-box .footer-info .col-footer-deatils:nth-child(4) {
    width: 14%;
}

.footer-sec .footer-box .footer-info .col-footer-deatils {
    margin: 0 10px;
}

.footer-sec .footer-box .footer-info .col-footer-deatils .footer-details p {
    padding: 20px 0;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

.footer-sec
    .footer-box
    .footer-info
    .col-footer-deatils
    .footer-details
    p
    span {
    color: #4671ad;
}

.footer-sec
    .footer-box
    .footer-info
    .col-footer-deatils
    .footer-details
    .social-links {
    display: flex;
    align-items: center;
    justify-content: start;
}

.footer-sec
    .footer-box
    .footer-info
    .col-footer-deatils
    .footer-details
    .social-links
    .social-icon
    img {
    width: 25px;
    height: 25px;
    padding: 3px;
}

.footer-sec .footer-box .footer-info .col-footer-deatils .footer-list ul li {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    padding: 5px 0;
}

.footer-sec
    .footer-box
    .footer-info
    .col-footer-deatils
    .footer-list
    ul
    li:hover
    a {
    color: inherit;
}

.footer-sec
    .footer-box
    .footer-info
    .col-footer-deatils
    .footer-list.footer-conatct
    ul
    li {
    display: flex;
    align-items: center;
    justify-content: start;
}

.footer-sec
    .footer-box
    .footer-info
    .col-footer-deatils
    .footer-list.footer-conatct
    ul
    li
    span {
    padding: 0 10px;
}

.footer-sec .footer-box .footer-info .col-footer-deatils .to-app-img img {
    width: 160px;
    height: 52px;
    margin: 10px 0;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer-sec .copyright {
    background: #f9f9f9;
    padding: 18px 0;
    text-align: center;
}

.footer-sec .copyright .copyright-text span {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.sub-cat-filter span img {
    filter: invert(40%) sepia(53%) saturate(700%) hue-rotate(196deg)
        brightness(94%) contrast(90%);
}

/*@media (max-width: 1200px) {*/
/*    .main-category .all-category {*/
/*        flex-wrap: wrap;*/
/*        justify-content: start;*/
/*    }*/
/*    .main-category .all-category .category-name {*/
/*        width: 14%;*/
/*    }*/
/*}*/

@media (max-width: 990px) {
    .dog {
        overflow: hidden;
    }
    .nave-responsive {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        background: #fafafa;
        box-shadow: 2px 4px 24px 0px rgba(0, 0, 0, 0.05);
        z-index: 99;
        padding: 10px 15px;
    }
    .nave-responsive a img {
        width: 60px;
    }
    .nave-responsive .bar {
        font-size: 28px;
    }
    .nave-responsive .bar i {
        color: #000000;
    }
    .menu-bar.open {
        left: 0;
    }
    .menu-bar .logo {
        display: none;
    }
    .menu-bar {
        position: fixed;
        width: 100%;
        padding-top: 20px;
        background-color: #e6e6e6;
        z-index: 44;
        /* width: inherit; */
        height: 100%;
        left: -100%;
        top: 80px;
        transition: left 0.5s;
        flex-direction: column;
        padding-bottom: 200px;
    }
    .menu-bar ul {
        flex-direction: column;
    }
    .menu-bar ul li {
        padding: 7px 0 !important;
    }
    .the-headr-menuu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }
    .know-us-info {
        padding: 30px 0;
    }
    .know-us-info .partner-info {
        margin: 5px 0;
    }
    .opotions-desc-info.center-img {
        width: 100%;
    }
    .pets-app .pets-app-sec .details-side {
        width: 100%;
    }
    .pets-app .pets-app-sec {
        flex-wrap: wrap;
    }
    .iphone-img img {
        width: 80%;
        margin: 0 auto;
    }
    .pets-app .pets-app-sec .app-img-side {
        position: relative;
    }
    .footer-info {
        flex-wrap: wrap;
        width: 100%;
    }
    .footer-info .col-footer-deatils:nth-child(1),
    .footer-info .col-footer-deatils:nth-child(2),
    .footer-info .col-footer-deatils:nth-child(3),
    .footer-info .col-footer-deatils:nth-child(4) {
        width: 45% !important;
    }
    .pets-app {
        margin: 20px 0;
    }
    .main-category .all-category .category-name {
        width: 20%;
    }
}

@media (max-width: 767px) {
    .know-us-info {
        padding: 30px 0;
    }
    .know-us-info .partner-info {
        margin: 5px 0;
    }
    .know-us-info .col-lg-2.col-md-4.col-sm-6 {
        width: 48%;
    }
    .filter-category {
        flex-wrap: wrap;
    }
    .filter-category .sub-cat-filter {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
    }
    .main-category .chose-ur-mark .popup-body {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .footer-info {
        flex-wrap: wrap;
        width: 100%;
    }
    .footer-info .col-footer-deatils:nth-child(1),
    .footer-info .col-footer-deatils:nth-child(2),
    .footer-info .col-footer-deatils:nth-child(3),
    .footer-info .col-footer-deatils:nth-child(4) {
        width: 100% !important;
    }

    .main-category .category-card .category-img {
        max-height: none;
        min-height: auto;
    }

    .main-category .category-card .category-desc em {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .main-category .category-card .category-desc span {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/*# sourceMappingURL=style.css.map */
