:root {
    --body-bg-color: #F5F5F5;
    --body-text-color: #000000;
    --body-font-size: 14px;
    --body-font-family: 'Readex Pro';
    --header-text-color: #000000;
    --heading-font-family: 'Fredoka One';
    --body-yellow-color: #FFD100;
    --body-default-color: #002842;
    --body-white-color: #ffffff;
    --section-bg-color: #E5EEFF;
    --header-bg-color: linear-gradient(166deg, #ABC9EA 0%, #C2DBF7 100%);
    --banner-bg-color: #ABC9EA;
    --border-color: #E6E6E6;
}

body {
    background-color: var(--body-bg-color);
    color: var(--body-text-color);
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 400;;
    line-height: 1.3;
    letter-spacing: 0.6px;
}
a, a:hover {
    color: var(--body-default-color);
    text-decoration: none;
    display: inline-block;
}
p {
    margin-bottom: 15px;
}
p:last-child {
    margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--header-text-color);
    font-family: var(--heading-font-family);
    margin-bottom: 15px;
    line-height: 1.4;
}
h1 {
    font-size: 38px;
}
h2 {
    font-size: 34px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 26px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 18px;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
li {
    text-decoration: none;
}
.form_group {
    position: relative;
    margin: 15px 0;
}
.form_group input, 
.form_group textarea, 
.form_group select {
    font-size: 14px;
    border: 1px solid var(--border-color) !important;
    padding: 10px 15px;
    border-radius: 10px;
    width: 100%;
} 
.form_group input:focus, 
.form_group textarea:focus, 
.form_group select:focus { 
    box-shadow: none;
    border: none;
    outline: none;
}
.form_group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background-image: url('../images/arrow.png');
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center right 15px;
} 
.button_main, 
.button_main_bg {
    background-color: var(--body-default-color);
    padding: 15px 35px;
    color: var(--body-white-color);
    border-radius: 50px;
    box-shadow: none;
    border: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.7px;
    transition: all .3s;
}
.button_main:hover, 
.button_main_bg:hover {
    transform: scale(1.1);
    color: var(--body-white-color);
}
section {
    padding: 70px 0;
    position: relative;
}
img {
    max-width: 100%;
}
.row_grid {
    gap: 30px 0;
}
.section_bg {
    background-color: var(--section-bg-color);
}
.section_white_bg {
    background-color: var(--body-white-color);
}
.row_grid_wrapp {
    gap: 60px 0;
}

.header_wrapp {
    background: var(--section-bg-color);
    position: sticky;
    top: 0;
    z-index: 999;
}
.header_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0 30px;
    padding: 0;
}
.mene_bar ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0 30px;
}
.mene_bar ul li {
    position: relative;
}
.mene_bar>ul>li>a {
    font-size: 16px;
    color: var(--body-default-color);
    letter-spacing: 0.7px;
    padding: 30px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
}

.header_right ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
}
.header_right ul li {
    position: relative;
}
.header_right ul>li>a {
    font-size: 16px;
    color: var(--body-default-color);
    letter-spacing: 0.7px;
    font-weight: 500;
}
.header_right ul li ul li a {
    color: var(--body-default-color);
    display: flex;
    align-items: center;
    justify-items: center;
    text-align: center;
    font-size: 34px;
}
.header_right ul li ul li span {
    width: 100%;
}
.mene_bar ul li.service_item .submenu {
    width: 440px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 15px;
}
.mene_bar ul li.service_item .submenu li a {
    flex-direction: column;
    padding: 0;
    border: none;
}
.mene_bar ul li.service_item .submenu li:hover a, 
.mene_bar ul li.service_item .submenu li.activer a {
    background-color: transparent;
}
.mene_bar ul li.service_item .submenu li a span {
    background-color: var(--section-bg-color);
    border-radius: 20px;
    padding: 10px;
    display: inline-block;
    margin-bottom: 10px;
}
.mene_bar ul li.service_item .submenu li a h6 {
    margin: 0;
    font-family: var(--body-font-family);
    font-weight: 600;
    font-size: 16px;
}
.mene_bar ul li.shop_menu {
    position: unset;
}
.mene_bar ul li.shop_menu .submenu {
    width: 100%;
}
.tab_menu_wrapp {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 0px;
}
.tab_menu_item_wrapp {
    border-left: 1px solid var(--body-default-color);
    border-right: 1px solid var(--body-default-color);
    padding: 30px;
}
.tab_menu_main ul {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 30px;
    gap: 20px;
}
.tab_menu_main ul .tab_menu_title {
    background-color: var(--section-bg-color);
    padding: 10px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}
