@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
* {
  box-sizing: border-box;
}

body {
  background: rgb(239, 241, 250);
  font-family: "Sora", sans-serif;
  color: rgb(26, 25, 31);
  margin: 0;
  padding: 0;
}

h1 {
  margin: 0;
  padding: 0;
  margin-block-start: unset;
  margin-block-end: unset;
  margin-inline-start: unset;
  margin-inline-end: unset;
}

textarea:focus,
input:focus {
  outline: none;
}

a {
  color: rgb(104, 117, 255);
}

.container {
  max-width: 1360px;
  margin: 0 auto;
}
.container.bg_white {
  background: rgb(255, 255, 255);
  border-radius: 32px;
  padding: 40px;
}
.container.bg_black {
  background: rgb(26, 25, 31);
  padding: 24px 40px;
  border-radius: 32px;
  margin-top: 20px;
}
.container.bg_black.blue {
  background: rgb(104, 117, 255);
}
.container.bg_black_footer {
  background: rgb(26, 25, 31);
  padding: 24px 40px;
  border-radius: 32px;
  margin-top: 20px;
}
@media (max-width: 1360px) {
  .container {
    max-width: 1200px;
  }
}
.container.bg_choose {
  background: rgb(255, 255, 255) url(/assets/img/bg_choise.png) no-repeat 120px 100%;
  background-size: contain;
}
.container.bg_choose.pages {
  background: rgb(255, 255, 255) url(/assets/img/bg_choise.png) no-repeat 0 700px;
}
.container.meet {
  margin-bottom: 120px;
}
.container.seo_section {
  margin-bottom: 120px;
}
.container.padding_des {
  margin: 0 auto 60px;
}
.container.form_rtb {
  margin-top: 100px;
  margin-bottom: 100px;
}

.header_block {
  margin-bottom: 40px;
}
.header_block.mb_small {
  margin-bottom: 20px;
}
.header_block__title {
  font-size: 40px;
  font-weight: 600;
  padding: 4px 15px 10px 15px;
  width: max-content;
  background: rgb(255, 218, 139);
}
.header_block__title.payment {
  background: transparent;
}
.header_block__title.payment span {
  background: rgb(255, 218, 139);
  padding: 0 10px;
}
.header_block__description {
  margin-top: 10px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}

