form.hero__search__form {
  display: flex;
  align-items: center;
  max-width: 767px;
  flex-wrap: nowrap;
  margin: 0 auto;
}
form.hero__search__form select.cate-dropdown {
  flex: 0 0 fit-content;
  padding-right: 60px;
  height: 56px;
  border: 0;
  border-right: 1px solid #e7e9eb;
}
form.hero__search__form input.searchbox {
  flex: 1;
  height: 56px;
  border: 0;
}
form.hero__search__form button.search-btn-bg {
  flex: 0 0 fit-content;
  height: 56px;
  border: 0;
  border-radius: 0;
}

.cat__item__wrap {
  background: #ffffff;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-bottom: 24px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 5px 25px 0px #f4f4f4;
  box-shadow: 0px 5px 25px 0px #f4f4f4;
}
.cat__item__wrap:hover{
  margin-top: -6px;
}
.cat__item__wrap .cat__image img {
  border-radius: 50%;
  width: 90px;
  height: 90px;
}
.cat__item__wrap .cat__name h5 {
  margin: 1rem 0 0;
  font-size: 18px;
}
.cati__item__count {
  font-size: 14px;
}




/* Featured Product Section */
.featured__product__wrapper .row {
  margin-right: calc(-.25 * var(--bs-gutter-x));
  margin-left: calc(-.25 * var(--bs-gutter-x));
}
.featured__product__wrapper .row>* {
  padding-right: calc(var(--bs-gutter-x) * .25);
  padding-left: calc(var(--bs-gutter-x) * .25);
  padding-top: calc(var(--bs-gutter-x) * .25);
  padding-bottom: calc(var(--bs-gutter-x) * .25);
}
.featured__product__single__item {
  overflow: hidden;
}
.featured__product__single__item img {
  width: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.featured__product__single__item:hover img{
  scale: 1.1;
  transition: 0.5s;
}


/* Section Heading */
.section__heading__container {
  width: 100%;
  height: auto;
  overflow: hidden;
  clear: both;
}
.section__sub__title {
  margin-bottom: 8px;
}
.section__sub__title span {
  font-style: normal;
  font-weight: 400;
  color: #4a5159;
}
.section__titile h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  color: #051c35;
  margin-bottom: 12px;
}
.section__short_description p {
  font-style: normal;
  font-weight: 400;
  color: #4a5159;
  margin-bottom: 0;
}

/* Services Box */
.service__box__container {
  text-align: center;
  margin-bottom: 24px;
  background: #547AF7;
  -webkit-box-shadow: 0px 5px 25px 0px #f4f4f4;
  box-shadow: 0px 5px 25px 0px #f4f4f4;
  border-radius: 10px;
  padding: 42px 32px;
  z-index: 1;
  position: relative;
  transition: 0.3s;
}
.service__box__container:before {
  content: '';
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px;
  z-index: -1;
  transition: 0.3s;
}
.service__box__container.active:before,
.service__box__container:hover:before {
  transform: rotate(4deg);
  transition: 0.3s;
}
.service__title h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 20px;
  color: #547AF7;
}
.service__desc p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #4a5159;
  margin-bottom: 0;
}
.service__icon {
  margin-bottom: 16px;
}
.service__icon i {
  font-size: 40px;
  color: #547AF7;
}


/* Post style */
.blog__post__content {
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 25px 0px #f4f4f4;
  box-shadow: 0px 5px 25px 0px #f4f4f4;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.blog__post__content .blog__meta, 
.blog__post__content .blog__title, 
.blog__post__content .blog__read__more__link {
  padding: 0 16px;
}
.blog__post__content .blog__thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
  transform: scale(1);
  transition: all 1s ease-out;
}
.blog__thumbnail {
  overflow: hidden;
  border-radius: 0.5rem;
}
.blog__post__content:hover .blog__thumbnail img {
  transform: scale(1.1);
  transition: all 1s ease-out;
}  
.blog__post__content .blog__title h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #051c35;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.blog__post__content .blog__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 16px;
}

