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

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

.features-two-section h2 {
  margin-bottom: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 42px;
}

.features-two-sec-single {
  position: relative;
  display: block;
  height: calc(100% - 30px);
  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: 40px 30px;
}

.features-two-sec-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(249 72 146/ 8%);
}

.features-two-sec-icon img {
  width: 50%;
}

.features-two-sec-icon span {
  font-size: 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.active {
  background: var(--color-primary);
}

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

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

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

@media screen and (max-width:480px){
.features-two-section{
padding:20px;
}
.features-two-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

  .features-two-sec-single{
  padding:20px;
  }
  .features-two-sec-single p {
    font-size: 12px;
  }
  
}