.btn {
  color: rgb(255, 255, 255);
  background: rgb(26, 25, 31);
  border-radius: 100px;
  padding: 24px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.btn.earning {
  background: rgb(113, 123, 239);
}

.header {
  padding: 20px 0;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__menu_item {
  text-decoration: none;
  color: rgb(26, 25, 31);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.header__butoon__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .formats_menu {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.header .formats_menu__image {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.header .formats_menu__image.active {
  transform: rotate(0deg);
}
.header .formats_menu__wrapper {
  display: none;
}
.header .formats_menu__wrapper.open {
  display: flex;
  flex-direction: column;
  background: rgb(255, 255, 255);
  padding: 10px 16px;
  border-radius: 24px;
  width: 160px;
  z-index: 100;
  box-shadow: 0 4px 20px 0 rgba(18, 21, 28, 0.12);
  margin-left: -20px;
  position: absolute;
  top: 20px;
}
.header .formats_menu__wrapper a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgb(26, 25, 31);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  padding: 10px 0;
  border-bottom: 1px solid rgb(235, 237, 247);
}
.header .formats_menu__wrapper a:last-child {
  border-bottom: unset;
}
.header .formats_mob {
  color: rgb(26, 25, 31);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.header .formats_mob_menu {
  display: none;
}
.header .formats_mob_menu.open {
  display: block;
}
.header .formats_mob_menu .menu_mobile__item__img {
  margin-left: 20px;
}

.main {
  padding: 24px 0 82px 0;
}
.main__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.main__image {
  max-width: 770px;
}
.main__image.desktop {
  display: block;
}
.main__image.mobile {
  display: none;
}
.main__image.pages {
  max-width: 590px;
}
.main__title {
  font-size: 140px;
  font-weight: 800;
  background: rgb(255, 218, 139);
  padding: 4px 14px;
}
.main__title.pages {
  background: transparent;
  font-size: 80px;
  line-height: 90px;
  padding: 0;
  margin-bottom: 34px;
}
.main__title.pages span {
  position: relative;
}
.main__title.pages span:before {
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  right: 0;
  bottom: 0;
  background: rgb(255, 218, 139);
  z-index: -1;
  width: 470px;
}
.main__title.pages.push_p {
  font-size: 70px;
  line-height: 71px;
}
@media (max-width: 1400px) {
  .main__title.pages.push_p {
    font-size: 50px;
    line-height: 51px;
  }
}
@media (max-width: 1000px) {
  .main__title.pages.push_p {
    font-size: 30px;
    line-height: 31px;
  }
}
.main__title.Advertisers {
  font-size: 50px;
}
.main__title_sub {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
}
.main__description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.main__content {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.main__content__item {
  border: 2px solid rgb(228, 230, 243);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  border-radius: 100px;
  gap: 8px;
}
.main__content__item__img {
  max-width: 20px;
}
.main__content__text {
  font-size: 16px;
  font-weight: 400;
}
.main__content__text span {
  color: rgb(113, 123, 239);
  font-weight: 600;
}
.main__button {
  padding: 36px 0;
  width: 275px;
  text-align: center;
}
.main__button__wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
}

.formats__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.formats__content_tab {
  display: none;
}
.formats__content_tab.active {
  display: flex;
  align-items: center;
}
.formats__image {
  max-width: 420px;
}
.formats__links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgb(245, 246, 251);
  padding: 40px 0;
  border-radius: 20px;
  color: rgb(190, 192, 212);
  width: 380px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}
.formats__links__item.active {
  color: rgb(104, 117, 255);
}
.formats__links__item.active .formats__links__img_active {
  display: block !important;
}
.formats__links__item.active .formats__links__img {
  display: none;
}
.formats__links__item .formats__links__img_active {
  display: none;
}
.formats__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.formats__list__item {
  display: flex;
  align-items: start;
  gap: 12px;
  max-width: 306px;
}
.formats__list__item__button {
  background: rgb(104, 117, 255);
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 40px 0;
  width: 100%;
  max-width: 306px;
  text-align: center;
  border-radius: 100px;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}
.formats__list__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.formats__list__text span {
  font-weight: 600;
  color: rgb(104, 117, 255);
}
.formats__list__img {
  position: relative;
  top: 2px;
}

.choose {
  padding-top: 120px;
}
.choose.rtb {
  padding-bottom: 120px;
}
@media (max-width: 1000px) {
  .choose.rtb {
    padding-bottom: 80px;
  }
}
.choose.pages {
  padding-top: 0;
}
.choose.pages.rtb {
  padding-bottom: 120px;
}
.choose__title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 50px;
}
.choose__title span {
  position: relative;
  color: rgb(255, 255, 255);
  background: transparent;
  padding: 3px 9px 3px 0;
  z-index: 1;
}
.choose__title span:before {
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  right: 0;
  bottom: 0;
  background: rgb(104, 117, 255);
  z-index: -1;
  transform: skewY(359.5deg);
}
.choose__title span.yellow {
  position: relative;
  background: transparent;
  padding: 3px 9px 3px 0;
  z-index: 1;
  color: rgb(26, 25, 31);
}
.choose__title span.yellow:before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  right: 0;
  bottom: 0;
  background: rgb(255, 218, 139);
  z-index: -1;
}
.choose__title.white {
  color: rgb(255, 255, 255);
}
.choose__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.choose__wrapper.blue {
  overflow: auto;
}
.choose__wrapper.blue .choose__item {
  min-width: 308px;
}
.choose__wrapper__tab__benefits {
  display: none;
}
.choose__wrapper__tab__benefits.active {
  display: block;
}
.choose__wrapper__tab {
  display: none;
}
.choose__wrapper__tab.active {
  display: flex;
  align-items: center;
  gap: 16px;
}
.choose__wrapper__tab__benefits__sub {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.choose__item {
  background: rgb(232, 234, 255);
  padding: 28px 20px;
  border-radius: 24px;
  width: 416px;
  height: 398px;
}
.choose__item.blue {
  background: rgb(148, 157, 255);
}
.choose__item.blue_second {
  background: rgb(104, 117, 255);
}
.choose__item.blue_second.small {
  background: rgb(232, 234, 255);
  height: 265px;
}
.choose__item.blue_second.small .choose__item__title {
  height: 35px;
}
.choose__item__img {
  margin-bottom: 24px;
}
.choose__item__title {
  color: rgb(26, 25, 31);
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  height: 60px;
}
.choose__item__title.white {
  color: rgb(255, 255, 255);
}
.choose__item__title.blue {
  color: rgb(31, 35, 77);
}
.choose__item__title.connect {
  height: 90px;
}
.choose__item__description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: rgb(75, 73, 85);
}
.choose__item__description.white {
  color: rgb(228, 230, 255);
}
.choose__item__description.blue {
  color: rgb(73, 78, 141);
}
.choose__item__img {
  background: rgb(26, 25, 31);
  border-radius: 50%;
  padding: 26px;
}
.choose__item__img.silver {
  background: rgb(178, 184, 255);
}
.choose__item__img.white {
  background: rgb(148, 157, 255);
}
.choose__item.yellow {
  background: rgb(255, 218, 139);
}

.join {
  padding: 120px 0;
}
.join.text {
  padding: 50px 0;
}
.join.pad_b {
  padding: 120px 0 60px 0;
}
.join__title {
  text-align: center;
  font-size: 80px;
  line-height: 100px;
  font-weight: 800;
  margin-bottom: 8px;
}
.join__title span {
  background: rgb(255, 218, 139);
  padding: 4px 14px;
}
.join__description {
  text-align: center;
  color: rgb(75, 73, 85);
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  width: 60%;
  margin: 0 auto 60px;
}
.join__button__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.payment__wrapper {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 60px;
}
.payment__item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: transparent;
  border: 4px solid rgb(232, 234, 255);
  color: rgb(113, 123, 239);
  border-radius: 100px;
  padding: 45px 0;
  width: 418px;
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
.payment__item__text {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
.payment__item__wrapper {
  display: flex;
  align-items: center;
}
.payment__description {
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 140px;
}

.reviews__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews__title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 60px;
}
.reviews__title span {
  position: relative;
  color: rgb(255, 255, 255);
  background: transparent;
  padding: 3px 5px 3px 0;
  z-index: 1;
}
.reviews__title span:before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  right: 0;
  bottom: 0;
  background: rgb(104, 117, 255);
  z-index: -1;
  transform: skewY(359.5deg);
}
.reviews__item {
  background: rgb(232, 234, 255);
  border-radius: 24px;
  padding: 24px 20px;
}
.reviews__item__description {
  color: rgb(26, 25, 31);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 38px;
  height: 200px;
}
.reviews__item__photo {
  max-width: 50px;
}
.reviews__item__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews__item__name {
  color: rgb(26, 25, 31);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.reviews__item__job {
  color: rgb(75, 73, 85);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.meet {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.meet__logo_title {
  display: flex;
  align-items: center;
  gap: 40px;
}
.meet__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.meet__title {
  color: rgb(26, 25, 31);
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}
.meet__date_wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.meet__date {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.meet__date__text {
  color: rgb(26, 25, 31);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.meet__location {
  display: flex;
  align-items: center;
  gap: 12px;
}
.meet__location__text {
  color: rgb(26, 25, 31);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.meet__link {
  padding: 40px 52px;
  font-size: 20px;
  line-height: 25px;
}

.faq.pages {
  padding-bottom: 120px;
}
.faq__item {
  background: rgb(232, 234, 255);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 8px;
}
.faq__item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__item__title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: rgb(26, 25, 31);
}
.faq__item__text {
  margin-top: 8px;
  color: rgb(75, 73, 85);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  display: none;
}
.faq__item__img {
  border-radius: 50%;
  background: rgb(214, 216, 242);
  padding: 12px 8px;
  cursor: pointer;
  transform: rotate(180deg);
}

.footer__wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 90px;
}
.footer__social_block {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer__social_link {
  text-decoration: none;
}
.footer__social_link__text {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
}
.footer__social_link__img {
  background: rgb(38, 37, 45);
  border-radius: 50%;
  padding: 16px;
  margin-bottom: 14px;
}
.footer__links__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding-bottom: 200px;
  border-top: 1px solid rgb(43, 42, 50);
  padding-top: 20px;
  width: 100%;
  margin: 0 auto;
  max-width: 400px;
}
.footer__links__item {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}
.footer__logo {
  text-decoration: none;
  color: rgb(255, 218, 139);
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
}
.footer__logo__text {
  color: rgb(152, 150, 164);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.footer__logo__date {
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.menu_mobile {
  display: none;
}
.menu_mobile__wrapper {
  display: none;
}

.contact {
  max-width: 1360px;
  margin: 0 auto;
}
.contact__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.contact__input {
  background: rgb(245, 246, 251);
  color: rgb(26, 25, 31);
  border-radius: 20px;
  padding: 32px 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  border: none;
  width: 100%;
}
.contact__input::placeholder {
  color: rgb(183, 186, 194);
}
.contact__button {
  background: rgb(225, 227, 249);
  color: rgb(192, 196, 238);
  border: none;
  width: 100%;
  margin-top: 50px;
}
.contact__button.active {
  cursor: pointer;
  background: rgb(113, 123, 239);
  color: rgb(255, 255, 255);
}
.contact textarea {
  resize: unset;
}

.popup {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999999;
}
.popup__content {
  border-radius: 40px;
  background: rgb(255, 255, 255);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 100%;
  max-width: 500px;
  padding: 40px;
}
.popup__content img {
  display: block;
  margin: 0 auto 54px;
  width: 100%;
  max-width: 123px;
}
.popup__content__title {
  text-align: center;
  color: rgb(26, 25, 31);
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 8px;
}
.popup__content__description {
  text-align: center;
  color: rgb(26, 25, 31);
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 28px;
}
.popup__content__button {
  background: rgb(113, 123, 239);
  width: 100%;
  display: block;
  text-align: center;
  padding: 36px 0;
}

.pages__tab__button {
  border-radius: 24px;
  padding: 26px 0;
  width: 100%;
  background: rgb(245, 246, 251);
  color: rgb(190, 192, 212);
  text-align: center;
  cursor: pointer;
}
.pages__tab__button.active {
  background: rgb(230, 232, 255);
  color: rgb(104, 117, 255);
  cursor: unset;
}
.pages__tab__button__benefits {
  border-radius: 24px;
  padding: 26px 0;
  width: 100%;
  text-align: center;
  cursor: pointer;
  background: rgb(46, 44, 54);
  color: rgb(165, 161, 179);
}
.pages__tab__button__benefits.active {
  background: rgb(239, 241, 250);
  color: rgb(26, 25, 31);
  cursor: unset;
}
.pages__tab__button__benefits.tab4.active {
  background: rgb(255, 255, 255);
  color: rgb(104, 117, 255);
  cursor: unset;
}
.pages__tab__button__benefits.first {
  background: rgb(148, 157, 255);
  color: rgb(216, 219, 255);
}
.pages__tab__button__benefits.first.active {
  background: rgb(239, 241, 250);
  color: rgb(26, 25, 31);
  cursor: unset;
}
.pages__tab__button.tab2.active {
  background: rgb(255, 218, 139);
  color: rgb(40, 34, 21);
  cursor: unset;
}
.pages__tab__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 80px;
}

.privacy .privacy_container {
  max-width: 1200px;
  background: rgb(255, 255, 255);
  border-radius: 32px;
  padding: 40px;
}
.privacy h1 {
  font-size: 36px;
  line-height: 38px;
}
.privacy h2 {
  font-size: 30px;
  line-height: 32px;
}
.privacy h3 {
  font-size: 26px;
  line-height: 28px;
}
.privacy h4 {
  font-size: 20px;
  line-height: 22px;
}
.privacy a,
.privacy li,
.privacy p {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}
.privacy li {
  padding: 5px 0;
}

.about_network__header {
  margin-bottom: 60px;
}
.about_network__header__title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  margin: 0 0 10px;
}
.about_network__header__title span {
  background: rgb(255, 218, 139);
  padding: 0 10px;
}
.about_network__header__description {
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
}
.about_network__title {
  color: rgb(113, 123, 239);
  font-size: 52px;
  line-height: 100%;
  font-weight: 600;
  margin-bottom: 30px;
}
.about_network__wrapper {
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  padding: 30px 0;
}
.about_network__image {
  width: 100%;
  max-width: 542px;
  object-fit: cover;
}
.about_network__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about_network__list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about_network__list__description {
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  max-width: 500px;
}
.about_network__list__description span {
  color: rgb(113, 123, 239);
  font-weight: 600;
}

.how_works {
  padding-top: 120px;
  background: url("/assets/img/Line_how_works.png") no-repeat center;
  background-size: contain;
}
.how_works__title {
  color: rgb(113, 123, 239);
  text-align: center;
  margin-bottom: 60px;
  font-size: 52px;
  font-weight: 600;
}
.how_works__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.how_works__wrapper.first {
  margin-bottom: 26px;
}
.how_works__item {
  background: rgb(232, 234, 255);
  border-radius: 24px;
  padding: 28px 20px;
}
.how_works__item__title {
  color: rgb(26, 25, 31);
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 8px;
}
.how_works__item__description {
  color: rgb(75, 73, 85);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.how_works__item__image {
  margin-bottom: 24px;
  max-width: 80px;
}
.how_works__item__wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.how_works__item__sub {
  background: rgb(113, 123, 239);
  border-radius: 24px;
  padding: 32px 23px 28px 31px;
}
.how_works__item__sub__description {
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
}

.about_safety {
  padding-top: 120px;
}
.about_safety__title {
  color: rgb(113, 123, 239);
  font-size: 52px;
  font-weight: 600;
}
.about_safety__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 97px;
}
.about_safety__wrapper {
  display: flex;
  align-items: self-start;
  gap: 32px;
}
.about_safety__item {
  background: rgb(0, 0, 0);
  border-radius: 24px 24px 33px 33px;
}
.about_safety__item__content {
  background: rgb(232, 234, 255);
  border-radius: 24px;
  padding: 28px 20px 58px 20px;
  max-height: 400px;
}
.about_safety__item__image {
  margin: 0 auto;
  display: block;
  height: 180px;
}
.about_safety__item__image__wrapper {
  height: 286px;
  padding: 49px 0 58px 0;
}
.about_safety__item__title {
  margin-bottom: 20px;
  color: rgb(26, 25, 31);
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  height: 50px;
}
.about_safety__item__description {
  color: rgb(75, 73, 85);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.about__item {
  display: flex;
  align-items: center;
  gap: 120px;
  justify-content: center;
}
.about__item.revers {
  flex-direction: row-reverse;
}
.about__item.start {
  align-items: self-start;
}
.about__item__title {
  color: rgb(26, 25, 31);
  font-size: 40px;
  line-height: 60px;
  font-weight: 600;
  margin-bottom: 20px;
}
.about__item__description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: rgb(75, 73, 85);
  max-width: 450px;
}
.about__item__description.first {
  margin-bottom: 20px;
}
.about__item__description li {
  padding: 5px 0;
}
.about__item__image {
  max-width: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

@media (max-width: 1360px) {
  .main__image {
    max-width: 670px;
  }
}
@media (max-width: 1000px) {
  .container {
    padding: 0 16px;
  }
  .container.bg_black {
    padding: 24px 16px;
  }
  .container.bg_black.pages {
    padding: 24px 0 24px 16px;
  }
  .container.bg_white {
    padding: 24px 0 24px 16px;
  }
  .container.about_c {
    background: rgb(255, 255, 255);
  }
  .container.meet {
    padding: 24px 16px;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 100px;
  }
  .container.padding_mob {
    padding: 24px 16px;
  }
  .menu_mobile {
    display: block;
    max-width: 24px;
  }
  .menu_mobile__wrapper {
    display: none;
    background: rgb(255, 255, 255);
    position: absolute;
    padding: 0 16px;
    border-radius: 24px;
    width: 100%;
    top: 70px;
    z-index: 100;
    box-shadow: 0 4px 20px 0 rgba(18, 21, 28, 0.12);
  }
  .menu_mobile__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 24px 0;
    border-bottom: 1px solid rgb(235, 237, 247);
    text-decoration: none;
  }
  .menu_mobile__item__text {
    color: rgb(26, 25, 31);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
  }
  .header {
    padding: 0;
  }
  .header__wrapper {
    position: relative;
  }
  .header__button__wrapper, .header__menu {
    display: none;
  }
  .main {
    padding: 0 0 40px 0;
  }
  .main__wrapper {
    flex-direction: column-reverse;
  }
  .main__title {
    font-size: 80px;
    text-align: center;
    width: 260px;
    margin: 0 auto;
  }
  .main__title.pages {
    font-size: 40px;
    line-height: 40px;
    width: auto;
  }
  .main__title.pages span::before {
    width: auto;
  }
  .main__title.Advertisers {
    font-size: 25px;
  }
  .main__title_sub {
    font-size: 30px;
    text-align: center;
    margin-bottom: 24px;
  }
  .main__image {
    width: 100%;
  }
  .main__image.desktop {
    display: none;
  }
  .main__image.mobile {
    display: block;
  }
  .main__button__wrapper {
    flex-direction: column;
  }
  .main__content__item {
    padding: 19px 16px;
    width: 161px;
  }
  .main__content__text {
    font-size: 12px;
  }
  .main__button {
    padding: 22px 0;
  }
  .join__title {
    font-size: 52px;
    line-height: 66px;
  }
  .join__description {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    margin: 0 auto 40px;
  }
  .join__button {
    padding: 28px 33px;
  }
  .footer__wrapper {
    flex-direction: column;
    gap: 60px;
  }
  .footer__logo__text {
    margin-top: 10px;
  }
  .footer__social_block {
    justify-content: space-between;
    width: 100%;
  }
  .footer__social_link__text {
    font-size: 14px;
  }
  .footer__links__item {
    font-size: 14px;
    line-height: 18px;
  }
  .header_block {
    margin-bottom: 32px;
  }
  .header_block.mb_small {
    margin-bottom: 22px;
  }
  .header_block__title {
    font-size: 24px;
    line-height: 30px;
    padding: 4px;
  }
  .header_block__title.w100 {
    max-width: 100%;
  }
  .header_block__description {
    font-size: 14px;
    line-height: 17px;
  }
  .choose {
    padding: 80px 0;
  }
  .choose__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 32px;
  }
  .choose__title .yellow.mob_p {
    background: rgb(255, 218, 139);
  }
  .choose__title .yellow.mob_p::before {
    content: none;
  }
  .choose__title span::before {
    left: -4px;
  }
  .choose__item {
    min-width: 315px;
    padding: 18px 20px;
    max-height: 330px;
  }
  .choose__item__img {
    margin-bottom: 14px;
    padding: 10px;
  }
  .choose__item__title {
    font-size: 16px;
    line-height: 20px;
    height: auto;
  }
  .choose__item__description {
    font-size: 14px;
    line-height: 18px;
  }
  .choose__wrapper__tab.active, .choose__wrapper__tab__benefits.active, .choose__wrapper {
    overflow: auto;
    justify-content: space-between;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: space-between;
  }
  .choose__wrapper__tab.active::-webkit-scrollbar, .choose__wrapper__tab__benefits.active::-webkit-scrollbar, .choose__wrapper::-webkit-scrollbar {
    display: none;
  }
  .choose .choose__wrapper__tab__benefits__sub {
    overflow: auto;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .choose .choose__wrapper__tab__benefits__sub::-webkit-scrollbar {
    display: none;
  }
  .choose__wrapper.blue .choose__item {
    min-width: 315px;
  }
  .payment {
    padding-right: 16px;
  }
  .payment__wrapper {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
  }
  .payment__item {
    padding: 23px 0;
    width: 328px;
  }
  .payment__item img {
    max-width: 65px;
  }
  .payment__description {
    margin-bottom: 80px;
  }
  .meet {
    gap: 60px;
  }
  .meet__wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .meet__title {
    font-size: 14px;
    line-height: 18px;
  }
  .meet__logo_title {
    flex-direction: column;
    gap: 5px;
  }
  .meet__logo_title.Affiliate img {
    position: relative;
    left: 40px;
  }
  .meet__date_wrapper {
    align-items: center;
  }
  .meet__link {
    padding: 28px 24px;
    font-size: 14px;
    line-height: 18px;
  }
  .faq__item__text {
    font-size: 14px;
    line-height: 18px;
  }
  .reviews__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 32px;
  }
  .reviews__item {
    min-width: 296px;
    height: 340px;
  }
  .reviews__item__description {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
    height: 220px;
  }
  .reviews__wrapper {
    overflow: auto;
    justify-content: space-between;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: space-between;
  }
  .reviews__wrapper::-webkit-scrollbar {
    display: none;
  }
  .formats__wrapper {
    flex-direction: column;
  }
  .formats__links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .formats__links__item {
    flex-direction: column;
    padding: 16px 10px;
    font-size: 12px;
    line-height: 15px;
    width: 160px;
  }
  .formats__content_tab {
    flex-direction: column;
  }
  .formats__image {
    margin-bottom: 24px;
    width: 100%;
  }
  .formats__list {
    gap: 16px;
  }
  .formats__list__text {
    line-height: 18px;
  }
  .formats__list__item__button {
    padding: 20px 0;
  }
  .contact__wrapper {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
  }
  .contact__input {
    padding: 24px 20px;
    font-size: 14px;
    line-height: 18px;
  }
  .popup__content {
    max-width: 328px;
    padding: 16px;
  }
  .popup__content img {
    margin: 0 auto 24px;
  }
  .popup__content__title {
    font-size: 24px;
    line-height: 30px;
  }
  .popup__content__description {
    font-size: 14px;
    line-height: 18px;
  }
  .popup__content__button {
    font-size: 14px;
    line-height: 18px;
  }
  .pages__tab__wrapper {
    flex-direction: column;
    max-width: 330px;
    justify-content: center;
  }
  .about_network {
    padding: 0 16px 0 0;
  }
  .about_network__header {
    margin-bottom: 32px;
  }
  .about_network__header__title {
    font-size: 24px;
    line-height: 30px;
  }
  .about_network__header__description {
    font-size: 14px;
    line-height: 18px;
    max-width: 300px;
  }
  .about_network__wrapper {
    flex-direction: column;
    padding: 0;
  }
  .about_network__image {
    margin-bottom: 24px;
  }
  .about_network__list {
    gap: 20px;
  }
  .about_network__list__description {
    font-size: 14px;
    line-height: 18px;
  }
  .about_network__title {
    font-size: 32px;
    text-align: center;
  }
  .how_works {
    padding-top: 80px;
    padding-bottom: 30px;
    background: url(/assets/img/Line_how_works.png) no-repeat center;
    background-size: cover;
  }
  .how_works__wrapper {
    overflow: auto;
    justify-content: space-between;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 16px;
  }
  .how_works__wrapper::-webkit-scrollbar {
    display: none;
  }
  .how_works__wrapper.first {
    margin-bottom: 16px;
  }
  .how_works__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .how_works__item {
    min-width: 300px;
    padding: 20px 16px;
  }
  .how_works__item__image {
    max-width: 40px;
    margin-bottom: 12px;
  }
  .how_works__item__title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 4px;
  }
  .how_works__item__description {
    font-size: 14px;
    line-height: 18px;
  }
  .how_works__item__wrapper {
    flex-direction: row;
  }
  .how_works__item__sub {
    min-width: 300px;
    padding: 60px 23px 28px 31px;
  }
  .about_safety {
    padding-top: 90px;
  }
  .about_safety__wrapper {
    overflow: auto;
    justify-content: space-between;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 16px;
    gap: 16px;
  }
  .about_safety__wrapper::-webkit-scrollbar {
    display: none;
  }
  .about_safety__header {
    margin-bottom: 30px;
    padding-right: 16px;
  }
  .about_safety__title {
    font-size: 32px;
    margin-bottom: 0;
    height: 30px;
  }
  .about_safety__logo {
    max-width: 40px;
    max-height: 40px;
  }
  .about_safety__item {
    min-width: 300px;
  }
  .about_safety__item__image {
    height: 120px;
  }
  .about_safety__item__image__wrapper {
    height: 175px;
    padding: 25px 0 25px 0;
  }
  .about_safety__item__content {
    padding: 16px;
  }
  .about_safety__item__title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .about_safety__item__description {
    font-size: 14px;
    line-height: 18px;
  }
  .about__wrapper {
    gap: 60px;
  }
  .about__item {
    flex-direction: column;
    gap: 40px;
    justify-content: center;
  }
  .about__item.revers {
    flex-direction: column;
  }
  .about__item.start {
    align-items: self-start;
  }
  .about__item__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .about__item__description {
    font-size: 14px;
    line-height: 18px;
    max-width: 450px;
  }
  .about__item__description.first {
    margin-bottom: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
