:root {
  --white: #FFFFFF;
  --black: #232323;
  --bordo: #972B3E;
  --grey: #858585;
  --dark-grey-2: #636363;
  --biege: #DAD6CD;
  --brown: #958775;
}

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

#wpfooter {
  position: relative;
  z-index: -1;
}

body {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #F8F8F8;
  color: var(--dark);
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body.unavailable {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: none;
  -ms-touch-action: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

.no-scroll {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  max-width: 1248px;
  width: 100%;
  padding: 0 16px;
}

.container-dark {
  margin: 0 auto;
  max-width: 1360px;
  width: 100%;
  padding: 0 16px;
}

.container-privacy {
  margin: 0 auto;
  max-width: 624px;
  width: 100%;
  padding: 0 16px;
}

.loader {
  width: 15px;
  margin: 0 auto;
  margin: 40px auto 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: d5 1s infinite linear alternate;
}

@keyframes d5 {
  0% {
    box-shadow: 20px 0 #598D77, -20px 0 rgba(89, 141, 119, 0.2);
    background: #598D77;
  }
  33% {
    box-shadow: 20px 0 #598D77, -20px 0 rgba(89, 141, 119, 0.2);
    background: rgba(89, 141, 119, 0.2);
  }
  66% {
    box-shadow: 20px 0 rgba(89, 141, 119, 0.2), -20px 0 #598D77;
    background: rgba(89, 141, 119, 0.2);
  }
  100% {
    box-shadow: 20px 0 rgba(89, 141, 119, 0.2), -20px 0 #598D77;
    background: #598D77;
  }
}
.header {
  position: relative;
  z-index: 2;
  padding-top: 19px;
  padding-bottom: 19px;
  background: transparent;
}

.header-privacy {
  background: var(--white);
}
.header-privacy .nav-mobile {
  display: block;
}
@media (min-width: 1024px) {
  .header-privacy .nav-mobile {
    display: none;
  }
}

.nav-mobile {
  display: none;
}
@media (min-width: 1024px) {
  .nav-mobile {
    display: none;
  }
}

.nav-mobile-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav {
  display: none;
}
@media (min-width: 1024px) {
  .header-nav {
    display: block;
  }
}

.mobile_menu__btn {
  position: relative;
  width: 22px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile_menu__btn::before {
  content: "";
  width: 22px;
  height: 24px;
  background-image: url(../images/menu_closed.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.opened .mobile_menu__btn {
  height: 28px;
}
.opened .mobile_menu__btn::before {
  background-image: url(../images/menu_opened.svg);
}
.opened .cover {
  background: #000;
  opacity: 0.5;
  width: 100%;
  height: calc(100vh - 130px);
  position: absolute;
  z-index: 4;
  top: 130px;
  margin-left: -16px;
}
.opened .header-nav {
  display: block;
  position: relative;
  width: calc(100% + 32px);
  background: white;
  left: -16px;
  text-align: center;
  height: 100vh;
  padding-top: 70px;
}
.opened .header-nav .header__menu {
  display: block;
  position: absolute;
  top: 80px;
  background: #f3f5f7;
  width: 100%;
  margin-left: -16px;
  border-radius: 0 0 20px 20px;
  z-index: 5;
}
.opened .header-nav .header__menu ul {
  flex-direction: column;
  margin-top: 12px;
  margin-bottom: 12px;
}
.opened .header-nav .header__menu ul li {
  margin-bottom: 12px;
}

.nav-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .header__logo {
    margin-right: 101px;
  }
}

.header-navigation {
  margin-bottom: 100px;
}
.header-navigation li {
  margin-bottom: 30px;
}
.header-navigation a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 17px;
  color: var(--black);
}
@media (min-width: 1024px) {
  .header-navigation {
    display: flex;
    margin-bottom: 0;
  }
  .header-navigation li {
    margin-right: 32px;
    margin-bottom: 0;
  }
  .header-navigation li a {
    font-size: 14px;
    line-height: 17px;
    transition: 0.5s;
  }
  .header-navigation li a:hover {
    color: var(--bordo);
  }
}

@media (min-width: 1024px) {
  .header-app {
    margin-left: auto;
  }
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid var(--biege);
}
@media (min-width: 1024px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__content {
    flex-direction: row;
    text-align: inherit;
    justify-content: space-between;
  }
}

.footer__content-img {
  max-width: 119px;
  padding-bottom: 48px;
}
@media (min-width: 1024px) {
  .footer__content-img {
    padding-bottom: 0;
  }
}

.footer-navigation li {
  padding-bottom: 32px;
}
.footer-navigation li a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--black);
  text-decoration: none;
}
.footer-navigation li:last-child {
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .footer-navigation {
    display: flex;
  }
  .footer-navigation li {
    margin-right: 32px;
    padding-bottom: 0;
  }
  .footer-navigation li:last-child {
    margin-right: 0;
  }
}

.footer-apps {
  display: none;
}
@media (min-width: 1024px) {
  .footer-apps {
    display: flex;
  }
  .footer-apps a {
    margin-right: 16px;
  }
  .footer-apps a:last-child {
    margin-right: 0;
  }
}

h2 {
  font-family: "Source Serif Pro", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28.8px;
  color: var(--black);
  text-align: center;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 40px;
    line-height: 48px;
  }
}

