@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --primary-color: #46ABA2;
  --secondary-color: #55C5B2;
  --text-color: #111827;
}

html {
  height: 100%;
}

body {
  background: #fff;
  height: 100%;
  color: var(--text-color, #000);

  font-weight: 500;
  font-size: 16px;
  font-family: 'Figtree', Arial, sans-serif;
  line-height: 1.5;

  text-rendering: optimizespeed;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;

  @media (min-width: 768px) {
    font-size: 18px;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.wrapper__main {
  flex-grow: 1;
}

.container-fluid {
  max-width: 1125px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}

a {
  text-decoration: none;

  &:hover {
    text-decoration: none;
  }
}

ul,
ol {
  list-style: none;
}

a:focus {
  outline: none;
}

/* ---------- Post Typography ---------- */
h1, .h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;

  @media (min-width: 576px) {
    font-size: 48px;
  }

  @media (min-width: 992px) {
    font-size: 64px;
    line-height: 1;
  }
}

h2, .h2 {
  font-size: 48px;
}

h3, .h3 {
  font-size: 32px;
}

h4, .h4 {
  font-size: 28px;
}

h5, .h5 {
  font-size: 12px;
}

h6, .h6 {
  font-size: 14px;
}

.rte,
.post-entry {
  line-height: 1.5;
}

.rte > *:not(:last-child),
.post-entry > *:not(:last-child) {
  margin: 0 0 15px;
}

.rte > *,
.post-entry > * {
  margin: 0 0 25px;
}

.rte > *:last-child,
.post-entry > *:last-child {
  margin-bottom: 0;
}

.rte h3,
.post-entry h3 {
  margin-bottom: 20px;
  margin-top: 40px;
}

.rte h2 + *,
.post-entry h2 + * {
  margin-top: 0;
}

.rte a:not([class]):visited,
.post-entry a:not([class]):visited {
  color: var(--text-color);
}

.rte a:not([class]):link,
.post-entry a:not([class]):link {
  color: var(--text-color);
  text-decoration: underline;
}

.rte a:not([class]):hover,
.post-entry a:not([class]):hover {
  color: var(--primary-color);
  text-decoration: none;
}

.rte a:not([class]):active,
.post-entry a:not([class]):active {
  color: var(--primary-color);
}

.rte strong,
.rte b,
.post-entry strong,
.post-entry b {
  font-weight: bold;
}

.rte em,
.rte i,
.post-entry em,
.post-entry i {
  font-style: italic;
}

.rte ul,
.post-entry ul {
  list-style: none;
}

.rte ul li,
.post-entry ul li {
  padding-left: 20px;
  position: relative;
}

.rte ul li:not(:first-child),
.post-entry ul li:not(:first-child) {
  margin-top: 7px;
}

.rte ul li::before,
.post-entry ul li::before {
  content: "·";
  color: var(--text-color);
  font-size: 36px;
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 0.7;
}

.rte ul ul,
.rte ul ul ul,
.post-entry ul ul,
.post-entry ul ul ul {
  margin: 7px 0 0;
}

.rte ol,
.post-entry ol {
  counter-reset: item-counter;
}

.rte ol > li,
.post-entry ol > li {
  counter-increment: item-counter;
}

.rte ol li,
.post-entry ol li {
  padding-left: 25px;
  position: relative;
}

.rte ol li:not(:first-child),
.post-entry ol li:not(:first-child) {
  margin-top: 7px;
}

.rte ol li::before,
.rte ol li::before,
.post-entry ol li::before {
  content: counter(item-counter) ". ";
  font-size: 18px;
  color: var(--text-color);
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.5;
}

.rte ol ol,
.rte ol ol ol,
.post-entry ol ol,
.post-entry ol ol ol {
  margin: 7px 0 0;
}

.rte ol ul,
.post-entry ol ul {
  /*color: #9a9a9a;*/
  margin-top: 20px;
}

.rte ol ul li,
.post-entry ol ul li {
  padding-left: 20px;
  font-weight: 400;
}

.rte ol ul li::before,
.post-entry ol ul li::before {
  content: "·";
  background: transparent;
  font-size: 36px;
  line-height: 0.7;
  color: var(--text-color);
  position: absolute;
  left: 0;
  top: 0;
}

.rte blockquote,
.post-entry blockquote {
  font-style: normal;
  color: var(--text-color);
  border-left: 3px solid var(--text-color);
  padding-left: 30px;
}

.rte blockquote > *,
.post-entry blockquote > * {
  margin: 0;
}

.rte blockquote cite,
.post-entry blockquote cite {
  display: block;
  margin-top: 10px;
}

.rte cite,
.post-entry cite {
  font-size: smaller;
  font-style: normal;
}

.rte figcaption,
.post-entry figcaption {
  color: #64748b;
  font-size: 14px;
  margin-top: 15px;
}

.rte mark,
.post-entry mark {
  background: yellow;
  padding: 2px 4px;
  border-radius: 3px;
}

.rte code,
.post-entry code {
  background-color: rgba(68, 68, 68, 0.2);
  padding: 2px 4px;
  border-radius: 3px;
}

.rte pre,
.post-entry pre {
  border: 1px solid rgba(68, 68, 68, 0.2);
  border-radius: 3px;
  padding: 20px;
  overflow-x: auto;
  background: #444;
  color: #fff;
}

.rte pre code,
.post-entry pre code {
  background: transparent;
}

.rte hr,
.post-entry hr {
  margin-bottom: 45px;
  margin-top: 45px;
  opacity: 0.3;
}

.rte img,
.post-entry img {
  max-width: 100%;
  display: block;
  height: auto;
}

.rte table,
.post-entry table {
  width: 100%;
  text-align: left;
  font-size: 16px;
  border-collapse: collapse;
}

.rte thead,
.post-entry thead {
  border-bottom: 1px solid #e6e6e6;
}

.rte tr:not(:first-child),
.post-entry tr:not(:first-child) {
  border-top: 1px solid #e6e6e6;
}

.rte tr:hover td,
.post-entry tr:hover td {
  background: #fafafa;
}

.rte th,
.rte td,
.post-entry th,
.post-entry td {
  padding: 10px;
}

.rte th,
.post-entry th {
  font-weight: bold;
}

.rte td,
.post-entry td {
  transition: all 0.3s;
}

.rte .float-left,
.post-entry .float-left {
  float: left;
  margin: 15px 15px 15px 0;
}

.rte .float-right,
.post-entry .float-right {
  float: right;
  margin: 15px 0 15px 15px;
}

.rte .callout,
.post-entry .callout {
  padding: 20px;
  background: #f0eedf;
  color: #110b04;
  position: relative;
  border-radius: 5px;
}
/* ---------- Post Typography ---------- */

/* ************ btn ************ */
.btn {
  background: #fff;
  color: var(--text-color);
  border: 2px solid #A6A6A6;
  display: inline-flex;
  align-items: center;
  padding: 11px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.1;
  cursor: pointer;
  user-select: none;
  outline: none;
  border-radius: 12px;
  white-space: nowrap;
  transition: all .3s ease-in-out;
  position: relative;

  @media(min-width: 768px) {
    font-size: 16px;
    padding: 14px;
  }

  @media(min-width: 992px) {
    padding: 14px 12px;
  }

  @media(min-width: 1200px) {
    padding: 14px;
  }
}

.btn__icon {
  width: 28px;
  height: 33px;
  flex: none;
  transition: color .3s linear;

  @media (min-width: 992px) {
    width: 40px;
    height: 48px;
  }
}

.btn__content {
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 10px;
  transition: color .3s linear;
}

.btn__subtitle {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;

  @media (min-width: 992px) {
    font-size: 14px;
  }

  @media (min-width: 1200px) {
    font-size: 16px;
  }
}

.btn__store {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.1px;

  @media (min-width: 992px) {
    font-size: 26px;
  }

  @media (min-width: 1200px) {
    font-size: 29px;
  }
}

.btn:hover {
  background: #000;
}

.btn:hover .btn__icon {
  color: #fff;
}

.btn:hover .btn__content {
  color: #fff;
}

.btn.btn-store--sm {
  padding: 9px 10px;
  border-radius: 8px;
}

.btn.btn-store--sm .btn__icon {
  width: 29px;
  height: 34px;
}

.btn.btn-store--sm.btn-store--app .btn__content {
  @media (min-width: 992px) {
    margin-left: 24px;
  }
}

.btn.btn-store--sm .btn__subtitle {
  font-size: 10px;
}

.btn.btn-store--sm .btn__store {
  font-size: 18px;
}

.btn.btn-store--sm.btn-store--google .btn__subtitle {
  font-size: 12px;
}

.btn-store--black {
  background: #000;
}

.btn-store--black .btn__icon {
  color: #fff;
}

.btn-store--black .btn__content {
  color: #fff;
}

.btn-store--black:hover {
  background: #fff;
}

.btn-store--black:hover .btn__icon {
  color: #000000;
}

.btn-store--black:hover .btn__content {
  color: var(--text-color);
}

.btn-store--app .btn__content {
  @media (min-width: 992px) {
    margin-left: 14px;
  }

  @media (min-width: 1200px) {
    margin-left: 31px;
  }
}

.btn-store--google .btn__content {
  @media (min-width: 992px) {
    margin-left: 14px;
  }
}

.btn-store--google .btn__subtitle {
  font-size: 14px;
  text-transform: uppercase;
  padding-left: 8px;

  @media (min-width: 992px) {
    font-size: 17px;
  }
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* ************ btn ************ */

/* ************ header ************ */
.header {
  padding: 10px 0;
  position: absolute;
  z-index: 101;
  top: 0;
  right: 0;
  left: 0;
  transition: padding .3s linear, backdrop-filter .3s linear, background-color .3s linear, box-shadow .3s linear;

  @media (min-width: 768px) {
    padding: 20px 0;
  }
}

.header__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
  column-gap: 25px;

  transition: all .3s linear;

  @media (min-width: 768px) {
    flex-direction: row;
  }

  @media (min-width: 992px) {
    column-gap: 64px;
  }
}

body.is-header-sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF8C;
  backdrop-filter: blur(10px);
  padding: 5px 0;
  box-shadow: 0 2px 18px 6px #6a41e314;
  @media (min-width: 768px) {

  }
}

body.is-header-sticky .header__main {
  @media (max-width: 767px) {
    flex-direction: row;
    column-gap: 15px;
  }
}

body.is-header-sticky .header__logo {
  @media (max-width: 767px) {
    max-width: 108px;
  }

  @media (max-width: 479px) {
    max-width: 58px;
  }
}

body.is-header-sticky .navbar__list {
  @media (max-width: 374px) {
    gap: 10px;
  }
}

body.is-header-sticky .navbar__link{
  @media (max-width: 374px) {
    font-size: 14px;
  }
}

body.is-header-sticky .download-section {
  /*padding-top: 50px;*/
}
/* ************ header ************ */

/* ************ logo ************ */
.logo {
  max-width: 108px;
  display: block;
  flex: none;

  @media (min-width: 768px) {
    max-width: 116px;
  }
}

.logo__img {
  width: 100%;
  height: auto;
  display: block;
}
/* ************ logo ************ */

/* ************ navbar ************ */
.navbar__list {
  display: flex;
  gap: 24px;
}

.navbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__item:hover .navbar__link {
  @media (min-width: 768px) {
    color: var(--primary-color);
  }

}

.navbar__item:hover .navbar__icon {
  color: var(--primary-color);
}

.navbar__link {
  font-size: 16px;
  color: var(--text-color);
  transition: color .3s linear;

  @media (min-width: 768px) {
    font-size: 20px;
  }
}

.navbar__link.is-active {
  color: var(--primary-color);
}

.navbar__icon {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--text-color);
  transition: color .3s linear;
}
/* ************ navbar ************ */

