/*---------------------------------------------------------------
  Template Name: PetKing | One Page Pet Store Template
  Description: PetKing | One Page Pet Store Template
  Author: Lucid Solutions
  Author URL: https://www.templatemonster.com/store/lucid_solutions/
  Version: 1.0.0
  -----------------------------------------------------------------
  CSS INDEX
  ==================
  1. Basic Styles
  2. Header Styles
  3. Banner Styles
  4. Newly Arrived
  5. Services Styles
  6. Gallery Styles
  7. Contact Styles
  8. Client Slider Styles
  9. Footer Styles
  10. Theme Mode Styles
  11. Back to top Styles
----------------------------------------------------------------*/

@import url('petkingmain.css');

  /* ========================
    Basic Styles
  ===========================*/
  *{
    box-sizing: border-box;
    font-weight: 600;
  }
  a{
    color: inherit;
    text-decoration: none;
  }
  a:hover{
    color: var(--prime-txt);
    text-decoration: none;
  }
  body{
    background-color: var(--body-bg);
    overflow-x: hidden;
  }
  .w-unset{
    min-width: unset;
    width: unset;
  }
  .error:not(.form-control):not(.form-check-input):not(.form-select){
    color: var(--prime-txt);
    border-radius: 2px;
    font-size: var(--fs-10);
    padding: 3px 5px;
    margin: 5px 0 0 5px;
    width: 95%;
    text-transform: capitalize;
    font-family: var(--SecondaryFont);
  }
  .head-color-bg{
    background-color: var(--second-shade-bg);
    padding: 0 5px;
    border-radius: 5px;
  }
  /* ========================
   Header Styles
  ===========================*/

  .nav-link{
    color: var(--nav-txt);
    text-transform: uppercase;
    font-size: var(--fs-8);
    font-family: var(--SecondaryFont);
    position: relative;
    padding: 0 !important;
    text-align: start;
  }
  .nav-item{
    position: relative;
    min-width: 75px;
    padding: 5px;
    margin-right: 15px;
  }
  @media(max-width:450px){
    .navbar-brand img{
      max-width: 215px;
    }
  }
  .navbar-toggler{
    background:url('../../assets/images/footericonbg.png')no-repeat;
    background-size: cover;
    border: 0px;
    box-shadow: none !important;
    min-height: 40px;
    width: 40px;
    padding: 0;
    color: var(--header-icon);
  }
  @media(max-width:991px){
    .navbar-nav{
      width: 100%;
    }
    .nav-item{
      background-color: var(--prime-shade-bg);
      border-radius: 5px;
      padding: 15px ;
    }
  }
  
  @media(min-width:992px){
    .nav-item{
      min-width: 150px;
      min-height: 60px;
    }
    .nav-item{
      background: url(../../assets/images/navbg.svg) no-repeat;
      background-size: cover;
      min-width: 150px;
      min-height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-position: center center;
    }
  }
  .nav-item.active a, .nav-item:hover a {
    color: var(--prime-txt);
  }

  /* ========================
   Banner Styles
  ===========================*/
  .banner-main{
    background: url('../../assets/images/banner-img.webp')no-repeat;
    background-size: cover;
    min-height: 700px;
    background-position: top center;  
    display: flex;
    align-items: center;
  }
  .banner-content{
    max-width: 500px;
  }
  .banner-content h1{
    text-shadow: 2px 2px var(--prime-txt);
  }
  .bannersalebg{
    background: url(../../assets/images/bannersalebg.png)no-repeat;
    background-size: cover;
    height: 355px;
    width: 360px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  @media(max-width:992px){
    .bannersalebg{
      height: 200px;
      width: 202px;
      max-width: 100%;
    }
    .banner-content{
      max-width: 350px;
    }
    .bannersalebg h2{
      font-size: 45px !important;
    }
    .banner-main{
      min-height: 450px;
    }
  }
  @media(max-width:600px){
    .bannersalebg{
      height: 150px;
      width: 152px;
      max-width: 100%;
    }
  }
  /* =======================
    Newly Arrived
  ===========================*/
  .newlyarrived .item{
    width: 150px !important;
    border: 5px solid var(--prime-border);
    border-radius: 50%;
    position: relative;
    overflow: hidden !important;
    margin-left: auto;
  } 
  .newly-overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(var(--second-rgb),0.5);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
  }
  .newlyarrived .item:hover .newly-overlay{
    opacity: 1;
  }
  .newlyarrived .owl-nav{
    display: block !important;
  }
  .newlynav button{
    background-color: unset !important;
    border: unset !important;
    box-shadow: unset !important;
  }
  .newlynav button span{
    display: none;
  }
  .newlynav button:focus, .newlynav button:active{
    box-shadow: none !important;
    background: unset !important;
  }
  .newlynav .owl-prev::after{
    content: '\f0a8';
    font-family: 'FontAwesome';
    color: var(--prime-txt);
    font-size: 28px;
  }
  .newlynav .owl-next::after{
    content: '\f0a9';
    font-family: 'FontAwesome';
    color: var(--prime-txt);
    font-size: 28px;
  }
  .newlynav{
    position: absolute;
    right: 15px;
    bottom: -15px;
    width: 100%;
  }

  /* modalcss */
  .color-type{
    width: 25px;
    height: 25px;
    border: 2px solid var(--prime-border);
    border-radius: 50%;
    margin-right: 8px;
  }
  .color-type.red{
    background-color: red;
  }
  .color-type.blue{
    background-color: blue;
  }
  .color-type.orange{
    background-color: orange;
  }
  .modal-header .btn-close,  .offcanvas-header .btn-close{
    background: unset !important;
    color: rgb(106 106 106);
    font-size: 20px
  }

  /* ========================
   Services Styles
  ===========================*/
  .service-img-outer{
    border-radius: 30% 70% 69% 31% / 44% 44% 56% 56%;
    height: 350px;
    width: 350px;
    border: 3px solid var(--second-border);
    background-color: var(--second-shade-bg);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .service-img{
    border-radius: 30% 70% 69% 31% / 44% 44% 56% 56%;
    height: 300px;
    width: 300px;
    background-color: var(--second-shade-bg);
  }
  .service-img  img{
    object-position: center center;
    object-fit: cover;
    height: 100%;
  }
  .servicebg{
    background: url(../../assets/images/service-txtbg2.png)no-repeat;
    background-size: cover;
    width: 250px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
   /* =============
      Gallery Styles
     ============= */
     .grid-wrapper > div {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .grid-wrapper a{
      width: 100%;
      height: 100%;
      position: relative;
    }
    .grid-wrapper > div a img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 5px;
    }
    .grid-wrapper .overlay{
      font-size: var(--fs-1);
      background-color: rgba(var(--prime-rgb), 0.4);
      position:absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      left: 0;
      top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .grid-wrapper a:hover .overlay{
      opacity: 1 !important;
    }
    .grid-wrapper {
      display: grid;
      grid-gap: 1.5em;
      grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
      grid-auto-rows: 250px;
      grid-auto-flow: dense;
    }
    .grid-wrapper.about{
      display: grid;
      grid-gap: 0.5em;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      grid-auto-rows: 275px;
      grid-auto-flow: dense;
    }
    .grid-wrapper.about img{
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      border-radius: 5px;
    }
    .grid-wrapper .wide {
      grid-column: span 2;
    }
    .grid-wrapper .tall {
      grid-row: span 2;
    }
    .grid-wrapper .big {
      grid-column: span 2;
      grid-row: span 2;
    }
    /* lightbox styles */
    .lb-data .lb-close{
      background: url(../../assets/images/close.png) top right no-repeat;
    }
    .lb-nav a.lb-prev{
      background: url(../../assets/images/prev.png) left 48% no-repeat;
    }
    .lb-nav a.lb-next{
      background: url(../../assets/images/next.png) right 48% no-repeat;
    }
    .lb-cancel{
      background: url(../../assets/images/loading.gif)no-repeat;
    }

  /* ====================
    Contact Styles
  =======================*/
  .contact-content{
    width: 90%;
    max-width: 100%;
    margin: 15px auto;
  }
  .contact-side{
    background:linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../assets/images/contactbg.webp');
    background-size: cover;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 0;
  }
  .contact-ribbon{
    width: 90%;
    max-width: 600px;
  }
  .custselect{
    position: relative;
    width: 275px;
    max-width: 100%;
    margin: auto;
  }
  
  .input-bg{
    background-color: transparent !important;
    border: unset !important;
    color: var(--input-txt) !important;
    background: url(../../assets/images/inputbg.png)no-repeat;
    background-size: cover;
    height: 95px;
    width : 275px;
    max-width: 100%;
    font-family: var(--SecondaryFont);
    font-size: 18px;
    margin: auto;
  }
  .textarea-bg{
    background-color: transparent !important;
    padding: 30px 15px;
    height: 150px;
    width: 100%;
    max-width: 275px;
    margin: auto;
    background: url(../../assets/images/textarea-bg2.png)no-repeat;
    background-size: cover;
  }
  .textarea-bg textarea{
    height: 95%;
    width: 90%;
    border: unset !important;
    color: var(--input-txt) !important;
    font-family: var(--SecondaryFont);
    font-size: 18px;
  }

  @media(min-width:576px){
    .input-bg{
      height: 75px;
      width: 350px;
    }
    .textarea-bg{
      height: 250px;
      width: 100%;
      margin: unset;
      max-width: unset;
    }
    .custselect{
      width: 100%;
    }
  }
  @media(min-width:768px){
    .input-bg{
      height: 105px;
      width: 350px;
    }
    .textarea-bg{
      height: 350px;
      width: 100%;
    }
    .custselect{
      width: 100%;
    }
  }

  @media(min-width:992px){
    .input-bg{
      height: 65px;
      width: 200px;
    }
    .textarea-bg{
      height: 223px;
      width: 100%;
    }
    .custselect{
      width: 100%;
    }
  }

  @media(min-width:1400px){
    .contact-content{
      width: 75%;
    }
    .input-bg{
      height: 80px;
      width: 265px;
    }
    .custselect{
      width: 100%;
    }
    .textarea-bg{
      height: 260px;
      width: 100%;
    }
  }
  .contact-form{
    padding: 50px 0;
  }
  .custselect::before{
    content: '\f078';
    font-family: 'FontAwesome';
    content: '\f078';
    font-family: 'FontAwesome';
    position: absolute;
    right: 40px;
    top: 35%;
    z-index: 0;
  }
  ::placeholder, .form-select{
    font-family: var(--SecondaryFont) !important;
    font-size: 18px !important; 
    text-transform: capitalize !important;
    font-weight: 600 !important;
    color: var(--input-txt) !important;
  }
  .input-bg:focus, .textarea-bg:focus{
   box-shadow: unset !important;
  }
  /* ====================
    Client Slider Styles
  =======================*/
    .client-testimonials{
      max-width: 950px;
      background-color: var(--tertiary-bg);
      border-radius: 150px 0 150px 0;
      margin: auto;
    }
    .petimg img{
      width: 150px !important;
      height: 150px !important;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--second-border);
    }
    .testimonial-content{
      max-width: 650px;
      margin: auto;
    }
    .clientimg img{
      width: 75px !important;
      height: 75px !important;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--prime-border);
    }
    .client-testimonials .item{
      padding: 0 15px;
    }
  /* ==============================
    Footer Styles
  ===========================*/
  .footericon-bg{
    background: url('../../assets/images/footericonbg.png')no-repeat;
    background-size: cover;
    min-height: 40px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }


  /* ===========================
    Theme Mode Styles
  =========================*/
  .modetoggle-main{
    position: fixed;
    top: -5px;
    right: 15px;
    background-size: contain;
    align-items: end;
    padding: 5px 5px 5px 5px;
    border-radius: 0 0px 15px 15px;
    background: var(--tertiary-bg);
    min-width:50px;
    text-align: center;
    z-index: 2;
  }

    /* ==================
    Back to top Styles
    ================== */

    #backtotop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      padding: 7px;
      transition: background-color .3s, opacity .5s, visibility .5s;
      opacity: 0;
      visibility: hidden;
      z-index: 1000;
    }
    #backtotop:hover {
      cursor: pointer;
    }
    #backtotop.show {
      opacity: 1;
      visibility: visible;
    }
