/*
Theme Name: Waggy
Theme URI: https://templatesjungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: Waggy is specially designed product packaged for eCommerce pet store websites.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Floating & Alignment
  2.3 Forms
  2.4 Lists
  2.5 Code
  2.6 Tables
  2.7 Spacing
  2.8 Utilities
  2.9 Misc
    - Row Border
    - Zoom Effect
  2.10 Buttons
    - Button Sizes
    - Button Shapes
    - Button Color Scheme
    - Button Aligns
  2.11 Section
    - Hero Section
    - Section Title
    - Section Paddings
    - Section Margins
    - Section Bg Colors
    - Content Colors
    - Content Borders

3. EXTENDED TYPOGRAPHY
  3.1 Blockquote / Pullquote
  3.2 Text Highlights

4. CONTENT ELEMENTS
  4.1 Tabs
  4.2 Accordions
  4.3 Brand Carousel
  4.4 Category Carousel

5. BLOG STYLES
  5.1 Blog Single Post
  5.2 About Author
  5.3 Comments List
  5.4 Comments Form3

6. SITE STRUCTURE
  6.1 Header
    - Header Menu
    - Nav Sidebar
  6.2 Billboard
  6.3 About Us Section
  6.4 Video Section
  6.5 Selling Products Section
  6.6 Quotation Section
  6.7 Latest Blogs Section
  6.8 Newsletter Section
  6.9 Instagram Section
  6.10 Footer
    - Footer Top
    - Footer Bottom

7. OTHER PAGES
  7.1 Product detail
  7.2 Shop page

    
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  /* widths for rows and containers
     */
  --header-height: 160px;
  --header-height-min: 80px;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

/* Theme Colors */
:root {
  --accent-color: #DEAD6F;
  --dark-color: #222222;
  --light-dark-color: #727272;
  --light-color: #fff;
  --grey-color: #dbdbdb;
  --light-grey-color: #fafafa;
  --primary-color: #6995B1;
  --light-primary-color: #eef1f3;
}

/* Fonts */
:root {
  --body-font: 'Chilanka', cursive;
  --heading-font: 'Chilanka', cursive;
  --secondary-font: 'Montserrat', sans-serif;
}


body {
  --bs-link-color: #333;
  --bs-link-hover-color: #333;

  --bs-link-color-rgb: 40, 40, 40;
  --bs-link-hover-color-rgb: 0, 0, 0;

  /* --bs-link-color: #DEAD6F;
  --bs-link-hover-color: #DEAD6F; */

  --bs-light-rgb: 248, 248, 248;

  --bs-font-sans-serif: 'Chilanka', cursive;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 2;
  --bs-body-color: #41403E;

  --bs-primary: #DEAD6F;
  --bs-primary-rgb: 222, 173, 111;

  --bs-primary-bg-subtle: #FFF9EB;
  --bs-border-color: #F7F7F7;

  --bs-secondary-rgb: 230, 243, 251;

  --bs-success-rgb: 238, 245, 228;
  --bs-danger-rgb: 249, 235, 231;
  --bs-warning-rgb: 255, 249, 235;
  --bs-info-rgb: 230, 243, 250;
}

.btn-primary {
  padding: 1.2rem 3rem;
  --bs-btn-color: #fff;
  --bs-btn-bg: #DEAD6F;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e9b775;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #DEAD6F;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #d3d7dd;
  --bs-btn-disabled-border-color: transparent;
}

.btn-outline-primary {
  transition: all 0.3s ease-in;
  padding: 1.2rem 3rem;
  letter-spacing: 0.02375rem;
  --bs-btn-color: #DEAD6F;
  --bs-btn-border-color: #DEAD6F;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #DEAD6F;
  --bs-btn-hover-border-color: #DEAD6F;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #DEAD6F;
  --bs-btn-active-border-color: #DEAD6F;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #DEAD6F;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #DEAD6F;
  --bs-gradient: none;
}

.btn-outline-dark {
  transition: all 0.3s ease-in;
  padding: 1.2rem 3rem;
  letter-spacing: 0.02375rem;
  text-transform: uppercase;
  --bs-btn-color: #41403E;
  --bs-btn-border-color: #41403E;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #41403E;
  --bs-btn-hover-border-color: #41403E;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #41403E;
  --bs-btn-active-border-color: #41403E;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #41403E;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #41403E;
  --bs-gradient: none;
}

.btn-dark {
  padding: 1.2rem 3rem;
  font-size: 1.1875rem;
  text-transform: uppercase;
  --bs-btn-color: #fff;
  --bs-btn-bg: #41403E;
  --bs-btn-border-color: #41403E;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #363533;
  --bs-btn-hover-border-color: #363533;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #41403E;
  --bs-btn-active-border-color: #41403E;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #41403E;
  --bs-btn-disabled-border-color: #41403E;
}

