* {
  padding: 0;
  margin: 0;
  font-family: "Open Sans";
}

header {
  background-color: #FFF0ED;
  height: auto;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__title h2 {
  display: inline;
}
.header__title h2 a {
  text-decoration: none;
  color: #393939;
}

.header__nav {
  display: flex;
}
.header__nav--links {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
.header__nav--link {
  text-decoration: none;
  color: #393939;
}
.header__nav--cta {
  color: #5BACC3;
  text-decoration: none;
}

body {
  font-family: "Open Sans";
  font-weight: 400;
}

h1, h2 {
  font-size: 3.75rem;
  font-weight: 300;
  margin-bottom: 3%;
}

h3 {
  font-size: 2.063rem;
  font-weight: 300;
  margin-top: 1%;
}

ul {
  list-style-type: none;
}

li a {
  font-size: 1.313rem;
  font-weight: 400;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
}

.logo {
  width: 3.125rem;
}

.hero, .products, .discount, .footer {
  padding: 75px 150px;
}

.btn {
  width: 11.25rem;
  color: #FFF;
  background-color: #5BACC3;
  font-family: "Open Sans";
  padding: 1.25rem;
  font-size: 1.3125rem;
  font-weight: 400;
  position: relative;
  display: flex;
  border: none;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.btn__border {
  width: 100%;
  height: 100%;
  border: #393939 solid 0.125rem;
  font-family: "Open Sans";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: -0.5rem;
  top: -0.5rem;
}

.hero {
  background-color: #FFF0ED;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.hero__img {
  padding: 1.25rem;
}
.hero__description {
  padding-top: 0;
  padding-bottom: 3.125rem;
}

.product {
  text-align: center;
  background-color: #F7f7f7;
  padding: 2.5rem;
}
.product__container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 2.5rem 0rem;
}
.product__card--item {
  width: 20.625rem;
  height: 27.5rem;
  border-radius: 0.625rem;
  box-shadow: 0 0.3125rem 0.5625rem -0.0625rem rgba(0, 0, 0, 0.25);
  background-color: #FFF;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  overflow: hidden;
  justify-content: center;
}
.product__card--item-label {
  background-color: #FFF0ED;
  width: 100%;
  height: 20%;
  padding: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.product__card--item--title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product__card img {
  height: 17.5rem;
  padding: 1.25rem;
}

.product__card--price {
  font-size: 2.0625rem;
  color: #5BACC3;
  font-weight: 700;
}

.product__cta--view-all {
  padding: 1.25rem;
}

.feature-content {
  display: flex;
  padding: 1.25rem;
  justify-content: space-around;
  margin: 6.25rem;
}
.feature-content__left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 50%;
}
.feature-content__icons {
  display: flex;
  justify-content: space-between;
}
.feature-content__icons img {
  width: 3.125rem;
}
.feature-content__right {
  background-image: url("../assets/images/coldbrewbackground.png");
  width: 25rem;
  height: 25rem;
  display: flex;
  align-content: center;
  text-align: center;
  position: relative;
}
.feature-content__right--img {
  height: 17.5rem;
  padding: 1.25rem;
  align-content: center;
  text-align: center;
}
.feature-content__right--border {
  position: absolute;
  border: solid #5BACC3 0.125rem;
  width: 100%;
  height: 100%;
  align-content: center;
  text-align: center;
  left: -1.25rem;
  top: -1.25rem;
}

.discount {
  text-align: center;
  margin: 8vh auto;
}
.discount__banner {
  width: 90%;
  background-color: #393939;
  color: #FFF;
  font-size: 2.8125rem;
  text-align: center;
  padding: 1.25rem;
  margin: 0 auto;
  animation: flash 2.5s infinite;
}

.footer {
  background-color: #FFF0ED;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.footer__coffee-bean, .footer__coffee-bean--right, .footer__coffee-bean--left {
  position: absolute;
  width: 7.5rem;
  opacity: 25%;
}
.footer__coffee-bean--left {
  top: 2.5rem;
  left: -2.5rem;
}
.footer__coffee-bean--right {
  right: -2.5rem;
  bottom: -2.5rem;
}
.footer__card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__card--social {
  width: 3.125rem;
  margin-right: 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.feature-content__right:hover .feature-content__right--img {
  animation: spin 2s linear infinite; /* Apply the animation when the element is hovered */
}

@keyframes flash {
  0%, 100% {
    background-color: #393939;
  }
  50% {
    background-color: #5BACC3;
  }
}
.btn__border:active {
  position: absolute;
  left: -0.1187rem;
  top: -0.13rem;
}/*# sourceMappingURL=landing.css.map */