@import url('https://fonts.googleapis.com/css2?family=Raleway&family=Roboto&display=swap');

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  0% {
    opacity: .5
  }

  100% {
    opacity: 1
  }
}

@keyframes fade {
  0% {
    opacity: .5
  }

  100% {
    opacity: 1
  }
}

* {
  box-sizing: border-box;
}

.about-us-banner, .enhance-banner, .rewards-banner, .support-banner {
  -ms-flex-align: center;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 60%;
}

.about-us-banner a, .enhance-banner a, .rewards-banner a {
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  -o-transition: color 150ms ease;
  -webkit-transition: color 150ms ease;
  background: gray;
  border-radius: 5px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  color: #000;
  font-size: 18px;
  font-weight: bold;
  margin: 0 15px;
  padding: 10px 30px;
  text-decoration: none;
  transition: color 150ms ease;
}

.about-us-banner a:hover, .enhance-banner a:hover, .rewards-banner a:hover {
  color: #fff;
}

.about-us-banner a:nth-child(even), .enhance-banner a:nth-child(even), .rewards-banner a:nth-child(even) {
  background: red;
  color: #fff;
}

.about-us-banner a:nth-child(even):hover, .enhance-banner a:nth-child(even):hover, .rewards-banner a:nth-child(even):hover {
  color: #000;
}

.about-us-banner h1, .enhance-banner h1, .rewards-banner h1, .support-banner h1 {
  color: #fff;
  font-size: 60px;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}

.about-us-banner h2, .enhance-banner h2, .rewards-banner h2, .support-banner h2 {
  color: #fff;
  font-size: 35px;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}

.about-us-banner p, .enhance-banner p, .rewards-banner p, .support-banner p {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}

.about-us-banner-button-container, .enhance-banner-button-container, .rewards-banner-button-container {
  -ms-flex-direction: row;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.about-us-container {
  -ms-flex-align: center;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  align-items: center;
  background-attachment: fixed;
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url('imgs/about-banner.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.9))), url('imgs/about-banner.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url('imgs/about-banner.jpg');
  background-position: center;
  background-size: cover;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  height: 600px;
  justify-content: center;
  width: 80%;
}

.about-us-info {
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  background: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 40px 30px 40px;
  width: 80%;
}

.about-us-info a {
  -o-transition: color 150ms ease;
  -webkit-transition: color 150ms ease;
  color: red;
  text-shadow: none;
  transition: color 150ms ease;
}

.about-us-info a:hover {
  color: gray;
}

.about-us-info h1 {
  margin-bottom: 0;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.about-us-info h2 {
  border-bottom: solid 2px #000;
  color: red;
  font-style: italic;
  margin-top: 0;
  width: 375px;
}

.about-us-info div {
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  background: #000;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 25px;
  padding: 5px 20px;
  position: relative;
  width: 80%;
}

.ad {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -o-transition: opacity 2000ms ease-in-out;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-transition: opacity 2000ms ease-in-out;
  align-items: center;
  background: gray;
  border-radius: 5px;
  border: solid 1px #000;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 15px 20px;
  position: relative;
  width: 100%;
}

.ad img {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  background: #fff;
  border: solid 1px #000;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  height: 100%;
  padding: 5px;
  max-width: 100%;
  transition: opacity 2000ms ease-in-out;
}

.ad-container {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  align-items: center;
  background: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 325px;
  justify-content: center;
  padding: 15px 25px;
  width: 80%;
}

.banner {
  display: -ms-grid;
  display: grid;
  padding: 0;
  position: relative;
  width: 80%;
}

.banner-advertisement {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 60% 40%;
  width: 100%;
}

.banner-advertisement-left {
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 90%;
  padding: 0 5px;
  width: 100%;
}

.banner-advertisement h1 {
  font-size: 65px;
  margin-bottom: 0;
  text-transform: capitalize;
}

.banner-advertisement h2 {
  font-size: 35px;
  margin: 0;
  text-transform: capitalize;
}

.banner-advertisement h3 {
  font-size: 25px;
  margin-top: 0;
  text-transform: capitalize;
}

.banner-arrows {
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: red;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  bottom: 0;
  left: 50%;
  padding: 5px 20px 0 20px;
  position: absolute;
  transform: translateX(-50%);
}

.banner-arrows span {
  -o-transition: color 150ms ease-in-out;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.75);
  -webkit-transition: color 150ms ease-in-out;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.75);
  color: red;
  font-size: 40px;
  margin: 0 10px;
  padding: 0 7px;
  transition: color 150ms ease-in-out;
}

.banner-arrows span:hover {
  color: #000;
  cursor: pointer;
}

.banner-caret {
  color: red;
  font-size: 600px;
  margin: auto;
  text-shadow: -1px 0 0 #000,
    0 -1px 0 #000,
    1px 0 0 #000,
    0 1px 0 #000;
}

.banner-container {
  background: #fff;
  height: 450px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.banner-container:nth-child(odd) {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.banner-container-image {
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  left: 50%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.banner-logo {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-filter: drop-shadow(-5px 5px 2px rgba(0, 0, 0, 0.75));
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  filter: drop-shadow(-5px 5px 2px rgba(0, 0, 0, 0.75));
  justify-content: center;
  padding: 10px;
  position: absolute;
  top: 0;
  width: 200px;
  z-index: 1;
}

.banner-logo img {
  width: 100%;
}

.banner-redemption {
  -o-transition: all 150ms ease-in-out;
  -webkit-transition: all 150ms ease-in-out;
  background: red;
  border-radius: 5px;
  border: solid 1px #000;
  color: #fff;
  display: block;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto;
  padding: 5px 0;
  text-decoration: none;
  transition: all 150ms ease-in-out;
  width: 75%;
}

.banner-redemption:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  color: #000;
}

body {
  background: #333333;
  font-family: 'Raleway', sans-serif;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}

.burger-menu {
  display: none;
}

.card {
  -ms-flex-align: center;
  -ms-flex-direction: column;
  -ms-flex-pack: justify;
  -o-transition: all 150ms ease-in-out;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: justify;
  -webkit-transition: all 150ms ease-in-out;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  height: 325px;
  justify-content: space-between;
  margin: 20px 15px;
  transition: all 150ms ease-in-out;
  width: 225px;
}

.card:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.75);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.75);
  border: dashed 1px #000;
}

