@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");
@font-face {
  font-family: "SF UI Display";
  src: url("../fonts/SFUIDisplay-Semibold.woff2") format("woff2"), url("../fonts/SFUIDisplay-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
svg {
  flex-shrink: 0;
  display: block;
  width: 0;
  height: 0;
  transition: 0.3s all;
}

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

body, html {
  background-color: #181818;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.01em;
  background-image: url(../img/layout/general/main-bg.png);
  background-repeat: repeat;
  background-position: center;
  background-size: 100%;
}

body {
  font-size: 16px;
}

.section-title {
  font-size: 52px;
  font-weight: 600;
  font-family: "SF UI Display", sans-serif;
  line-height: 1.19;
}
@media (max-width: 576px) {
  .section-title {
    font-size: 45px;
  }
}
@media (max-width: 420px) {
  .section-title {
    font-size: 40px;
  }
}
@media (max-width: 370px) {
  .section-title {
    font-size: 35px;
  }
}
.section-title span {
  color: #FFFFFF;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15);
  color: #F95C43;
}

h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.43;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: 0.3s all;
}

ul {
  list-style: none;
}
ul li {
  position: relative;
}
ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

ol {
  margin: 0;
}
ol li:last-child {
  margin-bottom: 0;
}

p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 576px) {
  p {
    font-size: 16px;
    line-height: 1.5;
  }
}

input,
textarea {
  display: inline-block;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background-color: #ffffff;
  color: #181818;
  border: 1px solid transparent;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  border-radius: 10px;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  outline: none;
  transition: all linear 0.1s;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #ececec;
}
input::placeholder,
textarea::placeholder {
  color: #ececec;
}
input:focus,
textarea:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}

input:focus {
  background-color: #ffffff;
}

input::-moz-placeholder {
  color: #A6AEB9;
  opacity: 1;
}

input::placeholder {
  color: #A6AEB9;
  opacity: 1;
}

input,
textarea,
select,
input:active,
textarea:active {
  outline: none transparent !important;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -moz-outline: none !important;
  font-family: "Inter", sans-serif;
}

textarea {
  overflow: auto;
  min-height: 150px;
  padding: 20px;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset],
input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

a:active, a:focus, div:active, div:focus, button:active, button:focus {
  outline: 0 !important;
  outline-color: transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Inter", sans-serif;
}

.inner {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
}

.wrapper {
  box-sizing: border-box;
  min-height: 100%;
  overflow: hidden;
}

.content {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 5;
}

.img {
  display: flex;
  overflow: hidden;
  position: relative;
}
.img img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

img {
  display: block;
  width: 100%;
}

.page-link {
  display: block;
  padding: 10px 30px;
  font-size: 18px;
}

.section-inline {
  display: flex;
  align-items: flex-start;
}

.button {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  height: 62px;
  border-radius: 8px;
  border: 0px;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  transition: all linear 0.3s;
}
@media (max-width: 576px) {
  .button {
    height: 50px;
  }
}
.button img {
  flex-shrink: 0;
  width: 28px;
  margin-right: 10px;
}

.market__btn {
  width: 260px;
  border: 1px solid #F95C43;
}
.market__btn:hover {
  background-color: #F95C43;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute !important;
  top: 46% !important;
  transform: translateY(-50%);
  width: 57px !important;
  height: 57px !important;
  margin-top: 0 !important;
  border-radius: 8px;
  border: 1px solid #F95C43;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  color: transparent !important;
  transition: 0.3s all;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: #F95C43;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 1 !important;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next {
  right: 0 !important;
  background-image: url(../img/layout/general/arrow-next.svg);
}

.swiper-button-prev {
  left: 0 !important;
  background-image: url(../img/layout/general/arrow-prev.svg);
}