/* ************ section-header ************ */
.section-header {
  margin-bottom: 25px;

  @media (min-width: 992px) {
    margin-bottom: 30px;
  }
}

.section-header__subtitle {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 5px;
  font-size: 16px;

  @media (min-width: 992px) {
    font-size: 18px;
  }
}

.section-header__heading {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;

  @media (min-width: 768px) {
    font-size: 48px;
  }
}
/* ************ section-header ************ */

/* ************ download-section ************ */
.download-section {
  overflow: hidden;
  padding-top: 100px;

  @media (min-width: 768px) {
    padding-top: 60px;
  }

  @media (min-width: 992px) {
    padding-top: 100px;
  }
}

.download-section__main {
  display: flex;
  flex-direction: column;
  position: relative;

  @media (min-width: 768px) {
    flex-direction: row;
  }
}

.download-section__info {
  width: 100%;
  padding-top: 40px;

  @media (min-width: 768px) {
    max-width: 618px;
    padding-top: 105px;
  }
}

.download-section__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;

  @media (min-width: 576px) {
    font-size: 48px;
    margin-bottom: 24px;
  }

  @media (min-width: 992px) {
    font-size: 58px;
    line-height: 1;
  }
}

.download-section__desc-wrap {
  @media (min-width: 768px) {
    max-width: 548px;
  }
}