.button-dark {
  min-width: 140px;
  display: inline-block;
  padding: 9px 17px 10px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: var(--white);
  background: var(--bordo);
  border: 1px solid var(--bordo);
  border-radius: 32px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}
.button-dark:hover {
  color: var(--bordo);
  background: transparent;
}

.button-lite {
  min-width: 140px;
  display: inline-block;
  padding: 9px 17px 10px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: var(--bordo);
  background: transparent;
  border: 1px solid var(--bordo);
  border-radius: 32px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}
.button-lite:hover {
  background: var(--bordo);
  color: var(--white);
}

.pop-up {
  align-items: center;
  -webkit-animation: fade 0.6s;
  animation: fade 0.6s;
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(20px);
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: hidden;
  padding: 50px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.active-pop-up {
  display: flex;
}

.container-pop-up {
  position: relative;
  width: 100%;
  max-width: 80%;
  max-height: 90vh;
  margin: 0 auto;
  padding-bottom: 44px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
}
@media all and (min-width: 768px) {
  .container-pop-up {
    max-width: 536px;
  }
}

.pop-up-content {
  position: relative;
  max-height: 80vh;
  padding: 44px 15px;
  overflow: auto;
}
@media all and (min-width: 768px) {
  .pop-up-content {
    padding: 44px 68px;
  }
}

.pop-up-title {
  margin-bottom: 40px;
  font-family: "Source Serif Pro", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
}

.pop-up-content .wpcf7 {
  position: relative;
  max-height: 390px;
}
.pop-up-content .wpcf7 .screen-reader-response {
  display: none;
}
.pop-up-content .wpcf7 .wpcf7-response-output {
  position: absolute;
  bottom: -168px;
  width: 100%;
  color: red;
  font-size: 14px;
  animation: hideresp 5s forwards;
  animation-iteration-count: 1;
}
@media all and (min-width: 460px) {
  .pop-up-content .wpcf7 .wpcf7-response-output {
    bottom: -160px;
  }
}
@media all and (min-width: 768px) {
  .pop-up-content .wpcf7 .wpcf7-response-output {
    margin-right: auto;
    margin-left: auto;
    bottom: -106px;
  }
}
@keyframes hideresp {
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.pop-up-content .wpcf7 form.invalid .wpcf7-response-output {
  position: relative;
  margin: 0 auto;
  bottom: 91px;
}
.pop-up-content .wpcf7 form.failed .wpcf7-response-output {
  margin: 0 auto;
}
.pop-up-content .wpcf7 .wpcf7-not-valid-tip {
  position: relative;
  top: -13px;
  font-size: 12px;
  color: var(--bordo);
}
.pop-up-content .wpcf7 label {
  color: var(--grey);
}
.pop-up-content .wpcf7 input, .pop-up-content .wpcf7 textarea {
  width: 100%;
  height: 48px;
  margin-top: 4px;
  margin-bottom: 16px;
  padding-left: 7px;
  padding-right: 7px;
  border: 1px solid var(--biege);
  border-radius: 8px;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.02em;
  color: var(--dark-grey-2);
}
.pop-up-content .wpcf7 input:focus, .pop-up-content .wpcf7 textarea:focus {
  background-color: white;
}
.pop-up-content .wpcf7 textarea {
  resize: none;
  width: 100%;
  height: 124px;
}
.pop-up-content .wpcf7 input[type=submit] {
  margin: 22px auto 0;
  max-width: 140px;
  display: block;
  color: var(--white);
  border: 1px solid var(--bordo);
  border-radius: 32px;
}
.pop-up-content .wpcf7 input[type=submit]:focus {
  border: 1px solid var(--bordo);
  color: var(--bordo);
}
.pop-up-content .wpcf7 input[type=submit]:hover {
  color: var(--bordo);
}
@media all and (min-width: 768px) {
  .pop-up-content .wpcf7 {
    max-height: 444px;
  }
}
.pop-up-content .wpcf7-spinner {
  display: none;
}

.close-popup {
  position: absolute;
  top: 16px;
  background-image: url(../images/menu_opened.svg);
  right: 20px;
  width: 12px;
  height: 12px;
  background-size: cover;
  cursor: pointer;
}

.home-hero {
  position: relative;
  padding-top: 80px;
  top: -80px;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 52px;
}
@media (min-width: 1024px) {
  .home-hero {
    padding-bottom: 0;
  }
}

.home-hero_content {
  display: flex;
  flex-direction: column;
}
.home-hero_content .home-hero_content-text {
  order: 1;
  text-align: left;
}
.home-hero_content .home-hero_content-text h1 {
  margin-bottom: 12px;
  font-family: "Source Serif Pro", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--black);
}
.home-hero_content .home-hero_content-text .home-hero_content-descr {
  margin-bottom: 32px;
}
.home-hero_content .home-hero_content-text p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
}
.home-hero_content .home-hero_links {
  display: flex;
  justify-content: left;
}
.home-hero_content .hero_link {
  display: block;
  height: 48px;
  padding-right: 10px;
}
.home-hero_content .hero_link-img {
  object-fit: cover;
}
.home-hero_content .home-hero_content-img {
  order: 0;
  margin: 0 auto 48px;
  text-align: center;
}
.home-hero_content .home-hero_content-img img {
  max-width: 376px;
}
@media (min-width: 1024px) {
  .home-hero_content {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .home-hero_content .home-hero_content-text {
    width: 50%;
    text-align: left;
  }
  .home-hero_content .home-hero_content-text h1 {
    margin-bottom: 8px;
    font-size: 48px;
  }
  .home-hero_content .home-hero_content-text .home-hero_content-descr {
    margin-bottom: 56px;
  }
  .home-hero_content .home-hero_content-text .home-hero_links {
    justify-content: left;
  }
  .home-hero_content .hero_link {
    padding-right: 24px;
  }
  .home-hero_content .home-hero_content-img {
    width: 50%;
    order: 1;
    margin-bottom: 0;
  }
}

.about {
  padding: 8px 0 88px;
}
.about .title {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .about .title {
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .about {
    padding-top: 40px;
    padding-bottom: 120px;
  }
}

.about-block__item {
  display: none;
}
.about-block__item:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-block__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 50px;
  }
  .about-block__item:first-child {
    flex-direction: row;
  }
}