.card-button {
  -o-transition: color 150ms ease;
  -webkit-transition: color 150ms ease;
  background: red;
  border-radius: 5px;
  border: solid 1px #000;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 3px;
  padding: 2px 0;
  text-align: center;
  text-decoration: none;
  transition: color 150ms ease;
  width: 95%;
}

.card-button:hover {
  color: #000;
}

.card-display {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  margin-bottom: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
}

.card-display::after, .card-display::before {
  content: '';
  display: block;
  width: 5px;
}

.card-img {
  height: 100%;
  width: 100%;
}

.card-info {
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: bold;
  padding: 5px;
  width: 100%;
}

.card-likes {
  color: #000;
}

.card-logo {
  background: #fff;
  border-radius: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  padding: 5px;
}

.card-name {
  color: red;
  font-style: italic;
}

.card-shares {
  -o-transition: color 150ms ease;
  -webkit-transition: color 150ms ease;
  color: #000;
  margin: 0 5px;
  text-align: right;
  transition: color 150ms ease;
}

.card-shares i:hover {
  color: red;
  cursor: pointer;
}

.card-views {
  -ms-flex-direction: row;
  -ms-flex-pack: justify;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: justify;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
  font-size: 20px;
  font-weight: bold;
  justify-content: space-between;
  padding: 5px;
  width: 100%;
}

.container {
  border-bottom: solid 3px #333333;
  color: #fff;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 20% 80%;
  position: relative;
  width: 80%;
}

.container:last-child {
  border-bottom: none;
}

.container-heading {
  background: red;
  border-radius: 5px;
  color: #fff;
  font-family: 'Roboto', 'FontAwesome', sans-serif;
  /* FontAwesome needed to use font awesome icon in ::before pseudo element */
  font-size: 40px;
  font-weight: bold;
  margin: 0 auto;
  padding: 10px 20px;
  position: relative;
  width: 90%;
}

.container-heading::after {
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #000;
  content: '\f061';
  font-size: 55px;
  position: absolute;
  right: -35px;
  text-shadow: -1px 0 0 #fff,
    0 -1px 0 #fff,
    1px 0 0 #fff,
    0 1px 0 #fff;
  top: 50%;
  transform: translateY(-50%);
}

.disclaimer {
  font-size: 16px;
}

.enhance-container {
  -ms-flex-align: center;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  align-items: center;
  background-attachment: fixed;
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.8)), url('imgs/enhance-banner.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.45)), to(rgba(0, 0, 0, 0.8))), url('imgs/enhance-banner.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.8)), url('imgs/enhance-banner.jpg');
  background-position: center;
  background-size: cover;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  height: 600px;
  justify-content: center;
  width: 80%;
}

.enhance-info, .rewards-info, .support-info {
  -ms-flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  background: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  width: 80%;
}

.enhance-info-container, .rewards-info-container, .support-info-business-container, .support-info-customer-container {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.enhance-info-photo, .rewards-info-photo, .support-info-photo {
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  height: 375px;
  margin: 20px;
  position: relative;
}

.enhance-info-photo-charity {
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5)), url('imgs/charity.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.5))), url('imgs/charity.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5)), url('imgs/charity.jpg');
}

.enhance-info-photo-food {
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5)), url('imgs/food.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.5))), url('imgs/food.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5)), url('imgs/food.jpg');
}

.enhance-info-photo-merchant {
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5)), url('imgs/merchant.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.5))), url('imgs/merchant.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5)), url('imgs/merchant.jpg');
}

.enhance-info-photo-service {
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5)), url('imgs/service.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.5))), url('imgs/service.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5)), url('imgs/service.jpg');
}

.enhance-info-text, .rewards-info-text, .support-info-text {
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  background: #fff;
  color: #000;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px 0 25px;
}

.enhance-info-text h1, .rewards-info-text h1, .support-info-text h1 {
  font-size: 35px;
  margin: 0;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.enhance-info-text h2, .rewards-info-text h2, .support-info-text h2 {
  color: red;
  font-size: 22px;
  margin: 0;
  /* text-shadow: 0 2px 2px rgba(0,0,0,0.5); */
}

.enhance-info-text p, .rewards-info-text p, .support-info-text p {
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  background: #000;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: 'Roboto', 'FontAwesome', sans-serif;
  font-size: 20px;
  font-style: italic;
  line-height: 25px;
  padding: 10px 20px;
  position: relative;
  width: 100%;
}

.enhance-navigation {
  -ms-flex-align: center;
  -ms-flex-direction: row;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: center;
  align-items: center;
  background: #000;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px 0;
  width: 80%;
}

.enhance-navigation-links {
  -o-transition: color 150ms ease;
  -webkit-transition: color 150ms ease;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  margin: 0 15px;
  transition: color 150ms ease;
}

.enhance-navigation-links {
  color: #fff;
  text-decoration: none;
}

.enhance-navigation-links:hover {
  color: red;
}

#error {
  -o-transition: all 150ms ease-in-out;
  -webkit-transition: all 150ms ease-in-out;
  border-bottom: solid 1px #fff;
  color: #fff;
  display: block;
  font-size: 18px;
  opacity: 0;
  padding: 5px 0;
  position: relative;
  text-align: center;
  transition: all 150ms ease-in-out;
}

#error i {
  color: #fff;
  position: absolute;
}

