/* HEADER */
.header {
  padding: 6px 0;
}
.header-container {
  gap: 22px;
  height: 70px;
  justify-content: space-between;
}
.header-wrapper {
  width: 100%;
  /* max-width: 976px; */

  justify-content: space-around;
  gap: 13px;
}
.header-wrapper__ua {
  max-width: 1040px;
}
.header-wrapper__ru {
  max-width: 1020px;
}
.header-nav {
  position: relative;
}
.header-nav__list {
  gap: 10px;
}
/* .header-nav__list {
  gap: 26px;
} */
.header-nav__item-lang {
  position: relative;

  width: 50px;
  height: 23px;
}
.header-menu__sign {
  white-space: nowrap;
}
.header-nav__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 164%;
  color: #1c2b33;
  outline: none;
}
.header-menu {
  position: relative;
  gap: 20px;
}
.header-lang {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;

  padding-left: 6px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: height 0.3s ease;
  background: #fff;
  border-radius: 8px;
  z-index: 9;
}

.header-lang--active img {
  transition: transform 0.3s ease;
}
.header-lang--active {
  height: 62px;
}
.header-lang--active img {
  transform: rotate(180deg);
}
.header-lang__current {
  gap: 4px;
}
.header-lang__current img {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.header-lang__link {
  color: #1c2b33;
  transition: transform 0.3s ease, color 0.3s ease;
}
.header-lang__link:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}
.burger {
  display: none;
}
/* HEADER */

