/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.cws-why-choose{
  position: relative;
  width: 100%;
  background: #FFF7F2;
  overflow: hidden;
}

.cws-why-choose__inner{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 24px;
}

.cws-why-choose__header{
  width: 100%;
  text-align: center;
  margin-bottom: 42px;
}

.cws-why-choose__heading{
  margin: 0;
  color: #302826;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  text-transform: uppercase;
}

.cws-why-choose__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.cws-why-choose__item{
  padding: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.cws-why-choose__item.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.cws-why-choose__icon-wrap{
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cws-why-choose__icon{
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.cws-why-choose__title{
  margin: 0 0 8px;
  color: #000000;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.cws-why-choose__description{
  color: #413F3C;
  text-align: center;
  font-family: "Overpass", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.cws-why-choose__description p{
  margin: 0;
}

.cws-why-choose__description p:not(:last-child){
  margin-bottom: 10px;
}

/* =========================================================
   LARGE DESKTOP
   ========================================================= */
@media (min-width: 1200px) and (max-width: 1439px){
  .cws-why-choose__inner{
    padding: 60px 32px;
  }

  .cws-why-choose__grid{
    gap: 28px;
  }
}

/* =========================================================
   SMALL DESKTOP / LANDSCAPE TABLET
   ========================================================= */
@media (min-width: 992px) and (max-width: 1199px){
  .cws-why-choose__inner{
    padding: 56px 28px;
  }

  .cws-why-choose__header{
    margin-bottom: 38px;
  }

  .cws-why-choose__grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 24px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */
@media (min-width: 768px) and (max-width: 991px){
  .cws-why-choose__inner{
    padding: 52px 24px;
  }

  .cws-why-choose__header{
    margin-bottom: 34px;
  }

  .cws-why-choose__heading{
    font-size: 28px;
    line-height: 38px;
  }

  .cws-why-choose__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .cws-why-choose__item{
    padding: 10px 8px;
  }

  .cws-why-choose__icon-wrap,
  .cws-why-choose__icon{
    width: 72px;
    height: 72px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 767px){
  .cws-why-choose__inner{
    padding: 44px 20px;
  }

  .cws-why-choose__header{
    margin-bottom: 30px;
  }

  .cws-why-choose__heading{
    font-size: 24px;
    line-height: 32px;
  }

  .cws-why-choose__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cws-why-choose__item{
    padding: 10px 6px;
    max-width: 420px;
    margin: 0 auto;
  }

  .cws-why-choose__icon-wrap,
  .cws-why-choose__icon{
    width: 68px;
    height: 68px;
  }

  .cws-why-choose__icon-wrap{
    margin-bottom: 16px;
  }

  .cws-why-choose__title{
    font-size: 19px;
    line-height: 28px;
  }

  .cws-why-choose__description{
    font-size: 15px;
    line-height: 23px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */
@media (max-width: 479px){
  .cws-why-choose__inner{
    padding: 40px 16px;
  }

  .cws-why-choose__heading{
    font-size: 22px;
    line-height: 30px;
  }

  .cws-why-choose__grid{
    gap: 20px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  .cws-why-choose__item{
    opacity: 1;
    transform: none;
    transition: none;
  }
}