.about-block__item-text .button-dark {
  min-width: 180px;
}
@media (min-width: 1024px) {
  .about-block__item-text {
    width: 50%;
  }
}

.about-block__item-title {
  margin-bottom: 8px;
  font-family: "Source Serif Pro", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--black);
}
@media (min-width: 1024px) {
  .about-block__item-title {
    font-size: 24px;
    line-height: 28.8px;
  }
}

.about-block__item-descr {
  max-width: 97%;
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey);
}

.about-block__item-image {
  margin-bottom: 50px;
}
.about-block__item-image img {
  max-width: 248px;
}
@media (min-width: 1024px) {
  .about-block__item-image {
    width: 50%;
    margin-bottom: 0;
    padding-right: 118px;
    text-align: right;
  }
}

.item-even .about-block__item-image {
  order: 1;
  padding-right: inherit;
  padding-left: 118px;
  text-align: left;
}

.sellers-inner {
  position: relative;
  padding: 24px 16px;
  background: #1A1511;
  border-radius: 36px;
  text-align: center;
}
.sellers-inner:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/BG-sellers.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 36px;
}
.sellers-inner .title {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  color: var(--white);
}
.sellers-inner .sellers-inner-descr {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--brown);
}
.sellers-inner .button-lite {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--black);
  transition: 0.5s;
}
.sellers-inner .button-lite:hover {
  background: linear-gradient(360deg, rgba(122, 91, 65, 0.5) 0%, rgba(83, 61, 44, 0.5) 100%), #383838;
  color: var(--white);
}
@media (min-width: 1024px) {
  .sellers-inner {
    padding: 48px 56px;
  }
}

