@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-Light.ttf) format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-Medium.ttf) format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-SemiBold.ttf) format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-Bold.ttf) format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 120%;
  font-weight: 300;
  color: #000;
  background: #f3f2f2;
}

.bodyStopScroll {
  overflow: hidden;
  height: 100vh;
}

button {
  outline: none;
  border: none;
  padding: 0;
  transition: 0.3s all;
}
button:hover {
  cursor: pointer;
}

input, textarea, select, button {
  border: none;
  outline: none;
  transition: 0.3s all;
}

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

li {
  transition: 0.3s all;
  list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
  line-height: 120%;
  margin: 0;
  padding: 0;
}

p {
  font-family: "Manrope", sans-serif;
  margin: 0;
  padding: 0;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none !important;
}

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

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

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

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

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

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

.align-end {
  align-items: flex-end;
}

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

.text-right {
  text-align: right;
}

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

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

.show {
  display: flex !important;
}

.w-full {
  width: 100%;
}

.m-0 {
  margin: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.relative {
  position: relative !important;
}

.select {
  width: 100%;
  position: relative;
  font-weight: 600;
  border-radius: 50px;
}
.select-head {
  width: 100%;
  height: 36px;
  border-radius: 50px;
  border: 1px solid transparent;
  background: rgba(170, 137, 248, 0.1019607843);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: #000;
}
.select-head svg {
  transition: 0.3s all;
  margin-left: 4px;
}
.select-options {
  position: absolute;
  top: 105%;
  right: 0;
  width: 100%;
  border-radius: 0 0 10px 10px;
  border: 1px solid transparent;
  background: #dbdada;
  padding: 5px;
  display: none;
  z-index: 10;
  padding: 0 12px;
  max-height: 250px;
  overflow-y: scroll;
}
.select-options::-webkit-scrollbar {
  width: 4px;
  background: #DEDEDE;
  border-radius: 6px;
}
.select-options::-webkit-scrollbar-thumb {
  background: #c0bcbc;
  border-radius: 6px;
}
.select-options li {
  color: #222222;
  cursor: pointer;
  padding: 5px 0;
}
.select-options li:last-child {
  margin-bottom: 0;
}
.select-options li:hover {
  color: #106ACF;
}
.select-options .active {
  color: #106ACF;
}

.showSelect {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}
.showSelect .select-head {
  border-radius: 10px 10px 0 0;
}
.showSelect .select-head svg {
  transform: rotate(180deg);
}
.showSelect .select-options {
  display: block;
}

.check-box {
  display: flex;
  align-items: center;
}
.check-box input {
  appearance: none;
  width: 19px;
  height: 19px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-box input:checked {
  background: #F05829;
}
.check-box input:checked::before {
  content: url(../images/svg/checked.svg);
}
.check-box label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.check-box label a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.check-box label a:hover {
  color: #F05829;
  border-color: #F05829;
}

.input-box {
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.input-box input {
  width: 100%;
  height: 40px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid #D0D2D2;
  color: #000;
  padding: 10px 16px;
  transition: 0.3s all;
  font-size: 14px;
  font-weight: 300;
}
.input-box input:focus {
  border-color: #AA89F8;
}
.input-box .error {
  background: #f7dee3;
  border-color: rgba(238, 117, 113, 0.5019607843);
  color: #EE7571;
  margin-bottom: 6px;
}
.input-box .error::placeholder {
  color: #EE7571;
}
.input-box small {
  font-size: 12px;
  font-weight: 600;
  color: #ee7571;
}

.text-box {
  width: 100%;
}
.text-box textarea {
  width: 100%;
  height: 120px;
  background: transparent;
  border-radius: 12px;
  border: 1px solid #D0D2D2;
  color: #000;
  padding: 12px 16px;
  transition: 0.3s all;
  font-size: 14px;
  font-weight: 300;
  resize: none;
}
.text-box textarea:focus {
  border-color: #AA89F8;
}
.text-box textarea::placeholder {
  color: #9b9b9b;
}

button {
  border-radius: 100px;
  font-weight: 700;
  transition: 0.3s linear;
}
button:hover {
  transition: 0.3s linear;
}

.btn {
  border: 2px solid white;
  background-image: linear-gradient(to left, #de96f9, #d292f9, #c58ff9, #b88cf8, #aa89f8);
  color: #fff;
}
.btn:hover {
  background-image: linear-gradient(to left, #b88cf8, #aa89f8, #de96f9, #d292f9, #c58ff9);
}

.btn2 {
  background: linear-gradient(#F3F2F2) padding-box, linear-gradient(to left, #de96f9, #d292f9, #c58ff9, #b88cf8, #aa89f8) border-box;
  border: 2px solid transparent;
  color: #aa89f8;
}
.btn2:hover {
  border: 2px solid white;
  background-image: linear-gradient(to left, #de96f9, #d292f9, #c58ff9, #b88cf8, #aa89f8);
  color: #fff;
}

.disable {
  border: 2px solid #F3F2F2;
  background: #d0d2d2;
  color: #fff;
  pointer-events: none;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 16px;
}

picture {
  display: inline-block;
}

.logo img {
  width: 210px;
  object-fit: contain;
  margin-right: 16px;
}
.logo span {
  font-size: 20px;
  font-weight: 700;
}

.swiper-btns .prev, .swiper-btns .next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s all;
  position: relative;
  cursor: pointer;
}
.swiper-btns .prev:hover, .swiper-btns .next:hover {
  background: #7837df;
}
.swiper-btns .prev:hover svg path, .swiper-btns .next:hover svg path {
  fill: #fff;
}

.title-text {
  font-weight: 700;
  line-height: 120%;
  font-size: 28px;
  color: #000;
}
.title-text span {
  font-weight: 700;
  font-size: 32px;
  color: #7837df;
  margin-bottom: 4px;
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #f3f2f2;
  padding: 16px 0;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2);
}
.header .menu-btn {
  margin-right: 32px;
  display: none;
}
.header .liftGpt {
  font-size: 10px;
  font-weight: 300;
  padding: 6px 16px;
  border-radius: 12px;
  background: rgba(222, 150, 249, 0.1019607843);
}
.header .liftGpt .logo {
  width: 48px;
  margin-right: 12px;
}
.header .liftGpt-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.header nav .nav-list li {
  font-weight: 500;
  margin-right: 16px;
}
.header nav .nav-list li:last-child {
  margin-right: 0;
}
.header nav .nav-list .active {
  color: #aa89f8;
}
.header-btns {
  display: flex;
}
.header-btns button {
  padding: 11.5px 32px;
}
.header-btns .create-account__btn {
  margin-right: 20px;
}
.header-balance {
  background: rgba(255, 255, 255, 0.5019607843);
  border-radius: 50px;
  box-shadow: 0px 2px8px 0px rgba(0, 0, 0, 0.1);
  width: 228px;
  height: 44px;
  padding: 0 8px 0 14px;
  font-size: 24px;
  font-weight: 700;
}
.header-balance span {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5019607843);
  display: inline-block;
  margin-left: 4px;
}
.header-balance svg {
  margin-right: 10px;
}
.header-balance .topUp-balance__btn {
  font-size: 10px;
  width: 80px;
  height: 30px;
}
.header .user-profile .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-right: 16px;
}
.header .user-profile .user-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
  display: block;
}
.header .user-profile .user-email {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5019607843);
}
.header .login-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5019607843);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
}
.header .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.header .menu-content {
  width: 473px;
  height: 100vh;
  background: #f3f2f2;
  padding: 26px 64px 26px 41px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2);
  overflow-y: scroll;
  animation: animMenu 0.3s linear;
}
.header .menu-content .header-btns {
  display: none;
  margin-top: 48px;
}
.header .menu-content .header-btns .create-account__btn {
  margin: 0 0 8px 0;
}
.header .menu-content .user-profile {
  width: 100%;
  border-radius: 24px;
  background: rgba(170, 137, 248, 0.1019607843);
  padding: 24px;
  margin-top: 48px;
  overflow: hidden;
}
.header .menu-content .user-profile .avatar {
  width: 64px;
  height: 64px;
}
.header .menu-content .user-profile .user-name {
  font-size: 20px;
  margin-bottom: 4px;
  max-width: 100%;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.header .menu-content .user-profile .sub-info {
  margin-top: 4px;
}
.header .menu-content .user-profile .sub-info .status {
  font-size: 12px;
  font-weight: 600;
  color: #de96f9;
  padding: 6px;
  border-radius: 8px;
  background: rgba(222, 150, 249, 0.1019607843);
  margin-right: 12px;
}
.header .menu-content .user-profile .sub-info .data {
  font-size: 10px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5019607843);
}
.header .menu-content .header-balance {
  width: 100%;
  background: rgba(170, 137, 248, 0.1019607843);
  font-size: 22px;
  margin-top: 12px;
}
.header .menu-content .header-balance .topUp-balance__btn {
  width: 120px;
  height: 30px;
}
.header .menu-content nav .nav-list li {
  font-size: 14px;
  font-weight: 500;
  margin: 24px 0 0;
  padding: 9.5px 16px;
}
.header .menu-content nav .nav-list .active {
  color: #aa89f8;
}
@keyframes animMenu {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0;
  }
}

