/*** 
 ====================================================================
         Features Two Section
 ====================================================================
 
 ***/

.features-two-section {
  position: relative;
  display: block;
  padding: 20px 0  20px;
  background: #f8f8f8;
}

.features-two-sec-single {
  position: relative;
  display: block;
  background: #ffffff;
  margin-bottom: 30px;
  border-radius: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  box-shadow: 0 0 20px 3px rgb(0 0 0 / 2%);
  padding: 50px 40px;
}

.features-two-sec-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(255 82 3 / 8%);
  overflow: hidden;
}
.features-two-sec-icon span {
  font-size: 50px;
  width: 50px;
  color: #ff5203;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.features-two-sec-single h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  margin-top: 23px;
  margin-bottom: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
}

.features-two-sec-single p {
  font-size: 16px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

/*  */
.features-two-sec-single {
  height: 393px;
}
.features-two-sec-single.active {
  background: #1A449A;
  height: 393px;
}

.active .features-two-sec-icon {
  background: #fff;
}

.features-two-sec-single.active h3 {
  color: #fff;
}

.features-two-sec-single.active p {
  color: #fff;
}


.features-two-sec-single p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.features-two-sec-single h3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}