.download-section__desc:not(:last-child) {
  margin-bottom: 10px;
}

.download-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;

  @media (min-width: 768px) {
    max-width: 500px;
    margin-top: 40px;
  }

  @media (min-width: 992px) {
    gap: 20px;
  }
}

.download-section__btn {
  flex: 1;
}

.download-section__preview-wrap {
  flex: none;
  margin-left: -35px;
  margin-right: -100px;

  @media (min-width: 576px) {
    margin-left: 0;
    margin-right: -50px;
  }

  @media (min-width: 768px) {
    max-width: 520px;
    margin-right: -200px;
    margin-top: 0;
  }

  @media (min-width: 992px) {
    max-width: 716px;
    margin-top: -40px;
  }
}

.download-section__preview {
  width: 100%;
  height: auto;
  display: block;
}
/* ************ download-section ************ */

/* ************ features-section ************ */
.features-section {
  position: relative;
  overflow: hidden;

  padding-top: 40px;
  margin-top: -90px;

  @media (min-width: 768px) {
    margin-top: 0;
  }

  @media (min-width: 992px) {
    margin-top: -120px;
    /*margin-top: -140px;*/
  /*  padding: 40px 0;*/
  }
}

.features-section__main {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));

  @media (min-width: 768px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));

  }
}

.features-section__preview-wrap {
  width: 160%;
  transform: translateX(-18%);
  order: 1;

  @media (min-width: 480px) {
    transform: none;
    width: 100%;
  }

  @media (min-width: 768px) {
    order: -1;
    width: 105%;
    margin-left: -30px;
  }
}