.middle-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 571px;
  padding: 12px 16px;
  background: linear-gradient(#F3F2F2) padding-box, linear-gradient(to left, #de96f9, #d292f9, #c58ff9, #b88cf8, #aa89f8) border-box;
  background-image: linear-gradient(to top, #7837df, #6833be, #582e9d, #49297e, #3a2360);
  border: 2px solid transparent;
  border-radius: 50px;
  margin: 36px auto 0;
}
.middle-form .input-box {
  margin: 0 12px 0 0;
  width: 292px;
}
.middle-form .input-box input {
  height: 40px;
  background: #fff;
  border: 1px solid #D0D2D2;
}
.middle-form .form__btn {
  width: 235px;
  height: 40px;
  background: #ee7571;
  border-color: #fff;
}

.main {
  transition: 0.5s linear;
}
.main .wrapper {
  padding-top: 178px;
}
.main .wrapper-bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: top;
}
.main .wrapper-bg:last-child {
  display: none;
}
.main .wrapper .container {
  position: relative;
  z-index: 10;
}
.main .wrapper .title-text {
  font-size: 56px;
  line-height: 120%;
  font-weight: 700;
  color: #7837df;
}
.main .wrapper .title-subtext {
  font-size: 24px;
  line-height: 120%;
  font-weight: 700;
  margin-top: 4px;
}
.main .wrapper .wrapper-slider {
  max-width: 1260px;
  margin: 207px auto 36px;
  position: relative;
}
.main .wrapper .wrapper-slider .top-slider {
  position: relative;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item {
  min-height: 297px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5019607843);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3), 0px 4px 0px 0px #F3F2F2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-title span {
  color: #7837DF;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5019607843);
  margin-top: 4px;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-text {
  font-size: 14px;
  font-weight: 300;
  margin-top: 16px;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-text.bold {
  font-weight: 600;
  margin-top: 16px;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .info-text {
  display: none;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .more-details {
  font-size: 12px;
  font-weight: 600;
  margin: 16px 0 21px;
  justify-content: center;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .more-details svg {
  margin-right: 16px;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .more__btn {
  width: 143px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-list li {
  display: flex;
  align-items: start;
  font-size: 12px;
  line-height: 120%;
  text-align-last: left;
  margin-top: 8px;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-list li:first-child {
  margin-top: 16px;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-list li strong {
  font-weight: 600;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-list li p {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5019607843);
  margin-top: 4px;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-list li svg {
  margin-right: 12px;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-form {
  display: none;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-form .input-box {
  width: 55%;
  margin: 0;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-form .input-box input {
  height: 40px;
}
.main .wrapper .wrapper-slider .top-slider .wrapper-item .item-form .form__btn {
  width: 42%;
  height: 40px;
  font-size: 14px;
}
.main .wrapper .wrapper-slider .top-slider .swiper-slide-active {
  position: relative;
  z-index: 3;
  transform: translateX(-25%);
}
.main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item {
  background: #fff;
  width: 604px;
}
.main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item .item-form {
  display: flex;
}
.main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item .more__btn {
  display: none;
}
.main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item .info-text {
  display: block;
}
.main .wrapper .wrapper-slider .swiper-btns .prev, .main .wrapper .wrapper-slider .swiper-btns .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.main .wrapper .wrapper-slider .swiper-btns .next {
  right: 0;
}
.main .wrapper .wrapper-slider .swiper-pagination {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  position: relative;
  bottom: 0;
}
.main .wrapper .wrapper-slider .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid transparent;
  display: block;
  width: 200px;
  height: 36px !important;
  border-radius: 0;
  height: auto;
  opacity: 1;
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5019607843);
  position: relative;
}
.main .wrapper .wrapper-slider .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #7837DF;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: 0.3s linear;
}
.main .wrapper .wrapper-slider .swiper-pagination-bullet span {
  color: #7837DF;
}
.main .wrapper .wrapper-slider .swiper-pagination-bullet:nth-child(1) {
  order: 2;
}
.main .wrapper .wrapper-slider .swiper-pagination-bullet:nth-child(2) {
  order: 3;
}
.main .wrapper .wrapper-slider .swiper-pagination-bullet:nth-child(3) {
  order: 1;
}
.main .wrapper .wrapper-slider .swiper-pagination-bullet-active {
  color: #000;
}
.main .wrapper .wrapper-slider .swiper-pagination-bullet-active::before {
  width: 100%;
}
.main .wrapper .wrapper-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}
.main .wrapper .wrapper-slider .swiper {
  padding: 20px;
}
.main .wrapper .wrapper-slider .big-slider {
  margin-top: 36px;
}
.main .wrapper .wrapper-slider .big-slider .swiper-wrapper {
  display: flex;
  align-items: start;
}
.main .wrapper .wrapper-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.main .wrapper .wrapper-box .box-left {
  width: 49%;
  padding: 8px 8px 0 24px;
  background: rgba(255, 255, 255, 0.5019607843);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}
.main .wrapper .wrapper-box .box-left .left-title {
  font-size: 24px;
  font-weight: 700;
}
.main .wrapper .wrapper-box .box-left .left-title span {
  color: #7837df;
}
.main .wrapper .wrapper-box .box-left .left-text {
  font-size: 14px;
  line-height: 120%;
  font-weight: 300;
  margin-top: 16px;
}
.main .wrapper .wrapper-box .box-left .left-text.bold {
  font-weight: 600;
}
.main .wrapper .wrapper-box .box-left .left-img {
  width: 210px;
  margin-bottom: -16px;
}
.main .wrapper .wrapper-box .box-right {
  width: 49%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main .wrapper .wrapper-box .box-right .right-item {
  width: 48.5%;
  background: rgba(170, 137, 248, 0.1019607843);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 32px 12px;
}
.main .wrapper .wrapper-box .box-right .right-item .right-title {
  font-size: 16px;
  line-height: 120%;
  font-weight: 700;
}
.main .wrapper .wrapper-box .box-right .right-item .right-text {
  font-size: 12px;
  font-weight: 300;
  margin-top: 8px;
}
.main .wrapper .wrapper-box .box-right .right-item:last-child {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  padding: 9px 12px 8px 20px;
  text-align: left;
}
.main .wrapper .wrapper-box .box-right .right-item:last-child img {
  margin-right: 28px;
}
.main .tools {
  position: relative;
  z-index: 5;
}
.main .tools .tools-box .tool {
  width: 33%;
  text-align: center;
  margin-top: 36px;
  position: relative;
}
.main .tools .tools-box .tool-title {
  font-size: 16px;
  font-weight: 700;
  margin: 12px 0 4px;
}
.main .tools .tools-box .tool-text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5019607843);
}
.main .tools .tools-box .tool .line {
  width: 60%;
  position: absolute;
  left: 70%;
  top: 15%;
}
.main .tools .tools-box .tool:nth-child(2) .line {
  top: 0;
}
.main .tariffs {
  margin: 48px 0 85px;
  position: relative;
}
.main .tariffs-bg {
  position: absolute;
  top: -45%;
  left: 0;
  width: 100%;
  height: 200%;
  object-fit: contain;
}
.main .tariffs-bg:last-child {
  display: none;
}
.main .tariffs .container {
  position: relative;
  z-index: 3;
}
.main .tariffs-box {
  margin: 36px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.main .tariffs-box .tariff {
  background: rgba(255, 255, 255, 0.5019607843);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  backdrop-filter: blur(5px);
  transition: 0.3s all;
}
.main .tariffs-box .tariff:hover {
  transform: translateY(-5px);
}
.main .tariffs-box .tariff .sale {
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 8px;
  padding: 6px;
  background: rgba(170, 137, 248, 0.1019607843);
  display: flex;
  align-items: center;
}
.main .tariffs-box .tariff .sale-text {
  font-size: 14px;
  font-weight: 600;
  color: #7837df;
  margin-right: 4px;
}
.main .tariffs-box .tariff .sale svg {
  margin-top: -2px;
}
.main .tariffs-box .tariff-title {
  font-size: 24px;
  line-height: 120%;
  font-weight: 700;
  color: #3a2360;
}
.main .tariffs-box .tariff .info-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5019607843);
  margin-top: 8px;
}
.main .tariffs-box .tariff .info-text strong {
  color: #000;
}
.main .tariffs-box .tariff .info-text span {
  font-size: 12px;
  font-weight: 300;
}
.main .tariffs-box .tariff .price {
  display: flex;
  align-items: center;
  margin: 16px 0;
}
.main .tariffs-box .tariff .price-info {
  font-size: 16px;
  font-weight: 700;
  margin-right: 8px;
  display: flex;
  align-items: center;
}
.main .tariffs-box .tariff .price-info span {
  font-size: 24px;
  display: inline-block;
  margin-right: 4px;
}
.main .tariffs-box .tariff .price .month {
  color: rgba(0, 0, 0, 0.5019607843);
  font-size: 16px;
  font-weight: 700;
}
.main .tariffs-box .tariff .info-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 12px;
}
.main .tariffs-box .tariff .info-list li:last-child {
  margin-bottom: 16px;
}
.main .tariffs-box .tariff .info-list li svg {
  margin-right: 6px;
}
.main .tariffs-box .tariff .choose__btn {
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #aa89f8;
  background: linear-gradient(#fdfcfc) padding-box, linear-gradient(to left, #de96f9, #d292f9, #c58ff9, #b88cf8, #aa89f8) border-box;
}
.main .tariffs-box .tariff .choose__btn:hover {
  border: 2px solid white;
  background-image: linear-gradient(to left, #de96f9, #d292f9, #c58ff9, #b88cf8, #aa89f8);
  color: #fff;
}
.main .tariffs-box .tariff.pro .sale {
  background: rgba(222, 150, 249, 0.1019607843);
}
.main .tariffs-box .tariff.pro .sale-text {
  color: #de96f9;
}
.main .tariffs-box .tariff.pro .tariff-title {
  color: #7837df;
}
.main .tariffs-text {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5019607843);
}
.main .possibilities {
  position: relative;
  z-index: 3;
}
.main .possibilities-bg {
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.main .possibilities .container {
  position: relative;
  z-index: 5;
}
.main .possibilities-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.main .possibilities-box .possibilitie {
  position: relative;
}
.main .possibilities-box .possibilitie-img {
  width: 396px;
  height: 300px;
  border-radius: 24px;
  object-fit: cover;
  transition: 0.3s linear;
}
.main .possibilities-box .possibilitie-info {
  background: rgba(255, 255, 255, 0.5019607843);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2), 0px 4px 0px 0px #F3F2F2;
}
.main .possibilities-box .possibilitie-info .info-title {
  font-size: 20px;
  font-weight: 700;
}
.main .possibilities-box .possibilitie-info .info-text {
  font-size: 14px;
  font-weight: 300;
  margin-top: 8px;
}
.main .possibilities-box .possibilitie:nth-child(1) {
  display: flex;
  justify-content: end;
}
.main .possibilities-box .possibilitie:nth-child(1) .possibilitie-info {
  position: absolute;
  top: 30%;
  left: 0;
  width: 350px;
}
.main .possibilities-box .possibilitie:nth-child(2) {
  background: rgba(170, 137, 248, 0.1019607843);
  backdrop-filter: blur(6px);
  padding: 32px 0 0 32px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .possibilities-box .possibilitie:nth-child(2) .possibilitie-info {
  background: transparent;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none;
}
.main .possibilities-box .possibilitie:nth-child(2) .possibilitie-info .info-title {
  font-size: 16px;
}
.main .possibilities-box .possibilitie:nth-child(2) .possibilitie-info .info-title strong {
  font-size: 24px;
  color: #7837DF;
  display: inline-block;
  margin-bottom: 4px;
}
.main .possibilities-box .possibilitie:nth-child(2) .possibilitie-info .try-free__btn {
  width: 235px;
  height: 40px;
  font-size: 14px;
  margin-top: 16px;
}
.main .possibilities-box .possibilitie:nth-child(2) .possibilitie-img {
  margin-top: -60px;
  width: 214px;
}
.main .possibilities-box .possibilitie:nth-child(3) .possibilitie-info {
  position: absolute;
  top: 20%;
  left: 60%;
  width: 350px;
  z-index: 3;
}
.main .possibilities-box .possibilitie:nth-child(3) .possibilitie-img:last-child {
  display: none;
}
.main .possibilities-box .possibilitie:nth-child(4) {
  padding-top: 70px;
}
.main .possibilities-box .possibilitie:nth-child(4) .picture {
  position: relative;
}
.main .possibilities-box .possibilitie:nth-child(4) .picture .possibilitie-img {
  height: 180px;
}
.main .possibilities-box .possibilitie:nth-child(4) .picture .possibilitie-book {
  position: absolute;
  left: 29%;
  bottom: 20%;
  width: 294px;
}
.main .possibilities-box .possibilitie:nth-child(4) .possibilitie-info {
  position: absolute;
  bottom: 0%;
  left: 40%;
  width: 350px;
  z-index: 3;
}
.main .possibilities-box .possibilitie:nth-child(5) {
  display: flex;
  align-items: center;
}
.main .possibilities-box .possibilitie:nth-child(5) .possibilitie-info {
  width: 350px;
}
.main .possibilities-box .possibilitie:nth-child(5) .possibilitie-img {
  position: absolute;
  top: 2%;
  left: 33%;
  width: 436px;
  height: auto;
}
.main .possibilities-box .possibilitie:nth-child(6) .possibilitie-info {
  width: 350px;
  position: absolute;
  bottom: 10%;
  right: 2%;
}
.main .possibilities-box .possibilitie:nth-child(6) .possibilitie-img {
  transform: translate(-30px, -50px);
  width: 304px;
  height: auto;
}
.main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info {
  width: 100%;
  height: 100%;
}
.main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info .info-title {
  font-size: 16px;
}
.main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info .info-title strong {
  font-size: 24px;
  color: #7837DF;
  display: block;
  margin-bottom: 4px;
}
.main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info .info-item {
  border-radius: 6px;
  padding: 6px 12px;
  background: rgba(170, 137, 248, 0.1019607843);
  margin-top: 6px;
}
.main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info .info-item:nth-child(2) {
  margin-top: 24px;
}
.main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info .info-item .item-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info .info-item .item-text {
  font-size: 12px;
  font-weight: 300;
}
.main .possibilities-box .possibilitie:nth-child(8) .possibilitie-info {
  width: 100%;
  height: 100%;
}
.main .possibilities-box .possibilitie:nth-child(8) .possibilitie-info .info-title {
  font-size: 16px;
}
.main .possibilities-box .possibilitie:nth-child(8) .possibilitie-info .info-title strong {
  font-size: 24px;
  color: #7837DF;
  display: block;
  margin-bottom: 4px;
}
.main .possibilities-box .possibilitie:nth-child(8) .possibilitie-info .info-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  margin-top: 12px;
}
.main .possibilities-box .possibilitie:nth-child(8) .possibilitie-info .info-list li:first-child {
  margin-top: 24px;
}
.main .possibilities-box .possibilitie:nth-child(8) .possibilitie-info .info-list li::before {
  content: url(../images/svg/left.svg);
  margin-right: 10px;
  margin-top: 3px;
}
.main .possibilities-box .possibilitie:hover .possibilitie-img {
  transform: scale(1.1);
}
.main .possibilities-box .possibilitie:nth-child(6):hover .possibilitie-img {
  transform: translate(-30px, -50px) scale(1.1);
}
.main .faqs {
  margin: 98px 0 48px;
}
.main .faqs-title {
  width: 396px;
  margin-right: 20px;
}
.main .faqs-title .title-text {
  min-width: 396px;
  font-size: 32px;
  font-weight: 700;
}
.main .faqs-title .title-subtext {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5019607843);
  margin: 12px 0 32px;
}
.main .faqs-title .ask-question__btn {
  width: 200px;
  height: 40px;
  font-size: 14px;
}
.main .faqs-box {
  width: 100%;
}
.main .faqs-box .faq {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(100px);
  margin-bottom: 12px;
  cursor: pointer;
}
.main .faqs-box .faq:last-child {
  margin: 0;
}
.main .faqs-box .faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main .faqs-box .faq-head .faq-title {
  font-size: 16px;
  font-weight: 600;
  max-width: 90%;
}
.main .faqs-box .faq-head svg {
  transition: 0.3s linear;
}
.main .faqs-box .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s all;
}
.main .faqs-box .faq-body .faq-text {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4392156863);
}
.main .faqs-box .showFaq .faq-head svg {
  transform: rotate(180deg);
}
.main .faqs-box .showFaq .faq-body {
  max-height: 1000px;
  transition: 2s linear;
}
.main .profile {
  margin: 130px 0;
}
.main .profile-box {
  width: 57.7%;
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: start;
}
.main .profile-box .user-photo {
  border-radius: 50%;
  border: 12px solid rgba(170, 137, 248, 0.1019607843);
  margin-right: 28px;
}
.main .profile-box .user-photo .avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}
.main .profile-box .user-info {
  width: 100%;
}
.main .profile-box .user-info .input-box {
  margin-bottom: 24px;
}
.main .profile-box .user-info .input-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.main .profile-box .user-info .input-item .input-box {
  width: 188px;
  position: relative;
  margin: 0;
}
.main .profile-box .user-info .input-item .input-box svg {
  position: absolute;
  top: 8px;
  right: 16px;
  cursor: pointer;
}
.main .profile-box .user-info .input-item .gender {
  display: flex;
}
.main .profile-box .user-info .input-item .gender-btn {
  margin-right: 20px;
  cursor: pointer;
}
.main .profile-box .user-info .input-item .gender-btn:last-child {
  margin: 0;
}
.main .profile-box .user-info .input-item .gender-btn input {
  display: none;
}
.main .profile-box .user-info .input-item .gender-btn span {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: rgba(170, 137, 248, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .profile-box .user-info .input-item .gender-btn input:checked ~ span {
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}
.main .profile-box .user-info .text-box {
  margin: 24px 0;
}
.main .profile-box .user-info .user-save__btn {
  width: 220px;
  height: 40px;
}
.main .profile-info {
  width: 40.65%;
}
.main .profile-info .info-box {
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
}
.main .profile-info .info-box .theme {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(222, 150, 249, 0.1019607843);
  padding: 12px 16px;
  border-radius: 12px;
}
.main .profile-info .info-box .theme-title {
  font-size: 16px;
  font-weight: 700;
}
.main .profile-info .info-box .theme-switch {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
}
.main .profile-info .info-box .theme-switch .switch {
  margin: 0 12px;
}
.main .profile-info .info-box .switch {
  min-width: 24px;
  height: 6px;
  border-radius: 31px;
  background: #DE96F9;
  position: relative;
  transition: 1s all;
  cursor: pointer;
}
.main .profile-info .info-box .switch .active-switch {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s all;
  z-index: 5;
}
.main .profile-info .info-box .switch:hover .active-switch {
  transform: scale(1.1) translateY(-50%);
}
@keyframes animSwitch {
  from {
    transform: scale(1) translateY(-50%);
  }
  to {
    transform: scale(1.3) translateY(-50%);
  }
}
.main .profile-info .info-box .active .active-switch {
  left: 15px;
  background: #AA89F8;
}
.main .profile-info .info-box .info-item {
  padding: 17px 0;
  border-bottom: 1px solid #D0D2D2;
}
.main .profile-info .info-box .info-item:last-child {
  padding-bottom: 0;
}
.main .profile-info .info-box .info-item:last-child {
  border: none;
}
.main .profile-info .info-box .info-item .item-top .item-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 12px;
}
.main .profile-info .info-box .info-item .item-top .item-btn {
  font-size: 14px;
  font-weight: 600;
  color: #7837DF;
  background: transparent;
}
.main .profile-info .info-box .info-item .item-mid {
  padding-left: 36px;
  margin-top: 12px;
}
.main .profile-info .info-box .info-item .item-mid .memory {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.main .profile-info .info-box .info-item .item-mid .memory:last-child {
  margin: 0;
}
.main .profile-info .info-box .info-item .item-mid .memory .switch {
  margin-right: 12px;
}
.main .profile-info .info-box:last-child {
  width: 90%;
  margin-top: 50px;
  padding: 16px 24px;
}
.main .profile-info .info-box .edit-memory {
  width: 100%;
}
.main .profile-info .info-box .edit-memory__title {
  font-size: 20px;
  font-weight: 700;
}
.main .profile-info .info-box .edit-memory__close {
  cursor: pointer;
}
.main .profile-info .info-box .edit-memory .text-box {
  margin: 24px 0;
}
.main .profile-info .info-box .edit-memory .text-box textarea {
  height: 80px;
}
.main .profile-info .info-box .edit-memory button {
  width: 49%;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
}
.main .profile-info .info-box .edit-memory button:first-child {
  background: linear-gradient(#fff) padding-box, linear-gradient(to left, #de96f9, #d292f9, #c58ff9, #b88cf8, #aa89f8) border-box;
}
.main .profile-info .info-box .edit-memory button:first-child:hover {
  background-image: linear-gradient(to left, #de96f9, #d292f9, #c58ff9, #b88cf8, #aa89f8);
}
.main .price {
  margin: 115px 0;
}
.main .price .wrapper {
  padding: 0;
}
.main .price .title-text {
  text-align: center;
  color: #7837df;
  font-size: 32px;
}
.main .price .title-subtext {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-top: 4px;
}
.main .price-tab .tab-btns {
  display: flex;
  justify-content: center;
  margin: 36px 0;
}
.main .price-tab .tab-btns .tab-btn {
  cursor: pointer;
}
.main .price-tab .tab-btns .tab-btn input {
  display: none;
}
.main .price-tab .tab-btns .tab-btn span {
  background: transparent;
  border: 1px solid transparent;
  display: block;
  width: 200px;
  height: 36px !important;
  border-radius: 0;
  height: auto;
  opacity: 1;
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5019607843);
  position: relative;
  text-align: center;
}
.main .price-tab .tab-btns .tab-btn span::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #7837DF;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: 0.3s linear;
}
.main .price-tab .tab-btns .tab-btn input:checked ~ span {
  color: #000;
}
.main .price-tab .tab-btns .tab-btn input:checked ~ span::before {
  width: 100%;
}
.main .chat {
  height: 100vh;
  padding: 92px 0 215px;
  overflow: hidden;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
}
.main .chat-sidebar {
  width: 312px;
  margin-right: 12px;
}
.main .chat-sidebar .chat-sidebar-box {
  min-width: 312px;
  height: 100%;
  padding: 8px 8px 8px 16px;
}
.main .chat-sidebar .balance {
  background: rgba(255, 255, 255, 0.5019607843);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2), 0px 4px 0px 0px #F3F2F2;
}
.main .chat-sidebar .balance-title {
  font-size: 16px;
  font-weight: 700;
}
.main .chat-sidebar .balance-title svg {
  margin-right: 12px;
}
.main .chat-sidebar .balance-title span {
  color: #7837df;
}
.main .chat-sidebar .balance-info {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  color: rgba(238, 117, 113, 0.5019607843);
  vertical-align: middle;
  margin: 10px 0 8px;
  display: flex;
  align-items: center;
}
.main .chat-sidebar .balance-info span {
  font-size: 24px;
  color: #ee7571;
  margin-right: 4px;
  display: block;
}
.main .chat-sidebar .balance-text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5019607843);
  margin-top: 2px;
}
.main .chat-sidebar .balance-subtext {
  font-size: 12px;
  font-weight: 600;
  color: #EE7571;
  margin-top: 8px;
}
.main .chat-sidebar .balance_sheet .balance-info {
  color: rgba(0, 0, 0, 0.5019607843);
}
.main .chat-sidebar .balance_sheet .balance-info span {
  color: #000;
}
.main .chat-sidebar .new-chat__btn {
  margin: 24px 0;
  width: 100%;
  height: 40px;
}
.main .chat-sidebar .new-chat__btn span:last-child {
  display: none;
}
.main .chat-sidebar .your-chat {
  border-radius: 24px;
  padding: 16px;
  background: rgba(170, 137, 248, 0.1019607843);
}
.main .chat-sidebar .your-chat-title {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #aa89f8;
  display: flex;
  align-items: center;
}
.main .chat-sidebar .your-chat-title svg {
  margin-right: 12px;
}
.main .chat-sidebar .your-chat-active {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  margin-top: 16px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5019607843);
}
.main .chat-sidebar .your-chat-active .active-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.main .chat-sidebar .your-chat-active .liftgpt {
  padding: 6px;
  border-radius: 8px;
  background: rgba(170, 137, 248, 0.1019607843);
  font-size: 10px;
  font-weight: 600;
  color: #3A2360;
}
.main .chat-sidebar .chatList-container {
  height: 100%;
  padding-bottom: 210px;
}
.main .chat-sidebar .chatList-container .chatList-select {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: rgba(170, 137, 248, 0.1019607843);
  border-radius: 8px;
  height: 40px;
  padding: 10px;
}
.main .chat-sidebar .chatList-container .chatList-select span {
  font-size: 12px;
  font-weight: 600;
  max-width: 85%;
  display: block;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.main .chat-sidebar .chatList-container .chatList-select .liftGpt {
  max-width: auto;
  padding: 5px 4px;
  border-radius: 8px;
  font-size: 8px;
  font-weight: 600;
  color: #3a2360;
  background: rgba(170, 137, 248, 0.1019607843);
  margin-right: 24px;
}
.main .chat-sidebar .chatList-container .chatList-select svg {
  width: 16px;
}
.main .chat-sidebar .chatList {
  height: 100%;
  border-radius: 24px;
  padding: 16px 8px 16px 16px;
  background: rgba(170, 137, 248, 0.1019607843);
  margin-bottom: 219px;
  overflow: hidden;
}
.main .chat-sidebar .chatList-title {
  font-size: 20px;
  font-weight: 700;
  color: #AA89F8;
}
.main .chat-sidebar .chatList-title svg {
  margin-right: 12px;
}
.main .chat-sidebar .chatList-box {
  display: block;
  margin-top: 16px;
  max-height: 100%;
  padding-bottom: 40px;
  overflow-y: scroll;
}
.main .chat-sidebar .chatList-box::-webkit-scrollbar {
  width: 6px;
  background: rgba(0, 0, 0, 0.0509803922);
  border-radius: 5px;
}
.main .chat-sidebar .chatList-box::-webkit-scrollbar-thumb {
  width: 2px;
  background: #F3F2F2;
  border-radius: 3px;
  cursor: pointer;
}
.main .chat-sidebar .chatList-box .chatList-chat {
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 6px;
  transition: 0.3s all;
  cursor: pointer;
}
.main .chat-sidebar .chatList-box .chatList-chat:hover {
  background: rgba(255, 255, 255, 0.5333333333);
}
.main .chat-sidebar .chatList-box .chatList-chat:last-child {
  margin-bottom: 0;
}
.main .chat-sidebar .chatList-box .chatList-chat .dialog-title, .main .chat-sidebar .chatList-box .chatList-chat .dialog-text {
  font-size: 14px;
  font-weight: 600;
  max-width: 75%;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.main .chat-sidebar .chatList-box .chatList-chat .dialog-text {
  max-width: 100%;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5019607843);
  display: flex;
  align-items: center;
}
.main .chat-sidebar .chatList-box .chatList-chat .dialog-text img {
  margin-right: 6px;
}
.main .chat-sidebar .chatList-box .chatList-chat .liftGpt {
  font-size: 10px;
  font-weight: 600;
  color: #3A2360;
  padding: 6px;
  border-radius: 8px;
  background: rgba(170, 137, 248, 0.1019607843);
}
.main .chat-sidebar .chatList-box .activeChat {
  background: #fff;
}
.main .chat-sidebar .chatList-box .activeChat:hover {
  background: #fff;
}
.main .chat-box {
  width: 100%;
  height: 100%;
  padding-right: 16px;
  margin-top: 8px;
}
.main .chat-box .chat-head {
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5019607843);
}
.main .chat-box .chat-head .head-text {
  max-width: 90%;
  position: relative;
  border-radius: 50px;
  background: #F3F2F2;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.main .chat-box .chat-head .head-text .head-input {
  width: 450px;
  height: 100%;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-right: 12px;
  text-align-last: left;
  display: flex;
  align-items: start;
  justify-content: start;
}
.main .chat-box .chat-head .head-text label {
  cursor: pointer;
}
.main .chat-box .chat-head .delete-btn {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(238, 117, 113, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 24px;
}
.main .chat-box .chat-head .delete-btn:hover {
  background: rgba(238, 117, 112, 0.6039215686);
}
.main .chat-box .chat-head .close-btn {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(170, 137, 248, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .chat-box .chat-head .close-btn:hover {
  background: rgba(170, 137, 240, 0.6039215686);
}
.main .chat-box .chat-body {
  height: 100%;
  padding-bottom: 60px;
}
.main .chat-box .chat-empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 0;
}
.main .chat-box .chat-empty img {
  width: 75%;
  max-height: 75%;
  object-fit: contain;
}
.main .chat-box .chatMain {
  height: 100%;
  padding: 16px 0;
}
.main .chat-box .chatMain .chat-messages {
  max-height: 100%;
  overflow-y: scroll;
  padding-right: 16px;
}
.main .chat-box .chatMain .chat-messages::-webkit-scrollbar {
  width: 6px;
  border-radius: 5px;
  background: rgba(170, 137, 248, 0.1019607843);
}
.main .chat-box .chatMain .chat-messages::-webkit-scrollbar-thumb {
  width: 1px;
  background: #AA89F8;
  border-radius: 3px;
  cursor: pointer;
}
.main .chat-box .chatMain .chat-message {
  max-width: 95%;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.main .chat-box .chatMain .chat-message .chat-message__name {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5019607843);
}
.main .chat-box .chatMain .chat-message .chat-message__data {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.5019607843);
}
.main .chat-box .chatMain .chat-message .chat-message-info {
  margin: 8px 0;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}
.main .chat-box .chatMain .chat-message .chat-message__text {
  margin-top: 16px;
}
.main .chat-box .chatMain .chat-message .chat-message__text:first-child {
  margin-top: 0;
}
.main .chat-box .chatMain .chat-message .info-list {
  margin-top: 16px;
}
.main .chat-box .chatMain .chat-message .chat-message-photo {
  display: flex;
  flex-wrap: wrap;
}
.main .chat-box .chatMain .chat-message .chat-message-photo img {
  width: 140px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  margin: 12px 12px 0 0;
  cursor: pointer;
}
.main .chat-box .chatMain .myChate {
  margin-left: auto;
  align-items: end;
}
.main .chat-box .chatMain .myChate .chat-message-info {
  background: rgba(170, 137, 248, 0.1019607843);
}
.main .chat .chat-input {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 24px 0;
  background: #FFFFFF;
  z-index: 10000;
}
.main .chat .chat-input .subscription {
  width: 292px;
  margin-right: 20px;
}
.main .chat .chat-input .subscription-info {
  min-width: 292px;
  background-image: linear-gradient(to top, #7837df, #6833be, #582e9d, #49297e, #3a2360);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.2), 0px 4px 0px 0px #AA89F8;
  padding: 16px;
  border-radius: 24px;
  color: #fff;
}
.main .chat .chat-input .subscription-title {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5019607843);
}
.main .chat .chat-input .subscription-subtitle {
  font-size: 12px;
  font-weight: 300;
  margin: 4px 0;
}
.main .chat .chat-input .subscription-more__btn {
  font-size: 12px;
  font-weight: 600;
  color: #DE96F9;
  cursor: pointer;
}
.main .chat .chat-input .subscription-conditions {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
}
.main .chat .chat-input .subscription .liftGptPro-btn {
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  color: #DE96F9;
  display: flex;
  align-items: center;
  background: transparent;
  margin-left: 4px;
}
.main .chat .chat-input .subscription .liftGptPro-btn p:last-child {
  margin-top: 9px;
}
.main .chat .chat-input .subscription .liftGptPro-btn svg {
  margin-left: 4px;
}
.main .chat .chat-input-box {
  width: 100%;
}
.main .chat .chat-input-btns button {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(170, 137, 248, 0.1019607843);
  margin-right: 16px;
}
.main .chat .chat-input-btns button:last-child {
  margin: 0;
}
.main .chat .chat-input-btns button:hover {
  background: rgba(170, 137, 247, 0.3529411765);
}
.main .chat .chat-input-btns button svg {
  margin-right: 4px;
}
.main .chat .chat-input-btns .chat__btn {
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}
.main .chat .chat-input-btns .chat__btn:hover {
  background: #F3F2F2;
}
.main .chat .chat-input__text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5019607843);
  margin: 16px 0;
}
.main .chat .chat-input-container {
  position: relative;
}
.main .chat .chat-input-message {
  height: 80px;
  padding-right: 110px;
}
.main .chat .chat-input-message::-webkit-scrollbar {
  width: 0;
}
.main .chat .chat-input .attach-btn,
.main .chat .chat-input .send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 12px;
  right: 12px;
  transition: 0.3s all;
}
.main .chat .chat-input .attach-btn:hover,
.main .chat .chat-input .send-btn:hover {
  background: rgba(170, 137, 247, 0.3529411765);
}
.main .chat .chat-input .attach-btn {
  right: 60px;
}