.tab_menu_main ul .tab_menu_title.active, 
.tab_menu_main ul .tab_menu_title:hover {
    background-color: var(--body-default-color);
    color: var(--body-white-color);
}
.tab_menu_item_box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.tab_menu_listing h6 {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}
.tab_menu_listing ul {
    flex-direction: column;
    align-items: start;
}
.tab_menu_listing ul li {

}
.tab_menu_listing ul li a {
    width: 100%;
    padding: 10px 0 !important;
    border-bottom: none !important;
}
.tab_menu_listing ul li:hover>a {
    background-color: transparent !important;
}
.tab_menu_imgs ul {
    justify-content: center;
    height: 100%;
}
.header_right ul li a .item_value {
    width: 22px !important;
    height: 22px !important;
    font-size: 14px;
    background-color: var(--body-yellow-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 14px !important;
    position: absolute;
    right: -10px;
    top: -10px;
}


.main_wrapp {
    position: relative;
    overflow-x: hidden;
}
.hero_banner_wrapp {
    position: relative;
    background: var(--banner-bg-color) url(../images/dog_banner.webp) no-repeat 1180px center / contain;
    padding: 180px 0; 
}
.hero_banner_content {
    padding-right: 50px;
}
.hero_banner_content h1 {
    font-size: 84px;
    line-height: 1.1;
}
.hero_banner_content p {
    font-size: 28px;
    margin: 35px 0;
}
.hero_banner_imgs {
    position: relative;
    z-index: 99;
}
.banner_imgs1 {
    position: absolute;
    left: 60px;
    top: 137px;
}
.banner_imgs2 {
    position: absolute;
    top: 160px;
    right: 130px;
}
.free_shipping_wrapp {
    padding: 40px 0;
}
.free_shipping_order {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--body-default-color);
}
.free_shipping_order span {
    font-size: 40px;
    padding-right: 15px;
}
.about_sect_wrapp {
    padding-bottom: 0;
}
.about_content {
    padding-left: 100px;
}
.about_content h2 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 35px;
}
.about_sect_wrapp .about_content {
    text-align: center;
}
.about_content p {
    font-size: 16px;
    line-height: 28px;
}
.about_content .button_main {
    margin-top: 30px;
}
.main_heading {
    position: relative;
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 50px;
}
.main_heading h2 {
    margin: 0;
    font-size: 48px;
}
.main_heading .heading_icon {
    font-size: 80px;
    position: relative;
    left: -20px;
    top: -5px;
    color: var(--body-yellow-color);
}
.card_box {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--body-white-color);
    width: 100%;
    position: relative;
    overflow: hidden;
}
.card_title h2 a {
    font-size: 16px;
    font-family: var(--body-font-family);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card_imgs {
    margin-bottom: 20px;
}
.price_card {
    margin-bottom: 0;
}
.card_whitelist {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--section-bg-color);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card_cart {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 35px;
    right: 0;
    bottom: 0;
}
.card_cart a {
    position: absolute;
    left: auto;
    right: 10px;
    bottom: 5px;
    transition: transform .3s ease, opacity .3s ease, color .3s ease-out, border .3s ease-out, background .3s ease-out, box-shadow .3s ease-out !important;
    transform: translateY(50px);
    margin: 0;
    width: auto;
    font-size: 28px;
    color: var(--body-yellow-color);
}
.card_box:hover .card_cart a {
    transform: translateY(0);
}
.sale_offer_bg {
    background-color: var(--body-default-color);
    border-radius: 50px;
    padding: 5px 10px 5px 0;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 40px 0 70px;
    display: grid;
    grid-template-columns: 1.8fr 2fr 1fr;
    width: 100%;
    align-items: center;
}
.sale_offer_content {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
}
.sale_price_icon {
    position: relative;
    font-size: 50px;
    color: var(--body-yellow-color);    
    margin-left: 12px;
}
.sale_offer_text {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sale_offer_text h4 {
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    text-align: right;
    color: var(--body-white-color);
}
.sale_offer_text h2 {
    margin: 0;
    font-size: 74px;
    line-height: 60px;
    color: var(--body-yellow-color);
}
.sale_offer_text h6 {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
    color: var(--body-white-color);
}
.sale_offer_desicrs {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    color: var(--body-bg-color);
    font-size: 15px;
}
.sale_offer_desic h6 {
    margin: 0 0 5px;
    font-size: 20px;
    color: var(--body-white-color);
    font-family: var(--body-font-family);
}
.sale_offer_img img {
    max-width: 160px;
}
.sale_offer_btns {
    text-align: right;
}
.sale_offer_btns a {
    background-color: var(--body-yellow-color);
    color: var(--body-default-color);
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 50px;
}
.sale_offer_img {
    margin: -40px 0px -40px 0px;
}

.shop_animal_list ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
    justify-content: center;
}
.shop_animal_imgs img {
    width: 150px;
    position: relative;
    z-index: 9;
}
.shop_animal_imgs {
    margin-bottom: 20px;
    position: relative;
}
.shop_animal_imgs:after {
    content: '';
    background-color: var(--section-bg-color);
    width: 120px;
    height: 120px;
    position: absolute;
    border-radius: 40px;
    left: 15px;
    right: 0;
    bottom: -5px;
}
.serviceSlider .card_box img {
    border-radius: 10px;
}
.serviceSlider .card_box h4 {
    margin: 15px 0 10px;
    font-size: 18px;
}
.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    margin: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.owl-theme .owl-nav button {
    cursor: pointer;
    pointer-events: all;
    position: absolute;
    height: 40px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--body-white-color) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 50px !important;
    opacity: 1;
    transition: opacity .15s ease;
    display: flex;
    flex-flow: column nowrap;
    align-content: center;
    justify-content: center;
    color: var(--body-default-color) !important;
}
.owl-theme .owl-nav button.owl-prev {
    left: -25px;
}
.owl-theme .owl-nav button.owl-next {
    right: -25px !important;
    left: unset !important;
}
.faq_wrapp .main_heading  {
    justify-content: start;
}
.faq_wrapp {
    padding-right: 50px;
}
.faq_wrapp .accordion_wrapp {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.faq_wrapp .accordion-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
    width: 100%;
}
.faq_wrapp .accordion-item:last-child {
    border-bottom: none;
}
.faq_wrapp .accordion-item .accordion-header {
    font-size: 20px;
    font-family: var(--body-font-family);
    cursor: pointer;
    position: relative;
    padding-right: 25px;
}
.faq_wrapp .accordion-item .accordion-body {
    margin-top: 15px;
    font-size: 15px;
    line-height: 24px;
}
.faq_wrapp .accordion-item .accordion-header:after {
    content: '\e906';
    font-family: 'theme-icons' !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 0;
    top: 13px;
    font-size: 16px;
    color: var(--body-yellow-color);
}
.accordion_wrapp .accordion-item .accordion-header.collapsed:after {
    content: '\e906';
    transform: rotate(90deg);
}
.blog_imgs a img {
    border-radius: 15px;
}
.blog_content {
    margin-top: 20px;
}
.blog_content h6 {
    font-family: var(--body-font-family);
    margin-bottom: 10px;
}
.blog_content h6 a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog_content a {
    color: var(--body-default-color);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    margin-top: 15px;
}
.blog_content a span {
    position: relative;
    top: -3px;
    left: -5px;
    color: var(--body-text-color);
}
.footer_wrapp {
    background-color: var(--section-bg-color);
    padding: 50px 0 30px;
    position: relative;
}

.footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--body-default-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
    flex-wrap: wrap;
}
.social_media ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.social_media ul li a {
    font-size: 22px;
}
.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 15px; 
}
.footer_info p {
    line-height: 26px;
}
.footer_info p a {
    /* color: var(--body-yellow-color); */
    font-weight: 700;
}
.footer_menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
    flex-wrap: wrap;
}
.footer_started {
    text-align: center;
    margin-top: 70px;
}
.footer_imgs {
    position: absolute;
    bottom: 0;
}
.started_main {
    max-width: 800px;
    margin: 40px auto 60px;
    text-align: center;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr;
}
.footer_email, 
.footer_phone {
    font-size: 22px;
    font-weight: 700;
}
.footer_copyright {
    text-align: center;
}
.footer_copyright ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.inner_banner_wrapp {
    background: var(--header-bg-color);
}
.inner_banner_heading {
    text-align: center;
}
.breadcrumb_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px 15px;
    flex-wrap: wrap;
}
.shop_main {
    display: grid;
    grid-template-columns: 0.8fr 3fr;
    gap:  40px;
}

.shop_ordering {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.shop_ordering p {
    margin: 0;
}
.shop_ordering .form_group {
    margin: 0;
}
.shop_ordering .form_group select {
    min-width: 230px;
    width: 100%;
}
.filter_box {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}
.filter_box h3 {
    margin-bottom: 0;
}


.price_range .range_value {
    margin: 0 0 15px;
}
.price_range .range_value input {
    background:transparent;
    color: var(--body-text-color);
    font-size: 16px;;
    box-shadow: none;
    border: none;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
.price_range .price_bar {
    border: none;
    background-color: var(--banner-bg-color);
    height: 3px;
    position: relative;
}
.price_range .price_bar .ui-slider-range {
    background-color: var(--body-default-color);
    position: absolute;
    top: 0;
    height: 3px;
}
.price_range .price_bar .ui-slider-handle {
    border: none;
    border-radius: 25px;
    background: #fff;
    border: 2px solid var(--body-default-color);
    height: 17px;
    width: 17px;
    top: -0.52em;
    cursor: pointer;
    position: absolute;
    display: inline-block;
    /* left: -1% !important; */
}
/* .price_range .price_bar .ui-slider-handle:last-child {
    right: -1% !important;
    left: unset !important;
} */
.filter_listing {
    display: flex;
    flex-direction: column;
    gap: 20px 15px;
}
.checkbox_group {
    display: flex;
    align-items: center;
    position: relative;
}
.checkbox_group input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    width: 24px;
    height: 24px;
    top: 0;
}
.checkbox_group label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
}
.checkbox_group input:checked ~ label:before {
    content: '✔︎';
    left: 5px;
    top: 0px;
    position: absolute;
    display: block;
    z-index: 2;
    font-size: 18px;
    color: var(--body-white-color);
}   
.checkbox_group label:after {
    content: '';
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
}
.checkbox_group input:checked ~ label:after {
    background-color: var(--body-default-color);
    border: 2px solid transparent;
}
.pagination_wrapp {
    margin-top: 30px;
}
.page_numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.page_numbers li .page_items {
    padding: 10px 15px;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
}
.page_numbers li .page_items.current, 
.page_numbers li .page_items:hover {
    background-color: var(--banner-bg-color);
}