.features-section__preview {
  width: 100%;
  height: auto;
  display: block;
}

.features-section__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 15px;

  @media (min-width: 576px) {
    padding-left: 40px;
  }

  @media (min-width: 768px) {
    padding-left: 20px;
  }

  @media (min-width: 992px) {
    padding-left: 40px;
  }
}

.features-section__item:not(:last-child) {
  margin-bottom: 24px;

  @media (min-width: 992px) {
    margin-bottom: 30px;
  }
}

.features-section__title-wrap {
  display: flex;
  margin-bottom: 8px;

  @media (min-width: 992px) {
    margin-bottom: 12px;
  }
}

.features-section__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;

  @media (min-width: 992px) {
    font-size: 18px;
  }
}

.features-section__icon {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 4px;
  margin-right: 10px;
}

.features-section__desc {
  text-transform: capitalize;
}
/* ************ features-section ************ */

/* ************ testimonial-section ************ */
.testimonial-section {
  padding-top: 40px;
  margin-top: -40px;

  @media (min-width: 768px) {
    margin-top: 0;
  }
}

.testimonial-section__header {
  margin-bottom: 30px;
  max-width: 455px;

  @media (min-width: 992px) {
    margin-bottom: 55px;
  }
}

.testimonial-section__content {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 8px;

  @media (min-width: 768px) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
/* ************ testimonial-section ************ */

/* ************ testimonial-card ************ */
.testimonial-card {
  padding: 20px;
  border-radius: 16px;
  background: #E8FFFB;
}

.testimonial-card__top {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  align-items: center;
}

.testimonial-card__img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary-color);
}