#error i.left {
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

#error i.right {
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.featured, .filter, .popular, .tech {
  -o-transition: opacity 150ms ease;
  -webkit-transition: opacity 150ms ease;
  opacity: 0;
  transition: opacity 150ms ease;
}

#featured-card-display .card {
  background: gray;
}

#featured-card-display .card-discount, #featured-card-display .card-likes, #featured-card-display .card-shares {
  color: #fff;
}

#featured-card-display .card:hover {
  border: dashed 1px #fff;
}

.filter-container {
  -ms-flex-align: center;
  -ms-flex-direction: row;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: right;
}

.filter-search-container {
  -ms-flex-align: center;
  -ms-flex-direction: row;
  -ms-flex-pack: distribute;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  align-items: center;
  background: red;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 15px 0;
  width: 80%;
}

.filter-selection {
  -o-transition: all 150ms ease;
  -webkit-transition: all 150ms ease;
  background: #fff;
  border-radius: 5px;
  border: solid 1px #000;
  color: #000;
  font-size: 20px;
  margin: 3px 5px;
  padding: 5px 20px;
  transition: all 150ms ease;
}

.filter-selection:hover {
  background: gray;
  color: #fff;
  cursor: pointer;
}

.footer {
  background: #000;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  width: 100%;
}

.grey-text {
  color: gray;
}

.grey {
  background: gray;
  scrollbar-color: #333333 gray;
}

.header {
  -ms-flex-align: center;
  -ms-flex-direction: row;
  -ms-flex-pack: distribute;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  align-items: center;
  background: #000;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px 0;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 20;
}

html {
  height: 100vh;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  width: 100%;
}

.learn-more {
  background: red;
  color: #fff;
  font-weight: bold;
  padding: 5px 0;
  text-align: center;
  width: 100%;
}

.learn-more a {
  -o-transition: color 150ms ease;
  -webkit-transition: color 150ms ease;
  color: #000;
  text-shadow: none;
  transition: color 150ms ease;
}

.learn-more a:hover {
  color: #fff;
}

.learn-more-button{
  -ms-transform: translateX(-50%);
  -o-transition: color 150ms ease;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  -webkit-transform: translateX(-50%);
  -webkit-transition: color 150ms ease;
  background: gray;
  border-radius: 5px;
  bottom: 20px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 18px;
  left: 50%;
  padding: 5px 15px;
  position: absolute;
  text-decoration: none;
  transform: translateX(-50%);
  transition: color 150ms ease;
}

.learn-more-button:hover{
  color: #000;
}

.left-arrow {
  color: red;
  font-size: 55px;
  position: absolute;
  left: -35px;
  text-shadow: -1px 0 0 #fff,
    0 -1px 0 #fff,
    1px 0 0 #fff,
    0 1px 0 #fff,
    0 5px 5px rgba(0, 0, 0, 0.5);
  top: -18px;
}

.links {
  -o-transition: color 150ms ease;
  -webkit-transition: color 150ms ease;
  font-family: 'Raleway', 'FontAwesome', sans-serif;
  /* FontAwesome needed to use font awesome icon in ::before pseudo element */
  font-size: 18px;
  padding: 0 45px 0 0;
  position: relative;
  text-transform: uppercase;
  transition: color 150ms ease;
}

.links a {
  color: #fff;
  text-decoration: none;
}

.links a:hover {
  color: gray;
}

.links a::before {
  -o-transition: all 150ms ease;
  -webkit-transition: all 150ms ease;
  color: red;
  content: '\f100';
  /* unicode for Font Awesome icon */
  font-size: 25px;
  opacity: 0;
  position: absolute;
  right: -10px;
  top: -5px;
  transition: all 150ms ease;
}

.links a:hover::before {
  opacity: 1;
  right: 20px;
}

.links-container {
  -ms-flex-direction: row;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.links-register-container {
  -ms-flex-align: center;
  -ms-flex-direction: row;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-pack: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.main {
  -ms-flex-align: center;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.move-links-on {
  top: 109px;
}

.page-buttons {
  -o-transition: color 150ms ease;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.75);
  -webkit-transition: color 150ms ease;
  background: red;
  border-radius: 50%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.75);
  color: #fff;
  display: inline;
  font-size: 30px;
  padding: 2px 7px;
  transition: color 150ms ease;
}

.page-buttons:hover {
  color: #000;
  cursor: pointer;
}

.page-container {
  -ms-flex-align: start;
  -ms-flex-direction: column;
  -ms-flex-pack: start;
  -webkit-box-align: start;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 15px;
}

.page-controls {
  -ms-flex-align: center;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  margin: 0 auto;
  padding: 10px;
}

.page-count {
  color: #000;
  margin-top: 5px;
}

.profile-pic {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  align-items: center;
  background: #fff;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.5);
  color: #000;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 200px;
  justify-content: center;
  outline: solid 1px #000;
  padding: 5px;
  position: absolute;
  right: -190px;
  top: -100px;
  width: 200px;
}

.red-background {
  background: red;
  padding: 0 5px;
}

.red-font {
  color: red;
}

.register-button {
  -ms-flex-align: center;
  -o-transition: color 150ms ease;
  -webkit-box-align: center;
  -webkit-box-shadow: 0 5px 5px #000;
  -webkit-transition: color 150ms ease;
  align-items: center;
  background: red;
  border-radius: 5px;
  box-shadow: 0 5px 5px #000;
  color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px;
  transition: color 150ms ease;
}

.register-button:hover {
  color: #000;
  cursor: pointer;
}

.register-container {
  -ms-flex-direction: column;
  -ms-transform: translate(-50%, -50%);
  -o-transition: all 150ms ease-in-out;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: all 150ms ease-in-out;
  background: #000;
  border-radius: 5px;
  border: solid 1px #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
  color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  left: 50%;
  opacity: 0;
  overflow-y: scroll;
  padding: 0 15px 15px 15px;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 150ms ease-in-out;
  width: 50%;
  z-index: -1;
}

.register-container.move {
  opacity: 1;
  z-index: 20;
}

.register-container h3, .register-container p {
  text-align: left;
}

.register-container p {
  color: red;
  font-weight: bold;
  margin-top: 5px;
}

.register-form {
  border-bottom: solid 1px #fff;
  margin: auto;
  padding-bottom: 20px;
  position: relative;
}

.register-form-button {
  -o-transition: color 150ms ease-in-out;
  -webkit-transition: color 150ms ease-in-out;
  background: gray;
  border-radius: 5px;
  border: solid 1px #fff;
  color: #fff;
  margin: auto 10px;
  padding: 5px 20px;
  transition: color 150ms ease-in-out;
}

.register-form-button:hover {
  cursor: pointer;
  color: #000
}

.register-form-close-button {
  -o-transition: all 150ms ease-in-out;
  -webkit-transition: all 150ms ease-in-out;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: -10px;
  transition: all 150ms ease-in-out;
}

.register-form-close-button:hover {
  color: red;
  cursor: pointer;
}

.register-form-input {
  background: #fff;
  border: none;
  border-radius: 5px;
  display: block;
  height: 30px;
  margin: 10px auto;
  width: 300px;
}

.rewards-container {
  -ms-flex-align: center;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  align-items: center;
  background-attachment: fixed;
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.8)), url('imgs/rewards-banner.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.45)), to(rgba(0, 0, 0, 0.8))), url('imgs/rewards-banner.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.8)), url('imgs/rewards-banner.jpg');
  background-position: center;
  background-size: cover;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  height: 600px;
  justify-content: center;
  width: 80%;
}

