* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: hsl(240, 6.38%, 18.43%);
}

ul {
  list-style: none;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

.container {
  max-width: 120rem;
  padding: 1.5rem;
  margin: 0 auto;
}

.footer {
  background-color: hsl(0, 0%, 100%);
}
.footer__wrapper .footer__social ul {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__wrapper .footer__social ul li a {
  color: hsl(0, 0%, 100%);
  display: inline-block;
  background: rgb(10, 10, 10);
  padding: 1rem;
  border-radius: 5rem;
  width: 4.5rem;
  text-align: center;
}
.footer__text {
  display: block;
}
.footer__text .privacy ul {
  display: block;
}
.footer__text .privacy ul li {
  margin-bottom: 2rem;
}
.footer__text .privacy ul li a {
  font-size: 1.7rem;
  font-weight: 500;
}
.footer__text .privacy ul li:hover a {
  -webkit-text-decoration: underline rgb(92, 84, 84);
          text-decoration: underline rgb(92, 84, 84);
}
.footer__text p {
  font-size: 1.5rem;
}
@media screen and (min-width: 1080px) {
  .footer__text {
    display: flex;
    justify-content: space-between;
  }
  .footer__text .privacy ul {
    display: flex;
  }
  .footer__text .privacy ul li {
    margin-right: 2rem;
    margin-bottom: unset;
  }
}

.header {
  box-shadow: 0 4px 3px -1px rgba(0, 0, 0, 0.2);
}
.header__wrapper {
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__wrapper .branding {
  display: flex;
  gap: 2rem;
}
.header__wrapper .branding img {
  width: 5rem;
}
.header__wrapper .branding ul {
  display: none;
  align-items: center;
  gap: 2rem;
}
.header__wrapper .branding ul li a {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
}
.header__wrapper .branding ul li a:hover {
  color: green;
}
.header__nav {
  display: block;
  background: hsl(0, 0%, 100%);
  position: absolute;
  top: 8.1rem;
  right: -100rem;
  max-height: 0rem;
  width: 75%;
  overflow: hidden;
  transition: 0.5s ease;
}
.header__nav ul {
  display: block;
}
.header__nav ul:not(:last-child) {
  box-shadow: 0 4px 3px -1px rgba(0, 0, 0, 0.2);
}
.header__nav ul li {
  font-size: 2rem;
  padding: 2rem;
}
.header__nav ul li .menu i {
  margin-left: 25rem;
}
.header__nav.open {
  max-height: 50rem;
  right: 0;
  transition: 0.5s ease;
}
.header__nav .headnav a {
  font-weight: 600;
  color: #000000;
}
.header__actions ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 2rem;
}
.header__actions .find__store i {
  margin-right: 2rem;
}
.header__actions .find__store:hover {
  color: green;
}
.header__actions .btn {
  padding: 0.7rem 2rem;
  border-radius: 4rem;
}
.header__actions .btn.white {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  transition: 0.5s ease;
  font-weight: 600;
  font-size: 2rem;
}
.header__actions .btn.white:hover {
  background: gray;
  color: #000000;
  border: 1px solid #000000;
}
.header__actions .btn.black {
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid #000000;
  transition: 0.5s ease;
  font-size: 2rem;
}
.header__actions .btn.black:hover {
  background: gray;
  color: #ffffff;
  border: 1px solid #000000;
}
.header__actions1 {
  display: none;
}
.header .toggle__menu {
  display: block;
}
.header .toggle__menu span {
  width: 2rem;
  height: 0.2rem;
  background-color: #7a7a7a;
  display: block;
  border-radius: 5rem;
  transition: 0.5s ease;
}
.header .toggle__menu span:nth-child(2) {
  margin: 0.5rem 0;
}
.header .toggle__menu.open span:first-child {
  transform: translate(0, 8px) rotate(225deg);
  transition: 0.5s ease;
}
.header .toggle__menu.open span:nth-child(2) {
  opacity: 0;
  transition: 0.5s ease;
}
.header .toggle__menu.open span:last-child {
  transform: translate(0, -7px) rotate(-225deg);
  transition: 0.5s ease;
}
@media screen and (min-width: 1080px) {
  .headerwrapper__actions {
    display: flex;
  }
  .header .branding {
    display: flex;
  }
  .header .branding ul {
    display: flex;
  }
  .header .toggle__menu {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .header__actions1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__actions1 ul {
    align-items: center;
    display: flex;
    gap: 2rem;
  }
  .header__actions1 .find__store {
    font-weight: bold;
  }
  .header__actions1 .find__store i {
    margin-right: 2rem;
  }
  .header__actions1 .find__store:hover {
    color: green;
  }
  .header__actions1 .btn {
    display: inline-flex;
    padding: 0.7rem 2rem;
    border-radius: 4rem;
  }
  .header__actions1 .btn.white {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    transition: 0.5s ease;
    font-weight: 600;
    font-size: 2rem;
  }
  .header__actions1 .btn.white:hover {
    background: gray;
    color: #000000;
    border: 1px solid #000000;
  }
  .header__actions1 .btn.black {
    background: #000000;
    color: #ffffff;
    font-weight: 600;
    border: 1px solid #000000;
    transition: 0.5s ease;
    font-size: 2rem;
  }
  .header__actions1 .btn.black:hover {
    background: gray;
    color: #ffffff;
    border: 1px solid #000000;
  }
}

.links__wrapper {
  font-family: Arial, Helvetica, sans-serif;
}
.links__drop__item:not(:first-child), .links__drop__item:not(:last-child) {
  margin: 3rem 0;
}
.links__drop__item h4 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links__drop__item h4 i {
  transition: 0.5s ease;
}
.links__drop__item h4 i.open {
  transform: rotate(180deg);
  transition: 0.5s ease;
}
.links__drop__item ul {
  margin: 0 2rem;
  max-height: 0rem;
  overflow: hidden;
  transition: 0.5s ease;
}
.links__drop__item ul.open {
  max-height: 25rem;
  transition: 0.5s ease;
}
.links__drop__item ul li {
  padding: 1rem 0;
}
.links__drop__item ul li a {
  color: hsl(240, 6.38%, 18.43%);
  font-size: 1.2rem;
}
.links__drop__item ul li:hover {
  cursor: pointer;
}
.links__drop__item ul li:hover a {
  color: hsl(240, 6.38%, 18.43%);
}
@media screen and (min-width: 1080px) {
  .links__wrapper {
    display: grid;
    grid-template-columns: 4fr 1fr;
  }
  .links__drop {
    margin: 0;
    display: flex;
    align-items: start;
    gap: 6.5rem;
  }
  .links__drop__item:not(:first-child), .links__drop__item:not(:last-child) {
    margin: 0;
  }
  .links__drop__item h4 {
    font-size: 2rem;
    font-weight: bolder;
    pointer-events: none;
  }
  .links__drop__item h4 i {
    display: none;
  }
  .links__drop__item ul {
    max-height: 20rem;
    margin: 1rem 0;
  }
}

.banner {
  background-image: url("../img/star.png");
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 600px;
  background-color: #D4E9E2;
  background-position-y: 35rem;
  background-position-x: 20rem;
  text-align: center;
  padding-top: 6rem;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (min-width: 1080px) {
  .banner {
    background-position-y: 10rem;
    background-position-x: 100rem;
    text-align: unset;
    align-items: center;
  }
  .banner__wrapper {
    position: relative;
  }
  .banner__text {
    position: absolute;
    top: 25rem;
  }
}

.steps {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
}
.steps__text {
  margin: 3rem 0;
}
.steps__text h2 {
  text-align: center;
}
.steps__text p {
  text-align: center;
}
.steps__number {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem;
}
.steps__number h1 {
  color: #009658;
  border: 2px solid #009658;
  border-radius: 5rem;
  width: 5rem;
  height: 5rem;
  padding: 1rem 1.7rem;
  margin-right: 1rem;
}
.steps__item span a {
  color: #009658;
  -webkit-text-decoration: underline #009658;
          text-decoration: underline #009658;
}
.steps__item span a:hover {
  text-decoration: unset;
}
@media screen and (min-width: 1080px) {
  .steps {
    margin-top: 10rem;
    margin-bottom: 5rem;
  }
  .steps__text h2 {
    font-size: 2.8rem;
    color: #212121;
  }
  .steps__text p {
    margin-top: 2rem;
    font-weight: bolder;
  }
  .steps__list {
    display: flex;
    justify-content: center;
  }
  .steps__number {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .steps__number h1 {
    margin: 0 auto;
  }
  .steps__number h3 {
    margin: 4rem 0;
  }
  .steps__number p {
    max-width: 40rem;
  }
}

.coffee {
  font-family: Arial, Helvetica, sans-serif;
}
.coffee__nav {
  background: #f1f8f5;
  padding-top: 5rem;
  text-align: center;
}
.coffee__nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}
.coffee__nav ul li {
  padding: 2rem 1.5rem;
  position: relative;
}
.coffee__nav ul li::before {
  content: "";
  width: 0;
  height: 4px;
  background-color: #00754a;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.coffee__nav ul li.active::before {
  width: 100%;
  transition: 0.5s ease;
}
.coffee__nav ul li a {
  font-size: 2rem;
  color: hsl(240, 6.38%, 18.43%);
  font-weight: 600;
}
.coffee__content {
  background: #d4e9e2;
  position: relative;
  min-height: 40rem;
}
.coffee__content .coffee__tab__content {
  position: absolute;
  opacity: 0;
  margin: 0 3rem;
  transform: translateX(5rem);
  transition: 0.5s ease;
}
.coffee__content .coffee__tab__content.active {
  opacity: 1;
  transform: translateX(0rem);
  transition: 0.5s ease;
}
.coffee__content .coffee__tab__content img {
  width: 45rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: center center;
     object-fit: center center;
  display: block;
}
.coffee__content .coffee__tab__content__text {
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .coffee__nav ul {
    display: flex;
    justify-content: center;
  }
  .coffee__content {
    min-height: 30rem;
  }
  .coffee .coffee__desc {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .coffee .coffee__tab__content {
    display: flex;
    align-items: center;
    top: 3rem;
    text-align: left;
    max-width: 100rem;
    margin: 0 auto;
  }
  .coffee .coffee__tab__content.active {
    flex-direction: row;
  }
  .coffee .coffee__tab__content__text {
    text-align: left;
    max-width: 28rem;
  }
  .coffee .coffee__tab__content__text p {
    margin: 2rem 0;
    line-height: 2.5rem;
  }
}

.extras__wrapper {
  font-family: Arial, Helvetica, sans-serif;
}
.extras__text {
  color: #212121;
  margin-top: 4rem;
  text-align: center;
}
.extras__text p {
  margin: 3rem 0;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}
.extras__item {
  display: flex;
  align-items: center;
}
.extras__item img {
  width: 11rem;
  margin-right: 2rem;
}
.extras__item:nth-child(2) {
  margin: 4rem 0;
}
.extras__desc h4 {
  color: #212121;
  font-weight: 600;
}
.extras__desc p {
  margin: 2rem 0;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}
.extras__desc a {
  text-decoration: underline;
  color: #00754a;
  font-size: 1.5rem;
}
.extras__desc a:hover {
  text-decoration: unset;
}
@media screen and (min-width: 1080px) {
  .extras {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .extras__text {
    margin: 0 auto;
    max-width: 60rem;
  }
  .extras__text h2 {
    font-size: 3rem;
    font-weight: 600;
  }
  .extras__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .extras__item {
    flex-direction: column;
    text-align: center;
  }
  .extras__item img {
    margin: 0 auto;
  }
  .extras__item:nth-child(2) {
    margin: 0 2rem;
  }
  .extras__desc h4 {
    margin: 2rem 0;
    font-size: 2rem;
  }
}

.payment {
  padding-top: 4rem;
  background: #f2f0eb;
  font-family: Arial, Helvetica, sans-serif;
}
.payment__text {
  text-align: center;
}
.payment__text h2 {
  font-size: 2.3rem;
}
.payment__text p {
  margin: 2rem 0;
  font-size: 1.5rem;
}
.payment__item {
  margin-top: 7rem;
}
.payment__item:first-child {
  border-bottom: 1px solid #dcdbd6;
}
.payment__item h4 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.payment__item p {
  font-size: 1.3rem;
  font-weight: 600;
}
.payment__content {
  margin: 3rem 0;
  display: flex;
  align-items: start;
}
.payment__content img {
  width: 12rem;
  margin-right: 2rem;
}
.payment__content__desc h4 {
  font-size: 1.5rem;
}
.payment__content__desc p {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2.5rem;
}
@media screen and (min-width: 1080px) {
  .payment__item {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1.5fr;
  }
  .payment__item img {
    margin: unset;
    padding: 2rem;
  }
}

.rewards {
  background: #d4e9e2;
  font-family: Arial, Helvetica, sans-serif;
  padding: 8rem 0;
}
.rewards__wrapper {
  text-align: center;
}
.rewards__text h1 {
  font-size: 3rem;
  max-width: 30rem;
  margin: 0 auto;
}
.rewards__text p {
  font-size: 1.7rem;
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem 0;
  line-height: 2.5rem;
}
.rewards__text span {
  color: #009658;
  text-decoration: underline;
}
.rewards__text span a {
  color: #009658;
}
.rewards__text span:hover {
  text-decoration: unset;
}
.rewards__text span img {
  width: 1rem;
}
.rewards .btn {
  display: flex;
  font-size: 1.2rem;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin: 0 auto;
}
.rewards .btn.join {
  background-color: #00754a;
  padding: 1.5rem;
  color: hsl(0, 0%, 100%);
  border-radius: 4rem;
  font-weight: 600;
  font-size: 1.5rem;
}/*# sourceMappingURL=main.css.map */