.testimonial-card__rating {
  margin-bottom: 12px;
  margin-left: -5px;
}

.testimonial-card__user-name {
  font-size: 18px;
  display: flex;
  flex-direction: column;
}

.testimonial-card__desc {
  font-size: 18px;
  text-transform: capitalize;
}
/* ************ testimonial-card ************ */

/* ************ rating ************ */
.rating {
  position: relative;
  display: inline-flex;
}

.rating__active,
.rating__inactive {
  background-repeat: repeat-x;
  background-size: 39px 26px;
  background-position: left center;
}

.rating__inactive {
  width: 188px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='25' viewBox='0 0 26 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.1359 1.48359C12.5216 0.82132 13.4784 0.821321 13.8641 1.48359L17.3042 7.38978C17.4455 7.63239 17.6822 7.80441 17.9566 7.86383L24.6368 9.3104C25.3858 9.4726 25.6815 10.3825 25.1708 10.954L20.6167 16.0508C20.4297 16.2602 20.3392 16.5385 20.3675 16.8179L21.056 23.6181C21.1332 24.3806 20.3592 24.943 19.6579 24.6339L13.4032 21.8777C13.1463 21.7645 12.8537 21.7645 12.5968 21.8777L6.34212 24.6339C5.64078 24.943 4.86675 24.3806 4.94396 23.6181L5.63247 16.8179C5.66076 16.5385 5.57032 16.2602 5.38325 16.0508L0.829159 10.954C0.318505 10.3825 0.614158 9.4726 1.36321 9.3104L8.04337 7.86383C8.31776 7.80441 8.55454 7.63239 8.69584 7.38978L12.1359 1.48359Z' fill='%23C0F8E9FF'/%3E%3C/svg%3E%0A");
}

.rating__active {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='25' viewBox='0 0 26 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.1359 1.48359C12.5216 0.82132 13.4784 0.821321 13.8641 1.48359L17.3042 7.38978C17.4455 7.63239 17.6822 7.80441 17.9566 7.86383L24.6368 9.3104C25.3858 9.4726 25.6815 10.3825 25.1708 10.954L20.6167 16.0508C20.4297 16.2602 20.3392 16.5385 20.3675 16.8179L21.056 23.6181C21.1332 24.3806 20.3592 24.943 19.6579 24.6339L13.4032 21.8777C13.1463 21.7645 12.8537 21.7645 12.5968 21.8777L6.34212 24.6339C5.64078 24.943 4.86675 24.3806 4.94396 23.6181L5.63247 16.8179C5.66076 16.5385 5.57032 16.2602 5.38325 16.0508L0.829159 10.954C0.318505 10.3825 0.614158 9.4726 1.36321 9.3104L8.04337 7.86383C8.31776 7.80441 8.55454 7.63239 8.69584 7.38978L12.1359 1.48359Z' fill='%2351BFA8'/%3E%3C/svg%3E%0A");
}
/* ************ rating ************ */

