.school-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* padding: 20px; */
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    gap: 10px;
    transition: 0.5s all ease-in-out;
  }
  .school-item img{
    max-height: 120px;
    width: fit-content;
    margin: auto;
    transition: 0.3s all ease-in-out;
  }

  .school-item:hover img{
    transform: scale(1.04);
  }

  .school-item h4{
    font-size: 18px;
    font-weight: 700;
  }

  @media(max-width:575px){
    .school-item{
      padding: 10px;
    }
    .school-item h4{
      font-size: 14px;
    }
  }

  .school-item:hover{
    box-shadow: 0px 2px 20px rgba(1, 42, 112, 0.1);
  }

  .school-item-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    content: '';
  }

  .product-item{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    border: 1px solid #f3f2f8;
    border-radius: 10px;
    overflow: hidden;
    /* padding: 10px; */
    padding: 0;
    transition: 0.3s all ease-in-out;
    overflow: hidden;
  }

  .product-item:hover{
    border-color: var(--primary-color);
  }
  .product-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 240px;
     overflow: hidden; 
    background: #f3f2f8;
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-img img{
    object-fit: contain;
    max-height: 240px;
    overflow: hidden;
    transition: 0.3s all ease-in-out;
    transform: scale(0.8) !important;
  }

  @media(max-width:575px){
    .product-img img, .product-img{
      height: 100%;
      max-height: max-content;
    }
  }
  .product-item:hover .product-img img{
    transform: scale(1.025) !important;
  }

  .product-details{
    padding: 0 10px;
  }

  .product-details h3{
    font-weight: 700;
  }

  .product-details p{
    font-size: 14px;
    line-height: normal;
    margin: 0;
    color: var(--light-blue);
  }

  .product-item .pricing{
    padding: 0px 10px 10px;
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: flex-end;
  }
  .product-item .pricing h6{
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
  }

  .button_item_hover{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 35px;
    /* height: 100%; */
    left: 0;
    /* bottom: -80px; */
    bottom: 20px;
    gap: 10px;
    z-index: 0;
    transition: 0.5s all ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
  .button_item_hover a{
    width: 110px;
    height: auto;
    border-radius: 50rem;
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-size: .75rem;
    gap: 5px;
    justify-content: center;
    background-color: var(--black-color);
  }
  .button_item_hover a svg{
    width: 0.875rem;
    height: 0.875rem;
  }

  .button_item_hover a:last-child{
    background-color: var(--primary-color);
    color: var(--white-color);
  }

  .product-item:hover .button_item_hover{
    /* bottom: 20px; */
    opacity: 1;
    visibility: visible;
    z-index: 5;
  }

  .overlay-product-link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    content: '';
  }


  .product-gallery{
    overflow: hidden;
    background: #f3f2f8;
    position: relative;
    border-radius: 10px;
  }

  .product_img_zoom{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms linear;
    padding: 20px;
    /*max-height: 550px;*/
  }


  .product_zoom_icon{
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50rem;
    color: var(--white-color);
    z-index: 10;
    top: 20px;
    right: 20px;
    font-size: 12px;
    transition: all 300ms linear;
    box-shadow: 0 0 0 4px rgb(0 0 0 / 10%);
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product_img_zoom:hover .product_zoom_icon{
    background: var(--primary-color);
  }

  .product_details .school_name{
    font-size: 14px;
    line-height: normal;
    color: var(--light-blue);
  }

  .product_details .pricing_info{
    display: flex;
    align-items: flex-end;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 10px;
    /* font-size: 58px; */
    font-family: var(--body-font);
  }

  @media(max-width:767px){
    .product_details .pricing_info{
      font-size: 30px;
    }
  }
  .product_details .pricing_info .old_price{
    font-weight: 600;
    text-decoration: line-through;
    font-weight: 400;
    color: #797979;
  }

  .product_details_modal p{
    font-size: 12px;
    color: var(--light-blue);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
            line-clamp: 2; 
    -webkit-box-orient: vertical;
    line-height: normal;
    display: none;
  }

  .sizechart-div label{
    color: var(--gray-color);
    font-size: 14px;
    font-weight: 500;
  }

  .sizechart-div a{
    color: var(--primary-color) !important;
    font-size: 14px;
    font-weight: 600;
  }


  .sizes-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
/* The container */
.sizes-container .container-size {
    display: block;
    position: relative;
    /* margin-bottom: 15px; */
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* padding: 0px 10px; */
}

/* Hide the browser's default checkbox */
.sizes-container .container-size input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.sizes-container .container-size .checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 40px;
    /*width: 50px;*/
    min-width: 50px;
    /* background-color: #eee; */
    border: 1px solid #D9D9D9;
    display: block;
    /* margin-bottom: 10px; */
    background-position: center;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sizes-container .container-size:hover input ~ .checkmark {
    background-color: #f7f7f7;
}

.sizes-container .container-size input:checked ~ .checkmark {
    background: var(--secondary-color);
    background-size: 70%;
    background-position: center;
    color: var(--white-color);
}

.sizes-container .container-size input:disabled ~ .checkmark {
    background: #D9D9D9;
    background-size: 70%;
    background-position: center;
    cursor: not-allowed;
}

.quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  max-width: 90px;
  border-radius: 0 !important;
}
.quantity__minus,
.quantity__plus {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  line-height: 30px;
  transition: 0.1s all ease-in-out;
  position: absolute;
  right: 0;
  color:  var(--primary-color);
}
.quantity__minus {
  border-radius: 3px 0 0 3px;
  bottom: 0;
  font-size: 12px;
}
.quantity__plus {
  border-radius: 0 3px 3px 0;
  top: 0;
  font-size: 12px;
}

