/**
* Hero
*/
.hero-intro {
  background-color: #fff;
  margin: 0 auto;
  padding: 60px 0;
}

.hero-intro-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-intro_thumb {
  max-height: 320px;
  border-radius: 4px;
  box-shadow: 0 0 10px -4px #e7e7e7;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-into-content {
  width: 50%;
}

.hero-intro-content_heading {
  font-family: var(--main-font);
  font-size: var(--text-xl);
  font-weight: var(--sub-title-text-weight);
  color: var(--dark-color);
  margin: 0 0 15px 0;
  line-height: 35px;
}

.hero-intro-content_description {
  color: var(--text-dark);
  font-size: var(--text-md);
  line-height: 26px;
}

@media screen and (max-width: 991px) {
  .hero-intro-wrap {
    flex-wrap: wrap;
  }
  .hero-intro_thumb,
  .hero-into-content {
    width: 100%;
  }
}
/**
* Slider
*/
.features-slider {
  margin-top: 60px;
  margin-bottom: 60px;
}
.features-slider .main-title {
  display: table;
  margin-bottom: 15px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.features-slider .heading-description {
  font-size: var(--text-base);
  font-weight: var(--normal-text-weight);
  text-transform: var(--normal-text-transform);
  color: var(--text-dark);
  margin: 0;
  text-align: center;
  margin-bottom: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.features-slider .sub-title {
  text-align: center;
  margin: 0 auto 6px;
  display: table;
}

.features-slider-wrap {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .features-slider-wrap {
    flex-wrap: wrap;
  }
}

.features-slider-wrap-thumbs {
  width: 65%;
}
@media screen and (max-width: 991px) {
  .features-slider-wrap-thumbs {
    width: 100%;
  }
}
.features-slider-wrap-thumbs img {
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 0 10px -4px #e7e7e7;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .features-slider-wrap-controls {
    width: 100%;
  }
}

.features-slider-wrap-controls-item {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 6px;
  box-shadow: 0 0 10px -3px #e7e7e7;
  margin: 5px 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}
.features-slider-wrap-controls-item.slick-current {
  background-color: #f8feff;
  border-color: var(--main-color);
}

.features-slider-wrap-controls-item_heading {
  margin: 0 0 10px;
  font-size: var(--text-lg);
  font-family: var(--main-font);
  font-weight: var(--sub-title-text-weight);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.slick-current .features-slider-wrap-controls-item_heading {
  color: var(--main-color);
}

.features-slider-wrap-controls-item_description {
  margin: 0;
  color: var(--text-color);
  font-size: var(--text-base);
  line-height: 21px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.features-slider-wrap-controls .prev {
  display: table !important;
  margin: 0 auto;
  width: 35px;
  background-color: #fff;
  border: 0;
  height: 35px;
  border-radius: 50%;
  margin-bottom: -18px;
  z-index: 9;
  position: relative;
  box-shadow: 0 0 10px #e7e7e7;
}

.features-slider-wrap-controls .next {
  display: table !important;
  margin: 0 auto;
  width: 35px;
  background-color: #fff;
  border: 0;
  height: 35px;
  border-radius: 50%;
  margin-top: -18px;
  z-index: 9;
  position: relative;
  box-shadow: 0 0 10px #e7e7e7;
}

/**
* Features Blocks
*/
.features-blocks-list {
  padding: 60px 0;
}
.features-blocks-list .main-title {
  display: table;
  margin-bottom: 15px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.features-blocks-list .heading-description {
  font-size: var(--text-base);
  font-weight: var(--normal-text-weight);
  text-transform: var(--normal-text-transform);
  color: var(--text-dark);
  margin: 0;
  text-align: center;
  margin-bottom: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.features-blocks-list.white--bg {
  background-color: #fff;
}

.features-block-list-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
  margin: 60px auto 0;
  width: 65%;
}

.features-block-list-wrap-item {
  width: calc(50% - 30px);
}

.features-block-list-wrap-item i {
  font-size: 40px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.success--type .features-block-list-wrap-item i {
  color: var(--success-color);
}

.info--type .features-block-list-wrap-item i {
  color: var(--info-color);
}

.danger--type .features-block-list-wrap-item i {
  color: var(--danger-color);
}

.features-block-list-wrap-item img {
  height: 37px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

.features-block-list-wrap-item h4 {
  margin: 0;
  font-family: var(--main-font);
  font-size: var(--text-head);
  font-weight: var(--sub-title-text-weight);
  color: var(--dark-color);
}

.features-block-list-wrap-item p {
  margin: 10px 0 0;
  font-size: var(--text-base);
  color: var(--text-color);
  line-height: 23px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 991px) {
  .features-block-list-wrap {
    width: 100%;
  }
}/*# sourceMappingURL=product-features.css.map */