.footer {
  background: #000000;
  color: #fff;
  padding: 60px 0;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.04);
  position: relative;
}
.footer-item .item-title {
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
}
.footer-item .nav-list li {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  transition: 0.3s all;
  margin-top: 8px;
}
.footer-item .nav-list li:hover {
  color: #fff;
}
.footer-item .nav-list li:first-child {
  margin-top: 10px;
}
.footer-item .item-list li {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.footer-item .item-list li .pay-list {
  margin-left: 12px;
}
.footer-item .write-support__btn {
  width: 242px;
  height: 54px;
  font-size: 16px;
  margin: 24px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 40%, rgb(255, 121, 253) 100%) padding-box, linear-gradient(to left, #de96f9, #d292f9, #c58ff9, #b88cf8, #aa89f8) border-box;
  border: 2px solid transparent;
}
.footer-item .socials .social {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.04);
  margin-right: 8px;
  transition: 0.3s all;
}
.footer-item .socials .social:last-child {
  margin-right: 0;
}
.footer-item .socials .social:hover {
  background: rgba(255, 255, 255, 0.3333333333);
}
.footer-item .footer-menu__btn svg:last-child {
  display: none;
}
.footer-item .footer-menu {
  display: none;
}
.footer .showFooterMenu .footer-menu__btn svg:first-child {
  display: none;
}
.footer .showFooterMenu .footer-menu__btn svg:last-child {
  display: block;
}
.footer .showFooterMenu .footer-menu {
  display: block;
}

