@-webkit-keyframes discountBanner {
  0% {
    background-color: #5bacc3;
  }
  50% {
    background-color: rgba(0, 0, 0, 0.85);
  }
  100% {
    background-color: #5bacc3;
  }
}

@keyframes discountBanner {
  0% {
    background-color: #5bacc3;
  }
  50% {
    background-color: rgba(0, 0, 0, 0.85);
  }
  100% {
    background-color: #5bacc3;
  }
}

@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes buttonHover {
  0% {
    right: 3%;
    top: -16%;
  }
  50% {
    right: 1%;
    top: -1%;
  }
  100% {
    right: 3%;
    top: -16%;
  }
}

@keyframes buttonHover {
  0% {
    right: 3%;
    top: -16%;
  }
  50% {
    right: 1%;
    top: -1%;
  }
  100% {
    right: 3%;
    top: -16%;
  }
}

html,
body {
  font-family: Helvetica;
  color: #464646;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: -4;
  font-weight: 100;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: inherit;
}

h1,
h2 {
  font-size: 60px;
  font-weight: 100 !important;
}

h3 {
  font-weight: 100;
  font-size: 33px;
}

a {
  color: #464646;
  text-decoration: none;
  padding: 0%;
  padding-right: 3%;
  vertical-align: middle;
  margin: 0;
}

.headOfThePage {
  background-color: #fff0ed;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__img {
  display: inline-block;
  padding-left: 1%;
  padding-right: 0;
}

.nav__h2 {
  font-family: Helvetica;
  font-weight: 1;
  font-size: 50px;
  display: inline-block;
  vertical-align: middle;
  -webkit-margin-before: auto;
          margin-block-start: auto;
  -webkit-margin-after: auto;
          margin-block-end: auto;
}

.nav__ul {
  list-style: none;
  color: #464646;
  display: inline;
  vertical-align: middle;
  padding: 0% 1%;
  min-width: 20%;
}

.nav__li {
  list-style: none;
  color: #464646;
  display: inline;
  vertical-align: middle;
  padding: 0% 1%;
}

.nav__ul--shopNow {
  text-decoration: none;
  color: #5bacc3;
}

.header__div {
  display: inline-block;
  width: 48%;
  margin: auto;
}

.header__div--left {
  overflow: hidden;
}

.main__h1 {
  margin-bottom: 1%;
  margin-left: 25%;
  font-weight: lighter !important;
}

.nav__coffeaParagraph {
  width: 50%;
  margin-bottom: 5%;
}

.body__Buttons {
  background-color: #5bacc3;
  color: #fff;
  border: 0px;
  padding: 1em;
}

.body__Buttons--shopNow {
  margin-left: 25%;
  margin-bottom: 45%;
  position: relative;
  outline: none;
}

.body__Buttons--shopNow::after {
  z-index: 9;
  content: "";
  right: 3%;
  top: -16%;
  position: absolute;
  border: 1px solid black;
  width: 100%;
  height: 100%;
}

.body__Buttons--shopNow::after:active {
  border: none;
}

.body__Buttons--shopNow:active {
  border: 3px black solid;
}

.nav__img--hero {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  padding-bottom: 5%;
}

.body__main {
  background-color: #f7f7f7;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.main__h1--ourProducts {
  margin-bottom: 1%;
  text-align: center;
  padding: 2%;
}

.main___containerDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main__productDivisions {
  padding: 1rem 0em 0em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 318px;
  height: 436px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 9px -1px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 5px 9px -1px rgba(0, 0, 0, 0.25);
  background-color: white;
  margin-left: 0.3vw;
  margin-right: 0.3vw;
}

.productDivisions__productDetails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.main__img {
  display: block;
  margin: 7% auto 2% auto;
}

.main__productName {
  display: block;
  text-align: center;
}

.price {
  color: #5bacc3;
  font-size: 3rem;
}

.productDetails__quantDescription {
  color: rgba(73, 73, 73, 0.363);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.body__Buttons--viewAll {
  margin-top: 0%;
  margin-bottom: 3rem;
  margin-left: 46.5%;
  position: relative;
  outline: none;
}

.body__Buttons--viewAll::after {
  z-index: 9;
  content: "";
  right: 3%;
  top: -16%;
  position: absolute;
  border: 1px solid black;
  width: 100%;
  height: 100%;
}

.body__Buttons--viewAll::after:active {
  border: none;
}

.body__Buttons--viewAll:active {
  border: 3px black solid;
}

.weDifferent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 1em;
}

.weDifferent__leftDiv {
  width: 25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.weDifferent__imageRow {
  margin: 1em 0em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.imageRow__icons {
  margin: 1em 0em;
  width: 50px;
  height: 50px;
}

.learnMoreButton {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.weDifferent__rightDiv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10%;
  background: url(../assets/coldbrewbackground.png);
  background-size: cover;
  max-height: 10px;
  position: relative;
}

.weDifferent__right-border {
  position: absolute;
  border: 2px solid #5bacc3;
  left: -1rem;
  top: -2rem;
  bottom: 1rem;
  right: 1rem;
}

.discount {
  background-color: white;
}

#discountBanner {
  width: 1137px;
  height: 90px;
  color: #f7f7f7;
  font-size: 45px;
  text-align: center;
  margin: 35px auto;
  vertical-align: middle;
  padding: 2.6% 1.3% 1.3%;
  -webkit-animation-name: discountBanner;
          animation-name: discountBanner;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.footer {
  background-color: #fff0ed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 2%;
  position: relative;
}

.footer__inlineDiv {
  display: inline-block;
  margin: 1%;
  width: 30%;
}

.footerIcons {
  height: 50px;
  margin: 1%;
}

.card__bottomHalf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  min-height: 35%;
  background-color: #fff0ed;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  min-width: 100%;
  margin: 0;
}

.weDifferent__can-image {
  max-height: 60%;
  max-width: 100px;
  z-index: 9;
  -webkit-animation-name: rotating;
          animation-name: rotating;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.weDifferent__can-image:hover {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.border {
  border: 2px solid rgba(0, 0, 0, 0.25);
  position: absolute;
  left: -8%;
  top: -8%;
  bottom: 2%;
  right: 2%;
}

.floatingCoffeeBeans--left {
  position: absolute;
  left: 1%;
  top: 10%;
}

.floatingCoffeeBeans--right {
  position: absolute;
  right: 1%;
  bottom: 10%;
}
/*# sourceMappingURL=main.css.map */