/* .product_single_slider {
    background-color: var(--body-white-color);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
} */


.single_slider_nav {
    margin: 0 !important;
}
.single_slider_nav .slider_nav_item {
    padding: 10px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--body-white-color);
    margin: 10px;
}
.qtybutton_main {
    position: relative;
    font-size: 14px;
    border: 1px solid var(--border-color) !important;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    text-align: center;
    gap: 10px;
    border-radius: 10px;
}
.qtybutton_main input {
    width: 100% !important;
    border: none !important;
    text-align: center !important;
    outline: none !important;
    padding: 0;
    background-color: transparent !important;
}
.qtybutton_main .qtybutton {
    position: relative;
    text-align: center;
    width: 40px;
    height: 36px;
    display: inline-block;
    cursor: pointer;
    font-size: 0;
}
.qtybutton_main .dec {
    border-right: 1px solid var(--border-color);
}
.qtybutton_main .inc {
    border-left: 1px solid var(--border-color);
}
.qtybutton_main .qtybutton:before,
.qtybutton_main .inc.qtybutton:after {
    content: '';
    width: 14px;
    height: 2px;
    background-color: var(--body-default-color);
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.qtybutton_main .inc.qtybutton:after {
    transform: rotate(90deg);
}
.product_brns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 30px;
    margin-top: 15px;
}
.product_brns .button_main {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
}
.product_brns .whitelist {
    padding: 0;
    border-radius: 5px;
    font-size: 38px;
    color: var(--body-default-color);
    line-height: 0;
}
.product_single h2 {
    line-height: 1.1;
    margin-bottom: 25px;
}
.product_info ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 30px;
    font-size: 15px;
}
.product_info ul li span {
    font-weight: 700;
}
.product_weight h6 {
    margin: 0;
    font-size: 16px;
}
.product_price {
    font-size: 30px;
    color: var(--header-text-color);
    font-family: var(--heading-font-family);
    margin: 25px 0;
}
.product_discrt {
    margin: 15px 0 35px;
}
.product_discrt h6 {
    margin-bottom: 10px;
}
.product_delivery_main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 30px;
    align-items: center;
    text-align: center;
}
.delivery_icon {
    font-size: 36px;
    margin-bottom: 10px;
}
.about_imgs img {
    border-radius: 30px;
}
.about_sect_wrapp .about_imgs img {
    border-radius: 0px;
}
.feature_imgs {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--body-white-color);
    width: 100%;
    position: relative;
    overflow: hidden;
}
.feature_imgs img {
    border-radius: 15px;
    object-fit: fill;
    height: 40vh;
    width: 100%;
}
.blog_right_part, 
.blog_details_img {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--body-white-color);
    width: 100%;
    position: relative;
}
.blog_right_part img {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.blog_content h5 a {
    font-size: 22px;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card_blog_box .blog_content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog_details_wrapp {
    max-width: 900px;
    margin: 0 auto;
}
.blog_details_header {
    text-align: center;
    margin-bottom: 35px;
}
.blog_socail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 25px;
}
.blog_socail li a {
    font-size: 22px;
}
.blog_details_img  img {
    height: 520px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.blog_details_content {
    margin-top: 30px;
}
.blog_details_content p .blog_letter {
    float: left;
    margin-right: 15px;
    text-align: center;
    line-height: 1;
    font-size: 50px;
    color: var(--header-text-color);
    font-family: var(--heading-font-family);
}
.blog_details_content p {
    margin-bottom: 25px;
    line-height: 24px;
}
.blog_note {
    padding: 80px 30px 50px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--body-white-color);
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}
.blog_note h2 {
    position: relative;
    margin: 0;
    font-size: 30px;
}
.blog_note h2 span {
    font-size: 80px;
    position: absolute;
    right: 15px;
    top: -45px;
    color: var(--body-yellow-color);
}
.blog_note a {
    margin: 30px auto 0;
    font-size: 26px;
    width: 40px;
    height: 40px;
    background-color: var(--body-default-color);
    color: var(--body-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    text-align: center;
}
.blog_details_tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 30px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-top: 35px;
    margin-bottom: 25px;
}
.blog_details_tags h6 {
    margin: 0;
}
.blog_details_tags ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 15px;
}
.contact_wrapp {
    max-width: 900px;
    margin: 0 auto;
}
.contact_info {
    text-align: center;
}
.contact_info_card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 0;
    margin-top: 35px;
    margin-bottom: 50px;
}
.contact_info_box {
    text-align: left;
}
.contact_info_left {
    border-right: 1px solid var(--body-text-color);
    text-align: right !important;
}
.contact_info_box ul {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 15px 0;
    flex-wrap: wrap;
}
.contact_info_box ul li {
    border-right: 1px solid var(--body-text-color);
    padding: 0 40px;
    text-align: center;
}
.contact_info_box ul li:last-child {
    border-right: none;
}
.form_group .button_main {
    transform: none;
}
.contact_heading {
    position: relative;
}
.contact_heading span {
    font-size: 80px;
    position: absolute;
    right: 0;
    top: -25px;
    color: var(--body-yellow-color);
    transform: rotate(185deg);
}
.faq_main h3 {
    margin-bottom: 30px;
}

