﻿/* COLORS */
/* ---- PASTELS ---- */
/* ---- OTHER COLORS ---- */
.info-boxes-with-image-wrapper .content-wrapper {
  box-sizing: border-box;
  padding: 40px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 26px;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item {
  flex: 0 0 31%;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-picture {
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  width: 100%;
  height: 130px;
  background: no-repeat center center;
  background-size: cover;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content {
  box-sizing: border-box;
  padding: 20px 20px;
  border-radius: 0 0 24px 24px;
  /* COLORS */
  /* ---- PASTELS ---- */
  /* ---- OTHER COLORS ---- */
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content h4 {
  color: #663399;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content p {
  color: #003399;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.yellow {
  background-color: #ffcc00;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.pink {
  background-color: #ff6699;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.blue {
  background-color: #0099cc;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.blue h4 {
  color: #fff;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.blue p {
  color: #fff;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.green {
  background-color: #009933;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.green h4 {
  color: #fff;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.green p {
  color: #fff;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.purple {
  background-color: #663399;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.purple h4 {
  color: #fff;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.purple p {
  color: #fff;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.red {
  background-color: #ff0033;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.orange {
  background-color: #ff6600;
}
.info-boxes-with-image-wrapper .content-wrapper .box-item .box-content.pastel-bisque {
  background-color: #ffe5bf;
}

@media screen and (max-width: 768px) {
  .info-boxes-with-image-wrapper .content-wrapper {
    padding: 10px 10px;
    display: block;
  }
  .info-boxes-with-image-wrapper .content-wrapper .box-item {
    width: 100%;
    margin-bottom: 30px;
  }
}