.quantity__minus_1,
.quantity__plus_1 {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  line-height: 30px;
  transition: 0.1s all ease-in-out;
  position: absolute;
  right: 0;
  color:  var(--primary-color);
}
.quantity__minus_1 {
  border-radius: 3px 0 0 3px;
  bottom: 0;
  font-size: 12px;
}
.quantity__plus_1 {
  border-radius: 0 3px 3px 0;
  top: 0;
  font-size: 12px;
}

.quantity__input {
  max-width: 90px;
    height: 50px;
    margin: 0;
    padding: 0;
    text-align: left;
    border: 2px solid var(--primary-color);
    background: var(--white-color);
    color: var(--black-color);
    border-radius: 5px;
    overflow: hidden;
    padding-left: 12px;
    padding-right: 25px;
    pointer-events: none;
}







.testimonial-slider .swiper-button-prev,
.testimonial-slider .swiper-button-next {
  /* background: transparent; */
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid var(--secondary-color);
  background: var(--secondary-color);
  border-radius: 55px;
  opacity:0;
  visibility:hidden;
  transition:all .3s ease;
}
.testimonial-slider:hover .swiper-button-prev,
.testimonial-slider:hover .swiper-button-next {
  transform:translateX(0);
  opacity:1;
  visibility:visible;
}

@media (max-width: 767px) {
  .testimonial-slider .swiper-button-prev,
  .testimonial-slider .swiper-button-next {
    display: none;
  }
}

.testimonial-slider .swiper-button-prev {
  left: 25px;
  transform:translateX(50px);
}

