
/* ===========================
    4.FEATURES  css 
=========================== */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-area {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .features-area {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

.single-features {
  border: 5px solid rgba(4, 154, 229, 0.1);
  padding: 25px 15px 25px;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: var(--border-radius1);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-features {
    padding: 40px 10px 35px;
  }
}

@media (max-width: 767px) {
  .single-features {
    padding: 40px 10px 35px;
  }
}

.single-features .features-icon i {
  font-size: 85px;
  line-height: 80px;
  color: var(--color1);
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-features .features-content {
  margin-top: 35px;
}

.single-features .features-content .features-title a {
  font-weight: 700;
  font-size: 24px;
  color: #212849;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-features .features-content .features-title a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .single-features .features-content .features-title a {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-features .features-content .features-title a {
    font-size: 24px;
  }
}

.single-features .features-content .text {
  margin-top: 20px;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-features .features-content .more {
  color: var(--color1);
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-features .features-content .more i {
  font-size: 13px;
}

.single-features.active, .single-features:hover {
  background-color: var(--color1);
}

.single-features.active .features-icon i, .single-features:hover .features-icon i {
  color: #fff;
}

.single-features.active .features-content .features-title a, .single-features:hover .features-content .features-title a {
  color: #fff;
}

.single-features.active .features-content .text, .single-features.active .features-content .more, .single-features:hover .features-content .text, .single-features:hover .features-content .more {
  color: #fff;
}