/* HERO */
.hero {
  position: relative;
  background: #1B2C36;
  background: -webkit-linear-gradient(90deg, rgba(27, 44, 54, 1) 0%, rgba(79, 121, 144, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(27, 44, 54, 1) 0%, rgba(79, 121, 144, 1) 100%);
  background: linear-gradient(90deg, rgba(27, 44, 54, 1) 0%, rgba(79, 121, 144, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1B2C36", endColorstr="#4F7990", GradientType=1);
  z-index: 1;
}

.hero::after,
.hero::before {
  position: absolute;
  content: '';

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  z-index: 2;
}

.hero::before {
  width: 853px;
  height: 563px;
  position: absolute;
  top: 0;
  left: -246px;

  background-image: url('../images/icons/meta-bg-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.hero::after {
  width: 805px;
  height: 723px;
  top: -230px;
  right: -300px;

  background-image: url('../images/icons/google-ads-hero-after.png');
  background-repeat: no-repeat;
}

.hero__fb-icon {
  display: none;
}

.hero__btn {
  display: flex;
}

.hero__btn--mob {
  display: none;

  white-space: nowrap;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 553px;

  position: relative;
  z-index: 10;

  align-items: center;
  justify-content: space-between;
}
.hero-wrapper {
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: start;
  justify-content: center;

  position: relative;
  z-index: 10;
}

.hero__btn {
  position: absolute;
  bottom: 0;

  transform: translateY(50%);
}

.hero-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;

  position: relative;
  bottom: -127px;
  width: 100%;
  max-width: 520px;

  display: flex;
}

.hero__img {
  display: flex;
  width: 48%;

  position: relative;
}

.hero__img:nth-child(1) {
  align-items: flex-end;
  justify-content: flex-end;

  position: relative;
}

.hero__img:nth-child(1)::before {
  display: block;
  content: '';
  width: 142px;
  height: 95px;

  position: absolute;
  bottom: 240px;
  left: -75px;
  z-index: inherit;

  background-image: url('../images/icons/meta-hero-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.hero__img:nth-child(1)::after {
  display: block;
  content: '';
  width: 76px;
  height: 67px;

  position: absolute;
  bottom: 116px;
  right: 6px;

  background-image: url('../images/icons/google-hero-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.hero__img:nth-child(2) {
  align-items: flex-start;
  justify-content: flex-start;

  margin-bottom: 168px;
}

.hero__img:nth-child(2)::after {
  display: block;
  content: '';
  width: 95px;
  height: 95px;

  position: absolute;
  left: 129px;
  bottom: 163px;

  background-image: url('../images/icons/tik-tok-icon.svg');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero__img:nth-child(3) {
  align-items: flex-start;
  justify-content: flex-end;
}

.hero__img:nth-child(3)::after {
  display: block;
  content: '';
  width: 154px;
  height: 27px;

  position: absolute;
  right: 80px;
  bottom: 20px;

  background-image: url('../images/icons/bigo-hero-icon.svg');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero__img:nth-child(4) {
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: -168px;
}

.hero__img:nth-child(4)::after {
  display: block;
  content: '';
  width: 47px;
  height: 47px;

  position: absolute;
  left: 175px;
  top: 85px;

  background-image: url('../images/icons/reddit-hero-icon.svg');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.hero__img1 {
  max-width: 100%;
  position: relative;
}

.hero__img2 {
  max-width: 100%;
  width: auto;
}

.hero__img3 {
  max-width: 100%;
  width: auto;
}

.hero__img4 {
  max-width: 100%;
  width: auto;
}

.hero-form {
  position: relative;

  z-index: 9;
}
.hero-form strong {
  font-weight: 700;
}
.hero-bg-img {
  position: absolute;

  height: auto;
}
.hero-bg-img:nth-of-type(1) {
  /* reddit */
  width: 57px;

  right: -127px;
  bottom: 140px;
  transform: rotate(15deg);
  z-index: 8;
}
.hero-bg-img:nth-of-type(2) {
  /* cocacola */
  width: 182px;
  right: -160px;
  bottom: 180px;
  z-index: 2;
}
.hero-bg-img:nth-of-type(3) {
  /* act */
  width: 190px;
  left: 30px;
  bottom: 70px;
}
.hero-bg-img:nth-of-type(4) {
  /* google ads */
  width: 74px;
  bottom: 270px;
  left: -20px;
  transform: rotate(-15deg);
}
.hero-text:nth-of-type(1) {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 28px;
  text-align: left;
  line-height: 100%;
  color: #fff;
}
.hero-text:nth-of-type(2) {
  margin-top: 20px;
  max-width: 460px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: left;
}
.hero-title {
  display: block;
  margin-top: 28px;
  max-width: 546px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 38px;
  line-height: 108%;
  color: #fff;
}
.hero-title__ua {
  font-size: 69px;
}
.hero-link {
  position: absolute;
  bottom: -30px;
}

.hero__image {
  position: absolute;
}

.hero__x-icon {
  width: 130px;
  height: 130px;

  position: absolute;
  bottom: 100px;
  left: -15px;
  z-index: 1;
}

.hero__tiktok-icon {
  width: 290px;
  height: 290px;

  position: absolute;
  bottom: 187px;
  right: -100px;
  z-index: 1;
}

.hero__meta-icon {
  display: none;
  width: 112px;
  height: 75px;
  
  position: absolute;
  right: -20px;
  bottom: 27px;
  z-index: 20;

  transform: rotate(15deg);
}
/* HERO */

/* platforms */
.platforms {
  padding: 100px 0;
}
.platforms-container {
  flex-direction: column;
}
.platforms-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 112%;
  color: #1c2b33;
}
.platforms-text {
  margin-top: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #1c2b33;
}
.platforms-list {
  margin-top: 32px;
  width: 100%;
  max-width: 960px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.platforms-text__bottom {
  margin-top: 30px;
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
}
.platforms__info-block {
  margin-top: 36px;
  padding: 22px 36px;

  background-color: #F2F5FF;

  border: 1px solid #C6D3FF;
  border-radius: 20px;

  text-align: center;
}

.platforms__info-block-title {
  margin: 0 0 12px 0;
  padding: 0;

  font-weight: 700;
  font-size: 24px;
  color: #1C2B33;
  line-height: 24px;
}
.platforms__info-block-text {
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  color: #1C2B33;
  line-height: 25px;
}
/* platforms */

/* advantages */
.advantages {
  margin-top: 130px;
  margin-bottom: 50px;
  /* padding: 50px 0; */
}
.advantages__title {
  margin-bottom: 24px;

  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
}
.advantages-container {
  width: 100%;
  max-width: 1345px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.advantages-list {
  width: 100%;
  max-width: 472px;

  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}

.advantages__img {
  width: 650px;
  text-align: center;
}
.advantages__img img {
  width: 470px;
  height: auto;
}
.advantages-list__item {
  padding: 20px 0;
  flex-direction: column;
  align-items: start;
  width: 100%;
}

.advantages-list__item {
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
}

.advantages-list__item:nth-of-type(1) {
  border-top: none;
  padding-top: 0;
}
.advantages-list__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: #141414;
}
.advantages-list__text {
  margin-top: 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  color: #141414;
}

.advantages__btn {
  white-space: nowrap;
}

@media screen and (max-width: 1450px) {
  .advantages-container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1050px) {
  .advantages-container {
    flex-wrap: wrap;
  }
  .advantages__img {
    width: 40%;
  }
  .advantages__button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .advantages__btn {
    width: auto;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .advantages {
    margin-top: 45px;
  }
  .advantages-container {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 558px) {
  .advantages__img {
    width: 100%;
  }

  .advantages__box {
    width: 100%;
  }
}
/* advantages */

/* who */
.who {
  padding: 50px 0;
}
.who-container {
  position: relative;
  margin-inline: auto;
  padding: 0 15px;
  max-width: 1320px;
  flex-direction: column;
}
.who-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: #1c2b33;
  text-align: center;
}
.who-text {
  margin-top: 26px;
  max-width: 460px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  color: #1c2b33;
  text-align: center;
}

.who-decor {
  position: absolute;
}
.who-decor:nth-of-type(1) {
  width: 179px;
  height: 119px;
  left: 0;
  top: 100px;
}
.who-decor:nth-of-type(2) {
  width: 320px;
  height: 320px;
  right: -60px;
  bottom: 200px;
  transform: rotate(18deg);
}
.who-swiper {
  position: relative;
  width: 100%;
  max-width: 1060px;
  margin: 50px 20px 16px 20px;
  padding: 100px 0;
  border-radius: 30px;
  height: auto;
  background: linear-gradient(150deg, #1c2b33 0%, #548199 100%);
}
.who-swiper__slide {
  width: 100%;
  padding: 0 60px;
  justify-content: space-between;
  gap: 10px;
}
.who-swiper__slide img {
  max-width: 289px;
}
.who-pagination {
  margin-top: 90px;
  width: 100%;
  height: auto;
  min-height: 56px;
  justify-content: center;
}
.who-btn {
  margin-top: 13px;
}
.swiper-pagination {
  margin-top: 30px;
  position: static;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}
.who-slide-btn {
  margin: 0 !important;
}
.swiper-pagination-bullets {
  max-width: 845px;
  margin: 0;
}
.who-slide-btn {
  width: auto;
  padding: 0 15px;
  min-width: 90px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #cbd2d9;
  border-radius: 50px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #141414;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active.who-slide-btn {
  background: #0038ff;
  border: 1px solid #cbd2d9;
  color: #fff;
}

/* who */
/* account */
.account {
  padding: 50px 0;
}
.account-container {
  flex-direction: column;
}
.account-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: #1c2b33;
  text-align: center;
}
.account-text {
  margin-top: 21px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #1c2b33;
}
.account-wrapper {
  margin-top: 50px;
  width: 100%;
  padding: 70px 100px;
  flex-direction: column;
  align-items: start;
  border: 1px solid #cbd2d9;
  border-radius: 30px;
}
.account-box {
  width: 100%;
  gap: 10px;
  justify-content: space-between;
  align-items: start;
}
.account-list {
  flex-direction: column;
  align-items: start;
  gap: 31px;
}
.account-list__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #000;
}
.account-list__item {
  padding-left: 34px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 17px;
  line-height: 165%;
  letter-spacing: -0.02em;
  color: #1c2b33;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px;
  background-image: url('../images/icons/done-icon.png');
}
.account-list:nth-of-type(2) .account-list__item {
  background-image: url('../images/icons/disable-icon.png');
}
.account-btn {
  margin-top: 40px;
}
/* account */

/* reviews */
.reviews {
  padding: 50px 0;
}
.reviews-container {
  flex-direction: column;
}
.reviews-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: #1c2b33;
}
.reviews-text {
  margin-top: 13px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #252525;
}
.reviews-list {
  margin-top: 60px;
  width: 100%;
  justify-content: space-between;
}
.reviews-list__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 14px;
}
.reviews-list__item-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-list__item-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews-list__item-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: 0.01em;
  color: #333e44;
}
.reviews-list__item-position {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 146%;
  letter-spacing: 0.02em;
  color: #30444e;
}
.reviews-list__item-text {
  max-width: 248px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 179%;
  color: #4a4a4a;
}
.reviews-list__item-border {
  height: 213px;
  width: 1px;
  border-left: 1px solid #cbd2d9;
}
.reviews-line {
  margin-top: 60px;
  width: 94%;
  border-top: 1px solid #cbd2d9;
}
/* reviews */

/* experience */
.experience {
  padding-top: 50px;
}
.experience-container {
  height: 760px;
  flex-direction: column;
  background-repeat: no-repeat;
  background-position: center 54px;
  background-size: 686px;
  background-image: url('../images/experience/experience-bg.png');
}
.experience-title {
  max-width: 800px;
  font-weight: 500;
  text-align: center;
}
.experience-form {
  margin-top: 100px;
}

/* experience */

/* form  */
.form {
  /* max-width: 367px; */
  margin-top: 32px;
  padding: 10px;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(28, 43, 51, 0.19);
  border-radius: 20px;
  background: var(--light-color);
}
.form__text {
  padding-left: 9px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 157%;
  text-align: left;
  color: #4a4a4a;
}
.form-wrapper {
  display: flex;
  width: 547px;
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0 10px;
}
.form-wrapper__label {
  width: 49%;
  display: flex;
  flex-direction: column;
}
.form-wrapper__label span {
  padding-left: 15px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 11px;
  line-height: 218%;
  color: #1c2b33;
}
.form-wrapper__input {
  padding: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  border: 1px solid #d8d8d8;
  border-radius: 100px;
  color: #000;
}
.form-wrapper__input::placeholder {
  color: #5e5e5e;
}
.form-wrapper__btn {
  width: 100%;
  height: 45px;
  /* max-width: 330px; */
  margin-top: 12px;
}
.form-wrapper-select {
  width: 49%;
  /* max-width: 330px; */
  flex-direction: column;
  align-items: start;
}
.form-wrapper-select span {
  padding-left: 15px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 11px;
  line-height: 218%;
  color: #1c2b33;
}
.form-wrapper-select__item {
  position: relative;
  width: 100%;
}
.form-input--full {
  width: 100%;
}
.form-wrapper-select__btn {
  position: relative;
  width: 100%;
  height: 45px;
  padding: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #5e5e5e;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  border-radius: 100px;
  gap: 12px;
  display: flex;
  justify-content: flex-start;
  transition: border 0.3s ease;
}
.form-wrapper-select__btn::before {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../images/icons/arrow-down.png');
}

.form-wrapper-select__btn--active {
  border-radius: 30px 30px 0 0;
  border-bottom: none;
}
.form-wrapper-select__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #d8d8d8;
  border-top: none;
  border-radius: 0 0 30px 30px;
  background: #fff;
  max-height: 0px;
  opacity: 0;
  overflow-y: auto;
  z-index: 10;
  transition: all 0.3s ease;
}
.form-wrapper-select__list--active {
  opacity: 1;
  max-height: 400px;
}
.form-wrapper-select__option {
  padding: 16px;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #5e5e5e;
}
.form-wrapper-select__option:hover {
  background: #f0f0f0;
}

/* form  */

/* FAQ */
.faq {
  padding: 50px 0;
}
.faq-container {
  flex-direction: column;
  align-items: flex-start;
}
.faq-list {
  margin-top: 64px;
  flex-direction: column;
}
.faq-list__border {
  width: 100%;
  border-top: 1px solid #d6d6d7;
}
.faq-list__item {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.faq-list__item-details h3 {
  padding: 37px 50px 37px 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #1c2b33;
  text-align: left;
}
.faq-list__item-text {
  padding: 0px 50px 20px 0;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 19px;
  line-height: 140%;
  letter-spacing: 0.03em;
  color: #1c2b33;
  text-align: left;
}
.faq-list__item-content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.6s;
}
.faq-list__item-body {
  overflow: hidden;
}
.faq-list__item-summary {
  width: 100%;
  color: inherit;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-list__item-summary::marker {
  list-style-type: none;
  content: '';
}
.faq-list__btn {
  position: absolute;
  top: 40px;
  right: 0px;
  transition: all 0.4s ease-in-out;
}
.faq-list__item-details[open] + .faq-list__item-content {
  display: grid;
  grid-template-rows: 1fr;
  transition-duration: 0.6s;
}
.faq-list__btn path {
  stroke: #1c2b33;
}
.faq-list__item-details[open] ~ .faq-list__btn {
  transform: rotate(180deg);
}
/* FAQ */

/* FOOTER */
.footer {
  padding: 100px 0;
  border-top: 1px solid #e6e6e6;
}
.footer-container {
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-box {
  max-width: 322px;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}
.footer-box p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #4a4a4a;
}

.footer-subtitle {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  color: #141414;
}
.footer-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #4a4a4a;
  cursor: pointer;
}
.footer-box:nth-of-type(3) .footer-link {
  text-decoration: none;
}
/* FOOTER */

/* thx page  */
.thx {
  position: relative;
  flex-direction: column;
  align-items: start;
}
.thx::after,
.thx::before {
  position: absolute;
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.thx::after {
  width: 10vw;
  min-width: 58px;
  height: 10vw;
  min-height: 53px;
  left: -30px;
  bottom: 200px;
  transform: rotate(15deg);
  background-image: url('../images/icons/google-ads-logo.png');
}
.thx::before {
  width: 13vw;
  min-width: 120px;
  height: 8vw;
  min-height: 75px;
  right: -80px;
  top: 80px;
  transform: rotate(-20deg);
  background-image: url('../images/icons/logos_meta-icon.png');
}

.thx-container {
  width: 100%;
  height: 85vh;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 558px;
  background-image: url('../images/thx-bg.png');
}
.thx-top {
  width: 100%;
  align-self: start;
  padding-top: 44px;
}
.thx-logo {
  width: 50px;
  height: 68px;
}
.thx-wrapper {
  width: 100%;
  max-width: 540px;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
.thx-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(3rem, 1.364rem + 4.36vw, 4.5rem);
  line-height: 114%;
  color: #1c2b33;
}
.thx-text {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 162%;
  text-align: left;
  color: #141414;
}
/* thx page  */

.tiktok-img {
  display: block;
  position: absolute;
  top: -7px;
  right: 231px;
  width: 338px;
}

.tiktok-img--mob {
  display: none;
  position: absolute;
}

.x-img {
  width: 150px;
  height: 150px;
  bottom: 80px;
  left: -17px;
  transform: rotate(4deg);
  position: absolute;
}
.fb-img {
  position: absolute;
  bottom: 30px;
  left: 0;
  transform: rotate(15deg);
}

.bigo-img {
    width: 193px;
    right: -218px;
    bottom: 80px;
    position: absolute;
    z-index: 8;
}

.google-img {
  position: absolute;
  width: 92px;
  left: 0px;
  top: -15px;
}

/* MEDIA 1106 */
@media screen and (max-width: 1140px) {
  .header {
    padding: 0;
  }
  .header-container {
    height: 75px;
    padding: 0 0 0 30px;
  }
  .header-logo {
    width: 50px;
    height: auto;
  }
  .header-wrapper {
    gap: 10px;
    visibility: hidden;
    height: 0;
    opacity: 0;
    position: fixed;
    top: 75px;
    right: 0;
    width: 450px;
    height: 100vw;
    padding: 50px 35px;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    background: #fff;
    z-index: 9;
    transition: height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  }
  .header-wrapper--active {
    display: flex;
    visibility: visible;
    opacity: 1;
    height: 92vh;
  }
  .header-nav__list,
  .header-menu {
    flex-direction: column;
    align-items: start;
    max-width: 340px;
    width: 100%;
  }
  .header-lang {
    padding: 0;
  }
  .header-lang--active {
    height: 70px;
  }
  .header-btn .btn-decor {
    width: 100%;
  }
  .header-btn .btn {
    width: 100%;
  }
  .header-nav__list a {
    font-size: 16px;
  }
  .burger {
    display: flex;
  }
  .hero {
  }
}
/* MEDIA 1270 */
@media screen and (max-width: 1270px) {
  .hero__x-icon {
    width: 80px;
    left: 0px;
  }
}

/* MEDIA 1050 */
@media screen and (max-width: 1050px) {
  .hero {
    padding-bottom: 186px;
  }
  .hero::after {
    display: none;
  }
  .hero__x-icon {
    display: none;
  }
  .hero__fb-icon {
    display: block;
    left: 0;
    bottom: 25px;
  }
  .hero__tiktok-icon {
    width: 208px;
    height: 208px;
    top: 30px;
    right: -76px;
    bottom: initial;
    transform: rotate(-15deg);
  }
  .hero__meta-icon {
    display: block;;
  }
  .hero-wrapper {
    width: auto;
    max-width: 100%;
  }
  .hero-container {
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 80px 40px 0 35px;
    height: auto;
  }
  .hero-text:nth-child(1) {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
  }
  .hero-title {
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
  }
  .hero__btn {
    display: none;
  }
  .hero__btn--mob {
    display: flex;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-box {
    height: 400px;

    flex-direction: column;
    gap: 11px;
    position: absolute;
    justify-content: center;
    bottom: -436px;
  }

  .hero__img:nth-child(1) {
    height: 200px;
  }

  .hero__img:nth-child(1)::before,
  .hero__img:nth-child(1)::after {
    display: none;
  }

  .hero__img:nth-child(2) {
    height: 178px;
    margin-bottom: 0;
    justify-content: flex-end;
  }

  .hero__img:nth-child(2)::after {
    display: none;
  }

  .hero__img:nth-child(3) {
    height: 218px;
    justify-content: flex-start;
  }

  .hero__img:nth-child(3)::after {
    display: none;
  }

  .hero__img:nth-child(4) {
    display: none;
  }
  
  .who {
  }
  .who-swiper__slide {
    flex-wrap: wrap;
    height: auto;
    align-items: center;
    justify-content: center;
  }
  .thx {
  }
  .thx::after {
    bottom: 400px;
  }
  .thx::before {
    right: -30px;
    top: 60px;
  }
  .thx-container {
    height: 85vh;
    padding-top: 30px;
    align-items: start;
    justify-content: center;

    background-position: center 286px;
    background-size: 440px;
  }
  .thx-top {
    justify-content: center;
  }
  .thx-wrapper {
    height: 100%;
    align-items: center;
    gap: 20px;
  }
  .thx-title {
    text-align: center;
  }
  .thx-text {
    text-align: center;
  }
  .thx-link {
    margin-top: auto;
  }
}
/* MEDIA 11050 */

/* MEDIA 960 */
@media screen and (max-width: 960px) {
  .hero {
    /* padding-bottom: 30px; */
  }
  .hero::after {
    display: none;
  }
  .hero-wrapper {
    max-width: 600px;
  }
  .hero-container {
    height: 100%;
    padding-top: 80px;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .tiktok-img--mob {
    display: block;
    position: absolute;
    top: 51px;
    right: -116px;
    width: 289px;
  }
  .google-img {
    display: none;
  }
  .fb-img {
    left: initial;
    bottom: initial;
    top: -21px;
    right: 105px;
  }
  .bigo-img {
    right: -110px;
  }
  /* .hero-box {
    justify-content: center;
  } */
  .hero-bg-img:nth-of-type(1) {
    right: 0;
  }
  .hero-bg-img:nth-of-type(2) {
    right: -50px;
  }
  .hero-bg-img:nth-of-type(3) {
    left: -40px;
  }
  .hero-bg-img:nth-of-type(4) {
    left: -90px;
  }
  .account {
  }
  .account-wrapper {
    padding: 30px;
  }
  .account-box {
    gap: 30px;
  }
  .account-list:nth-of-type(2) {
    width: 100%;
    max-width: 260px;
  }
  .reviews {
    padding: 50px 0;
  }
  .reviews-container {
    flex-direction: column;
  }
  .reviews-list {
    flex-direction: column;
    gap: 40px;
  }
  .reviews-list__item-border {
    display: none;
  }
  .reviews-line {
    display: none;
  }
  .experience {
  }
  .experience-container {
    height: 770px;
    background-position: center 84px;
  }
}
/* MEDIA 960 */

/* MEDIA 768 */
@media screen and (max-width: 768px) {
  .hero {
    padding-bottom: 50px;

    background: #65899D;
    background: -webkit-linear-gradient(146deg, rgba(101, 137, 157, 1) 0%, rgba(28, 43, 51, 1) 100%);
    background: -moz-linear-gradient(146deg, rgba(101, 137, 157, 1) 0%, rgba(28, 43, 51, 1) 100%);
    background: linear-gradient(146deg, rgba(101, 137, 157, 1) 0%, rgba(28, 43, 51, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#65899D", endColorstr="#1C2B33", GradientType=0);
  }
  .hero-wrapper {
    /* max-width: 366px; */
    width: 100%;
  }
  .fb-img {
    right: -13px;
  }
  .hero-container {
    justify-content: start;
    padding-top: 80px;
  }

  .hero-box {
    height: 250px;
    bottom: -220px;
    width: auto;
  }

  .tiktok-img {
    display: none;
  }

  .hero-bg-img {
    display: none;
  }

  .hero__img:nth-child(1) {
    height: 128px;
  }
  .hero__img:nth-child(2) {
    height: 98px;
  }
  .hero__img:nth-child(3) {
    height: 165px;
  }

  .reddit-img {
    display: block;
    left: -19px !important;
    right: initial !important;
    top: initial !important;
    bottom: -34px !important;
    transform: rotate(328deg) !important;
    right: initial !important;
  }

  .bigo-img {
    right: 0;
    width: 164px;
    bottom: -54px;
  }

  .hero-container {
    padding-bottom: 80px;
  }
  
  .hero-link {
    left: 40px;
  }
  .advantages {
  }
  .platforms {
    padding: 50px 0;
  }
  .platforms-list {
    justify-content: center;
  }

  .who {
  }
  .who-swiper {
    padding: 50px 0;
  }
  .who-decor {
    display: none;
  }
  .faq {
  }
  .faq-list__box {
    padding: 20px 40px 20px 33px;
  }
  .faq-list__btn {
    right: 24px;
  }
  .footer {
    padding: 50px 0;
  }
  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .footer-box {
    align-items: center;
  }
}
/* MEDIA 768 */

/* MEDIA 650 */

@media screen and (max-width: 650px) {
  .header {
  }
  .header-wrapper {
    width: 100%;
  }
  .header-menu {
    width: 100%;
    align-self: center;
    align-items: center;
  }
  .hero {
  }
  .hero-container {
    justify-content: start;
    padding-top: 80px;
  }
  .hero-link {
    width: 320px;
    font-size: 20px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -200px;
  }
  .account {
  }
  .account-wrapper {
    border: none;
    align-items: center;
  }
  .account-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  .account-list {
    align-items: center;
  }
  .account-list__item {
    padding: 0;
    padding-top: 26px;
    background-position: top center;
    text-align: center;
  }
  .account-btn {
    width: 320px;
    height: 63px;
    font-size: 20px;
  }
  .experience {
    padding: 50px 0;
  }
  .experience-container {
    height: auto;
    gap: 40px;

    background-image: none;
  }
  .experience-wrapper {
    width: 100%;
    align-items: center;
  }
  .experience-form {
    margin: 0;
  }
}
/* MEDIA 680 */
@media screen and (max-width: 680px) {
  .benefits__form {
    margin-top: 30px;
  }
  .form-wrapper {
    width: 100%;
    min-width: 320px;
  }
  .benefits__form-block {
    width: 100%;
    min-width: 320px;
  }
  .form-wrapper__label {
    width: 100%;
  }

  .form-wrapper .form-wrapper-select {
    width: 100%;
  }
  
}

/* MEDIA 450 */
@media screen and (max-width: 450px) {
  .btn {
    width: 320px;
    height: 63px;
    font-size: 20px;
  }
  .form {
  }
  .form-wrapper {
    width: 320px;
  }
  .form-wrapper__btn {
    height: 63px;
  }
  .hero {
    padding-bottom: 60px;
  }
  .hero-container {
    padding-top: 40px;
  }
  .hero-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    font-size: 39px;
  }
  .tiktok-img--mob {
    top: -8px;
  }
  .hero-text:nth-of-type(1) {
    font-size: 20px;
  }
  .hero-box {
    margin: 0 35px;
    justify-content: center;
  }
  .fb-img {
    top: -53px;
  }

  .mob-accent {
    display: block;
  }

  .hero-bg-img:nth-of-type(1) {
    left: -20px;
    bottom: -30px;
    transform: rotate(-15deg);
  }

  .hero-bg-img:nth-of-type(2),
  .hero-bg-img:nth-of-type(3) {
    display: none;
  }
  .hero-bg-img:nth-of-type(4) {
    left: 264px;
    bottom: 480px;
    transform: rotate(15deg);
  }
  .platforms {
    padding: 50px 0;
  }
  .platforms-list {
    flex-direction: column;
  }
  .advantages {
  }
  .advantages-btn {
    width: 100%;
    font-size: 20px;
    height: 63px;
  }
  .account {
    padding: 0;
  }
  .account-wrapper {
    margin-top: 20px;
  }
  .who {
  }
  .who-swiper {
    padding: 0px;
    margin: 30px 0;
  }
  .who-swiper__slide {
    width: 100% !important;
    padding: 24px;
  }
  .swiper-pagination {
    margin-top: 0;
  }
  .who-slide-btn {
    height: 38px;
    font-size: 12px;
  }
  .reviews {
    padding: 0;
  }
  .faq {
    padding: 44px 0 0 0;
  }
  .faq-list__box {
    padding: 15px 40px 15px 15px;
  }
  .faq-list__btn {
    top: 40px;
    right: 0;
  }
  .footer {
  }
  .footer-social {
    flex-direction: column;
  }
  .thx {
  }
  .thx::after {
    left: -18px;
    transform: rotate(0deg) scaleX(-1);
  }
  .thx::before {
    right: -60px;
    top: 30px;
  }
  .thx-container {
    padding-top: 10px;
    background-position: center 340px;
    background-size: 290px;
  }
  .thx-top {
    padding-top: 24px;
  }
  .thx-wrapper {
    gap: 10px;
  }
}

@media screen and (max-width: 1310px) {
  .x-img {
    width: 110px;
    height: 150px;
    bottom: 80px;
    left: -17px;
    transform: rotate(4deg);
  }
  
}

@media screen and (max-width: 1230px) {
  .x-img {
    display: none;
  }
}

/* ABOUT */
.about {
  margin-top: 243px;
}

.about strong {
  font-weight: 600;
}

.about-container {
  width: 100%;
  max-width: 1105px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.about-title {
  margin-bottom: 16px;

  font-weight: 500;
  font-size: 32px;
  line-height: 36px;
}

.about-text {
  margin: 6px 0;

  font-size: 14px;
  line-height: 25px;
}

.about-box:nth-child(1) {
  width: 60%;
}

.about-box:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
}

.about-box img {
  width: auto;
  height: 265px;
}

@media screen and (max-width: 1000px) {
  .about-box img {
    height: 150px;
  }
}

@media screen and (max-width: 768px) {
  .about {
    text-align: center;
  }
  .about-box:nth-child(1) {
    width: 100%;
  }

  .about-box:nth-child(2) {
    display: none;
  }
}

@media screen and (max-width: 1050px) {
  .about {
    margin-top: 372px;
  }
}

@media screen and (max-width: 760px) {
  .about {
    margin-top: 270px;
  }
}

/* BENEFITS */
.benefits {
  margin-top: 94px;
  padding: 0 35px;
}

.benefits-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;

  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
}

.benefits__title {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
}

.benefits__list {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 16px;
}

.benefits__item {
  display: flex;
  justify-content: flex-start;
  width: 46%;
}

.benefits__btn {
  display: flex;
  align-items: flex-start;

  width: auto;
  padding: 16px;

  border: 1px solid #D8D8D8;
  border-radius: 100px;

  cursor: default;
  outline: none;

  font-weight: 500;
  font-size: 14px;
  color: #1C2B33;
}

.benefits__btn:active,
.benefits__btn:hover {
  outline: none;
  border: 1px solid #D8D8D8;;
}

.benefits__icon {
  margin-right: 4px;
}

/* .benefits__form-block {
  width: 542px;
  min-width: 542px;;
} */

.benefits__form {
  width: 100%;;
  max-width: 543px;

  background-color: #F7F9FF;
}

@media screen and (max-width: 1400px) {
  .benefits-container {
    max-width: 100%;
  }

  .benefits__item {
    width: 100%;
  } 
}

@media screen and (max-width: 1200px) {
  .benefits-container {
    flex-direction: column;
    align-items: center;
  }

  .benefits__item {
    width: 49%;
  } 
}

@media screen and (max-width: 878px) {
  .benefits__box {
    display: flex;
    justify-content: center;
  }
  .benefits__list {
    flex-direction: column;
    justify-content: center;
  }

  .benefits__item {
    display: flex;
    width: 100%;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 680px) {
  .benefits__btn {
    width: 100%;
    justify-content: center;
  }
}

/* TERMS */
.terms {
  margin-top: 90px;
  padding: 0 35px;
}

.terms__title {
  margin-bottom: 19px;

  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  color: #1C2B33;
  text-align: center;
}

.terms__box {
  max-width: 547px;
}

.terms__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
}

.terms__wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 30px;
}

.terms__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.terms__item {
  display: flex;
  padding: 10px;
  gap: 10px;

  font-weight: 400;
  font-size: 17px;
  line-height: 21px;
  color: #000;
}

.terms__icon {
  min-width: 20px;
}

.terms .benefits__form {
  margin-top: 0;
}

@media screen and (max-width: 960px) {
  .terms__wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 558px) {
  h2,
  h2.title {
    text-align: center;
  }

  .faq .title {
    align-self: center;
  }

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