.rewards-info-photo:nth-child(1) {
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)), url('imgs/rewards2.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.75))), url('imgs/rewards2.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)), url('imgs/rewards2.jpg');
}

.rewards-info-photo:nth-child(2) {
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)), url('imgs/rewards.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.75))), url('imgs/rewards.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)), url('imgs/rewards.jpg');
}

.right {
  right: 0;
}

.right-arrow {
  color: red;
  font-size: 55px;
  position: absolute;
  right: -35px;
  text-shadow: -1px 0 0 #fff,
    0 -1px 0 #fff,
    1px 0 0 #fff,
    0 1px 0 #fff,
    0 5px 5px rgba(0, 0, 0, 0.5);
  top: -18px;
}

.search-button {
  -o-transition: all 150ms ease;
  -webkit-transition: all 150ms ease;
  background: #fff;
  border: none;
  display: inline;
  font-size: 18px;
  margin-left: -5px;
  padding: 5px 10px;
  transition: all 150ms ease;
}

.search-button:hover {
  background: gray;
  color: red;
  cursor: pointer;
}

.search-button:nth-child(even) {
  border-bottom: solid 1px #000;
  border-top: solid 1px #000;
}

.search-button:nth-child(odd) {
  border-bottom: solid 1px #000;
  border-right: solid 1px #000;
  border-top: solid 1px #000;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

.search-field {
  background: #fff;
  border-bottom-left-radius: 5px;
  border-bottom: solid 1px #000;
  border-left: solid 1px #000;
  border-top-left-radius: 5px;
  border-top: solid 1px #000;
  font-size: 18px;
  padding: 5px;
}

.show-all, .show-less {
  -o-transition: color 150ms ease;
  -webkit-transition: color 150ms ease;
  color: #000;
  display: inline;
  margin: 0 5px;
  transition: color 150ms ease;
}

.show-all:hover, .show-less:hover {
  color: red;
  cursor: pointer;
}

.sign-in-form {
  padding-bottom: 10px;
}

.social-block {
  -ms-flex-align: end;
  -ms-flex-direction: column;
  -webkit-box-align: end;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  align-items: flex-end;
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: fixed;
  right: 0;
  z-index: 1;
}

.social-block a {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -o-transition: all 150ms ease;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-box-shadow: -2px -2px 2px #000;
  -webkit-transition: all 150ms ease;
  align-items: center;
  background: #000;
  border-bottom-left-radius: 5px;
  border-bottom: solid 1px red;
  border-left: solid 1px red;
  border-top-left-radius: 5px;
  border-top: solid 1px red;
  box-shadow: -2px -2px 5px #000;
  color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  font-size: 30px;
  justify-content: center;
  margin: 5px 0;
  padding: 5px;
  text-decoration: none;
  transition: all 150ms ease;
  width: 40px;
}

.social-block a:hover {
  cursor: pointer;
  width: 60px;
}

.support-container {
  -ms-flex-align: center;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  align-items: center;
  background-attachment: fixed;
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)), url('imgs/support-banner.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.75))), url('imgs/support-banner.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)), url('imgs/support-banner.jpg');
  background-position: center;
  background-size: cover;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  height: 600px;
  justify-content: center;
  width: 80%;
}

.support-info-photo:first-child {
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)), url('imgs/tech-support.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.75))), url('imgs/tech-support.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)), url('imgs/tech-support.jpg');
}

.support-info-photo:last-child {
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)), url('imgs/tech-support2.jpg');
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.75))), url('imgs/tech-support2.jpg');
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)), url('imgs/tech-support2.jpg');
}

.support-info-text a {
  -o-transition: color 150ms ease;
  -webkit-transition: color 150ms ease;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 25px;
  font-style: italic;
  transition: color 150ms ease;
}

.support-info-text a:hover {
  color: gray;
}

.up-arrow {
  -o-transition: all 150ms ease-in-out;
  -webkit-transition: all 150ms ease-in-out;
  bottom: 0;
  color: red;
  font-size: 45px;
  left: -40px;
  position: fixed;
  text-shadow: -1px 0 0 #000,
    0 -1px 0 #000,
    1px 0 0 #000,
    0 1px 0 #000,
    0 5px 5px rgba(0, 0, 0, 0.75);
  transition: all 150ms ease-in-out;
}