.sellers-block {
  position: relative;
  margin-top: 48px;
  margin-bottom: 24px;
  text-align: center;
  z-index: 2;
}
@media (min-width: 1024px) {
  .sellers-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 56px;
  }
}

.sellers-block__item {
  margin-bottom: 16px;
  padding: 20px 16px;
  background: linear-gradient(0deg, #2D241D, #2D241D), #2F2F2F;
  border-radius: 12px;
  text-align: left;
}
@media (min-width: 576px) {
  .sellers-block__item {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .sellers-block__item {
    width: 48.7%;
    margin-bottom: 32px;
  }
}

.sellers-block__item-number {
  display: flex;
  justify-content: left;
  margin-bottom: 16px;
}
.sellers-block__item-number span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Source Serif Pro", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 26.4px;
  background: linear-gradient(360deg, rgba(122, 91, 65, 0.5) 0%, rgba(83, 61, 44, 0.5) 100%), #383838;
  color: var(--white);
  border-radius: 100px;
}
@media (min-width: 576px) {
  .sellers-block__item-number {
    margin-right: 32px;
    margin-bottom: 0;
  }
  .sellers-block__item-number span {
    width: 64px;
    height: 64px;
    font-size: 32px;
    line-height: 38px;
  }
}

.sellers-block__item-title {
  margin-bottom: 8px;
  font-family: "Source Serif Pro", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--white);
  text-align: left;
}
@media (min-width: 1024px) {
  .sellers-block__item-title {
    font-size: 24px;
    line-height: 29px;
  }
}

.sellers-block__item-descr p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--brown);
}
@media (min-width: 576px) {
  .sellers-block__item-descr {
    text-align: left;
  }
}

.faq {
  padding-top: 88px;
  padding-bottom: 64px;
  text-align: center;
}
@media (min-width: 1024px) {
  .faq {
    padding-top: 100px;
  }
}
@media (min-width: 1330px) {
  .faq {
    padding-top: 184px;
  }
}

.faq-descr {
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
  color: var(--grey);
  text-align: center;
}
@media (min-width: 1024px) {
  .faq-descr {
    margin-bottom: 48px;
    line-height: 25.6px;
  }
}

.faq-block {
  max-width: 967px;
  margin: 0 auto;
  text-align: left;
}

.faq_accordion_item {
  position: relative;
  margin-bottom: 24px;
  border-bottom: 1px solid #EBEBEB;
}

.faq_accordion_item.active .faq_question {
  font-size: 20px;
  line-height: 24px;
}
.faq_accordion_item.active .faq_plus:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 13px;
  right: 0;
  background-size: contain;
  background-image: url(../images/minus.svg);
}
@media (min-width: 1024px) {
  .faq_accordion_item.active .faq_plus:after {
    transition: 0.5s;
    top: 57px;
  }
}

