.features_section {
  margin: 100px 0px;
}
.feature-column {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 25%;
}
.feature-box {
  background: #11132b;
  border-radius: 18px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  padding: 28px 12px;
  margin: 1px;
  position: relative;
}
.feature-box:after {
  content: "";
  display: flex;
  background: #ffffff14;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 18px;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.feature-column:nth-of-type(2) .feature-icon,
.feature-column:nth-of-type(4) .feature-icon {
  background: #00b7ff1a;
}
.feature-column:nth-of-type(3) .feature-icon {
  background: #fbc1231a;
}
.feature-box:hover:after {
  background: linear-gradient(119.15deg, rgba(247, 59, 144, 0.8) 15.92%, rgba(0, 183, 255, 0.8) 83.61%);
}
.feature-icon {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f73b901a;
  margin: 0px auto 30px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.feature-box .feature-icon img {
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.feature-box:hover .feature-icon img {
  transform: rotate(10deg);
}
.feature-box .feature-content p {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.015em;
  color: #eeeeee;
  opacity: 0.9;
  margin-top: 8px;
}

@media only screen and (min-width: 1200px) {
  .features_section .row {
    margin-left: -23px;
    margin-right: -23px;
  }
  .feature-column {
    padding-left: 23px;
    padding-right: 23px;
  }
}
@media only screen and (max-width: 1199px) {
  .feature-column {
    width: 33.33%;
    margin-bottom: 30px;
  }
  .features_section .row {
    margin-bottom: -30px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-column {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .features_section {
    margin: 70px 0px;
  }
}

@media only screen and (max-width: 575px) {
  .feature-column {
    width: 100%;
    margin-bottom: 17px;
  }
  .features_section .row {
    margin-bottom: -17px;
  }
}
