/* ======all font use====== */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1170px;
  }
}

/* ====end CSS Variable=== */

body {
  font-family: "Roboto", sans-serif;
  color: #666666;
  font-size: 15px;
  line-height: 25px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #292929;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 15px;
}

ul,
ol {
  padding-left: 0;
  margin-bottom: 0;
}

strong a {
  color: #cc3333;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #666;
}

a:hover {
  color: #cc3333;
}

/*========== BASE ==========*/

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

button:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
textarea {
  color: #666;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #666;
  font-size: 14px;
  opacity: 1;
  transition: 0.3s;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #666;
  font-size: 14px;
  opacity: 1;
  transition: 0.3s;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #666;
  font-size: 14px;
  opacity: 1;
  transition: 0.3s;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #666;
  font-size: 14px;
  opacity: 1;
  transition: 0.3s;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
}

input[type="url"]:focus {
  outline: none;
}

.password-input #password {
  padding-right: 41px;
}

/* ==========custom button ==== */

.custom-btn {
  outline: none;
  background: #cc3333;
  color: #fff;
  padding: 10px 35px;
  transition: 0.3s;
  display: inline-block;
  border: none;
  border-radius: 3px;
}

.banner-2 .custom-btn {
  background: #79a1bb;
}

.custom-btn-alt {
  outline: none;
  background: #fff;
  color: #cc3333;
  padding: 10px 35px;
  transition: 0.3s;
  display: inline-block;
}

.custom-btn-alt:hover {
  background: #cc3333;
  color: #fff;
}

.custom-btn:hover {
  background: #292929;
  color: #fff;
}

.cmy-5 {
  margin: 3rem 0rem;
}

.cmt-5 {
  margin-top: 3rem;
}

.cmb-5 {
  margin-bottom: 3rem;
}

.cmb-7 {
  margin-bottom: 80px;
}

.cpt-5 {
  padding-top: 3rem;
}

.cpb-5 {
  padding-bottom: 3rem;
}

.cmt-6 {
  margin-top: 100px;
}

.cmb-6 {
  margin-bottom: 100px;
}

.cpt-6 {
  padding-top: 105px;
}

.cpb-6 {
  padding-bottom: 105px;
}

.cpy-5 {
  padding: 3rem 0rem;
}

.cpy-6 {
  padding: 105px 0;
}

.cpy-8 {
  padding-top: 105px;
  padding-bottom: 80px;
}

.z-1 {
  z-index: 1;
}

/* page loader  */

#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0px;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #cc3333;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

.wrapper {
  overflow-x: hidden;
}

.custom-btn-light {
  outline: none;
  background: #cc3333;
  color: #fff;
  padding: 10px 35px;
  transition: 0.3s;
  display: inline-block;
  border: none;
}

.custom-btn-light:hover {
  background: #fff;
  color: #cc3333;
}

.header.header-1.navbar-fixed {
  position: fixed;
  background: #fff;
  z-index: 3;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  box-shadow: 0px 7px 20px 0px #adadad4a;
  width: 100%;
}

.header-default.header {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
}

.header-2 {
  padding: 30px 0;
}

.header-2 a:hover {
  color: #79a1bb;
}

.header-2.theme-3 a:hover {
  color: #FBB217;
}

.logo {
  padding: 15px 0;
}

.logo img {
  max-width: 120px;
}

img.contact-icon {
  padding-right: 10px;
}

/* toggle menu  */

.search-input:focus {
  box-shadow: none !important;
}

.cb-search-formm {
  display: none;
}

.cb-search-formm.active {
  display: block;
}

/* ==========header end ===== */

/* ** Feature section */

/* ======================================================
                Social 
====================================================== */

ul.right-social-ul {
  display: flex;
  align-items: center;
  writing-mode: vertical-lr;
  position: absolute;
  right: 0;
  top: 25%;
}

ul.right-social-ul li {
  padding: 12px;
}

.share-link {
  color: #666666;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  margin-top: 20px;
  display: flex;
}

.share-link:hover {
  color: #cc3333;
  text-decoration: revert;
}

.social-sec-2 .share-link {
  color: #fff;
}

.social-sec-2 .share-link:hover {
  color: #79a1bb;
}

.social-sec-3 .share-link:hover {
  color: #FBB217;
}

/* ==========================
        Banner 
========================== */

.banner.banner-1 {
  background-repeat: no-repeat;
  background-size: cover;
  height: 760px;
  display: flex;
  align-items: center;
  padding-top: 0;
  position: relative;
  padding-top: 100px;
}

.banner-1 .bannerSlider .swiper-wrapper .swiper-slide {
  padding: 50px 0;
}



@media screen and (max-width: 991px) {
  .banner.banner-1 {
    height: auto !important;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.slider-details {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-item-img img {
  width: 90%;
}

.banner-1 .text-inner .sm-title {
  font-size: 20px;
  font-family: "Lobster Two", cursive;
  color: #cc3333;
  line-height: 1;
}

.banner-title {
  font-size: 46px;
  margin: 20px 0;
  line-height: 1.3;
  color: #292929;
}

.banner-2 .banner-title {
  color: #fff;
}

.banner-1 .banner-des {
  font-size: 17px;
  line-height: 29px;
  margin-bottom: 40px;
  color: #666;
}

.serv-list .list-des p {
  margin-bottom: 0;
}

.mb-15 {
  margin-bottom: 15px;
}

.customer .review p {
  margin-bottom: 0;
}

/* =============banner slider======== */

.banner-pagination {
  justify-content: center;
  align-items: center;
  display: flex;
  bottom: 10px;
}

.banner.banner-1 .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 30px;
}

.banner.banner-1 .banner-pagination .swiper-pagination-bullet {
  width: 60px;
  border-radius: 0;
  height: 5px;
  background: #000;
  opacity: 0.2;
}

.banner.banner-1 .banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #cc3333;
}

.banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #79a1bb;
  opacity: 1;
}

.banner-1 .bannerSlider .swiper-wrapper {
  padding: 50px 0;
}