@font-face {
    font-family: 'Degular Display';
    src: url('path/to/degular-display.woff2') format('woff2'),
         url('path/to/degular-display.woff') format('woff'),
         url('path/to/degular-display.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

 @font-face {
      font-family: 'Gt America LCG Standard';
      src: url('fonts/gt-america-lcg-standard.woff2') format('woff2'),
           url('fonts/gt-america-lcg-standard.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }

body {
  letter-spacing: 0.01625rem;
  font-family: 'Gt America LCG Standard', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--bs-body-color);
  font-weight: 400;
  text-transform: capitalize;
  font-family: "degular-display", sans-serif;
}

a {
  text-decoration: none;
}

.breadcrumb.text-white {
  --bs-breadcrumb-divider-color: #fff;
  --bs-breadcrumb-item-active-color: var(--bs-primary);
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--bs-primary);
}

.secondary-font {
  font-family: var(--secondary-font);
  font-weight: 300;
}

/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/
/* Preloader */
.preloader-wrapper {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
  background: #fff;
}

.preloader-wrapper .preloader {
  margin: 20% auto 0;
  transform: translateZ(0);
}

.preloader:before,
.preloader:after {
  content: '';
  position: absolute;
  top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: animation 1.2s infinite ease-in-out;
}

.preloader {
  animation-delay: -0.16s;
}

.preloader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.preloader:after {
  left: 3.5em;
}

@keyframes animation {

  0%,
  80%,
  100% {
    box-shadow: 0 2em 0 -1em var(--accent-color);
  }

  40% {
    box-shadow: 0 2em 0 0 var(--accent-color);
  }
}


/* search bar style  */
.search-bar {
  border: 1px solid #EAEAEA;
}

.search-bar ::placeholder {
  font-family: var(--secondary-font);
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none;
}


/* nav bar style  */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link:focus,
.nav-link:hover {
  color: var(--accent-color);
}

.nav-link {
    font-family: 'Inter';
    font-size: 15px;
    color: #000;
}

.dropdown-menu {
    transition: .2s;
    box-shadow: 0 8px 20px rgba(61, 110, 168, .2);
}

.dropdown-menu.show {
    display: block;
    margin-top: 8px;
    border-radius: 0px;
    border: 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding-top: 0px!important;
    transition: .2s;
    box-shadow: 0 8px 20px rgba(61, 110, 168, .2);
}

/* category style */
iconify-icon.category-icon {
  color: #DEAD6F99;
  font-size: 100px;
  transition: all 0.3s ease-in;

}

a.categories-item:hover iconify-icon.category-icon {
  color: #DEAD6F;
}


/* banner style */
.swiper-pagination-bullet {
  border: 1px solid var(--bs-body-color);
  background-color: transparent;
  opacity: 1;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px));
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--bs-body-color);
  background: var(--bs-body-color);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
}



/* pet clothing */
.card {
  --bs-card-inner-border-radius: none;
  --bs-card-bg: transparent;
  background-color: transparent;
  border: none;
}

a.btn-cart {
  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.20);
}

a.btn-wishlist {

  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.20);
}


/* pet foodies style  */
button.filter-button {
  letter-spacing: 0.02125rem;
  border: none;
  border: 2px solid #6b8839;
  background: transparent;
  font-size: 18px;
  transition: all 0.3s ease-in;
}

button.filter-button.active,
button.filter-button:hover {
  background: #6b8839;
    color: #fff;
    border: 2px solid #6b8839;
}

/* testimonial style  */
.testimonial-content {
  color: #908F8D;
}

iconify-icon.quote-icon {
  color: #F7EEE4;
  font-size: 14rem;
}


/* register form  */
.form-control {
  color: #908F8D;
  line-height: normal;
  letter-spacing: 0.02125rem;
  text-transform: capitalize;
  border-radius: 0.25rem;
  border: 1px solid rgba(65, 64, 62, 0.20);
  background: #FFF;
  display: flex;
  padding: 1.25rem 0rem 1.25rem 1.25rem;
  align-items: center;
  gap: 0.375rem;
  align-self: stretch;
}

.form-control:focus {
  border-color: #41403E;
}


/* blog style */
.blog-paragraph {
  color: #908F8D;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  font-family: var(--secondary-font);
}

.blog-read {
  color: #908F8D;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

a.blog-read {
  border-bottom: 3px solid #D9D9D8;
  transition: all 0.3s ease-in;
}

a.blog-read:hover {
  border-bottom: 3px solid #8a8a8a;
}


/* services style  */
.service-icon {
  font-size: 30px;
  border-radius: 3.125rem;
  border: 1px solid #D9D9D8;
  padding: 1.25rem;
}


/* insta style  */
.instagram-item:hover:before,
.instagram-item:hover .icon-overlay {
  opacity: 1;
  cursor: pointer;
}

.icon-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  align-items: center;
  font-size: 3rem;
  cursor: pointer;
  opacity: 0;
  -moz-transition: 0.8s ease;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}


/* footer style */
iconify-icon.social-icon {
  color: #CACACA;
  font-size: 1.125rem;
  padding: 0.75rem;
  border-radius: 4.375rem;
  border: 1px solid #D9D9D8;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
  transition: all 0.5s ease;
}

li.social:hover iconify-icon.social-icon {
  color: #FFF;
  border: 1px solid #DEAD6F;
  background: #DEAD6F;
}

iconify-icon.send-icon {
  cursor: pointer;
  font-size: 1.125rem;
  padding: 0.75rem;
  border-radius: 4.375rem;
  color: #FFF;
  border: 1px solid #DEAD6F;
  background: #DEAD6F;
}


@media screen and (max-width: 991px) {

  /* offcanvas menu */
  .offcanvas-body .nav-item {
    font-weight: 700;
    border-bottom: 1px solid #d1d1d1;
  }

  .offcanvas-body .filter-categories {
    width: 100%;
    margin-bottom: 20px !important;
    border: 1px solid #d1d1d1 !important;
    padding: 14px;
    border-radius: 8px;
  }

  /* dropdown-menu */
  .dropdown-menu {
    padding: 0;
    border: none;
    line-height: 1.4;
    font-size: 0.9em;
  }

  .dropdown-menu a {
    padding-left: 0;
  }

  .dropdown-toggle::after {
    position: absolute;
    right: 0;
    top: 21px;
  }
}


