.benefits-section {
  margin-bottom: 20px;
  margin-top: 20px;
}
.benefits-section .heading-section {
  background-color: var(--red-color);
  margin-bottom: 50px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .benefits-section .heading-section {
    height: 80px;
  }
}
.benefits-section .heading-section .heading-title {
  font-family: var(--main-r);
  font-size: 40px;
  color: var(--white-color);
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .benefits-section .heading-section .heading-title {
    font-size: 30px;
  }
}
.benefits-section .box {
  text-align: center;
}
.benefits-section .box .box-icon i {
  color: var(--red-color);
  font-size: 45px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .benefits-section .box .box-icon i {
    font-size: 35px;
    margin-bottom: 10px;
  }
}
.benefits-section .box .box-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--red-color);
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .benefits-section .box .box-icon svg {
    margin-bottom: 10px;
  }
}
.benefits-section .box .box-content .box-title {
  font-size: 20px;
}
@media (max-width: 767px) {
  .benefits-section .box .box-content .box-title {
    font-size: 18px;
  }
}