.blog__post__content .blog__meta .post__author {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.post__author .author__avtr {
  line-height: 1;
}
.post__author .author__avtr img {
  border-radius: 50px;
  border: 1px solid #4a515950;
  padding: 2px;
}
.blog__post__content .blog__meta .post__date,
.blog__post__content .blog__meta .author__name {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4a5159;
  text-transform: capitalize;
}
.post__meta__cat .cat-links {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #4a5159;
  text-transform: capitalize;
  position: relative;
  padding-left: 2px;
}
.post__meta__cat span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #8c8d91;
  text-transform: capitalize;
  position: relative;
}
.post__meta__cat .cat-links i {
  display: none;
}
.blog__read__more__link a,
.blog__read__more__link a:hover,
.blog__read__more__link a:visited {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #547af7;
  text-transform: capitalize;
}
.blog__read__more__link i {
  font-weight: 600;
  font-size: 16px;
  color: #547af7;
  margin-left: 4px;
  transition: 0.5s;
}
.blog__post__content:hover .blog__read__more__link i{
  margin-left: 12px;
  transition: 0.5s;
}
.blog__post__content .blog__title h2 a{
  color: #051c35;
  display: inline;
  padding-bottom: 0;
  background-image: linear-gradient(to bottom, #000 0%, #000 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.7s;
}
.blog__post__content .blog__title h2 a:hover{
  background-size: 100% 1px;
}


/* Counup Style */
.countup__box__container {
  padding: 30px;
  text-align: center;
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 25px 0px #f4f4f4;
  box-shadow: 0px 5px 25px 0px #f4f4f4;
  border-radius: 8px;
}

.countup__icon i {
  font-size: 60px;
  color: #547AF7;
}
.countup__number h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 24px;
  text-transform: capitalize;
  color: #051c35;
  margin: 1rem 0;
}
.countup__title p {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
  text-transform: capitalize;
  color: #4a5159;
  margin: 0;
}

/* Pricing Style */
.pricing__table__container {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 25px 0px #f4f4f4;
  box-shadow: 0px 5px 25px 0px #f4f4f4;
  border-radius: 8px;
  padding: 50px 40px;
  position: relative;
  border: 4px solid transparent;
  transition: 0.5s;
}
.pricing__table__container:hover {
  position: relative;
  border: 4px solid #547af7;
  transition: 0.5s;
}
.pricing__table__features {
  display: flex;
  justify-content: center;
}
.pricing__table__features ul {
  padding: 0;
  list-style: none;
  margin: 28px 0;
}
.pricint__table__top .plan__name {
  background: #547af7;
  padding: 8px 20px 6px;
}
.plan__name h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  text-align: center;
}
.pricing__price {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing__price span {
  margin: 0;
  font-style: normal;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: #051c35;
  transition: color 0.25s;
}
.pricint__table__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
}
span.package_icon img {
  width: 70px;
  height: 70px;
}
span.plan_duration {
  font-size: 14px !important;
  line-height: 1.4;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 16px;
}
.pricing__table__features ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #051c35;
  line-height: 2;
}
.pricing__table__features ul li:before {
  content: "\EB7B";
  font-family: 'remixicon';
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
  box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
  padding: 4px;
  border-radius: 50px;
  margin-right: 6px;
}
.pricing__table__bottom a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  font-family: "Josefin Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  width: 100%;
  padding: 10px;
  color: #ffffff;
  transition: 0.3s;
  background: #547AF7;
}
.pricing__table__bottom a:visited{
  color: #ffffff;
}
.product-cat-filter ul {
  margin: 0.5rem 0 2rem;
  padding: 0;
  list-style: none;
}
.product-cat-filter ul li {
  display: inline-block;
  padding: 0.3rem 1rem;
  cursor: pointer;
  margin: 8px;
  border: 1px solid;
  min-width: 100px;
  border-radius: 4px;
  transition: 0.3s;
}
.product-cat-filter ul li:hover {
  border: 1px solid #547AF7;
  background: #547AF7;
  color: #ffffff;
}

.before_dash {
  padding-left: 60px;
  position: relative;
}
.before_dash:before {
  content: '';
  width: 50px;
  height: 2px;
  background: #FB502F;
  position: absolute;
  top: 50%;
  left: 0;
}