/*--------------------------------------------------------------
faqs section style start
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
  color: var(--body-text-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion {
  --bs-accordion-color: var(--light-text-color);
  --bs-accordion-bg: none;
  --bs-accordion-btn-color: var(--body-text-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url('https://api.iconify.design/eva/arrow-down-fill.svg?color=%2341403e');

}

.accordion-button::after {
  background-image: url('https://api.iconify.design/eva/arrow-down-fill.svg?color=%2341403e');
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  box-shadow: none;
}

/*--------------------------------------------------------------
Account section style start
--------------------------------------------------------------*/
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
Blog section style start
--------------------------------------------------------------*/
/* ------ Pagination ------*/
.pagination .page-numbers {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  color: var(--bs-body-color);
  padding: 0 10px;
  line-height: 1.4;
  transition: 0.9s all;
  border-radius: 8px;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  color: var(--accent-color);
}

iconify-icon.pagination-arrow {
  color: var(--bs-body-color);
  transition: 0.9s all;
}

iconify-icon.pagination-arrow:hover {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
Single Product section style start
--------------------------------------------------------------*/
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--light-color);
  background-color: var(--accent-color);
}


/*----------------------jubaer--cesss-----------*/
.p-t-b{
  padding: 80px 0px;
}

 .slider-content{
    position: absolute;
    top: 80px;
        left: 0;
    right: 0;
}

.welcome-img{
  position: relative;
}

.welcome-img-1{
    border: 3px solid #000;
    width: 70%;
    padding: 5px;
    border-radius: 10px;
}

.welcome-img-1 img{
  width: 100%;
   border-radius: 5px;
}

.welcome-img-2 {
    border: 3px solid #000;
    width: 70%;
    padding: 5px;
    position: absolute;
    top: 120px;
    right: 0px;
    border-radius: 10px;
}

.welcome-img-2 img{
  width: 100%;
  border-radius: 5px;
}

#foodies{
    background: rgba(249, 245, 237, 1);
}

.product-title h3 {
    font-size: 16px;
    font-family: 'Inter';
    font-weight: bold;
    color: #876d32;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
        height: 38px;
}

.product-img{
    border: 3.5px solid rgba(204, 172, 106, 1);
    padding: 10px;
}

.pro-card a img{
  border-radius: 0px!important;
}

.cart-btn a{
    background: rgba(107, 136, 57, 1);
    color: #fff;
    padding: 1px 10px;
    border-radius: 5px;
    float: right;
    font-size: 14px;
    font-weight: normal;
    font-family: 'Inter';
}

.current-price{
    font-size: 20px;
    font-weight: 600;
    color: rgba(107, 136, 57, 1);
    margin-right: 10px;
    font-family: 'Inter';
}

.discount{
    color: rgba(135, 137, 131, 1);
    font-size: 14px;
    line-height: 36px;
    text-decoration: line-through;
    font-family: 'Inter';
}

.product-filter-title h3{
    margin-bottom: 30px;
        font-size: 32px;
}

.filter-button-sec{
    margin-bottom: 20px;
}

.h-portfolio-img img{
  width: 100%;
}


.portfolio-item a{
  position: relative;
}
.h-portfolio-text{
    padding: 0px 10px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0;
    color: #fff;
    font-size: 20px;
}

.portfolio-arrow{
  float: right;
  font-size: 20px;
}



.packages-sec {
    background: rgba(249, 245, 237, 1);
}

.package-item{
    background: #fff;
    padding: 20px;
}

.package-card-header p{
    margin: 0px;
    line-height: 36px;
    font-size: 18px;
}

.package-card-header h3{
    color: rgba(107, 136, 57, 1);
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 25px;
}
.package-card-cont ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.package-card-cont ul li i{
    color: #ccac6a;
    font-weight: bold;
    margin-right: 5px;
}

.package-item a{
    display: block;
    background: rgba(107, 136, 57, 1);
    border-radius: 3px;
    text-align: center;
    color: #fff;
    margin-top: 20px;
    padding: 4px 0px;
    font-family: 'Inter';
}

.view-all-pack{
    background: rgba(107, 136, 57, 1);
    padding: 20px;
}

.view-all-cont a{
    border: 1.5px solid #fff;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 5px;
    float: right;
    color: #fff;
    font-family: 'Inter';
}

.view-all-cont a:hover{
    background: #fff;
    color: rgba(107, 136, 57, 1);
    
}

.view-all-cont p {
    float: left;
    margin: 0px;
    font-size: 20px;
    color: #fff;
}

.welcome-cont a{
    background: #6b8839;
    color: #fff;
    display: inline-block;
    padding: 4px 20px;
    border-radius: 4px;
    font-family: 'Inter';
    margin-top: 20px;
}

.h-portfolio-text span{
  font-family: 'Inter';
}

.package-card-cont ul li{
 font-family: 'Inter';
}

.lets-do-img img{
    width: 100%;
}


.text-middle{
  justify-content: center;
  align-items: center;
      padding: 0px 80px;
}

.lets-do-cont{
    padding-left: 50px;
    padding-right: 50px;
}

.lets-do-cont a {
    background: #6b8839;
    color: #fff;
    display: inline-block;
    padding: 4px 20px;
    border-radius: 4px;
    font-family: 'Inter';
    margin-top: 20px;
}

.art-commission-cont{
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
}

.art-commission-cont a {
    background: #6b8839;
    color: #fff;
    display: inline-block;
    padding: 4px 20px;
    border-radius: 4px;
    margin-top: 20px;
}



.slider-1 {
    display: flex;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px;
}
.item-1 {
    animation: animate-left 25s linear infinite;
}
.item-1 img {
    min-width: 250px;
    padding: 0 10px;
}
.slider-1:hover .item-1 {
    animation-play-state: paused;
}

.slider-2 {
    display: flex;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    
}
.item-2 {
    animation: animate-right 25s linear infinite;
}
.item-2 img {
    min-width: 250px;
    padding: 0 10px;
}
.slider-2:hover .item-2 {
    animation-play-state: paused;
}