.header {
  padding-top: 45px;
  margin-bottom: 48px;
}
@media (max-width: 1000px) {
  .header {
    padding-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 820px) {
  .header {
    margin-bottom: 45px;
  }
}
.header .content {
  max-width: 100%;
  padding: 0 35px;
}
@media (max-width: 576px) {
  .header .content {
    padding: 0 15px;
  }
}
.header__inline {
  display: flex;
  align-items: center;
}
.header .logo {
  display: block;
  flex: 0 0 123px;
}
.header__list {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 61px;
}
@media (max-width: 920px) {
  .header__list {
    margin-right: 35px;
  }
}
.header__item {
  display: inline-block;
  width: 28px;
  margin-right: 25px;
}
.header__item:last-child {
  margin-right: 0;
}
.header .lang {
  flex-shrink: 0;
}
.header .lang__head {
  width: 26px;
}

.offer {
  position: relative;
  margin-bottom: 117px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
@media (max-width: 1000px) {
  .offer {
    margin-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .offer {
    margin-bottom: 45px;
  }
}
.offer::before {
  content: "";
  position: absolute;
  top: -450px;
  right: 0;
  width: 1200px;
  height: 1200px;
  transform: rotate(15deg);
  border-radius: 868px;
  background: #F95C43;
  opacity: 0.25;
  -webkit-backface-visibility: hidden;
  -webkit-backdrop-filter: blur(800px);
  -moz-filter: blur(800px);
  -ms-filter: blur(800px);
  filter: blur(800px);
  transform: translate3d(0, 0, 0);
}
.offer::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -260px;
  width: 1286px;
  height: 1286px;
  transform: rotate(-90deg);
  border-radius: 986px;
  background: #5619A2;
  opacity: 0.4;
  -webkit-backface-visibility: hidden;
  -webkit-backdrop-filter: blur(400px);
  -moz-filter: blur(400px);
  -ms-filter: blur(400px);
  filter: blur(400px);
  transform: translate3d(0, 0, 0);
}
.offer__inline {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 820px) {
  .offer__inline {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.offer__main {
  flex: 0 0 645px;
  margin-right: -125px;
}
@media (max-width: 1200px) {
  .offer__main {
    flex: 0 0 53.75vw;
    margin-right: -10.42vw;
  }
}
@media (max-width: 920px) {
  .offer__main {
    flex: 0 0 40vw;
    margin-right: 20px;
  }
}
@media (max-width: 820px) {
  .offer__main {
    flex: 0 1 100%;
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
}
.offer__title {
  margin-bottom: 40px;
  font-size: 74px;
  line-height: 1.08;
}
@media (max-width: 1200px) {
  .offer__title {
    font-size: 60px;
    margin-bottom: 3.33vw;
  }
}
@media (max-width: 1000px) {
  .offer__title {
    font-size: 55px;
    margin-bottom: 3.33vw;
  }
}
@media (max-width: 920px) {
  .offer__title {
    font-size: 47px;
    margin-bottom: 3.33vw;
  }
}
@media (max-width: 820px) {
  .offer__title {
    font-size: 55px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .offer__title {
    font-size: 45px;
    margin-bottom: 25px;
  }
}
@media (max-width: 420px) {
  .offer__title {
    font-size: 40px;
  }
}
.offer__img {
  flex-shrink: 0;
  width: 698px;
  margin-top: 89px;
}
@media (max-width: 1200px) {
  .offer__img {
    width: 58.17vw;
    margin-top: 7.42vw;
  }
}
@media (max-width: 820px) {
  .offer__img {
    width: 75vw;
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .offer__img {
    width: 100%;
    margin-top: 10px;
    margin-left: 25px;
  }
}
.offer p {
  max-width: 395px;
  margin-bottom: 49px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .offer p {
    font-size: 18px;
  }
}
@media (max-width: 920px) {
  .offer p {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
@media (max-width: 820px) {
  .offer p {
    max-width: 595px;
    margin: 0 auto 35px;
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .offer p {
    max-width: 595px;
    font-size: 17px;
  }
}
@media (max-width: 420px) {
  .offer p {
    font-size: 16px;
  }
}
@media (max-width: 820px) {
  .offer__inner {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .offer__inner {
    display: block;
  }
}
.offer .market__btn {
  margin-bottom: 20px;
}
@media (max-width: 820px) {
  .offer .market__btn {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .offer .market__btn:last-child {
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  .offer .market__btn {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .offer .market__btn:last-child {
    margin-right: auto;
    margin-bottom: 0;
  }
}

.about {
  margin-bottom: 160px;
}
@media (max-width: 1100px) {
  .about {
    margin-bottom: 100px;
  }
}
@media (max-width: 800px) {
  .about {
    margin-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .about {
    margin-bottom: 60px;
  }
}
.about__inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1000px) {
  .about__inline {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.about__title {
  flex-shrink: 0;
  margin-right: 20px;
}
@media (max-width: 1050px) {
  .about__title {
    font-size: 40px;
  }
}
@media (max-width: 1000px) {
  .about__title {
    margin-right: 0;
    margin-bottom: 30px;
    font-size: 52px;
  }
}
@media (max-width: 576px) {
  .about__title {
    font-size: 45px;
  }
}
@media (max-width: 420px) {
  .about__title {
    font-size: 40px;
  }
}
.about__list {
  flex: 0 1 805px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .about__list {
    flex-wrap: wrap;
  }
}
.about__item {
  width: 23%;
  padding: 20px 20px 15px;
  border-radius: 8px;
  background-color: #5619A2;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .about__item {
    padding: 20px 15px 15px;
  }
}
@media (max-width: 700px) {
  .about__item {
    width: 49%;
    margin-bottom: 15px;
  }
}
@media (max-width: 420px) {
  .about__item {
    width: 100%;
  }
}
.about__item img {
  width: 72px;
  margin-bottom: 21px;
}
.about__item p {
  max-width: 147px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: pre-line;
}
@media (max-width: 1200px) {
  .about__item p {
    font-size: 14px;
    max-width: 100%;
  }
}

.find {
  margin-bottom: 160px;
}
@media (max-width: 1200px) {
  .find {
    margin-bottom: 100px;
  }
}
@media (max-width: 800px) {
  .find {
    margin-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .find {
    margin-bottom: 60px;
  }
}
.find__inline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 920px) {
  .find__inline {
    position: relative;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  .find__inline {
    justify-content: center;
  }
}
.find__gallery {
  position: relative;
  width: 500px;
  margin-right: 20px;
}
@media (max-width: 920px) {
  .find__gallery {
    margin-right: 0;
    order: 2;
    margin-top: 50px;
    margin-left: 10px;
  }
}
@media (max-width: 800px) {
  .find__gallery {
    padding-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .find__gallery {
    width: 100%;
    padding-bottom: 80px;
  }
}
.find__swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.find .swiper-slide {
  padding-left: 40px;
  height: 709px;
  text-align: center;
  font-size: 18px;
  background: transparent;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 800px) {
  .find .swiper-slide {
    flex-direction: column;
    align-items: center;
    height: 100%;
  }
}
.find .swiper-slide img {
  width: auto;
  height: 100%;
}
@media (max-width: 800px) {
  .find .swiper-slide img {
    flex-direction: column;
    align-items: center;
    height: 500px;
  }
}
@media (max-width: 576px) {
  .find .swiper-slide img {
    height: 500px;
  }
}
.find .swiper-slide .find__item {
  display: none;
}
@media (max-width: 800px) {
  .find .swiper-slide .find__item {
    display: flex;
  }
}
@media (max-width: 576px) {
  .find .find-button-prev, .find .find-button-next {
    top: auto !important;
    bottom: 0 !important;
    transform: translateY(0) !important;
  }
}
.find .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  bottom: 17px !important;
  text-align: center !important;
}
.find .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff;
  opacity: 1;
  margin: 0 7px !important;
}
.find .swiper-pagination-bullet-active {
  opacity: 1;
  border: 1px solid #F95C43;
  background: #F95C43;
}
.find__main {
  flex: 0 1 600px;
}
@media (max-width: 920px) {
  .find__main {
    flex: 0 1 100%;
    text-align: center;
    order: 1;
  }
}
.find__title {
  margin-bottom: 30px;
}
.find__desc {
  margin-bottom: 99px;
  font-size: 18px;
}
@media (max-width: 920px) {
  .find__desc {
    margin-bottom: 0;
  }
}
.find__list {
  margin-left: -27px;
}
@media (max-width: 920px) {
  .find__list {
    position: absolute;
    margin-left: 0;
    bottom: 30px;
    right: 0;
  }
}
@media (max-width: 800px) {
  .find__list {
    display: none;
  }
}
.find__item {
  opacity: 0.1;
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .find__item {
    margin-left: -60px;
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .find__item {
    margin-left: -60px;
    opacity: 1;
  }
}
.find__item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -190px;
  width: 217px;
  height: 1px;
  background: linear-gradient(-90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 800px) {
  .find__item::before {
    display: none;
  }
}
.find .one {
  opacity: 1;
}
.find .two {
  opacity: 1;
}
.find .three {
  opacity: 1;
}
.find__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 24px;
  border-radius: 6px 0px 0px 6px;
  background-color: #ffffff;
  color: #181818;
}
.find__text {
  width: 283px;
  padding: 12px 27px 15px 27px;
  border-radius: 0px 8px 8px 8px;
  border: 1px solid #ffffff;
  line-height: 1.5;
}
@media (max-width: 420px) {
  .find__text {
    width: 223px;
    padding: 10px 15px;
  }
}

.security {
  margin-bottom: 180px;
}
@media (max-width: 1200px) {
  .security {
    margin-bottom: 100px;
  }
}
@media (max-width: 800px) {
  .security {
    margin-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .security {
    margin-bottom: 60px;
  }
}
.security__title {
  max-width: 500px;
  margin-bottom: -45px;
}
@media (max-width: 1200px) {
  .security__title {
    margin-bottom: 0;
  }
}
@media (max-width: 900px) {
  .security__title {
    margin-bottom: 15px;
  }
}
@media (max-width: 700px) {
  .security__title {
    text-align: center;
    margin: 0 auto 35px;
  }
}
.security__inline {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media (max-width: 700px) {
  .security__inline {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.security__img {
  flex: 0 1 698px;
}
@media (max-width: 700px) {
  .security__img {
    order: 2;
    flex: 0 1 100%;
    margin-left: 20px;
  }
}
.security__ico {
  flex-shrink: 0;
  width: 80px;
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .security__ico {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .security__ico {
    width: 70px;
  }
}
@media (max-width: 420px) {
  .security__ico {
    width: 55px;
  }
}
.security__main {
  flex: 0 1 393px;
  margin-left: 10px;
  margin-top: 35px;
}
@media (max-width: 700px) {
  .security__main {
    order: 1;
    display: flex;
    align-items: center;
    flex: 0 1 100%;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.security__desc {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 700px) {
  .security__desc {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .security__desc {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .security__desc {
    font-size: 16px;
  }
}

.nearly {
  position: relative;
  margin-bottom: 205px;
}
@media (max-width: 1200px) {
  .nearly {
    margin-bottom: 140px;
  }
}
@media (max-width: 800px) {
  .nearly {
    margin-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .nearly {
    margin-bottom: 70px;
  }
}
.nearly::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -130px;
  width: 1286px;
  height: 1286px;
  transform: rotate(-90deg);
  border-radius: 986px;
  background: #5619A2;
  -webkit-backface-visibility: hidden;
  -webkit-backdrop-filter: blur(400px);
  filter: blur(400px);
  opacity: 0.4;
  transform: translate3d(0, 0, 0);
}
.nearly > .bg {
  top: auto;
  bottom: -45px;
  left: -10px;
  width: 757px;
  height: 578px;
}
@media (max-width: 1500px) {
  .nearly > .bg {
    left: -150px;
  }
}
@media (max-width: 1300px) {
  .nearly > .bg {
    left: -11.54vw;
    bottom: -3.46vw;
    width: 58.23vw;
    height: 44.46vw;
  }
}
@media (max-width: 820px) {
  .nearly > .bg {
    display: none;
  }
}
.nearly__inline {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 820px) {
  .nearly__inline {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.nearly__img {
  display: none;
}
@media (max-width: 820px) {
  .nearly__img {
    display: block;
  }
}
@media (max-width: 820px) {
  .nearly__title {
    margin-bottom: 25px;
  }
}
.nearly__arrow {
  display: none;
}
@media (max-width: 820px) {
  .nearly__arrow {
    display: block;
    margin: 0 auto;
    width: 45px;
    height: 22px;
    transform: rotate(90deg);
    margin-top: -40px;
  }
}
.nearly__lost {
  position: relative;
  flex: 0 1 600px;
}
@media (max-width: 820px) {
  .nearly__lost {
    flex: 0 1 100%;
    text-align: center;
    margin-bottom: 40px;
  }
}
.nearly__lost .nearly__action {
  position: absolute;
  margin-bottom: 0;
  bottom: 105px;
}
@media (max-width: 820px) {
  .nearly__lost .nearly__action {
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
  }
}
@media (max-width: 576px) {
  .nearly__lost .nearly__action {
    bottom: 50px;
  }
}
@media (max-width: 420px) {
  .nearly__lost .nearly__action {
    width: 100%;
  }
}
.nearly__lost::before {
  content: "";
  position: absolute;
  top: 63%;
  transform: translateY(-50%);
  right: 80px;
  width: 45px;
  height: 22px;
  background-image: url(../img/layout/general/arrow-big.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
@media (max-width: 1750px) {
  .nearly__lost::before {
    right: 20px;
  }
}
.nearly__keep {
  flex: 0 1 600px;
}
@media (max-width: 1300px) {
  .nearly__keep {
    flex: 0 1 46.15vw;
  }
}
@media (max-width: 820px) {
  .nearly__keep {
    flex: 0 1 100%;
    text-align: center;
  }
}
.nearly__inner {
  position: relative;
  top: -15px;
  right: -15px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 65px;
}
@media (max-width: 1300px) {
  .nearly__inner {
    top: -1.15vw;
    right: -1.15vw;
    margin-bottom: 5vw;
  }
}
@media (max-width: 820px) {
  .nearly__inner {
    top: -1.83vw;
    right: -1.83vw;
    margin-bottom: 7.93vw;
    justify-content: center;
  }
}
.nearly__logo {
  position: absolute;
  z-index: 20;
  bottom: -30px;
  left: -15px;
  width: 187px;
}
@media (max-width: 1300px) {
  .nearly__logo {
    bottom: -2.31vw;
    right: -1.15vw;
    width: 14.38vw;
  }
}
@media (max-width: 820px) {
  .nearly__logo {
    bottom: -3.66vw;
    left: 7vw;
    width: 22.8vw;
  }
}
.nearly__round {
  position: relative;
  width: 551px;
  height: 551px;
}
@media (max-width: 1300px) {
  .nearly__round {
    width: 42.38vw;
    height: 42.38vw;
  }
}
@media (max-width: 820px) {
  .nearly__round {
    width: 67.2vw;
    height: 67.2vw;
  }
}
.nearly__round .bg {
  animation-name: spin;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.nearly__ico {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 551px;
  padding-bottom: 30px;
}
@media (max-width: 1300px) {
  .nearly__ico {
    padding-bottom: 2.31vw;
    height: 42.38vw;
  }
}
@media (max-width: 820px) {
  .nearly__ico {
    height: 67.2vw;
    padding-bottom: 3.66vw;
  }
}
.nearly__ico img {
  width: 306px;
}
@media (max-width: 1300px) {
  .nearly__ico img {
    width: 23.54vw;
  }
}
@media (max-width: 820px) {
  .nearly__ico img {
    width: 37.32vw;
  }
}
.nearly__action {
  display: inline-block;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 100px;
  padding: 5px 15px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 420px) {
  .nearly__action {
    font-size: 15px;
  }
}
.nearly__action.nearly__green {
  color: #03A07B;
}
.nearly__action.nearly__red {
  color: #DA291C;
}
.nearly__desc {
  color: rgba(255, 255, 255, 0.8);
}

.download {
  margin-bottom: 160px;
}
@media (max-width: 1200px) {
  .download {
    margin-bottom: 70px;
  }
}
@media (max-width: 800px) {
  .download {
    margin-bottom: 60px;
  }
}
.download__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 25px 15px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(86, 25, 162, 0.34) 0%, rgba(86, 25, 162, 0) 100%);
  border-top: 2px solid #5619A2;
  text-align: center;
}
@media (max-width: 4200px) {
  .download__title {
    font-size: 35px;
  }
}
.download__inline {
  display: flex;
  margin-top: 30px;
}
@media (max-width: 640px) {
  .download__inline {
    flex-direction: column;
    align-items: center;
  }
}
.download .market__btn {
  margin-right: 19px;
}
@media (max-width: 640px) {
  .download .market__btn {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.download .market__btn:last-child {
  margin-right: 0;
}

.usage {
  margin-bottom: 160px;
}
@media (max-width: 1200px) {
  .usage {
    margin-bottom: 120px;
  }
}
.usage__title {
  position: relative;
  max-width: 600px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .usage__title {
    text-align: center;
  }
}
.usage__title::before {
  content: "";
  position: absolute;
  top: 35px;
  right: -40px;
  width: 119px;
  height: 98px;
  background-image: url(../img/layout/general/arrow-curve.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
@media (max-width: 820px) {
  .usage__title::before {
    width: 90px;
    height: 50px;
    background-size: contain;
    top: 35px;
    right: 40px;
  }
}
@media (max-width: 600px) {
  .usage__title::before {
    display: none;
  }
}
.usage__gallery {
  position: relative;
}
@media (max-width: 820px) {
  .usage__gallery {
    padding-bottom: 90px;
  }
}
.usage__swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.usage .swiper-slide {
  height: 709px;
  text-align: center;
  font-size: 18px;
  background: transparent;
  /* Center slide text vertically */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
}
@media (max-width: 1300px) {
  .usage .swiper-slide {
    height: 53.85vw;
  }
}
@media (max-width: 820px) {
  .usage .swiper-slide {
    height: auto;
    padding-left: 0;
  }
}
.usage .swiper-slide img {
  position: relative;
  z-index: 20;
  width: auto;
  height: 100%;
}
@media (max-width: 1300px) {
  .usage .swiper-slide img {
    height: 53.85vw;
  }
}
@media (max-width: 820px) {
  .usage .swiper-slide img {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .usage .swiper-slide img {
    height: 330px;
  }
}
.usage__item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 820px) {
  .usage__item {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
  }
}
.usage__aside {
  position: relative;
  flex: 0 0 570px;
  display: flex;
  justify-content: flex-end;
  margin-right: 40px;
  height: 100%;
}
@media (max-width: 1300px) {
  .usage__aside {
    flex: 0 0 43.85vw;
    height: 100%;
    margin-right: 20px;
  }
}
@media (max-width: 820px) {
  .usage__aside {
    margin-right: 60px;
  }
}
@media (max-width: 480px) {
  .usage__aside {
    flex: 0 1 100%;
    margin-right: 0;
    display: flex;
    justify-content: center;
  }
}
.usage__num {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  font-size: 520px;
  line-height: 1;
  left: -10px;
  font-weight: 600;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  fill-color: transparent;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}
@media (max-width: 1300px) {
  .usage__num {
    font-size: 40vw;
  }
}
@media (max-width: 820px) {
  .usage__num {
    font-size: 300px;
    position: relative;
    top: 56%;
    transform: translateY(0);
    left: 10px;
  }
}
@media (max-width: 480px) {
  .usage__num {
    font-size: 250px;
  }
}
@media (max-width: 360px) {
  .usage__num {
    font-size: 220px;
  }
}
.usage__main {
  flex: 0 0 620px;
  text-align: left;
  margin-top: 95px;
}
@media (max-width: 1300px) {
  .usage__main {
    flex: 0 0 47.69vw;
    margin-top: 7.31vw;
  }
}
@media (max-width: 1100px) {
  .usage__main {
    flex: 0 0 47.69vw;
    margin-top: 2vw;
  }
}
@media (max-width: 820px) {
  .usage__main {
    flex: 0 1 100%;
    margin-top: 20px;
  }
}
.usage__main .usage__title {
  margin-bottom: 20px;
}
.usage__main .usage__title::before {
  display: none;
}
@media (max-width: 1100px) {
  .usage__main .usage__title {
    font-size: 40px;
    white-space: nowrap;
  }
}
@media (max-width: 920px) {
  .usage__main .usage__title {
    font-size: 35px;
    white-space: nowrap;
  }
}
@media (max-width: 576px) {
  .usage__main .usage__title {
    font-size: 35px;
    white-space: normal;
    text-align: left;
  }
}
.usage__subtitle {
  display: inline-block;
  margin-bottom: 40px;
  background-color: #ffffff;
  border-radius: 100px;
  padding: 5px 15px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #181818;
}
@media (max-width: 1300px) {
  .usage__subtitle {
    margin-bottom: 3.08vw;
  }
}
@media (max-width: 576px) {
  .usage__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  .usage__desc {
    font-size: 16px;
  }
}
.usage__controls {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 150px;
  right: 0;
  width: 600px;
}
@media (max-width: 1300px) {
  .usage__controls {
    bottom: 11.54vw;
    width: 49vw;
  }
}
@media (max-width: 1200px) {
  .usage__controls {
    bottom: 5vw;
  }
}
@media (max-width: 820px) {
  .usage__controls {
    bottom: 0;
    width: 100%;
    justify-content: center;
  }
}
.usage .usage-button-prev, .usage .usage-button-next {
  position: relative !important;
  top: 0 !important;
  transform: translateY(0) !important;
}
.usage .usage-button-prev {
  left: 0 !important;
  margin-right: 16px;
}
@media (max-width: 820px) {
  .usage .usage-button-prev {
    order: 1;
    margin-right: 0;
  }
}
@media (max-width: 820px) {
  .usage .usage-button-next {
    order: 3;
  }
}
.usage .usage-pagination {
  margin-left: 40px;
}
@media (max-width: 820px) {
  .usage .usage-pagination {
    order: 2;
    margin: 0 30px;
  }
}
.usage .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff;
  opacity: 1;
  margin: 0 7px !important;
}
.usage .swiper-pagination-bullet-active {
  opacity: 1;
  border: 1px solid #F95C43;
  background: #F95C43;
}

.reviewes {
  position: relative;
  margin-bottom: 160px;
}
@media (max-width: 1200px) {
  .reviewes {
    margin-bottom: 90px;
  }
}
@media (max-width: 800px) {
  .reviewes {
    margin-bottom: 70px;
  }
}
.reviewes::after {
  content: "";
  position: absolute;
  top: -350px;
  right: -130px;
  width: 1186px;
  height: 1186px;
  transform: rotate(-90deg);
  border-radius: 986px;
  background: #5619A2;
  -webkit-backface-visibility: hidden;
  -webkit-backdrop-filter: blur(400px);
  filter: blur(400px);
  opacity: 0.3;
  transform: translate3d(0, 0, 0);
}
.reviewes__inline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .reviewes__inline {
    justify-content: flex-end;
  }
}
.reviewes__head {
  flex: 0 0 450px;
}
@media (max-width: 1100px) {
  .reviewes__head {
    position: absolute;
    left: 0;
    margin-top: 0;
    top: -70px;
  }
}
.reviewes__list {
  position: relative;
  top: -5px;
  left: 50px;
}
@media (max-width: 576px) {
  .reviewes__list {
    left: 25px !important;
  }
}
.reviewes__subtitle {
  position: relative;
  white-space: nowrap;
  font-weight: 600;
  font-size: 49px;
  -webkit-text-stroke: 0.5px white;
  color: #181818;
  line-height: 1;
  text-shadow: 0.5px 0.5px 0 white, -0.5px -0.5px 0 white, 0.5px -0.5px 0 white, -0.5px 0.5px 0 white, 0.5px 0.5px 0 white;
}
.reviewes__subtitle:nth-child(1) {
  opacity: 0.5;
}
.reviewes__subtitle:nth-child(2) {
  opacity: 0.2;
  left: 50px;
}
@media (max-width: 576px) {
  .reviewes__subtitle:nth-child(2) {
    left: 15px !important;
  }
}
.reviewes__subtitle:nth-child(3) {
  opacity: 0.1;
  left: 100px;
}
@media (max-width: 576px) {
  .reviewes__subtitle:nth-child(3) {
    left: 45px;
  }
}
.reviewes__subtitle:nth-child(4) {
  opacity: 0.05;
  left: 150px;
}
@media (max-width: 576px) {
  .reviewes__subtitle {
    font-size: 45px;
  }
}
@media (max-width: 420px) {
  .reviewes__subtitle {
    font-size: 40px;
  }
}
@media (max-width: 370px) {
  .reviewes__subtitle {
    font-size: 35px;
  }
}
.reviewes__gallery {
  position: relative;
  width: 600px;
}
@media (max-width: 820px) {
  .reviewes__gallery {
    width: 100%;
  }
}
.reviewes__swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 50px;
}
.reviewes .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  /* Center slide text vertically */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviewes .swiper-slide img {
  position: relative;
  z-index: 20;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.reviewes .reviewes-button-prev, .reviewes .reviewes-button-next {
  position: relative !important;
  top: 0 !important;
  transform: translateY(0) !important;
}
.reviewes .reviewes-button-prev {
  left: 0 !important;
  margin-right: 16px;
}
@media (max-width: 820px) {
  .reviewes .reviewes-button-prev {
    order: 1;
    margin-right: 0;
  }
}
@media (max-width: 820px) {
  .reviewes .reviewes-button-next {
    order: 3;
  }
}
.reviewes .reviewes-pagination {
  margin-left: 30px;
}
@media (max-width: 820px) {
  .reviewes .reviewes-pagination {
    order: 2;
    margin: 0 30px;
  }
}
@media (max-width: 576px) {
  .reviewes .reviewes-pagination {
    order: 2;
    margin: 0 20px;
  }
}
.reviewes .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff;
  opacity: 1;
  margin: 0 7px !important;
}
.reviewes .swiper-pagination-bullet-active {
  opacity: 1;
  border: 1px solid #F95C43;
  background: #F95C43;
}
.reviewes__item {
  width: 100%;
  text-align: left;
}
.reviewes__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 450px;
  height: 85px;
  margin-bottom: -10px;
  padding: 0 30px;
  padding-bottom: 10px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(270deg, rgba(86, 25, 162, 0) 0%, #5619A2 100%);
}
@media (max-width: 820px) {
  .reviewes__top {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .reviewes__top {
    padding: 0 15px;
  }
}
.reviewes__person {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .reviewes__person {
    font-size: 18px;
  }
}
.reviewes__img {
  position: relative;
  top: -38px;
  overflow: hidden;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
@media (max-width: 820px) {
  .reviewes__img {
    right: -20px;
  }
}
@media (max-width: 420px) {
  .reviewes__img {
    right: -10px;
  }
}
.reviewes__text {
  position: relative;
  padding: 28px 30px 32px;
  padding-right: 15px;
  border-radius: 20px;
  background-color: #ffffff;
}
@media (max-width: 480px) {
  .reviewes__text {
    padding: 25px 15px;
  }
}
.reviewes__text::before {
  content: "";
  position: absolute;
  top: -23px;
  right: 30px;
  width: 44px;
  height: 41px;
  background-image: url(../img/layout/general/quotes.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
@media (max-width: 820px) {
  .reviewes__text::before {
    top: -15px;
  }
}
.reviewes__text p {
  color: #181818;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 480px) {
  .reviewes__text p {
    font-size: 14px;
  }
}
.reviewes__controls {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 820px) {
  .reviewes__controls {
    bottom: 0;
    width: 100%;
    justify-content: center;
  }
}

.subscribe {
  margin-bottom: 160px;
}
@media (max-width: 1200px) {
  .subscribe {
    margin-bottom: 90px;
  }
}
@media (max-width: 800px) {
  .subscribe {
    margin-bottom: 70px;
  }
}
.subscribe__title {
  max-width: 600px;
  margin-bottom: 58px;
}
@media (max-width: 820px) {
  .subscribe__title {
    text-align: center;
    margin: 0 auto 58px;
  }
}
.subscribe__inline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 650px) {
  .subscribe__inline {
    flex-wrap: wrap;
  }
}
.subscribe__section {
  width: 49%;
  border-radius: 20px;
  border: 1px solid #ffffff;
  overflow: hidden;
  padding-bottom: 40px;
}
@media (max-width: 920px) {
  .subscribe__section {
    border-radius: 15px;
  }
}
@media (max-width: 650px) {
  .subscribe__section {
    width: 100%;
    margin-bottom: 30px;
  }
}
.subscribe__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.subscribe__type {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  padding: 0 35px;
  border-radius: 0px 0px 20px 0px;
  background-color: #ffffff;
  color: #181818;
  font-size: 33px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 920px) {
  .subscribe__type {
    height: 55px;
    padding: 0 25px;
    font-size: 25px;
  }
}
.subscribe__price {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  margin: 24px 25px 0 0;
  padding: 0 15px 1px;
  border-radius: 100px;
  border: 1px solid #ffffff;
  font-size: 33px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 920px) {
  .subscribe__price {
    margin: 13px 15px 0 0;
    height: 40px;
    font-size: 25px;
  }
}
@media (max-width: 420px) {
  .subscribe__price {
    margin: 13px 10px 0 5px;
    font-size: 20px;
  }
}
.subscribe__price span {
  font-size: 26px;
}
.subscribe__list {
  margin: 0 38px;
  margin-left: 36px;
}
@media (max-width: 920px) {
  .subscribe__list {
    margin: 0 15px;
    margin-left: 15px;
  }
}
.subscribe__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 920px) {
  .subscribe__item {
    font-size: 16px;
  }
}
.subscribe__item:last-child {
  margin-bottom: 0;
}
.subscribe__invcludes {
  width: 16px;
}
.subscribe__pro {
  border: none;
  background-color: #5619A2;
}
.subscribe__pro .subscribe__type {
  background-color: #F95C43;
  color: #ffffff;
}
.subscribe__pro .subscribe__price {
  border: 1px solid #F95C43;
  color: #F95C43;
}
.subscribe__pro .subscribe__more {
  margin-top: 39px;
  padding-top: 35px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.place {
  position: relative;
}
.place::before {
  content: "";
  position: absolute;
  top: -650px;
  left: -100px;
  width: 1200px;
  height: 1200px;
  transform: rotate(15deg);
  border-radius: 868px;
  background: #F95C43;
  -webkit-backface-visibility: hidden;
  -webkit-backdrop-filter: blur(800px);
  filter: blur(800px);
  opacity: 0.25;
  transform: translate3d(0, 0, 0);
}
.place::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -450px;
  width: 1286px;
  height: 1286px;
  transform: rotate(-90deg);
  border-radius: 986px;
  background: #5619A2;
  -webkit-backface-visibility: hidden;
  -webkit-backdrop-filter: blur(400px);
  filter: blur(400px);
  opacity: 0.4;
  transform: translate3d(0, 0, 0);
}
.place__inline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 820px) {
  .place__inline {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.place__main {
  flex: 0 1 580px;
  margin-top: 10px;
}
@media (max-width: 820px) {
  .place__main {
    flex: 0 1 100%;
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
  }
}
.place__title {
  margin-bottom: 70px;
  font-size: 74px;
  line-height: 1.08;
}
@media (max-width: 1200px) {
  .place__title {
    font-size: 54px;
  }
}
@media (max-width: 820px) {
  .place__title {
    margin-bottom: 35px;
  }
}
@media (max-width: 576px) {
  .place__title {
    font-size: 45px;
  }
}
@media (max-width: 420px) {
  .place__title {
    font-size: 40px;
  }
}
@media (max-width: 370px) {
  .place__title {
    font-size: 35px;
  }
}
.place__innner {
  display: flex;
}
@media (max-width: 1200px) {
  .place__innner {
    display: block;
  }
}
.place .market__btn {
  margin-right: 19px;
}
@media (max-width: 1200px) {
  .place .market__btn {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .place .market__btn {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.place__img {
  flex: 0 0 489px;
  height: 595px;
}
@media (max-width: 1000px) {
  .place__img {
    flex: 0 0 48.9vw;
    height: 59.5vw;
  }
}
@media (max-width: 8200px) {
  .place__img {
    margin-left: 40px;
  }
}
@media (max-width: 650px) {
  .place__img {
    flex: 0 1 100%;
    height: 100vw;
  }
}
@media (max-width: 420px) {
  .place__img {
    width: 300px;
    height: 330px;
  }
}
@media (max-width: 350px) {
  .place__img {
    width: 300px;
    height: 300px;
  }
}
.place__img img {
  -o-object-position: center top;
     object-position: center top;
}

.dialogs {
  position: fixed;
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
}
.dialogs .close-bg {
  position: fixed;
  z-index: 51;
  width: 100%;
  height: 100%;
}
.dialogs .close-bg .ico {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  fill: #ffffff;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.dialogs .flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  padding: 30px 0;
  box-sizing: border-box;
}
.dialogs .close {
  display: block;
  position: absolute;
  z-index: 53;
  width: 20px;
  height: 20px;
  fill: #000000;
  right: 20px;
  top: 20px;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
.dialogs .close:hover {
  transform: scale(1.05);
}
.dialogs .popup {
  display: none;
  opacity: 0;
  margin: 0 auto;
  position: relative;
  z-index: 52;
  width: 100%;
  max-width: 1200px;
  border: none;
  padding: 30px;
  box-sizing: border-box;
  transform: translate3d(0, -30px, 0) scale(0.9);
  transition: all ease-in-out 0.3s;
  background: #ffffff;
  color: #000000;
}
.dialogs .popup.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.dialogs .thanks-popup {
  background: rgba(0, 0, 0, 0.65);
  position: fixed;
  z-index: 102;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
}
.dialogs .thanks-popup .close {
  z-index: 103;
}
.dialogs .thanks-popup .close-bg {
  z-index: -1;
}
.dialogs .thanks-popup .popup {
  opacity: 1 !important;
  display: block !important;
  background-color: #ffffff;
  text-align: center;
}
/*# sourceMappingURL=style.css.map */