/* =========================================================
                    Feature section style 
========================================================= */
.postbox__thumb.w-img img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.feature-card {
  border: 1px solid #f2f2f2;
  padding: 10px;
  text-align: center;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.feature-card:hover {
  border-color: #fff;
  box-shadow: 0px 0px 20px 1px #e7e6e6;
  background: #fff;
}

.feature-box {
  display: inline-flex;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #fff9f4;
  margin-top: 20px;
  margin-bottom: 20px;
}

.feature-name {
  font-size: 20px;
  margin-bottom: 10px;
  transition: 0.3s;

}

.feature-name a {
  color: #292929;
}

.discover-bt {
  color: #666666;
  font-weight: 500;
  margin-top: 10px;
  display: flex;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  justify-content: center;
  align-items: center;
}

.discover-bt:before,
.discover-bt::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #666666;
  display: inline-flex;
  margin: 10px;
  transform: rotate(45deg);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.feature-details {
  padding: 20px;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 0;
}

.feature-card:hover .feature-name a {
  color: #cc3333;
}

.feature-card:hover .discover-bt {
  color: #cc3333;
}

.feature-card:hover .discover-bt:before {
  content: "";
  background: #fce0c7;
}

.feature-card:hover .discover-bt::after {
  content: "";
  background: #fce0c7;
}

/* ==========================================
        Subscribe 
========================================== */
.hero-text {
  height: 100%;
  align-items: center;
  display: grid;
  align-items: center;
}

.subscribe {
  padding: 100px 0;
  background: #0000007d;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #cc3333;
  outline: 0;
  box-shadow: none;
}

.footer-2 .form-control:focus {
  border-color: #79a1bb;
}

.subs-title {
  color: #fff;
  font-size: 30px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.subs-des {
  color: #fff;
  font-size: 15px;
}

.input-group-text {
  border: none;
  border-radius: 0;
}

/* =============================
            ABOUT
============================= */

.about-title {
  font-size: 36px;
}

.service-name {
  font-size: 16px;
}

.ab-service-li {
  display: flex;
  align-items: center;
}

.service-name-des {
  margin-left: 20px;
}

.about-1 .service-icon {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff9f4;
  flex: 0 0 55px;
  max-width: 55px;
  border-radius: 3px;
}

.about-details {
  padding-left: 10px;
}

.padleft40 .footer-content-wrapper {
  padding-left: 40px;
}

.padright40 .footer-content-wrapper {
  padding-right: 40px;
}

/* ==================================================
                    Product section 
================================================== */

.product-inner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.cat-menu-li {
  display: inline-grid;
  margin: 13px;
  cursor: pointer;
}

.product.product-2,
.product-2 .all-product {
  background-color: transparent;
}

img.cat-icon {
  width: 70px;
}

.about-2 .sec-sm-title,
.contact-area-2 .sm-title {
  color: #79a1bb;
}

.contact-area-2 .custom-btn {
  background-color: #79a1bb;
}

.contact-area-2 .custom-btn:hover {
  background: #292929;
}

.cat-name {
  font-size: 18px;
  font-family: "Lobster Two", cursive;
  transition: 0.3s;
}

.product-2 .sm-title {
  color: #79a1bb;
}

.product-2 .cat-name {
  font-size: 17px;
  color: #666;
}

.cat-menu-li:hover span {
  color: #cc3333;
}

.product-2 .cat-menu-li span {
  color: #79a1bb;
}

.product-2 .cat-menu-li:hover span {
  color: #79a1bb;
}

.cat-menu-li.mixitup-control-active span {
  color: #cc3333;
}

.product-2 .cat-menu-li.mixitup-control-active span {
  color: #79a1bb;
}

.product-card {
  background: #fff;
  position: relative;
  box-shadow: 0px 6px 20px 1px #ddd;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

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

.all-product-1 .product-img img {
  width: 100%;
}

.all-product-1 .product-card {
  padding: 0;
  text-align: start;
}

.all-product-1 .product-details {
  padding: 25px;
}

.product-img img {
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.product-img {
  overflow: hidden;
  background-color: #f2f2f2;
}

.cart-price-wishlist {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sm-custom-btn:hover {
  color: #fff;
}

.product-sm-des {
  margin: 10px 0;
}

.delivery {
  color: #cc3333;
}

.sm-custom-btn {
  color: #fff;
  background: #292929;
  padding: 6px 10px;
  font-size: 18px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.product-price {
  position: absolute;
  background: #cc3333;
  color: #fff;
  padding: 3px 15px;
  top: 10px;
  left: 10px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  border-radius: 2px;
}

.wishlist-btn {
  opacity: 0;
  visibility: hidden;
}

.product-card:hover .wishlist-btn {
  opacity: 1;
  visibility: visible;
}

.sm-custom-btn.wishlist-btn {
  background: none;
  border: 1px solid #f2f2f2;
  color: #cc3333;
}

.product-card:hover .cart-btn {
  background: #cc3333;
}

/* ==================app section ============= */

.app-inner {
  background-repeat: no-repeat;
  background-size: cover;
}

.app-feature {
  padding: 50px;
}

.app-title {
  font-size: 36px;
  line-height: 1.3;
}

.app-store {
  display: flex;
}

.store img {
  width: 151px;
  margin: 15px 10px 0 0;
}

.app-img {
  position: relative;
}

img.app-one {
  position: absolute;
  right: 0;
  animation-delay: 2s;
  width: 48%;
  animation: second-app 1.5s linear infinite alternate;
  -webkit-animation: second-app 1.5s linear infinite alternate;
  margin-top: -30px;
}

@-webkit-keyframes second-app {
  0% {
    margin-top: -13px;
  }

  100% {
    margin-top: -20%;
  }
}

@keyframes second-app {
  0% {
    transform: translateY(-13px);
  }

  100% {
    transform: translateY(-30px);
  }
}

.app-section-1 img.app-tow {
  margin-top: 40px;
}

@-webkit-keyframes first-app {
  0% {
    margin-top: -20%;
  }

  100% {
    margin-top: -15%;
  }
}

@keyframes first-app {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(15px);
  }
}

/* ============availability===== */


.note-li:hover {
  color: #cc3333;
  border-color: #cc3333;
}

.note-footer-text {
  font-size: 20px;
  margin-bottom: 5px;
  color: #292929;
}

a.note-footer-text:hover {
  color: #cc3333;
}

/* ====================================================
                Team 
==================================================== */

.team {
  padding-top: 105px;
}

.member-img img {
  width: 100%;
  transition: 0.6s;
}

.member-img a {
  display: block;
}

.team-card:hover .member-img img {
  transform: scale(1.05);
}

.team-card.team-details-card:hover .member-img img {
  transform: scale(1);
}

.member-img {
  overflow: hidden;
}

.team-card {
  text-align: center;
  box-shadow: 0px 9px 20px 1px #98767626;
}

.member-details {
  padding: 15px 10px;
}

.team-card::after {
  content: "";
  height: 2px;
  width: 65%;
  background: #000;
  display: block;
  margin: auto;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.member-name {
  font-size: 20px;
  padding-bottom: 5px;
  color: #292929;
  font-weight: 600;
  transition: 0.3s;
  display: block;
}

.member-name:hover {
  color: #cc3333;
}

.team-card:hover::after {
  background: #cc3333;
}


/* ====================================================================
                    Customer Review 
==================================================================== */

.customer-name span {
  font-size: 14px;
  font-weight: 400;
}

.review-item {
  margin: 15px 0;
}

.review-pagination {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 10px;
}

.customer-1 .review-pagination .swiper-pagination-bullet-active {
  background: #cc3333;
}

.customer-1 .review-pagination {
  margin-bottom: 41px;
  margin-left: 38px;
  position: absolute;
  z-index: 99;
  text-align: center;
  display: flex;
  justify-content: start;
  align-items: center;
  bottom: 25px;
  left: 0;
  width: 100%;
}

/* ============================================================================
                                Blog and news
============================================================================ */


.post-des {
  padding: 15px 0;
  border-bottom: 1px solid #f2f2f2;
}

.date-view {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
}

.post-card {
  background: #fff;
  box-shadow: 0px 5px 20px 1px #00000029;
}

.view-more:hover {
  color: #cc3333;
  border-color: #cc3333;
}

.latest-blog-2 .view-more:hover {
  color: #79a1bb;
  border-color: #79a1bb;
}

/* ====================responsive======== */

.delivery-text {
  color: #cc3333;
}

.banner-bg {
  height: 750px;
  display: flex;
  align-items: center;
}

.text-inner .sm-title {
  font-weight: 600;
  color: #fff;
}

.banner-3 .text-inner .sm-title {
  color: #FBB217;
}

.bannerone {
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-img-tow {
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-img-there {
  background-size: cover;
  background-repeat: no-repeat;
}

.about-img {
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-2 .text-inner {
  padding-top: 90px;
}

/* ======================================================
                Social 
====================================================== */

ul.right-social-ul {
  display: flex;
  align-items: center;
  writing-mode: vertical-lr;
  position: absolute;
  right: 0;
  top: 25%;
  z-index: 99;
}

ul.right-social-ul li {
  padding: 12px;
}

/* ==========================
        Banner 
========================== */

.sm-title {
  font-size: 20px;
  font-family: "Lobster Two", cursive;
  color: #cc3333;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

.banner-title a {
  color: #cc3333;
  text-decoration: underline;
}

.banner-des {
  font-size: 17px;
  line-height: 29px;
  color: #fff;
  margin-bottom: 40px;
}

/* ======video animation ======= */

.video-btn {
  width: 45px;
  height: 45px;
  background: #cc3333;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: #fff;
  margin-right: 20px;
  position: relative;
}

.video-btn:hover {
  color: #fff;
}

.banner-2 .video-btn {
  background: #79a1bb;
}

.contact-area-2 .video-btn {
  background: #79a1bb;
}

.watch {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.watch span.wc-btn {
  color: #fff;
  font-weight: 500;
}

.banner-1 .watch .wc-btn {
  color: #292929;
}

.video-btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background: #cc3333;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.banner-2 .video-btn:before {
  background: #79a1bb;
}

.contact-area-2 .video-btn:before {
  background: #79a1bb;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    -moz-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    -o-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
  }
}

.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 80);
  opacity: 0;
  transition: all ease 500ms;
  -webkit-transition: all ease 500ms;
  -moz-transition: all ease 500ms;
  -ms-transition: all ease 500ms;
  -o-transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 35px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms;
}

.video-overlay-close:hover {
  color: #cc3333;
}

.video-btn span {
  z-index: 10;
}

/* =============banner slider======== */

.banner-pagination {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  z-index: 1;
  margin-bottom: 20px;
}

.banner-pagination .swiper-pagination-bullet {
  width: 50px;
  border-radius: 0;
  height: 5px;
  background: #fff;
  opacity: 1;
}

/* =========================about============ */
.describe-2 .custom-btn {
  display: inline-block;
  margin-top: 20px;
  background: #79a1bb;
  border-radius: 3px;
}

.describe-2 .custom-btn:hover {
  background: #292929;
}

.sec-sm-title {
  color: #cc3333;
  text-transform: capitalize;
  font-family: "Lobster Two", cursive;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
}

.title {
  font-size: 36px;
  line-height: 1.3;
}

.des {
  padding: 15px 0;
}

.content-title {
  font-size: 20px;
  margin-top: 10px;
}

ul.about-ul li {
  width: 50%;
}

ul.about-ul {
  display: flex;
}

.serv-list {
  display: flex;
  align-items: center;
}

.serv-list img {
  width: 60px;
  height: 60px;
  padding: 5px;
}

.list-des {
  padding: 5px 15px;
}

.about-role {
  margin: 6px 0;
}

/* ===============describes=========== */

.describe {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 95px 0;
}

.describe-content {
  text-align: center;
  color: #fff;
}

.describe-sm-title {
  text-transform: uppercase;
}

.call-number {
  font-size: 20px;
  padding-bottom: 13px;
}

/* ==========================Product section style ================= */

.status-product {
  display: inline-block;
  background: #cc3333;
  padding: 0px 10px;
  color: #fff;
  position: absolute;
  left: 10px;
  transition: 0.3s;
  z-index: 1;
  margin-bottom: 0;
  margin-left: 10px;
  margin-top: 10px;
}

.product-card:hover .status-product {
  opacity: 1;
  visibility: visible;
}

.product-2 .status-product {
  background: #79a1bb;
  border-radius: 2px;
}

ul.cat-menu {
  display: initial;
  justify-content: center;
  align-items: center;
}

.cat-menu-li {
  padding: 1px 10px;
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  display: inline-grid;
  border-bottom: 2px solid;
  border-color: #fff;
  margin-top: 7px;
}

.product-card {
  text-align: center;
  position: relative;
  box-shadow: rgb(240 240 240) 0px 0px 41px 1px;
  padding: 10px;
  transition: 0.3s;
}

.product-name {
  color: #292929;
  font-weight: 400;
  font-size: 16px;
  transition: 0.3s;
}
.contact-form .input-group.flex-nowrap > p {
  display: flex;
  margin-bottom: 0;
}
#contact-message .input-group > p {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  display: flex;
}
.product-name a:hover {
  color: #cc3333;
}
.contact-form.mt-20  .input-group.flex-nowrap > p {
  margin-bottom: 0;
  display: flex;
}
#contact-message  .input-group.flex-nowrap.mb-30 > p {
  margin-bottom: 0;
  display: flex;
}
.header-2 .product-name a:hover {
  color: #79a1bb;
}

.header-2.theme-3 .product-name a:hover {
  color: #FBB217;
}

.product-2 .product-name a:hover {
  color: #79a1bb;
}

.latest-blog-2 .post-title:hover {
  color: #79a1bb;
}

ul.pd-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.woocommerce table.shop_table td.actions input#coupon_code {
  min-width: 120px;
  border: 1px solid #f2f2f2;
  height: 45px;
  padding: 0 15px;
}
.woocommerce table.shop_table td.actions button.button {
  background-color: #cc3333;
  color: #fff;
  height: 45px;
  padding: 0 15px;
  transition: all 0.3s linear 0s;
}
.woocommerce table.shop_table td.actions button.button:hover {
  background-color: #292929;
}
ul.rating li span {
  color: #f6d807;
  padding: 3px;

}
.woocommerce-cart .wc-proceed-to-checkout .subbit-cart-buttons a.checkout-button {
  padding: 0 15px;
  height: 45px;
  line-height: 45px;
  background-color: #cb3737;
  border-radius: 5px;
}
.woocommerce-cart .wc-proceed-to-checkout .subbit-cart-buttons a.checkout-button:hover {
  background-color: #292929;
}
ul.rating li span.unrated {
  color: #ddd;
}

.shop-btn {
  border: 1px solid #f2f2f2;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #292929;
  text-decoration: none;
  margin: 3px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.mt-50 {
  margin-top: 50px;
}

.shop-btn:hover {
  background: #cc3333;
  color: #fff;
  border-color: #cc3333;
}

.product-2 .shop-btn:hover {
  background: #79a1bb;
  border-color: #79a1bb;
}

/* ========================video area and contact section============ */

.video-area {
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 200px;
  height: 485px;
}

.delivery-area-3 .video-area {
  height: 385px;
}

.right-input-icon {
  position: absolute;
  right: 0;
  padding: 6px;
  color: #292929;
  z-index: 5;
  padding-right: 18px;
}

.submit-button-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.contact-offer img {
  width: 100%;
  height: 100%;
}

.contact-offer {
  text-align: right;
  height: 100%;
}

.form-wrapper {
  margin-top: -290px;
  background: #fff;
  box-shadow: 0px 11px 13px 1px #78787826;
}

.form-inside {
  padding: 40px 30px;
}

/* ====================================pricing table ========= */

.pricing-card {
  text-align: center;
  background: #cc3333;
  padding: 50px 30px;
  color: #fff;
  border: 2px solid #cc3333;
  transition: 0.3s;
}

.pricing-card.active {
  transform: scale(1.2);
  background: #fff;
  color: #292929;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.pricing-2 .pricing-card {
  background: #79a1bb;
  border: 2px solid #79a1bb;
}

.pricing-2.theme-1 .pricing-card {
  background: #cc3333;
  border: 2px solid #cc3333;
}

.pricing-2 .pricing-card.active {
  background: #fff;
}

.pricing-2 .custom-btn-alt {
  color: #666;
  margin-top: 10px;
  border-radius: 3px;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

.pricing-2.theme-1 .custom-btn-alt {
  color: #cc3333;
}

.pricing-2 .custom-btn-alt:hover {
  background: #fff;
}

.pricing-2 .pricing-card.active .custom-btn-alt {
  background: #79a1bb;
}

.pricing-2 .pricing-card.active .custom-btn-alt:hover,
.pricing-2.theme-1 .pricing-card.active .custom-btn-alt:hover {
  background: #292929;
}

.pricing-2.theme-1 .pricing-card.active .custom-btn-alt {
  background: #cc3333;
}

.describe.describe-2 {
  position: relative;
  z-index: 1;
}

.describe.describe-2:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.plan-name {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.pricing-2 .sm-title {
  color: #79a1bb;
}

.pricing-2.theme-1 .sm-title {
  color: #cc3333;
}

ul.future-list {
  padding: 10px 0;
}

ul.future-list li {
  margin: 5px 0;
}

.currency-type {
  font-size: 18px;
  display: inline;
}

.plan-price {
  color: #fff;
  font-size: 45px;
}

.package-time {
  font-size: 15px;
}

.pricing-card.active .plan-name {
  color: #292929;
}

.pricing-card.active .plan-price {
  color: #292929;
}

.pricing-card.active ul.future-list {
  color: #666666;
}

.pricing-card.active .custom-btn-alt {
  background: #cc3333;
  color: #fff;
}

.pricing-card-sec {
  margin-top: 52px;
  margin-bottom: 20px;
}

/* =============================================
        customer 
=========================================== */
.customer-details {
  text-align: center;
}

.customer-img {
  width: 130px;
  height: 130px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
}

.customer-2 .customer-img {
  margin-bottom: 15px;
}

.customer-2 .customer-name {
  margin-bottom: 5px;
}

.customer-2 .customer-title {
  margin-bottom: 5px;
}

.customer-img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: top;
}

.message {
  padding: 20px;
  font-size: 15px;
  line-height: 25px;
}

.review-pagination span.swiper-pagination-bullet-active-main {
  background-color: #cc3333;
  width: 8px;
  height: 8px;
}

span.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}

/* ============================================================================
                                Blog and news
============================================================================ */

.latest-blog {
  background-size: cover;
  background-repeat: no-repeat;
}

.post-img {
  overflow: hidden;
}

.post-img img {
  width: 100%;
  transition: 0.6s;
}

.post-card:hover .post-img img {
  transform: scale(1.05);
}

.post-des {
  padding: 15px 0;
  border-bottom: 1px solid #f2f2f2;
}

.post-card {
  background: #fff;
  box-shadow: 0px 5px 20px 1px #00000029;
}

.delivery-text {
  color: #cc3333;
}

/* ===================================================
            Header 
=================================================== */

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header.navbar-fixed {
  position: fixed;
  background: #fff;
  z-index: 100;
  padding: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  box-shadow: 0px 7px 20px 0px #adadad4a;
}

.slider-item-img {
  text-align: center;
}

.watch.justify-content-center {
  margin: 0;
}


/* toggle menu end  */

.second-home-nav {
  background: #fff;
  padding: 0 20px;
  box-shadow: 0px 7px 20px 0px #adadad4a;
}

.header.header-2.navbar-fixed {
  background: #fff;
  box-shadow: 0px 7px 20px 0px #adadad4a;
}

.header.header-2.navbar-fixed .second-home-nav {
  box-shadow: none;
}

.right-menu-icon {
  margin-left: 50px;
}

.icon-item {
  padding: 20px 7px;
  position: relative;
}

.cart-count {
  border: 1px solid #f2f2f2;
  padding: 0;
  min-width: 15px;
  height: 15px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 10px;
  top: -10px;
  right: -8px;
}

.cart-menu {
  position: absolute;
  background: #ffffff;
  backdrop-filter: blur(5px);
  right: 0;
  padding: 10px 20px;
  width: 275px;
  box-shadow: 0px 11px 20px 1px #54545445;
  margin-top: 20px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  padding-bottom: 20px;
}

.nav-list {
  position: relative;
  z-index: 2;
}

.cart-list {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.cart-img img {
  width: 50px;
}

.remove-icon {
  color: #292929;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.remove-icon:hover {
  color: #cc3333;
}

.header-2 .remove-icon:hover {
  color: #79a1bb;
}

.header-2.theme-3 .remove-icon:hover {
  color: #FBB217;
}

.cart-px-name {
  font-size: 15px !important;
}

.right-menu-icon .cart-menu .cart-ul .cart-px-name {
  font-size: 15px !important;
}

.nav-list:hover .cart-menu {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

/* ==========header end ===== */

.cart-modal-btn {
  display: flex;
  justify-content: space-around;
}

.header-2 .cart-modal-btn .custom-btn {
  background: #79a1bb;
}

.header-2 .cart-modal-btn .custom-btn:hover {
  background: #292929;
}

.header-2.theme-3 .cart-modal-btn .custom-btn {
  background: #FBB217;
}

.header-2.theme-3 .cart-modal-btn .custom-btn:hover {
  background: #292929;
  color: #fff;
}

/* ======================================================
                Social 
====================================================== */

ul.right-social-ul {
  display: flex;
  align-items: center;
  writing-mode: vertical-lr;
  position: absolute;
  right: 0;
  top: calc(25% + 60px);
  z-index: 1;
}

ul.right-social-ul li {
  padding: 12px;
}

.share-link {
  color: #666666;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.share-link:hover {
  color: #cc3333;
  text-decoration: revert;
}

/* ===============================social end============ */

/* ====================Banner============ */

.slider-details {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-1 .slider-item-img img {
  width: 100%;
  padding-top: 0px;
}

.banner-btn-sec {
  display: flex;
  align-items: center;
}

.about-img {
  display: flex;
  align-items: center;
  height: 100%;
}

/* =============banner slider======== */

.banner-pagination {
  justify-content: center;
  align-items: center;
  display: flex;
}

.bannerSlider .swiper-wrapper {
  padding: 0;
}

@media screen and (max-width: 991px) {
  .bannerSlider .swiper-wrapper {
    padding: 0 !important;
  }
}


/* ===============banner end =============== */

/* =========================about============ */

.des {
  padding: 15px 0;
}

ul.about-ul li {
  width: 65%;
}

.serv-list {
  display: flex;
  align-items: center;
}

.serv-list img {
  height: 50px;
  padding: 5px;
}

.list-des {
  padding: 15px;
}

.list-title {
  font-size: 18px;
  margin-bottom: 5px;
}

.about-role {
  margin-bottom: 10px;
}

.about-content {
  padding-left: 25px;
}

/* ==========================================
        Subscribe 
========================================== */
.mb-120 {
  margin-bottom: 120px;
}

.subscribe-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-text {
  height: 100%;
  align-items: center;
  display: flex;
}

.subscribe {
  padding: 100px 0;
  background: #0000007d;
  position: relative;
}

.content-subs {
  z-index: 5;
}

.subscribe::before {
  content: "";
  clip-path: polygon(0% 0%, 100% 0%, 76% 100%, 0% 100%);
  background: #FBB217e3;
  height: 100%;
  display: block;
  width: 60%;
  position: absolute;
  top: 0;
}

.subscribe-wrapper-1 .subscribe::before {
  display: none;
}

.contact-area-2 .form-control:focus {
  border-color: #79a1bb;
}

.subscribe-wrapper-1 .form-control {
  padding: 0.775rem 0.75rem;
  border-radius: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.subs-des {
  color: #fff;
  font-size: 15px;
}

.input-group-text {
  border: none;
  border-radius: 0;
}

.custom-logo-link img {
  max-width: 120px;
}

.hero-text {
  align-items: center;
  display: flex;
}

.hero-form {
  width: 100%;
}

.latest-blog.latest-blog-2 {
  background-color: #e4f4ff;
}

/* ==========================Product section style ================= */

.post-entry.post-entry--top-margin .woocommerce-error {
  padding-left: 3.5em;
}

.app-inner .app-feature .app-store img {
  border-radius: 5px;
}

.project-title {
  font-size: 20px;
  font-weight: 600;
  color: #292929;
  transition: 0.3s;
}

.project-title:hover {
  color: #cc3333;
}

ul.cat-menu {
  display: initial;
  justify-content: center;
  align-items: center;
}

.cat-menu-li {
  padding: 5px 20px;
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  display: inline-grid;
}

.product-card {
  text-align: center;
  position: relative;
}

ul.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

ul.pd-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.rating li span {
  color: #f6d807;
  padding: 3px;
}

ul.rating li span.unrated {
  color: #ddd;
}

.price {
  color: #292929;
}

.shop-btn {
  border: 1px solid #f2f2f2;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #292929;
  text-decoration: none;
  margin: 3px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

/* =======================================================Delivery========== */

.delivery {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right center;
  height: 315px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 30px;
  padding-bottom: 40px;
}

.delivery-img img {
  width: 100%;
  position: absolute;
  right: 0%;
  top: -65px;
}

.delivery-img {
  text-align: center;
  position: relative;
}

.delivery-content {
  color: #fff;
}

.delivery-title {
  color: #fff;
  font-size: 32px;
}

.delivery-content p {
  padding: 20px 0;
}

.delivery {
  margin-top: -175px;
}

.delivery .row {
  width: 100%;
}

/* =============================================
        customer 
=========================================== */
.customer {
  position: relative;
  z-index: 1;
}

.customer-details {
  text-align: center;
}

.message {
  padding: 20px;
  font-size: 15px;
  line-height: 25px;
}

.customer-1 .customer-img {
  width: 100%;
  border-radius: 0;
  min-height: 430px;
}

.mt-35 {
  margin-top: 35px;
}

.customer-2 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66);
}

.customer-2 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66);
}

.customer-2 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  width: 15px;
  height: 15px;
  left: 0 !important;
}

.customer-2 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
  background: #79a1bb;
}

.customer-2 .review-pagination {
  left: 0;
  transform: translateX(0) !important;
  margin: 0 auto;
}

.customer-2 .review-item {
  margin-top: 0;
}

.customer-2 .sm-title {
  color: #79a1bb;
}

.latest-blog-2 .sm-title {
  color: #79a1bb;
}

/* ============================================================================
                                Blog and news
============================================================================ */

.post-des {
  padding: 15px 0;
  border-bottom: 1px solid #f2f2f2;
}

.post-card {
  background: #fff;
  box-shadow: 0px 5px 20px 1px #00000029;
}

/* ================================service =================== */

.pl-40 {
  padding-left: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.service-icon img {
  transition: 0.3s;
  width: 60px;
  height: 60px;
}

.about-1 .service-icon img {
  width: auto;
  height: auto;
}

.service-card:hover .service-name {
  color: #fff;
}

.service-card:hover .service-sm-des {
  color: #fff;
}

.service-card:hover .show-btn {
  color: #fff;
}

.feature-icon-sec .feature-box img {
  max-width: 40px;
}

/* ==================app section ============= */
.post-entry.post-entry--top-margin ul,
.post-entry.post-entry--top-margin ol {
  padding-left: 15px;
}

.post-entry.post-entry--top-margin>ul,
.post-entry.post-entry--top-margin>ol {
  margin-bottom: 15px;
}

.app-section {
  margin: 55px 0 80px;
}

img.app-tow {
  position: absolute;
  left: 0;
  animation-delay: 2s;
  width: 48%;
  animation: first-app 1.5s linear infinite alternate;
  -webkit-animation: first-app 1.5s linear infinite alternate;
}

@-webkit-keyframes first-app {
  0% {
    margin-top: -20%;
  }

  100% {
    margin-top: -15%;
  }
}

@keyframes first-app {
  0% {
    transform: translateY(-20%);
  }

  100% {
    transform: translateY(-15%);
  }
}

.delivery-text {
  color: #cc3333;
}

/* ====================================================about page ================== */

.page-banner {
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 135px;
  padding-bottom: 70px;
}

.menu-product .cat-name {
  font-family: inherit;
  font-size: 18px;
}

.menu-product .cat-menu-li {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 2px solid transparent;
  margin-top: 5px;
}

.menu-product .cat-menu-li.mixitup-control-active {
  border-color: #cc3333;
}

.page-ban-content {
  text-align: center;
}

.mt-25 {
  margin-top: 25px;
}

.breadcrumb-list a {
  color: #fff;
  transition: 0.3s;
}

.breadcrumb-list a:hover {
  color: #cc3333;
}

.breadcrumb-list>span {
  color: #fff;
}

.page-head {
  color: #fff;
}

.mb-25 {
  margin-bottom: 25px;
}

.note-title {
  font-size: 32px;
}

.available-head {
  font-size: 36px;
  line-height: 1.3;
}

.sec-title {
  font-size: 36px;
}

.service-name {
  font-size: 16px;
}

.ab-service-li {
  display: flex;
  align-items: center;
}

.service-name-des {
  margin-left: 20px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-details {
  padding-left: 10px;
}

/* ===========================about END=============== */

/* ===============describes=========== */

.describe-content {
  text-align: center;
  color: #fff;
}

.call-sec-title {
  color: #fff;
  margin-bottom: 15px;
  font-size: 36px;
}

.describe-sm-title {
  text-transform: uppercase;
}

.call-number {
  font-size: 20px;
  padding-bottom: 13px;
}

/* ====================================================
                Team 
==================================================== */

.member-img img {
  width: 100%;
}

.team-card {
  text-align: center;
  box-shadow: 0px 9px 20px 1px #98767626;
}

.member-details {
  padding: 20px 15px;
}

.team-card::after {
  content: "";
  height: 2px;
  width: 65%;
  background: #000;
  display: block;
  margin: auto;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.member-name {
  font-size: 20px;
  padding-bottom: 5px;
  color: #292929;
  font-weight: 600;
  transition: 0.3s;
  display: block;
}

.cafeto-shop-details-review-box-wrap .comment-text .description p:last-child {
  margin-bottom: 0;
}

.member-name:hover {
  color: #cc3333;
}

.team-details-card .member-name:hover {
  color: #292929;
}

.team-card:hover::after {
  background: #cc3333;
}

/* ============availability===== */

.bg-availa {
  background: #070707ba;
  padding: 60px 0;
}

.available-note {
  position: absolute;
  background: #fff;
  width: 100%;
  padding: 40px 20px;
  box-shadow: 0px 15px 20px 1px #9c9c9c52;
}

.note-li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #f2f2f2;
  padding: 5px;
  transition: 0.3s;
}

.contact-form .input-group.flex-nowrap textarea {
  padding-right: 45px;
}

.avail-inner {
  width: 100%;
  position: relative;
}

.note-head {
  text-align: center;
  padding-bottom: 21px;
}

.note-title {
  margin-top: 10px;
}

.note-footer {
  text-align: center;
  padding-top: 25px;
  font-family: "Lobster Two", cursive;
}


.available-head {
  color: #fff;
  margin: 20px 0;
}

.available-content {
  color: #fff;
}

/* ====================================================================
                    Customer Review 
==================================================================== */

.service-name-des h4 {
  font-size: 17px !important;
}

.customer .review {
  padding: 50px 40px;
  box-shadow: 0px 0px 13px 1px #ddd;
  border-left: 2px solid #cc3333;
  height: 100%;
  padding-top: 40px;
}

.review-title {
  font-size: 28px;
  line-height: 1.4;
}

.customer .review p {
  padding: 15px 0;
}

.customer-name {
  font-size: 20px;
}


/* =====================About page end ========= */

/* ================================service =================== */

.service-card {
  padding: 28px;
  border: 1px solid #f2f2f2;
  text-align: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.service-icon.serv-icon {
  width: 100%;
  background: none;
}

.service-name {
  font-size: 20px;
  margin: 15px 0;
  transition: 0.3s;
}

.service-sm-des {
  margin-bottom: 20px;
  transition: 0.3s;
}

.show-btn {
  font-size: 17px;
  text-decoration: revert;
  font-weight: 400;
  color: #cc3333;
  transition: 0.3s;
}

.service-card:hover {
  background: #cc3333;
}

.service-card:hover .service-icon img {
  filter: invert(1);
}

.service-card:hover .service-name {
  color: #fff;
}

.service-card:hover .service-sm-des {
  color: #fff;
}

.service-card:hover .show-btn {
  color: #fff;
}

/* ========================service details ==================== */

.post-inner-img {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #ddd;
  padding: 8px 0;
}

.service-link {
  color: #666666;
  transition: 0.3s;
}

.service-link:hover {
  color: #cc3333;
}

.title-name {
  font-size: 20px;
  display: inline-block;
}

.service-list {
  margin-top: 10px;
}

.note-head.bars {
  text-align: left;
}

.note-head.bars h2 {
  font-size: 20px;
}

.note-head.bars h4 {
  font-size: 15px;
}

.pl-50 {
  padding-left: 50px;
}

.product-slider img {
  width: 100%;
}

.mt-25 {
  margin-top: 25px;
}

.product-slider {
  position: relative;
}

.about-2-button .custom-btn {
  background: #79a1bb;
}

.about-2-button .custom-btn:hover {
  background: #292929;
}

.arrow-btn {
  background: #fff;
  padding: 0 15px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.arrow-btn:hover {
  background: #cc3333;
}

.arrow-btn::after {
  font-size: 20px;
  color: #292929;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.arrow-btn:hover::after {
  color: #fff;
}

.service-info img {
  width: 100%;
}

/* ==========================Product section style ================= */

.product-img img.gallery-img {
  width: 100%;
}

.product-card.gallery-card {
  box-shadow: none;
  padding: 0;
}

.view-project {
  position: absolute;
  background: #ffffffeb;
  right: 7%;
  bottom: 9%;
  top: 9%;
  left: 7%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  transform: scale(0.9);
}

.product-card:hover .view-project {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.product-card:hover .status-product {
  opacity: 1;
  visibility: visible;
}

.project-title {
  font-size: 20px;
  font-weight: 600;
  color: #292929;
  transition: 0.3s;
}

.project-title:hover {
  color: #cc3333;
}

tbody.table-body-text tr td {
  padding-top: 0;
}

/* ====================================pricing table ========= */

.pricing-card.active {
  transform: scale(1.2);
  background: #fff;
  color: #292929;
}

.plan-name {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

ul.future-list {
  padding: 10px 0;
}

ul.future-list li {
  margin: 10px 0;
}

.currency-type {
  font-size: 18px;
  display: inline;
}

.plan-price {
  color: #fff;
  font-size: 45px;
}

.package-time {
  font-size: 15px;
}

.pricing-card.active .plan-name {
  color: #292929;
}

.pricing-card.active .plan-price {
  color: #292929;
}

.pricing-card.active a.custom-btn-alt {
  background: #cc3333;
  color: #fff;
}

/* ===================================================================
                    Partner 
=================================================================== */

.partner {
  background-size: cover;
  background-repeat: no-repeat;
}

.partner-bg {
  padding: 82px 0;
}

.partner-logo {
  text-align: center;
}

.partner-logo img {
  width: 90%;
}

/* =====================menu====================== */

/* ==========================Product section style ================= */

ul.cat-menu {
  display: initial;
  justify-content: center;
  align-items: center;
}

.cat-menu-li {
  padding: 1px 10px;
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  display: inline-grid;
  border-bottom: 2px solid;
  border-color: #fff;
  margin-top: 7px;
}

.product-2 .cat-menu-li.mixitup-control-active {
  color: #79a1bb;
  border-bottom: 2px solid #79a1bb;
}

.all-product-1 li.cat-menu-li {
  border-bottom: 0;
}

.all-product-1 li.cat-menu-li.mixitup-control-active {
  border-bottom: 0;
  color: #cc3333;
}

.mb-40 {
  margin-bottom: 40px;
}

.product-card {
  text-align: center;
  position: relative;
  box-shadow: rgb(240 240 240) 0px 0px 41px 1px;
  transition: 0.3s;
}

.m-pd-card {
  padding: 10px;
}

.product-card:hover {
  margin-top: -10px;
}

.all-product-1 .product-card:hover {
  margin-top: 0;
}


ul.pd-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

ul.rating li span {
  color: #f6d807;
  padding: 3px;
}

ul.rating li span.unrated {
  color: #ddd;
}

.shop-btn {
  border: 1px solid #f2f2f2;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #292929;
  text-decoration: none;
  margin: 3px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

/* ======================================FAQ page design start===================== */

/*=====================================
          FAQ PART STYLE
======================================*/

.faq__head h2 {
  width: 570px;
}

.faq__content {
  margin-bottom: 24px;
  background: #ffffff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
}

.faq__content:hover .faq__que button {
  color: #000;
}

.faq__que {
  cursor: pointer;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
}

.faq__que button {
  border: none;
  outline: none;
  background: none;
  text-align: left;
  color: #292929;
  font-size: 16px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.faq__ans p {
  font-size: 15px;
  line-height: 26px;
  color: #666666;
}

.faq__ans {
  padding: 15px 25px;
}

.faq__que i {
  background: #292929;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
}

/*===============================================================
                    <!-- FAQ STYLE END -->
==================================================================*/

/* ============================================================================
                                Blog and news
============================================================================ */

.latest-blog.blog-bg {
  background: none;
}

.post-title {
  font-size: 20px;
  line-height: 28px;
  color: #292929;
  font-weight: 700;
  transition: 0.3s;
  display: block;
}

.post-title:hover {
  color: #cc3333;
}

.post-details {
  padding: 20px 25px;
}

.post-des {
  padding: 15px 0;
  border-bottom: 1px solid #f2f2f2;
}

.post-card {
  background: #fff;
  box-shadow: 0px 5px 20px 1px #00000029;
}

.view-more {
  color: #292929;
  transition: 0.3s;
  border-bottom: 1px solid #292929;
  font-weight: 400;
}

/* =================================================single blog post ========= */

.l-post-title {
  font-size: 36px;
  margin-bottom: 17px;
}

.recent-post-title {
  font-weight: 600;
  color: #292929;
  transition: 0.3s;
}

.recent-post-title:hover {
  color: #cc3333;
}

ul.post-date-time {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

ul.post-date-time li {
  margin-right: 15px;
}

.blog-inside-img {
  width: 100%;
}

.mark-des {
  padding: 33px;
  background: #f9f9f9;
  margin: 26px;
}

.client {
  text-align: right;
}

.client-name {
  font-size: 20px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-85 {
  padding-bottom: 85px;
}

.single-comment {
  display: flex;
}

.commenter-name {
  font-size: 15px;
  margin-bottom: 0;
}

.commenter-img {
  flex: 0 0 50px;
  min-width: 50px;
}

.date-reply {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
}

.comment-area .single-comment:not(:last-child) {
  margin-bottom: 45px;
}

.reply-btn {
  color: #292929;
  padding: 0px 10px;
  border: 1px solid #f2f2f2;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  font-size: 14px;
}

.reply-comment {
  margin-left: 85px;
}

ul.post-list li {
  display: flex;
  margin-bottom: 15px;
}

.recent-post-details {
  padding: 0 18px;
}

.recent-post-title {
  font-size: 17px;
  color: #292929;
  font-weight: 600;
}

ul.tags-ul {
  margin-top: 10px;
}

.tag-list {
  display: inline-grid;
}

.title-name:after {
  content: "";
  height: 2px;
  width: 50px;
  background: #cc3333;
  display: block;
}

.swiper-button-prev.arrow-btn {
  left: 0;
}

.swiper-button-next.arrow-btn {
  right: 0;
}

.reply-btn:hover {
  color: #fff;
  background: #cc3333;
}

ul.post-list {
  margin-top: 10px;
}

.admin-img img {
  border: 1px solid #f2f2f2;
  border-radius: 50%;
}

/* =======================contact========= */

.right-input-icon {
  position: absolute;
  right: 0;
  padding: 8px;
  color: #292929;
  z-index: 1;
  padding-right: 16px;
  font-size: 18px;
}

.form-control {
  border-radius: 0;
  padding: 9px 15px;
  font-size: 15px;
  border-color: #f2f2f2;
  border-radius: 3px;
}

.contact-offer img {
  width: 100%;
  height: 100%;
}

.contact-offer {
  text-align: right;
  height: 100%;
}

.form-wrapper.inner {
  margin-top: initial;
  background: #fff;
  box-shadow: 0px 0px 20px 1px #78787826;
}

/* =============================cart============== */

.cart-pd-img {
  width: 75px;
}

.cart-pd-img img {
  width: 100%;
}

.qty-td {
  width: 270px;
}

.qt-btn {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #cc3333;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 3px;
}

.qt-btn:hover {
  color: #fff;
  background: #292929;
}

table.table tr {
  vertical-align: middle;
}

.review-date.mb-5px {
  margin-bottom: 5px;
}

.shopping-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.coupon-form {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;
}

.coupon-inside h2 {
  margin-bottom: 15px;
  font-size: 25px;
}

td.cart-price {
  text-align: end;
}

.cart-total h2 {
  margin-bottom: 20px;
  font-size: 25px;
}

.total-sum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.sum-price {
  color: #cc3333;
  font-weight: 600;
}

.submit-cart {
  text-align: center;
  margin-top: 25px;
}

table.table {
  white-space: nowrap;
}

.input-group.quantity {
  flex-wrap: initial;
}

input.qty.form-control {
  min-width: 50px;
  max-width: 50px;
  text-align: center;
}

/* ===============================team view ============ */

.personal-info {
  background: #fff;
  box-shadow: 0px 1px 20px 1px #f2f2f2;
  margin-top: 50px;
  padding: 30px 30px;
}

table.info-table {
  width: 100%;
  color: #292929;
  font-weight: 500;
}

table.info-table tbody tr {
  padding: 5px 0;
  display: block;
}

.team-card-title {
  display: inline-block;
  position: relative;
}

.team-sec-title:before {
  content: "";
  border-bottom: 3px solid #cc3333;
  width: 40%;
  height: 3px;
  display: block;
  position: absolute;
  bottom: 0;
}

.team-sec-title {
  position: relative;
  padding-bottom: 2px;
  margin-bottom: 10px;
  display: inline-block;
}

.team-about {
  margin-bottom: 35px;
}

tbody.table-body-text {
  color: #666666;
}

.card-title {
  font-size: 20px;
}

/* ==============shop============= */

.view-img img {
  width: 90%;
}

.rating-div {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.rating-div p {
  padding-left: 10px;
}

.product-price {
  display: flex;
}

.product-price p {
  padding-left: 10px;
  color: #cc3333;
  font-size: 17px;
  font-weight: 500;
}

ul.info-list li {
  display: flex;
  align-items: center;
}

ul.info-list li p {
  padding-left: 5px;
  color: #cc3333;
  font-weight: 500;
}

.sm-des {
  margin-top: 15px;
}

ul.info-list {
  margin-top: 5px;
}

.size-qty {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.mb-3.select-box label {
  font-weight: 700;
  color: #292929;
}

.select-box {
  margin-right: 50px;
  width: -webkit-fill-available;
  display: inline-grid;
}

.cart-sec h4 {
  margin-bottom: 20px;
}

.share-link ul li a {
  color: #cc3333;
  transition: 0.3s;
}

.share-link ul li a:hover {
  color: #292929;
}

.product-review {
  border: none;
  box-shadow: none;
}

.comment-content {
  padding: 0;
  margin-bottom: 0;
}

.comment-date {
  padding: 0;
  margin-bottom: 0;
}

.information .table> :not(:first-child) {
  border-top: 1px solid #f2f2f2;
}

.nav-pills {
  margin-left: 13px;
  background: #f3f2f2;
  padding: 6px 10px 0;
}

.delivery-text {
  color: #cc3333;
}

.table> :not(:first-child) {
  border-top: none;
}

thead.product-table {
  background: #f6f6f6;
}

.header.header-2 .logo {
  padding: 15px 0;
}

.header.header-2 {
  background: #fff0;
  box-shadow: none;
}

/* =================Footer style =========== */

.footer-section {
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-content-wrapper {
  color: #fff;
}

ul.address li {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

ul.address li span {
  font-size: 30px;
}

.address-info {
  padding-left: 12px;
  line-height: 20px;
}

.footer-widget-title {
  color: #fff;
  font-size: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: inline-block;
}

.footer-widget-title:after {
  content: "";
  height: 2px;
  width: 70%;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}

.footer-content-wrapper ul li a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
}

.footer-content-wrapper ul li a:hover {
  color: #cc3333;
}

.footer-2 .footer-content-wrapper ul li a:hover {
  color: #79a1bb;
}

.footer-2 .custom-btn {
  background: #79a1bb;
}

.footer-2 .custom-btn:hover {
  background: #292929;
}

.social-ul li:not(:last-child) {
  margin-right: 10px;
}

ul.insta-feed {
  display: grid;
  grid-template-columns: auto auto auto;
}

.foot-list {
  margin: 5px;
  position: relative;
}

.footer-content-wrapper .menu-quick-links-container ul#menu-quick-links {
  margin-top: -5px;
}

.footer-link img {
  width: 100%;
}

.subscribe-des {
  margin-bottom: 20px;
  margin-top: -5px;
}

ul.social-ul {
  display: flex;
  margin-bottom: 0;
  list-style: none;
}

.social-link {
  color: #fff;
  transition: 0.3s;
}

.social-link:hover {
  color: #cc3333;
}

.last-footer {
  padding: 20px 0px;
  border-top: 1px solid #4a4a4a;
}

.copyright-text {
  color: #fff;
}

.insta {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #0009;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
}

.foot-list:hover .insta {
  opacity: 1;
  visibility: visible;
}

.footer-1 .address-info a {
  color: #fff;
  transition: 0.3s;
}

.footer-1 .address-info a:hover {
  color: #cc3333;
}

.ml-35 {
  margin-left: 35px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: end;
}

.header-right-search-phone a {
  color: #292929;
  transition: 0.3s;
  font-weight: 500;
}

.header-right-search-phone span {
  cursor: pointer;
  display: inline-block;
  color: #292929;
}

.header-right-search-phone a:not(:first-child) {
  margin-left: 35px;
}

.header-right-search-phone a:hover,
.header-right-search-phone span:hover {
  color: #cc3333;
}

.address-info a {
  color: #fff;
}

.footer-2 .address-info a:hover {
  color: #79a1bb;
}

/* =================Footer style end=========== */


.product-2 .product-img {
  background-color: #ddd;
}

.banner-3 {
  height: 100%;
  display: flex;
  align-items: center;
  background: #fff4f3;
  padding-top: 100px;
}

.banner-3 .slider-item-img img {
  padding-top: 50px;
  width: 100%;
}

.banner-3 .banner-des {
  color: #666;
}

.banner-3 .custom-btn {
  background: #FBB217;
}

.banner-3 .custom-btn:hover {
  background: #292929;
}

.banner-3 .video-btn {
  background: #FBB217;
}

.banner-3 .video-btn::before {
  background: #FBB217;
}

.about-3 .sec-sm-title {
  color: #FBB217;
}

.about-3 .custom-btn {
  background: #FBB217;
  margin-top: 15px;
}

.about-3 .custom-btn:hover {
  background: #292929;
}

.subscribe-3 .custom-btn {
  background: #FBB217;
}

.subscribe-3 .custom-btn:hover {
  background: #292929;
}

.subscribe-3 .form-control:focus {
  border-color: #FBB217;
}

.service-3 .sm-title {
  color: #FBB217;
}

.service-3 .show-btn {
  color: #FBB217;
}

.service-3 .service-card:hover {
  background: #FBB217;
  border-color: #FBB217;
}

.product-3 .sm-title {
  color: #FBB217;
}

.product-3 .product-card {
  padding: 0;
}

.product-3.theme-1 .sm-title {
  color: #cc3333;
}

.product-3 .cat-menu-li {
  border: 0;
}

.product-3 .cat-menu-li.mixitup-control-active span {
  color: #FBB217;
}

.product-3.theme-1 .cat-menu-li.mixitup-control-active span {
  color: #cc3333;
}

.product-3 .cat-menu-li:hover span {
  color: #FBB217;
}

.product-3.theme-1 .cat-menu-li:hover span {
  color: #cc3333;
}

.product-3 .project-title:hover {
  color: #FBB217;
}

.product-3.theme-1 .project-title:hover {
  color: #cc3333;
}

.product-3 .product-card:hover {
  margin-top: 0;
}

.footer-3 .address-info a:hover {
  color: #FBB217;
}

.footer-3 .footer-content-wrapper ul li a:hover {
  color: #FBB217;
}

.footer-3 .custom-btn {
  background: #FBB217;
}

.footer-3 .custom-btn:hover {
  background: #292929;
}

.footer-3 .form-control:focus {
  border-color: #FBB217;
}

.delivery-area-3 .video-btn {
  background: #FBB217;
}

.delivery-area-3 .video-btn:before {
  background: #FBB217;
}

.delivery-area-3 .custom-btn-light {
  background: #FBB217;
  margin-top: 10px;
  border-radius: 3px;
}

.delivery-area-3 .custom-btn-light:hover {
  color: #FBB217;
  background: #fff;
}

.customer-2.theme-3 .sm-title {
  color: #FBB217;
}

.customer-2.theme-3 .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
  background: #FBB217;
}

.latest-blog-3 .sm-title {
  color: #FBB217;
}

.latest-blog-3 .post-title:hover {
  color: #FBB217;
}

.latest-blog-3 .view-more:hover {
  color: #FBB217;
  border-color: #FBB217;
}

.header .container {
  position: relative;
  z-index: 1;
}

.search-form-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  transition: 0.5s;
}

.form-wrapper .contact-form input {
  padding-right: 47px;
}

/*  Header menu CSS  */

.header-menu li a {
  font-size: 15px;
  color: #292929;
  display: block;
  transition: 0.3s;
  padding: 20px 0;
  font-weight: 500;
}

.header-menu li {
  display: inline-block;
  position: relative;
  z-index: 3;
}

.header-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-menu .submenu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  z-index: 1;
  background-color: #fff;
  box-shadow: 1px 17px 20px 1px #5958581c;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid #cc3333;
}

.header-2 .header-menu .submenu {
  border-top: 3px solid #79a1bb;
}

.header-2.theme-3 .header-menu .submenu {
  border-top: 3px solid #FBB217;
}

.header-2 .icon-item {
  color: #292929;
  cursor: pointer;
}

.header-2 .icon-item:hover {
  color: #79a1bb;
}

.header-2.theme-3 .icon-item:hover {
  color: #FBB217;
}

.header-2.theme-3 .icon-item {
  color: #292929;
}

.header-menu ul>li:not(:last-child) {
  margin-right: 30px;
}

.header-menu li:hover>a {
  color: #cc3333;
}

.header-2 .header-menu li:hover>a {
  color: #79a1bb;
}

.header-2.theme-3 .header-menu li:hover>a {
  color: #FBB217;
}

.header-menu ul li .submenu li {
  display: block;
  margin-right: 0;
  border-bottom: 1px solid #f2f2f2;

}

.header-menu .submenu li a {
  display: block;
  padding: 8px 15px;
}

.header-menu .submenu li:last-child {
  border-bottom: 0;
}

.header-menu .submenu li:hover>a {
  background-color: #f2f2f2;
}

.header-menu li:hover>.submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header-menu li.has-submenu>a {
  position: relative;
  z-index: 1;
}

.header-menu li.has-submenu>a:after {
  font-family: 'IcoFont';
  content: "\ea99";
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  margin-left: 3px;
  transition: 0.3s;
  float: right;
}

.header-menu li.has-submenu:hover>a::after {
  content: "\eaa1";
}

.search-form-wrapper .form-control.search-input {
  padding: 9px 20px;
}

.header-menu .submenu .submenu {
  left: 100%;
}

.header-menu li>.submenu li:hover>.submenu {
  top: 0;
}

.dr-navbar-sign {
  cursor: pointer;
  transition: all 0.6s ease-in-out;
}

.dr-navbar-sign span {
  width: 20px;
  height: 2px;
  background-color: #292929;
  border-radius: 50px;
  display: block;
  margin: 4px 0;
  transition: all 0.6s ease-in-out;
}

.dr-navbar-sign span.dr-line-2 {
  width: 15px;
}

.dr-navbar-sign span.dr-line-3 {
  width: 10px;
}

.dr-navbar-sign:hover span {
  background-color: #cc3333;
}

.header-2 .dr-navbar-sign:hover span {
  background-color: #79a1bb;
}

.header-2.theme-3 .dr-navbar-sign:hover span {
  background-color: #FBB217;
}

.dr-navbar-sign:hover span.dr-line-2 {
  width: 20px;
}

.dr-navbar-sign:hover span.dr-line-3 {
  width: 20px;
}


/*   Sidebar CSS   */
.side-info:is(.info-open) {
  right: 0;
  overflow-y: scroll;
  scrollbar-width: thin;
}

.side-info {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  box-shadow: -2px 1px 20px 1px #00000024;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  right: -400px;
  transition: 0.4s;
  padding: 40px;
}

.mean-container .mean-nav {
  background: transparent;
}

.mean-container .mean-nav ul li a {
  border-color: #f8f8f8;
  font-size: 15px;
  color: #292929;
  text-transform: capitalize;
}

.mean-container .mean-nav ul li:hover>a {
  color: #cc3333;
  background-color: #f2f2f2;
}

.header-side-info-2 .mean-container .mean-nav ul li:hover>a {
  color: #79a1bb;
}

.header-side-info-3 .mean-container .mean-nav ul li:hover>a {
  color: #FBB217;
}

.mean-container .mean-nav ul li a.mean-expand {
  color: #292929;
  background-color: #f2f2f2;
  height: 35px;
  line-height: 35px;
  font-weight: 300;
}

.mean-container .mean-nav ul li li li a {
  padding-top: 10px;
  padding-bottom: 10px;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background-color: #ebebeb;
  color: #cc3333;
}

.header-side-info-2 .mean-container .mean-nav ul li a.mean-expand:hover {
  color: #79a1bb;
}

.header-side-info-3 .mean-container .mean-nav ul li a.mean-expand:hover {
  color: #FBB217;
}

.dr-sidebar-contact-title {
  font-size: 20px;
  margin-bottom: 20px;
}

.sidebar-address {
  display: flex;
  margin-bottom: 5px;
}

.sidebar-address i {
  max-width: 40px;
  height: 40px;
  background-color: #f2f2f2;
  line-height: 40px;
  text-align: center;
  margin-right: 15px;
  flex: 0 0 40px;
}

.dr-sidebar-contact>a {
  display: block;
  margin-bottom: 12px;
  color: #666666;
  transition: 0.3s;
}

.dr-sidebar-contact>a:hover {
  color: #cc3333;
}

.header-side-info-2 .dr-sidebar-contact>a:hover {
  color: #79a1bb;
}

.header-side-info-3 .dr-sidebar-contact>a:hover {
  color: #FBB217;
}

.dr-sidebar-contact>a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #f2f2f2;
  display: inline-block;
  margin-right: 15px;
  transition: 0.3s;
  color: #292929;
}

.dr-sidebar-social a:not(:last-child) {
  margin-right: 7px;
}

.dr-sidebar-social a:hover {
  color: #cc3333;
  background-color: #ebebeb;
}

.header-menu.mean-container li.has-submenu>a::after {
  display: none;
}

.fix {
  overflow: hidden;
}

.dr-sidebar-close {
  border: 0;
  background-color: transparent;
  box-shadow: 0px 1px 12px 1px #ddd;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #292929;
  font-weight: 700;
}

.dr-sidebar-close i {
  font-weight: 500;
}

.dr-sidebar-close:hover {
  color: #cc3333;
}

.header-side-info-2 .dr-sidebar-close:hover {
  color: #79a1bb;
}

.header-side-info-3 .dr-sidebar-close:hover {
  color: #FBB217;
}

.dr-sidebar-btn-wrap a {
  font-size: 16px;
  color: #292929;
  border: 1px solid #f2f2f2;
  height: 48px;
  width: 48px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  margin-right: 5px;
  position: relative;
  border-radius: 50%;
  padding: 0;
}

.dr-sidebar-btn-wrap a:hover {
  color: #cc3333;
}

.header-side-info-2 .dr-sidebar-btn-wrap a:hover {
  color: #79a1bb;
}

.header-side-info-3 .dr-sidebar-btn-wrap a:hover {
  color: #FBB217;
}

.offcanvas-overlay:is(.overlay-open) {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.offcanvas-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(4, 0, 23, 0.5);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  cursor: url(../../assets/img/icon/close.png), auto;
}

.header-menu li.menu-last .submenu {
  left: auto;
  right: 0;
}

.header-menu li.menu-last .submenu .submenu {
  left: auto;
  right: 100%;
}

.cart-list .price {
  margin-bottom: 0;
}

.cart-ul li {
  border-bottom: 1px solid #f2f2f2;
}

.cart-modal-btn {
  padding-top: 20px;
  border-top: 1px solid #f2f2f2;
}

.cart-ul .cart-img {
  margin-right: 10px;
}

.cart-ul .product-name {
  margin-bottom: 0;
  line-height: 20px;
}

.cart-ul .cart-product-details {
  margin-right: 10px;
}

.nav-list .icofont-shopping-cart {
  position: relative;
  z-index: 1;
  color: #292929;
}

.dr-sidebar-btn-wrap .cart-count {
  top: -5px;
  right: 0;
  min-width: 18px;
  height: 18px;
}

.contact-offer iframe {
  min-height: 350px;
}

.coupon-form .custom-btn {
  flex: 0 0 auto;
}

.mt-15 {
  margin-top: 15px;
}

.review-tab {
  background-color: #f3f2f2;
}

.review-tab li button {
  background-color: transparent;
  border: 0;
  padding: 10px 0;
  margin-left: 20px;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.review-tab li button:hover {
  color: #cc3333;
  border-color: #cc3333;
}

.review-tab li button.active {
  border-color: #c33;
  color: #cc3333;
}

.btn-sec .custom-btn:not(:last-child) {
  margin-right: 10px;
}

.product-main-info .name {
  font-size: 32px;
}

.review-title {
  font-size: 36px;
}

.customer-review-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.comment-form-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-sec-title {
  font-size: 24px;
}

.note-footer-text-cell {
  font-size: 20px;
  margin-bottom: 5px;
  color: #292929;
}

.service-heding {
  font-size: 28px;
}

.page-head {
  font-size: 40px;
  margin-bottom: 5px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.pl-30 {
  padding-left: 30px;
}

.team-about .table.table-borderless th {
  padding-left: 0;
}

.team-about .table.table-borderless td {
  padding-left: 0;
  padding-right: 35px;
}

.team-info a {
  color: #292929;
}

.team-info a:hover {
  color: #cc3333;
}

.personal-info .table {
  margin-bottom: 0;
}

.personal-info .table.table-borderless td {
  padding-bottom: 0;
}

.mb-35 {
  margin-bottom: 35px;
}

.pb-60 {
  padding-bottom: 60px;
}

.team-about .table {
  margin-bottom: 0;
}

.blog-meta-single {
  font-size: 15px;
  color: #666;
  margin-right: 15px;
  margin-bottom: 5px;
  display: inline-block;
}

.blog-meta-single a {
  color: #666;
  transition: 0.3s;
}

.blog-meta-single:last-child {
  margin-right: 0;
}

.blog-meta-single i {
  color: #cc3333;
  display: inline-block;
  margin-right: 5px;
}

.blog-meta-single a:hover {
  color: #cc3333;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.blog-details-title {
  font-size: 32px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.mt-30 {
  margin-top: 30px;
}

.mb-45 {
  margin-bottom: 45px;
}

.pb-15 {
  padding-bottom: 15px;
}

.blog-inner-title {
  font-size: 28px;
}

.blog-details-content {
  border: 1px solid #f2f2f2;
  padding: 40px 40px;
  border-radius: 5px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-35 {
  margin-bottom: 35px;
}

.info-list li p {
  margin-bottom: 0;
}

.blog-inner-tags a {
  padding: 3px 10px;
  border: 1px solid #f2f2f2;
  color: #666666;
  transition: 0.3s;
  margin-right: 3px;
  margin-bottom: 7px;
  display: inline-block;
}

.blog-inner-tags a:hover {
  border-color: #cc3333;
  background-color: #cc3333;
  color: #fff;
}

.blog-tag-label {
  color: #292929;
  font-weight: 500;
  display: inline-block;
  margin-right: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-30 {
  margin-bottom: 30px;
}

.pt-15 {
  padding-top: 15px;
}

.signle-comment-title {
  font-size: 24px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pt-105 {
  padding-top: 105px;
}

.pl-25 {
  padding-left: 25px;
}

.sidebar-title {
  font-size: 20px;
  position: relative;
}

.sidebar-title:after {
  width: 80px;
  height: 2px;
  background-color: #cc3333;
  content: "";
  display: block;
  margin-top: 10px;
}

.sidebar-title:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #f2f2f2;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.sidebar-post-single {
  display: flex;
}

.sidebar-post-img {
  margin-right: 15px;
  overflow: hidden;
  flex: 0 0 70px;
  max-width: 70px;
  height: 70px;
}

.sidebar-post-img:hover img {
  transform: scale(1.05);
}

.sidebar-post-img img {
  transition: 0.3s;

}

.sidebar-post-single:not(:last-child) {
  margin-bottom: 20px;
}

.sidebar-post-title {
  font-size: 16px;
  margin-bottom: 5px;
}

.sidebar-post-title a {
  color: #292929;
}

.sidebar-post-title:hover a {
  color: #cc3333;
}

.sidebar-tags a {
  padding: 5px 10px;
  border: 1px solid #f2f2f2;
  color: #666666;
  transition: 0.3s;
  margin-right: 3px;
  margin-bottom: 5px;
}

.sidebar-tags a:hover {
  border-color: #cc3333;
  background-color: #cc3333;
  color: #fff;
}

.contact-form textarea {
  height: 130px;
}

.comment-form textarea {
  height: 130px;
}

ul.service-list.mt-0 li:first-child {
  padding-top: 0;
}

ul.service-list.mt-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.postbox__content {
  padding: 40px 40px;
  border: 1px solid #f2f2f2;
  padding-top: 35px;
  border-radius: 5px;
}

.postbox__title {
  font-size: 28px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.postbox__title a {
  color: #292929;
  transition: 0.3s;
}

.postbox__title:hover a {
  color: #cc3333;
}

.tp-btn {
  font-size: 15px;
  background-color: #cc3333;
  display: inline-block;
  color: #fff;
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 3px;
}

.tp-btn:hover {
  color: #fff;
  background-color: #292929;
}

.popup-video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.p-relative {
  position: relative;
  z-index: 1;
}

.pulse-btn:hover {
  color: #fff;
  background-color: #292929;
}

.pulse-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #cc3333;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  animation: pulse 2s infinite;
  transition: 0.3s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.blog-slider-navigation span {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #cc3333;
  color: #fff;
  z-index: 1;
  line-height: 48px;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.blog-slider-active:hover .blog-slider-navigation span {
  opacity: 1;
  visibility: visible;
}

.blog-slider-navigation span.blog-slider-next {
  left: auto;
  right: 30px;
}

.blog-slider-navigation span:hover {
  color: #fff;
  background-color: #292929;
}

.basic-pagination ul li:not(:last-child) {
  margin-right: 10px;
}

.basic-pagination ul li {
  display: inline-block;
}

.basic-pagination ul li a,
.basic-pagination ul li span {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid #f2f2f2;
  font-size: 16px;
  font-weight: 500;
  color: #666;
}

.basic-pagination ul li a:hover,
.basic-pagination ul li span:hover {
  background-color: #cc3333;
  color: #fff;
  border-color: #cc3333;
}

.basic-pagination li .current {
  background-color: #cc3333;
  color: #fff;
  border-color: #cc3333;
}

.footer-content-wrapper .address-info {
  margin-bottom: 0;
}

.mt-10 {
  margin-top: 10px;
}

.sidebar-categories {
  margin-bottom: 0;
}

.sidebar-categories li a {
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}

.sidebar-categories li:not(:last-child) a {
  margin-bottom: 3px;
}

.sidebar-categories li a:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\ea7c";
  transition: 0.3s;
  font-family: 'IcoFont';
}

.sidebar-categories li:hover a:before {
  left: 3px;
}

.sidebar-categories li a:hover {
  color: #cc3333;
}

.w-100 img {
  width: 100%;
}

.shop-product-item {
  box-shadow: rgb(240 240 240) 0px 0px 41px 1px;
  padding: 10px;
  background-color: #fff;
}

.shop-product-img {
  background-color: #f2f2f2;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.shop-product-action a {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-color: #fff;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin: 0 3px;
  color: #666;
  transition: 0.3s;
}

.shop-product-action {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  text-align: center;
  opacity: 0;
  visibility: visible;
  transition: 0.3s;
}

.shop-product-action a:hover {
  background-color: #cc3333;
  color: #fff;
}

.shop-product-img:hover .shop-product-action {
  bottom: 25px;
  opacity: 1;
  visibility: visible;
}

.shop-product-title {
  font-size: 17px;
  text-align: center;
  margin-bottom: 5px;
}

.shop-product-title a {
  color: #292929;
}

.shop-product-rating {
  text-align: center;
  margin-bottom: 5px;
}

.shop-product-rating i {
  font-size: 14px;
  color: #f6d807;
}

.shop-price {
  font-size: 15px;
  color: #292929;
  text-align: center;
  display: block;
}

.shop-product-content {
  padding-top: 20px;
  padding-bottom: 10px;
}

.shop-product-title:hover a {
  color: #cc3333;
}

.shop-product-img img {
  transition: 0.4s;
}

.shop-product-img:hover img {
  transform: scale(1.05);
}

.shop-product-action a i {
  font-weight: 300;
}

.shop-onsale {
  background-color: #fff;
  padding: 0px 10px;
  top: 0;
  left: 0;
  position: absolute;
  margin-left: 10px;
  margin-top: 10px;
  font-size: 13px;
  border-radius: 2px;
}

.shop-notice-result {
  font-size: 16px;
  color: #292929;
  font-weight: 500;
  display: inline-block;
}

.shop-notice-result-wrapper {
  padding: 10px 20px;
  background-color: #f2f2f2;
}

.shop-notice-select .nice-select {
  float: none;
  display: inline-block;
  border: 0;
  color: #666;
}

.shop-notice-select .nice-select ul.list {
  left: auto;
  right: 0;
  border-radius: 0;
  border-color: #f2f2f2;
}

.price-filter-wrap .input-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.price-filter-wrap .input-wrap .input-group {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #f2f2f2;
  font-size: 14px;
  font-weight: 500;
  padding: 0 10px;
  position: relative;
  width: 100%;
}

.price-filter-wrap .input-wrap .input-group span {
  display: inline-block;
}

.price-filter-wrap .input-wrap .input-group input[type=number] {
  width: 100%;
  font-size: 14px;
  height: 30px;
  padding: 0 2px;
  font-weight: 500;
  -moz-appearance: textfield;
  border: 0;
  outline: none;
  background-color: #f2f2f2;
}

.price-filter-wrap .price-filter {
  padding: 0 9px;
  background-color: #f2f2f2;
  border: 0;
  border-radius: 0;
  height: 5px;
  margin-bottom: 30px;
}

.price-filter-wrap .price-filter .noUi-connect {
  background-color: #f2f2f2;
  background: #cc3333;
}

.price-filter-wrap .price-filter .noUi-handle {
  width: 20px;
  height: 20px;
  box-shadow: 0 0;
  border-radius: 50%;
  right: -10px;
  cursor: pointer;
}

.price-filter-wrap button {
  width: 100%;
  border: 1px solid #f2f2f2;
  background-color: #f2f2f2;
  display: block;
  height: 45px;
  text-transform: uppercase;
  transition: 0.3s;
}

.price-filter-wrap button:hover {
  background-color: #cc3333;
  color: #fff;
}

.price-filter-wrap .price-filter .noUi-handle:before,
.price-filter-wrap .price-filter .noUi-handle:after {
  width: 0;
}

.pl-20 {
  padding-left: 20px;
}

.service-name-des p {
  margin-bottom: 0;
}

.member-details p {
  margin-bottom: 0;
}

.note-ul li p {
  margin-bottom: 0;
}

.right-menu-icon ul {
  margin-bottom: 0;
}

.breadcrumb-list {
  color: #fff;
}

.breadcrumb-list span a {
  color: #fff;
}

.breadcrumb-list>span:not(:last-child) {
  display: inline-block;
  margin-right: 5px;
}

.breadcrumb-list>span:not(:first-child) {
  margin-left: 5px;
}

.breadcrumb-list>span:hover a {
  color: #cc3333;
}

.breadcrumb_overlay {
  position: relative;
  z-index: 1;
}

.breadcrumb_overlay:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: #515151;
  opacity: 0;
}

.header-search-icon {
  border: 0;
  padding: 0 15px;
  color: #292929;
  background-color: #ddd;
  transition: 0.3s;
}

.header-search-icon:hover {
  color: #cc3333;
}

.zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap .zoom-svg-instagram-stroke {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pt-75 {
  padding-top: 75px;
}

.pb-65 {
  padding-bottom: 65px;
}

.footer-section a.ig-b-v-24 {
  border-color: #cc3333;
  color: #cc3333 !important;
}

.footer-section a.ig-b-v-24:hover {
  border-color: #cc3333;
  color: #fff !important;
  background-color: #cc3333;
}

.footer-2 a.ig-b-v-24 {
  border-color: #79a1bb;
  color: #79a1bb !important;
}

.footer-2 a.ig-b-v-24:hover {
  border-color: #79a1bb;
  color: #fff !important;
  background-color: #79a1bb;
}

.footer-3 a.ig-b-v-24 {
  border-color: #FBB217;
  color: #FBB217 !important;
}

.footer-3 a.ig-b-v-24:hover {
  border-color: #FBB217;
  color: #fff !important;
  background-color: #FBB217;
}

.footer-section .wp-block-calendar table caption,
.footer-section .wp-block-calendar table tbody {
  color: #fff;
}

.postbox__audio iframe {
  width: 100%;
}

.admin-biography {
  padding: 40px 40px;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
}

.admin-name {
  font-size: 20px;
  margin-bottom: 5px;
}

.admin-social a {
  font-size: 18px;
  margin: 0 5px;
  color: #666;
}

.admin-social a:hover {
  color: #cc3333;
}

.comments-area ul,
.comments-area ol {
  list-style: none;
}

.comments-area .comment-list li ol.children {
  padding-left: 70px;
}

.comment-avater-img {
  flex: 0 0 70px;
  max-width: 70px;
  margin-right: 20px;
  max-height: 70px;
}

.comment-avater-img img {
  max-height: 100%;
  width: 100%;
}

.comment-list-item {
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.comment-title {
  font-size: 16px;
  margin-bottom: 5px;
}

.comments-title {
  font-size: 20px;
}

.comment-reply-title {
  font-size: 20px;
}

.comment-list-content {
  flex: 1;
  max-width: calc(100% - 90px);
}

.comment-btn-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.comment-btn-wrapper>span a {
  display: inline-block;
  border: 1px solid #f2f2f2;
  padding: 0px 10px;
  font-size: 14px;
  border-radius: 3px;
}

.comment-btn-wrapper>span:hover a {
  background-color: #cc3333;
  color: #fff;
  border-color: #cc3333;
}

.comment-form-comment label[for="comment"] {
  display: none;
}

.comment-form textarea {
  height: 130px;
  border: 1px solid #f2f2f2;
  width: 100%;
  padding: 9px 15px;
  border-radius: 3px;
}

.comment-form textarea:focus {
  outline: none;
  border: 1px solid #cc3333;
}

.comment-form input[type="submit"] {
  padding: 10px 30px;
  background-color: #c33;
  color: #fff;
  border: 0;
  transition: 0.3s;
  margin-top: 12px;
  border-radius: 3px;
}

.comment-form input[type="submit"]:hover {
  background-color: #292929;
}

.logged-in-as {
  margin-bottom: 20px;
}

.basic-pagination span,
.basic-pagination a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid #f2f2f2;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-right: 10px;
  transition: 0.3s;
  border-radius: 3px;
  margin-bottom: 10px;
}

.basic-pagination span:hover,
.basic-pagination a:hover,
.basic-pagination span.current {
  background-color: #cc3333;
  color: #fff;
  border-color: #cc3333;
  border-radius: 3px;
}

.basic-pagination .next.page-numbers {
  margin-right: 0;
}

p.form-submit {
  margin-bottom: 0;
}

.comment-respond p.form-submit {
  margin-bottom: 50px;
}

.footer-content-wrapper ul {
  padding-left: 0;
}

.comment-form-cookies-consent label {
  display: inline;
}

.blog-single-quote-content .post-text blockquote {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.blog-single-quote-content .post-text blockquote:before {
  content: "\efcd";
  display: inline-block;
  margin-bottom: 25px;
  font-family: "IcoFont";
  font-size: 40px;
  color: #cc3333;
  font-weight: 400;
}

.blog-single-quote-content .post-text blockquote p {
  margin-bottom: 0;
}

.blog-single-quote-content .post-text blockquote cite {
  color: #292929;
  margin-top: 15px;
  display: inline-block;
}

.blog-single-quote-content .post-text blockquote cite a {
  color: #292929;
}

.blog-single-quote-content .post-text blockquote cite a:hover {
  color: #cc3333;
}

.footer-content-wrapper ul {
  list-style: none;
}

.footer-content-wrapper .nice-select {
  width: 100%;
  border: 1px solid #f2f2f2;
  background-color: transparent;
  float: none;
  border-radius: 3px;
}

.footer-content-wrapper .nice-select::after {
  border-bottom: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  right: 18px;
  width: 7px;
  height: 7px;
}

.footer-content-wrapper .nice-select .list {
  background-color: #484848;
  box-shadow: 0 13px 29px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.footer-content-wrapper .nice-select .list li:hover {
  background-color: #313131;
}

.footer-content-wrapper .nice-select .list li.option.selected.focus {
  background-color: #313131;
}

.footer-content-wrapper ul li ul {
  padding-left: 15px;
  margin-top: 5px;
}

.footer-widget-title .rsswidget.rss-widget-title {
  font-size: 20px;
  color: #fff;
}

.footer-widget-title .rsswidget.rss-widget-title {
  font-size: 20px;
  color: #fff;
}

.footer-content-wrapper ul li:not(:last-child) {
  margin-bottom: 5px;
}

.footer-content-wrapper .nice-select .option:hover,
.footer-content-wrapper .nice-select .option.focus,
.footer-content-wrapper .nice-select .option.selected.focus {
  color: #fff;
}

.footer-content-wrapper input.search-field {
  height: 45px;
  width: 100%;
  border: 0;
  padding: 0 15px;
  line-height: 45px;
  border-radius: 3px;
}

.footer-content-wrapper input.search-field:focus {
  border: 0;
  outline: 0;
}

.footer-content-wrapper .nice-select {
  height: 45px;
  line-height: 45px;
}

.footer-content-wrapper .nice-select ul.list li {
  margin-bottom: 0;
}

.footer-content-wrapper input.search-submit {
  height: 45px;
  border: 1px solid transparent;
  background-color: #cc3333;
  line-height: 43px;
  position: relative;
  z-index: 1;
  padding: 0 25px;
  color: #fff;
  transition: 0.3s;
  border-radius: 3px;
}

.footer-content-wrapper .wp-caption.alignnone {
  margin-right: 0;
  color: #292929;
  max-width: 100%;
}

.footer-content-wrapper .search-form label {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.footer-content-wrapper input.search-submit:hover {
  color: #292929;
  background-color: #fff;
  border-color: #fff;
}

.footer-content-wrapper .hero-form .custom-btn {
  padding: 0 20px;
  height: 45px;
}

.postbox__content .postbox__text>p {
  margin-bottom: 0;
}

.right-menu-icon ul {
  padding: 0;
  list-style: none;
}

.cafeto-cart-drawer-btn .woocommerce-mini-cart__total.total {
  margin-bottom: 0;
  padding: 10px 0;
}

.cafeto-cart-drawer-btn .woocommerce-mini-cart__total.total strong {
  text-transform: uppercase;
  color: #292929;
}

.cafeto-cart-drawer-btn .woocommerce-mini-cart__total.total span.woocommerce-Price-amount.amount {
  float: right;
  color: #292929;
}

#mini-cart-count {
  position: absolute;
  top: -10px;
  right: -9px;
  min-width: 17px;
  height: 17px;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 50%;
  line-height: 17px;
  text-align: center;
  font-size: 10px;
  color: #292929;
}

.mini-item-single {
  flex-basis: 100%;
}

.mini-item-single .cart-img {
  flex: 0 0 50px;
  max-width: 50px;
  height: 50px;
}

.mini-item-single .cart-img img {
  border-radius: 50%;
  width: 100% !important;
  height: 100% !important;
}

.mini-item-single .cart-img a {
  display: block;
}

.woocommerce .woocommerce-mini-cart-item.cart-list.mini_cart_item {
  padding: 10px 0;
}

.woocommerce .shop-notice-select .woocommerce-ordering {
  margin-bottom: 0;
}

.woocommerce ul.products li.product .shop-product-action .button {
  margin-top: 0;
  background-color: #fff;
  border-radius: 50%;
  padding: 0;
  height: 40px;
  line-height: 40px;
  width: 40px;
  margin: 0 3px;
}

.woocommerce ul.products li.product .shop-product-action .button:hover {
  color: #fff;
  background-color: #cc3333;
}

.woocommerce ul.products li.product .shop-product-img a img {
  margin-bottom: 0;
}

.woocommerce ul.products li.product .shop-product-content .star-rating {
  font-size: 13px;
  color: #f6d807;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 10px;
}

.shop-price ins {
  text-decoration: none;
}

.shop-price del {
  display: inline-block;
  margin-right: 5px;
}

.shop-product-action .added_to_cart.wc-forward {
  position: absolute;
  left: 0;
  right: 0;
  width: calc(100% - 60px);
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  bottom: 47px;
  margin: 0 auto;
}

.shop-product-action .button.added.add_to_cart_button i {
  display: none;
  margin: 0;
  padding: 0;
}

.woocommerce a.button.added.add_to_cart_button::after {
  margin-left: 0;
  font-weight: 400;
}

.woocommerce ul.products li.product .shop-product-action .button.add_to_cart_button.loading {
  background-color: #fff;
  border-radius: 50%;
  height: 40px;
  line-height: 40px;
  width: 40px;
  display: inline-block;

}

.woocommerce ul.products li.product .shop-product-action .button.add_to_cart_button.loading i.icofont-shopping-cart {
  display: inline-block;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 45px;
  height: 45px;
  line-height: 45px;
  padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border-color: #f2f2f2;
}

.woocommerce nav.woocommerce-pagination ul {
  border-color: #f2f2f2;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #cc3333;
  color: #fff;
  border-color: #cc3333;
}

.shop-left-wrapper .woocommerce-pagination {
  margin-bottom: 40px;
  margin-top: 20px;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  margin-right: -30px;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}

.woocommerce ul.products.columns-2 li.product,
.woocommerce-page ul.products.columns-2 li.product {
  width: calc(50% - 30px);
  margin: 0;
  margin-right: 30px;
  margin-bottom: 30px;
  float: none;
}

.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product {
  width: calc(33.33% - 30px);
  margin: 0;
  margin-right: 30px;
  margin-bottom: 30px;
  float: none;
}

.woocommerce ul.products.columns-4 li.product,
.woocommerce-page ul.products.columns-4 li.product {
  width: calc(25% - 30px);
  margin: 0;
  margin-right: 30px;
  margin-bottom: 30px;
  float: none;
}

.woocommerce ul.products.columns-5 li.product,
.woocommerce-page ul.products.columns-5 li.product {
  width: calc(20% - 30px);
  margin: 0;
  margin-right: 30px;
  margin-bottom: 30px;
  float: none;
}

.woocommerce ul.products.columns-6 li.product,
.woocommerce-page ul.products.columns-6 li.product {
  width: calc(16.66% - 30px);
  margin: 0;
  margin-right: 30px;
  margin-bottom: 30px;
  float: none;
}

.shop-product-action .woosw-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  line-height: 40px;
  font-size: 0;
  transition: 0.3s;
}

.shop-product-action .woosw-btn:after {
  content: "\ef45";
  font-size: 15px;
  font-family: "IcoFont";
  transition: 0.3s;
}

.shop-product-action .woosw-btn.woosw-btn-added:after {
  content: "\eed6";
}

.shop-product-action .woosw-btn:hover {
  background-color: #cc3333;
  color: #fff;
}

.shop-product-action .woosc-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  line-height: 40px;
  font-size: 0;
  transition: 0.3s;
}

.shop-product-action .woosc-btn:after {
  content: "\ede0";
  font-size: 15px;
  font-family: "IcoFont";
  transition: 0.3s;
}

.shop-product-action .woosc-btn.woosc-btn-added:after {
  content: "\eed6";
}

.shop-product-action .woosc-btn:hover {
  background-color: #cc3333;
  color: #fff;
}

.shop-product-action .woosc-btn.woosc-btn-added::before {
  margin-right: 0px;
}

.shop-product-action .woosw-btn.woosw-added::before {
  margin-right: 0px;
}

.woocommerce-message {
  border-top-color: #292929;
}

.woocommerce-message::before {
  content: "\e015";
  color: #292929;
}

.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-message .button {
  background-color: #292929;
  color: #fff;
  font-weight: 400;
}

.woocommerce .woocommerce-message .button:hover,
.woocommerce-page .woocommerce-message .button:hover {
  background-color: #cc3333;
  color: #fff;
}

.woocommerce .shop-product-action a.button.added::after,
.woocommerce .shop-product-action button.button.added::after {
  font-family: "IcoFont";
  content: "\eed6";
}

.shop-notice-select .nice-select::after {
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  width: 7px;
  height: 7px;
  right: 18px;
}

.has-width img {
  width: 100%;
  max-width: 100%;
}

.mr-40 {
  margin-right: 40px;
}

.mr-30 {
  margin-right: 30px;
}

.woocommerce-product-rating.rating .star-rating {
  color: #f6d807;
  font-size: 14px;
}

.details-product-rating {
  margin-bottom: 10px;
}

.details-product-rating .woocommerce-review-link {
  color: #292929;
  font-size: 14px;
  display: inline-block;
  margin-left: 5px;
}

.details-product-rating .woocommerce-review-link:hover {
  color: #cc3333;
}

.shop-details-product-price {
  font-size: 20px;
  color: #292929;
  margin-bottom: 15px;
}

.shop-details-product-price ins {
  text-decoration: none;
  color: #292929;
}

.shop-details-product-price del {
  margin-right: 5px;
  font-size: 15px;
}

.product_meta ul li b {
  font-size: 15px;
  color: #292929;
  font-weight: 400;
  margin-right: 10px;
}

.product_meta ul li span {
  font-size: 15px;
  color: #666;
}

.product_meta ul li a {
  display: inline-block;
  background-color: #ddd;
  color: #292929;
  padding: 0 10px;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 13px;
}

.product_meta ul li a:hover {
  color: #fff;
  background-color: #cc3333;
}

.product_meta ul li b.posted_in.cafeto-woo-single-shop-cat-list {
  margin-bottom: 5px;
}

.product_meta ul li:not(:last-child) {
  margin-bottom: 5px;
}

.product_meta ul {
  list-style: none;
}

.product_meta {
  margin-bottom: 15px;
}

.shop-details-simple-buttons {
  display: inline-block;
  margin-bottom: 15px;
}

.shop-details-simple-actions {
  display: inline-block;
}

.shop-details-simple-actions input {
  height: 45px;
  min-width: 90px;
  line-height: 45px;
  padding: 0 15px;
  border: 1px solid #f2f2f2;
  border-radius: 30px;
  color: #292929;
  margin-right: 5px;
}

.shop-details-simple-actions input:focus {
  outline: 0;
  border: 1px solid #f2f2f2;
}

.shop-details-buttons .single_add_to_cart_button {
  min-height: 45px;
  border-radius: 30px !important;
  background-color: #cc3333 !important;
  padding: 0 25px !important;
  font-weight: 400 !important;
  margin-right: 5px !important;
  transition: 0.3s;
}

.shop-details-buttons .single_add_to_cart_button i {
  margin-right: 5px;
}

.shop-details-buttons .single_add_to_cart_button:hover {
  background-color: #292929 !important;
  color: #fff;
}

.shop-details-buttons .woosw-btn {
  width: 45px;
  height: 45px;
  border: 0;
  background-color: #cc3333;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  line-height: 45px;
  font-size: 0;
  transition: 0.3s;
  color: #fff;
  display: inline-block;
  margin-right: 5px;
}

.shop-details-buttons .woosw-btn:after {
  content: "\ef45";
  font-size: 15px;
  font-family: "IcoFont";
  transition: 0.3s;
}

.shop-details-buttons .woosw-btn.woosw-btn-added:after {
  content: "\eed6";
}

.shop-details-buttons .woosw-btn:hover {
  background-color: #292929;
  color: #fff;
}

.shop-details-buttons .woosc-btn {
  width: 45px;
  height: 45px;
  border: 0;
  background-color: #cc3333;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  line-height: 45px;
  font-size: 0;
  transition: 0.3s;
  color: #fff;
}

.shop-details-buttons .woosc-btn:after {
  content: "\ede0";
  font-size: 15px;
  font-family: "IcoFont";
  transition: 0.3s;
}

.shop-details-buttons .woosc-btn.woosc-btn-added:after {
  content: "\eed6";
}

.shop-details-buttons .woosc-btn:hover {
  background-color: #292929;
  color: #fff;
}

.shop-details-buttons .woosc-btn.woosc-btn-added::before {
  margin-right: 0px;
}

.shop-details-buttons .woosw-btn.woosw-added::before {
  margin-right: 0px;
}

.shop-details-external-buttons {
  display: inline-block;
  margin-bottom: 15px;
}

.shop-details-variation-buttons .variations .label label {
  color: #292929;
  font-weight: 500;
  margin-right: 10px;
}

.shop-details-variation-buttons .variations .nice-select {
  height: 40px;
  line-height: 40px;
  border-radius: 30px;
  border: 1px solid #f2f2f2;
  color: #666;
  padding: 0 20px;
  padding-right: 30px;
}

.shop-details-variation-buttons .variations tr:not(:last-child) .label label {
  margin-bottom: 10px;
}

.shop-details-variation-buttons .variations tr:not(:last-child) .nice-select {
  margin-bottom: 10px;
}

.shop-details-variation-buttons .variations .nice-select:after {
  width: 7px;
  height: 7px;
  right: 18px;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
}

.shop-details-variation-buttons .variations tbody tr {
  margin-bottom: 20px !important;
}

.shop-details-product-variation .quantity input {
  height: 45px;
  min-width: 90px;
  border: 1px solid #f2f2f2;
  border-radius: 30px;
  padding: 0 15px;
  color: #666;
}

.shop-details-product-variation .quantity input:focus {
  border: 1px solid #f2f2f2;
  outline: 0;
}

.reset_variations {
  height: 45px;
  display: inline-block;
  line-height: 45px;
  margin-left: 10px;
  color: #292929;
}

.woocommerce-variation-add-to-cart.variations_button.mt-25 {
  margin-bottom: 25px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 25px;
}

.shop-details-buttons.mt-20 .stock.in-stock {
  margin-bottom: 25px;
}

.shop-details-buttons.mt-20 .stock.out-of-stock {
  margin-bottom: 25px;
}

.grouped_form.shop-details-grouped-buttons .quantity.shop-details-quantity .input-text.qty {
  height: 45px;
  min-width: 90px;
  border: 1px solid #f2f2f2;
  border-radius: 30px;
  padding: 0 15px;
  color: #292929;
}

.grouped_form.shop-details-grouped-buttons .quantity.shop-details-quantity .input-text.qty:focus {
  border: 1px solid #f2f2f2;
  outline: none;
}

.grouped_form.shop-details-grouped-buttons .woocommerce-grouped-product-list-item>td {
  padding-bottom: 10px;
  padding-right: 15px;
}

.cart.grouped_form.shop-details-grouped-buttons {
  margin-bottom: 25px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 25px;
}

.woocommerce-grouped-product-list-item.product {
  background-color: transparent;
}

.comment-form-rating.cafeto-review>span {
  color: #292929;
  display: block;
  margin-bottom: 5px;
}

.comment-form-rating.cafeto-review .stars.selected a {
  color: #f6d807;
}

.comment-form-rating.cafeto-review>span {
  color: #292929;
  display: block;
  margin-bottom: 5px;
}

.comment-form-rating.cafeto-review .stars.selected a {
  color: #f6d807;
}

.woocommerce-Reviews .comment-form-comment textarea {
  height: 130px !important;
  border: 1px solid #f2f2f2;
}

.woocommerce-Reviews .comment-form-comment textarea:focus {
  border: 1px solid #cc3333;
  outline: 0;
}

.woocommerce-Reviews p.form-submit {
  margin-bottom: 0 !important;
}

.woocommerce-Reviews p.form-submit input.submit {
  background-color: #cc3333 !important;
  height: 45px;
  line-height: 45px;
  padding: 0 25px !important;
  color: #fff !important;
  font-size: 15x !important;
  font-weight: 400 !important;
  transition: 0.3s;
}

.woocommerce-Reviews p.form-submit input.submit:hover {
  background-color: #292929 !important;
  color: #fff;
}

.related-products-slider .product.type-product {
  margin-right: 0 !important;
  width: 100% !important;
}

.related-products-slider ul.products {
  margin: 0 0 !important;
}

.woocommerce .menu-product ul.products,
.woocommerce-page .menu-product ul.products {
  margin-right: -30px;
}

.pt-25 {
  padding-top: 25px;
}

.related-product-slide-single.pt-25 {
  padding-left: 1px;
  padding-right: 1px;
}

.woocommerce-product-attributes.shop_attributes tbody th {
  padding-left: 20px;
}

.woocommerce .shop-notice-select .woocommerce-ordering,
.woocommerce-page .shop-notice-select .woocommerce-ordering {
  float: none;
}

.cafeto-shop-details-review-box-single {
  display: flex;
}

.cafeto-shop-details-review-box-single .thumb {
  margin-right: 25px;
}

.woocommerce-review__author {
  font-size: 16px;
  margin-bottom: 5px;
}

.cafeto-shop-details-review-box-single .rating .star-rating {
  float: none;
  color: #f6d807;
  font-size: 14px;
}

#review_form_wrapper .form-submit {
  margin-top: 25px !important;
}

.shop_table.shop_table_responsive.table.border-top.border-bottom tr td {
  text-align: end;
}

.shop_table.shop_table_responsive.table.border-top.border-bottom tr th {
  border-top: 0;
}

.shop_table.shop_table_responsive.table.border-top.border-bottom tr td {
  border-top: 0;
}

.shop_table.shop_table_responsive.table.border-top.border-bottom tr.order-total td {
  border-bottom: 0;
}

.shop_table.shop_table_responsive.table.border-top.border-bottom tr.order-total th {
  border-bottom: 0;
}

.woocommerce-cart table.cart img {
  width: 100%;
}

.shop_table.cart.woocommerce-cart-form__contents .product-table tr th {
  color: #292929;
}

.shop_table.cart.woocommerce-cart-form__contents .product-cart-title a {
  color: #292929;
}

.shop_table.cart.woocommerce-cart-form__contents .product-cart-title:hover a {
  color: #cc3333;
}

.woocommerce-cart-form__cart-item.cart_item .product-quantity input {
  height: 45px;
  min-width: 90px;
  border-radius: 30px;
  border: 1px solid #f2f2f2;
  padding: 0 15px;
  color: #666;
  line-height: 45px;
}

.woocommerce-cart-form__cart-item.cart_item .product-quantity input:focus {
  border: 1px solid #f2f2f2;
  outline: 0;
}

.coupon.coupon-cart-form {
  width: 400px;
  display: flex;
}

.coupon.coupon-cart-form #coupon_code {
  flex: 1;
  height: 45px;
  line-height: 45px;
  border: 1px solid #f2f2f2;
  border-radius: 3px;
  padding: 0 15px;
  margin-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-btn.coupon_apply {
  padding-left: 20px;
  padding-right: 20px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.custom-btn.update_cart {
  height: 45px;
  line-height: 45px;
  padding: 0 30px;
  border-radius: 3px;
}

.custom-btn.update_cart[aria-disabled="true"] {
  opacity: 0.5;
}

.custom-btn.update_cart[aria-disabled="false"] {
  opacity: 1;
}

.woocommerce table.shop_table td.actions {
  padding-top: 15px;
  padding-bottom: 15px;
}

.wc-forward.custom-btn {
  height: 45px;
  line-height: 45px;
  padding: 0 40px;
  border-radius: 3px;
}

.product-cart-title {
  font-weight: 500;
}

.shop_table.cart.woocommerce-cart-form__contents {
  min-width: 550px;
}

.woocommerce ul.products li.product .shop-product-action .button>span.action-hide-only {
  display: none;
}

.product.woocommerce.add_to_cart_inline .button {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  background-color: #cc3333;
  color: #fff;
  font-weight: 400;
}

.product.woocommerce.add_to_cart_inline .button i {
  display: inline-block;
  margin-right: 5px;
}

.product.woocommerce.add_to_cart_inline .button:hover {
  color: #fff;
  background-color: #292929;
}

.cafeto-billing-details-title {
  font-size: 20px;
  line-height: 1.3;
}

.product-checkout-image-list img {
  width: 70px;
  margin-right: 15px;
}

.product-checkout-image-list .product-quantity {
  color: #666;
  font-weight: 400;
}

.woocommerce table.shop_table tfoot th {
  color: #292929;
  font-weight: 500;
}

.woocommerce table.shop_table th.product-total {
  color: #292929;
  font-weight: 500;
}

.shop_table.woocommerce-checkout-review-order-table .product-name {
  margin-bottom: 0;
}

.shop_table.woocommerce-checkout-review-order-table tr th:last-child {
  text-align: right;
}

.shop_table.woocommerce-checkout-review-order-table tr td:last-child {
  text-align: right;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid #f2f2f2;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  background-color: #292929;
  color: #fff;
  height: 45px;
  line-height: 45px;
  padding: 0 25px;
  transition: 0.3s;
  font-weight: 500;
}

.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover {
  background-color: #cc3333;
  color: #fff;
}

.woocommerce table.shop_attributes th {
  color: #292929;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background-color: transparent;
}

.woocommerce .woocommerce-Message.woocommerce-Message--info.woocommerce-info a.button {
  background-color: #292929;
  color: #fff;
}

.woocommerce .woocommerce-Message.woocommerce-Message--info.woocommerce-info a.button:hover {
  background-color: #cc3333;
  color: #fff;
}

.header.header-1 {
  background-color: rgba(255, 255, 255, 0.8);
}

.right-social .right-social-ul {
  list-style: none;
}

.contact-form .input-group.flex-nowrap .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.contact-area.contact-area-2 .form-wrapper .wpcf7 form.failed .wpcf7-response-output,
.contact-area.contact-area-2 .form-wrapper .wpcf7 form.aborted .wpcf7-response-output {
  color: #292929;
}

.about-role ul.about-ul {
  list-style: none;
}

.about-role ul.about-ul .serv-list i {
  font-size: 40px;
  color: #FBB217;
}

.call-number a {
  color: #fff;
}

.customer-details .rating {
  list-style: none;
}

ul.rating li i {
  padding: 3px;
}

.customer .review i {
  font-size: 40px;
  color: #cc3333;
  display: inline-block;
  padding-top: 15px;
  margin-bottom: 10px;
}

.future-list {
  list-style: none;
}

.shop-product-action.menu-product-action.position-relative {
  position: relative;
  opacity: 1;
  visibility: visible;
  display: flex;
  justify-content: center;
}

.shop-product-action.menu-product-action.position-relative .button.add_to_cart_button span {
  display: none;
}

.shop-product-action.menu-product-action.position-relative a,
.shop-product-action.menu-product-action.position-relative button {
  background-color: transparent;
  border: 1px solid #f2f2f2;
  border-radius: 3px;
  color: #292929;
  transition: 0.3s;

}

.shop-product-action.menu-product-action.position-relative .added,
.shop-product-action.menu-product-action.position-relative .woosw-added,
.shop-product-action.menu-product-action.position-relative .woosc-added {
  background-color: #79a1bb;
  border-color: #79a1bb;
  color: #fff;
}

.shop-product-action.menu-product-action.position-relative .button.added.add_to_cart_button i {
  display: block;
  height: 40px;
  line-height: 40px;
}

.shop-product-action.menu-product-action.position-relative .added_to_cart.wc-forward {
  background-color: #79a1bb;
  color: #fff;
  border-radius: 3px;
  border-color: #79a1bb;
  margin-left: auto;
  margin-right: auto;
}

.shop-product-action.menu-product-action.position-relative .added_to_cart.wc-forward:hover,
.menu-product .shop-product-action.menu-product-action.position-relative .added_to_cart.wc-forward:hover {
  color: #fff;
  background-color: #292929;
  border-color: #292929;
}

.shop-product-action.menu-product-action.position-relative a:hover,
.shop-product-action.menu-product-action.position-relative button:hover {
  color: #fff;
  background-color: #79a1bb;
  border-color: #79a1bb;
}

.woosc-table.woosc-table-open .product.woocommerce.add_to_cart_inline .add_to_cart_button {
  margin-right: 10px;
}

.woosc-table.woosc-table-open .product.woocommerce.add_to_cart_inline .add_to_cart_button.loading::after {
  display: none;
}

.woosc-table.woosc-table-open .product.woocommerce.add_to_cart_inline .add_to_cart_button.added::after {
  margin-left: 5px;
}

.woosc-table.woosc-table-open .product.woocommerce.add_to_cart_inline .added_to_cart.wc-forward {
  padding: 0 25px;
  height: 45px;
  line-height: 45px;
  background-color: #cc3333;
  color: #fff;
  border-radius: 3px;
  margin-top: 10px;
}

.woosc-table.woosc-table-open .product.woocommerce.add_to_cart_inline .added_to_cart.wc-forward:hover {
  background-color: #292929;
  color: #fff;
}

.shop-product-action.menu-product-action.position-relative a .action-hide-only {
  display: none;
}

.shop-product-action.menu-product-action.position-relative a {
  margin: 0 8px;
}

.woocommerce-error {
  border-top-color: #292929;
}

.woocommerce-error::before {
  color: #292929;
}

.woocommerce .woocommerce-error .button,
.woocommerce-page .woocommerce-error .button {
  background-color: #292929;
  color: #fff;
}

.woocommerce .woocommerce-error .button:hover,
.woocommerce-page .woocommerce-error .button:hover {
  background-color: #cc3333;
  color: #fff;
}

.product-details ins {
  text-decoration: none;
}

.product-details del {
  margin-right: 5px;
}

.product-details .rating i {
  color: #f6d807;
  padding: 0 2px;
}

.product-details .rating i.icofont-star {
  color: #ddd;
}

.product-details .rating {
  margin-bottom: 8px;
}

.shipping-calculator-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 45px;
  line-height: 45px;
}

.shipping-calculator-form input {
  height: 45px;
  line-height: 45px;
  border: 1px solid #f2f2f2;
  border-radius: 3px;
  padding: 0 15px;
}

.shop_table.shop_table_responsive.table.border-top.border-bottom tr td .shipping-calculator-form .select2-selection__rendered {
  text-align: left;
  padding-left: 0;
}

.shop_table.shop_table_responsive.table.border-top.border-bottom tr td .shipping-calculator-form .button[type="submit"] {
  background-color: #cc3333;
  color: #fff;
  font-weight: 400;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  transition: 0.3s;
}

.shop_table.shop_table_responsive.table.border-top.border-bottom tr td .shipping-calculator-form .button[type="submit"]:hover {
  background-color: #292929;
  color: #fff;
}

.woocommerce-shipping-calculator .shipping-calculator-button {
  color: #cc3333;
}

.cart-wishlist.product-menu-action {
  text-align: end;
}

.cart-wishlist.product-menu-action .button .action-hide-only {
  display: none;
}

.cart-wishlist.product-menu-action>.button,
.cart-wishlist.product-menu-action button {
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;

}

.cart-wishlist.product-menu-action>.button {
  background-color: #292929;
  color: #fff;
  border-radius: 3px;
}

.cart-wishlist.product-menu-action button.woosw-btn {
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  font-size: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  margin-right: 3px;
  border: 1px solid #f2f2f2;
  color: #292929;
  background-color: transparent;
  border-radius: 3px;
}

.product-card:hover .cart-wishlist.product-menu-action button.woosw-btn {
  opacity: 1;
  visibility: visible;
}

.cart-wishlist.product-menu-action button.woosw-btn:after {
  content: "\ef45";
  font-size: 15px;
  font-family: "IcoFont";
  transition: 0.3s;
}

.cart-wishlist.product-menu-action>.button:hover,
.cart-wishlist.product-menu-action button.woosw-btn:hover {
  background-color: #cc3333;
  color: #fff;
  border-color: #cc3333;
}

.cart-wishlist.product-menu-action>.button.added {
  display: none;
}

.cart-wishlist.product-menu-action>.added_to_cart.wc-forward {
  font-size: 0;
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  background-color: #cc3333;
  color: #fff;
  text-align: center;
}

.cart-wishlist.product-menu-action>.added_to_cart.wc-forward:after {
  content: "\efe7";
  font-size: 15px;
  font-family: "IcoFont";
}

.cart-wishlist.product-menu-action .woosw-btn.woosw-added::before {
  margin-right: 0;
}

.cart-wishlist.product-menu-action .woosw-btn.woosw-added {
  background-color: #cc3333;
  color: #fff;
  border-color: #cc3333;
}

.all-product-1 li.cat-menu-li img {
  max-width: 40px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.view-project-inner .project-title {
  font-size: 20px;
  margin-bottom: 5px;
  color: #FBB217;
}

.service-card .service-name a {
  color: #292929;
  text-decoration: none;
}

.service-card:hover .service-name a {
  color: #fff;
}

.service-card .service-card-content a.show-btn {
  text-decoration: underline;
}

.product-card p.product-price ins {
  text-decoration: none;
}

.product-card p.product-price del {
  display: inline-block;
  margin-right: 5px;
}

.product-2 .cat-menu-li:hover {
  border-bottom: 2px solid #79a1bb;
}

.menu-product .cat-menu-li:hover {
  border-color: #cc3333;
}

.menu-product .shop-product-action.menu-product-action.position-relative .added,
.menu-product .shop-product-action.menu-product-action.position-relative .woosw-added,
.menu-product .shop-product-action.menu-product-action.position-relative .woosc-added {
  background-color: #cc3333;
  border-color: #cc3333;
  color: #fff;
}

.menu-product .shop-product-action.menu-product-action.position-relative a:hover,
.menu-product .shop-product-action.menu-product-action.position-relative button:hover {
  color: #fff;
  background-color: #cc3333;
  border-color: #cc3333;
}

.menu-product .shop-product-action.menu-product-action.position-relative .added_to_cart.wc-forward {
  background-color: #cc3333;
  color: #fff;
  border-radius: 3px;
  border-color: #cc3333;
  margin-left: auto;
  margin-right: auto;
}

.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-popup-content-bot-inner a:hover {
  color: #cc3333;
  border-color: #cc3333;
}

.service-list li a i {
  margin-right: 5px;
}

.sidebar-post-single .sidebar-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.widget_block .hero-form {
  position: relative;
  z-index: 1;
}

.widget_block .hero-form .input-group-text.custom-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 45px;
}

.widget_block .hero-form input {
  padding-right: 125px;
}

.contact-offer iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-wrapper.inner .wpcf7-response-output {
  text-align: center;
}

.form-control:focus,
input:focus,
textarea:focus {
  color: #666;
  border-color: #cc3333;
}

.form-control::-moz-placeholder {
  color: #666;
  opacity: 1
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
  color: #666;
  opacity: 1
}

.form-control,
input,
textarea {
  color: #666;
}

.product-name .product-checkout-image-list {
  font-size: 16px;
  font-weight: 400;
  color: #292929;
}

.banner-title span {
  color: #cc3333;
  text-decoration: underline;
}

.hero-form .input-group .input-group-text.custom-btn[type="submit"] {
  height: 50px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.hero-text .wpcf7-response-output {
  color: #fff;
}

.describe-content .wpcf7-response-output {
  color: #666;
}

.banner-3 .watch span.wc-btn {
  color: #666;
}

.subscribe.subscribe-3 .wpcf7-form-control-wrap {
  flex: 1;
}

.subscribe.subscribe-3 .input-group-text.custom-btn {
  padding-left: 15px;
  padding-right: 15px;
}

.subscribe.subscribe-3 .wpcf7-form-control-wrap input {
  height: 50px;
  line-height: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.subscribe.subscribe-3 .wpcf7 form .wpcf7-response-output {
  margin-top: 15px;
}

.error__title {
  font-size: 28px;
}

.error-btn {
  height: 45px;
  line-height: 45px;
  border: 1px solid #cc3333;
  padding: 0 30px;
  display: inline-block;
  background-color: #cc3333;
  color: #fff;
}

.error-btn:hover {
  color: #fff;
  background-color: #292929;
  border-color: #292929;
}

.pb-105 {
  padding-bottom: 105px;
}

.page-title.blog-search-title {
  font-size: 28px;
}

.pagecontent.blog-search-content .search-form {
  display: flex;
  margin-top: 25px;
}

.pagecontent.blog-search-content .search-form .search-field {
  width: 100%;
}

.pagecontent.blog-search-content .search-form label {
  flex: 1;
}

.pagecontent.blog-search-content .search-form label input {
  width: 100%;
  height: 45px;
  border: 1px solid #f2f2f2;
  line-height: 45px;
  padding: 0 15px;
}

.pagecontent.blog-search-content .search-form input.search-submit {
  border: 0;
  background-color: #cc3333;
  padding: 0 20px;
  color: #fff;
  transition: 0.3s;
}

.pagecontent.blog-search-content .search-form input.search-submit:hover {
  background-color: #292929;
  color: #fff;
}

.pagecontent.blog-search-content .search-form label input:focus {
  border: 1px solid #c33;
  outline: 0;
}

.error__thumb img[alt="404"] {
  font-size: 120px;
  color: #292929;
  font-weight: 700;
  display: inline-block;
}

.error__thumb.mt-30 img[alt="404"] {
  margin-bottom: 30px;
}

.pr-25 {
  padding-right: 25px;
}

.back-to-top-wrapper {
  position: fixed;
  right: 50px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  bottom: 0;
  transition: 0.4s;
}

.back-to-top-wrapper {
  opacity: 0;
  visibility: hidden;
}

.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.back-to-top-btn {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background-color: #cc3333;
  box-shadow: 0 10px 29px rgba(45, 9, 9, 0.5);
  transition: 0.3s;
}

.back-to-top-btn:hover {
  background-color: #292929;
}

.back-to-top-btn i {
  font-size: 22px;
  font-weight: 500;
}

.footer-logo a>img {
  max-width: 130px;
}

.postbox__item.product {
  background-color: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.shop-details-wrapper .woosc-quick-table.label-column-no {
  display: none;
}

.woosw-item--name {
  font-size: 16px;
  margin-bottom: 4px;
}

.cafeto-page-content .woosw-list .woosw-actions {
  margin-bottom: 15px;
}

.all-product-1 .product-card .product-name {
  font-size: 20px;
  font-weight: 700;
}

.mb-132 {
  margin-bottom: 132px;
}

.subscribe-wrapper-1 .hero-text .input-group {
  flex-wrap: nowrap;
}

.date-view .date.mb-0 {
  font-size: 14px;
}

.date-view .view-more {
  font-size: 14px;
  font-weight: 400;
}

.describe-content .describe-sm-title {
  margin-bottom: 5px;
}

.all-product .product-cat {
  padding-top: 5px;
}

.video-btn.big-play-icon {
  margin-right: 0;
  width: 90px;
  height: 90px;
}

.video-btn.play-medium-icon {
  margin-right: 0;
  width: 60px;
  height: 60px;
}

.right-menu-icon .nav-list .icon-item:last-child {
  padding-right: 0;
}

.mt-45 {
  margin-top: 45px;
}

.customer.customer-2.cpy-6 {
  padding-bottom: 105px;
}

.customer-2 .review-item {
  margin-bottom: 0;
}

.customer-2 .message {
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-wrapper .contact-offer img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.dr-sidebar-logo img {
  max-width: 130px;
}

.about-content.pl-50 .des.mb-0 {
  padding-top: 10px;
}

.social-sec.social-sec-3 .share-link {
  margin-top: 15px;
}

.service .service-icon img {
  height: 65px;
  object-fit: scale-down;
}

.subscribe .hero-text .wpcf7 {
  width: 100%;
}

.product-card .product-name {
  font-size: 18px;
}

.faq__main .faq__ans p {
  margin-bottom: 0;
}

.all-product.product-3.theme-1 .view-project-inner .project-title {
  color: #cc3333;
}

.note-head.bars .note-title {
  font-size: 28px;
}

.note-head.bars .sm-title {
  font-size: 16px;
}

.available-bar .note-footer-text-cell {
  font-size: 18px;
}

.available-bar .note-footer-text {
  font-size: 18px;
}

.pb-70 {
  padding-bottom: 70px;
}

.table.table-borderless .table-body-text tr:last-child td {
  padding-bottom: 0;
}

.mini-item-single .cart-product-details a:hover .cart-px-name {
  color: #cc3333;
}

.header-2 .mini-item-single .cart-product-details a:hover .cart-px-name {
  color: #79a1bb;
}

.header-2.theme-3 .mini-item-single .cart-product-details a:hover .cart-px-name {
  color: #FBB217;
}

.right-menu-icon .cart-menu .cart-ul {
  max-height: 355px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.logged-in.admin-bar .header {
  margin-top: 32px;
}

.logged-in.admin-bar .side-info {
  margin-top: 32px;
}

.right-menu-icon .d-flex.align-items-center>li.nav-list>a {
  padding-left: 14px;
}

.header-right .d-lg-none.dr-navbar-mobile-sign.side-toggle {
  padding-left: 7px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  margin-bottom: 15px;
}

.woosw-list table.woosw-items .add_to_cart_button.loading::after {
  display: none;
}

.woosw-list table.woosw-items .add_to_cart_button.added,
.woosw-popup .woosw-popup-inner .woosw-items .product.woocommerce.add_to_cart_inline .add_to_cart_button.added {
  display: none;
}

.woosw-list table.woosw-items .woosw-item .woosw-item--add .add_to_cart_inline .added_to_cart,
.woosw-popup .woosw-popup-inner .woosw-items .product.woocommerce.add_to_cart_inline .added_to_cart {
  height: 45px;
  line-height: 45px;
  padding: 0 25px;
  background-color: #cc3333;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
}

.woosw-list table.woosw-items .woosw-item .woosw-item--add .add_to_cart_inline .added_to_cart:hover,
.woosw-popup .woosw-popup-inner .woosw-items .product.woocommerce.add_to_cart_inline .added_to_cart:hover {
  background-color: #292929;
  color: #fff;
}

.woocommerce ul.products li.product .shop-product-action .button.add_to_cart_button.loading:after,
.woosw-popup .woosw-popup-inner .woosw-items .product.woocommerce.add_to_cart_inline .add_to_cart_button.loading:after {
  display: none;
}

.woocommerce-cart-form.processing .product-price {
  display: none;
}

.all-product.product-3.theme-1 .product-card,
.all-product.product-3 .product-card {
  box-shadow: none;
}

.footer-subscribe a {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.header-2 .icon-item span {
  transition: 0.3s;
}

.header-2 .icon-item span:hover {
  color: #79a1bb;
}

.header-2.theme-3 .icon-item span:hover {
  color: #FBB217;
}

.play-medium-icon .icofont-ui-play {
  font-size: 20px;
  margin-left: 3px;
}

.big-play-icon .icofont-ui-play {
  font-size: 24px;
  margin-left: 5px;
}

.product-2 .product-card .product-name:hover {
  color: #79a1bb;
}

.customer .review img.quotation {
  max-width: 55px;
  margin-bottom: 15px;
}

.ab-service-li .service-icon img {
  max-width: 35px;
}

.all-product.all-product-1 .product-cat {
  padding-top: 0;
}

.comment-respond .comment-reply-title small a {
  font-size: 15px;
  color: #292929;
}

.comment-respond .comment-reply-title small a:hover {
  color: #cc3333;
}

.comment-respond .comment-reply-title>a {
  color: #292929;
}

.comment-respond .comment-reply-title>a:hover {
  color: #cc3333;
}

.all-product.product-3 .product-cat {
  padding-top: 0;
}

.blog-details-inner .blog-img>img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.comment-list ol.children {
  margin-left: 70px;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr td:first-child {
  z-index: 99;
  min-width: 200px;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items {
  width: 100%;
  overflow-x: auto !important;
}

.woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th:first-child {
  z-index: 999 !important;
}

.footer-content-wrapper .nice-select ul.list {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  max-width: 100%;
  overflow-x: auto;
}
































@media (min-width: 1200px) and (max-width: 1399px) {
  .delivery {
    background-size: cover;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .woocommerce ul.products.columns-3 li.product,
  .woocommerce-page ul.products.columns-3 li.product {
    width: calc(50% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-4 li.product,
  .woocommerce-page ul.products.columns-4 li.product {
    width: calc(33.33% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
    float: none;
  }

  .app-section.app-section-1 {
    margin-top: 0;
    margin-bottom: 25px;
  }

  .woocommerce-product-search button[type="submit"] {
    padding: 0 15px;
  }

  .woocommerce-product-search .search-field {
    width: calc(100% - 70px);
  }

  .note-head.bars .note-title {
    font-size: 26px;
  }

  .h-100.pl-40 {
    padding-left: 20px;
  }

  .app-section-1 img.app-tow {
    margin-top: 80px;
  }

  img.app-one {
    margin-top: 30px;
  }

  .about-content.pl-50 {
    padding-left: 25px;
  }

  ul.about-ul {
    display: block;
  }

  ul.about-ul li {
    width: 100%;
  }

  .delivery {
    background-size: cover;
  }

  .banner-3 .banner-slider {
    padding: 70px 0;
  }

  .comments-area .comment-list li ol.children {
    padding-left: 50px;
  }

  .woocommerce ul.products.columns-5 li.product,
  .woocommerce-page ul.products.columns-5 li.product {
    width: calc(25% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-6 li.product,
  .woocommerce-page ul.products.columns-6 li.product {
    width: calc(25% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .customer .review p br {
    display: none;
  }

  .delivery-content p br {
    display: none;
  }

  .banner-title {
    font-size: 42px;
  }

}

@media (min-width: 768px) and (max-width: 991px) {

  .note-title {
    font-size: 28px;
  }

  .delivery-content.pl-25 {
    padding-left: 15px;
  }

  .delivery-content p {
    padding: 15px 0;
  }

  .faq__que,
  .faq__ans {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about.about-1 .about-img {
    padding-bottom: 20px;
  }

  .available-note {
    padding: 33px 20px;
  }

  .about.about-1 .about-details {
    padding-left: 0px;
  }

  .app-section-1 img.app-tow {
    margin-top: 85px;
    width: 100%;
  }

  .customer.customer-1 .review-title {
    font-size: 30px;
  }

  .customer.customer-1 .customer-name.mb-0 {
    padding-top: 15px;
  }

  .woocommerce ul.products.columns-4 li.product,
  .woocommerce-page ul.products.columns-4 li.product {
    width: calc(50% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-5 li.product,
  .woocommerce-page ul.products.columns-5 li.product {
    width: calc(50% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-6 li.product,
  .woocommerce-page ul.products.columns-6 li.product {
    width: calc(50% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .comments-area .comment-list li ol.children {
    padding-left: 60px;
  }

  .product-main-info .name {
    font-size: 30px;
  }

  .team-about-details-wrapper.pl-30 {
    padding-left: 10px;
  }

  .banner-3 .banner-slider {
    padding: 90px 0;
  }

  .available-head {
    font-size: 32px;
  }

  .about-title {
    font-size: 32px;
  }

  .sec-title {
    font-size: 32px;
  }

  .app-title {
    font-size: 32px;
  }

  .banner-2 .banner-bg {
    height: 700px;
  }

  .pricing-2 .plan-price {
    font-size: 36px;
  }

  .pricing-2 .custom-btn-alt {
    padding: 10px 15px;
    font-size: 13px;
  }

}

@media screen and (max-width:991px) {
  br {
    display: none;
  }

  .footer-section {
    background-size: auto;
    background-repeat: repeat;
  }

  .sidebar-default.pr-25 {
    padding-right: 0;
  }

  .single-service-right-bar.pl-20 {
    padding-left: 0;
  }

  .sidebar-default.pl-25 {
    padding-left: 0;
  }

  .delivery {
    background-size: cover;
  }

  .delivery-img img {
    top: 0;
  }

  .about-3 .about-img {
    padding-bottom: 10px;
  }

  .about-content.pl-50 {
    padding-left: 0;
  }

  .about-3 .about-content {
    padding-left: 0;
  }

  .about.about-2 .about-img {
    padding-bottom: 10px;
  }

  .smpadright40 .footer-content-wrapper {
    padding-right: 40px;
  }

  .padleft40 .footer-content-wrapper {
    padding-left: 0px;
  }

  .delivery {
    background-size: cover;
  }

  .about .h-100.pl-40 {
    padding-left: 0;
  }

  .right-social-ul .share-link {
    margin-top: 11px;
  }

  ul.nav-menu {
    display: block;
    background: #ffffff;
    height: 100vh;
    position: fixed;
    right: -100%;
    top: 0;
    width: 250px;
    padding: 10px;
    box-shadow: -2px 1px 20px 1px #00000024;
    backdrop-filter: blur(3px);
    transition: .3s;
    z-index: 99;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .bars {
    display: block;
  }

  .dp-menu {
    width: 100%;
  }

  .close-menu {
    display: flex;
  }

  #search {
    display: none;
  }

  /* ===========banner========= */
  .banner-title {
    font-size: 40px;
  }

  .banner.banner-1 {
    height: 560px;
    padding-top: 100px;
  }

  .bannerSlider .swiper-wrapper {
    padding: 15px 0;
  }

  /* =======app====== */
  img.app-one {
    display: none;
  }

  img.app-tow {
    width: 90%;
  }

  .app-section.app-section-1 {
    margin-top: 0;
    margin-bottom: 25px;
  }

  .bg-availa {
    padding: 60px 0;
  }

  .availability {
    margin-bottom: 95px;
  }

  .customer .review {
    padding: 40px;
  }

  .right-menu-icon {
    margin-left: 0;
    margin-right: 5px;
  }

  ul.about-ul li {
    width: 100%;
  }

  .subs-title {
    font-size: 28px;
  }

  .btn-sec .custom-btn {
    padding: 10px 20px;
  }

  .shop-details-product-big-img.mr-30 {
    margin-right: 15px;
  }
}

@media screen and (max-width:767px) {
  .video-btn.play-medium-icon {
    margin: 0 auto;
  }

  .subscribe.subscribe-3 {
    text-align: center;
  }

  .delivery-content.pl-25 {
    text-align: center;
  }

  .available-content {
    text-align: center;
  }

  .subscribe::before {
    display: none;
  }

  .form-wrapper .contact-form .col-md-6.mb-30 {
    margin-bottom: 20px;
  }

  .customer .review {
    box-shadow: none;
    border: 2px solid #cc3333;
  }

  .shop-notice-result-wrapper {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .checkout_coupon.woocommerce-form-coupon .form-row.form-row-last {
    width: auto;
  }

  .checkout_coupon.woocommerce-form-coupon .form-row.form-row-last {
    float: left;
  }

  .checkout_coupon.woocommerce-form-coupon .form-row.form-row-first {
    margin-right: 15px;
  }

  .all-product-1 .product-card .product-name {
    font-size: 18px;
  }

  .availability {
    margin-bottom: 105px;
  }

  .delivery-title {
    font-size: 26px;
  }

  .delivery {
    background-position: center center;
  }

  .available-content {
    margin-bottom: 45px;
  }

  .member-name {
    font-size: 18px;
  }

  .customer.customer-1 .customer-name {
    margin-top: 10px;
    font-size: 18px;
  }

  .app-feature .des.my-4 {
    padding: 0;
  }

  .feature-name {
    font-size: 18px;
  }

  .all-product-1 .product-name {
    font-size: 18px;
  }

  .woocommerce-page table.cart td.actions .coupon,
  .woocommerce table.cart td.actions .coupon {
    float: left;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .woocommerce-page table.cart td.actions,
  .woocommerce table.cart td.actions {
    text-align: right;
  }

  .coupon.coupon-cart-form {
    width: 50%;
  }

  .woocommerce table.cart .product-thumbnail,
  .woocommerce-page table.cart .product-thumbnail {
    display: block;
  }

  .woocommerce ul.products.columns-2 li.product,
  .woocommerce-page ul.products.columns-2 li.product {
    width: calc(50% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-3 li.product,
  .woocommerce-page ul.products.columns-3 li.product {
    width: calc(50% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-4 li.product,
  .woocommerce-page ul.products.columns-4 li.product {
    width: calc(50% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-5 li.product,
  .woocommerce-page ul.products.columns-5 li.product {
    width: calc(50% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-6 li.product,
  .woocommerce-page ul.products.columns-6 li.product {
    width: calc(50% - 30px);
    margin: 0;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .about.about-1 .about-img {
    padding-bottom: 20px;
  }

  .shop-details-product-big-img.mr-30 {
    margin-right: 0;
  }

  .comments-area .comment-list li ol.children {
    padding-left: 40px;
  }

  .product-main-info .name {
    font-size: 28px;
  }

  .blog-details-content {
    padding: 40px 35px;
  }

  .signle-comment-title {
    font-size: 20px;
  }

  .blog-details-title {
    font-size: 28px;
  }

  .shop-notice-result {
    margin-bottom: 10px;
  }

  .page-head {
    font-size: 32px;
  }

  .banner-1 .bannerSlider .swiper-wrapper .swiper-slide {
    padding: 0px 0;
  }

  .single-service-right-bar {
    margin-top: 30px;
    padding: 0;
  }

  .image-content {
    margin-left: 0;
  }

  .availability {
    margin-top: 105px;
  }

  .admin-biography {
    padding: 40px 35px;
  }

  .team-about-details-wrapper.pl-30 {
    padding-left: 0;
  }

  .banner-3 .banner-slider {
    padding-top: 60px;
  }

  .pricing.pricing-2.cpy-6 {
    padding-bottom: 60px;
  }

  .sec-sm-title {
    font-size: 18px;
  }

  .banner-1 .text-inner {
    padding-top: 30px;
  }

  .call-sec-title {
    font-size: 28px;
  }

  .pricing-card-sec {
    margin-top: 10px;
  }

  .delivery-img {
    display: none;
  }

  .about-title {
    font-size: 28px;
  }

  .title {
    font-size: 28px;
  }

  .sec-title {
    font-size: 28px;
  }

  .available-head {
    font-size: 28px;
  }

  .note-title {
    font-size: 28px;
  }

  .app-title {
    font-size: 28px;
  }

  .sm-title {
    font-size: 18px;
  }

  .banner-1 .slider-item-img {
    margin-top: 30px;
  }

  ul.right-social-ul {
    top: 15%;
  }

  .banner-1 .banner-title {
    font-size: 36px;
  }

  .banner-title {
    font-size: 36px;
  }

  .right-bar {
    padding: 0;
  }

  .text-inner {
    text-align: center;
  }

  .banner-btn-sec {
    justify-content: center;
  }

  .app-img {
    display: none;
  }

  .app-feature {
    padding: 40px 30px;
    padding-bottom: 48px;
  }

  .subscribe {
    padding: 40px 0;
  }

  .review-title {
    font-size: 28px
  }

  .pricing-card.active {
    transform: scale(1);
  }

  .availability {
    margin-top: 0;
    margin-bottom: 365px;
  }

  .reply-comment {
    margin-left: 0;
  }

  .single-comment {
    display: flex;
    align-items: initial;
  }

  img.cat-icon {
    width: 50px;
  }

  .cat-name {
    font-size: 18px;
  }

  .cat-menu-li {
    margin: 0 5px;
  }

  .cat-menu-li {
    padding: 5px 5px;
  }

  .describe {
    padding: 70px 0;
  }

  .video-area {
    padding-top: 60px;
    height: 345px;
  }

  .delivery-area-3 .video-area {
    height: 385px;
    padding-top: 75px;
  }

  .form-wrapper {
    margin-top: -150px;
  }

  .image-content {
    margin-bottom: 0 !important;
  }

  .social-sec {
    display: none;
  }

  .service-list {
    margin-bottom: 0 !important;
  }

  .pricing-card-sec.cmy-5 {
    margin-bottom: 0;
  }

  .post-title {
    font-size: 20px;
  }

  .postbox__content {
    padding: 40px 35px;
    padding-top: 35px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .comment-list ol.children {
    margin-left: 50px;
  }

  .cart-price-wishlist {
    flex-direction: column;
    align-items: start;
  }

  .delivery-content.pl-25 {
    padding-left: 15px;
  }

  .cart-wishlist.product-menu-action {
    display: flex;
    text-align: start;
    flex-direction: row;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #f2f2f2;
  }

  .cart-wishlist.product-menu-action button.woosw-btn {
    order: 2;
    margin-left: 5px;
  }

  .review-title {
    font-size: 30px;
  }

}

@media screen and (max-width:500px) {
  .form-inside {
    padding: 40px 25px;
  }

  .customer-img {
    width: 90px;
    height: 90px;
  }

  .checkout_coupon.woocommerce-form-coupon .form-row.form-row-first {
    width: 100%;
    margin-bottom: 15px;
  }

  .checkout_coupon.woocommerce-form-coupon .form-row.form-row-last {
    float: none;
  }

  .woocommerce ul.products.columns-2 li.product,
  .woocommerce-page ul.products.columns-2 li.product {
    width: 100%;
    margin: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-3 li.product,
  .woocommerce-page ul.products.columns-3 li.product {
    width: 100%;
    margin: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-4 li.product,
  .woocommerce-page ul.products.columns-4 li.product {
    width: 100%;
    margin: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-5 li.product,
  .woocommerce-page ul.products.columns-5 li.product {
    width: 100%;
    margin: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .woocommerce ul.products.columns-6 li.product,
  .woocommerce-page ul.products.columns-6 li.product {
    width: 100%;
    margin: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    margin-right: 0;
    margin-bottom: 0;
  }

  .woocommerce .menu-product ul.products,
  .woocommerce-page .menu-product ul.products {
    margin-right: 0;
  }

  .coupon-form {
    display: block;
    margin-bottom: 20px;
  }

  .blog-details-content {
    padding: 40px 25px;
  }

  .coupon-form input {
    width: 100%;
    margin-bottom: 10px;
  }

  .btn-sec .custom-btn {
    padding: 10px 20px;
  }

  .describe {
    padding: 50px 0;
  }

  .service-des {
    margin-bottom: 0 !important;
  }

  .shopping-btn .custom-btn {
    padding: 10px 25px;
  }

  .mark-des {
    margin: 0px !important;
  }

  .single-service-right-bar {
    padding: 0;
  }

  .personal-info {
    padding: 20px;
  }

  .store img {
    width: 96% !important;
  }

  .admin-biography {
    padding: 40px 25px;
  }

  .comment-btn-wrapper {
    flex-direction: column;
  }

  .comment-btn-wrapper>span {
    display: inline-block;
    margin-top: 10px;
  }

  .comment-avater-img {
    flex: 0 0 60px;
    max-width: 60px;
    max-height: 60px;
  }

  .postbox__content {
    padding: 40px 25px;
    padding-top: 35px;
  }
}

@media (max-width: 575px) {
  .comment-list ol.children {
    margin-left: 0;
  }

  .comment-btn-wrapper {
    margin-bottom: 15px;
  }

  .product-checkout-image-list img {
    margin-right: 0;
    width: 50px;
    display: block;
    margin-bottom: 6px;
  }

  .delivery-content.pl-25 {
    padding-left: 15px;
  }

  .woosw-popup .woosw-items {
    min-width: 450px;
  }

  .woocommerce-product-search button[type="submit"] {
    padding: 0 15px;
  }

  .product-2 .cat-name {
    font-size: 16px;
  }

  .smpadright40 .footer-content-wrapper {
    padding-right: 0;
  }

  .service-heding {
    font-size: 24px;
  }

  .faq__que,
  .faq__ans {
    padding-left: 20px;
    padding-right: 20px;
  }

  .comments-area .comment-list li ol.children {
    padding-left: 0;
  }

  .banner-1 .banner-des {
    font-size: 15px;
  }

  .all-product-1 li.cat-menu-li img {
    margin-bottom: 5px;
  }

  .subscribe-wrapper-1 .input-group .custom-btn {
    padding-left: 25px;
    padding-right: 25px;
  }

  .postbox__title {
    font-size: 24px;
  }

  .page-head {
    font-size: 32px;
  }

  .padright40 .footer-content-wrapper {
    padding-right: 0;
  }

  .watch {
    margin-left: 25px;
  }

  ul.about-ul {
    display: block;
  }

  .post-title {
    font-size: 20px;
  }
}

@media screen and (max-width:400px) {
  .woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-popup-content-bot-inner {
    font-size: 13px;
  }

  .customer .review {
    padding-left: 30px;
    padding-right: 30px;
  }

  .customer-1 .review-pagination {
    margin-left: 28px;
  }

  .banner-bg {
    padding: 10px;
  }

  .side-info {
    padding: 40px 30px;
  }

  .banner .custom-btn {
    padding: 10px 15px;
  }

  .cart-menu {
    right: 12px;
    width: auto;
    left: 12px;
  }

  .nav-list {
    position: initial;
  }

  .commenter-name {
    font-size: inherit;
  }

  .commenter-img img {
    width: 50px;
  }

  .delivery {
    height: auto;
    display: block;
    padding: 30px 25px;
    padding-bottom: 35px;
  }
}

@media screen and (max-width:782px) {
  .logged-in.admin-bar .header {
    margin-top: 46px;
  }

  .logged-in.admin-bar .side-info {
    margin-top: 46px;
  }

}

@media screen and (max-width:600px) {
  .logged-in.admin-bar .header.navbar-fixed {
    margin-top: 0;
  }

  .logged-in.admin-bar .side-info {
    margin-top: 0;
  }

}

.woocommerce-account .woocommerce-MyAccount-navigation>ul {
  padding-left: 0;
}