.statement-section .statement-item {
  width: 50%;
}
.statement-section .statement-item .statement-item-inner {
  background: #ffffff;
  border: 1px solid #b1b1b1;
  border-radius: 12px;
  padding: 25px 40px;
  height: 100%;
  transition: var(--transition);
}
.statement-section .statement-item .statement-item-inner .statement-icon {
  height: 60px;
  width: 60px;
  background-color: var(--theme-color);
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.statement-section .statement-item .statement-item-inner:hover {
  background-color: #feeded;
  border-color: var(--theme-color);
}
.statement-section .statement-item h3 {
  margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) {
  .statement-section .row {
    margin-left: -22px;
    margin-right: -22px;
  }
  .statement-section .statement-item {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .statement-section .statement-item .statement-item-inner {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .statement-section .statement-item {
    width: 100%;
    margin-bottom: 30px;
  }
}