@keyframes animate-left {
    0% {
        transform: translate3d(-1800px, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes animate-right {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-1800px, 0, 0);
    }
}


footer{
  background: rgba(0, 0, 0, 1);
}

.footer-menu h3{
  color: #fff;
    font-family: "degular-display", sans-serif;
}

.footer-menu ul li a{
  color: #fff;
  font-family: 'Inter';
}

.footer-menu ul li{
  color: #fff;
}


.footer-menu p{
    color: #fff;
    font-family: 'Inter';
    line-height: 26px;
}


#footer-bottom{
    background: rgba(19, 19, 19, 1);
    border-top: 1px solid #fff;
}

.social a{
    color: #fff;
    font-size: 25px;
}
.copyright p{
  color: #fff;
  font-family: 'Inter';
}

.search-bar{
    border: 1.5px solid #6b8839 !important;
    height: 40px;
    margin-top: 10px;
    padding: 0px 10px !important;
}

.search-input{
    
    padding: 8px 0px;
}
.menu-list li{
    padding-top: 8px;
    font-family: 'Inter';
}

.welcome-sec{
    margin-bottom: 80px;
}


.align-items-middle{
    padding-top: 20px;
}

.sec-header{
    margin-bottom: 40px;
}

header{
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}



.picZoomer{
  position: relative;
    /*margin-left: 40px;
    padding: 15px;*/
}
.picZoomer-pic-wp{
  position: relative;
  overflow: hidden;
    text-align: center;
}
.picZoomer-pic-wp:hover .picZoomer-cursor{
  display: block;
}
.picZoomer-zoom-pic{
  position: absolute;
  top: 0;
  left: 0;
}
.picZoomer-pic{
  /*width: 100%;
  height: 100%;*/
}
.picZoomer-zoom-wp{
  display: none;
  position: absolute;
  z-index: 999;
  overflow: hidden;
    border:1px solid #eee;
    height: 460px;
    margin-top: -19px;
}
.picZoomer-cursor{
  display: none;
  cursor: crosshair;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #eee;
  background-color: rgba(0,0,0,.1);
}
.picZoomCursor-ico{
  width: 23px;
  height: 23px;
  position: absolute;
  top: 40px;
  left: 40px;
  background: url(images/zoom-ico.png) left top no-repeat;
}

.my_img {
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    right: 0px;
}
.piclist li{
    display: inline-block;
    width: 90px;
    height: 114px;
    border: 1px solid #eee;
}
.piclist li img{
    width: 97%;
    height: auto;
}

/* custom style */
.picZoomer-pic-wp,
.picZoomer-zoom-wp{
    border: 1px solid #eee;
    background: #edf2fa;
    text-align: center;
}


.picZoomer-zoom-wp{
    margin-top:0px;
    margin-left:60px;
    right:0px;
}


.section-bg {
    background-color: #fff1e0;
}

.row-sm .col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
}

/*===pic-Zoom===*/
._boxzoom .zoom-thumb {
    width: 90px;
    display: inline-block;
    vertical-align: top;
    margin-top: 0px;
}
._boxzoom .zoom-thumb ul.piclist {
    padding-left: 0px;
    top: 0px;
}
._boxzoom ._product-images {
    width: 80%;
    display: inline-block;
}
._boxzoom ._product-images .picZoomer {
    width: 100%;
}
._boxzoom ._product-images .picZoomer .picZoomer-pic-wp img {
    left: 0px;
}
/*._boxzoom ._product-images .picZoomer img.my_img {
    width: 100%;
}*/
.piclist li img {
    height:100px;
    object-fit:cover;
}

/*======products-details=====*/

._p-name{
    font-size: 22px;
     
}

._p-features h3{
    font-size: 20px;
    font-weight: bold;
}


.stockbox ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-bottom: 30px;
}

.stockbox ul li span {
    color: #6b8839;
    font-weight: bold;
    font-size: 17px;
}