.card_empty {
    text-align: center;
}
.card_empty span {
    margin-bottom: 30px;
    display: inline-block;
}
.card_empty .button_main {
    margin-top: 15px;
}
.wishlist_main table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.wishlist_main table tbody tr, 
.cart_item table tbody tr {
    border-bottom: 1px solid var(--border-color);
}
.wishlist_main table tbody tr td, 
.cart_item table tbody tr td {
    padding: 30px 15px;
}
.wishlist_main table tbody tr td .item_imgs a {
    width: 80px;
}
.wishlist_main table tbody tr td .button_main {
    white-space: nowrap;
    padding: 10px 35px;
}
.wishlist_main table tbody tr td .item_details h6 a, 
.cart_item table tbody tr td .item_details h6 a { 
    font-weight: 400;
    font-family: var(--body-font-family);
    font-size: 16px;
}
.wishlist_main table tbody tr td .item_details .item_price {
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.cart_item h3 {
    margin-bottom: 35px;
}
.cart_item table {
    width: 100%;
}
.cart_item table tbody .item_imgs a {
    width: 90px;
}
.cart_item table tbody tr td .item_details h6 {
    margin: 0;
}
.cart_item table tbody tr td .sub_price, 
.cart_item table tbody tr td .total_price {
    font-size: 18px;
}
.subtotal {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
} 
.subtotal ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.subtotal ul li {
    font-size: 16px;
    font-weight: 500;
}
.shipping_item .filter_listing {
    gap: 10px !important;
    margin-bottom: 15px;
}
.calculateshipping {
    font-size: 16px;
    color: var(--body-default-color);
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}
.calculateshipping_bg .form_group {
    margin-top: 0;
}
.subtotal_footer {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 25px;
}
.cartbtns .button_main {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.cartbtns .button_main:hover {
    transform: none;
}
.account_wrapp {
    max-width: 500px;
    margin: 0 auto;
}
.login_tabs {
    background-color: var(--body-white-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding: 5px;
    border-radius: 15px;
}
.login_tabs .login_menu {
    font-size: 16px;
    text-align: center;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
}
.login_tabs .login_menu.active {
    background-color: var(--section-bg-color);
}
.account_main_bg {
    margin-top: 25px;
}
.account_header {
    text-align: center;
    margin-bottom: 25px;
}
.account_header h5 {
    margin-bottom: 10px;
}
.account_header p {
    font-size: 16px;
}
.form_group label {
    margin-bottom: 10px;
}
.account_footer {
    font-size: 16px;
    text-align: center;
    width: 100%;
    margin-top: 14px;
    position: relative;
}
.account_box {
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 25px;
}
.cart_right_sidebar .card_box {
    background-color: transparent;
}
.order_items table {
    width: 100%;
}
.order_items {
    margin-bottom: 20px;
}
.order_items table tbody tr {
    border-bottom: 1px solid var(--border-color);
}
.order_items table tbody tr td {
    padding: 20px 10px;
}
.cart_right_sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 30px;
}
.cart_right_sidebar .card_box .form_group {
    display: grid;
    grid-template-columns: 1fr 120px;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.couponcode_box p {
    margin: 0;
}
.couponcode_box p .couponcode {
    cursor: pointer;
    color: var(--body-default-color);
}
.couponcode_card {
    font-size: 12px;
}
.radio_group input {
    width: 18px;
    height: 18px;
}
.radio_group label {
    font-size: 15px;
}
.radio_group label::after {
    width: 18px;
    height: 18px;
    border-radius: 100%;
}
.radio_group label::before {
    content: '' !important;
    width: 10px;
    height: 10px;
    background-color: var(--body-white-color);
    border-radius: 50%;
    left: 4px !important;
    top: 4px !important;
}
.payment_wrapp li .bank_transfer_deatils {
    margin-top: 10px;
    background-color: var(--section-bg-color);
    padding: 10px;
    font-size: 13px;
    border-radius: 5px;
}
.cart_right_sidebar .card_box .payment_wrapp {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.checkout_login {
    display: grid;
    grid-template-columns: 1fr 1fr 150px;
    gap: 25px;
    align-items: end;
}
.checkout_login .form_group {
    margin: 10px 0px;
}
.checkout_login_main p .checkoutlogin {
    cursor: pointer;
    color: var(--body-default-color);
    font-weight: 500;
}
.checkout_login_main>p {
    margin: 0;
}
.checkout_login_box .checkbox_group.form_group {
    margin-bottom: 0;
}
.checkout_login_box {
    margin-top: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
}
.billing_details_wrapp {
    margin-top: 50px;
}
.shipping_detail_wrapp {
    margin-top: 50px;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 10px;
}
.inner_pages_wrapp {
    max-width: 1000px;
    margin: 0 auto;
}
.inner_pages_card {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}
.inner_pages_wrapp .inner_pages_card:last-child {
    padding-bottom: 0px;
    border-bottom: none;
    margin-bottom: 0px;
}

.booking_wrapp {
    max-width: 800px;
    margin: 0 auto;
}
.booking_indicators_tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px 40px;
}
.booking_indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 15px;
    font-weight: 600;
    font-size: 16px;
}
.booking_indicators span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid var(--border-color);
}
.booking_indicators_tabs .booking_indicators:first-child {
    border-right: 2px solid var(--banner-bg-color);
    padding-right: 40px;
}
.booking_trail {
    background-color: var(--section-bg-color);
    padding: 30px 15px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
}
.pet_step ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px 30px;
    flex-wrap: wrap;
}
.pet_step ul li .checkbox_group.radio_group label {
    padding-left: 25px !important;
}
.pet_step {
    margin-bottom: 30px;
}
.pet_step h6 span {
    color: var(--body-yellow-color);
}
.booking_indicators.active {
    color: var(--body-default-color);
}
.booking_indicators.active span {
    background-color: var(--body-default-color);
    color: var(--body-white-color);
}
.previousbtns span {
    transform: rotate(180deg);
    display: inline-block;
}
.booking_step_wrapp .form_group_btns {
    text-align: center;
}
.booking_step_from {
    max-width: 600px;
    margin: 0 auto; 
}
.search_main {
    max-width: 700px;
    margin: 0 auto;
}
.search_main .form_group {
    position: relative;
}
.search_main .form_group span {
    position: absolute;
    font-size: 20px;
    top: 10px;
    left: 15px;
}
.search_main .form_group input {
    padding-left: 40px;
}
.search_wrapp {
    background-color: var(--section-bg-color);
}
.filter_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 15px;
}
.item_details {
    width: 300px;
    max-width: 100%;
}
.cart_right_sidebar .card_box .calculateshipping_bg .form_group {
    display: flex;
}


