/*-- -------------------------- -->
<---        Promotions          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #promotions-1567 {
      padding: var(--sectionPadding);
    }
    #promotions-1567 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #promotions-1567 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: center;
    }
    #promotions-1567 .cs-card-group {
      width: 100%;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(16.25rem, 1fr));
      /* 16px - 20px */
      gap: clamp(1rem, 2.4vw, 1.25rem);
    }
    #promotions-1567 .cs-item {
      list-style: none;
      min-height: 16rem;
      /* 40px - 100px */
      padding: clamp(2.5rem, 7vw, 6.25rem) 1rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    #promotions-1567 .cs-item:hover .cs-background img {
      transform: scale(1.2);
    }
    #promotions-1567 .cs-tag {
      font-size: 1.25rem;
      line-height: 1.2em;
      font-weight: 700;
      margin: 0 0 0.25rem 0;
      color: var(--bodyTextColorWhite);
      display: block;
    }
    #promotions-1567 .cs-h2 {
      font-size: clamp(1.9375rem, 4vw, 2.4375rem);
      line-height: 1.2em;
      font-weight: 700;
      margin: 0 0 1.5rem 0;
      color: var(--bodyTextColorWhite);
      display: block;
    }
    #promotions-1567 .cs-button-solid {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      text-decoration: none;
      font-weight: 700;
      text-align: center;
      margin: 0;
      color: #fff;
      min-width: 9.375rem;
      padding: 0 3rem;
      background-color: var(--primary);
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
      transition: color .3s;
    }
    #promotions-1567 .cs-button-solid:before {
      content: '';
      position: absolute;
      height: 100%;
      width: 0%;
      background: #fff;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width .3s;
    }
    #promotions-1567 .cs-button-solid:hover {
      color: var(--headerColor);
    }
    #promotions-1567 .cs-button-solid:hover:before {
      width: 100%;
    }
    #promotions-1567 .cs-background {
      width: 100%;
      height: 100%;
      overflow: hidden;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #promotions-1567 .cs-background:before {
      /* background color overlay */
      content: '';
      position: absolute;
      display: block;
      height: 100%;
      width: 100%;
      background: #000;
      opacity: .4;
      top: 0;
      left: 0;
      z-index: 1;
    }
    #promotions-1567 .cs-background img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      /* Makes img tag act as a background image */
      object-fit: cover;
      transition: transform .6s;
    }
  }
                                  