@charset "UTF-8";

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 360px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "Montserrat";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  overflow-x: hidden;
  background-color: #F3F3F3;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 7.5rem;
}

body::after {
  content: "";
  background: rgba(228, 228, 228, 0.5);
  -webkit-backdrop-filter: blur(17px);
          backdrop-filter: blur(17px);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #fff;
  padding: 30px 40px;
  width: 100%;
  max-width: 660px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.popup__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.popup__title {
  color: #222;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.64px;
  margin-right: 50px;
}

.popup__close {
  padding: 15px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.popup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.popup__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
  width: 100%;
}

.popup__input {
  padding: 14px 10px;
  border-radius: 5px;
  border: 1px solid #CFCFCF;
  color: #000;
  width: 100%;
}

.popup__input::-webkit-input-placeholder {
  color: #CFCFCF;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.32px;
}

.popup__input::-moz-placeholder {
  color: #CFCFCF;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.32px;
}

.popup__input:-ms-input-placeholder {
  color: #CFCFCF;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.32px;
}

.popup__input::-ms-input-placeholder {
  color: #CFCFCF;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.32px;
}

.popup__input::placeholder {
  color: #CFCFCF;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.32px;
}

.popup__form-btn {
  width: 100% !important;
  max-width: 445px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-radius: 100px;
}

.popup__form-link {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  text-decoration-line: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

.popup__form-link:hover {
  color: #E70E66;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

.popup__sign-up .popup__content {
  max-width: 830px;
}

.popup__check {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.checkbox__input {
  opacity:0;position: absolute;width:1px;height:1px;
}

.checkbox__input:checked + .checkbox__label::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox__label {
  font-size: 16px;
  line-height: 140%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  width: 100%;
}

.checkbox__label span {
  color: rgba(34, 34, 34, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.checkbox__label::before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
  height: 25px;
  background-color: transparent;
  border: 1px solid rgba(34, 34, 34, 0.5);
  border-radius: 3px;
  margin: 0px 10px 0px 0px;
}

.checkbox__label::after {
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  content: "";
  width: 23px;
  height: 23px;
  position: absolute;
  top: 1px;
  left: 1px;
  background-color: rgb(128, 207, 255);
  border-radius: 3px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.checkbox__label a {
  color: rgb(128, 207, 255);
}

.popup__form--agree {
  margin: 0;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.btn {
  color: #fff;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.32px;
  padding: 11px 46px;
  border-radius: 20px;
  border: 1px solid #E70E66;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  min-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-accent {
  background: #E70E66;
}

.btn-accent:hover {
  background-color: #BE004D;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.btn-transparent {
  color: #E70E66;
}

.btn-transparent:hover {
  background: #E70E66;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  color: #fff;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 20px;
  border-radius: 20px;
  background-color: #fff;
  min-height: 34px;
}

.suptitle {
  color: #A4A4A4;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.42px;
  margin-bottom: 5px;
}

.title {
  color: #000;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.26px;
  margin-bottom: 12px;
}

.text {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.32px;
  color: rgb(71, 71, 71);
  margin-bottom: 23px;
}

.text span {
  color: #E70E66;
}

._anim-show--up {
  -webkit-transform: translate(0px, 100px);
      -ms-transform: translate(0px, 100px);
          transform: translate(0px, 100px);
  opacity: 0;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

._anim-show--up._active,
._active ._anim-show--up {
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}

._anim-show--left {
  -webkit-transform: translate(-120%, 0px);
      -ms-transform: translate(-120%, 0px);
          transform: translate(-120%, 0px);
  opacity: 0;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

._anim-show--left._active,
._active ._anim-show--left {
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}

._anim-show--right {
  -webkit-transform: translate(120%, 0px);
      -ms-transform: translate(120%, 0px);
          transform: translate(120%, 0px);
  opacity: 0;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

._anim-show--right._active,
._active ._anim-show--right {
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
}

.header {
  padding: 15px 40px;
  position: relative;
  z-index: 99;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 16px;
  border-radius: 20px;
  background-color: #fff;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.8);
}

.footer__logo {
  margin-right: 20px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: rgba(34, 34, 34, 0.5);
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.32px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

.footer__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  opacity: 0;
}

.footer__link:hover {
  color: #000;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.footer__link:hover::after {
  opacity: 1;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.intro {
  margin-top: -40px;
}

.intro__inner {
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  padding-bottom: 59%;
  border-radius: 20px;
  position: relative;
  min-height: 635px;
  overflow: hidden;
}

.intro__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
}

.intro__inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.intro__content {
  position: absolute;
  z-index: 1;
  bottom: 28px;
  left: 40px;
  background-color: #fff;
  border-radius: 20px;
  max-width: 525px;
}

.intro__content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}

.intro__content-icon {
  width: 25px;
  height: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
}

.no-webp .users__inner{
  background-image: url(../img/section-users/users-bg.jpg); }

.users__inner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 35%;
  border-radius: 20px;
  position: relative;
  min-height: 585px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.users__content {
  text-align: center;
  position: absolute;
  top: 53%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 15px;
}

.users__title {
  max-width: 725px;
}

.users__deco {
  position: absolute;
}

.users__deco--1 {
  top: 55px;
  left: 215px;
  width: 50px;
}

.users__deco--2 {
  top: 96px;
  width: 294px;
}

.users__deco--3 {
  top: 53px;
  right: 144px;
  width: 50px;
}

.users__deco--4 {
  top: 186px;
  left: 44px;
  width: 209px;
}

.users__deco--5 {
  top: 176px;
  right: 34px;
  width: 245px;
}

.users__deco--6 {
  top: 338px;
  left: 155px;
  width: 50px;
}

.users__deco--7 {
  top: 328px;
  right: 158px;
  width: 50px;
}

.users__deco--8 {
  bottom: 44px;
  left: 40px;
  width: 322px;
}

.users__deco--9 {
  bottom: 114px;
  width: 267px;
}

.users__deco--10 {
  bottom: 40px;
  right: 40px;
  width: 174px;
}

.users__deco-mobile {
  position: absolute;
  display: none;
}

.users__deco-mobile--2 {
  top: 139px;
  left: 11px;
  width: 263px;
}

.users__deco-mobile--3 {
  top: 20px;
  left: 90px;
  width: 40px;
}

.users__deco-mobile--4 {
  bottom: 58px;
  right: 27px;
  width: 190px;
}

.users__deco-mobile--5 {
  top: 50px;
  right: 17px;
  width: 220px;
}

.users__deco-mobile--7 {
  bottom: 23px;
  left: 47px;
  width: 40px;
}

.users__deco-mobile--8 {
  top: 90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 294px;
}

.users__deco-mobile--9 {
  bottom: 125px;
  left: 52px;
  width: 239px;
}

.users__deco-mobile--10 {
  bottom: 63px;
  width: 155px;
}

.article__inner {
  padding: 40px;
  border-radius: 15px;
  background: #2F2F2F;
  border-radius: 15px;
}

.article__text {
  color: #fff;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.64px;
  margin-bottom: 20px;
}

.article__image-box {
  position: relative;
  overflow: hidden;
  padding-bottom: 45%;
  border-radius: 15px;
  min-height: 335px;
}

.article__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cards__text {
  color: #000;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.64px;
  margin-bottom: 30px;
}

.cards__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1;
  grid-template-rows: 1;
  gap: 15px;
}

.cards__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding-bottom: 60%;
  min-height: 250px;
}

.cards__item-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cards__item-title {
  position: absolute;
  bottom: 25px;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  color: #000;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.2px;
}

.best__inner {
  background-color: #fff;
  border-radius: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.best__title {
  margin-bottom: 40px;
}

.best__title span {
  color: #E70E66;
}

.best__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.best__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.best__text {
  max-width: 352px;
  margin: 0 15px 0 0;
  font-size: 16px;
}

.best__like {
  width: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
  margin-left: auto;
}

.best__like--mobile {
  width: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
  margin: 0 0 10px 0;
  display: none;
}

@media (min-width: 35.99875em) {
  .btn {
    font-size: 1rem;
  }
}

@media (min-width: 61.99875em) {
  .footer__inner {
    padding-top: 2.5rem;
  }

  .footer__inner {
    padding-bottom: 4.375rem;
  }
}

@media (min-width: 74.99875em) {
  .header__link {
    padding-top: 0.625rem;
  }

  .header__link {
    padding-bottom: 0.625rem;
  }

  .header__link {
    padding-left: 2.875rem;
  }

  .header__link {
    padding-right: 2.875rem;
  }
}

@media (min-width: 90em) {
  .popup__title {
    font-size: 2rem;
  }

  .container {
    padding-left: 7.5rem;
  }

  .container {
    padding-right: 7.5rem;
  }

  .logo .logo-img {
    width: 10.3125rem;
  }

  .title {
    font-size: 2.625rem;
  }

  .mb {
    margin-bottom: 6.25rem;
  }

  .header__nav {
    gap: 0.75rem;
  }

  .footer__logo-img {
    width: 15.3125rem;
  }

  .footer__nav {
    gap: 10.625rem;
  }

  .intro__content {
    left: 2.5rem;
  }

  .intro__content {
    bottom: 1.75rem;
  }

  .intro__content {
    padding: 2.25rem;
  }

  .article__inner {
    padding: 2.5rem;
  }

  .article__text {
    font-size: 2rem;
  }

  .cards__text {
    font-size: 2rem;
  }

  .cards__item-title {
    font-size: 1.25rem;
  }

  .best__inner {
    padding-left: 2.5rem;
  }

  .best__inner {
    padding-right: 2.5rem;
  }

  .best__title {
    margin-bottom: 2.5rem;
  }

  .best__controls {
    margin-right: 2.8125rem;
  }
}

@media (max-width: 575.98px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }

  .cards__item {
    width: 100%;
  }
}

@media (max-width: 61.99875em) {
  .container {
    padding-left: 0.625rem;
  }

  .container {
    padding-right: 0.625rem;
  }

  .header {
    padding: 12px 30px;
  }

  .intro {
    margin-top: -30px;
  }

  .users__deco {
    display: none;
  }

  .users__deco-mobile {
    display: block;
  }

  .cards__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }

  .cards__item {
    padding: 0;
    width: 65%;
    min-height: 300px;
  }

  .cards__item-title {
    font-size: 1rem;
  }

  .cards__item-title {
    font-size: 20px;
  }

  .best__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 47.99875em) {
  .popup__content {
    padding: 20px 30px;
  }

  .text {
    font-size: 14px;
  }

  .header {
    padding: 10px 20px;
  }

  .header__nav {
    padding: 5px 10px;
  }

  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .footer__logo {
    margin-bottom: 5px;
  }



  .footer__nav {
    gap: 0px;
  }

  .footer__nav-item {
    gap: 0px;
  }

  .intro {
    margin-top: -20px;
  }

  .intro__content {
    right: 10px;
    max-width: auto;
  }

  .intro__content {
    left: 0.625rem;
  }

  .intro__content {
    bottom: 0.625rem;
  }

  .users__deco-mobile--8 {
    display: none;
  }

  .users__deco-mobile--10 {
    display: none;
  }

  .best__inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .best__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
    width: 100%;
  }

  .best__controls {
    margin-right: 0.9375rem;
  }

  .best__controls {
    margin-right: 0;
  }

  .best__text {
    max-width: 100%;
    margin: 0;
  }

  .best__like {
    display: none;
  }

  .best__like--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 35.99875em) {
  .best__inner {
    padding-left: 0.625rem;
  }

  .best__inner {
    padding-right: 0.625rem;
  }
}

@media (max-width: 29.99875em) {
  .popup__content {
    padding: 30px 18px;
  }

  .popup__title {
    font-size: 1.75rem;
  }

  .suptitle {
    font-size: 12px;
  }

  .header {
    padding: 10px 0;
  }

  .header__inner {
    background-color: #fff;
    border-radius: 15px;
  }

  .footer__inner {
    padding-top: 1.25rem;
  }

  .footer__inner {
    padding-bottom: 0.5rem;
  }

  .footer__logo-img {
    width: 11.0625rem;
  }

  .article__container {
    padding: 0;
  }

  .cards__item {
    min-height: 250px;
  }

  .best__title {
    margin-bottom: 0.625rem;
  }

  .best__bottom {
    gap: 10px;
  }
}

@media (max-width: 23.4375em) {
  .btn {
    font-size: 0.875rem;
  }

  .logo .logo-img {
    width: 4.6875rem;
  }

  .title {
    font-size: 2rem;
  }

  .mb {
    margin-bottom: 5rem;
  }

  .header__nav {
    gap: 0.1875rem;
  }

  .header__link {
    padding-top: 0.1875rem;
  }

  .header__link {
    padding-bottom: 0.1875rem;
  }

  .header__link {
    padding-left: 0.625rem;
  }

  .header__link {
    padding-right: 0.625rem;
  }

  .intro__content {
    padding: 1.125rem;
  }

  .article__inner {
    padding: 1.25rem;
  }

  .article__text {
    font-size: 1.375rem;
  }

  .cards__text {
    font-size: 1.375rem;
  }
}

@media (min-width: 29.99875em) and (max-width: 90em) {
@supports (font-size: clamp( 1.75rem , 1.6250078123rem  +  0.4166579863vw , 2rem )) {
    .popup__title {
      font-size: clamp( 1.75rem , 1.6250078123rem  +  0.4166579863vw , 2rem );
    }
}

@supports not (font-size: clamp( 1.75rem , 1.6250078123rem  +  0.4166579863vw , 2rem )) {
    .popup__title {
      font-size: calc(1.75rem + 0.25 * (100vw - 29.99875rem) / 60.00125);
    }
}

@supports (width: clamp( 11.0625rem , 8.9376328097rem  +  7.083185767vw , 15.3125rem )) {
    .footer__logo-img {
      width: clamp( 11.0625rem , 8.9376328097rem  +  7.083185767vw , 15.3125rem );
    }
}

@supports not (width: clamp( 11.0625rem , 8.9376328097rem  +  7.083185767vw , 15.3125rem )) {
    .footer__logo-img {
      width: calc(11.0625rem + 4.25 * (100vw - 29.99875rem) / 60.00125);
    }
}

@supports (margin-bottom: clamp( 0.625rem , -0.3124414075rem  +  3.1249348972vw , 2.5rem )) {
    .best__title {
      margin-bottom: clamp( 0.625rem , -0.3124414075rem  +  3.1249348972vw , 2.5rem );
    }
}

@supports not (margin-bottom: clamp( 0.625rem , -0.3124414075rem  +  3.1249348972vw , 2.5rem )) {
    .best__title {
      margin-bottom: calc(0.625rem + 1.875 * (100vw - 29.99875rem) / 60.00125);
    }
}
}

@media (min-width: 61.99875em) and (max-width: 90em) {
@supports (padding-left: clamp( 0.625rem , -14.5972278023rem  +  24.5524753359vw , 7.5rem )) {
    .container {
      padding-left: clamp( 0.625rem , -14.5972278023rem  +  24.5524753359vw , 7.5rem );
    }
}

@supports not (padding-left: clamp( 0.625rem , -14.5972278023rem  +  24.5524753359vw , 7.5rem )) {
    .container {
      padding-left: calc(0.625rem + 6.875 * (100vw - 61.99875rem) / 28.00125);
    }
}

@supports (padding-right: clamp( 0.625rem , -14.5972278023rem  +  24.5524753359vw , 7.5rem )) {
    .container {
      padding-right: clamp( 0.625rem , -14.5972278023rem  +  24.5524753359vw , 7.5rem );
    }
}

@supports not (padding-right: clamp( 0.625rem , -14.5972278023rem  +  24.5524753359vw , 7.5rem )) {
    .container {
      padding-right: calc(0.625rem + 6.875 * (100vw - 61.99875rem) / 28.00125);
    }
}

@supports (font-size: clamp( 1rem , 0.4464644436rem  +  0.8928172849vw , 1.25rem )) {
    .cards__item-title {
      font-size: clamp( 1rem , 0.4464644436rem  +  0.8928172849vw , 1.25rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.4464644436rem  +  0.8928172849vw , 1.25rem )) {
    .cards__item-title {
      font-size: calc(1rem + 0.25 * (100vw - 61.99875rem) / 28.00125);
    }
}
}

@media (min-width: 23.4375em) and (max-width: 35.99875em) {
@supports (font-size: clamp( 0.875rem , 0.6417678376rem  +  0.9951238929vw , 1rem )) {
    .btn {
      font-size: clamp( 0.875rem , 0.6417678376rem  +  0.9951238929vw , 1rem );
    }
}

@supports not (font-size: clamp( 0.875rem , 0.6417678376rem  +  0.9951238929vw , 1rem )) {
    .btn {
      font-size: calc(0.875rem + 0.125 * (100vw - 23.4375rem) / 12.56125);
    }
}
}

@media (min-width: 23.4375em) and (max-width: 90em) {
@supports (width: clamp( 4.6875rem , 2.7068661972rem  +  8.4507042254vw , 10.3125rem )) {
    .logo .logo-img {
      width: clamp( 4.6875rem , 2.7068661972rem  +  8.4507042254vw , 10.3125rem );
    }
}

@supports not (width: clamp( 4.6875rem , 2.7068661972rem  +  8.4507042254vw , 10.3125rem )) {
    .logo .logo-img {
      width: calc(4.6875rem + 5.625 * (100vw - 23.4375rem) / 66.5625);
    }
}

@supports (font-size: clamp( 2rem , 1.7799295775rem  +  0.9389671362vw , 2.625rem )) {
    .title {
      font-size: clamp( 2rem , 1.7799295775rem  +  0.9389671362vw , 2.625rem );
    }
}

@supports not (font-size: clamp( 2rem , 1.7799295775rem  +  0.9389671362vw , 2.625rem )) {
    .title {
      font-size: calc(2rem + 0.625 * (100vw - 23.4375rem) / 66.5625);
    }
}

@supports (margin-bottom: clamp( 5rem , 4.5598591549rem  +  1.8779342723vw , 6.25rem )) {
    .mb {
      margin-bottom: clamp( 5rem , 4.5598591549rem  +  1.8779342723vw , 6.25rem );
    }
}

@supports not (margin-bottom: clamp( 5rem , 4.5598591549rem  +  1.8779342723vw , 6.25rem )) {
    .mb {
      margin-bottom: calc(5rem + 1.25 * (100vw - 23.4375rem) / 66.5625);
    }
}

@supports (gap: clamp( 0.1875rem , -0.0105633803rem  +  0.8450704225vw , 0.75rem )) {
    .header__nav {
      gap: clamp( 0.1875rem , -0.0105633803rem  +  0.8450704225vw , 0.75rem );
    }
}

@supports not (gap: clamp( 0.1875rem , -0.0105633803rem  +  0.8450704225vw , 0.75rem )) {
    .header__nav {
      gap: calc(0.1875rem + 0.5625 * (100vw - 23.4375rem) / 66.5625);
    }
}

@supports (padding: clamp( 1.125rem , 0.7288732394rem  +  1.6901408451vw , 2.25rem )) {
    .intro__content {
      padding: clamp( 1.125rem , 0.7288732394rem  +  1.6901408451vw , 2.25rem );
    }
}

@supports not (padding: clamp( 1.125rem , 0.7288732394rem  +  1.6901408451vw , 2.25rem )) {
    .intro__content {
      padding: calc(1.125rem + 1.125 * (100vw - 23.4375rem) / 66.5625);
    }
}

@supports (padding: clamp( 1.25rem , 0.8098591549rem  +  1.8779342723vw , 2.5rem )) {
    .article__inner {
      padding: clamp( 1.25rem , 0.8098591549rem  +  1.8779342723vw , 2.5rem );
    }
}

@supports not (padding: clamp( 1.25rem , 0.8098591549rem  +  1.8779342723vw , 2.5rem )) {
    .article__inner {
      padding: calc(1.25rem + 1.25 * (100vw - 23.4375rem) / 66.5625);
    }
}

@supports (font-size: clamp( 1.375rem , 1.1549295775rem  +  0.9389671362vw , 2rem )) {
    .article__text {
      font-size: clamp( 1.375rem , 1.1549295775rem  +  0.9389671362vw , 2rem );
    }
}

@supports not (font-size: clamp( 1.375rem , 1.1549295775rem  +  0.9389671362vw , 2rem )) {
    .article__text {
      font-size: calc(1.375rem + 0.625 * (100vw - 23.4375rem) / 66.5625);
    }
}

@supports (font-size: clamp( 1.375rem , 1.1549295775rem  +  0.9389671362vw , 2rem )) {
    .cards__text {
      font-size: clamp( 1.375rem , 1.1549295775rem  +  0.9389671362vw , 2rem );
    }
}

@supports not (font-size: clamp( 1.375rem , 1.1549295775rem  +  0.9389671362vw , 2rem )) {
    .cards__text {
      font-size: calc(1.375rem + 0.625 * (100vw - 23.4375rem) / 66.5625);
    }
}
}

@media (min-width: 23.4375em) and (max-width: 74.99875em) {
@supports (padding-top: clamp( 0.1875rem , -0.0113684574rem  +  0.8485054183vw , 0.625rem )) {
    .header__link {
      padding-top: clamp( 0.1875rem , -0.0113684574rem  +  0.8485054183vw , 0.625rem );
    }
}

@supports not (padding-top: clamp( 0.1875rem , -0.0113684574rem  +  0.8485054183vw , 0.625rem )) {
    .header__link {
      padding-top: calc(0.1875rem + 0.4375 * (100vw - 23.4375rem) / 51.56125);
    }
}

@supports (padding-bottom: clamp( 0.1875rem , -0.0113684574rem  +  0.8485054183vw , 0.625rem )) {
    .header__link {
      padding-bottom: clamp( 0.1875rem , -0.0113684574rem  +  0.8485054183vw , 0.625rem );
    }
}

@supports not (padding-bottom: clamp( 0.1875rem , -0.0113684574rem  +  0.8485054183vw , 0.625rem )) {
    .header__link {
      padding-bottom: calc(0.1875rem + 0.4375 * (100vw - 23.4375rem) / 51.56125);
    }
}

@supports (padding-left: clamp( 0.625rem , -0.3977520667rem  +  4.3637421513vw , 2.875rem )) {
    .header__link {
      padding-left: clamp( 0.625rem , -0.3977520667rem  +  4.3637421513vw , 2.875rem );
    }
}

@supports not (padding-left: clamp( 0.625rem , -0.3977520667rem  +  4.3637421513vw , 2.875rem )) {
    .header__link {
      padding-left: calc(0.625rem + 2.25 * (100vw - 23.4375rem) / 51.56125);
    }
}

@supports (padding-right: clamp( 0.625rem , -0.3977520667rem  +  4.3637421513vw , 2.875rem )) {
    .header__link {
      padding-right: clamp( 0.625rem , -0.3977520667rem  +  4.3637421513vw , 2.875rem );
    }
}

@supports not (padding-right: clamp( 0.625rem , -0.3977520667rem  +  4.3637421513vw , 2.875rem )) {
    .header__link {
      padding-right: calc(0.625rem + 2.25 * (100vw - 23.4375rem) / 51.56125);
    }
}
}

@media (min-width: 29.99875em) and (max-width: 61.99875em) {
@supports (padding-top: clamp( 1.25rem , 0.0781738281rem  +  3.90625vw , 2.5rem )) {
    .footer__inner {
      padding-top: clamp( 1.25rem , 0.0781738281rem  +  3.90625vw , 2.5rem );
    }
}

@supports not (padding-top: clamp( 1.25rem , 0.0781738281rem  +  3.90625vw , 2.5rem )) {
    .footer__inner {
      padding-top: calc(1.25rem + 1.25 * (100vw - 29.99875rem) / 32);
    }
}

@supports (padding-bottom: clamp( 2.5rem , 0.7422607422rem  +  5.859375vw , 4.375rem )) {
    .footer__inner {
      padding-bottom: clamp( 2.5rem , 0.7422607422rem  +  5.859375vw , 4.375rem );
    }
}

@supports not (padding-bottom: clamp( 2.5rem , 0.7422607422rem  +  5.859375vw , 4.375rem )) {
    .footer__inner {
      padding-bottom: calc(2.5rem + 1.875 * (100vw - 29.99875rem) / 32);
    }
}
}

@media (min-width: 47.99875em) and (max-width: 90em) {
@supports (gap: clamp( 1.875rem , -8.1244419809rem  +  20.8327133121vw , 10.625rem )) {
    .footer__nav {
      gap: clamp( 1.875rem , -8.1244419809rem  +  20.8327133121vw , 10.625rem );
    }
}

@supports not (gap: clamp( 1.875rem , -8.1244419809rem  +  20.8327133121vw , 10.625rem )) {
    .footer__nav {
      gap: calc(1.875rem + 8.75 * (100vw - 47.99875rem) / 42.00125);
    }
}

@supports (left: clamp( 0.625rem , -1.5177375673rem  +  4.4641528526vw , 2.5rem )) {
    .intro__content {
      left: clamp( 0.625rem , -1.5177375673rem  +  4.4641528526vw , 2.5rem );
    }
}

@supports not (left: clamp( 0.625rem , -1.5177375673rem  +  4.4641528526vw , 2.5rem )) {
    .intro__content {
      left: calc(0.625rem + 1.875 * (100vw - 47.99875rem) / 42.00125);
    }
}

@supports (bottom: clamp( 0.625rem , -0.6606425404rem  +  2.6784917116vw , 1.75rem )) {
    .intro__content {
      bottom: clamp( 0.625rem , -0.6606425404rem  +  2.6784917116vw , 1.75rem );
    }
}

@supports not (bottom: clamp( 0.625rem , -0.6606425404rem  +  2.6784917116vw , 1.75rem )) {
    .intro__content {
      bottom: calc(0.625rem + 1.125 * (100vw - 47.99875rem) / 42.00125);
    }
}

@supports (margin-right: clamp( 0.9375rem , -1.2052375673rem  +  4.4641528526vw , 2.8125rem )) {
    .best__controls {
      margin-right: clamp( 0.9375rem , -1.2052375673rem  +  4.4641528526vw , 2.8125rem );
    }
}

@supports not (margin-right: clamp( 0.9375rem , -1.2052375673rem  +  4.4641528526vw , 2.8125rem )) {
    .best__controls {
      margin-right: calc(0.9375rem + 1.875 * (100vw - 47.99875rem) / 42.00125);
    }
}
}

@media (min-width: 35.99875em) and (max-width: 90em) {
@supports (padding-left: clamp( 0.625rem , -0.6249276637rem  +  3.4721418486vw , 2.5rem )) {
    .best__inner {
      padding-left: clamp( 0.625rem , -0.6249276637rem  +  3.4721418486vw , 2.5rem );
    }
}

@supports not (padding-left: clamp( 0.625rem , -0.6249276637rem  +  3.4721418486vw , 2.5rem )) {
    .best__inner {
      padding-left: calc(0.625rem + 1.875 * (100vw - 35.99875rem) / 54.00125);
    }
}

@supports (padding-right: clamp( 0.625rem , -0.6249276637rem  +  3.4721418486vw , 2.5rem )) {
    .best__inner {
      padding-right: clamp( 0.625rem , -0.6249276637rem  +  3.4721418486vw , 2.5rem );
    }
}

@supports not (padding-right: clamp( 0.625rem , -0.6249276637rem  +  3.4721418486vw , 2.5rem )) {
    .best__inner {
      padding-right: calc(0.625rem + 1.875 * (100vw - 35.99875rem) / 54.00125);
    }
}
}

.webp .users__inner{ background-image: url(../img/section-users/users-bg.webp); }


.tgbtn{

  background: #2AABEE;
  border: 0;
  margin-top: 30px;
}

.hidden{display:none!important}