
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  color: #000;
}

a {
  color: #111;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #106eea;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #F5F5F5;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #000;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #000;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #000;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #000;
  text-decoration: underline;
}
#topbar .social-links a {
  color: #000;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: #000;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.fixed-top {
  height: 70px;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: #106eea;
}
#header .logo img {
  max-height: 20px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #106eea;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #106eea;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #106eea;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #106eea;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #106eea;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
}
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}
#hero h1 span {
  color: #106eea;
}
#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}
#hero .btn-get-started {
      font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #106eea;
}
#hero .btn-get-started:hover {
  background: #247cf0;
}
#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}
#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
#hero .btn-watch-video:hover {
  color: #106eea;
}
#hero .btn-watch-video:hover i {
  color: #3b8af2;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}
.section-title h3 span {
  color: #106eea;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f5f5f5;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.featured-services .icon-box:hover::before {
  background: #106eea;
  top: 0;
  border-radius: 0px;
}
.featured-services .icon {
  margin-bottom: 15px;
}
.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}
.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.featured-services .title a {
  color: #111;
}
.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;
}
.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}
.about .content ul li:first-child {
  margin-top: 35px;
}
.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}
.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}
.about .content ul p {
  font-size: 15px;
}
.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}
.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #106eea;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
      font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}
.clients img:hover {
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}
.services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
  color: #106eea;
}
.services .icon-box:hover .icon {
  border-color: #106eea;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #106eea;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #106eea;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}
.team .member .social a:hover {
  background: #3b8af2;
}
.team .member .social i {
  font-size: 18px;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}
.pricing .box h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.pricing .box ul li {
  padding-bottom: 16px;
}
.pricing .box ul i {
  color: #106eea;
  font-size: 18px;
  padding-right: 4px;
}
.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}
.pricing .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
      font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 600;
  transition: 0.3s;
}
.pricing .btn-buy:hover {
  background: #3b8af2;
}
.pricing .featured h3 {
  color: #fff;
  background: #106eea;
}
.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #106eea;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}
.faq .faq-list {
  padding: 0;
  list-style: none;
}
.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}
.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list .collapsed {
  color: black;
}
.faq .faq-list .collapsed:hover {
  color: #106eea;
}
.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}
.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}
.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #106eea;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #3b8af2;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
  background: #111;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #111;
  border-bottom: 1px solid #ffffff1f;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}
#footer .footer-top .footer-contact p {
  font-size: 12px;
    line-height: 2;
    margin-bottom: 0;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #7e7e7e;
}
#footer .footer-top h4 {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #7e7e7e;
  transition: 0.3s;
  display: inline-block;
  line-height: 2;
  font-size:12px;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}
#footer .footer-top .social-links a {
      font-size: 18px;
    display: inline-block;
    color: #000;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    background: #7e7e7e;
    border-radius: 30px;
}
#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 10px;
  color: #7e7e7e;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
@media (min-width: 1400px){
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1846px;
    /* padding: 0 38px 0 36px; */
  } 
  .concon, .concon-lg, .concon-md, .concon-sm, .concon-xl, .concon-xxl {
    max-width: 1320px;
  }
}
.credits a{color:#7e7e7e}

.footer-contact ul li{list-style: none;margin-bottom: 10px;}
.footer-contact ul{padding-left: 0;}
.footer-contact a{color:#7e7e7e}
.search-round input{
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: whitesmoke;
  border: 1px solid #f5f5f5
}
.search-round span button{
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: whitesmoke;
}
.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
}
.navbar .megamenu{ padding: 1rem; }

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  .navbar .has-megamenu{position:static!important;}
  .navbar .megamenu{left:0; right:0; width:100%; margin-top:0;  }

}	
/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px){
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
    overflow-y: auto;
      max-height: 90vh;
      margin-top:10px;
  }
}
/* ============ mobile view .end// ============ */

.unset{position: unset !important;}
.relatip{position: relative;}

.navbar .dropdown ul {
  left: 0;
}
.navbar .dropdown:hover > ul {
  top: 75%;
  border: #ffdead00;
  padding-top: 50px;
}
.navbar .dropdown ul {
  box-shadow: 0px 0px 30px rgb(15 19 28 / 0%);
}
.list-unstyled p a{padding: 10px 0 !important;}
.list-unstyled p {margin:0 !important}
section{padding:30px 0;}
#header {
    box-shadow: 0px 2px 15px rgb(0 0 0 / 0%);
}

.slick-prev {
  right: 70px;
  left: auto;
}
.slick-next, .slick-prev {
  border-radius: 24px;
  height: 48px;
  width: 48px;
  background-color: #e5e5e5;
}
.slick-next:before, .slick-prev:before {
  opacity: 1;
  color: #000;
}
.slick-next {
  right: 0px;
}

.slick-next:before {
  content: '\f054';
}
.slick-prev:before {
  content: '\f053';
}
.slick-next:before, .slick-prev:before {
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
  line-height: 1;
  opacity: .75;
  color: #000;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
  background-color: #e5e5e5;
}


.slick-slide img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.slick-slide{display: flex;justify-content: center;padding: 10px;}
.slick-slide .slick-desc {
  margin: 0 auto;
  margin-top: 15px;
}
.slick-desc h3{font-size: 16px;}
.slick-desc h6{
  font-size: 16px;
  color: #757575;
  font-weight: 400;
}
.p65{padding-top: 80px;}
.f24{font-size: 24px;}
.mb45{margin-bottom: 45px}
.list-unstyled p a{
  color:#757575 ;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.feature-tile {
  background-color: #fff;
}
.feature-tile__container {
  padding: 0 0 50px;
}
@media only screen and (min-width: 992px){
  .feature-tile__container {
    padding: 0 0 100px;
  }
}

