* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
@media only screen and (min-width: 2560px) {
  html {
    font-size: 12px;
  }
}
@media only screen and (min-width: 3360px) {
  html {
    font-size: 14px;
  }
}
@media only screen and (min-width: 3840px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.87);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 300;
  position: relative;
}

.noscroll {
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 200;
}

.side-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.38);
  overflow: hidden;
  transition: 0.5s;
  z-index: 100;
}
@media only screen and (min-width: 1024px) {
  .side-nav {
    display: none;
  }
}
.side-nav .nav-content {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.side-nav .nav-content .header {
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.4rem;
}
@media only screen and (min-width: 600px) {
  .side-nav .nav-content .header {
    height: 8.8rem;
  }
}
.side-nav .nav-content .mobile-menu-container {
  padding: 0.8rem 0;
}
.side-nav .nav-content .mobile-menu-container a {
  height: 5.6rem;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 2.4rem;
  gap: 1.6rem;
  font-size: 1.6rem;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.87);
  line-height: 2.4rem;
}
.side-nav .nav-content .mobile-menu-container a:hover {
  background-color: #FFEE88;
  color: #FFE382;
}
.side-nav .nav-content .mobile-menu-container .language-container a {
  width: 100%;
  display: flex;
  padding-left: 6.4rem;
  padding-right: 2.4rem;
  justify-content: space-between;
}
.side-nav .nav-content .mobile-menu-container .language-container a img {
  display: none;
  margin: 0.8rem;
}
.side-nav .nav-content .mobile-menu-container .language-container a.selected-language {
  background-color: #FFEE88;
  color: #ED9455;
}
.side-nav .nav-content .mobile-menu-container .language-container a.selected-language img {
  display: block;
}

.side-nav.open {
  right: 0;
}

header {
  position: sticky;
  top: 0;
  height: 5.6rem;
  padding: 0 2.4rem;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
  z-index: 10;
}
@media only screen and (min-width: 600px) {
  header {
    height: 8.8rem;
  }
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
  height: 3.2rem;
  width: auto;
}

.logo img {
  height: 3.2rem;
  width: auto;
}
@media only screen and (min-width: 600px) {
  .logo img {
    height: 4rem;
  }
}

.menu-container {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
@media only screen and (min-width: 1024px) {
  .menu-container {
    display: flex;
  }
}
.menu-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  line-height: 4rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  border-radius: 0.8rem;
}
.menu-container a:hover {
  background-color: #FFEE88;
  color: #ED9455;
}
.menu-container a:hover .lang-icon-hover {
  display: block;
}
.menu-container a:hover .lang-icon {
  display: none;
}
.menu-container a img {
  width: 2.4rem;
  height: 2.4rem;
}
.menu-container a .lang-icon-hover {
  display: none;
}
.menu-container .dropdown {
  position: relative;
  display: inline-block;
}
.menu-container .dropbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: "Poppins", sans-serif;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  line-height: 4rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  border-radius: 0.8rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.menu-container .dropbtn:hover {
  background-color: #FFEE88;
  color: #ED9455;
}
.menu-container .dropbtn:hover .lang-icon-hover {
  display: block;
}
.menu-container .dropbtn:hover .lang-icon {
  display: none;
}
.menu-container .dropbtn img {
  width: 2.4rem;
  height: 2.4rem;
}
.menu-container .dropbtn .lang-icon-hover {
  display: none;
}
.menu-container .dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #ffffff;
  border-radius: 0.8rem;
  min-width: 160px;
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.16);
  z-index: 1;
  padding: 0.8rem 0;
}
.menu-container .dropdown-content a {
  color: rgba(0, 0, 0, 0.87);
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: normal;
  text-decoration: none;
  display: block;
  border-radius: 0;
}
.menu-container .dropdown-content a:hover {
  background-color: #FFEE88;
  color: #ED9455;
}
.menu-container .dropdown:hover .dropdown-content {
  display: block;
}

