@import url('theme-style.css');

.sec-three-box-wrapper{
  background: linear-gradient(0deg, var(--ft-light-gray) 50%, #fff 50%)
}
.three-box-wrapper{
  padding: 30px;
  border-radius: 8px;
}
.box1{
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0px 6px 10px #3333336b;
  transition: ease-in-out 0.3s;
  background: #fff
}
.box1:hover{
  box-shadow: 0px 6px 15px #333333b0;
  transform: translateY(-8px);
}
.box1 h5 span{
  color: var(--ds-secondary);
}
.box1 p.email{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0 0;
  gap: 5px
}
.box1 p.email i{
  font-size: 15px;
  height: 15px;
  line-height: 1;
  color: var(--ds-primary)
}

@media screen and (max-width: 575px) {
  .three-box-wrapper{
    padding: 25px 15px;
  }
  .box1{
    padding: 20px 15px;
  }
  .box1 h5{
    font-size: 22px;
  }
  .box1 p{
    font-size: 15px;
  }
  .box1 p.email{
    font-size: 14px;
  }
  .box1 p.email i{
    font-size: 13px;
    height: 13px;
  }
}

@media screen and (max-width: 375px) {
  .box1 h5{
    font-size: 20px;
  }
  .box1 p{
    font-size: 14px;
  }
  .box1 p.email{
    font-size: 13px;
  }
  .box1 p.email i{
    font-size: 12px;
    height: 12px;
  }
} 