@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
@import url("https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/css/splide.min.css");
@font-face {
  font-family: "cocon";
  src: local("cocon"), url("fonts/Cocon-Regular-Font.otf") format("opentype");
}
.canvas {
  background-color: #F3F2F4;
  margin: -46px 0 0 0;
  min-height: 100vh;
}
@media (min-width: 1024px) {
  .canvas {
    margin: 63px 89px 84px;
    min-height: calc(100vh - 179px);
  }
}

.container {
  width: 100%;
  max-width: 1182px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

* {
  box-sizing: border-box;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.grid {
  display: grid;
}

.grid-col-2 {
  grid-template-columns: 100%;
}
@media (min-width: 768px) {
  .grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-col-3 {
  grid-template-columns: 100%;
}
@media (min-width: 768px) {
  .grid-col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-col-3 {
    grid-template-columns: repeat(3, 33.333333%);
  }
}
@media (min-width: 1280px) {
  .grid-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.title {
  margin: 0;
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
  font-family: "cocon";
  font-size: 28px;
}
@media (min-width: 768px) {
  .title {
    font-size: 38px;
  }
}

.title--small {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 21px;
}
@media (min-width: 768px) {
  .title--small {
    font-size: 26px;
  }
}

.title-left {
  text-align: left;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  padding-top: 100px;
}
/* body.home {
} */
@media (min-width: 768px) {
  body {
    padding-top: 154px;
  }
}

p {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

button {
  width: 100%;
  padding: 0;
  background: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

section {
  scroll-margin-top: 91px;
}
@media (min-width: 768px) {
  section {
    scroll-margin-top: 96px;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 5px;
  background-color: white;
  z-index: 99;
}
@media (min-width: 768px) {
  .nav {
    padding-top: 48px;
    padding-bottom: 20px;
  }
}
.admin-bar .nav {
  top: 32px;
}
.nav.nav--scrolled {
  padding-top: 5px;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .nav.nav--scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.nav .nav-menu__spacer {
  display: none;
}
@media (min-width: 768px) {
  .nav .nav-menu__spacer {
    display: block;
  }
}

.nav-menu__item {
  display: inline-block;
  padding: 8px;
  color: #E45056;
  font-weight: 600;
}

.nav-menu__socials {
  margin-left: 38px;
}

.nav-menu__socials-item {
  display: inline-block;
  width: 36px;
  padding: 8px;
}
.nav-menu__socials-item img {
  display: block;
}

.nav-menu__spacer {
  width: 4px;
  height: 4px;
  margin: 0 8px;
  border-radius: 50%;
  background-color: #96B7B9;
}

.hamburger {
  display: inline-block;
  width: auto;
  overflow: visible;
  margin: 0;
  padding: 15px;
  font: inherit;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #E45056;
}
.hamburger-inner::after, .hamburger-inner::before {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
}
.hamburger-inner::after {
  bottom: -10px;
}
.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
}
.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.is-active .hamburger-inner, .is-active .hamburger-inner::after, .is-active .hamburger-inner::before {
  background-color: #E45056;
}

.nav-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: calc(100vh - 91px);
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 30px;
  padding-right: 23px;
  background-color: white;
  transform: translateX(-100vw);
}
.is-active + .nav-menu {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .nav-menu {
    position: relative;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding-bottom: 0;
    padding-right: 0;
    transform: translateX(0);
  }
}

h1 {
  margin-top: 0;
  margin-bottom: 15px;
  font-family: "cocon";
  font-size: 28px;
}
@media (min-width: 480px) {
  h1 {
    font-size: 42px;
  }
}
@media (min-width: 768px) {
  h1 {
    margin-bottom: 32px;
    font-size: 66px;
  }
}

.hero {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 40% 60%;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero-left {
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-left {
    justify-content: flex-start;
    font-size: 22px;
    text-align: left;
  }
}
.hero-left p {
  max-width: 410px;
}

.hero-stores__item {
  margin-top: 16px;
}
.hero-stores__item:last-child {
  margin-left: 16px;
}
.hero-stores__item a, .hero-stores__item img {
  display: block;
}

.hero__lower {
  margin-top: 32px;
  color: #8C879F;
  font-size: 14px;
}

.hero-right {
  text-align: center;
}
@media (min-width: 768px) {
  .hero-right {
    text-align: right;
  }
}

.hero-apps {
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-apps {
    justify-content: flex-start;
  }
}

.tips {
  position: relative;
  z-index: 2;
}

.tips-content {
  background-color: #F2F2F0;
}

.tips-decor {
  display: block;
  width: 100%;
  height: auto;
}

.tip-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}

.tip-title {
  margin-bottom: 16px;
  font-family: "cocon";
  font-size: 29px;
  line-height: 35px;
}

.tip-content {
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.tip {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.reviews {
  position: relative;
  margin-top: -10px;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
  z-index: 1;
}

.reviews-decorator {
  position: absolute;
  right: 0;
  top: 0;
}

.reviews-single__content {
  font-size: 14px;
}

.reviews-single__content-inner {
  max-width: 256px;
  margin: 0 auto;
}

.reviews-single__name {
  font-family: "cocon";
  font-size: 12px;
  color: #8C879F;
}

.reviews-single__content-rating {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
}
.reviews-single__content-rating svg {
  position: relative;
  display: block;
  z-index: 1;
}

.reviews-single__content-rating-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #E45056;
  z-index: 0;
}

.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-text {
  max-width: 360px;
}

.about-content,
.about-image {
  text-align: center;
}
@media (min-width: 768px) {
  .about-content,
  .about-image {
    text-align: left;
  }
}

.about-content {
  align-items: center;
}
@media (min-width: 768px) {
  .about-content {
    align-items: flex-start;
  }
}

.features {
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: #F3F3F5;
}
@media (min-width: 768px) {
  .features {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}

.features-list__item {
  width: 100%;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D0E2E3;
}
.features-list__item:last-child {
  border-bottom: 0;
}
.features-list__item .title {
  color: #E45056;
}
.features-list__item.active .features-list__item-chevron {
  transform: rotate(180deg);
}
.features-list__item.active .features-list__item-chevron path {
  stroke: #2D2E2B;
}
.features-list__item.active .features-list__item-content {
  height: auto;
  padding-top: 16px;
}
.features-list__item.active .title {
  color: #2D2E2B;
}

.features-list__item-chevron path {
  stroke: #E45056;
}

.features-list__item-content {
  height: 0;
  overflow: hidden;
}

.subscribe {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .subscribe {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.subscribe-content {
  max-width: 900px;
  margin: 30px auto 20px;
}
@media (min-width: 768px) {
  .subscribe-content {
    margin: 90px auto 50px;
  }
}
@media (min-width: 1024px) {
  .subscribe-content {
    margin: 190px auto 100px;
  }
}

.subscribe-item {
  text-align: center;
}

.subscribe-title {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .subscribe-title {
    font-size: 44px;
  }
}

.subscribe-text {
  margin-bottom: 30px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .subscribe-text {
    font-size: 22px;
  }
}

.subscribe-btn {
  display: inline-block;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 400;
  color: white;
  background-color: #E45056;
  border-radius: 73px;
}
@media (min-width: 768px) {
  .subscribe-btn {
    padding: 20px 24px;
    font-size: 24px;
  }
}
.subscribe-btn, .subscribe-btn:hover {
  text-decoration: none;
}
.subscribe-btn:hover {
  background-color: #d62128;
}

.subscribe-item,
.subscribe-item__content {
  position: relative;
}

.subscribe-item__content {
  z-index: 1;
}

.subscribe-item__blob {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
@media (min-width: 768px) {
  .subscribe-item__blob {
    width: auto;
  }
}
.subscribe-item__blob svg {
  max-width: 100%;
}
@media (min-width: 768px) {
  .subscribe-item__blob svg {
    max-width: initial;
  }
}

@media (min-width: 768px) {
  .subscribe-item__blob--0 {
    margin-left: -10%;
  }
}

.faq {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .faq {
    margin-top: 80px;
  }
}

.faq-content {
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #F3F3F5;
}
@media (min-width: 768px) {
  .faq-content {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.faq-inner-content {
  max-width: 809px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .faq-inner-content {
    margin: 50px auto 0;
  }
}

.faq-list__item {
  max-width: 100%;
}

.footer {
  display: block;
  padding: 60px 0;
  background-color: #F3F3F5;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    text-align: left;
  }
}
.footer p {
  margin-bottom: 0;
}
.footer .nav-menu {
  position: relative;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  flex-direction: row;
  align-items: center;
  padding-bottom: 0;
  padding-right: 0;
  transform: translateX(0);
  background-color: transparent;
}

.footer-nav-menu__item {
  font-weight: normal;
}

.footer-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.thankyou {
  margin: 0 auto;
  max-width: 552px;
  padding: 60px 20px;
}
@media (min-width: 1024px) {
  .thankyou {
    padding: 98px 0;
  }
}

.thankyou-details {
  padding: 24px;
  background-color: white;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  font-size: 18px;
}

.thankyou-details__notice {
  background-color: #D7DAE1;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.thankyou-details__list {
  margin: 0 0 20px;
  padding: 0;
}

.thankyou-details__list-item {
  height: 60px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E6E7E9;
}
.thankyou-details__list-item span {
  font-weight: 600;
}

.thankyou-details__manage-subscription {
  font-family: "cocon";
  color: #E45056;
}

/*# sourceMappingURL=styles.css.map */