._product-detail-content {
    background: #fff;
    
}
._product-detail-content p._p-name {
    color: black;
    font-size: 20px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.p-list span {
    margin-right: 15px;
    font-family: 'Inter';
}
.p-list span.price {
    font-size: 25px;
    color: #318234;
    font-family: 'Inter';
}
._p-qty > span {
    color: black;
    margin-right: 15px;
    font-weight: 500;
    font-family: 'Inter';
}

.stockbox ul li{
    font-family: 'Inter';
}
._p-qty .value-button {
    display: inline-flex;
    border: 0px solid #ddd;
    margin: 0px;
    width: 30px;
    height: 35px;
    justify-content: center;
    align-items: center;
    background: #fd7f34;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}

._p-qty .value-button {
    border: 0px solid #fe0000;
    height: 35px;
    font-size: 20px;
    font-weight: bold;
}
._p-qty input#number {
    text-align: center;
    border: none;
    border-top: 1px solid #fe0000;
    border-bottom: 1px solid #fe0000;
    margin: 0px;
    width: 50px;
    height: 35px;
    font-size: 14px;
    box-sizing: border-box;
}
._p-add-cart {
    margin-left: 0px;
    margin-bottom: 15px;
}
.p-list {
    margin-bottom: 10px;
}
._p-features > span {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
._p-add-cart .buy-btn {
    background-color: #fd7f34;
    color: #fff;
}
._p-add-cart .btn {
    text-transform: capitalize;
    padding: 6px 20px;
    /* width: 200px; */
    border-radius: 5px;
}
._p-add-cart button {
    margin: -0px 8px;
    padding: 3px 2px !important;
    border-radius: 0px !important;
    background: #aca79c;
    width: 25px;
    height: 25px;
}

.j-input-group {
    align-items: center;
}

._p-add-cart input{
    width: 40px;
    border: 0px;
    text-align: center;
    font-family: 'Inter' !important;
}

._p-add-cart a{
    background: rgba(107, 136, 57, 1)!important;
    border: 0px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter' !important;
    margin-top: 6px;
    margin-bottom: 20px;
}

.btn:hover {
    color: #fff;
    background: #aca79c!important;
}



legend {
  padding: 0 20px;
  font-size: 1.25em;
}

fieldset{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

fieldset label {
    font-family: 'Inter';
    display: flex;
    align-items: center;
        margin-right: 20px;
}

fieldset h3 {
    font-size: 18px;
    margin: 0px;
    width: 60px;
}

label {
  position: relative;
}


.validation-input[type="radio"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

 .validation-input[type="radio"] + label::before {
    content: '\a0';
    display: inline-block;
    margin: .2em .5em;
    width: 20px;
    height: 20px;
    line-height: .75em;
    transition: all .5s;
    border: 1px solid silver;
}



.validation-input[type="radio"]:checked + label::before {
  content: '\a0';
  background: yellowgreen;
  border: 1px solid white;
  box-shadow: inset 0 0 0 1px white, 0 0 0 1px yellowgreen;
}




.mt-6 {
    margin-top: 100px;
}

.shop.checkout .single-widget .content ul li {
    
    font-family: 'Inter';
}

.content ul{
    padding: 0px;
}

.shop.checkout .order-details {
    background: #edf2fa!important;
}

.shop.checkout .single-widget.get-button .btn {
    height: 46px;
    width: 100%;
    line-height: 19px;
    text-align: center;
    border-radius: 0;
    text-transform: uppercase;
    color: #fff;
    background: rgba(107, 136, 57, 1);
    font-family: 'Inter';
}

.list-group-item:last-child {
    font-family: 'Inter';
}


.btn {
    font-family: 'Inter';
}


/*=========Recent-post==========*/
.title_bx h3.title {
    font-size: 22px;
    text-transform: capitalize;
    position: relative;
    color: #fd7f34;
    font-weight: 700;
    line-height: 1.2em;
}
.title_bx h3.title:before {
    content: "";
    height: 2px;
    width: 20%;
    position: absolute;
    left: 0px;
    z-index: 1;
    top: 40px;
    background-color: #fd7f34;
}
.title_bx h3.title:after {
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 40px;
    background-color: #ffc107;
}
.common_wd .owl-nav .owl-prev, .common_wd .owl-nav .owl-next {
    background-color: #fd7f34 !important;
    display: block;
    height: 30px;
    width: 30px;
    text-align: center;
    border-radius: 0px !important;
}
.owl-nav .owl-next {
    right:-10px;
}
.owl-nav .owl-prev, .owl-nav .owl-next {
    top:50%;
    position: absolute;
}
.common_wd .owl-nav .owl-prev i, .common_wd .owl-nav .owl-next i {
    color: #fff;
    font-size: 14px !important;
    position: relative;
    top: -1px;
}
.common_wd .owl-nav {
    position: absolute;
    top: -21%;
    right: 4px;
    width: 65px;
}
.owl-nav .owl-prev i, .owl-nav .owl-next i {
    left: 0px;
}
._p-qty .decrease_ {
    position: relative;
    right: -5px;
    top: 3px;
}

._p-qty .increase_ {
    position: relative;
    top: 3px;
    left: -5px;
}
/*========box========*/
.sq_box {
    padding-bottom: 5px;
    border-bottom: solid 2px #fd7f34;
    background-color: #fff;
    text-align: center;
    padding: 15px 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.item .sq_box span.wishlist {
    right: 5px !important;
}
.sq_box span.wishlist {
    position: absolute;
    top: 10px;
    right: 20px;
}
.sq_box span {
    font-size: 14px;
    font-weight: 600;
    margin: 0px 10px;
}
.sq_box span.wishlist i {
    color: #adb5bd;
    font-size: 20px;
}
.sq_box h4 {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    color: #343a40;
    margin-top: 10px;
    margin-bottom: 10px !important;
}
.sq_box .price-box {
    margin-bottom: 15px !important;
}
.sq_box .btn {
    border-radius: 50px;
    padding: 5px 13px;
    font-size: 15px;
    color: #fff;
    background-color: #fd7f34;
    font-weight: 600;
}
.sq_box .price-box span.price {
    text-decoration: line-through;
    color: #6c757d;
}
.sq_box span {
    font-size: 14px;
    font-weight: 600;
    margin: 0px 10px;
}
.sq_box .price-box span.offer-price {
    color:#28a745;
}
.sq_box img {
    object-fit: cover;
    height: 150px !important;
    margin-top: 20px;
}
.sq_box span.wishlist i:hover {
    color: #fd7f34;
}

/*---------------photography-view-sec-------*/
.photography-view-sec{
  background: rgba(249, 245, 237, 1);
}

.photography-view-item{
    border: 2px solid #6b8839;
    padding: 5px;
}

.photography-view-item img{
  width: 100%;
}

.photography-banner-cont{
    padding-left: 80px;
}

.photography-banner-cont a{
    background: #6b8839;
    color: #fff;
    display: inline-block;
    padding: 4px 20px;
    border-radius: 4px;
    font-family: 'Inter';
}

.photography-banner-bg{
    padding: 140px 0px;
}


.form-input{
    padding: 10px;
}

.btn-primary{
    background: #6b8839;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
}

.modal-content{
    background: rgba(249, 245, 237, 1);
}



/*-----------------Product page---------------*/

.product-left-side{
  border: 2px solid rgba(204, 172, 106, 1);
  width: 100%;
}

.p-page-banner img{
  width: 100%;
}

.p-view-cat-item a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
}

.p-view-categories{
    margin: 30px 0px;
}

.p-view-cat-item-text p {
    margin: 0px;
    line-height: 26px;
    font-size: 16px;
    font-family: 'Inter';
    font-weight: 600;
    color: #876d32;
}

.p-view-cat-item-img img{
    width: 120px;
}

.p-view-categories h3{
      font-family: "degular-display", sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
}


.filter-header {
    background: #f9f5ed;
    width: 100%;
    overflow: hidden;
    padding: 7px 20px;
}

.filter-cat-name {
    float: left;
}
.filter-short-by {
    float: right;
    display: flex;
}

.filter-select{
    display: flex;
    gap: 20px;
}

p{
  font-family: 'Inter';
  font-size: 17px;
      color: #000;
}

.filter-cat-name p{
    margin: 0px;
    font-size: 20px;
}

.form-label {
    font-family: 'Inter';
}
.form-select {
        transition: none;
        font-family: 'Inter';
    }
/*---------------sidebar----------*/

.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #000;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-family: 'Inter';
  font-size: 18px;
}


.sidenav a:hover, .dropdown-btn:hover {
    color: #876d32;
     background: #f9f5ec;
}



.dropdown-container {
  display: none;
  padding-left: 20px;
}

.fa-caret-down {
    float: right;
    padding-right: 8px;
    margin-top: 8px;
}


/*@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
*/
.p-t-b-40 {
    padding: 40px 0px;
}

.product-pagination{
    text-align: center !important;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-link {
    border: 1px solid rgba(204, 172, 106, 1);
}

.page-link:hover {
    background: rgba(204, 172, 106, 1);
}


.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background: rgba(204, 172, 106, 1)!important;
    border-coor: rgba(204, 172, 106, 1)!important;
}


/*-----------------package page---------------*/

.packages-banner-sec{
    position: relative;
}
.packages-banner-sec img{
  width: 100%;
 
}




.packages-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0px;
    height: 100%;
    background-color: #00000061;
}
.packages-banner-cont{
  padding: 55px 0px;
}

.packages-banner-cont h1{
  color: #fff;
}

.packages-banner-cont p{
  color: #fff;
}

.all-pack-item{
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  padding: 10px;
}

.j-switch{
  margin-bottom: 20px;
}

.switch {
  position: relative;
  height: 32px;
  margin: 20px auto;
  background: #F2F2F2;
  background: #D7D7D7;
  border-radius: 32px;
  width: 200px;
}
.switch-label {
  font-weight: bold;
  position: relative;
  z-index: 2;
  float: left;
  width: 100px;
  line-height: 32px;
  font-size: 12px;
  color: #000;
  text-align: center;
  cursor: pointer;
}

.switch-input {
  display: none;
}

.switch-input:checked + .switch-label {
  color: #FFF;
  transition: 0.15s ease-out;
  transition-property: color, text-shadow;
}

.switch-input:checked + .switch-label-y ~ .switch-selector {
  transform: translateX(0%);
  background-color: #6b8839;
}
.switch-input:checked + .switch-label-i ~ .switch-selector {
  transform: translateX(100%);
  background-color: #6b8839;
}
.switch-input:checked + .switch-label-n ~ .switch-selector {
  transform: translateX(200%);
  background-color: #6b8839;
}


.switch-selector {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  display: block;
  width: 100px;
  height: 32px;
  border-radius: 32px;
  background-color: #6b8839;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}





.accordion-item {
    border: 1px solid rgba(65, 64, 62, 0.20) !important;
    margin-bottom: 10px;
        background: #fff;
}

.faq-sec{
  background: rgba(249, 245, 237, 1);
}

.accordion-button {
    border-bottom: 1px solid rgba(65, 64, 62, 0.20) !important;
    font-size: 16px;
    font-weight: bold;
}

.accordion-body {
    font-family: 'Inter';
    font-size: 15px;
}

.faq-title h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.all-pack-item-head h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 15px;
}

.all-pack-item-head h2{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.all-pack-item-btn a{
    display: block;
    text-align: center;
    background: rgba(107, 136, 57, 1);
    color: #fff;
    padding: 5px 0px;
    margin: 20px 0px;
     font-family: 'Inter';
}

.all-pack-item-footer span{
    font-size: 13px;
    color: gray;
    text-align: center;
     font-family: 'Inter';
}

.all-pack-item-body ul{

}

.all-pack-item-body ul li{
  font-family: 'Inter';
      font-size: 15px;
}

.all-pack-item-footer{
  text-align: center;
}

/*--------------------contact page-------------*/

.contact-banner-sec{
    position: relative;
}

.contact-banner-sec img{
   width: 100%;
   min-height: 220px;
}

.contact-detail-sec{
  margin-bottom: 80px;
}
.banner-contact-item {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 20px;
    text-align: center;
    background: #fff;
        min-height: 170px;
}

.banner-contact-info{
    margin-top: -80px; 
    z-index: 1; 
    position: relative;
}

.c_icon{
    color: rgba(107, 136, 57, 1);
    font-size: 30px;
    margin: 0px;
}

.c-address{
    margin: 0px;
    font-size: 16px;
    line-height: 25px;
}

.form-select {
    border: 1px solid rgba(65, 64, 62, 0.20);
}

.form-check{
  display: flex;
}

.form-check-input[type=checkbox] {
    border-radius: .25em;
    border: 1px solid rgba(65, 64, 62, 0.20)!important;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 5px;
}

.form-check-input:checked {
    background-color: #6b8839;
    border-color: #0d6efd;
}

.sarah-btn{
  background: #fff;
  border: 1px solid rgba(65, 64, 62, 0.20)!important;
}


.sarah-btn {
    background: #fff;
    border: 1px solid rgba(65, 64, 62, 0.20) !important;
    padding: 8px 30px;
    font-size: 18px;
    font-family: 'Inter';
    border-radius: 0px;
}

.sarah-btn:hover {
  background-color: #6b8839;
  color: #fff;
}

label {
    font-family: 'Inter';
}

.form-check-label {
    font-size: 15px;
    line-height: 26px;
}

.get-in-touch{
    margin-bottom: 50px !important;
}


/*-----------------about us-------------*/
.about-us-banner-sec{
 position: relative;
}
.about-us-banner-sec img {
    width: 100%;
    min-height: 220px;
}

.about-us-bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0px;
    height: 100%;
    background-color: #00000061;
}

.about-us-cont{
    padding: 55px 0px;
}

.about-us-cont h1{
    color: #fff;
    font-size: 48px;
    
}


.about-us-cont p{
  color: #fff;
}

.p-l-r{
    padding: 0px 80px;
}

.about-us-text-img img{
  width: 100%;
}

.about-us-text{
    padding-left: 40px;
}

.about-us-text h3{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-us-text h4{
      font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-us-text p{
    line-height: 30px;
    margin-bottom: 30px;
}

.why-chooes-me-sec{
  background: rgba(249, 245, 237, 1);
}

.why-item{
    padding: 20px;
}

.why-item img{
  margin-bottom: 20px;
}
.why-item h4{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.why-item p{
    font-size: 14px;
}

.why-chooes-title h3{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}


.offered-item-img img{
  width: 100%;
}

.offered-item-text {
    width: 80%;
    margin: 0px auto;
    margin-top: -40px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    z-index: 1;
    position: relative;
    padding: 20px;
}

.offered-item-text h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.offered-item-text p{
  font-size: 15px;
  line-height: 26px;
}

.offered-item-text a{
    display: inline-block;
    background: #6b8839;
    font-size: 15px;
    color: #fff;
    padding: 4px 18px;
    margin-top: 10px;
}


.lets-connect-sec{
  background: rgba(249, 245, 237, 1);
}

.Lets-connect-cont h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.Lets-connect-cont a{
    display: inline-block;
    background: #6b8839;
    font-size: 17px;
    color: #fff;
    padding: 4px 30px;
    margin-top: 20px;
    font-family: 'Inter';
}

.rounded-circle {
    border-radius: 20px;
    width: 29px;
    height: 27px;
    text-align: center;
}

.gap-md-3 {
        gap: 15px !important;
    }


/*----------------Art Commission--------------*/

.art-commission-banner-sec {
    position: relative;
}


.art-commission-banner-sec img {
    width: 100%;
    min-height: 220px;
}

.art-commission-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0px;
    height: 100%;
    background-color: #00000081;
}

.art-commission-banner-cont {
    padding: 55px 0px;
}

.art-commission-banner-cont h1 {
    color: #fff;
    font-size: 48px;
}

.art-commission-banner-cont p {
    color: #fff;
}

.commission-art-work{
  background: rgba(249, 245, 237, 1);
}


.commission-art-work-cont-img img{
  width: 100%;
}
.commission-art-work-cont{
    padding-left: 50px;
}

.commission-art-work-cont h3{
   margin-bottom: 20px;
      font-weight: 600;
}

.commission-art-work-cont ul li{
    font-family: 'Inter';
    font-size: 17px;
}

.reason-cont{
    margin-bottom: 40px;
}

.reason-cont h3{
  margin-bottom: 20px;
      font-weight: 600;
}

.reason-item-img{
    height: 120px;
     display: flex;
    justify-content: center;
    align-items: center;

}

.reason-item-img img{
    width: 85px;
}

.reason-item h4{
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

.reason-item p{
  font-size: 16px;
  line-height: 28px;
}


/*---------------- My Process--------------*/

.process-sec{
  background: rgba(249, 245, 237, 1);
}

.process-cont{
    margin-bottom: 50px;
}

.process-cont h3{
  margin-bottom: 20px;
      font-weight: 600;
}
.process-cont-img img{
  width: 100%;
}


.faq-btn{
    border-top-left-radius: var(--bs-accordion-inner-border-radius);
    border-top-right-radius: var(--bs-accordion-inner-border-radius);
    background: #f9f5ed;
}

.faq-btn:not(.collapsed) {
    color: var(--body-text-color);
    background-color: #f9f5ed;
    box-shadow: none;
}


.page-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  background-color: #fff;
}

.page-header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
}


#banner,.about-us-banner-sec,.contact-banner-sec,.product-section,.art-commission-banner-sec,.packages-banner-sec,.art-commission-banner-sec,.packages-banner-sec{
    margin-top: 80px;
}

.welcome-cont h2{
    margin-bottom: 20px;
    font-size: 32px;
    color: #000;
}

.art-commission-cont h3{
    color: rgba(107, 136, 57, 1);
    margin-bottom: 20px;
    font-size: 32px;
}

.sec-header h3{
    font-size: 32px;
    margin-bottom: 20px;
}

.lets-do-cont h3{
    font-size: 32px;
    margin-bottom: 20px;
}

.lets-do-sec{
    background: rgba(249, 245, 237, 1);
}

.mt-7 {
    margin-top: 130px;
}




header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: background-color 0.5s, padding 1s;
      z-index: 9;
}

header.sticky {
  background-color: #fff;
  padding: 0;
}

._p-features p span{
    font-family: 'Inter'!important;
}

._p-features p {
    font-family: 'Inter';
    font-size: 15px;
    color: #000;
    line-height: 25px;
}

.input-group h3{
    font-size: 18px;
    margin: 0px;
}

.list-group-item:first-child {
    font-family: 'Inter'!important;
}

.shopping-cart {
    background: #fff!important;
    padding: 50px 0;
}

.total-amount-sec {
    margin-top: 0px!important; 
    background: #edf2fa!important;
    padding: 30px;
}

.shopping-summery thead {
    background: #333333!important;
    color: #fff;
    font-size: 16px;
}

.shopping-summery thead tr th {
    border: none;
    font-weight: 600;
    color: #fff;
    font-family: 'Inter';
    font-size: 16px;
    text-align: center;
}

.shopping-cart .table p {
    font-size: 14px!important;
    color: #666;
    text-align: center;
    font-family: 'Inter';
}

table{
    font-family: 'Inter';
}

.shopping-cart .total-amount .right ul {
    padding: 0px;
    font-family: 'Inter';
    font-size: 20px;
}

.shopping-cart .total-amount .right ul li {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}


.shopping-summery tbody tr {
    border-bottom: 1px solid #dddddd!important;
    margin-top: 20px;
}

.shopping-cart .table p {
    margin: 0px;
}
.shopping-cart .table p a:hover{
    color:#525252!important;
}

.list-group-item span{
   font-family: 'Inter'; 
}

.list-group-item small{
   font-family: 'Inter'; 
}

.j-price{
    float: left;
}

.j-btn{
    float: right;
    padding-top: 5px;
}

.m_proc{
    display:none;
}

.m_slider{
    display:none;
}

a{
    font-family: 'Inter'; 
}

p{
    font-family: 'Inter'; 
}

@media only screen and (max-width: 1366px) {
    
    .current-price {
    font-size: 14px!important;
}
.cart-btn a {
    padding: 1px 6px;
    font-size: 12px;
}
.package-card-header p {
    font-size: 14px;
}

.package-card-header h3 {
    font-size: 20px;
}

.package-card-cont ul li {
    font-size: 13px;
}

.package-item a {
    
    font-size:14px;
}
.gap-md-3 {
    gap: 6px !important;
}

}







@media only screen and (max-width: 767px) {
   .welcome-cont a {
    margin-bottom: 40px;
}

button.filter-button {
    font-size: 15px;
    margin-bottom: 10px;
}

.package-item {
    margin-bottom: 20px;
}

.view-all-cont{
    text-align: center;
}

.view-all-cont a {
        margin-top: 25px;
    float: none;
    
}
.text-middle {
    padding: 0px 0px;
}

.lets-do-cont {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 30px;
}

.footer-menu{
    margin-bottom: 35px;
}

.img-fluid {
    width: 100%!important;
    height: auto;
}

.cart-btn a {
    
    margin-top: 7px;
}
.cart-btn a {
    float: inline-start;
}

.card-body {
    flex: 1 1 auto;
    padding: 15px 0px;
}

.current-price {
    font-size: 17px;
}

.j-btn {
    float: left;
    padding-top: 5px;
}

.j-price {
    width: 100%;
}

.about-us-banner-sec img {
    width: 100%;
    min-height: 200px;
}
.about-us-cont {
    padding: 30px 0px;
}

.about-us-cont h1 {
    color: #fff;
    font-size: 35px;
    margin-bottom: 6px;
}

.p-l-r {
    padding:20px;
}

.about-us-text {
    padding-left: 0px;
    padding-top: 30px;
}

.about-us-text h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}
.offered-item{
    margin-bottom: 30px;
}
.contact-banner-sec img {
    width: 100%;
    min-height: 200px;
}
.packages-banner-cont {
    padding: 30px 0px;
}

.banner-contact-item {
    margin-bottom: 20px;
    
}

.contact-detail-sec {
    margin-bottom: 0px;
}
 
 .packages-banner-sec img {
    width: 100%;
    height: 200px;
}
.packages-banner-cont {
    padding: 35px 0px;
}
.all-pack-item {
    margin-bottom: 25px;
}

.art-commission-banner-sec img {
    width: 100%;
    min-height: 200px;
}
.art-commission-banner-cont {
    padding: 30px 0px;
}
.art-commission-banner-cont h1 {
    color: #fff;
    font-size: 35px;
    margin-bottom: 15px;
}

.sidenav{
    display: none;
}

.p-view-cat-item-img img {
    width: 80px;
}

.p-view-cat-item a {
   
    margin-bottom: 10px;
}

.p-view-cat-item-text p {
    line-height: 22px;
    font-size: 14px;
}

.p-filter{
    font-size: 14px;
    width: 160px;
}

.filter-cat-name p {
    font-size: 18px;
}

#banner, .about-us-banner-sec, .contact-banner-sec, .product-section, .art-commission-banner-sec, .packages-banner-sec, .art-commission-banner-sec, .packages-banner-sec {
    margin-top: 65px;
}

