@font-face {
  font-family: "Aktiv Grotesk Black";
  src: url("AktivGrotesk_Blk.woff2") format("woff2"),
    url("AktivGrotesk_Blk.woff") format("woff"),
    url("AktivGrotesk_Blk.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Aktiv Grotesk Bold";
  src: url("AktivGrotesk_Bd.woff2") format("woff2"),
    url("AktivGrotesk_Bd.woff") format("woff"),
    url("AktivGrotesk_Bd.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

.christmas-cash {
  --christmas-cash-red: #f95d61;
  --christmas-cash-red-dark: #f73c40;
  --christmas-cash-green: #4da563;
}

.christmas-cash__row {
  display: flex;
  flex-direction: column;
}

/* Hero Text Section */
.christmas-cash__hero-text {
  background: var(--christmas-cash-red);
  display: flex;
  justify-content: center;
  align-items: center;
}

.christmas-cash__hero-text-wrap {
  text-align: center;
  padding: 50px 0 0 0;
}

.christmas-cash__heading-wrap {
  position: relative;
  height: 205px;
  overflow-y: hidden;
  margin-bottom: -50px;
}

.christmas-cash__heading-wrap h1 {
  font-family: "Aktiv Grotesk Black" !important;
  color: white;
  font-size: 42px;
  text-transform: uppercase;
  line-height: 1.1;
}

.christmas-cash__heading-wrap p {
  font-family: "Aktiv Grotesk Black" !important;
  color: white;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 2px;
  position: relative;
  top: -150px;
}

.christmas-cash__hero-tree {
  width: 106px;
  margin-bottom: 30px;
}

.christmas-cash__cash-wrap {
  position: relative;
  padding: 0 80px 100px 80px;
}

.christmas-cash__cash-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(200px * 0.4);
  height: calc(307px * 0.4);
  background-image: url("../../images/christmas-cash/cash-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(24deg) translate(-5%, -60%);
}

.christmas-cash__cash-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(200px * 0.4);
  height: calc(307px * 0.4);
  background-image: url("../../images/christmas-cash/cash-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(30deg) translate(-65%, -25%);
}

@keyframes wiggle-before {
  0%,
  100% {
    transform: rotate(24deg) translate(-5%, -60%);
  }
  25% {
    transform: rotate(29deg) translate(-5%, -60%);
  }
  75% {
    transform: rotate(19deg) translate(-5%, -60%);
  }
}

@keyframes wiggle-after {
  0%,
  100% {
    transform: rotate(30deg) translate(-65%, -25%);
  }
  25% {
    transform: rotate(35deg) translate(-65%, -25%);
  }
  75% {
    transform: rotate(25deg) translate(-65%, -25%);
  }
}

.christmas-cash__hero-text:hover .christmas-cash__cash-wrap::before {
  animation: wiggle-before 0.6s ease-in-out forwards;
}

.christmas-cash__hero-text:hover .christmas-cash__cash-wrap::after {
  animation: wiggle-after 0.6s ease-in-out forwards;
}

.christmas-cash__cash-wrap h2 {
  font-family: "Aktiv Grotesk Black" !important;
  color: white;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1.1;
}

.christmas-cash__cash-wrap p {
  font-family: "Aktiv Grotesk Bold" !important;
  color: white;
  font-size: 20px;
  line-height: 1.2;
}
/* END Hero Text Section */

/* Hero Image Section */
.christmas-cash__hero-image {
  background-image: url("../../images/christmas-cash/hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.christmas-cash__hero-image-img {
  max-width: 100%;
}

/* END Hero Image Section */

.christmas-cash__slider-left {
  order: 2;
}

.christmas-cash__body-copy {
  background: var(--christmas-cash-green);
  order: 1;
}

.christmas-cash__slide {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 460px;
}

/* Slick Slider - Dots Navigation */
.christmas-cash__slider-dots {
  position: absolute;
  bottom: 10px;
  left: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.christmas-cash__slider-dots li {
  margin: 0 5px;
}

.christmas-cash__slider-dots li button {
  background-color: #fff;
  border: none;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  cursor: pointer;
  overflow: hidden;
  text-indent: -9999px;
  padding: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.christmas-cash__slider-dots li.slick-active button {
  background-color: var(--christmas-cash-green);
}

/* Slick Slider - Arrows */
.christmas-cash__slider-arrow {
  position: absolute;
  bottom: 10px;
  /* background: rgba(0, 0, 0, 0.25); */
  background: transparent;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 1;
  padding: 0 10px;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  width: 40px;
  text-align: center;
  line-height: 1;
}

.christmas-cash__slider-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
}

.christmas-cash__slider-arrow--prev {
  right: 44px;
}

.christmas-cash__slider-arrow--next {
  right: 12px;
}

/* Body Copy Wrap */
.christmas-cash__body-copy-wrap {
  padding: 50px 30px;
}

.christmas-cash__body-copy-wrap h1,
.christmas-cash__body-copy-wrap h2 {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  color: white;
}

.christmas-cash__body-copy-wrap h1 {
  font-size: 26px;
  margin-bottom: 30px;
}

.christmas-cash__body-copy-wrap h1 br {
  display: none;
}

.christmas-cash__body-copy-wrap h2 {
  font-size: 20px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* Body Copy Text */
.christmas-cash__body-copy-text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: white;
  font-family: brandon-grotesque, sans-serif;
}

.christmas-cash__body-copy-text p {
  margin-bottom: 20px;
}

/* Buttons */
.christmas-cash__buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}

.christmas-cash__btn {
  background-color: white;
  border: 2px solid white;
  display: block;
  color: var(--christmas-cash-green);
  padding: 10px 20px;
  margin-right: 15px;
  text-decoration: none;
  border-radius: 20px;
  margin-bottom: 15px;
}

.christmas-cash__btn:last-of-type {
  margin-right: 0;
}

.christmas-cash__btn h4 {
  color: var(--christmas-cash-green);
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
}

.christmas-cash__btn:hover {
  background-color: transparent;
}

.christmas-cash__btn:hover h4 {
  color: white;
}

/* Main Section */
.christmas-cash__main {
  text-align: center;
  background: #f9fafa;
}

.christmas-cash__main-heading-image img {
  width: 100%;
}

.christmas-cash__terms-conditions {
  display: block;
  text-transform: uppercase;
  color: white;
  background-color: var(--christmas-cash-red);
  padding: 10px 0;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.christmas-cash__terms-conditions:hover {
  color: white;
  text-decoration: underline;
}

/* Banner */
.christmas-cash__banner {
  background: url("../../images/christmas-cash/banner-bg-2.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding: 30px 0 80px 0;
  display: flex;
  justify-content: center;
}

.christmas-cash__banner-wrap {
  position: relative;
  padding: 30px 0 125px 0;
}

.christmas-cash__banner-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(253px * 0.5);
  height: calc(292px * 0.5);
  background-image: url("../../images/christmas-cash/present-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-65%, 152%);
}

.christmas-cash__banner-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(253px * 0.5);
  height: calc(292px * 0.5);
  background-image: url("../../images/christmas-cash/present-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(65%, 152%);
}

.christmas-cash__banner-text {
  font-family: "Aktiv Grotesk Black" !important;
  color: var(--christmas-cash-red);
  text-transform: uppercase;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
}

.christmas-cash__banner-button {
  font-family: "Aktiv Grotesk Black" !important;
  display: inline-block;
  padding: 8px 25px;
  text-transform: uppercase;
  background-color: var(--christmas-cash-red);
  color: white;
  letter-spacing: 1px;
  border-radius: 30px;
  position: relative;
  z-index: 999;
}

.christmas-cash__banner-button:hover,
.christmas-cash__banner-button:focus,
.christmas-cash__banner-button:active {
  color: white;
  background-color: var(--christmas-cash-red-dark);
}

@media (min-width: 768px) {
  .christmas-cash__row {
    flex-direction: row;
    width: 100vw;
  }
  .christmas-cash__col {
    width: 50vw;
  }
  .christmas-cash__slider-right .christmas-cash__slide {
    height: 600px;
  }
  .christmas-cash__slider-left .christmas-cash__slide {
    height: 600px;
  }
  .christmas-cash__slider-left {
    order: 1;
  }
  .christmas-cash__body-copy {
    order: 2;
  }
  .christmas-cash__slider-dots {
    display: flex;
    bottom: 20px;
    left: 20px;
  }
  .christmas-cash__slider-dots li button {
    width: 20px;
    height: 20px;
  }
  .christmas-cash__slider-arrow {
    bottom: 20px;
  }
  .christmas-cash__body-copy {
    display: flex;
    justify-content: center;
  }
  .christmas-cash__body-copy-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .christmas-cash__body-copy-wrap,
  .christmas-cash__hero-text-wrap {
    max-width: calc(750px / 2);
  }
  .christmas-cash__body-copy-wrap h1 {
    text-align: right;
  }
  .christmas-cash__body-copy-wrap h2 {
    text-align: right;
  }
  .christmas-cash__body-copy-text {
    text-align: right;
  }
  .christmas-cash__buttons {
    justify-content: flex-end;
  }
  .christmas-cash__body-copy-wrap h1 br {
    display: block;
  }
  .christmas-cash__terms-conditions {
    padding: 15px 0;
    font-size: 22px;
    letter-spacing: 1px;
  }
  /* Banner */
  .christmas-cash__banner-wrap {
    position: relative;
    padding: 30px 0 50px 0;
  }
  .christmas-cash__banner-wrap::before {
    transform: translate(-200%, 70%);
  }
  .christmas-cash__banner-wrap::after {
    transform: translate(200%, 70%);
  }
  .christmas-cash__banner-text {
    font-size: 60px;
  }
  .christmas-cash__banner-button {
    margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .christmas-cash__body-copy-wrap,
  .christmas-cash__hero-text-wrap {
    max-width: calc(970px / 2);
  }
  .christmas-cash__slider-right .christmas-cash__slider-arrow--prev {
    right: auto;
    left: calc(970px / 2 - 40px - 44px);
  }
  .christmas-cash__slider-right .christmas-cash__slider-arrow--next {
    right: auto;
    left: calc(970px / 2 - 40px);
  }
  .christmas-cash__slider-left .christmas-cash__slider-dots {
    left: auto;
    right: calc(970px / 2 - 120px);
  }
  .christmas-cash__banner-wrap::before {
    transform: translate(-220%, 70%);
  }
  .christmas-cash__banner-wrap::after {
    transform: translate(220%, 70%);
  }
  .christmas-cash__hero-image-img {
    max-width: 450px;
  }
}

@media (min-width: 1200px) {
  .christmas-cash__hero-text-wrap,
  .christmas-cash__hero-text-wrap {
    max-width: calc(1170px / 2);
  }
  .christmas-cash__slider-right .christmas-cash__slider-arrow--prev {
    right: auto;
    left: calc(1170px / 2 - 40px - 44px);
  }
  .christmas-cash__slider-right .christmas-cash__slider-arrow--next {
    right: auto;
    left: calc(1170px / 2 - 40px);
  }
  .christmas-cash__slider-left .christmas-cash__slider-dots {
    left: auto;
    right: calc(1170px / 2 - 120px);
  }
  .christmas-cash__heading-wrap p {
    top: -85px;
  }
  .christmas-cash__heading-wrap {
    margin-bottom: -100px;
  }
}

@media (min-width: 1500px) {
  .christmas-cash__hero-text-wrap,
  .christmas-cash__hero-text-wrap {
    max-width: calc(1300px / 2);
  }
  .christmas-cash__hero-image-img {
    max-width: 500px;
  }
}