.up-arrow:hover {
  color: #fff;
}

.user {
  border-radius: 50%;
  padding: 10px 15px;
}

.white {
  background: #fff;
  scrollbar-color: #333333 #fff;
}

.wrapper {
  -o-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  background: #000;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 400ms ease-in-out;
  z-index: -1;
}

.wrapper-dim {
  -o-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  opacity: .75;
  transition: all 400ms ease-in-out;
  z-index: 15;
}

.yso-link {
  -o-transition: opacity 150ms ease;
  -webkit-transition: opacity 150ms ease;
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.yso-link:hover {
  opacity: 0.5;
}

@media (max-width: 1920px) {
  .about-us-banner a, .enhance-banner a, .rewards-banner a, .support-banner a {
    font-size: 16px;
    margin: 0 15px;
    padding: 8px 25px;
  }

  .about-us-banner h1, .enhance-banner h1, .rewards-banner h1, .support-banner h1 {
    font-size: 50px;
  }

  .about-us-banner h2, .enhance-banner h2, .rewards-banner h2, .support-banner h2 {
    font-size: 35px;
  }

  .about-us-banner p, .enhance-banner p, .rewards-banner p, .support-banner p {
    font-size: 20px;
  }

  .about-us-container, .enhance-container, .rewards-container, .support-container {
    height: 500px;
    width: 85%;
  }

  .about-us-info, .enhance-info, .enhance-navigation, .rewards-info, .support-info {
    width: 85%;
  }

  .about-us-info div {
    width: 85%;
  }

  .ad {
    padding: 15px 20px;
  }

  .ad img {
    padding: 5px;
  }

  .ad-container {
    height: 250px;
    padding: 15px 25px;
    width: 85%;
  }

  .banner {
    width: 85%;
  }

  .banner-advertisement h1 {
    font-size: 50px;
  }

  .banner-advertisement h2 {
    font-size: 25px;
  }

  .banner-advertisement h3 {
    font-size: 20px;
  }

  .banner-arrows {
    padding: 5px 10px 0 10px;
  }

  .banner-arrows span {
    font-size: 30px;
    margin: 0 10px;
    padding: 0 5px;
  }

  .banner-caret {
    font-size: 500px;
  }

  .banner-container {
    height: 375px;
  }

  .banner-redemption {
    font-size: 20px;
  }

  .card {
    height: 300px;
    width: 200px;
  }

  .card-button {
    font-size: 16px;
    padding: 2px 0;
  }

  .card-display {
    margin-bottom: 10px;
  }

  .card-info {
    font-size: 16px;
    padding: 5px;
  }

  .card-logo {
    padding: 5px;
  }

  .card-shares {
    margin: 0 5px;
  }

  .card-views {
    font-size: 18px;
    padding: 5px;
  }

  .container {
    width: 85%;
  }

  .container-heading {
    font-size: 35px;
  }

  .container-heading::after {
    font-size: 50px;
    right: -30px;
  }

  .enhance-info-photo, .rewards-info-photo, .support-info-photo {
    height: 350px;
  }

  .enhance-info-text h1, .rewards-info-text h1, .support-info-text h1 {
    font-size: 30px;
  }

  .enhance-info-text h2, .rewards-info-text h2, .support-info-text h2 {
    font-size: 20px;
  }

  .enhance-info-text p, .rewards-info-text p, .support-info-text p {
    font-size: 18px;
    line-height: 25px;
    padding: 10px 15px;
  }

  #error {
    font-size: 16px;
    padding: 5px 0;
  }

  #error i.left {
    left: 0;
  }

  #error i.right {
    right: 0;
  }

  .filter-search-container {
    padding: 10px 0;
    width: 85%;
  }

  .filter-selection {
    font-size: 16px;
    margin: 3px 5px;
    padding: 5px 15px;
  }

  .user {
    padding: 5px 10px;
  }

  .footer {
    padding: 10px 0;
  }

  .learn-more-button{
    font-size: 16px;
  }

  .left-arrow {
    font-size: 50px;
    left: -30px;
    top: -15px;
  }

  .page-buttons {
    font-size: 25px;
  }

  .page-controls {
    padding: 5px;
  }

  .page-count {
    margin-top: 5px;
  }

  .profile-pic {
    height: 175px;
    right: -165px;
    top: -100px;
    width: 175px;
  }

  .red-background {
    padding: 0 5px;
  }

  .register-container {
    width: 60%;
  }

  .right-arrow {
    font-size: 50px;
    right: -30px;
    top: -15px;
  }

  .search-button {
    font-size: 16px;
  }

  .search-field {
    font-size: 16px;
  }

  .support-info-text a {
    font-size: 22px;
  }

  .up-arrow {
    font-size: 40px;
  }
}