.popUp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: transparent;
  cursor: pointer;
}
.popUp-content {
  width: 324px;
  border-radius: 24px;
  background: #fff;
  padding: 16px 24px;
  position: relative;
  animation: popUp-anim 0.3s linear;
  box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.3);
}
.popUp .popUp-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  color: #000;
}
.popUp button {
  width: 100%;
  height: 40px;
  font-size: 14px;
}
.popUp .form {
  margin: 28px 0 6px;
}
.popUp .or-register__text {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 16px;
}
.popUp .or-register a {
  margin-right: 16px;
}
.popUp .or-register a:last-child {
  margin-right: 0;
}
.popUp .register-result {
  font-size: 14px;
  font-weight: 300;
}
.popUp .register-result .info {
  margin: 16px 0;
}
.popUp .register-result .info__text:last-child {
  color: rgba(0, 0, 0, 0.5019607843);
  margin-top: 6px;
}
.popUp .register-result .result-info {
  margin-bottom: 28px;
}
.popUp .register-result .result-info strong {
  font-weight: 300;
}
.popUp .register-result .result-info span {
  color: rgba(0, 0, 0, 0.5019607843);
}
.popUp .login-pass-box .btns {
  margin-top: 16px;
}
.popUp .login-pass-box .btns .backTo {
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.popUp .login-pass-box .btns .backTo svg {
  margin-right: 12px;
}
.popUp .login-pass-box .btns .forgot-pass {
  font-size: 12px;
  font-weight: 600;
  color: #7837df;
  cursor: pointer;
}
.popUp .recover-pass {
  font-size: 14px;
}
.popUp .recover-pass strong {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  text-align: center;
}
.popUp .recover-pass .info__text {
  text-align: center;
  font-weight: 300;
  margin-bottom: 16px;
  text-align: center;
}
.popUp .recover-pass__result {
  margin-top: 28px;
}

.popUpHide {
  animation: popUp-anim-hide 0.5s linear !important;
}

@keyframes popUp-anim {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes popUp-anim-hide {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes menu-anim {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0;
  }
}
@keyframes heart-anim {
  from {
    transform: scale(1.5);
  }
  to {
    transform: scale(1);
  }
}
@media (max-width: 1600px) {
  .main .chat {
    padding-bottom: 165px;
  }
  .main .chat .chat-input {
    padding: 8px 0;
  }
  .main .chat .chat-input .subscription-info {
    padding: 14px;
  }
  .main .chat .chat-input .subscription-title {
    font-size: 12px;
  }
  .main .chat .chat-input .subscription-subtitle {
    font-size: 10px;
    margin: 4px 0;
  }
  .main .chat .chat-input .subscription-more__btn {
    font-size: 12px;
  }
  .main .chat .chat-input .subscription-conditions {
    font-size: 10px;
    margin-top: 6px;
  }
  .main .chat .chat-input__text {
    margin: 8px 0;
  }
  .main .chat .chat-input-btns button {
    font-size: 12px;
    padding: 4px 8px;
  }
  .main .chat .chat-input-btns button svg {
    width: 16px;
  }
}
@media (max-width: 1200px) {
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active {
    transform: translateX(-45%);
  }
  .main .tariffs-bg {
    object-fit: cover;
    object-position: left;
    height: 100%;
  }
  .main .tariffs-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .main .possibilities-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 0;
    margin-top: 36px;
  }
  .main .possibilities-box .possibilitie {
    width: 49%;
    margin-bottom: 20px;
  }
  .main .possibilities-box .possibilitie-img {
    width: 100%;
  }
  .main .possibilities-box .possibilitie-img img {
    width: 100%;
  }
  .main .possibilities-box .possibilitie-info .info-title {
    font-size: 16px;
  }
  .main .possibilities-box .possibilitie-info .info-text {
    font-size: 12px;
  }
  .main .possibilities-box .possibilitie:nth-child(1) {
    order: 2;
  }
  .main .possibilities-box .possibilitie:nth-child(1) .possibilitie-info {
    position: absolute;
    top: 10%;
    left: 90%;
    width: 350px;
  }
  .main .possibilities-box .possibilitie:nth-child(2) {
    order: 1;
    width: 75%;
    margin-left: auto;
    padding: 25px 0 0 50px;
  }
  .main .possibilities-box .possibilitie:nth-child(2) .possibilitie-info {
    padding-right: 20px;
  }
  .main .possibilities-box .possibilitie:nth-child(2) .possibilitie-info .info-title {
    font-size: 14px;
  }
  .main .possibilities-box .possibilitie:nth-child(2) .possibilitie-info .info-title strong {
    font-size: 20px;
  }
  .main .possibilities-box .possibilitie:nth-child(2) .possibilitie-info .try-free__btn {
    width: 211px;
    height: 36px;
  }
  .main .possibilities-box .possibilitie:nth-child(2) .possibilitie-img {
    margin-top: -60px;
    width: 164px;
  }
  .main .possibilities-box .possibilitie:nth-child(2) .possibilitie-img img {
    width: 164px;
  }
  .main .possibilities-box .possibilitie:nth-child(3) {
    order: 3;
    margin-top: 230px;
  }
  .main .possibilities-box .possibilitie:nth-child(3) .possibilitie-info {
    position: absolute;
    top: 40%;
    left: -65%;
  }
  .main .possibilities-box .possibilitie:nth-child(4) {
    order: 4;
    padding-top: 0;
    width: 100%;
  }
  .main .possibilities-box .possibilitie:nth-child(4) .picture {
    position: relative;
  }
  .main .possibilities-box .possibilitie:nth-child(4) .picture .possibilitie-img {
    width: 49%;
  }
  .main .possibilities-box .possibilitie:nth-child(4) .picture .possibilitie-img img {
    width: 100%;
  }
  .main .possibilities-box .possibilitie:nth-child(4) .picture .possibilitie-book {
    left: 25%;
    bottom: -15%;
  }
  .main .possibilities-box .possibilitie:nth-child(4) .picture .possibilitie-book img {
    width: 294px;
  }
  .main .possibilities-box .possibilitie:nth-child(4) .possibilitie-info {
    bottom: 20%;
    left: 51%;
  }
  .main .possibilities-box .possibilitie:nth-child(5) {
    order: 5;
    width: 100%;
    margin-top: 35px;
  }
  .main .possibilities-box .possibilitie:nth-child(5) .possibilitie-info {
    width: 350px;
  }
  .main .possibilities-box .possibilitie:nth-child(5) .possibilitie-img {
    position: absolute;
    top: -40%;
    left: 33%;
  }
  .main .possibilities-box .possibilitie:nth-child(5) .possibilitie-img img {
    width: 436px;
    height: auto;
  }
  .main .possibilities-box .possibilitie:nth-child(6) {
    order: 6;
    width: 100%;
    display: flex;
    justify-content: end;
    margin-top: -70px;
  }
  .main .possibilities-box .possibilitie:nth-child(6) .possibilitie-info {
    width: 350px;
    position: absolute;
    bottom: 15%;
    right: 28%;
  }
  .main .possibilities-box .possibilitie:nth-child(6) .possibilitie-img {
    transform: none;
    width: auto;
  }
  .main .possibilities-box .possibilitie:nth-child(6) .possibilitie-img:first-child {
    display: none;
  }
  .main .possibilities-box .possibilitie:nth-child(6) .possibilitie-img:last-child {
    display: block !important;
  }
  .main .possibilities-box .possibilitie:nth-child(6) .possibilitie-img img {
    width: 304px;
    height: auto;
    transform: rotateX(angle);
  }
  .main .possibilities-box .possibilitie:nth-child(7) {
    order: 6;
  }
  .main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info {
    padding: 16px;
  }
  .main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info .info-title {
    font-size: 14px;
  }
  .main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info .info-title strong {
    font-size: 26px;
  }
  .main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info .info-item .item-title {
    font-size: 14px;
  }
  .main .possibilities-box .possibilitie:nth-child(7) .possibilitie-info .info-item .item-text {
    font-size: 10px;
  }
  .main .possibilities-box .possibilitie:nth-child(8) {
    order: 8;
  }
  .main .possibilities-box .possibilitie:nth-child(8) .possibilitie-info {
    padding: 24px 16px;
  }
  .main .possibilities-box .possibilitie:nth-child(8) .possibilitie-info .info-title {
    font-size: 14px;
  }
  .main .possibilities-box .possibilitie:nth-child(8) .possibilitie-info .info-title strong {
    font-size: 26px;
  }
  .main .possibilities-box .possibilitie:nth-child(8) .possibilitie-info .info-list li {
    font-size: 12px;
  }
  .main .possibilities-box .possibilitie:nth-child(8) .possibilitie-info .info-list li::before {
    margin-right: 6px;
  }
  .main .possibilities-box .possibilitie:hover .possibilitie-img {
    transform: scale(1) !important;
  }
  .main .profile-box {
    width: 100%;
  }
  .main .profile-info {
    width: 100%;
    margin-top: 16px;
  }
  .main .profile-info .info-box:last-child {
    width: 100%;
  }
  .main .chat-sidebar {
    width: 260px;
  }
  .main .chat-sidebar .chat-sidebar-box {
    min-width: 260px;
  }
  .main .chat-sidebar .balance {
    padding: 16px;
  }
  .main .chat-sidebar .balance-title {
    font-size: 14px;
  }
  .main .chat-sidebar .balance-title svg {
    width: 16px;
    margin-right: 6px;
  }
  .main .chat-sidebar .balance-text {
    font-size: 10px;
  }
  .main .chat-sidebar .balance-subtext {
    font-size: 10px;
  }
  .main .chat-sidebar .balance-info {
    font-size: 14px;
    margin: 6px 0 2px;
  }
  .main .chat-sidebar .balance-info span {
    font-size: 20px;
  }
  .main .chat-sidebar .chatList-container {
    padding-bottom: 190px;
  }
  .main .chat .chat-input .subscription {
    width: 240px;
  }
  .main .chat .chat-input .subscription-info {
    min-width: 240px;
  }
  .main .chat .chat-input .subscription-title {
    font-size: 12px;
  }
  .main .chat .chat-input .subscription-subtitle {
    font-size: 10px;
    margin: 2px 0;
  }
  .main .chat .chat-input .subscription-more__btn {
    font-size: 10px;
  }
  .main .chat .chat-input .subscription-conditions {
    font-size: 10px;
    margin-top: 2px;
  }
  .main .chat-box .chat-head {
    padding: 6px 8px;
  }
  .main .chat-box .chat-head .head-text {
    max-width: 168px;
    padding: 0 6px;
    overflow: hidden;
  }
  .main .chat-box .chat-head .head-text .head-input {
    width: 116px;
    font-size: 16px;
  }
  .main .chat-box .chat-head .head-text label svg {
    width: 16px;
  }
  .main .chat-box .chat-head .delete-btn {
    min-width: 24px;
    height: 24px;
    margin: 0 24px;
  }
  .main .chat-box .chat-head .delete-btn svg {
    width: 16px;
  }
  .main .chat-box .chat-head .close-btn {
    min-width: 24px;
    height: 24px;
  }
  .main .chat-box .chat-head .close-btn svg {
    width: 16px;
  }
  .main .chat-box .chat-head .select {
    font-size: 12px;
  }
  .main .chat-box .chat-head .select-head {
    height: 28px;
    padding: 0 6px;
  }
  .main .chat-box .chat-head .select-head svg {
    width: 16px;
  }
}
@media (max-width: 992px) {
  .title-text {
    font-size: 22px;
  }
  .title-text p {
    font-size: 26px;
  }
  .header .logo img {
    width: 160px;
  }
  .main .wrapper .title-text {
    font-size: 46px;
  }
  .main .wrapper .title-subtext {
    font-size: 20px;
  }
  .main .wrapper .title-subtext span {
    display: block;
  }
  .main .wrapper .swiper-btns {
    display: none;
  }
  .main .wrapper .wrapper-slider {
    position: relative;
  }
  .main .wrapper .wrapper-slider .pagination {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .main .wrapper .wrapper-slider .pagination .pagination-box {
    width: 100%;
    height: 92%;
  }
  .main .wrapper .wrapper-slider .swiper-pagination {
    position: sticky;
    top: 70px;
    bottom: 200px;
    backdrop-filter: blur(12px);
    padding-top: 4px;
    height: 40px;
    width: 90%;
    margin: 0 auto 0;
    border-radius: 24px;
  }
  .main .wrapper .wrapper-slider .top-slider {
    background: rgba(255, 255, 255, 0.5019607843);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    position: relative;
    margin: 0 16px 20px;
    padding: 80px 24px 24px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .main .wrapper .wrapper-slider .top-slider .swiper {
    padding: 0 0 20px;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-wrapper {
    display: flex;
    align-items: start;
  }
  .main .wrapper .wrapper-slider .top-slider .wrapper-item {
    background: transparent !important;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    max-width: 624px;
    margin: 0 auto;
  }
  .main .wrapper .wrapper-slider .top-slider .wrapper-item .info-text {
    display: block;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active {
    width: 100%;
    transform: none;
  }
  .main .wrapper .wrapper-slider .big-slider {
    margin-top: 7px;
  }
  .main .wrapper .wrapper-slider .big-slider .swiper {
    padding-top: 0;
  }
  .main .wrapper .middle-form {
    margin-top: 24px;
  }
  .main .wrapper .wrapper-box {
    flex-direction: column;
  }
  .main .wrapper .wrapper-box .box-left {
    width: 100%;
    padding: 24px;
  }
  .main .wrapper .wrapper-box .box-left .left-title {
    font-size: 20px;
  }
  .main .wrapper .wrapper-box .box-left .left-text {
    font-size: 12px;
  }
  .main .wrapper .wrapper-box .box-left .left-img {
    width: 190px;
    margin: -40px 0 0;
  }
  .main .wrapper .wrapper-box .box-right {
    width: 100%;
    margin-top: 20px;
  }
  .main .wrapper .wrapper-box .box-right .right-item {
    width: 48.5%;
    padding: 20px 8px;
  }
  .main .wrapper .wrapper-box .box-right .right-item .right-title {
    font-size: 14px;
  }
  .main .wrapper .wrapper-box .box-right .right-item .right-text {
    font-size: 10px;
    margin-top: 8px;
  }
  .main .wrapper .wrapper-box .box-right .right-item:last-child {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 9px 12px 8px 20px;
    text-align: left;
  }
  .main .wrapper .wrapper-box .box-right .right-item:last-child img {
    margin-right: 28px;
    margin-top: -2.5%;
  }
  .main .tools .tools-box .tool {
    width: 33%;
    margin-top: 36px;
  }
  .main .tools .tools-box .tool-icon {
    width: 90px;
  }
  .main .tools .tools-box .tool-title {
    font-size: 14px;
    margin: 12px 0 4px;
  }
  .main .tools .tools-box .tool-text {
    font-size: 10px;
  }
  .main .tools .tools-box .tool .line {
    display: none;
  }
  .main .tariffs {
    margin: 36px 0;
  }
  .main .tariffs-box {
    margin: 36px 0 24px;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 12px;
  }
  .main .tariffs-box .tariff {
    display: flex;
    justify-content: space-between;
  }
  .main .tariffs-box .tariff-top {
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  .main .tariffs-box .tariff .sale {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 8px;
  }
  .main .tariffs-box .tariff .sale-text {
    font-size: 12px;
  }
  .main .tariffs-box .tariff-title {
    font-size: 20px;
  }
  .main .tariffs-box .tariff .info-text {
    font-size: 12px;
    margin-top: 6px;
  }
  .main .tariffs-box .tariff .info-text span {
    font-size: 10px;
  }
  .main .tariffs-box .tariff .price {
    display: flex;
    align-items: center;
    margin: 0;
    position: absolute;
    top: 24px;
    right: 24px;
    margin: 0;
  }
  .main .tariffs-box .tariff .price-info {
    font-size: 14px;
  }
  .main .tariffs-box .tariff .price-info span {
    font-size: 20px;
  }
  .main .tariffs-box .tariff .price .month {
    font-size: 14px;
  }
  .main .tariffs-box .tariff .info-list li {
    font-size: 12px;
  }
  .main .tariffs-box .tariff .info-list li:last-child {
    margin-bottom: 0;
  }
  .main .tariffs-box .tariff .choose__btn {
    width: 152px;
    height: 36px;
    font-size: 12px;
    margin-top: 34px;
  }
  .main .faqs {
    margin: 36px 0;
  }
  .main .faqs-title {
    width: 100%;
    margin-right: 0;
  }
  .main .faqs-title .title-text {
    min-width: auto;
    font-size: 26px;
  }
  .main .faqs-title .title-subtext {
    font-size: 14px;
    margin: 8px 0 24px;
  }
  .main .faqs-title .ask-question__btn {
    width: 200px;
    height: 36px;
    font-size: 12px;
  }
  .main .faqs .container {
    flex-direction: column;
  }
  .main .faqs-box {
    margin-top: 20px;
  }
  .main .faqs-box .faq-head .faq-title {
    font-size: 16px;
    font-weight: 600;
  }
  .main .faqs-box .faq-head svg {
    transition: 0.3s linear;
  }
  .main .price .title-text {
    font-size: 26px;
  }
  .main .price .title-subtext {
    font-size: 16px;
  }
  .main .price .tab-btns {
    margin: 24px 0;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }
  .header .menu-btn {
    display: block;
  }
  .header nav {
    display: none;
  }
  .header .menu-content nav {
    display: flex;
  }
  .header .liftGpt {
    display: none;
  }
  .header .logo {
    display: block !important;
  }
  .main .wrapper {
    padding-top: 124px;
  }
  .main .possibilities {
    overflow: hidden;
  }
  .main .possibilities-box {
    margin-top: 19px;
  }
  .main .possibilities-box .possibilitie {
    width: 100% !important;
    margin-bottom: 12px;
  }
  .main .possibilities-box .possibilitie:nth-child(1) {
    order: 2;
    justify-content: start;
  }
  .main .possibilities-box .possibilitie:nth-child(1) .possibilitie-img {
    margin-left: -10%;
    width: 70%;
    width: 100%;
    height: 200px;
  }
  .main .possibilities-box .possibilitie:nth-child(1) .possibilitie-info {
    position: absolute;
    top: 65%;
    left: auto;
    right: 0;
    width: 70%;
    padding: 16px;
    z-index: 10;
  }
  .main .possibilities-box .possibilitie:nth-child(2) {
    width: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
  }
  .main .possibilities-box .possibilitie:nth-child(2) .possibilitie-info {
    padding-right: 10px;
  }
  .main .possibilities-box .possibilitie:nth-child(2) .possibilitie-img {
    margin-top: 0;
    width: 142px;
    height: 220px;
    object-fit: contain;
  }
  .main .possibilities-box .possibilitie:nth-child(3) {
    order: 3;
    margin-top: 80px;
    display: flex;
    justify-content: end;
    position: relative;
    z-index: 5;
  }
  .main .possibilities-box .possibilitie:nth-child(3) .possibilitie-info {
    width: 70%;
    top: 15%;
    left: 0%;
    padding: 16px;
  }
  .main .possibilities-box .possibilitie:nth-child(3) .possibilitie-img {
    position: relative;
    right: -6%;
    height: 220px;
    border-radius: 24px 0 0 24px;
  }
  .main .possibilities-box .possibilitie:nth-child(3) .possibilitie-img:first-child {
    display: none;
  }
  .main .possibilities-box .possibilitie:nth-child(3) .possibilitie-img:last-child {
    display: block;
  }
  .main .possibilities-box .possibilitie:nth-child(4) {
    order: 4;
    padding-top: 0;
    width: 100%;
    margin-top: -20px;
  }
  .main .possibilities-box .possibilitie:nth-child(4) .picture {
    position: relative;
  }
  .main .possibilities-box .possibilitie:nth-child(4) .picture .possibilitie-img {
    width: 70%;
    margin-left: -10%;
  }
  .main .possibilities-box .possibilitie:nth-child(4) .picture .possibilitie-book {
    left: 5%;
    bottom: 10%;
    width: 254px;
  }
  .main .possibilities-box .possibilitie:nth-child(4) .possibilitie-info {
    bottom: -25%;
    left: auto;
    right: 0;
    width: 70%;
    padding: 16px;
  }
  .main .possibilities-box .possibilitie:nth-child(5) {
    margin-top: 100px;
  }
  .main .possibilities-box .possibilitie:nth-child(5) .possibilitie-info {
    width: 80%;
    padding: 16px;
  }
  .main .possibilities-box .possibilitie:nth-child(5) .possibilitie-img {
    position: absolute;
    top: -60%;
    left: auto;
    right: 0;
    width: 436px;
    object-position: right;
  }
  .main .possibilities-box .possibilitie:nth-child(6) {
    order: 6;
    width: 100%;
    display: flex;
    justify-content: end;
    margin-top: -20px;
    margin-bottom: 80px;
  }
  .main .possibilities-box .possibilitie:nth-child(6) .possibilitie-info {
    width: 100%;
    position: absolute;
    bottom: -35%;
    right: 0;
    padding: 16px;
  }
  .main .possibilities-box .possibilitie:nth-child(6) .possibilitie-img {
    margin-right: -16px;
    position: relative;
    z-index: 5;
    width: 155px;
    transform: translate(10px, -10px) !important;
  }
  .main .profile-box .user-photo .avatar {
    width: 100px;
    height: 100px;
  }
  .main .price {
    margin: 96px 0;
  }
  .main .price .tab-btns {
    margin: 32px 0;
  }
  .main .price .tab-btns .tab-btn {
    margin-right: 12px;
  }
  .main .price .tab-btns .tab-btn span {
    width: auto;
    height: 26px !important;
    font-size: 12px;
  }
  .main .price .tab-btns .tab-btn:last-child {
    margin-right: 0;
  }
  .main .chat {
    flex-direction: column;
    padding-top: 80px;
  }
  .main .chat-sidebar {
    width: 100%;
  }
  .main .chat-sidebar .chat-sidebar-box {
    min-width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0 11px;
  }
  .main .chat-sidebar .balance {
    display: none;
  }
  .main .chat-sidebar .chatList-container {
    width: 100%;
    margin-right: 0;
    padding-bottom: 0;
    position: relative;
  }
  .main .chat-sidebar .chatList-container .chatList-select {
    display: flex;
  }
  .main .chat-sidebar .chatList {
    padding: 0;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 98%;
    width: 100%;
    height: 100vh;
    background: #e9e6e6;
    z-index: 99;
    border-radius: 0 0 12px 12px;
    margin: 0;
    padding: 8px 5px 270px;
    display: none;
  }
  .main .chat-sidebar .chatList-title {
    display: none;
  }
  .main .chat-sidebar .chatList-box {
    margin: 0;
  }
  .main .chat-sidebar .new-chat__btn {
    display: none;
    width: 103px;
    height: 40px;
    font-size: 12px;
  }
  .main .chat-sidebar .new-chat__btn span:first-child {
    display: none;
  }
  .main .chat-sidebar .new-chat__btn span:last-child {
    display: block;
  }
  .main .chat-sidebar .your-chat {
    display: none;
  }
  .main .chat .chat-input {
    padding: 16px 0;
  }
  .main .chat .chat-input .container {
    padding: 0 11px;
  }
  .main .chat .chat-input-btns {
    position: relative;
    display: inline-block;
    width: auto;
  }
  .main .chat .chat-input-btns .btns-mob {
    width: auto;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
    padding: 6px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
  }
  .main .chat .chat-input-btns .btns-mob .active {
    margin-right: 4px;
  }
  .main .chat .chat-input-btns .btns-mob .active svg {
    width: 16px;
    margin-right: 4px;
  }
  .main .chat .chat-input-btns .btns {
    display: none;
    flex-direction: column;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 10;
    bottom: 0 0 8px 8px;
  }
  .main .chat .chat-input-btns .btns button {
    white-space: nowrap;
    margin: 0;
    min-width: 204px;
    box-shadow: none;
    border-radius: 0;
    background: #f2f2f2;
  }
  .main .chat .chat-input-btns .btns button:first-child {
    padding-top: 10px;
    border-radius: 0 8px 0 0;
  }
  .main .chat .chat-input-btns .btns button:last-child {
    border-radius: 0 0 8px 8px;
  }
  .main .chat .chat-input-btns .btns .chat__btn {
    background: #f2f2f2;
  }
  .main .chat .chat-input .subscription {
    display: none;
  }
  .main .chat .chat-input__text {
    font-size: 10px;
    margin: 12px 0;
  }
  .main .chat .chat-input-message {
    height: 60px;
    padding: 12px 90px 12px 16px;
    font-size: 12px;
  }
  .main .chat .chat-input .attach-btn,
  .main .chat .chat-input .send-btn {
    width: 30px;
    height: 30px;
  }
  .main .chat .chat-input .attach-btn svg,
  .main .chat .chat-input .send-btn svg {
    width: 16px;
  }
  .main .chat .chat-input .attach-btn {
    right: 54px;
  }
  .main .chat .chat-input .new-chat__btn {
    position: absolute;
    right: 11px;
    top: -24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .main .chat-box {
    padding: 0 11px;
  }
  .main .chat-box .chat-head {
    padding: 6px 8px;
  }
  .main .chat-box .chat-head .head-text {
    max-width: 168px;
    padding: 0 6px;
  }
  .main .chat-box .chat-head .head-text .head-input {
    width: 116px;
    font-size: 16px;
  }
  .main .chat-box .chat-head .head-text label svg {
    width: 16px;
  }
  .main .chat-box .chat-head .delete-btn {
    min-width: 24px;
    height: 24px;
    margin: 0 16px;
  }
  .main .chat-box .chat-head .delete-btn svg {
    width: 16px;
  }
  .main .chat-box .chat-head .close-btn {
    min-width: 24px;
    height: 24px;
  }
  .main .chat-box .chat-head .close-btn svg {
    width: 16px;
  }
  .main .chat-box .chat-head .select {
    font-size: 12px;
  }
  .main .chat-box .chat-head .select-head {
    height: 28px;
    padding: 0 6px;
  }
  .main .chat-box .chat-head .select-head svg {
    width: 16px;
  }
  .main .chat-box .chat-body {
    padding-bottom: 100px;
  }
  .main .chat-box .chatMain {
    padding: 8px 0;
  }
  .main .chat-box .chatMain .chat-messages {
    padding-right: 0;
  }
  .main .chat-box .chatMain .chat-messages::-webkit-scrollbar {
    width: 0;
  }
  .main .chat-box .chatMain .chat-messages .chat-message {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .main .chat-box .chatMain .chat-messages .chat-message .chat-message__name {
    font-size: 10px;
  }
  .main .chat-box .chatMain .chat-messages .chat-message .chat-message__data {
    font-size: 8px;
  }
  .main .chat-box .chatMain .chat-messages .chat-message .chat-message-info {
    margin: 6px 0;
    padding: 8px 12px;
  }
  .footer {
    padding: 32px 0;
  }
  .footer .container {
    flex-wrap: wrap;
  }
  .footer-item {
    width: 49%;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .footer-item .item-title {
    display: none;
  }
  .footer-item .nav-list {
    display: none;
  }
  .footer-item .nav-list li {
    font-size: 12px;
    margin-top: 8px;
  }
  .footer-item .item-list {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 4px;
  }
  .footer-item .item-list li {
    font-size: 12px;
    flex-direction: column;
    align-items: start;
  }
  .footer-item .item-list li .pay-list {
    margin: 12px 0 0;
  }
  .footer-item .write-support__btn {
    width: 176px;
    height: 36px;
    font-size: 12px;
    margin: 12px 0;
  }
  .footer-item .socials .social {
    width: 32px;
    height: 32px;
  }
  .footer-item .socials .social img {
    width: 16px;
  }
  .footer-item:nth-child(2) {
    display: none;
  }
  .footer-item:last-child {
    width: 100%;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-item:nth-child(3) {
    display: flex !important;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    text-align: right;
  }
  .footer-item .footer-menu .nav-list {
    display: block;
  }
}
@media (max-width: 576px) {
  .header .menu-btn {
    display: block;
  }
  .header nav, .header .header-btns {
    display: none;
  }
  .header .menu-content {
    padding: 26px 16px;
    width: 98%;
  }
  .header .menu-content .header-btns {
    display: flex;
    flex-direction: column;
  }
  .header .menu-content .user-profile {
    padding: 12px;
    margin-top: 24px;
  }
  .header .menu-content .user-profile .avatar {
    width: 64px;
    height: 64px;
  }
  .header .menu-content nav .nav-list li {
    font-size: 14px;
    font-weight: 500;
    margin: 24px 0 0;
    padding: 9.5px 16px;
  }
  .header .menu-content nav .nav-list .active {
    color: #aa89f8;
  }
  .header .menu-content nav {
    display: flex;
  }
  .header .login-btn {
    display: flex;
  }
  .header .user-profile {
    display: none;
  }
  .main .wrapper {
    padding-top: 124px;
  }
  .main .wrapper .wrapper-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .main .wrapper-bg:first-child {
    display: none;
  }
  .main .wrapper-bg:last-child {
    display: block;
  }
  .main .wrapper .wrapper-slider .swiper-pagination-bullet {
    width: 80px;
    height: 26px !important;
    font-size: 12px;
    white-space: nowrap;
  }
  .main .wrapper .wrapper-slider .top-slider {
    padding: 62px 16px 20px;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper {
    padding: 0;
  }
  .main .wrapper .wrapper-slider .top-slider .wrapper-item {
    background: transparent !important;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    max-width: 624px;
    margin: 0 auto;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active {
    width: 100%;
    transform: none;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item {
    width: 100%;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item .item-title {
    font-size: 26px;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item .item-text {
    font-size: 12px;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item .more-details {
    margin: 16px 0;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item .item-list li svg {
    margin-top: -5px;
    margin-right: 8px;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item .item-form {
    display: flex;
    flex-direction: column;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item .item-form .input-box {
    width: 100%;
    margin: 0;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item .item-form .input-box input {
    height: 36px;
    font-size: 14px;
  }
  .main .wrapper .wrapper-slider .top-slider .swiper-slide-active .wrapper-item .item-form .form__btn {
    width: 100%;
    height: 36px;
    font-size: 12px;
    margin-top: 12px;
    background: #ee7571;
  }
  .main .wrapper .wrapper-slider .big-slider {
    margin-top: 7px;
  }
  .main .wrapper .middle-form {
    margin: 24px 0 0;
    flex-direction: column;
    padding: 16px;
    width: 100%;
    border-radius: 24px;
  }
  .main .wrapper .middle-form .input-box {
    margin: 0;
    width: 100%;
  }
  .main .wrapper .middle-form .input-box input {
    height: 36px;
    font-size: 14px;
  }
  .main .wrapper .middle-form .form__btn {
    width: 100%;
    height: 36px;
    font-size: 12px;
    margin-top: 12px;
  }
  .main .wrapper .wrapper-box {
    flex-direction: column;
  }
  .main .wrapper .wrapper-box .box-left {
    width: 100%;
    padding: 24px;
    position: relative;
  }
  .main .wrapper .wrapper-box .box-left .left-title {
    width: 75%;
  }
  .main .wrapper .wrapper-box .box-left .left-text {
    margin-top: 8px;
  }
  .main .wrapper .wrapper-box .box-left .left-text:nth-child(2), .main .wrapper .wrapper-box .box-left .left-text:nth-child(3) {
    width: 75%;
  }
  .main .wrapper .wrapper-box .box-left .left-img {
    width: 114px;
    margin: 0;
    position: absolute;
    top: 7px;
    right: 0;
  }
  .main .wrapper .wrapper-box .box-right {
    margin-top: 0;
  }
  .main .wrapper .wrapper-box .box-right .right-item {
    width: 100%;
    padding: 12px 8px;
    margin-top: 20px;
  }
  .main .wrapper .wrapper-box .box-right .right-item:last-child {
    padding: 12px 8px;
  }
  .main .wrapper .wrapper-box .box-right .right-item:last-child img {
    max-width: 110px;
    margin-right: 7px;
    margin-top: 0;
  }
  .main .tools .tools-box {
    align-items: start;
    margin-top: 16px;
  }
  .main .tools .tools-box .tool {
    width: 48%;
    margin-top: 8px;
  }
  .main .tools .tools-box .tool-icon {
    width: 80px;
  }
  .main .tools .tools-box .tool-title {
    margin: 6px 0 4px;
  }
  .main .tools .tools-box .tool-text br {
    display: none;
  }
  .main .tariffs {
    margin: 36px 0 24px;
  }
  .main .tariffs-bg:first-child {
    display: none;
  }
  .main .tariffs-bg:last-child {
    display: block;
    object-fit: contain;
    height: auto;
    top: -1%;
  }
  .main .tariffs-box .tariff {
    flex-direction: column;
    padding: 16px 16px 64px;
  }
  .main .tariffs-box .tariff-top {
    flex-direction: column;
  }
  .main .tariffs-box .tariff .sale {
    position: absolute;
    top: 16px;
    right: 16px;
    margin-top: 0;
  }
  .main .tariffs-box .tariff .price {
    top: auto;
    right: auto;
    bottom: 16px;
    left: 16px;
    height: 36px;
    margin: 0;
  }
  .main .tariffs-box .tariff .price-info {
    font-size: 14px;
  }
  .main .tariffs-box .tariff .price-info span {
    font-size: 20px;
  }
  .main .tariffs-box .tariff .price .month {
    font-size: 14px;
  }
  .main .tariffs-box .tariff .info-list li {
    font-size: 12px;
  }
  .main .tariffs-box .tariff .info-list li:last-child {
    margin-bottom: 0;
  }
  .main .tariffs-box .tariff .choose__btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    margin-top: 0;
  }
  .main .faqs {
    margin: 32px 0;
  }
  .main .faqs .container {
    flex-direction: column;
  }
  .main .profile {
    margin: 90px 0;
  }
  .main .profile-box {
    padding: 36px 16px;
    flex-direction: column;
    align-items: center;
  }
  .main .profile-box .user-photo {
    margin: 0 0 54px 0;
  }
  .main .profile-box .user-info {
    width: 100%;
  }
  .main .profile-box .user-info .input-box input {
    height: 30px;
    font-size: 12px;
  }
  .main .profile-box .user-info .input-item .input-box svg {
    width: 16px;
    height: 16px;
    top: 7px;
    right: 12px;
  }
  .main .profile-box .user-info .input-item .gender-btn span {
    width: 30px;
    height: 30px;
  }
  .main .profile-box .user-info .input-item .gender-btn span svg {
    width: 16px;
  }
  .main .profile-box .user-info .user-save__btn {
    width: 100%;
  }
  .main .profile-info .info-box {
    padding: 24px;
  }
  .main .profile-info .info-box .theme-title {
    font-size: 14px;
  }
  .main .profile-info .info-box .theme-switch {
    font-size: 12px;
  }
  .main .profile-info .info-box .info-item {
    padding: 16px 0;
  }
  .main .profile-info .info-box .info-item .item-top .item-title {
    font-size: 14px;
  }
  .main .profile-info .info-box .info-item .item-top .item-btn {
    font-size: 12px;
  }
  .main .profile-info .info-box .info-item .item-mid .memory {
    font-size: 12px;
  }
  .main .profile-info .info-box:last-child {
    width: 90%;
    margin-top: 50px;
    padding: 16px 24px;
  }
  .main .profile-info .info-box .edit-memory {
    width: 100%;
  }
  .main .profile-info .info-box .edit-memory__title {
    font-size: 20px;
    font-weight: 700;
  }
  .main .profile-info .info-box .edit-memory__close {
    cursor: pointer;
  }
  .main .profile-info .info-box .edit-memory .text-box {
    margin: 24px 0;
  }
  .main .profile-info .info-box .edit-memory .text-box textarea {
    height: 80px;
  }
  .main .profile-info .info-box .edit-memory button {
    width: 49%;
    height: 40px;
    font-size: 14px;
    font-weight: 700;
  }
  .main .profile-info .info-box .edit-memory button:first-child {
    background: linear-gradient(#fff) padding-box, linear-gradient(to left, #de96f9, #d292f9, #c58ff9, #b88cf8, #aa89f8) border-box;
  }
  .main .profile-info .info-box .edit-memory button:first-child:hover {
    background-image: linear-gradient(to left, #de96f9, #d292f9, #c58ff9, #b88cf8, #aa89f8);
  }
}
@media (max-width: 425px) {
  .main .wrapper .wrapper-slider {
    margin-top: 210px;
  }
}
@media (max-width: 360px) {
  .main .tariffs {
    margin: 36px 0 24px;
  }
  .main .tariffs-box .tariff {
    padding-bottom: 100px;
  }
  .main .tariffs-box .tariff .price {
    bottom: 60px;
  }
  .main .tariffs-box .tariff .choose__btn {
    width: 90%;
  }
}
.showElem {
  display: block !important;
}/*# sourceMappingURL=main.css.map */