@charset "UTF-8";

/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article>*+* {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Exo 2", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
  background-color: #0D0F1F;
  color: #828AA6;
  overflow-x: hidden;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.no-scroll {
  overflow: hidden;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-decoration: none;
  border: 5px solid #FFC400;
  border-radius: 50px;
  width: fit-content;
}

.btn span {
  padding: 17px 30px;
  border-radius: 50px;
  font-size: 16px;
  line-height: 16px;
  background-color: #F6E019;
  color: #1B1B1B;
  font-weight: 700;
  transition: all 0.3s ease 0s;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  background: linear-gradient(97.14deg, #FFC400 8.93%, #FFF700 92.49%);
  z-index: -1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50px;
  background: linear-gradient(0deg, #F6E019, #F6E019), radial-gradient(22.12% 101.05% at 13.59% 0.89%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(26.27% 101.79% at 89.17% 100.89%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -2;
  box-shadow: 0px 0px 30px 0px #FFA600;
}

.btn:hover span {
  box-shadow: 0 0 40px rgb(255, 166, 0);
}

.title {
  color: #fff;
  font-size: 40px;
  text-align: center;
  font-weight: 300;
  line-height: 120%;
  position: relative;
  z-index: 1;
}

.title span {
  font-weight: 700;
  color: #F6E019;
}

.header {
  padding: 20px 0 15px 0;
}

.header__wrapper {
  padding: 15px;
  background-color: #14192D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px;
}

.header__logo {
  width: 177px;
  height: 43px;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__logo svg {
  width: 100%;
  height: auto;
}

.header__left {
  display: flex;
  align-items: center;
}

.header__nav {
  margin-left: 20px;
}

.header__list {
  display: flex;
  align-items: center;
}

.header__item:not(:last-child) {
  margin-right: 60px;
}

.header__link {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease 0s;
}

.header__link:hover {
  color: #F6E019;
}

.header__right {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.header__btn {
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.header__btn_white {
  background-color: #fff;
  color: #282828;
  padding: 10px 17px;
  border-radius: 18px;
}

.header__btn_white svg {
  display: none;
}

.header__btn_white:hover {
  background-color: #F6E019;
}

.header__btn_clear {
  color: #D7D7D7;
}

.header__btn_clear svg {
  margin-top: 2px;
  margin-right: 8px;
  width: 18px;
  height: 18px;
}

.header__btn_clear:hover {
  color: #F6E019;
}

.header__btn:not(:last-child) {
  margin-right: 30px;
}

.main {
  padding: 20px 0 70px 0;
}

.main__wrapper {
  display: flex;
  justify-content: space-between;
}

.main__content {
  padding: 80px 0 30px 0;
}

.main__title {
  font-size: 48px;
  line-height: 120%;
  color: #fff;
  font-weight: 300;
}

.main__title span {
  font-weight: 800;
}

.main__title .red {
  color: #FF274E;
}

.main__title .green {
  color: #00968D;
}

.main__info {
  margin-top: 40px;
  display: flex;
}

.main__item {
  padding: 20px 20px;
  border-radius: 10px;
  background: linear-gradient(40deg, #14192D 50%, rgba(246, 224, 25, 0.2) 100%);
}

.main__item:not(:last-child) {
  margin-right: 10px;
}

.main__name {
  color: #fff;
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
}

.main__name span {
  font-size: 32px;
}

.main__descr {
  font-weight: 400;
  margin-top: 7px;
}

.main__warning {
  margin-top: 20px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  color: #00968D;
}

.main__warning svg {
  margin-top: 1px;
  filter: drop-shadow(0px 0px 12px rgb(1, 178, 167));
  margin-right: 8px;
}

.main__btn {
  margin-top: 40px;
}

.main__img {
  position: relative;
  padding-right: 25px;
}

.main__img::before {
  content: "";
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-57%);
  width: 700px;
  height: 171px;
  background: url("/wp-content/themes/bestprop/promo/img/main-before.svg") center center/cover no-repeat;
  z-index: -1;
}

.main__img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-55%);
  width: 800px;
  height: 500px;
  background: radial-gradient(50% 50% at 50% 50%, #373E5C 0%, rgba(32, 36, 67, 0) 100%);
  backdrop-filter: blur(17px);
  z-index: -2;
}

.main__img_mob {
  display: none;
}

.portfolio {
  padding: 40px 0 80px 0;
}

.portfolio__body {
  margin-top: 60px;
  display: flex;
  position: relative;
}

.portfolio__body::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 30%;
  width: 1200px;
  height: 700px;
  background: radial-gradient(50% 50% at 50% 50%, #17324B 0%, rgba(32, 36, 67, 0) 100%);
  z-index: -2;
}

.portfolio__slider {
  overflow: hidden;
  margin: -15px;
  padding: 15px;
  position: relative;
  width: 55%;
  touch-action: pan-y;
}

.portfolio__wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  max-height: 540px;
}

.portfolio__slide {
  flex-shrink: 0;
  padding: 30px 20px;
  background-color: #14192D;
  border: 1px solid #14192D;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.portfolio__slide.swiper-slide-thumb-active {
  border: 1px solid #F6E019;
  box-shadow: 0px 0px 20px 0px rgba(246, 224, 25, 0.3019607843);
}

.portfolio__slide:hover {
  box-shadow: 0px 0px 20px 0px rgba(246, 224, 25, 0.3019607843);
}

.portfolio__photo img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
}

.portfolio__profit {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.portfolio__profit span {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.portfolio__name {
  text-align: center;
  margin-top: 5px;
  font-weight: 700;
}

.portfolio__country {
  margin-top: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
}

.portfolio__country img {
  margin-right: 5px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.portfolio__nav {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio__arrow {
  width: 40px;
  height: 40px;
  background-color: #14192D;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.portfolio__arrow::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  border: solid #fff;
  display: inline-block;
  padding: 4px;
  transition: transform 0.3s ease 0s;
  z-index: 2;
}

.portfolio__arrow_prev {
  margin-right: 10px;
}

.portfolio__arrow_prev::before {
  border-width: 0 0 2px 2px;
  transform: translateY(-50%) translateX(65%) rotate(45deg);
}

.portfolio__arrow_next::before {
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) translateX(35%) rotate(45deg);
}

.portfolio__arrow:hover {
  background-color: #17324B;
}

.portfolio__slider-main {
  margin-left: 60px;
  overflow-x: hidden;
  position: relative;
  width: calc(45% - 60px);
}

.portfolio__content {
  display: flex;
}

.portfolio__cont-slide {
  flex-shrink: 0;
  opacity: 0 !important;
  visibility: hidden;
}

.portfolio__cont-slide.swiper-slide-active {
  opacity: 1 !important;
  visibility: visible;
}

.portfolio__cont-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.portfolio__cont-arrow {
  margin-left: -4px;
  margin-top: 3px;
  margin-right: 5px;
}

.portfolio__cont-name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-right: 12px;
}

.portfolio__cont-country {
  display: flex;
  align-items: center;
  margin-left: 1px;
  font-weight: 400;
  color: #fff;
}

.portfolio__cont-country img {
  margin-right: 5px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.portfolio__cont-profit {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.portfolio__cont-item {
  padding: 15px 20px;
  border-radius: 10px;
  background: linear-gradient(40deg, #14192D 50%, rgba(246, 224, 25, 0.2) 100%);
  display: flex;
  flex-direction: column;
  font-weight: 700;
}

.portfolio__cont-item span {
  display: inline-block;
  font-size: 32px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 3px;
}

.portfolio__cont-item:not(:last-child) {
  margin-right: 10px;
}

.portfolio__cont-info {
  margin-top: 20px;
}

.portfolio__cont-block {
  background-color: #14192D;
  border-radius: 10px;
  padding: 6px 12px;
  width: fit-content;
}

.portfolio__cont-block:not(:last-child) {
  margin-bottom: 10px;
}

.portfolio__cont-block span {
  font-weight: 400;
  color: #fff;
}

.portfolio__cont-text {
  margin-top: 40px;
  max-height: 110px;
  overflow: hidden;
  transition: max-height 0.1s ease-in-out;
}

.portfolio__cont-text h3 {
  font-weight: 400;
  text-transform: uppercase;
}

.portfolio__cont-text h3:not(:last-child) {
  margin-bottom: 10px;
}

.portfolio__cont-text p:not(:last-child) {
  margin-bottom: 10px;
}

.portfolio__cont-bottom {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio__cont-more {
  background: none;
  color: #fff;
  border: none;
  padding: 0 0 0 22px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
}

.portfolio__cont-more::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  content: "";
  border: solid #fff;
  display: inline-block;
  padding: 3px;
  transition: transform 0.3s ease 0s;
  z-index: 2;
  border-width: 0 2px 2px 0;
  transform: translateY(-65%) rotate(45deg);
}

.portfolio__cont-more.active::before {
  transform: translateY(-15%) rotate(-135deg);
}

.portfolio__cont-source {
  font-size: 14px;
  font-style: italic;
}

.comparison {
  padding: 60px 0 65px 0;
}

.comparison__body {
  margin: 60px auto 0 auto;
  max-width: 680px;
}

.comparison__top {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.comparison__top::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(50% 50% at 50% 50%, #17324B 0%, rgba(32, 36, 67, 0) 100%);
}

.comparison__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
}

.comparison__name_red {
  color: #FF274E;
  text-align: right;
}

.comparison__name_green {
  color: #00968D;
}

.comparison__item {
  background: linear-gradient(180deg, #1D233E 0%, #14192D 100%);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-width: 300px;
  position: relative;
}

.comparison__item:not(:last-child) {
  margin-bottom: 50px;
}

.comparison__item:last-child {
  min-height: 282px;
}

.comparison__item:last-child::after {
  content: none;
}

.comparison__item_center {
  margin: 0 30px;
  min-width: 200px;
  margin-bottom: 0 !important;
}

.comparison__item_center::before {
  content: url("/wp-content/themes/bestprop/promo/icons/comparison-line-green_top.svg");
  position: absolute;
  left: auto;
  right: -103px;
  bottom: -30px;
}

.comparison__item_center::after {
  content: url("/wp-content/themes/bestprop/promo/icons/comparison-line-red_top.svg");
  position: absolute;
  right: auto;
  left: -103px;
  bottom: -30px;
}

.comparison__item .comparison__descr::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: #fff;
}

.comparison__item_red {
  background: linear-gradient(40deg, #14192D 50%, rgba(255, 39, 78, 0.2) 100%);
}

.comparison__item_red .comparison__descr::before {
  background-color: #FF274E;
}

.comparison__item_red::after {
  content: url("/wp-content/themes/bestprop/promo/icons/comparison-line-red.svg");
  position: absolute;
  right: auto;
  left: -32px;
  bottom: -50px;
}

.comparison__item_green {
  background: linear-gradient(40deg, #14192D 50%, rgba(0, 181, 170, 0.3) 100%);
}

.comparison__item_green .comparison__descr::before {
  background-color: #00968D;
}

.comparison__item_green::after {
  content: url("/wp-content/themes/bestprop/promo/icons/comparison-line-green.svg");
  position: absolute;
  left: auto;
  right: -32px;
  bottom: -50px;
}

.comparison__descr {
  font-weight: 400;
  line-height: 140%;
  color: #fff;
  text-align: center;
}

.comparison__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comparison__value {
  margin-top: 15px;
  padding: 8px 18px;
  background: #222945;
  border: 2px solid #222945;
  border-radius: 10px;
  width: fit-content;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 120%;
}

.comparison__value_risk {
  display: flex;
  align-items: center;
  border: 2px solid #FF274E;
}

.comparison__value_risk svg {
  margin-right: 5px;
  margin-top: 1px;
}

.comparison__value_red {
  background: #FF274E;
  border: 2px solid #FF274E;
  box-shadow: 0px 0px 20px 0px #FF4A6B;
}

.comparison__value_green {
  background: #00968D;
  border: 2px solid #00968D;
  box-shadow: 0px 0px 20px 0px rgba(0, 255, 208, 0.5019607843);
}

.comparison__wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.comparison__wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-70%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(50% 50% at 50% 50%, #19434F 0%, rgba(32, 36, 67, 0) 100%);
}

.comparison__icon {
  margin-top: 15px;
}

.comparison__suptitle {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
  text-align: center;
}

.comparison__btn {
  margin: 60px auto 0 auto;
}

.faq {
  padding: 80px 0;
}

.faq__wrapper {
  margin: 60px auto 0 auto;
  max-width: 600px;
  position: relative;
}

.faq__wrapper::before {
  content: "";
  position: absolute;
  top: -230px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(50% 50% at 50% 50%, #17324B 0%, rgba(32, 36, 67, 0) 100%);
  z-index: -1;
}

.faq__item {
  border-radius: 20px;
  padding: 30px;
  background: #14192D;
  position: relative;
}

.faq__item:not(:last-child) {
  margin-bottom: 30px;
}

.faq__item:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.faq__item::after {
  content: "";
  position: absolute;
  z-index: -2;
}

.faq__item:nth-child(1):before {
  content: url("/wp-content/themes/bestprop/promo/img/faq-before-1.svg");
  left: 100%;
}

.faq__item:nth-child(1)::after {
  width: 600px;
  height: 450px;
  background: radial-gradient(50% 50% at 50% 50%, #434134 0%, rgba(32, 36, 67, 0) 100%);
  right: -150px;
  bottom: -120px;
}

.faq__item:nth-child(2):before {
  content: url("/wp-content/themes/bestprop/promo/img/faq-before-2.svg");
  right: 100%;
}

.faq__item:nth-child(2)::after {
  width: 700px;
  height: 550px;
  background: radial-gradient(50% 50% at 50% 50%, #382E6F 0%, rgba(32, 36, 67, 0) 100%);
  left: -200px;
  bottom: -150px;
}

.faq__item:nth-child(3):before {
  content: url("/wp-content/themes/bestprop/promo/img/faq-before-3.svg");
  left: 100%;
}

.faq__item:nth-child(3)::after {
  width: 600px;
  height: 450px;
  background: radial-gradient(50% 50% at 50% 50%, #164C5A 0%, rgba(32, 36, 67, 0) 100%);
  right: -150px;
  bottom: 0;
}

.faq__item:nth-child(4):before {
  content: url("/wp-content/themes/bestprop/promo/img/faq-before-4.svg");
  right: 100%;
}

.faq__item:nth-child(4)::after {
  width: 600px;
  height: 350px;
  background: radial-gradient(50% 50% at 50% 50%, #17324B 0%, rgba(32, 36, 67, 0) 100%);
  top: -80px;
  left: -200px;
}

.faq__top {
  display: flex;
  align-items: center;
}

.faq__number {
  background: #1E243F;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.faq__question {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
}

.faq__question span {
  color: #F6E019;
}

.faq__answer {
  margin-top: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #fff;
}

.faq__img {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.faq__img img {
  width: 100%;
}

.faq__img_2 img {
  width: calc(50% - 5px);
}

.challenges {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.challenges::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 350px;
  background: radial-gradient(50% 50% at 50% 50%, #17324B 0%, rgba(32, 36, 67, 0) 100%);
  z-index: -1;
}

.challenges__top {
  margin: 30px auto 0 auto;
  background: #14192D;
  border-radius: 20px;
  padding: 10px;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.challenges__balanse {
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.challenges__scroll {
  margin-top: 10px;
}

.challenges__tabs {
  display: flex;
}

.challenges__tab {
  padding: 8px 13px;
  border-radius: 10px;
  background: #222945;
  border: 2px solid #222945;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease 0s;
}

.challenges__tab:not(:last-child) {
  margin-right: 10px;
}

.challenges__tab.active {
  border: 2px solid #F6E019;
  background-color: #F6E019;
  color: #0D0F1F;
  cursor: default;
}

.challenges__tab.active:hover {
  border: 2px solid #F6E019;
  color: #0D0F1F;
}

.challenges__tab:hover {
  border: 2px solid #F6E019;
  color: #F6E019;
}

.challenges__body {
  margin-top: 40px;
}

.challenges__wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
}

.challenges__wrapper::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1500px;
  height: 800px;
  background: radial-gradient(50% 50% at 50% 50%, #17324B 0%, rgba(32, 36, 67, 0) 100%);
  z-index: -1;
}

.challenges__item {
  background: #14192D;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-left: 15px;
  margin-right: 15px;
  display: none;
  width: calc(33.3333% - 30px);
}

.challenges__item.active {
  display: flex;
}

.challenges__content {
  width: 100%;
}

.challenges__logo {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.challenges__dl {
  margin-top: 15px;
}

.challenges__head {
  margin-bottom: 15px;
}

.challenges__block {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.challenges__block:not(:last-child) {
  margin-bottom: 13px;
}

.challenges__block:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 100%;
  border-bottom: 1px dashed #404A62;
}

.challenges__block dt {
  background-color: #14192D;
  position: relative;
  display: inline-block;
  z-index: 1;
  padding-right: 7px;
  font-weight: 400;
  font-size: 13px;
  line-height: 120%;
  color: #404A62;
  white-space: nowrap;
}

.challenges__block dd {
  background-color: #14192D;
  position: relative;
  display: inline-block;
  z-index: 1;
  padding-left: 7px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
  text-align: right;
  /* max-width: 61%; */
}

.challenges__block_bg {
  background: #222945;
  width: 100%;
  padding: 5px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.challenges__block_bg:not(:last-child) {
  margin-bottom: 5px;
}

.challenges__block_bg:before {
  left: 10px;
  width: calc(100% - 20px);
  bottom: 14px;
}

.challenges__block_bg dt {
  background-color: #222945;
  color: #828AA6;
}

.challenges__block_bg dd {
  background-color: #222945;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
}

.challenges__btn {
  margin-top: 15px;
}

.challenges__btn::after {
  box-shadow: none;
}

.payments {
  padding: 80px 0;
}

.payments__body {
  margin-top: 60px;
}

.payments__wrapper {
  display: flex;
  cursor: pointer;
  user-select: none;
}

.payments__item {
  flex-shrink: 0;
  height: 230px;
  width: auto;
}

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

.payments__scrollbar {
  margin-top: 15px;
  height: 5px;
  width: 100%;
  background-color: #14192D;
  border-radius: 10px;
}

.payments__scrollbar .swiper-scrollbar-drag {
  height: 100%;
  background-color: #222945;
  border-radius: 10px;
}

.payments__btn {
  margin: 60px auto 0 auto;
}

.free {
  padding: 60px 0;
}

.free__wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.free__wrapper::before {
  content: "";
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 600px;
  background: radial-gradient(50% 50% at 50% 50%, #17324B 0%, rgba(32, 36, 67, 0) 100%);
  z-index: -1;
}

.free__item {
  max-width: calc(33.3333% - 5px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.free__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
}

.free__logo::before {
  content: "FREE";
  position: absolute;
  top: 0;
  right: -61px;
  padding: 3px 12px 4px 12px;
  background-color: #fff;
  color: #0D0F1F;
  border-radius: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
}

.free__content {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.free__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: #fff;
}

.free__descr {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #fff;
}

.free__btn {
  margin-top: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: #F6E019;
  border: 2px solid #F6E019;
  border-radius: 50px;
  padding: 12px 30px;
  text-decoration: none;
  min-width: 180px;
  text-align: center;
  transition: all 0.3s ease 0s;
}

.free__btn:hover {
  background-color: #F6E019;
  color: #1B1B1B;
}

.one-challenge {
  padding: 60px 0;
}

.one-challenge__wrapper {
  background: #14192D;
  border-radius: 40px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  max-width: 915px;
  margin: 0 auto;
  overflow: hidden;
}

.one-challenge__img {
  margin-right: 60px;
  position: relative;
}

.one-challenge__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(50% 50% at 50% 50%, #17324B 0%, rgba(32, 36, 67, 0) 100%);
  z-index: 0;
}

.one-challenge__img img {
  position: relative;
  z-index: 1;
}

.one-challenge__content {
  position: relative;
  z-index: 1;
}

.one-challenge__title {
  text-align: left;
}

.one-challenge__warning {
  margin-top: 30px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #00968D;
}

.one-challenge__warning svg {
  margin-top: 2px;
  filter: drop-shadow(0px 0px 12px rgb(1, 178, 167));
  margin-right: 8px;
}

.one-challenge__btn {
  margin-top: 60px;
}


.footer {
  margin-top: 70px;
  background: #14192D;
  padding: 50px 0;
  color: #d7d7d7;
  font-size: 12px;
  line-height: 18px;
}

.footer__logo {
  width: 177px;
  height: 43px;
}

.footer__wrapper {
  margin-top: 30px;
  display: flex;
}

.footer__item:first-child {
  margin-right: 90px;
}

.footer__item:last-child {
  margin-left: auto;
}

.footer__li:not(:last-child) {
  margin-bottom: 20px;
}

.footer__link {
  color: #D7D7D7;
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease 0s;
}

.footer__link:hover {
  color: #F6E019;
}

.footer__text {
  color: #D7D7D7;
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
}

.footer__text:not(:last-child) {
  margin-bottom: 20px;
}

.footer__descr {
  margin-top: 32px;
  font-weight: 500;
}

.footer__warning {
  margin-top: 22px;
  font-weight: 300;
}

.footer__bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__links {
  display: flex;
  align-items: center;
}

.footer__links>a {
  color: #fff;
}

.footer__social {
  margin-top: 5px;
  margin-right: 25px;
}

.footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
}

.footer__icon:not(:last-child) {
  margin-right: 15px;
}

.footer__btn {
  font-size: 16px;
  line-height: 120%;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  width: max-content;
}

.footer__btn_white {
  background-color: #fff;
  color: #282828;
  padding: 10px 17px;
  border-radius: 18px;
}

.footer__btn_white:hover {
  background-color: #F6E019;
}



@media (max-width: 1190px) {
  .container {
    max-width: 960px;
  }

  .main__content {
    padding: 60px 0 30px 0;
  }

  .main__img {
    margin-right: -100px;
    max-width: 500px;
  }

  .main__name span {
    font-size: 26px;
  }

  .main__warning {
    font-size: 19px;
  }

  .portfolio__slider-main {
    margin-left: 40px;
    width: calc(45% - 40px);
  }

  .portfolio__slide {
    padding: 20px 15px;
  }

  .portfolio__profit span {
    font-size: 17px;
  }

  .portfolio__cont-name {
    font-size: 20px;
  }

  .portfolio__cont-item span {
    font-size: 30px;
  }

  .challenges__wrapper {
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
  }

  .challenges__item {
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 760px;
  }

  .title {
    font-size: 30px;
  }

  .header__wrapper {
    padding: 12px 15px;
  }

  .header__logo {
    width: 140px;
    height: 34px;
  }

  .header__btn span {
    display: none;
  }

  .header__btn svg {
    margin-top: 0;
    margin-right: 0;
    width: 28px;
    height: 28px;
  }

  .header__btn:not(:last-child) {
    margin-right: 12px;
  }

  .header__btn_white {
    padding: 0;
    background: none;
  }

  .header__btn_white svg {
    display: block;
  }

  .main {
    padding: 20px 0 40px 0;
  }

  .main__title {
    font-size: 43px;
  }

  .main__img {
    max-width: 460px;
    margin-top: -30px;
    margin-bottom: -80px;
    margin-right: -40px;
    padding-right: 0;
  }

  .main__img_desck {
    display: none;
  }

  .main__img_mob {
    display: block;
  }

  .main__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .main__title {
    text-align: center;
  }

  .main__info {
    z-index: 2;
  }

  .main__btn {
    margin-top: 30px;
  }

  .portfolio {
    padding: 40px 0 60px 0;
  }

  .portfolio__body {
    margin-top: 40px;
    flex-direction: column;
  }

  .portfolio__body::before {
    top: 0;
    left: -250px;
  }

  .portfolio__slider {
    width: 100%;
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .portfolio__wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .portfolio__slider-main {
    width: 80%;
    margin-top: 30px;
    margin-left: 0;
  }

  .portfolio__nav {
    display: none;
  }

  .comparison {
    padding: 40px 0;
  }

  .comparison__body {
    margin: 40px auto 0 auto;
  }

  .comparison__btn {
    margin: 40px auto 0 auto;
  }

  .faq {
    padding: 60px 0;
  }

  .faq__wrapper {
    margin: 40px auto 0 auto;
  }

  .challenges {
    padding: 60px 0;
  }

  .challenges__body {
    margin-top: 20px;
  }

  .payments {
    padding: 60px 0;
  }

  .payments__body {
    margin-top: 40px;
  }

  .payments__btn {
    margin: 40px auto 0 auto;
  }

  .free {
    padding: 40px 0;
  }

  .free__wrapper {
    margin-top: 40px;
  }

  .one-challenge__wrapper {
    padding: 30px 40px;
  }

  .one-challenge__img {
    margin-right: 50px;
    max-width: 220px;
  }

  .one-challenge__warning {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 580px;
  }

  .main__title {
    font-size: 40px;
  }

  .portfolio__slider-main {
    width: 100%;
  }

  .comparison__body {
    padding: 0 30px;
  }

  .comparison__item {
    min-width: auto;
    width: 230px;
  }

  .comparison__item_center {
    width: 160px;
    margin: 0 15px;
  }

  .comparison__item:last-child {
    min-height: 308px;
  }

  .comparison__name {
    font-size: 18px;
  }

  .challenges__top {
    width: auto;
    overflow: hidden;
  }

  .challenges__scroll {
    overflow-x: scroll;
    display: flex;
    margin-right: -10px;
    margin-left: -10px;
  }

  .challenges__scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .challenges__tabs {
    width: max-content;
    padding: 0 10px;
  }

  .challenges__tab {
    width: max-content;
  }

  .free__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .free__item {
    max-width: none;
    flex-direction: row;
    width: 300px;
  }

  .free__item:not(:last-child) {
    margin-bottom: 50px;
  }

  .free__content {
    margin-top: 0;
    margin-left: 30px;
    align-items: flex-start;
  }

  .free__logo::before {
    top: auto;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    font-size: 15px;
  }

  .free__name {
    text-align: left;
  }

  .free__descr {
    margin-top: 5px;
    text-align: left;
  }

  .free__btn {
    margin-top: 20px;
  }

  .one-challenge__wrapper {
    position: relative;
  }

  .one-challenge__img {
    margin-right: 0;
    position: absolute;
    bottom: 130px;
    max-width: 130px;
    left: 50%;
    transform: translateX(-50%);
  }

  .one-challenge__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

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

  .one-challenge__warning {
    margin-top: 20px;
    font-size: 23px;
  }

  .one-challenge__warning svg {
    width: 30px;
    height: 30px;
  }

  .one-challenge__btn {
    margin-top: 260px;
  }



  .footer {
    padding: 30px 0;
  }

  .footer__wrapper {
    flex-direction: column;
  }

  .footer__item:first-child {
    margin-right: 0;
    order: 1;
    margin-bottom: 30px;
  }

  .footer__item:last-child {
    margin-left: 0;
    order: 2;
    margin-bottom: 30px;
  }

  .footer__item:nth-child(2) {
    order: 3;
  }
}

@media (max-width: 576px) {
  .header__nav {
    display: none;
  }

  .main__img {
    max-width: 400px;
  }

  .main__name span {
    font-size: 23px;
  }

  .main__item {
    padding: 15px 20px;
  }

  .main__warning {
    max-width: 400px;
    font-size: 16px;
  }

  .portfolio__slide {
    padding: 15px 15px;
  }

  .portfolio__photo img {
    width: 80px;
    height: 80px;
  }

  .portfolio__profit {
    font-size: 13px;
  }

  .portfolio__profit span {
    font-size: 15px;
  }

  .portfolio__name {
    font-size: 15px;
  }

  .portfolio__country img {
    width: 15px;
    height: 15px;
  }

  .portfolio__country {
    font-size: 13px;
  }

  .portfolio__cont-item span {
    font-size: 23px;
  }

  .comparison__body {
    padding: 0;
    max-width: 440px;
  }

  .comparison__item {
    padding: 15px;
    width: 210px;
    min-height: 145px;
  }

  .comparison__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .comparison__name {
    font-size: 16px;
  }

  .comparison__descr {
    font-size: 14px;
  }

  .comparison__descr br {
    display: none;
  }

  .comparison__value {
    font-size: 18px;
    padding: 5px 10px;
  }

  .comparison__value_risk svg {
    width: 20px;
    height: 20px;
  }

  .comparison__suptitle {
    font-size: 20px;
  }

  .comparison__icon svg {
    width: 50px;
    height: 50px;
  }

  .comparison__item_center {
    width: 135px;
    margin: 0 15px;
    min-height: auto;
  }

  .comparison__item_center::before {
    content: url(/wp-content/themes/bestprop/promo/icons/comparison-line-green_top-mob.svg);
    right: auto;
    bottom: -30px;
    left: calc(100% + 3px);
  }

  .comparison__item_center::after {
    content: url(/wp-content/themes/bestprop/promo/icons/comparison-line-red_top-mob.svg);
    right: calc(100% + 3px);
    bottom: -30px;
    left: auto;
  }

  .comparison__item_green::after {
    content: url(/wp-content/themes/bestprop/promo/icons/comparison-line-green-mob.svg);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    top: calc(100% + 2px);
  }

  .comparison__item_red::after {
    content: url(/wp-content/themes/bestprop/promo/icons/comparison-line-red-mob.svg);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    top: calc(100% + 2px);
  }

  .comparison__item:last-child {
    min-height: 252px;
  }

  .title {
    font-size: 26px;
  }

  .title br {
    display: none;
  }

  .faq__item {
    padding: 20px;
  }

  .faq__question {
    font-size: 20px;
  }

  .faq__number {
    font-size: 19px;
    width: 35px;
    height: 35px;
  }

  .faq__answer {
    font-size: 16px;
  }

  .payments__item {
    height: 180px;
  }


  .footer__li-m {
    margin-bottom: 15px;
    margin-right: 15px;
    padding-left: 15px;
  }

  .footer__li-m:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-30%);
    width: 6px;
    height: 6px;
    border-radius: 30px;
    background-color: #F6E019;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 15px 0 10px 0;
  }

  .header__wrapper {
    padding: 10px 12px;
  }

  .header__btn:not(:last-child) {
    margin-right: 10px;
  }

  .header__logo {
    width: 125px;
    height: 30px;
  }

  .main {
    padding: 10px 0 20px 0;
  }

  .main__title {
    font-size: 32px;
  }

  .main__img {
    max-width: 300px;
  }

  .main__item {
    padding: 10px 10px;
  }

  .main__name {
    font-size: 14px;
  }

  .main__name span {
    font-size: 18px;
  }

  .main__descr {
    margin-top: 0;
    font-size: 14px;
  }

  .main__img::after {
    top: 60%;
  }

  .main__warning {
    max-width: 240px;
  }

  .main__warning span {
    width: 85%;
  }

  .title {
    font-size: 24px;
  }

  body {
    font-size: 14px;
  }

  .portfolio {
    padding: 20px 0 40px 0;
  }

  .portfolio__body {
    margin-top: 30px;
  }

  .portfolio__slide {
    padding: 15px 6px;
  }

  .portfolio__photo img {
    width: 60px;
    height: 60px;
  }

  .portfolio__profit {
    font-size: 12px;
  }

  .portfolio__profit span {
    font-size: 14px;
  }

  .portfolio__name {
    font-size: 12px;
  }

  .portfolio__country {
    font-size: 12px;
  }

  .portfolio__country img {
    width: 14px;
    height: 14px;
  }

  .portfolio__slider-main {
    margin-top: 20px;
  }

  .portfolio__cont-name {
    width: 80%;
  }

  .portfolio__cont-arrow {
    margin-right: 3px;
  }

  .portfolio__cont-arrow svg {
    width: 25px;
    height: 25px;
  }

  .portfolio__cont-country {
    margin-top: 10px;
  }

  .portfolio__cont-item {
    font-size: 12px;
    padding: 10px 12px;
  }

  .portfolio__cont-item span {
    font-size: 18px;
    margin-bottom: 0;
  }

  .portfolio__cont-info {
    margin-top: 10px;
  }

  .portfolio__cont-text {
    margin-top: 30px;
  }

  .comparison__top {
    justify-content: space-evenly;
  }

  .comparison__body {
    margin: 30px auto 0 auto;
  }

  .comparison__name {
    font-size: 14px;
  }

  .comparison__row {
    width: calc(50% - 10px);
  }

  .comparison__item {
    padding: 10px;
    width: 100%;
    min-height: 120px;
    border-radius: 20px 0 20px 20px;
  }

  .comparison__item_center {
    margin: 0 10px;
    width: 105px;
  }

  .comparison__item:last-child {
    min-height: 202px;
  }

  .comparison__item .comparison__descr::before {
    width: 10px;
    height: 10px;
  }

  .comparison__descr {
    font-size: 12px;
  }

  .comparison__value {
    margin-top: 10px;
  }

  .comparison__icon {
    margin-top: 10px;
  }

  .comparison__icon svg {
    height: 40px;
    width: 40px;
  }

  .comparison__suptitle {
    margin-top: 10px;
    font-size: 17px;
  }

  .faq {
    padding: 40px 0;
  }

  .faq__wrapper {
    margin: 30px auto 0 auto;
  }

  .faq__item {
    padding: 15px;
  }

  .faq__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .faq__question {
    font-size: 16px;
    width: 85%;
  }

  .faq__number {
    font-size: 16px;
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }

  .faq__answer {
    font-size: 14px;
  }

  .faq__img {
    margin-top: 20px;
  }

  .challenges {
    padding: 40px 0;
  }

  .challenges__top {
    margin-top: 20px;
  }

  .challenges__body {
    margin-top: 10px;
  }

  .challenges__item {
    padding: 15px 10px;
  }

  .challenges__logo {
    height: 30px;
  }

  .challenges__head {
    margin-bottom: 13px;
  }

  .challenges__block:not(:last-child) {
    margin-bottom: 9px;
  }

  .challenges__block dt {
    font-size: 13px;
  }

  .challenges__block_bg dd {
    font-size: 16px;
  }

  /* .challenges__block dd {
    max-width: 55%;
  } */

  .payments {
    padding: 40px 0;
  }

  .payments__body {
    margin-top: 30px;
  }

  .payments__item {
    height: 160px;
  }

  .payments__btn {
    margin: 30px auto 0 auto;
  }

  .free__wrapper {
    margin-top: 20px;
  }

  .free__logo {
    width: 60px;
    height: 60px;
  }

  .free__logo svg {
    width: 100%;
    height: 100%;
  }

  .free__name {
    font-size: 20px;
  }

  .free__logo::before {
    font-size: 12px;
    padding: 3px 6px 4px 6px;
  }

  .free__content {
    margin-left: 20px;
  }

  .free__descr {
    font-size: 14px;
  }

  .free__btn {
    margin-top: 10px;
  }

  .free__item:not(:last-child) {
    margin-bottom: 40px;
  }

  .one-challenge__wrapper {
    padding: 30px 10px;
  }

  .one-challenge__warning {
    font-size: 20px;
  }
}