@media (max-width: 1300px) {
  .about-us-banner a, .enhance-banner a, .rewards-banner a, .support-banner a {
    padding: 5px 20px;
  }

  .about-us-banner h1, .enhance-banner h1, .rewards-banner h1, .support-banner h1 {
    font-size: 40px;
    margin-bottom: 0;
  }

  .about-us-banner h2, .enhance-banner h2, .rewards-banner h2, .support-banner h2 {
    font-size: 25px;
  }

  .about-us-banner p, .enhance-banner p, .rewards-banner p, .support-banner p {
    font-size: 18px;
  }

  .about-us-container, .enhance-container, .rewards-container, .support-container {
    height: 400px;
    width: 90%;
  }

  .about-us-info, .enhance-info, .enhance-navigation, .rewards-info, .support-info {
    width: 90%;
  }

  .about-us-info div {
    font-size: 18px;
    width: 90%;
  }

  .ad-container {
    height: 225px;
  }

  .banner-advertisement h1 {
    font-size: 40px;
  }

  .banner-advertisement h2 {
    font-size: 20px;
  }

  .banner-advertisement h3 {
    font-size: 15px;
  }

  .banner-caret {
    font-size: 400px;
  }

  .banner-container {
    /* background: red; */
    height: 275px;
  }

  .banner-logo {
    width: 150px;
  }

  .banner-redemption {
    font-size: 18px;
  }

  .card {
    margin: 15px 5px;
    height: 275px;
    width: 175px;
  }

  .container-heading {
    font-size: 25px;
    padding: 5px 20px 5px 10px;
  }

  .container-heading::after {
    font-size: 45px;
    right: -25px;
  }

  .card-views {
    font-size: 16px;
  }

  .enhance-info-photo, .rewards-info-photo, .support-info-photo {
    height: 300px;
  }

  .enhance-info-text, .rewards-info-text, .support-info-text {
    padding: 0 10px 0 20px;
  }

  .enhance-info-text h1, .rewards-info-text h1, .support-info-text h1 {
    font-size: 25px;
    margin-bottom: 0;
  }

  .enhance-info-text h2, .rewards-info-text h2, .support-info-text h2 {
    font-size: 18px;
  }

  .enhance-info-text p, .rewards-info-text p, .support-info-text p {
    font-size: 16px;
    line-height: 25px;
    padding: 10px 15px;
  }

  .learn-more-button{
    font-size: 14px;
  }

  .left-arrow {
    font-size: 45px;
  }

  .links a {
    font-size: 16px;
  }

  .links a::before {
    font-size: 20px;
    top: -2px;
  }

  .profile-pic {
    height: 125px;
    padding: 2px;
    right: -110px;
    top: -75px;
    width: 125px;
  }

  .register-button {
    font-size: 16px;
    padding: 5px 8px;
  }

  .right-arrow {
    font-size: 45px;
  }

  .support-info-text a {
    font-size: 20px;
  }

  .yso-link {
    font-size: 20px;
  }
}

@media (max-width: 1000px) {
  .about-us-banner, .enhance-banner, .rewards-banner, .support-banner {
    width: 85%;
  }

  .about-us-banner a, .enhance-banner a, .rewards-banner a, .support-banner a {
    padding: 5px 20px;
  }

  .about-us-banner h1, .enhance-banner h1, .rewards-banner h1, .support-banner h1 {
    font-size: 40px;
    margin-bottom: 0;
  }

  .about-us-banner h2, .enhance-banner h2, .rewards-banner h2, .support-banner h2 {
    font-size: 25px;
  }

  .about-us-banner p, .enhance-banner p, .rewards-banner p, .support-banner p {
    font-size: 18px;
  }

  .about-us-container, .enhance-container, .rewards-container, .support-container {
    height: 350px;
    width: 95%;
  }

  .about-us-info, .enhance-info, .enhance-navigation, .rewards-info, .support-info {
    width: 95%;
  }

  .about-us-info h1 {
    margin-bottom: 0;
  }

  .about-us-info h2 {
    margin-top: 0;
  }

  .about-us-info div {
    -webkit-box-shadow: 0 2px 5px #000;
    box-shadow: 0 2px 5px #000;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
  }

  .ad-container {
    height: 175px;
    width: 90%;
  }

  .banner {
    width: 90%;
  }

  .banner-advertisement h1 {
    font-size: 25px;
    margin: 0;
  }

  .banner-advertisement h2 {
    font-size: 16px;
  }

  .banner-advertisement h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .banner-arrows span {
    font-size: 25px;
  }

  .banner-caret {
    font-size: 300px;
  }

  .banner-container {
    height: 200px;
  }

  .banner-logo {
    width: 125px;
  }

  .banner-redemption {
    font-size: 14px;
    padding: 2px 0;
  }

  .card {
    height: 250px;
    margin: 10px 5px;
    width: 150px;
  }

  .card-button {
    font-size: 14px;
  }

  .card-info {
    font-size: 14px;
  }

  .card-views {
    font-size: 14px;
  }

  .container {
    /* background: purple; */
    width: 90%;
  }

  .container-heading {
    font-size: 20px;
  }

  .container-heading::after {
    font-size: 40px;
    right: -20px;
  }

  .disclaimer {
    font-size: 12px;
  }

  .enhance-info-container, .rewards-info-container, .support-info-business-container, .support-info-customer-container {
    width: 100%;
  }

  .enhance-info-photo, .rewards-info-photo, .support-info-photo {
    -webkit-box-shadow: 0 2px 5px #000;
    box-shadow: 0 2px 5px #000;
    height: 250px;
  }

  .enhance-info-text h1, .rewards-info-text h1, .support-info-text h1 {
    font-size: 22px;
  }

  .enhance-info-text h2, .rewards-info-text h2, .support-info-text h2 {
    font-size: 16px;
  }

  .enhance-info-text p, .rewards-info-text p, .support-info-text p {
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 16px;
    line-height: 20px;
    padding: 10px 15px;
  }

  .enhance-navigation-links {
    font-size: 16px;
  }

  .filter-search-container {
    width: 90%;
  }

  .learn-more {
    font-size: 14px;
  }

  .left-arrow {
    font-size: 35px;
    left: -20px;
    top: -10px;
  }

  .links a {
    font-size: 14px;
  }

  .move-links-on {
    top: 105px;
  }

  .page-buttons {
    font-size: 18px;
    padding: 1px 4px;
  }

  .page-count {
    font-size: 14px;
  }

  .profile-pic {
    height: 100px;
    right: 50px;
    top: -95px;
    width: 100px;
  }

  .register-container {
    padding: 0 15px 25px 15px;
    width: 90%;
  }

  .register-form-input {
    margin: 10px auto;
    width: 300px;
  }

  .register-container h3 {
    font-size: 16px;
  }

  .register-container p {
    font-size: 14px;
  }

  .right-arrow {
    font-size: 35px;
    right: -20px;
    top: -10px;
  }

  .support-info-text a {
    font-size: 18px;
  }

  .yso-link {
    font-size: 20px;
  }
}