.menu-icon {
  width: 4rem;
  height: 4rem;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.menu-icon:hover {
  background-color: #FFEE88;
}
@media only screen and (min-width: 1024px) {
  .menu-icon {
    display: none;
  }
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 4rem 2.4rem;
  scroll-margin-block-start: 5.6rem;
}
@media only screen and (min-width: 600px) {
  section {
    scroll-margin-block-start: 8.8rem;
    padding: 8rem 2.4rem;
  }
}
section .content-container {
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
@media only screen and (min-width: 600px) {
  section .content-container {
    max-width: 64rem;
    gap: 8rem;
  }
}
@media only screen and (min-width: 1280px) {
  section .content-container {
    max-width: 102.4rem;
    gap: 8rem;
  }
}
section .content-container .header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  section .content-container .header {
    gap: 1.6rem;
  }
}
section .content-container .header .title {
  font-size: 3.2rem;
  line-height: 4.8rem;
  font-weight: 200;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  section .content-container .header .title {
    font-size: 4rem;
    line-height: 5.6rem;
  }
}
section .content-container .header .subtitle {
  font-weight: 300;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: rgba(0, 0, 0, 0.87);
}
section .content-container .header .subtitle a {
  text-decoration: none;
  color: #FFE382;
}
@media only screen and (min-width: 600px) {
  section .content-container .header .subtitle {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}

.button {
  width: -moz-fit-content;
  width: fit-content;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  padding: 0 4.8rem;
  border-radius: 2.4rem;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ED9455;
}
.button:hover {
  background-color: #FFBB70;
}

.small-circle, .medium-circle, .big-circle {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  position: absolute;
  z-index: 0;
}

.small-circle {
  width: 4rem;
  height: 4rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 600px) {
  .small-circle {
    width: 8rem;
    height: 8rem;
  }
}

.medium-circle.one {
  width: 6rem;
  height: 6rem;
  top: 0;
  left: 25%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 600px) {
  .medium-circle.one {
    width: 12rem;
    height: 12rem;
  }
}

.medium-circle.two {
  width: 6rem;
  height: 6rem;
  bottom: 0;
  right: 25%;
  transform: translate(50%, 50%);
}
@media only screen and (min-width: 600px) {
  .medium-circle.two {
    width: 12rem;
    height: 12rem;
  }
}

.big-circle.one {
  width: 12rem;
  height: 12rem;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}
@media only screen and (min-width: 600px) {
  .big-circle.one {
    width: 24rem;
    height: 24rem;
  }
}

.big-circle.two {
  width: 12rem;
  height: 12rem;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
@media only screen and (min-width: 600px) {
  .big-circle.two {
    width: 24rem;
    height: 24rem;
  }
}

#hero {
  width: 100%;
  background: RGBA(255, 210, 102, 0);
  background: linear-gradient(180deg, rgba(255, 210, 102, 0) 0%, rgba(255, 210, 102, 0.2) 100%);
}
@media only screen and (min-width: 1024px) {
  #hero .content-container {
    flex-direction: row;
    gap: 4rem;
  }
}
#hero .column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
@media only screen and (min-width: 600px) {
  #hero .column {
    align-items: flex-start;
  }
}
#hero .title {
  font-size: 4rem;
  font-weight: 200;
  line-height: 5.6rem;
  text-align: center;
  color: #ED9455;
}
@media only screen and (min-width: 600px) {
  #hero .title {
    font-size: 4.8rem;
    line-height: 6.4rem;
    text-align: start;
  }
}
#hero .subtitle {
  font-weight: normal;
  text-align: center;
  color: #ED9455;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: normal;
}
@media only screen and (min-width: 600px) {
  #hero .subtitle {
    font-size: 2rem;
    line-height: 3.2rem;
    text-align: start;
  }
}
#hero .hero-image {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 600px) {
  #hero .hero-image {
    width: 48rem;
  }
}

