/* =========================================================
   BOOKING CTA
   ========================================================= */

.cws-booking-cta{
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #ffffff;
}

.cws-booking-cta__bg{
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.cws-booking-cta__bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.cws-booking-cta__bg-image{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
}

.cws-booking-cta__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.cws-booking-cta__row{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cws-booking-cta__spacer{
  width: 50%;
}

.cws-booking-cta__content-col{
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.cws-booking-cta__card{
  width: 100%;
  max-width: 590px;
  background: #ffffff;
  padding: 50px 60px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  box-sizing: border-box;
}

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

.cws-booking-cta__subtext{
  margin: 0 0 16px;
  color: #DE5945;
  font-family: "Overpass", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.cws-booking-cta__description{
  margin: 0 0 24px;
  color: #413F3C;
  font-family: "Overpass", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.cws-booking-cta__description p{
  margin: 0;
}

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

.cws-booking-cta__button-wrap{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cws-booking-cta__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  border: 0;
  border-radius: 0 20px 0 20px;
  background: #DE5945;
  color: #ffffff;
  font-family: "Overpass", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

.cws-booking-cta__button:hover,
.cws-booking-cta__button:focus{
  transform: translateY(-2px);
  opacity: 0.95;
  color: #ffffff;
  text-decoration: none;
}

/* =========================================================
   LARGE DESKTOP
   ========================================================= */
@media (min-width: 1200px) and (max-width: 1439px){
  .cws-booking-cta{
    height: 520px;
  }

  .cws-booking-cta__inner{
    height: 100%;
    padding: 60px 32px;
  }

  .cws-booking-cta__bg-image{
    min-height: 520px;
  }

  .cws-booking-cta__card{
    max-width: 560px;
    padding: 46px 50px;
  }
}

/* =========================================================
   SMALL DESKTOP / TABLET LANDSCAPE
   ========================================================= */
@media (min-width: 992px) and (max-width: 1199px){
  .cws-booking-cta{
    height: 500px;
  }

  .cws-booking-cta__inner{
    height: 100%;
    padding: 56px 28px;
  }

  .cws-booking-cta__bg-image{
    min-height: 500px;
  }

  .cws-booking-cta__card{
    max-width: 520px;
    padding: 40px 40px;
  }

  .cws-booking-cta__heading{
    font-size: 30px;
    line-height: 40px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */
@media (min-width: 768px) and (max-width: 991px){
  .cws-booking-cta{
    height: auto;
    min-height: 480px;
  }

  .cws-booking-cta__inner{
    min-height: 480px;
    height: auto;
    padding: 52px 24px;
  }

  .cws-booking-cta__bg-image{
    min-height: 480px;
  }

  .cws-booking-cta__spacer{
    display: none;
  }

  .cws-booking-cta__content-col{
    width: 100%;
    justify-content: center;
  }

  .cws-booking-cta__card{
    max-width: 620px;
    padding: 38px 34px;
  }

  .cws-booking-cta__heading{
    font-size: 28px;
    line-height: 38px;
  }

  .cws-booking-cta__button{
    padding: 18px 46px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 767px){
  .cws-booking-cta{
    height: auto;
    min-height: 440px;
  }

  .cws-booking-cta__inner{
    min-height: 440px;
    height: auto;
    padding: 44px 20px;
  }

  .cws-booking-cta__bg-image{
    min-height: 440px;
  }

  .cws-booking-cta__spacer{
    display: none;
  }

  .cws-booking-cta__content-col{
    width: 100%;
    justify-content: center;
  }

  .cws-booking-cta__card{
    max-width: 100%;
    padding: 30px 24px;
  }

  .cws-booking-cta__subtext{
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 22px;
  }

  .cws-booking-cta__heading{
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 32px;
  }

  .cws-booking-cta__description{
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 24px;
  }

  .cws-booking-cta__button{
    width: 100%;
    padding: 18px 20px;
    text-align: center;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */
@media (max-width: 479px){
  .cws-booking-cta{
    height: auto;
    min-height: 400px;
  }

  .cws-booking-cta__inner{
    min-height: 400px;
    height: auto;
    padding: 40px 16px;
  }

  .cws-booking-cta__bg-image{
    min-height: 400px;
  }

  .cws-booking-cta__card{
    padding: 24px 18px;
  }

  .cws-booking-cta__heading{
    font-size: 22px;
    line-height: 30px;
  }
}

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

  .cws-booking-cta__button{
    transition: none;
  }
}