.testimonial-slider .swiper-button-prev:before {
  font-family: "Font Awesome 6 Free";
  content: "\f060";
  color: var(--white-color);
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.testimonial-slider .swiper-button-next {
  right: 25px;
  transform:translateX(-50px);
}

.testimonial-slider .swiper-button-next:before {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-size: 15px;
  color: var(--white-color);
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
}

.testimonial-slider .swiper-button-next::after, .testimonial-slider .swiper-button-prev::after{
  font-size: 0;
}


.testimonial-slider .client-content {
    background: var(--white-color-1);
    padding: 45px 35px 20px 35px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }

  .testimonial-slider .client-content::before {
    content: "\f6b0";
    font-family: bootstrap-icons !important;
    position: absolute;
    top: 40px;
    left: 30px;
    text-align: center;
    line-height: 0;
    color: var(--secondary-color);
    font-size: 130px;
    opacity: 0.15;
    z-index: 0;
  }

  .client-header{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  .client-header figure{
    margin: 0;
  }
  .client-img img{
    width: 60px !important;
    height: 60px !important;
    border-radius: 50rem;
    border: 2px solid var(--gray-color);
  }
  
  .client-header .client-info{
    text-align: left;
  }

   .client-txt{
    color: var(--black-color);
    font-size: 14px;
    line-height: 1.5;
  }
  .client-name{
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 5px;
  }
  .client-header .client-prof{
    color: var(--gray-color);
  }
  

.blog-item{
  padding: 20px;
  border: 1px solid var(--gray-color);
    background: var(--white-color);
    /* margin-bottom: 60px; */
    overflow: hidden;
    /* transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear; */
    position: relative;
    border-radius: 8px;
    transition: var(--transition-figure);
}



.blog-item .figure-holder{
  position: relative;
  width: 100%;
  object-fit: cover;
  max-height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.blog-item .figure-holder img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: var(--transition-figure);
  transition: var(--transition-figure);
  max-height: 300px;
  object-fit: cover;
}

.blog-item:hover .figure-holder img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}


@media (max-width: 767px) {

  .blog-item .figure-holder {
      max-width: inherit;
      height: auto;
      margin-bottom: 20px;
  }
}

.blog-item:hover {
  box-shadow: 5px 5px 0px 0px #929292;
  -webkit-transform: translateX(-3px) translateY(-3px);
    -ms-transform: translateX(-3px) translateY(-3px);
    transform: translateX(-3px) translateY(-3px);
}

.entry-title{
  color: var(--black-color);
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 800;
  margin-bottom: 10px;
  display: inline;
  background-size: 0 2px;
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-image: linear-gradient(0deg, var(--secondary-color), var(--secondary-color));
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  overflow: hidden;
  -webkit-line-clamp: 2; /* number of lines to show */
          line-clamp: 2; 
  -webkit-box-orient: vertical;
}


.blog-item:hover .entry-title{
  background-size: 100% 2px;
}



.blog-item .entry-meta {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px;
  color: #1a1a1a;
}


.blog-item .entry-meta > span {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  padding-left: 25px;
}

.blog-item .entry-meta > span:first-child {
  padding-left: 0;
}

.blog-item .entry-meta > span:before {
  position: absolute;
  content: "••";
  font-size: 18px;
  line-height: 1;
  left: -2px;
  top: 0px;
}

.blog-item .entry-meta > span:first-child:before {
  display: none;
}


.blog-item .entry-meta > span {
  color: #9f9e9e;
}
.blog-item .entry-meta > span:hover {
  color: #1a1a1a;
}


.blog-link {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.about-content p{
  color: var(--text-color);
}
.about-content p:last-child{
  margin-bottom: 0 !important;
}


.feature-box{
  position: relative;
  display: flex;
  gap: 15px;
}

.feature-box .fbox-icon{
  font-size: calc(3rem/1.5);
}



.products-filter .accordion-item{
  border: 0 !important;
  margin-bottom: 15px;
}

.products-filter .accordion-item:last-child{
  margin-bottom: 0 !important;
}

.accordion-button{
  background: transparent !important;
    color: #000 !important;
    font-weight: 600;
    padding: 10px 15px;
    font-size: 14px;
}
.accordion-button:not(.collapsed){
  color: var(--secondary-color) !important;
}


.products-filter .list.list-inline .menu-link {
  display: inline-block;
  position: relative;
  padding: 0.5em 0;
  color: var(--black-color);
  line-height: 1.5em;
  font-size: 13px;
  background: transparent !important;
  border: 0 !important;
  font-weight: 600;
}

.products-filter .list.list-inline .menu-link.active{
  color: var(--primary-color) !important;
}

.accordion-button::after{
  background: transparent !important;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  width: auto;
  transform: rotate(0deg) !important;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after{
  /* margin-right: 5px !important; */
  transform: rotate(180deg) !important;
}

.products-filter .sizes-container .container-size .checkmark{
  min-width: 40px !important;
  width: auto !important;
  padding: 0 10px;
}

.price-range__info{
  font-size: 0.75rem;
    justify-content: space-between;
}

@media(max-width:991px){
  .products-filter{
    position: fixed;
    width: 250px;
    z-index: 999;
    top: 0;
    height: 100vh;
    overflow: auto;
    background: #fff;
    right: -100%;
    overflow-x: hidden;
    transition: 0.3s all ease-in-out;
  }
  .show-sidebar{
    right: 0;
  }
  .products-filter .close-btn{
    width: 30px;
    height: 30px;
    border: 0;
  }
  .sidebar-toggle{
    cursor: pointer;
  }
  .active-sidebar {
    overflow: hidden !important;
    height: 100vh;
  }
  .products-filter .accordion-body,  .products-filter .accordion-button{
    padding: 10px;
  }
}


.brand_info{
  padding: 20px;
  border-radius: 5px;
}

.brand_info{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;

}

.product-details-accordion .accordion-body p{
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
}

.product-details-accordion .accordion-body{
  padding: 10px 15px 15px;
}

.product-details-accordion .accordion-body p:last-child{
  margin: 0 !important;
}

.product-details-accordion .accordion-body ul{
  padding-left: 10px;
}

.product-details-accordion .accordion-body ul li{
  list-style-type: disc !important;
}


/* Category Content page CSS */

.category-content p{
  font-size: 16px !important;
}

.category-content p:last-child{
  margin-bottom: 0 !important;
}

@media(max-width:991px){
  .category-content p{
    font-size: 14px !important;
  }
}


.quote {
  position: relative;
  text-align: center;
}

.quote:before,
.quote:after {
  position: absolute;
  color: var(--primary-color);
  font-size: 8rem;
  width: 4rem;
  height: 4rem;
  font-family: cursive;
  opacity: 0.3;
}

.quote:before {
  content: '“';
  left: -5rem;
  top: -2rem;
}

.quote:after {
  content: '”';
  right: -5rem;
  bottom: -1rem;
}

@media(max-width:700px){
  .quote{
    margin-top: 40px;
  }
  .quote h2{
    font-size: 18px;
    padding-bottom: 20px;
  }
  .quote:before {
    left: 0;
    top: -1rem;
  }
  .quote:after{
    right: 0;
    bottom: -5rem;
  }
}


.cart-section a.text-primary{
  color: var(--primary-color) !important;
}


.coupon-input{
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  min-width: 250px;
}

.coupon-input button{
  width: 50px;
  height: 45px;
  position: absolute;
  right: 0;
  padding: 0 15px;
  background: var(--black-color);
  color: #fff;
}

.select2-container--default .select2-selection--single{
    background: var(--form-bg) !important;
    border-radius: 4px;
    border: 1.5px solid var(--form-bg) !important;
}

.select2-container--open{
    border-color: var(--secondary-color) !important;
  background-color: var(--white-color) !important;
    background: var(--white-color) !important;
}

.filter-lists{
    max-height: 400px;
    overflow-y : auto;
}

.product-description-detail ul,.product-description-detail ol{
    padding-left: 20px !important;
}

.product-description-detail h1,
.product-description-detail h2,
.product-description-detail h3,
.product-description-detail h4,
.product-description-detail h5,
.product-description-detail h6,
.product-description-detail p,
.product-description-detail ul,
.product-description-detail li{
    font-family: unset !important;
    font-size: unset !important;
}