.p-t-b-40 {
    padding: 0px 0px;
}

.offcanvas-body .main-logo a img{
    width: 80px !important;
    height: auto;
}

.offcanvas.offcanvas-end {
    width: 300px!important;
}

.dropdown-menu a {
    padding: 10px 13px !important;
}

.m_proc{
    display:block;
}

.desk_proc{
    display:none;
}

.desk_slider{
    display:none;
}

.m_slider{
    display:block;
}

.photography-banner-bg {
    padding: 20px 0px;
}

.slider-content {
    top: 40px;
}

.slider-content h3{
    font-size: 20px;
}

.slider-content p {
    font-size: 16px;
    line-height: 20px;
}

p {
    font-size: 16px;
    line-height: 24px;
}

._boxzoom ._product-images {
    width: 75%;
    float: right;
}

._boxzoom .zoom-thumb {
    width: 70px;
    float: left;
}
.piclist li {
    width: 70px;
    height: 100px;
}

.piclist li img {
    height: 100px;
    object-fit: cover;
}
.art-commission-banner-sec img {
    width: 100%;
    min-height: 160px;
}
.picZoomer-pic-wp {
    height: 350px !important;
}
.about-us-banner-sec img {
    width: 100%;
    min-height: 160px;
}
.packages-banner-sec img {
    width: 100%;
    height: 160px;
}
._product-detail-content {
    padding:20px;
}

h1 {
    font-size: 24px;
}
.art-commission-banner-cont {
    padding: 30px 0px;
}
.p-t-b {
    padding: 60px 0px;
}
}




.preloader {
   
    display: none;
}