.feature-tile__content {
  margin: 0;
  padding: 15px 10px;
}
@media only screen and (min-width: 768px){
  .feature-tile__content {
    padding: 20px 0 40px;
  }
}
@media only screen and (min-width: 992px){
  .feature-tile__content {
    padding: 20px 20px 40px;
  }
}
.feature-tile--home .feature-tile__content {
  padding: 15px 20px 40px 0px;
}
@media only screen and (min-width: 450px){
  .feature-tile--home .feature-tile__content {
    padding-top: 20px;
  }
}
.feature-tile__callout {
  margin-bottom: 20px;
}
.story-caption, .story__caption, .feature-tile__callout {
  border-bottom: 4px solid #111;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1.3px;
  line-height: 1;
  padding-bottom: 5px;
  text-transform: uppercase;
}
.feature-tile--home .feature-tile__headline {
  font-size: 24px;
  margin-bottom: 7px;
  line-height: 1.1;
  font-weight: bold;
}
@media only screen and (min-width: 1800px){
  .feature-tile--home .feature-tile__headline {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px){
  .feature-tile--home .feature-tile__headline {
    font-size: 22px;
  } 
}

.feature-tile__copy, .feature-tile__link {
  font-size: 14px;
}

.feature-tile__container img{
 width: 100%;
 max-height: 290px;
}
.post-thumb img{
  width: 75px;
  border-radius: 5px;
}
.post-content{padding: 5px}
.post-content a{font-size: 11px;}
.post-content a h6{font-size: 12px;margin-bottom: 0;}
.copyright, .credits{font-size: 10px;color: #7e7e7e;}
#footer a:hover{color:white}
.sidebar7 {
  position: sticky;
  top: 80px;
  margin-bottom: 80px;
}
.accordion-item{border: none !important;}
.accordion-button:not(.collapsed) {
  color: #111;
  background-color: #e7f1ff00;
  box-shadow: unset;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
}
.accordion-button {
  padding: 0;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0;
}
.form-check {
  margin-bottom: 0.2rem;
}

.minuso:after {
  content: "Less";
  font-weight: 400;
  margin-left: 5px;
}

.pluso:after {
  content: "More";
  margin-left: 5px;
  font-weight: 400;
}

.filter-text{font-size: 18px;}
.accordion-body {
  padding: 1rem 0rem;
}
#hero{overflow: hidden;}
.load-img{display: block;margin: 0 auto;}
/* ========================================================= */
/* End of ERA */
/* ========================================================= */
.top {
  top: 0;
}
.z-1 {
  z-index: 21;
}
.left {
  left: 0;
}
.absolute {
  position: absolute !important;
}
.right {
  right: 0;
}
.is-small, .is-small.button {
  font-size: .8em;
}
.image-tools {
  padding: 10px;
  position: absolute;
}
.badger-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
  background-color: #446084;
  line-height: .85;
  color: #fff;
  font-weight: bolder;
  padding: 2px;
  white-space: nowrap;
  -webkit-transition: background-color .3s, color .3s, border .3s;
  -o-transition: background-color .3s, color .3s, border .3s;
  transition: background-color .3s, color .3s, border .3s;
}
.badger-container {
  margin: 30px 0 0 0;
}
.badger-circle-inside .badger-inner, .badger-circle .badger-inner {
  border-radius: 999px;
}
.badger-inner.on-sale {
  background-color: #fbab09;
}
.badger {
  display: table;
  z-index: 20;
  pointer-events: none;
  height: 2.8em;
  width: 2.8em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.badger {
  margin-top: -30px;
}
.badger-outline, .badger-circle {
  margin-left: -0.4em;
}
.box .name a{
  height: 40px;
}
.onsale:before, .onsale:after{box-sizing: unset;}
.box {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.is-outline:hover i, .primary.is-outline:hover {
  color: #fff;
}
.box, .box-image, .box-text {
  -webkit-transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
}
.has-shadow.box:not(.box-overlay):not(.box-shade), .has-shadow .box:not(.box-overlay):not(.box-shade) {
  background-color: #fff;
}
.box, .box-image, .box-text {
  -webkit-transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
}
.box-image {
  position: relative;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.box-image>a, .box-image>div>a {
  display: block;
}
.box-image img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
.has-hover .bg, .has-hover [class*="image-"] img {
  -webkit-transition: opacity .6s, -webkit-filter .6s, -webkit-transform .6s, -webkit-box-shadow .3s;
  transition: opacity .6s, -webkit-filter .6s, -webkit-transform .6s, -webkit-box-shadow .3s;
  -o-transition: filter .6s, opacity .6s, transform .6s, box-shadow .3s;
  transition: filter .6s, opacity .6s, transform .6s, box-shadow .3s;
  transition: filter .6s, opacity .6s, transform .6s, box-shadow .3s, -webkit-filter .6s, -webkit-transform .6s, -webkit-box-shadow .3s;
}
.image-tools.top.right {
  padding-bottom: 0;
  padding-left: 0;
}
.show-on-hover, .hover-slide, .hover-slide-in, .hover-zoom, .hover-zoom-in {
  opacity: 0;
  -webkit-transition: opacity .5s, max-height .6s, -webkit-transform .3s, -webkit-filter .6s;
  transition: opacity .5s, max-height .6s, -webkit-transform .3s, -webkit-filter .6s;
  -o-transition: opacity .5s, transform .3s, max-height .6s, filter .6s;
  transition: opacity .5s, transform .3s, max-height .6s, filter .6s;
  transition: opacity .5s, transform .3s, max-height .6s, filter .6s, -webkit-transform .3s, -webkit-filter .6s;
  -webkit-filter: blur(0);
  filter: blur(0);
  pointer-events: none;
}
.wishlist-icon {
  position: relative;
}
.button.is-outline {
  line-height: 2.19em;
}
.is-outline {
  color: #453b45;
}
.circle {
  border-radius: 999px !important;
  -o-object-fit: cover;
  object-fit: cover;
}
.button.is-outline, input[type='submit'].is-outline, input[type='reset'].is-outline, input[type='button'].is-outline {
  border: 2px solid currentColor;
  background-color: transparent;
}
.button.icon {
  margin-left: 0.12em;
  margin-right: 0.12em;
  min-width: 2.5em;
  padding-left: 0.6em;
  padding-right: 0.6em;
  display: inline-block;
}

.button.icon.circle {
  padding-left: 0;
  padding-right: 0;
}
button i, .button i {
  vertical-align: middle;
  top: -1.5px;
}
.button.icon i {
  font-size: 1.2em;
}
.button.icon.circle>i {
  margin: 0 8px;
}
.button.icon.circle>i:only-child {
  margin: 0;
}
.image-tools.bottom.left {
  padding-top: 0;
  padding-right: 0;
}
.image-tools {
  padding: 10px;
  position: absolute;
}
.bottom {
  bottom: 0;
}
.hover-slide-in {
  -webkit-transform: translateY(100%) translateZ(0);
  transform: translateY(100%) translateZ(0);
}
.grid-tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 !important;
  margin-bottom: -1px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  white-space: nowrap;
}
.image-tools a:last-child {
  margin-bottom: 0;
}
.box-image>a, .box-image>div>a {
  display: block;
}
.box-text {
  padding-top: 0.7em;
  padding-bottom: 1.4em;
  position: relative;
  width: 100%;
  font-size: .9em;
}
.has-shadow .box-text {
  padding-left: 1.2em;
  padding-right: 1.2em;
}
.no-text-overflow {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.box-text p {
  margin-top: 0.1em;
  margin-bottom: 0.1em;
}
.op-7 {
  opacity: .7;
}
.uppercase, h6, th, span.widget-title {
  line-height: 1.05;
  letter-spacing: .05em;
  /*text-transform: uppercase;*/
}
.ping {
    border: 1px solid #f8f9fa;
    padding: 15px;
    box-shadow: 1.395px 19.951px 38px 0px rgb(0 0 0 / 5%);
    transition: .4s;
    border-radius: 5px;
    background: white;
}
.ping a {
    color: #035ba3;
}

.is-uppercase, .uppercase {
  line-height: 1.2;
  text-transform: uppercase;
}
.box-text h1, .box-text h2, .box-text h3, .box-text h4, .box-text h5, .box-text h6, .box-text a:not(.button) {
  line-height: 1.3;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
}
.box a {
  display: inline-block;
}
.price {
  line-height: 1;
}
.price-wrapper .price {
  display: block;
}
span.amount {
  white-space: nowrap;
  color: #111;
  font-weight: bold;
}
del span.amount {
  opacity: .6;
  font-weight: normal;
  margin-right: 0.3em;
}
.col-inner, .col-inner:hover, .box-shadow-2, .box-shadow-2-hover:hover {
  -webkit-box-shadow: 0 3px 6px -4px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  box-shadow: 0 3px 6px -4px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}
.has-hover:hover .hover-slide, .has-hover:hover .hover-slide-in, .has-hover:hover .hover-zoom, .has-hover:hover .hover-zoom-in, .has-hover:hover .show-on-hover {
  opacity: 1;
  -webkit-transform: scale(1) translateZ(0) translateY(0) !important;
  transform: scale(1) translateZ(0) translateY(0) !important;
  pointer-events: inherit;
}
.grid-tools a:hover {
  color: #FFF;
  opacity: 1;
}
.image-tools a:last-child {
  margin-bottom: 0;
}
.scroll-to-bullets a, .featured-title, .label-new.menu-item > a:after, .nav-pagination > li > .current, .nav-pagination > li > span:hover, .nav-pagination > li > a:hover, .has-hover:hover .badger-outline .badger-inner, button[type="submit"], .button.wc-forward:not(.checkout):not(.checkout-button), .button.submit-button, .button.primary:not(.is-outline), .featured-table .title, .is-outline:hover, .has-icon:hover .icon-label, .nav-dropdown-bold .nav-column li > a:hover, .nav-dropdown.nav-dropdown-bold > li > a:hover, .nav-dropdown-bold.dark .nav-column li > a:hover, .nav-dropdown.nav-dropdown-bold.dark > li > a:hover, .is-outline:hover, .tagcloud a:hover, .grid-tools a, input[type='submit']:not(.is-form), .box-badger:hover .box-text, input.button.alt, .nav-box > li > a:hover, .nav-box > li.active > a, .nav-pills > li.active > a, .current-dropdown .cart-icon strong, .cart-icon:hover strong, .nav-line-bottom > li > a:before, .nav-line-grow > li > a:before, .nav-line > li > a:before, .banner, .header-top, .slider-nav-circle .flickity-prev-next-button:hover svg, .slider-nav-circle .flickity-prev-next-button:hover .arrow, .primary.is-outline:hover, .button.primary:not(.is-outline), input[type='submit'].primary, input[type='submit'].primary, input[type='reset'].button, input[type='button'].primary, .badger-inner {
  background-color: #b89056;
}
.grid-tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 !important;
  margin-bottom: -1px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  white-space: nowrap;
}
.grid-tools a {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  opacity: .95;
  display: block;
  width: 100%;
  padding: 0.4em 0 0.5em;
  font-size: .85em;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #403442;
  color: #f1f1f1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}
.image-tools .wishlist-button:hover {
  background-color: #b20000;
  border-color: #b20000;
}
.wishlist-popup {
  opacity: 0;
  max-height: 0;
  position: absolute;
  overflow: hidden;
  padding: 5px;
  margin-top: -10px;
  border-radius: 5px;
  line-height: 1.3;
  text-align: center;
  font-size: .9em;
  top: 100%;
  background-color: #4DD589;
  right: 0;
  color: #FFF;
  transition: opacity .3s, max-height .3s;
  transition-delay: .3s;
}
a:hover {
  color: #403442;
  text-decoration: none;
}
.dark, .dark p, .dark td {
  color: #f1f1f1;
}
.wishlist-icon:hover .wishlist-popup {
  opacity: 1;
  max-height: 200px;
  overflow-y: auto;
}
.has-hover:hover img.show-on-hover {
  opacity: 1;
}
.has-hover:hover .hover-slide, .has-hover:hover .hover-slide-in, .has-hover:hover .hover-zoom, .has-hover:hover .hover-zoom-in, .has-hover:hover .show-on-hover {
  opacity: 1;
  -webkit-transform: scale(1) translateZ(0) translateY(0) !important;
  transform: scale(1) translateZ(0) translateY(0) !important;
  pointer-events: inherit;
}
.video-fit video, .video-fit iframe, img.back-image, .image-cover img, .has-format img, .has-equal-box-heights .box-image img {
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  top: 0;
  position: absolute;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.box-text {
  padding-left: 1.2em;
  padding-right: 1.2em;
}
.box-text {
  padding-top: 0.7em;
  padding-bottom: 1.4em;
  position: relative;
  width: 100%;
  font-size: .9em;
}
.quantity input {
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
.quantity input[type="number"] {
  max-width: 2.5em;
  width: 2.5em;
  text-align: center;
  border-radius: 0 !important;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  font-size: 1em;
}
.quantity {
  opacity: 1;
  display: inline-block;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1em;
  white-space: nowrap;
  vertical-align: top;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  overflow-wrap: normal!important;
  word-wrap: normal!important;
  padding: 0;
  position: absolute!important;
  width: 1px;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.is-form, button.is-form, input[type='submit'].is-form, input[type='reset'].is-form, input[type='button'].is-form {
  overflow: hidden;
  position: relative;
  background-color: #f9f9f9;
  text-shadow: 1px 1px 1px #fff;
  color: #666;
  border: 1px solid #ddd;
  text-transform: none;
  font-weight: normal;
}

.quantity .button.minus {
  border-right: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.quantity .button.plus {
  border-left: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.quantity .minus, .quantity .plus {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.quantity+.button {
  margin-right: 0;
  font-size: 1em;
}
.current .breadcrumb-step, [data-icon-label]:after, .button#place_order, .button.checkout, .checkout-button, .single_add_to_cart_button.button {
  background-color: #6fa037!important;
}
.single_add_to_cart_button.button {
  background-color: #6fa03700!important;
  color: #6fa037;
  border-color: #6fa037;
}
.button.alt:not(.is-outline), .single_add_to_cart_button {
  display: block;
  width: 100%;
}
.button.alt:not(.is-outline), .single_add_to_cart_button {
  margin-top: 10px;
}
.quick-view:hover {
  cursor: pointer;
}
.judul-modal{font-size: 1.7em;}
.product-info .price {font-size: 1.5em;}

.product_meta {
  font-size: .8em;
  margin-bottom: 1em;
}
.product_meta>span {
  display: block;
  border-top: 1px dotted #000;
  padding: 5px 0;
}

.btn-shopee {
  color: #F84420;
  background-color: #fff;
  border-color: #F84420;
}

.btn-tokped {
  color: #41B54A;
  background-color: #fff;
  border-color: #41B54A;
}

.btn-blibli {
  color: #0094D9;
  background-color: #fff;
  border-color: #0094D9;
}

.btn-bukalapak {
  color: #D71149;
  background-color: #fff;
  border-color: #D71149;
}

.btn-block{width: 100%;}
.buto {
  position: relative;
  display: inline-block;
  background-color: transparent;
  text-transform: uppercase;
  font-size: .97em;
  letter-spacing: .03em;
  cursor: pointer;
  font-weight: bolder;
  text-align: center;
  color: currentColor;
  text-decoration: none;
  border: 1px solid transparent;
  vertical-align: middle;
  border-radius: 0;
  margin-top: 0;
  margin-right: 1em;
  text-shadow: none;
  line-height: 2.4em;
  min-height: 2.5em;
  padding: 0 1.2em;
  max-width: 100%;
  -webkit-transition: border .3s, background .3s, opacity .3s, color .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  transition: border .3s, background .3s, opacity .3s, color .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  -o-transition: transform .3s, border .3s, background .3s, box-shadow .3s, opacity .3s, color .3s;
  transition: transform .3s, border .3s, background .3s, box-shadow .3s, opacity .3s, color .3s;
  transition: transform .3s, border .3s, background .3s, box-shadow .3s, opacity .3s, color .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
  text-rendering: optimizeLegibility;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.buto.is-underline:before {
  content: "";
  height: 2px;
  background-color: currentColor;
  opacity: .3;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
}
.buto.is-underline:hover:before {
  left: 0%;
  width: 100%;
  opacity: 1;
}
.buto span {
  display: inline-block;
  line-height: 1.6;
}
.secondary.is-underline, .secondary.is-link, .secondary.is-outline, .stars a.active, .star-rating:before, .woocommerce-page .star-rating:before, .star-rating span:before, .color-secondary {
  color: #403442;
}
.is-larger {
  font-size: 1.3em;
}
.product-relative{position: relative;}
.buto.is-underline, .button.is-link {
  background-color: transparent !important;
  border-color: transparent !important;
  padding-left: 0.15em;
  padding-right: 0.15em;
}
.full-width, .expand {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: block;
}
.flickity-enabled {
  position: relative;
}
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  opacity: 0;
  -webkit-transition: opacity .3s, -webkit-transform .5s;
  transition: opacity .3s, -webkit-transform .5s;
  -o-transition: transform .5s, opacity .3s;
  transition: transform .5s, opacity .3s;
  transition: transform .5s, opacity .3s, -webkit-transform .5s;
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}
.slider>div:not(.col), .slider>a, .slider>p, .slider>a>img, .slider>img {
  width: 100%;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
.flickity-slider>div:not(.col), .flickity-slider>a, .flickity-slider>p, .flickity-slider>a>img, .flickity-slider>img, .flickity-slider>figure {
  width: 100% !important;
  padding: 0;
  margin: 0;
  -webkit-transition: opacity .6s, -webkit-transform .6s, -webkit-box-shadow 0.6s;
  transition: opacity .6s, -webkit-transform .6s, -webkit-box-shadow 0.6s;
  -o-transition: transform .6s, opacity .6s, box-shadow 0.6s;
  transition: transform .6s, opacity .6s, box-shadow 0.6s;
  transition: transform .6s, opacity .6s, box-shadow 0.6s, -webkit-transform .6s, -webkit-box-shadow 0.6s;
}
.product-thumbnails img, .product-gallery-slider img {
  width: 100%;
}
.kuplus{
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;  
}
.kuminus{
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.bg-green{background-color:#0A860A ;}
.brakik{
  max-width: 1200px;
  margin: 0 auto;
}

.men-pro-item {
  position: relative;
  box-shadow: 0px 0px 15px 0px #d6d6d6;
}
.men-thumb-item:hover {
  cursor: pointer;
}
.men-thumb-item {
  position: relative;
}
.men-thumb-item::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  opacity: 0;
  z-index: 9;
  visibility: hidden;
  transition: all 0.5s ease-out 0s;
}
.men-thumb-item:hover::before {
  opacity: 1;
  visibility: visible;
}
.product-men img {
  width: 100%;
}
.men-thumb-item img {
  transition: all 0.5s ease-out 0s;
  padding: 52px 50px 20px;
}

.men-cart-pro {
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  transition: all 0.5s ease-out 0s;
  visibility: hidden;
  z-index: 10;
}
.men-thumb-item:hover .men-cart-pro {
  opacity: 1;
  visibility: visible;
}
.inner-men-cart-pro {
  height: 100%;
  position: relative;
  width: 100%;
  transition: all 0.5s ease-out 0s;
}
.link-product-add-cart {
  background: #000 none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
  transition: all 0.5s ease-out 0s;
}
.inner-men-cart-pro .link-product-add-cart {
  width: 100%;
  bottom: -40px;
  left: 0;
  position: absolute;
  transition: all 0.5s ease-out 0s;
}
.inner-men-cart-pro .link-product-add-cart {
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transition: all 0.5s ease-out 0s;
}
.men-thumb-item:hover .inner-men-cart-pro .link-product-add-cart {
  top: 83.5%;
}
.product-new-top {
  background: #fc636b none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  right: 0;
  padding: 0 10px 1px;
  position: absolute;
  top: 0;
  border-bottom-left-radius: 10px;
  z-index: 99;
}
.item-info-product {
  text-align: center;
  margin: 20px 0 0;
}
.item-info-product h4 a {
  font-size: 13px;
  color: #0a860a;
  text-decoration: none;
  font-weight: 600;
  padding: 0 5px;
}
.info-product-price {
  margin: 10px 0;
}
.info-product-price span {
  color: #000;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 1px;
}
.info-product-price del {
  color: #908e8e;
  margin-left: 10px;
  font-size: 0.7em;
  letter-spacing: 1px;
}
.hvr-outline-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgb(0 0 0 / 0%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #0a860a;
}
.snipcart-details {
  text-align: center;
  margin: 0.5em auto 0.5em;
  width: 95%;
}
.hvr-outline-out:before {
  content: '';
  position: absolute;
  border: #0a860a solid 4px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-out:hover:before, .hvr-outline-out:focus:before, .hvr-outline-out:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
.agile_top_brand_left_grid:hover .snipcart-details a.button, .snipcart-details a.button:hover {
  background: #0a860a;
}
.item-info-product h4{
  height: 50px;
  margin-bottom: 20px;
  line-height:1;
}
.men-thumb-item img {
  max-height: 245px;
}

.stok-av{
  color: #0a860a;
  font-size: 14px;
}
.snipcart-details a.button {
  font-size: 13px;
  color: #fff;
  background: #0a860a;
  text-decoration: none;
  position: relative;
  border: none;
  border-radius: 0;
  width: 100%;
  text-transform: uppercase;
  padding: 0.5em 0;
  outline: none;
  letter-spacing: 1px;
  font-weight: 600;
}

.mr-2{margin-right: 20px;}

.post-slide{
  margin: 0 15px;
}
.post-slide .post-img{
  overflow: hidden;
}
.post-slide .post-img img{
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: all 1s ease-in-out 0s;
}
.post-slide:hover .post-img img{
  transform: scale(1.08);
}
.post-slide .post-content{
  background: #eee;
  padding: 20px;
}
.post-slide .post-title{
  font-size: 17px;
  font-weight: 600;
  margin-top: 0;
  text-transform: capitalize;
}
.post-slide .post-title a{
  display: inline-block;
  color: #0a860a;
  transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover{
  color: #3d3030;
  text-decoration: none;
}
.post-slide .post-description{
  font-size: 15px;
  color: #0a860a;
  line-height: 24px;
  margin-bottom: 14px;
}
.post-slide .post-bar{
  padding: 0;
  margin-bottom: 15px;
  list-style: none;
}
.post-slide .post-bar li{
  color: #0a860a;
  padding: 2px 0;
}
.post-slide .post-bar li i{
  margin-right: 5px;
}
.post-slide .post-bar li a{
  display: inline-block;
  font-size: 12px;
  color: #0a860a;
  transition: all 0.3s ease 0s;
}
.post-slide .post-bar li a:after{
  content: ",";
}
.post-slide .post-bar li a:last-child:after{
  content: "";
}
.post-slide .post-bar li a:hover{
  color: #3d3030;
  text-decoration: none;
}
.single-widget-area .widget-title {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.single-widget-area .single-latest-post {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.single-widget-area .single-latest-post .post-thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  max-width: 70px;
  width: 70px;
  margin-right: 30px;
}
.post-thumb img{width: 100%;}
.single-widget-area .single-latest-post .post-content .post-title h6 {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.single-widget-area .single-latest-post .post-content .post-date {
  display: block;
  font-size: 14px;
  margin-bottom: 0;
  color: #4a4a4a;
  line-height: 1;
}

.post-slide .read-more{
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #0a860a;
  border-bottom-right-radius: 10px;
  text-transform: capitalize;
  transition: all 0.30s linear;
}
.post-slide .read-more:hover{
  background: #333;
  text-decoration: none;
}
.snipcart-details fieldset {
  min-width: 0;
  padding: 5px;
  margin: 0;
  border: 0;
}
.snipcart-details a{
  cursor: pointer;
}

@media (max-width:700px) {

  .container.ban{
      padding-left: 0;
      padding-right: 0;
  }

  .men-thumb-item:hover .inner-men-cart-pro .link-product-add-cart {
      top: 79.5%;
  }
  .link-product-add-cart {
      line-height: 30px;
      font-size: 14px;
  }
}

/* :: 8.0 Shop Page Area CSS */
.shop-sorting-data {
  position: relative;
  z-index: 1;
  padding-bottom: 25px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ebebeb;
}

@media only screen and (max-width: 767px) {
  .shop-sorting-data .shop-page-count {
    margin-bottom: 30px;
  }
}

.shop-sorting-data .shop-page-count p {
  font-size: 16px;
  color: #212529;
  margin-bottom: 0;
  font-weight: 500;
}

.shop-sorting-data .search_by_terms {
  position: relative;
  z-index: 1;
}

.shop-sorting-data .search_by_terms select {
  width: 180px;
  height: 40px;
  color: #51545f;
  font-size: 16px;
  background-color: #f5f5f5;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  margin-left: 30px;
}

@media only screen and (max-width: 767px) {
  .shop-sorting-data .search_by_terms select {
    margin-left: 0;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .shop-sorting-data .search_by_terms select {
    margin-left: auto;
    margin-right: 15px;
    margin-bottom: 0;
  }
}

.shop-sorting-data .search_by_terms select:focus {
  box-shadow: none;
}

.shop-widget {
  position: relative;
  z-index: 1;
}

.shop-widget .widget-title {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.shop-widget .custom-control .custom-control-label {
  font-size: 16px;
  color: #212529;
}

.shop-widget .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
  background-color: #0a860a;
}

.shop-widget .single-best-seller-product {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.shop-widget .single-best-seller-product::after {
  margin-bottom: 0;
}

.shop-widget .single-best-seller-product .product-thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  max-width: 70px;
  width: 70px;
  margin-right: 30px;
}

.shop-widget .single-best-seller-product .product-info a {
  display: block;
  color: #212529;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.shop-widget .single-best-seller-product .product-info a:hover,
.shop-widget .single-best-seller-product .product-info a:focus {
  color: #303030;
}

.shop-widget .single-best-seller-product .product-info p {
  margin-bottom: 0;
  color: #303030;
  font-weight: 500;
}

.shop-widget .single-best-seller-product .product-info .ratings i {
  font-size: 12px;
  color: #ff9800;
}

.slider-range-price {
  position: relative;
  z-index: 1;
}

.shop-widget .ui-slider-handle {
  background-color: #0a860a;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  z-index: 30;
  top: -3px;
}

.ui-slider-handle.first-handle {
  display: none !important;
}

.shop-widget .ui-slider-range.ui-widget-header.ui-corner-all {
  background-color: #0a860a;
  position: absolute;
  height: 6px;
  width: auto;
  z-index: 10;
  left: 2px !important;
}

.shop-widget .ui-slider-horizontal {
  height: 6px;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.shop-widget .range-price {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  text-transform: uppercase;
}

.single_product_thumb {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .single_product_thumb {
    margin-bottom: 50px;
  }
}

.single_product_thumb .carousel-indicators {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  margin-right: 0;
  margin-left: 0;
  margin-top: 30px;
  justify-content: start;
}

.single_product_thumb .carousel-indicators li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  margin-right: 15px;
  margin-left: 0px;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid transparent;
  background-size: cover;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .single_product_thumb .carousel-indicators li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }
}

.single_product_thumb .carousel-indicators li.active {
  border: 1px solid #111;
}

.single_product_desc {
  position: relative;
  z-index: 1;
}

.single_product_desc .title {
  font-size: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .single_product_desc .title {
    font-size: 20px;
    font-weight:bold;
  }
}

.single_product_desc .price {
  font-size: 26px;
  font-weight: 600;
  color: #0a860a;
  margin-bottom: 30px;
}

.single_product_desc .short_overview {
  margin-bottom: 30px;
}

.single_product_desc .short_overview p {
  font-size: 14px;
}

.single_product_desc .cart--area {
  position: relative;
  z-index: 1;
  /* border-bottom: 1px solid #ebebeb; */
  padding-bottom: 50px;
}

.mr-3{
  margin-right: 9px;
}
.single_product_desc .cart {
  position: relative;
  z-index: 1;
}

.single_product_desc .cart .quantityx {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 150px;
  flex: 0 0 150px;
  max-width: 150px;
  width: 150px;
}

@media only screen and (max-width: 991px) {
  .single_product_desc .cart .quantityx {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 130px;
    flex: 0 0 130px !important;
    max-width: 130px !important;
    width: 130px !important;
  }
}

.single_product_desc .cart .quantityx .qty-text {
  height: 46px;
  padding: 5px 15px;
  width: 150px;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
  font-size: 14px;
  border: none;
  background-color: #f2f4f5;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .single_product_desc .cart .quantityx .qty-text {
    width: 130px !important;
  }
}

.single_product_desc .cart .quantityx .qty-minus,
.single_product_desc .cart .quantityx .qty-plus {
  display: block;
  height: 100%;
  position: absolute;
  left: 10px;
  text-align: center;
  top: 0;
  width: 30px;
  z-index: 99;
  cursor: pointer;
  font-size: 8px;
  line-height: 46px;
  color: #303030;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .single_product_desc .cart .quantityx .qty-minus,
  .single_product_desc .cart .quantityx .qty-plus {
    left: 0;
  }
}

.single_product_desc .cart .quantityx .qty-plus {
  left: auto;
  right: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_product_desc .cart .quantityx .qty-plus {
    right: 0;
  }
}

.single_product_desc .wishlist-compare {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .single_product_desc .wishlist-compare {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .single_product_desc .wishlist-compare {
    margin-top: 0;
  }
}

.single_product_desc .wishlist-compare a {
  background-color: #f2f4f5;
  display: inline-block;
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  font-size: 16px;
}

.single_product_desc .products--meta {
  position: relative;
  z-index: 1;
  padding-top: 50px;
}

.single_product_desc .products--meta p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single_product_desc .products--meta p span:first-child {
  font-weight: 500;
  color: #303030;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 150px;
  flex: 0 0 150px;
  max-width: 150px;
  width: 150px;
}

.single_product_desc .products--meta p span:last-child {
  font-weight: 400;
  color: #212529;
}

.single_product_desc .products--meta p span:last-child a {
  color: #cccccc;
  font-size: 14px;
  margin-right: 15px;
}

.single_product_desc .products--meta p span:last-child a:hover {
  color: #0a860a;
}

.product_details_tab {
  position: relative;
  z-index: 1;
  /*padding: 50px 0;*/
  /* border-top: 1px solid #ebebeb; */
  /* border-bottom: 1px solid #ebebeb; */
}

.product_details_tab .nav-tabs {
  border-bottom: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}

.product_details_tab .nav-tabs .nav-link {
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0 15px;
  font-size: 20px;
  color: #303030;
}

.product_details_tab .nav-tabs .nav-link.active,
.product_details_tab .nav-tabs .nav-link:hover {
  color: #0a860a;
}

.product_details_tab .additional_info_area p {
  color: #303030;
}

.product_details_tab .additional_info_area p span {
  color: #212529;
}

.product_details_tab .review-rating i {
  color: #ff9800;
  font-size: 14px;
}

.product_details_tab .review-rating>span {
  font-size: 16px;
  font-weight: 500;
  color: #303030;
}

.submit_a_review_area form .stars {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABaCAYAAACv+ebYAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAAAWdEVYdENyZWF0aW9uIFRpbWUAMDcvMDMvMTNJ3Rb7AAACnklEQVRoge2XwW3bMBSGPxa9NxtIGzTAW8DdRL7o3A0qb+BrdNIm9QAm0G7gbJBMwB5MoVJNUSRFIXGqHwhkmXr68hOPNH9ljOEt9OlNqBs4RlrrSmtdpdZ/Ti0EGnvtUoqTHFunBVCkuk6d6mbi83rggdteSa5THDeB3+UDO9z2inatXFum1roESuAReAB29vp15n2/gRfgZK+/gIuIXLxgrfUO+Bnzn0fom4ic+pvRVNuB/QrQ/RB6A7bwLjN8b985krO5MsKd0ElwJvgk1AteCPdCYWI5/SutddQxRUTU3DOzG4hd01EKqQnZuaLBITUh4F0CeLYm5CDw6PjuFTjaz9+BLwE1I8VO9StwAEoRaUSkseMHO+aqcWq2qwcdfQCOIvIy8dwDV/c/YL6zvWDbnQ3QuH5hltQEreM1dH/n6g28gT8eWLVUqqVKrb+vtGidFkCR6vp+0uLAba8k1/eRFh1ue0W7dv4sqpaSjGnR1Fy8YNWyY8W0aGpO/c1oqu3AKmlxCL0BW3iXGb637xzJ2VwZ4U7oJDgTfBLqBS+Ee6EQeMpULVFHUVOzPC3aNR2lkJotLbr0vtKiqWlMTcNaaXHQ0QfgaGqcaVG1jNLibGcbYyb/eDIlT6bjyZS+51JqtrS4gTfw/wzWqkKrKrU8fQPR6gKAmDKlPM3x1WkBFKmu0xxf3fZR5jnFdbzjv257JbmOdzx22yvadZzjW7e9ol27HWtVkjEtIubiB2u1Y8W0iJhTfzOe6uvAKmlxCL0FX+FdZvjevnMkd3Plgzuh0+A88EmoH7wM7oVC6AaiVdwuI2Z5WrRrOk4BNVtadOl9pUXENIhpWCstDjr6ABwR40yLaDVKi7Od7U1/Z0pzpjNngtNiaM2WFj8++A+motm0NTqjmwAAAABJRU5ErkJggg==") repeat-x 0 0;
  width: 150px;
}

.submit_a_review_area form .stars::after,
.submit_a_review_area form .stars::before {
  display: table;
  content: "";
}

.submit_a_review_area form .stars::after {
  clear: both;
}

.submit_a_review_area form .stars input[type="radio"] {
  position: absolute;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.submit_a_review_area form .stars input[type="radio"].star-5:checked~span {
  width: 100%;
}

.submit_a_review_area form .stars input[type="radio"].star-4:checked~span {
  width: 80%;
}

.submit_a_review_area form .stars input[type="radio"].star-3:checked~span {
  width: 60%;
}

.submit_a_review_area form .stars input[type="radio"].star-2:checked~span {
  width: 40%;
}

.submit_a_review_area form .stars input[type="radio"].star-1:checked~span {
  width: 20%;
}

.submit_a_review_area form .stars label {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 !important;
  padding: 0 !important;
  text-indent: -999em;
  float: left;
  position: relative;
  z-index: 10;
  background: transparent !important;
  cursor: pointer;
}

.submit_a_review_area form .stars label:hover~span {
  background-position: 0 -30px;
}

.submit_a_review_area form .stars label.star-5:hover~span {
  width: 100% !important;
}

.submit_a_review_area form .stars label.star-4:hover~span {
  width: 80% !important;
}

.submit_a_review_area form .stars label.star-3:hover~span {
  width: 60% !important;
}

.submit_a_review_area form .stars label.star-2:hover~span {
  width: 40% !important;
}

.submit_a_review_area form .stars label.star-1:hover~span {
  width: 20% !important;
}

.submit_a_review_area form .stars span {
  display: block;
  width: 0;
  position: relative;
  top: 0;
  left: 0;
  height: 30px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAABaCAYAAACv+ebYAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAAAWdEVYdENyZWF0aW9uIFRpbWUAMDcvMDMvMTNJ3Rb7AAACnklEQVRoge2XwW3bMBSGPxa9NxtIGzTAW8DdRL7o3A0qb+BrdNIm9QAm0G7gbJBMwB5MoVJNUSRFIXGqHwhkmXr68hOPNH9ljOEt9OlNqBs4RlrrSmtdpdZ/Ti0EGnvtUoqTHFunBVCkuk6d6mbi83rggdteSa5THDeB3+UDO9z2inatXFum1roESuAReAB29vp15n2/gRfgZK+/gIuIXLxgrfUO+Bnzn0fom4ic+pvRVNuB/QrQ/RB6A7bwLjN8b985krO5MsKd0ElwJvgk1AteCPdCYWI5/SutddQxRUTU3DOzG4hd01EKqQnZuaLBITUh4F0CeLYm5CDw6PjuFTjaz9+BLwE1I8VO9StwAEoRaUSkseMHO+aqcWq2qwcdfQCOIvIy8dwDV/c/YL6zvWDbnQ3QuH5hltQEreM1dH/n6g28gT8eWLVUqqVKrb+vtGidFkCR6vp+0uLAba8k1/eRFh1ue0W7dv4sqpaSjGnR1Fy8YNWyY8W0aGpO/c1oqu3AKmlxCL0BW3iXGb637xzJ2VwZ4U7oJDgTfBLqBS+Ee6EQeMpULVFHUVOzPC3aNR2lkJotLbr0vtKiqWlMTcNaaXHQ0QfgaGqcaVG1jNLibGcbYyb/eDIlT6bjyZS+51JqtrS4gTfw/wzWqkKrKrU8fQPR6gKAmDKlPM3x1WkBFKmu0xxf3fZR5jnFdbzjv257JbmOdzx22yvadZzjW7e9ol27HWtVkjEtIubiB2u1Y8W0iJhTfzOe6uvAKmlxCL0FX+FdZvjevnMkd3Plgzuh0+A88EmoH7wM7oVC6AaiVdwuI2Z5WrRrOk4BNVtadOl9pUXENIhpWCstDjr6ABwR40yLaDVKi7Od7U1/Z0pzpjNngtNiaM2WFj8++A+motm0NTqjmwAAAABJRU5ErkJggg==") repeat-x 0 -60px;
  -webkit-transition: -webkit-width 0.5s;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}

.review-details p {
  font-size: 12px;
}

.submit_a_review_area h4 {
  font-size: 20px;
}

.submit_a_review_area .form-group>label {
  font-size: 14px;
}

.submit_a_review_area input,
.submit_a_review_area select {
  font-size: 14px;
  width: 100%;
  height: 40px;
  border: none;
  background-color: #f2f4f5;
  border-radius: 0;
}

.submit_a_review_area textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-radius: 0;
  background-color: #f2f4f5;
}

/* :: 9.0 Cart Area CSS */
.cart-table {
  position: relative;
  z-index: 1;
}


.alazea-btn2 {
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 150px;
  height: 46px;
  color: #ffffff !important;
  background-color: #0A860A !important;
  border: 2px solid #0A860A;
  border-radius: 2px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 42px;
  text-transform: uppercase;
  font-weight: 600;
}
.pull-right {
  float: right;
}
.cart-table thead th {
  border: none;
  border-bottom: none;
  font-size: 20px;
  padding: 0 0 30px 0;
  color: #303030;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}
/* :: 7.0 New Arrivals Products Area */
.single-product-area {
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.single-product-area .product-img {
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.single-product-area .product-img a {
  display: block;
}

.single-product-area .product-img img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.single-product-area .product-img .product-tag a {
  background-color: #429edf;
  border-radius: 2px;
  display: inline-block;
  height: 20px;
  padding: 0 10px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.single-product-area .product-img .product-tag.sale-tag a {
  background-color: #e61d47;
}

.single-product-area .product-img .product-meta {
  position: absolute;
  bottom: 30px;
  left: 15px;
  right: 15px;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.single-product-area .product-img .product-meta a {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  background-color: #303030;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  max-width: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  text-align: center;
}

.single-product-area .product-img .product-meta a:hover,
.single-product-area .product-img .product-meta a:focus {
  background-color: #0a860a;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-product-area .product-img .product-meta a {
    font-size: 11px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-product-area .product-img .product-meta a {
    font-size: 11px;
  }
}

@media only screen and (max-width: 767px) {
  .single-product-area .product-img .product-meta a {
    font-size: 14px;
  }
}

.single-product-area .product-img .product-meta .add-to-cart-btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 100px);
  flex: 0 0 calc(100% - 100px);
  max-width: calc(100% - 100px);
  width: calc(100% - 100px);
  border-left: 1px solid rgba(235, 235, 235, 0.5);
  border-right: 1px solid rgba(235, 235, 235, 0.5);
}

.single-product-area .product-info a p {
  margin-bottom: 0;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.single-product-area .product-info a p:hover,
.single-product-area .product-info a p:focus {
  color: #0a860a;
}

.single-product-area .product-info h6 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.price-sale {
  color: #cccccc;
  text-decoration: line-through;
  /*margin-left: 9px;*/
}

.single-product-area:hover .product-img {
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.15);
}

.single-product-area:hover .product-img .product-meta {
  visibility: visible;
  opacity: 1;
}  

.alazea-btn.active, .alazea-btn:hover, .alazea-btn:focus {
  color: #ffffff !important;
  background-color: #3b3b3b;
  border-color: #3b3b3b;
  box-shadow: none;
}
.scroll-to-bullets a, .featured-title, .label-new.menu-item > a:after, .nav-pagination > li > .current, .nav-pagination > li > span:hover, .nav-pagination > li > a:hover, .has-hover:hover .badger-outline .badger-inner, button[type="submit"], .button.wc-forward:not(.checkout):not(.checkout-button), .button.submit-button, .button.primary:not(.is-outline), .featured-table .title, .is-outline:hover, .has-icon:hover .icon-label, .nav-dropdown-bold .nav-column li > a:hover, .nav-dropdown.nav-dropdown-bold > li > a:hover, .nav-dropdown-bold.dark .nav-column li > a:hover, .nav-dropdown.nav-dropdown-bold.dark > li > a:hover, .is-outline:hover, .tagcloud a:hover, .grid-tools a, input[type='submit']:not(.is-form), .box-badger:hover .box-text, input.button.alt, .nav-box > li > a:hover, .nav-box > li.active > a, .nav-pills > li.active > a, .current-dropdown .cart-icon strong, .cart-icon:hover strong, .nav-line-bottom > li > a:before, .nav-line-grow > li > a:before, .nav-line > li > a:before, .banner, .header-top, .slider-nav-circle .flickity-prev-next-button:hover svg, .slider-nav-circle .flickity-prev-next-button:hover .arrow, .primary.is-outline:hover, .button.primary:not(.is-outline), input[type='submit'].primary, input[type='submit'].primary, input[type='reset'].button, input[type='button'].primary, .badger-inner {
  background-color: #dc3545;
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
  height: 46px;
  border-radius: 2px;
}
.alazea-btn {
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 180px;
  height: 46px;
  color: #ffffff !important;
  background-color: #000000;
  border: 2px solid #000000;
  border-radius: 30px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 42px;
  font-weight: 400;
}

.ml-15 {
  margin-left: 15px !important;
}
.section-title h1 {
  margin: 0;
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #37423b;
}
.select2-container--bootstrap .select2-selection--single {
  height: 38px;
  line-height: 1.42857143;
  padding: 8px 24px 6px 12px;
}
.kurio img{
  height: 65px;
}
.blkng p, .blkng h1, .blkng span{color:white}
.jdlo p, .jdlo h4{color: white;}
.jdlo p{font-size: 12px;}
.jdlo h4{font-weight: bold;font-size: 18px;}

.jdloe{box-shadow: 0 0 8px rgb(0 0 0 / 12%);padding: 10px;}
.item-info-product h4 {
  margin-bottom: 0;
}
.info-product-price {
  margin-top: 0;
}
.b-cart{width:100%;}
@media(max-width:700px){
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
      color: #020202;
  }
  
  .navbar a, .navbar a:focus {
      color: #000;
  }
  
  .mobile-nav-toggle {
      color: #111;
  }
  
  .kurio img {
      height: 40px;
  }
  
  .item-info-product h4 {
      height: 65px;
  }
  
  .b-cart{width:auto;}
  .carto{
      flex-wrap :wrap;
      justify-content:center;
  }
  
  .price-sale {
      font-size: 21px;
  }
  
  .single_product_desc .short_overview p {
  font-size: 14px;
  margin-bottom: 0.4rem;
  }
  
  .single_product_desc .cart--area {
   padding-bottom: 0px; 
  }
  
}


@media(max-width:1200px){
  .section-title p {
      margin: 0;
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      font-family: "Poppins", sans-serif;
      color: #37423b;
  }
  
}

.woocommerce table.shop_table {
  border: 1px solid rgba(0,0,0,.1);
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
}
th, td {
  padding: 7px;
  text-align: left;
}
.woocommerce table.shop_table th {
  font-weight: 700;
  padding: 9px 12px;
  line-height: 1.5em;
}
.woocommerce table.shop_table td {
  border-top: 1px solid rgba(0,0,0,.1);
  padding: 9px 12px;
  vertical-align: middle;
  line-height: 1.5em;
}
#add_payment_method table.cart td, #add_payment_method table.cart th, .woocommerce-cart table.cart td, .woocommerce-cart table.cart th, .woocommerce-checkout table.cart td, .woocommerce-checkout table.cart th {
  vertical-align: middle;
}
#add_payment_method table.cart .product-thumbnail, .woocommerce-cart table.cart .product-thumbnail, .woocommerce-checkout table.cart .product-thumbnail {
  min-width: 32px;
}
.woocommerce a.remove {
  display: block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: red!important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
}
.woocommerce img, .woocommerce-page img {
  height: auto;
  max-width: 100%;
}
table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
  width: 32px;
  box-shadow: none;
}
.woocommerce #content table.cart img, .woocommerce table.cart img, .woocommerce-page #content table.cart img, .woocommerce-page table.cart img {
  height: auto;
}
.woocommerce .quantity, .woocommerce-page .quantityp {
  display: inline-block;
  position: relative;
}
table.cart input, .woocommerce-cart table.cart input, .woocommerce-checkout table.cart input {
  margin: 0;
  vertical-align: middle;
}
.woocommerce .quantityp .plus, .woocommerce .quantityp .minus, .woocommerce-page .quantityp .plus, .woocommerce-page .quantityp .minus {
  margin: 0;
  border: 0;
  color: #333333;
  background: 0;
}
.woocommerce .quantityp .minus, .woocommerce-page .quantityp .minus {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding-right: 3px;
  padding-left: 5px;
}
.screen-reader-text {
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  width: 1px;
  height: 1px;
}

.woocommerce .quantityp .qty {
  width: 3.631em;
  text-align: center;
}
.woocommerce .quantityp .qty {
  width: 60px;
}
.no-touchevents .woocommerce .quantityp .qty {
  padding-right: 0;
}

.woocommerce .quantityp .plus, .woocommerce .quantityp .minus, .woocommerce-page .quantityp .plus, .woocommerce-page .quantityp .minus {
  margin: 0;
  border: 0;
  color: #333333;
  background: 0;
}
.woocommerce .quantityp .plus:focus, .woocommerce .quantityp .minus:focus, .woocommerce-page .quantityp .plus, :focus .woocommerce-page .quantityp .minus:focus {
  outline: 0;
}
.woocommerce .quantityp .plus, .woocommerce-page .quantityp .plus {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding-right: 5px;
  padding-left: 3px;
}

/*.woocommerce .quantityp, .woocommerce-page .quantityp {*/
/*    display: inline-block;*/
/*    position: relative;*/
/*}*/
.woocommerce [type="number"] {
  padding: 7px 10px 7px;
  border: 1px solid #dddddd;
  border-radius: 3px;
}

.woocommerce .quantityp .qty {
  width: 3.631em;
  text-align: center;
}
.woocommerce .quantityp .qty {
  width: 60px;
}
.woocommerce .quantityp .plus:hover, .woocommerce .quantityp .minus:hover, .woocommerce-page .quantityp .plus:hover, .woocommerce-page .quantityp .minus:hover {
  border: 0;
  color: #333333;
  background: 0;
}

.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
  width: 100%;
}
.woocommerce .cart-collaterals::after, .woocommerce .cart-collaterals::before, .woocommerce-page .cart-collaterals::after, .woocommerce-page .cart-collaterals::before {
  content: ' ';
  display: table;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
  float: right;
  width: 48%;
}
.cart-collaterals .cart_totals table, .woocommerce-cart .cart-collaterals .cart_totals table, .woocommerce-checkout .cart-collaterals .cart_totals table {
  border-collapse: separate;
  margin: 0 0 6px;
  padding: 0;
}
.cart-collaterals .cart_totals table th, .woocommerce-cart .cart-collaterals .cart_totals table th, .woocommerce-checkout .cart-collaterals .cart_totals table th {
  width: 35%;
}
.cart-collaterals .cart_totals table td, #add_payment_method .cart-collaterals .cart_totals table th, .woocommerce-cart .cart-collaterals .cart_totals table td, .woocommerce-cart .cart-collaterals .cart_totals table th, .woocommerce-checkout .cart-collaterals .cart_totals table td, .woocommerce-checkout .cart-collaterals .cart_totals table th {
  vertical-align: top;
  border-left: 0;
  border-right: 0;
  line-height: 1.5em;
}
.cart-collaterals .cart_totals tr td, #add_payment_method .cart-collaterals .cart_totals tr th, .woocommerce-cart .cart-collaterals .cart_totals tr td, .woocommerce-cart .cart-collaterals .cart_totals tr th, .woocommerce-checkout .cart-collaterals .cart_totals tr td, .woocommerce-checkout .cart-collaterals .cart_totals tr th {
  border-top: 1px solid #ebe9eb;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
  float: right;
  width: 48%;
  margin: 20px 0;
}

.btk{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.nav-link:focus, .nav-link:hover {
  color: #000000;
}
.link-product-add-cart:hover{color:white;}
@media(max-width:768px){
  .woocommerce table.shop_table_responsive thead, .woocommerce-page table.shop_table_responsive thead {
      display: none;
  } 
  
  .woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
      content: attr(data-title) ": ";
      font-weight: 700;
      float: left;
  }
  
  .woocommerce table.shop_table_responsive tr td.product-remove::before, .woocommerce-page table.shop_table_responsive tr td.product-remove::before {
      content: unset;
      font-weight: 700;
      float: left;
  }
  .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
      display: block;
  }
  .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
      display: block;
      text-align: right!important;
  }
  .woocommerce table.shop_table_responsive tbody tr:first-child td:first-child, .woocommerce-page table.shop_table_responsive tbody tr:first-child td:first-child {
      border-top: 0;
  }
  
  
  
  .woocommerce .cart-collaterals .cart_totals, .woocommerce .cart-collaterals .cross-sells, .woocommerce .cart-collaterals .shipping_calculator, .woocommerce-page .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cross-sells, .woocommerce-page .cart-collaterals .shipping_calculator {
      width: 100%;
      float: none;
      text-align: left;
  }
  .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
      background-color: rgba(0,0,0,.025);
  }
  .woocommerce #content table.cart .product-thumbnail, .woocommerce table.cart .product-thumbnail, .woocommerce-page #content table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail {
      display: none;
  }
  .quantityp .minus, .quantityp .plus{display:none;}
  
  .woocommerce table.shop_table_responsive tbody th, .woocommerce-page table.shop_table_responsive tbody th {
      display: none;
  }
  
  .birkok{padding-left:0;padding-right:0;}
  .citit{margin-left:0 !important;}
  
}

.slick-slide a{color: #111;}

.pb1-sm {
  padding-bottom: 4px;
}
.d-sm-ib {
  display: inline-block;
}
.headline-5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.css-3rkuu4 .is--current-price {
  font-weight: 500;
}

.css-3rkuu4 .is--current-price {
  font-weight: 500;
}
.css-trwz1a {
  display: inline-block;
  margin-right: 4px;
}
.css-11s12ax {
  color: #111111;
}
.headline-2 {
  font-weight: 500 !important;
  font-size: 28px !important;
  line-height: 1.428571;
}

.css-zis9ta {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.007em;
}

@media (max-width:600px) {
  #topbar {
    font-size: 12px;
  }


  .navbar-mobile {
    position: fixed !important;
  }

  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #e7e7e7;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  }
  
  .navbar .dropdown:hover > ul {
    top: 75%;
    border: #ffdead00;
    padding-top: 0px;
  }

  .slick-desc h3,.slick-desc h6 {
    font-size: 14px;
  }

  section.single_product_details_area,section.about-us-area,section.inner-page,section{
    padding-top: 0px;
    padding-bottom: 0;
  }

  .slick-next, .slick-prev {
    top: 33%;
    z-index: 999;
  }

  .slick-prev {
    left: 0px !important;
  }
  .slick-next {
    right: 0px !important;
  }

  .slick-next, .slick-prev {
    border-radius: 24px;
    height: 30px;
    width: 30px;
    background-color: #e5e5e5;
  }

  #featured-services .slick-prev {
    left: auto !important;
    right: 45px !important;
  }

  .p65 {
    padding-top: 0px;
  }

}
.navbar a, .navbar a:focus {
    font-size: 16px;
    font-weight: 500;
    color: #000 !important;
}
.title a{
    font-size:16px;
    color:#000;
}
.list-unstyled p a {
    font-size: 14px;
    padding: 0px 0 !important;
}
.list-unstyled p a {
    color: #757575 !important;
}
.recent-inner {
    background-color: #fff;
    padding: 10px;
}
.recent-inner .post-image {
    padding: 0;
    border: none;
    margin: 0;
}
.post-image img {
    width: 100%;
    max-height: 100%;
}
.post-image .post-date {
    background-color: #0088cc;
    text-align: center;
    font-family: 'Oswald';
    color: #fff;
    font-weight: 400;
    position: absolute;
    top: 7px;
    left: 22px;
}
.post-image .post-date .day {
    font-size: 18px;
    letter-spacing: 0.05em;
    background: none;
    color: #fff;
    font-weight: 400;
    padding: 10px 0 4px;
    line-height: 1;
}
.post-image .post-date .month {
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: none;
    font-weight: 400;
    padding: 0 0 8px;
    line-height: 1;
}
.postTitle {
    min-height: auto;
    padding-top: 10px;
    padding-left: 18px;
    margin-bottom: 10px;
}
.postContent {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}


.postContent, .postContent p {
    padding-left: 18px;
    font-size: 12px;
    color: #687176;
    line-height: 24px;
    margin-bottom: 5px;
}
.readmore {
    margin-left: 18px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: #2b2b2d;
    padding: 9px 16px;
    border-radius: 2px;
}
a.readmore {
    font-weight: 300;
    font-size: 16px;
}
.postContent p {
    padding-left: 0;
}
.postTitle h2 {
    font-size: 18px;
    letter-spacing: -0.001em;
    line-height: 22px;
}
.text-muted {
    color: #6c757d!important;
    font-size:10px;
}
.by {
    color: #000;
    border-bottom: 1px dotted #ccc;
}
.mb45 {
    margin-bottom: 15px;
}
.kiplo{
    padding-left: 18px;
    margin-bottom: 10px;
}
.p65 {
    padding-top: 30px;
}
.slick-desc h5{font-size: 14px;}
@media (min-width:1401px){
    .mb45 {
        margin-bottom: 40px;
    }
}
@media (max-width:1400px){
    .slick-desc h3{font-size: 13px;}
    .slick-desc h5{font-size: 11px;}
    .slick-desc h6{
      font-size: 13px;
      color: #757575;
      font-weight: 400;
    }
    
    .wuling {
        margin: 0.25rem 0;
    }
}