@media (max-width: 700px) {/* SOCIAL BOX GOES AWAY */
  .about-us-banner, .enhance-banner, .rewards-banner, .support-banner {
    width: 85%;
  }

  .about-us-banner a, .enhance-banner a, .rewards-banner a, .support-banner a {
    font-size: 16px;
    margin: 5px 10px;
    padding: 3px 15px;
  }

  .about-us-banner h1, .enhance-banner h1, .rewards-banner h1, .support-banner h1 {
    font-size: 35px;
    margin-bottom: 0;
  }

  .about-us-banner h2, .enhance-banner h2, .rewards-banner h2, .support-banner h2 {
    font-size: 20px;
    margin-bottom: 0;
  }

  .about-us-banner p, .enhance-banner p, .rewards-banner p, .support-banner p {
    font-size: 16px;
  }

  .about-us-container, .enhance-container, .rewards-container, .support-container {
    height: 100%;
    padding-bottom: 20px;
    width: 100%;
  }

  .about-us-info {
    padding: 0 10px 25px 10px;
    width: 100%;
  }

  .about-us-info h1 {
    font-size: 25px;
    margin-bottom: 0;
  }

  .about-us-info h2 {
    font-size: 20px;
    margin-bottom: 10px;
    width: 300px;
  }

  .about-us-info div {
    font-size: 16px;
    line-height: 20px;
  }

  .ad-container {
    height: 150px;
    padding: 10px 0;
    width: 100%;
  }

  .ad {
    border-radius: 0;
    width: 100%;
  }

  .banner {
    width: 100%;
  }

  .banner-advertisement {
    grid-template-columns: 100%;
  }

  .banner-advertisement h1 {
    font-size: 20px;
  }

  .banner-advertisement h2 {
    font-size: 14px;
  }

  .banner-advertisement h3 {
    font-size: 12px;
  }

  .banner-arrows {
    border-left: solid 1px #000;
    border-right: solid 1px #000;
    border-top: solid 1px #000;
    left: 70%;
    padding: 5px 5px 0 5px;
  }

  .banner-arrows span {
    font-size: 18px;
    padding: 0 3px;
  }

  .banner-caret {
    display: none;
  }

  .banner-container {
    height: 150px;
  }

  .banner-logo {
    padding: 5px;
    width: 75px;
  }

  .banner-redemption {
    width: 95%;
  }

  .burger-menu {
    -ms-flex-align: center;
    -ms-flex-direction: column;
    -ms-flex-pack: center;
    -ms-transform: translateY(-50%);
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    -webkit-transform: translateY(-50%);
    align-items: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    height: 20px;
    justify-content: center;
    left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .burger-menu:hover {
    cursor: pointer;
  }

  .burger-menu:hover .burger-bars {
    background: red;
  }

  .burger-bars {
    -o-transition: all 250ms ease;
    -webkit-transition: all 250ms ease;
    background: #fff;
    border-radius: 5px;
    height: 1px;
    margin: 2px 0;
    transition: all 250ms ease;
    width: 30px;
  }

  .burger-bars-remove {
    opacity: 0;
  }

  .burger-bars-rotate-clockwise {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: 10px;
    transform: rotate(45deg);
  }

  .burger-bars-rotate-counter-clockwise {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: absolute;
    top: 10px;
    transform: rotate(-45deg);
  }

  .card {
    height: 225px;
    width: 125px;
  }

  .card:hover {
    box-shadow: none;
  }

  .card-button {
    font-size: 12px;
  }

  .card-display {
    width: 100%;
  }

  .card-info {
    font-size: 12px;
  }

  .container {
    /* background: blue; */
    border-bottom: 0;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .container-heading {
    border-radius: 0;
    font-size: 20px;
    padding: 10px 0 10px 10px;
    width: 100%;
  }

  .container-heading::after {
    display: none;
  }

  .enhance-info, .rewards-info, .support-info {
    padding: 0 15px 0 15px;
    width: 100%;
  }

  .enhance-info-container, .rewards-info-container, .support-info-business-container, .support-info-customer-container {
    grid-gap: 0;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .enhance-info-container:nth-child(2) div:nth-child(1), .rewards-info-container:nth-child(2) div:nth-child(1) {
    order: 1;
  }

  .enhance-info-container:nth-child(4) div:nth-child(1) {
    order: 1;
  }

  .enhance-info-photo, .rewards-info-photo, .support-info-photo {
    border-radius: 0;
    height: 225px;
    margin: 0;
  }

  .enhance-info-text, .rewards-info-text, .support-info-text {
    padding: 0;
  }

  .enhance-info-text h1, .rewards-info-text h1, .support-info-text h1 {
    font-size: 22px;
    margin-top: 20px;
  }

  .enhance-info-text h2, .rewards-info-text h2, .support-info-text h2 {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .enhance-info-text p, .rewards-info-text p, .support-info-text p {
    border-radius: 0;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 10px 15px;
    width: 100%;
  }

  .enhance-navigation {
    justify-content: space-around;
    width: 100%;
  }

  .enhance-navigation-links {
    margin: 0;
  }

  #error {
    font-size: 14px;
  }

  #error-message {
    margin: 0 5px;
  }

  .filter-container {
    margin-top: 10px;
  }

  .filter-search-container {
    padding: 5px 0;
    width: 100%;
  }

  .filter-selection {
    font-size: 14px;
    padding: 5px 10px;
    margin: 2px 4px;
  }

  .learn-more {
    font-size: 12px;
  }

  .learn-more-button{
    bottom: 10px;
    font-size: 14px;
    padding: 5px 15px;
  }

  .left-arrow, .right-arrow {
    display: none;
  }

  .links {
    margin-bottom: 10px;
    padding: 0 15px 0 0;
  }

  .links a:hover {
    color: grey;
  }

  .links a::before {
    font-size: 25px;
    right: -10px;
    top: -4px;
  }

  .links-container {
    -ms-flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    flex-direction: column;
    text-align: left;
    width: 100%;
  }

  .links-register-container {
    -ms-flex-direction: column;
    -o-transition: all 250ms ease;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-shadow: 0 0 20px #000;
    -webkit-transition: all 250ms ease;
    align-items: flex-start;
    background: #000;
    border-bottom-right-radius: 5px;
    box-shadow: 0 0 20px #000;
    flex-direction: column;
    left: 0;
    padding: 15px 10px;
    position: absolute;
    top: -375px;
    transition: all 250ms ease;
    z-index: 1;
  }

  .move-links-on {
    top: 60px;
  }

  .page-container {
    font-size: 14px;
    padding-top: 0;
  }

  .profile-pic {
    height: 75px;
    top: -70px;
    width: 75px;
  }

  .red-font {
    color: red;
  }

  .register-button {
    font-size: 14px;
  }

  .register-container {
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 0 15px 15px 10px;
    width: 100%;
  }

  .register-form-open-button {
    margin: 5px;
    font-size: 16px;
  }

  .registration-response {
    border-left: none;
    border-right: none;
    border-radius: 0;
    width: 100%;
  }

  .search-button {
    font-size: 14px;
  }

  .search-field {
    font-size: 14px;
  }

  .social-block {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    flex-direction: row;
    position: relative;
    width: 100%;
  }

  .social-block a {
    border-radius: 5px;
    border: solid 1px #fff;
    font-size: 18px;
    margin: 10px 2px 0 2px;
    width: 30px;
  }

  .social-block a:hover {
    color: red;
    width: 30px;
  }

  .support-info-business-container div:nth-child(1) {
    order: 1;
  }

  .support-info-text a {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .up-arrow {
    font-size: 30px;
  }

  .up-arrow:hover {
    color: #333333;
  }

  .yso-link {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .about-us-banner, .enhance-banner, .rewards-banner, .support-banner {
    width: 95%;
  }

  .about-us-banner a, .enhance-banner a, .rewards-banner a, .support-banner a {
    font-size: 14px;
  }

  .about-us-banner h1, .enhance-banner h1, .rewards-banner h1, .support-banner h1 {
    font-size: 25px;
    margin-bottom: 0;
  }

  .about-us-banner h2, .enhance-banner h2, .rewards-banner h2, .support-banner h2 {
    font-size: 18px;
    margin-bottom: 0;
  }

  .about-us-banner p, .enhance-banner p, .rewards-banner p, .support-banner p {
    font-size: 15px;
    margin-bottom: 0;
  }

  .about-us-info {
    padding: 0;
  }

  .about-us-info h1 {
    font-size: 25px;
    margin-left: 5px;
  }

  .about-us-info h2 {
    font-size: 18px;
    margin-left: 5px;
    width: 250px;
  }

  .about-us-info div {
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    font-size: 16px;
    padding: 0 10px;
  }

  .ad-container {
    height: 125px;
  }

  .banner-advertisement h1 {
    font-size: 14px;
  }

  .banner-advertisement h2 {
    font-size: 10px;
  }

  .banner-advertisement h3 {
    font-size: 10px;
  }

  .banner-arrows span {
    margin: 0 5px;
  }

  .banner-container {
    height: 100px;
  }

  .banner-logo {
    width: 50px;
  }

  .banner-redemption {
    font-size: 12px;
  }

  .burger-menu {
    top: 30px;
  }

  .card {
    height: 210px;
    width: 135px;
  }

  .card-info {
    font-size: 10px;
  }

  .card-views {
    font-size: 12px;
  }

  .container {
    /* background: orange; */
  }

  .container-heading {
    font-size: 16px;
  }

  .enhance-info, .rewards-info, .support-info {
    padding: 0;
  }

  .enhance-info-photo, .rewards-info-photo, .support-info-photo {
    height: 200px;
  }

  .enhance-info-text h1, .rewards-info-text h1, .support-info-text h1 {
    font-size: 18px;
    margin-top: 20px;
    padding: 0 10px;
  }

  .enhance-info-text h2, .rewards-info-text h2, .support-info-text h2 {
    font-size: 14px;
    padding: 0 10px;
  }

  .enhance-info-text p, .rewards-info-text p, .support-info-text p {
    border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 15px;
  }

  #error {
    font-size: 12px;
  }

  .filter-search-container {
    padding: 5px 0;
  }

  .learn-more-button{
    padding: 2px 15px;
  }

  .links a {
    font-size: 14px;
  }

  .move-links-on {
    top: 58px;
  }

  .page-buttons {
    padding: 1px 4px;
  }

  .page-controls {
    font-size: 12px;
  }

  .profile-pic {
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 70px;
    top: -60px;
    width: 70px;
    right: 5px;
  }

  .register-form {
    padding-bottom: 10px;
  }

  .register-container h3 {
    margin-bottom: 0;
  }

  .register-container p {
    margin: 5px 0 10px 0;
  }

  .register-form-button {
    margin: auto 5px;
  }

  .register-form-input {
    width: 250px;
  }

  .register-form-open-button {
    font-size: 14px;
    padding: 2px 5px;
  }

  .search-button {
    font-size: 12px;
    padding: 5px 8px;
  }

  .search-field {
    font-size: 12px;
  }

  .support-info-text a {
    font-size: 14px;
    padding: 0 10px;
  }

  .yso-link {
    font-size: 16px;
  }
}
