/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(260, 100%, 66%);
  --second-color: hsl(328, 100%, 66%);
  --gradient-color: linear-gradient(
    75deg,
    var(--second-color) 12%,
    var(--first-color) 90%
  );
  --first-color-light: hsl(260, 88%, 92%);
  --first-color-dark: hsl(260, 80%, 16%);
  --title-color: hsl(260, 80%, 18%);
  --text-color: hsl(260, 24%, 32%);
  --text-color-light: hsl(260, 16%, 65%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);
  --body-color: hsl(260, 100%, 97%);
  --container-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --body-font-2: 'Lora', serif;
  --biggest-font-size: 2.75rem;
  --bigger-font-size: 2rem;
  --big-font-size: 1.75rem;
  --h1-font-size: 22px;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
  :root {
    --biggest-font-size: 6rem;
    --bigger-font-size: 4rem;
    --big-font-size: 3.5rem;
    --h1-font-size: 24px;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}

body {
  background-color: var(--body-color);
}

h1,
h2,
h3,
h4 {
  font-weight: var(--font-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/

/*========== Variables Dark theme ==========*/

/*==========
	Color changes in some parts of
	the website, in dark theme
==========*/

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1280px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.flex {
  display: flex;
}

.section {
  padding-block: 48px 48px;
}

.section__title {
  text-align: center;
  font-size: var(--bigger-font-size);
  margin-bottom: 1.5rem;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

.btn {
  border: none;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 18px;
}

.btn:hover {
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(
    90deg,
    #e6bb37 0%,
    #edda84 32.96%,
    #ca9d2f 53.1%,
    #edda86 74.74%,
    #c99b2d 100%
  );
  font-weight: 700;
}

.btn-secondary {
  background-color: var(--black-color);
  color: var(--white-color);
}

/*=============== HOME ===============*/
.hero {
  min-height: 100vh;
  background-image: url('/assets/images/Hero\ section/bg\ hero.png');
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 1.5rem;
}

@media screen and (min-width: 1152px) {
  .hero {
    min-height: 680.55px;
  }
}

.hero_image-logo {
  width: min(100%, 180px);
}

.hero_image-logo {
  margin: 0 auto 44px; /* md: 48px  */
}

.hero_title {
  font-size: var(--h1-font-size);
  line-height: 32px;
}

.hero_title-7days {
  font-size: 34px;
  margin-right: 8px;
}

.hero_title-mk {
  font-size: 24px;
}

.hero_text-desc {
  margin: 32px 0 28px;
  font-size: var(--h1-font-size);
  line-height: 32px;
}

@media screen and (min-width: 1152px) {
  .hero_title {
    font-size: var(--h1-font-size);
    line-height: 36px;
  }

  .hero_title-7days {
    font-size: 36px;
  }

  .hero_title-mk {
    font-size: 26px;
  }
}

.hero_button {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.hero_hastag {
  display: block;
  text-align: center;
  margin-left: 0;
  font-weight: var(--font-bold);
  font-size: 15px;
  margin-top: 28px;
}

@media screen and (min-width: 1152px) {
  .hero_hastag {
    margin-left: 125px;
    text-align: left;
  }
}

.hero_elemen {
  position: absolute;
  inset: auto 0 0;
}
/*=============== ONE ===============*/
.one {
  background-image: url('/assets/images/Section\ 1/bg\ 1.webp');
  background-repeat: no-repeat;
}

.one_title {
  color: var(--white-color);
  font-weight: var(--font-medium);
  margin-bottom: 20px;
  font-size: 32px;
}

.one_list {
  color: var(--black-color);
  font-size: 18px;
}

.one_list-item {
  list-style-image: url('/assets/icons/checklist.svg');
  list-style-position: inside;
  background: var(--white-color);
  border-radius: 8px;
  margin-bottom: 12px;
  font-weight: var(--font-bold);
  padding: 0 16px;
}

@media screen and (min-width: 1152px) {
  .one_list-item {
    max-width: 525px;
  }
}

.one_img,
.one_text {
  align-self: center;
}

/*=============== TWO ===============*/
.two {
  background-image: url('/assets/images/Section\ 2/bg\ 2.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.two_fisrt-content {
  background: linear-gradient(
    135deg,
    #ce9f33 0%,
    #eddb87 38.13%,
    #eddb87 57.98%,
    #ce9f33 100%
  );
  max-width: 900px;
  border-radius: 12px;
  padding: 36px 24px;
  position: relative;
  overflow: hidden;
  margin-inline: 1.5rem;
}

.two_fisrt-title {
  font-size: 36px;
  text-align: center;
}

.two_first-subtitle {
  font-size: 20px;
  text-align: center;
  max-width: 512px;
  margin: 0 auto;
}

.two_first-text {
  font-size: 18px;
  text-align: center;
}

.two_first-image {
  position: absolute;
  bottom: 0;
  right: 24px;
  width: 240px;
}

.two_second-content {
  margin-top: 20px;
}

.two_second-image {
  width: min(100%, 160px);
  display: block;
  margin: 0 auto 32px;
}

.two_second-quote::before {
  content: open-quote;
}

.two_second-quote {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--body-font-2);
}

.two_second-quote::after {
  content: close-quote;
}

.two_second-text {
  display: block;
  text-align: center;
  font-size: 24px;
  font-family: var(--body-font-2);
}
.two_second-text:last-child {
  font-size: 20px;
}

@media screen and (min-width: 1152px) {
  .two_fisrt-title {
    font-size: 40px;
  }
  .two_fisrt-subtitle {
    font-size: 23px;
  }
  .two_fisrt-text {
    font-size: 20px;
  }
}

/*=============== THREE ===============*/
.three {
  background: var(--black-color);
}

.three_content {
  max-width: 1152px;
  justify-content: center;
  gap: 3rem;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fill, minmax(0, 512px));
}

.three_wrapper {
  width: min(100%, 512px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-buy-1 {
  margin-top: 10px;
}

@media screen and (min-width: 1152px) {
  .three_wrapper {
    position: relative;
  }
  .btn-buy-1 {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 16px;
  }
  .btn-buy-2 {
    left: 140px;
  }
}

/*=============== FOUR ===============*/
.four {
  background-image: url('/assets/images/Section\ 4/bg\ 4.png');
  display: block;
  text-align: center;
}

.four_logo {
  width: min(100%, 180px);
  margin-bottom: 48px;
}

.four_content {
  grid-template-columns: repeat(auto-fill, minmax(0, 224px));
  justify-content: center;
}

.four_wrapper {
  max-height: 452.68px;
}

/*=============== FIVE ===============*/
.five {
  background-color: var(--black-color);
}

.five_logo {
  width: min(100%, 180px);
  margin: 0 auto 96px;
  display: block;
}

.content_five {
  margin-bottom: 112px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.content_five img {
  max-width: 350px;
}

.content_five:last-child {
  margin-bottom: 0;
}
/*=============== SIX ===============*/
.six {
  background-image: url('/assets/images/Section\ 6/bg\ 6.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.six_title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  font-family: var(--body-font-2);
}

.six_title_italic {
  font-style: italic;
}

@media screen and (min-width: 1152px) {
  .six_title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    font-family: var(--body-font-2);
  }
}

.six_title:last-of-type {
  font-weight: 700;
  margin-bottom: 40px;
}

.six_content {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1.5rem;
}

.six_box {
  width: min(100%, 236px);
  padding: 0 12px;
}

.six_image {
  width: 122px;
  margin: 0 auto 32px;
  display: block;
}

.six_text {
  text-align: center;
}

.six_testimoni {
  row-gap: 24px;
  column-gap: 48px;
}

.six_title-testimoni {
  font-size: 45px;
  text-align: center;
}

.six_testimoni-title {
  align-self: center;
  /* justify-self: right; */
}

.six_testimoni-image {
  text-align: center;
}

.six_subtitle-testimoni {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
}

.six_subtitle-testimoni span {
  font-weight: 700;
  display: block;
}

.six_img {
  width: min(100%, 144px);
}

/*=============== SEVEN ===============*/
.seven {
  background-image: url('/assets/images/Section\ 7/bg.png');
  background-position: center;
  background-size: cover;
}

.seven_logo {
  width: min(100%, 144px);
  margin: 0 auto 32px;
  display: block;
}

.seven_title {
  color: var(--white-color);
  margin-bottom: 32px;
}

.seven_text {
  color: var(--white-color);
  margin-bottom: 53px;
  font-size: 16px;
}

.seven_subtitle {
  color: var(--white-color);
  margin-bottom: 16px;
}

.seven_list-item {
  display: flex;
  color: var(--white-color);
  align-items: center;
  column-gap: 12px;
  margin-bottom: 12px;
}

.seven_list-icon {
  height: 36px;
}

.seven_img {
  align-self: center;
  position: relative;
}

.btn-seven {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 25%);
  font-size: 14px;
  padding: 5px 10px;
}

@media screen and (min-width: 768px) {
  .btn-seven {
    font-size: 16px;
  }
}

@media screen and (min-width: 1152px) {
  .btn-seven {
    font-size: 20px;
  }
}
/*=============== FAQ ===============*/
.faq {
  background-image: url('/assets/images/Section\ 8/bg\ 8.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.faq_box {
  max-width: 640px;
  margin-bottom: 4px;
}

.faq_title {
  text-align: center;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 24px;
  font-family: var(--body-font-2);
}

.faq_sub-title {
  width: 100%;
  text-align: center;
  text-transform: capitalize;
  font-weight: 400;
}

.faq_text {
  text-align: center;
  font-size: 16px;
  display: none;
}

.text_join {
  text-align: center;
  margin: 12px auto;
  font-weight: 700;
  max-width: 480px;
  width: 100%;
  font-family: var(--body-font-2);
}

.btn_hub {
  display: block;
  margin: 0 auto;
}

.d-block {
  display: block;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices (min-width: 640px) */
@media (min-width: 640px) {
  .faq_box {
    margin: 4px auto;
  }
}

/* For medium devices (min-width: 768px) */
@media (min-width: 768px) {
  .one_content {
    grid-template-columns: 5fr 4fr;
  }
}

@media (min-width: 900px) {
  .two_fisrt-content {
    margin-inline: auto;
  }
}

@media (min-width: 960px) {
  .hero_content {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero_data {
    order: 1;
  }
  .six_testimoni {
    grid-template-columns: 1fr 2fr;
  }
  .six_testimoni-title {
    justify-self: right;
  }
  .six_testimoni-image {
    text-align: left;
  }
}

/* For large devices (min-width: 1024px) */
@media (min-width: 1280px) {
  .seven_container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For extra-large devices (min-width: 1280px) */
@media (min-width: 1280px) {
  .container {
    margin-inline: auto;
  }
  .five {
    background-color: transparent;
    background-image: url('/assets/images/Section\ 5/bg\ 5.png');
    background-position: center;
  }

  .six_box {
    border-right: 4px solid black;
  }

  .six_box:last-child {
    border-right: none;
  }
}

/* For 2K resolutions (2048 x 1152, 2048 x 1536) */