.motivation-cta {
  position: relative;
  background-color: #FFE382;
  overflow: hidden;
}
.motivation-cta .content-container {
  gap: 1.6rem;
}
.motivation-cta img {
  width: 24rem;
  height: auto;
}
@media only screen and (min-width: 600px) {
  .motivation-cta img {
    width: 36rem;
  }
}
.motivation-cta h5 {
  font-size: 1.6rem;
  font-weight: 500;
  color: #ED9455;
  text-transform: uppercase;
}
@media only screen and (min-width: 600px) {
  .motivation-cta h5 {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}

ul {
  padding-inline-start: 2.4rem;
  margin-block-start: 0;
  margin-block-end: 0;
}
ul li {
  padding-bottom: 0.8rem;
}
@media only screen and (min-width: 600px) {
  ul li {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}

.feature .content-container .header .title {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 3.2rem;
}
.feature img {
  width: 24rem;
  border-radius: 1.6rem;
}
@media only screen and (min-width: 600px) {
  .feature img {
    width: 36rem;
  }
}

@media only screen and (min-width: 600px) {
  .feature:nth-child(odd) .content-container {
    flex-direction: row-reverse;
    gap: 4rem;
  }
  .feature:nth-child(odd) .content-container .header {
    align-items: flex-start;
  }
  .feature:nth-child(odd) .content-container .title, .feature:nth-child(odd) .content-container .subtitle {
    text-align: start;
  }
  .feature:nth-child(odd) .content-container .title {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  .feature:nth-child(odd) .content-container .subtitle {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}

@media only screen and (min-width: 600px) {
  .feature:nth-child(even) .content-container {
    flex-direction: row;
    gap: 4rem;
  }
  .feature:nth-child(even) .content-container .header {
    align-items: flex-start;
  }
  .feature:nth-child(even) .content-container .title, .feature:nth-child(even) .content-container .subtitle {
    text-align: start;
  }
  .feature:nth-child(even) .content-container .title {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  .feature:nth-child(even) .content-container .subtitle {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}

.feature.one {
  background: RGBA(255, 210, 102, 0);
  background: linear-gradient(180deg, rgba(255, 210, 102, 0) 0%, rgba(255, 210, 102, 0.2) 100%);
}
.feature.one img {
  box-shadow: 0 1.2rem 2.4rem rgba(237, 148, 85, 0.16);
}

.feature.two img {
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.16);
}

.feature.three {
  background: RGBA(255, 210, 102, 0);
  background: linear-gradient(0deg, rgba(255, 210, 102, 0) 0%, rgba(255, 210, 102, 0.2) 100%);
}
.feature.three img {
  box-shadow: 0 1.2rem 2.4rem rgba(237, 148, 85, 0.16);
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media only screen and (min-width: 600px) {
  .testimonials-container {
    gap: 2.4rem;
  }
}

.testimonial {
  display: flex;
  gap: 1.6rem;
  padding: 1.6rem;
  border-radius: 1.6rem;
  border: 0.4rem solid rgba(237, 148, 85, 0.2);
}
@media only screen and (min-width: 600px) {
  .testimonial {
    gap: 2.4rem;
    padding: 2.4rem;
  }
}
.testimonial .column {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media only screen and (min-width: 600px) {
  .testimonial .column {
    gap: 2.4rem;
  }
}
.testimonial .avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
}
@media only screen and (min-width: 600px) {
  .testimonial .avatar {
    width: 6.4rem;
    height: 6.4rem;
  }
}
.testimonial .name {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4rem;
}

#download {
  overflow: clip;
  position: relative;
  background-color: #FFE382;
}
#download .content-container {
  gap: 1.6rem;
}
@media only screen and (min-width: 600px) {
  #download .content-container {
    gap: 4rem;
  }
}
#download .header {
  gap: 0;
}
#download .header h5 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 300;
  text-transform: uppercase;
}
@media only screen and (min-width: 600px) {
  #download .header h5 {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}
#download .header h2 {
  font-size: 4rem;
  line-height: 5.6rem;
  font-weight: 200;
}
@media only screen and (min-width: 600px) {
  #download .header h2 {
    font-size: 4.8rem;
    line-height: 6.4rem;
  }
}
#download .row {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media only screen and (min-width: 600px) {
  #download .row {
    gap: 2.4rem;
  }
}
#download .app-store-btn, #download .google-play-btn {
  display: block;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 0;
  text-decoration: none;
}
#download .app-store-btn img, #download .google-play-btn img {
  height: 4rem;
}
@media only screen and (min-width: 600px) {
  #download .app-store-btn img, #download .google-play-btn img {
    height: 5.6rem;
  }
}
#download .app-store-btn img.hover, #download .google-play-btn img.hover {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
#download .app-store-btn:hover img.hover, #download .google-play-btn:hover img.hover {
  visibility: visible;
}

#faq .column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
#faq .question {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  border-radius: 1.6rem;
  gap: 2.4rem;
  border: 0.4rem solid rgba(237, 148, 85, 0.2);
  cursor: pointer;
}
#faq .question.expanded h5 {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
}
#faq .row {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
#faq .row h5 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: rgba(0, 0, 0, 0.54);
  font-weight: 300;
  flex: 1;
}
@media only screen and (min-width: 600px) {
  #faq .row h5 {
    font-size: 2rem;
  }
}
#faq .row .icon {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/expand.png) center center no-repeat;
  background-size: 2.4rem 2.4rem;
}
#faq .row .icon.expanded {
  background: url(../images/collapse.png) center center no-repeat;
  background-size: 2.4rem 2.4rem;
}
#faq p {
  display: none;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.54);
  font-weight: 400;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem 2.4rem;
  gap: 0.8rem;
  font-size: 1.4rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.54);
  background-color: #FFE382;
}
@media only screen and (min-width: 600px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
footer .links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
@media only screen and (min-width: 600px) {
  footer .links {
    width: auto;
  }
}
footer .links a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.87);
  background-color: #FFE382;
}/*# sourceMappingURL=style.css.map */