.service_list_time {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#ui-datepicker-div {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: var(--body-white-color);
    overflow: hidden;
    width: 250px;
}
.ui-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}
.ui-datepicker-header .ui-corner-all {
    position: absolute;
    width: 18px;
    height: 18px;
    cursor: pointer;
    top: 0;
}
.ui-datepicker-header .ui-corner-all .ui-icon {
    font-size: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
}
.ui-datepicker-header .ui-datepicker-prev.ui-corner-all {
    left: 0;
}
.ui-datepicker-header .ui-datepicker-prev.ui-corner-all .ui-icon:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
    transform: rotate(90deg);
    top: 1px;
}
.ui-datepicker-header .ui-datepicker-next.ui-corner-all {
    right: 0;
}
.ui-datepicker-header .ui-datepicker-next.ui-corner-all .ui-icon:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
    transform: rotate(-90deg);
    top: 1px;
}
.ui-datepicker-calendar {
    width: 100%;
}
.ui-datepicker-calendar thead tr th, .ui-datepicker-calendar tbody tr td {
    padding: 10px 5px;
    text-align: center;
}
.ui-datepicker-calendar tbody tr td .ui-state-default {
    color: #a9a9a9;
}
.ui-datepicker-calendar tbody tr td.ui-datepicker-today .ui-state-default {
    color: var(--header-text-color);
}
.ui-datepicker-calendar tbody tr td.ui-datepicker-current-day .ui-state-default {
    color: var(--body-yellow-color);
}
.benefits_list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.benefits_list li {
    display: grid;
    grid-template-columns: 25px 1fr;
    align-items: center;
}
.bard_logo a img {
    width: 140px;
}
.footer_logo a img {
    width: 160px;
}