/* ************ offer-section ************ */
.offer-section {
  padding-top: 40px;

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

  @media (min-width: 992px) {
    padding-top: 120px;
  }
}

.offer-section__main {
  display: flex;
  padding: 45px 16px;
  background: #000;
  position: relative;
  overflow: hidden;
  min-height: 510px;
  border-radius: 8px;
  flex-direction: column;
  margin: 0 -15px;

  @media (min-width: 768px) {
    flex-direction: row;
    margin: auto;
  }

  @media (min-width: 992px) {
    padding: 45px 80px;
  }
}

.offer-section__main::before,
.offer-section__main::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
}

.offer-section__main::before {
  background-image: url("../images/decor-1.svg");

  width: 380px;
  height: 345px;
  bottom: 160px;
  left: -90px;

  @media (min-width: 768px) {
    bottom: -145px;
  }

  @media (min-width: 992px) {
    bottom: -120px;
  }
}

.offer-section__main::after {
  background-image: url("../images/decor-2.svg");
  width: 360px;
  height: 391px;
  bottom: 10px;
  right: -90px;

  @media (min-width: 768px) {
    top: -140px;
    right: 0;
  }
}

.offer-section__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: none;
  z-index: 1;

  @media (min-width: 480px) {
    align-items: center;
  }

  @media (min-width: 768px) {
    max-width: 360px;
    align-items: flex-start;
  }

  @media (min-width: 992px) {
    max-width: 487px;
  }
}

.offer-section__header {
  margin-bottom: 15px;
}

.offer-section__header .section-header__heading {
  color: #fff;
}

.offer-section__desc {
  font-size: 16px;
  color: #fff;

  @media (min-width: 480px) {
    text-align: center;
  }

  @media (min-width: 768px) {
    text-align: start;
  }

  @media (min-width: 992px) {
    font-size: 18px;
  }
}

.offer-section__buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 10px;
  max-width: 356px;
  width: 100%;

  @media (min-width: 992px) {
    margin-top: 40px;
    gap: 20px;
  }
}

.offer-section__btn {
  flex: 1;
}

.offer-section__preview-wrap {
  max-width: 665px;
  width: 155%;
  transform: translateX(-11%);
  margin: 0 auto;
  z-index: 1;

  @media (min-width: 480px) {
    width: 100%;
    transform: translateX(50px);
  }

  @media (min-width: 768px) {
    transform: none;
    position: absolute;
    bottom: -110px;
    right: -160px;
    max-width: 570px;
  }

  @media (min-width: 850px) {
    bottom: -200px;
    max-width: 640px;
  }

  @media (min-width: 992px) {
    max-width: 700px;
    bottom: -240px;
    right: -240px;
  }

  @media (min-width: 1100px) {
    right: -150px;
  }
}

.offer-section__preview {
  width: 100%;
  height: auto;
  display: block;
}
/* ************ offer-section ************ */

/* ************ footer ************ */
.footer {
  padding: 35px 0;

  @media (min-width: 768px) {
    padding: 65px 0 35px;
  }
}

.footer .navbar__link {
  font-size: 16px;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 15px;

  @media (min-width: 480px) {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
  }

  @media (min-width: 768px) {
    gap: 25px;
  }

  @media (min-width: 992px) {
    gap: 55px;
  }
}

.footer__disclaimer {
  font-size: 12px;
  padding-top: 15px;
}

.footer__disclaimer *:not(:last-child) {
  margin-bottom: 10px;
}

.footer__navbar .navbar__list {
  gap: 25px;
  flex-direction: column;

  @media (min-width: 480px) {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
/* ************ footer ************ */

/* ************ privacy-section and terms-section ************ */
.privacy-section,
.terms-section {
  padding-top: 120px;
}
/* ************ privacy-section and terms-section ************ */