/* Reviews */
.client__reviews__wrapper .single {
  text-align: center;
  border-radius: 15px;
  background-color: white;
  -webkit-box-shadow: 0px 5px 25px 0px #f4f4f4;
  box-shadow: 0px 5px 25px 0px #f4f4f4;
  margin: 40px 20px 20px;
  padding: 40px 40px 40px;
}
.client__reviews__wrapper .single .icon {
  margin-top: -75px;
}
.client__reviews__wrapper .single .icon img {
  height: 80px;
  max-width: 80px;
  width: 80px;
  border-radius: 50px;
  margin: 0px auto 0px;
}
.client__reviews__wrapper .single .content p.text {
  color: #4a5159;
  font-weight: 500;
  padding: 25px 0px 21px;
  margin-bottom: 0;
}
.client__reviews__wrapper .single .content .man .content .review {
  margin-bottom: 5px;
}
.client__reviews__wrapper .single .content .man .content .review i {
  color: #ffad54;
  font-size: 12px;
}
.client__reviews__wrapper .single .content .man .content h5 {
  font-size: 18px;
  margin-bottom: 0px;
}
.client__reviews__wrapper .single .content .man .content span.position {
  display: block;
  color: #547AF7;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}
.client__reviews__wrapper .reviewsSwiper .swiper-button-next, 
.client__reviews__wrapper .reviewsSwiper .swiper-button-prev{
  width: 0px !important;
}
.client__reviews__wrapper .reviewsSwiper .swiper-button-next:after, .client__reviews__wrapper .reviewsSwiper .swiper-rtl .swiper-button-prev:after {
  content: "\EA6C";
  font-family: 'remixicon';
  position: relative;
  right: 30px;
}
.client__reviews__wrapper .reviewsSwiper .swiper-button-prev:after, .client__reviews__wrapper .reviewsSwiper .swiper-rtl .swiper-button-next:after{
  content: "\EA60";
  font-family: 'remixicon';
  position: relative;
  left: 30px;
}
.client__reviews__wrapper .reviewsSwiper .swiper-button-next:after, .client__reviews__wrapper .reviewsSwiper .swiper-rtl .swiper-button-prev:after,
.client__reviews__wrapper .reviewsSwiper .swiper-button-prev:after, .client__reviews__wrapper .reviewsSwiper .swiper-rtl .swiper-button-next:after{
  font-size: 28px;
  background: #ffffff;
  padding: 6px;
  border-radius: 50px;
  color: #547af7;
  border: 1px solid #547af7;
  -webkit-box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
  box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
  transition: 0.5s;
}
.client__reviews__wrapper .reviewsSwiper .swiper-button-next:hover:after, 
.client__reviews__wrapper .reviewsSwiper .swiper-rtl .swiper-button-prev:hover:after, 
.client__reviews__wrapper .reviewsSwiper .swiper-button-prev:hover:after, 
.client__reviews__wrapper .reviewsSwiper .swiper-rtl .swiper-button-next:hover:after {
  background: #547af7;
  color: #ffffff;
  transition: 0.5s;
}
/* Faq */
.accordion-item.faq__accordion {
  border: 0;
}
.faq__accordion button:focus {
  box-shadow: none;
}
.faq__accordion .accordion-button, .faq__accordion .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #051c35;
  font-size: 20px;
  font-weight: 500;
  padding: 1.5rem;
  border-bottom: 1px solid #dee2e6;
  box-shadow: none;
  line-height: 1.6;
}
.faq__accordion button:hover{
  background-color: #ffffff;
  color: #051c35;
}

/* Contact Form */
.wpcf7-form label {
  width: 100%;
}

input.wpcf7-form-control,
textarea.wpcf7-form-control{
  border: 0 !important;
  border-bottom: 1px solid #e7e9eb !important;
}

/* Dokan Store */
.widget.dokan-store-widget.dokan-store-contact h3,
.widget.dokan-store-widget.dokan-store-menu h3 {
	font-size: 22px;
}
.dokan-store-products-ordeby {
	display: flex;
	gap: 30px;
}

/* Sidebar Column top Sticky */
.parent-sticky .elementor-widget-wrap { /*Add class 'parent-sticky' into elementor column */
  display: block !important;
}
.sidebarsticky { /*Add class 'sidebarsticky' into elementor column inner section*/
  position: sticky !important;
  top: 100px;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .masonry_column_two,
  .masonry_column_three {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}
@media (max-width: 576px) {
  .tab-small-list-item.tab-bottom-grid-style .block-list-thumbnail-wrap img {
    margin-bottom: 1rem;
  }
  .social__share_btn_small,
  .social__share_btn_large {
    position: absolute;
    bottom: 26px;
    right: 10px;
  }
  .slider-post-meta-items-extra {
    gap: 1.5rem 6px;
  }
  
}
/*  Medium devices (tablets, 768px and up) */
@media (max-width: 767px) {
  .custom-subscribe-form-wrapper input[type="submit"] {
    padding: 10px 16px;
  }
  .custom-subscribe-form-wrapper input[type="email"] {
    padding: 13.5px 0 18.5px;
    padding: 13.5px 105px 18.5px 24px;
  }
  .post-block-list {
    -webkit-box-shadow: 0px 5px 25px 0px #f4f4f4;
  box-shadow: 0px 5px 25px 0px #f4f4f4;
    margin: 0.5rem;
  }
  .countup__box__container {
    margin-bottom: 2rem;
}
.single-article-title h1 {
  font-size: 36px;
}
}

@media (min-width: 768px) and (max-width: 991px) {
  .sidebar.blog-sidebar {
    column-count: 2;
    gap: 1.5rem;
  }
  .blog-sidebar .widget {
    break-inside: avoid;
  }
  
}

@media (min-width: 768px) {
  .post-block-list {
    display: flex;
    gap: 24px;
    align-items: center;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .masonry_column_two {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
  .masonry_column_three {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

@media (max-width: 1199px) {
  .tab-section-title {
    margin-bottom: 60px;
  }
  .news_tab_Block .nav-tabs {
    top: 40px;
  }
}

.coose-title-space figure img {
  margin-bottom: 24px;
}