.faq_question__wrap {
  cursor: pointer;
}

.faq_question {
  max-width: 92%;
  padding-top: 13px;
  padding-bottom: 13px;
  font-family: "Source Serif Pro", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 21.6px;
  color: var(--black);
}
@media (min-width: 1024px) {
  .faq_question {
    font-size: 20px;
    line-height: 24px;
  }
}

.faq_answer {
  padding-top: 10px;
  padding-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--dark-grey-2);
}
@media (min-width: 1024px) {
  .faq_answer {
    max-width: 84%;
  }
}

.faq_plus:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 13px;
  right: 0;
  background-image: url(../images/plus.svg);
  background-size: contain;
  cursor: pointer;
  transition: 0.5s;
}

.button-load {
  margin-top: 16px;
  min-width: 93px;
  display: inline-block;
  padding: 9px 16px 9px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: var(--dark-grey-2);
  background: #EDEDED;
  border: 1px solid #EDEDED;
  border-radius: 32px;
  text-decoration: none;
  transition: 0.5s;
}
.button-load:hover {
  color: #EDEDED;
  background: var(--bordo);
  border: 1px solid var(--bordo);
}
@media (min-width: 1024px) {
  .button-load {
    font-size: 14px;
    line-height: 21px;
  }
}

.download-section {
  position: relative;
  margin-bottom: 80px;
  padding-top: 56px;
  padding-bottom: 54px;
  background: #1A1511;
}
.download-section:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/BG-download-mob.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 36px;
}
@media (min-width: 768px) {
  .download-section:after {
    background-image: url(../images/BG-sellers.png);
  }
}
@media (min-width: 1024px) {
  .download-section {
    padding-top: 0;
    padding-bottom: 0;
    background: none;
    margin-bottom: 105px;
  }
  .download-section:after {
    background-image: none;
  }
}

.container-download {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .container-download {
    position: relative;
    flex-direction: row;
    align-items: center;
    background: #1A1511;
    border-radius: 36px;
  }
  .container-download:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../images/BG-sellers.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 36px;
  }
}

.download-left {
  order: 1;
  z-index: 1;
}
.download-left .title {
  margin-bottom: 12px;
  font-family: "Source Serif Pro", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
  color: var(--white);
  text-align: left;
}
.download-left .descr {
  margin-bottom: 32px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--biege);
}
.download-left .download_links {
  display: flex;
}
.download-left .download_link {
  display: block;
  height: 48px;
  padding-right: 10px;
}
.download-left .download_link-img {
  object-fit: cover;
}
@media (min-width: 1024px) {
  .download-left {
    width: 67%;
    order: 0;
    padding-left: 5%;
  }
  .download-left .title {
    margin-bottom: 8px;
    font-size: 40px;
    line-height: 48px;
  }
  .download-left .descr {
    font-size: 16px;
    line-height: 25.6px;
  }
}
@media (min-width: 1330px) {
  .download-left {
    padding-left: 111px;
  }
}

.download-right {
  text-align: center;
  margin-bottom: 48px;
  z-index: 1;
}
.download-right img {
  max-width: 300px;
}
@media (min-width: 1024px) {
  .download-right {
    width: 50%;
    max-height: 375px;
    margin-bottom: 0;
    overflow: hidden;
  }
}

.container-privacy {
  padding-top: 48px;
  padding-bottom: 60px;
}
@media (min-width: 1024px) {
  .container-privacy {
    padding-bottom: 120px;
  }
}

.privacy-title {
  margin-bottom: 24px;
  font-family: "Source Serif Pro", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}

.default-content {
  text-align: left;
}
.default-content h1, .default-content h2, .default-content h3, .default-content h4, .default-content h5, .default-content li, .default-content p {
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--black);
  text-align: left;
}
.default-content a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
}
