/* Web Design: K-fab - Business HTML Landing Page Template
   Author: Hariprasad
   Created: Mar 2024
   Description: Custom Features Section CSS file
*/



/* ==========================================================================
   IMPORT GOOGLE FONTS
   ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Rubik:400,400i,500");
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600");
/* ==========================================================================
      GENERAL
      ========================================================================== */

/* ==========================================================================
      Section Title - Keep
      ========================================================================== */

.section {
  padding: 50px 0px;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
}

.section-header {
  color: #fff;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.section-header .section-title {
  font-size: 25px;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
  line-height: 40px;
}

.section-header .desc-text p {
  font-size: 18px;
  color: #2a2b36;
  line-height: 26px;
  margin-bottom: 0;
}

/* ==========================================================================
         Features - Keep
         ========================================================================== */
#features {
  background: #f9f9f9;
}

#features .featured-bg {
  background: #fff;
}

#features .featured-border1 {
  border-bottom: 1px solid #ededed;
  border-right: 1px solid #ededed;
}

#features .featured-border2 {
  border-bottom: 1px solid #ededed;
}

#features .featured-border3 {
  border-right: 1px solid #ededed;
}

#features .feature-item {
  padding: 30px;
  overflow: hidden;
  transition: all .8s ease;
  display: flex;
  align-items: center;
}

#features .feature-item .feature-icon {
  background: #e3fff2;
  width: 100px;
  height: 100px;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
  margin-right: 30px;
  border: 1px solid #3ecf8e;
  flex-shrink: 0;
}

#features .feature-item .feature-icon i {
  font-size: 40px;
  color: #3ecf8e;
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
}

#features .feature-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

#features .feature-item p {
  font-size: 16px;
  display: contents;
  align-items: center;
}

#features .feature-item:hover {
  box-shadow: 0px 0px 25px 0px rgba(95, 95, 95, 0.24);
  transition: all .8s ease;
}

#features .feature-item:hover .feature-icon {
  background: #3ecf8e;
  transition: all .8s ease;
}

#features .feature-item:hover .feature-icon i {
  color: #fff;
  transition: all .8s ease;
}

/* Center the content on mobile view */
@media (max-width: 1080px) {
  #features .feature-item {
    flex-direction: column;
    text-align: center;
  }

  #features .feature-item .feature-icon,
  #features .feature-item .feature-info {
    margin: 0 auto;
  }
}