@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=League+Spartan:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #f5fff8;
}

button {
  border: none;
  outline: none;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.header {
  background: #f5fff8;
  color: #fff;
  padding: 24px 0;
}
.header .main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo img {
  height: 50px;
}
.header .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
.header .nav ul a {
  color: #37393f;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header .nav ul {
    flex-direction: column;
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    background: #f5fff8;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
  }
  .header .nav ul.active {
    transform: translateY(0);
  }
}
.header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}
.header .hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background: #37393f;
  transition: background 0.3s, transform 0.3s;
}
@media (max-width: 768px) {
  .header .hamburger {
    display: flex;
  }
}
.header .login {
  border-radius: 34px;
  background: var(--Linear, linear-gradient(96deg, #4de581 -16.11%, #014d1b 108.59%));
  padding: 21px 35px 22px 35px;
}
.header .login a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header .login {
    display: none;
  }
}

.hero {
  background-image: url("./images/Header.svg");
  background-color: rgba(0, 0, 0, 0.631372549);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 80px 0;
  min-height: 60vh;
}
.hero .text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .text-container h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 3rem;
  text-align: left;
  line-height: 140%;
  max-width: 900px;
  margin-bottom: 1rem;
}
.hero .text-container p {
  font-size: 1.2rem;
  line-height: 140%;
  max-width: 700px;
  margin-bottom: 2rem;
  text-align: left;
}
.hero .text-container button {
  border-radius: 50px;
  border: 1px solid #fff;
  background: linear-gradient(0deg, #fff 0%, #fff 100%), linear-gradient(96deg, #ecfff3 -16.11%, #07ff5b 108.59%);
  box-shadow: 2px 11px 20px 0px rgba(51, 51, 51, 0.1), 2px 5px 20px 0px rgba(2, 124, 44, 0.5);
  padding: 15px 50px;
  color: #1ba64b;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.welcome-gogift-container {
  padding: 100px 0;
}
.welcome-gogift-container .welcome-gogift {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}
.welcome-gogift-container .welcome-gogift .text {
  flex-basis: 50%;
}
.welcome-gogift-container .welcome-gogift .text h3 {
  color: #4a4a4a;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.welcome-gogift-container .welcome-gogift .text p {
  color: #595959;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 2rem;
}
.welcome-gogift-container .welcome-gogift .text button {
  margin-top: 3rem;
  border-radius: 34px;
  background: var(--Linear, linear-gradient(96deg, #4de581 -16.11%, #014d1b 108.59%));
  padding: 21px 35px 22px 35px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.our-categories-container {
  padding: 100px 0;
}
.our-categories-container .title {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.our-categories-container .title p {
  color: #0f672d;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.5rem;
}
.our-categories-container .title h3 {
  color: #4a4a4a;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.our-categories-container .categories {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  row-gap: 3rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.our-categories-container .categories .category {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 2px 10px 0px rgba(51, 51, 51, 0.08);
  padding: 2rem;
}
.our-categories-container .categories .category h5 {
  margin-top: 3rem;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.our-categories-container .categories .category p {
  color: #676767;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 179%;
  margin-top: 1rem;
}

.gift-cards-container {
  padding: 100px 0;
  background: #c8fcd8;
}
.gift-cards-container .title {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.gift-cards-container .title h3 {
  color: #4a4a4a;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.gift-cards-container .gift-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-top: 4rem;
}
.gift-cards-container .gift-cards img {
  max-width: 350px;
}
@media (max-width: 768px) {
  .gift-cards-container .gift-cards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .gift-cards-container .gift-cards img {
    max-width: 150px;
  }
}

.learm-more-container .welcome-gogift {
  flex-direction: row-reverse;
}

.buy-now-container {
  padding: 100px 0;
}
.buy-now-container .buy-now {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.buy-now-container .buy-now h3 {
  color: #000;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 130.5%; /* 46.98px */
  margin-bottom: 1.5rem;
}
.buy-now-container .buy-now p {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 190.5%;
}
.buy-now-container .buy-now button {
  margin-top: 2rem;
  border-radius: 34px;
  background: var(--Linear, linear-gradient(96deg, #4de581 -16.11%, #014d1b 108.59%));
  padding: 21px 35px 22px 35px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.faq-container {
  padding: 100px 0;
}
.faq-container .main {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.faq-container .main .faqs {
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
  margin-left: auto;
}
.faq-container .main .faqs .title h3 {
  color: var(--Typography-Heading-Font-Color, #212529);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.faq-container .main .faqs .title h3 span {
  color: var(--grren, #1ba64b);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.faq-container .main .faqs .faq-items {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.faq-container .main .faqs .faq-items .faq-item {
  position: relative;
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.faq-container .main .faqs .faq-items .faq-question {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background: #c8fcd8;
  color: #4a4a4a;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  transition: background-color 0.3s;
  width: 100%;
}
.faq-container .main .faqs .faq-items .faq-question:hover,
.faq-container .main .faqs .faq-items .faq-active .faq-question {
  background: var(--grren, #1ba64b);
  color: #fff;
}
.faq-container .main .faqs .faq-items .faq-answer {
  display: none;
  padding: 1rem 1.5rem;
  border-top: 1px solid #ddd;
  color: #595959;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
.faq-container .main .faqs .faq-items .faq-icon {
  fill: #4a4a4a;
  font-weight: bold;
  transition: transform 0.3s;
  position: absolute;
  right: 1.5rem;
}
.faq-container .main .faqs .faq-items .faq-active .faq-answer {
  display: block;
}
.footer {
  background: #37393f;
  color: #fff;
  padding: 50px 0;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer .company-info img {
  height: 50px;
}
.footer .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.footer .footer-nav ul li {
  margin-left: 20px;
}
.footer .footer-nav ul li a {
  color: #fff;
  text-decoration: none;
}
.footer .all-rights {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1803921569);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .container {
    width: 90%;
  }
  .header .container,
  .hero .text-container,
  .welcome-gogift-container .welcome-gogift,
  .faq-container .main {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  .welcome-gogift-container .welcome-gogift,
  .faq-container .main {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 50px 0;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .header .nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}/*# sourceMappingURL=style.css.map */