@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: 20px;
  line-height: 125%;
  color: #1D2027;
  overflow-x: hidden;
  background-color: #F1F1FB;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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: 10px solid #FFC400;
  border-radius: 50px;
}

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

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

.btn::after {
  content: "";
  position: absolute;
  inset: -10px;
  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 {
  font-size: 40px;
  font-weight: 900;
  line-height: 48px;
  text-align: center;
}

.title .uppercase {
  text-transform: uppercase;
}

.title .yellow {
  color: #F6E019;
  text-shadow: 0px 0px 30px #F6E019;
}

.header {
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  max-height: 30px;
}

.language {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  cursor: pointer;
}

.language:hover .language__list {
  opacity: 1;
  visibility: visible;
}

.language__icon {
  width: 21px;
  height: 21px;
}

.language__list {
  position: absolute;
  padding: 3px 0 !important;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 7px 0;
  z-index: 10;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  cursor: default;
}

.language__text {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 17px;
  font-weight: 600;
  color: #1D2027;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.language__text.active {
  color: #FFA600;
  cursor: default;
}

.main {
  padding-top: 60px;
  background: #132442 url("/wp-content/themes/bestprop/img-community/main-bg.svg") top 35px center no-repeat;
}

.main__wrapper {
  margin-top: 60px;
  /* padding: 0 0 80px 0; */
  padding: 0 0 300px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: url("/wp-content/themes/bestprop/img-community/main-bg-wrap.png") center center no-repeat;
  min-height: 750px;
  max-width: 1440px;
  margin: 0 auto;
}

.main__title {
  text-align: center;
  font-size: 40px;
  line-height: 48px;
  font-weight: 900;
  color: #fff;
}

.main__title .uppercase {
  text-transform: uppercase;
}

.main__title .yellow {
  color: #F6E019;
  text-shadow: 0px 0px 30px #F6E019;
}

.whom {
  padding: 100px 0;
}

.whom__wrapper {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.whom__item {
  width: calc(50% - 15px);
  background-color: #fff;
  padding: 40px 50px 30px 30px;
  display: flex;
  border-radius: 20px;
}

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

.whom__item:last-child {
  width: 100%;
}

.whom__item:nth-child(2) {
  background: radial-gradient(circle at bottom left, #ffec59, #fbc700);
}

.whom__item:nth-child(3) {
  background: radial-gradient(circle at bottom left, #ffec59, #fbc700);
}

.whom__icon {
  margin-right: 20px;
}

.whom__name {
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

.whom__descr {
  margin-top: 20px;
}

.promo-code {
  padding: 100px 0;
  background: radial-gradient(circle at bottom left, #ffec59, #fbc700);
  position: relative;
  overflow: hidden;
}

.promo-code::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  background: url("/wp-content/themes/bestprop/img-community/promo-code_before.svg") center center no-repeat;
  width: 1440px;
  height: 743px;
  background-size: 100%;
}

.promo-code__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
}

.promo-code__logo {
  margin-top: 30px;
}

.promo-code__descr {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  text-align: center;
}

.promo-code__wrapper {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.promo-code__item img {
  filter: drop-shadow(10px 10px 40px rgba(215, 132, 0, 0.5));
}

.promo-code__item:not(:last-child) {
  margin-right: 20px;
}

.promo-code__btn {
  margin-top: 40px;
}

.promo-code__btn span {
  padding: 18px 25px;
}

.promo-code__warning {
  margin-top: 40px;
  text-align: center;
  font-weight: 400;
}

.slider-ss {
  padding: 100px 0 130px 0;
}

.slider-ss__body {
  margin-top: 40px;
  position: relative;
  padding: 0 180px;
}

.slider-ss__wrapper {
  display: flex;
}

.slider-ss__item {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease 0s;
}

.slider-ss__item img {
  border-radius: 20px;
  box-shadow: 0px 0px 40px 0px rgb(209, 209, 229);
  width: 100%;
}

.slider-ss__item.swiper-slide-active {
  opacity: 1;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  padding: 0 85px;
  display: flex;
  justify-content: space-between;
}

.slider-nav__arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 5px 5px 40px 0px rgba(95, 99, 120, 0.2);
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.slider-nav__arrow_left svg {
  margin-right: 2px;
}

.slider-nav__arrow_right svg {
  margin-left: 1px;
}

.slider-nav__arrow:hover {
  background-color: #F6E019;
}

.footer {
  padding: 155px 0;
  background: #132442 url("/wp-content/themes/bestprop/img-community/footer-bg.jpg") center center/cover no-repeat;
}

.footer__title {
  color: #fff;
}

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

.footer__logo {
  margin-top: 30px;
}

.footer__arrow {
  margin-top: 35px;
}

.footer__content {
  margin-top: 30px;
  border: 1px dashed rgb(246, 224, 25);
  background: rgb(19, 36, 66);
  display: flex;
  border-radius: 100px;
  padding: 10px 30px 10px 10px;
  align-items: center;
}

.footer__descr {
  margin-left: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.footer__descr span {
  color: #F6E019;
}

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

  .whom {
    padding: 70px 0;
  }

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

  .whom__name {
    font-size: 24px;
    line-height: 28px;
  }

  body {
    font-size: 18px;
  }

  .title {
    font-size: 32px;
    line-height: 38px;
  }

  .slider-ss {
    padding: 80px 0 100px 0;
  }

  .slider-ss__body {
    padding: 0 95px;
  }

  .slider-nav {
    padding: 0;
  }

  .footer {
    padding: 110px 0;
  }
}

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

  body {
    font-size: 17px;
  }

  .title {
    font-size: 28px;
    line-height: 35px;
  }

  .main {
    padding-top: 90px;
    background-size: 815px;
    background-position: top 90px center;
  }

  .main__wrapper {
    margin-top: 40px;
    background: url(/wp-content/themes/bestprop/img-community/main-bg-wrap_mob.png) center center no-repeat;
    min-height: 500px;
    padding: 0 0 40px 0;
  }

  .main__title {
    font-size: 32px;
    line-height: 40px;
  }

  .whom {
    padding: 60px 0;
  }

  .whom__wrapper {
    margin-top: 30px;
  }

  .whom__item {
    width: 100%;
    padding: 25px;
  }

  .whom__item:nth-child(3) {
    background: #fff;
  }

  .whom__item:nth-child(3) .whom__icon svg path:nth-last-child(-n+3) {
    fill: #FFCC00;
  }

  .whom__item:nth-child(4) {
    background: radial-gradient(circle at bottom left, #ffec59, #fbc700);
  }

  .whom__item:nth-child(4) .whom__icon svg path:last-child {
    fill: #fff;
  }

  .whom__item:nth-child(4) .whom__icon svg path:nth-child(2) {
    fill: #fff;
  }

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

  .whom__icon {
    margin-right: 15px;
  }

  .whom__name {
    font-size: 20px;
    line-height: 25px;
  }

  .whom__descr {
    margin-top: 10px;
  }

  .promo-code {
    padding: 60px 0;
  }

  .promo-code::before {
    width: 890px;
    height: 460px;
  }

  .promo-code__descr {
    font-size: 20px;
    line-height: 26px;
  }

  .slider-ss {
    padding: 60px 0 80px 0;
  }

  .slider-ss__body {
    margin-top: 30px;
    padding: 0 65px;
  }

  .footer {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .slider-ss__body {
    margin-top: 0;
    padding: 0;
    overflow-x: scroll;
    margin-right: -15px;
    margin-left: -15px;
    scrollbar-width: none;
    padding: 35px 0;
    margin-bottom: -35px;
    margin-top: -5px;
  }

  .slider-ss__body::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .slider-ss__wrapper {
    width: fit-content;
    margin-right: 15px;
    margin-left: 15px;
  }

  .slider-ss__item {
    opacity: 1;
  }

  .slider-ss__item:not(:last-child) {
    margin-right: 20px;
  }

  .slider-ss__item:last-child {
    padding-right: 15px;
  }

  .slider-ss__nav {
    display: none;
  }
}

@media (max-width: 576px) {
  .footer__content {
    flex-direction: column;
    padding: 16px;
    border-radius: 36px;
  }

  .footer__descr {
    margin-top: 10px;
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .main__title {
    font-size: 24px;
    line-height: 29px;
  }

  .title {
    font-size: 24px;
    line-height: 29px;
  }

  body {
    font-size: 14px;
    line-height: 17px;
  }

  .btn {
    border-width: 5px;
  }

  .btn span {
    padding: 13px 20px;
  }

  .btn::before {
    inset: -4px;
  }

  .btn::after {
    inset: -5px;
  }

  .whom {
    padding: 40px 0;
  }

  .whom__wrapper {
    margin-top: 20px;
  }

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

  .whom__name {
    font-size: 16px;
    line-height: 19px;
  }

  .whom__icon {
    margin-right: 10px;
  }

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

  .whom__item {
    padding: 20px;
  }

  .promo-code {
    padding: 40px 0;
  }

  .promo-code__logo {
    margin-top: 20px;
  }

  .promo-code__descr {
    margin-top: 20px;
    font-size: 16px;
    line-height: 19px;
  }

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

  .promo-code__btn {
    margin-top: 30px;
  }

  .promo-code__warning {
    margin-top: 30px;
  }

  .slider-ss {
    padding: 40px 0 60px 0;
  }

  .slider-ss__body {
    margin-top: -15px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer__logo {
    margin-top: 15px;
  }

  .footer__arrow {
    margin-top: 20px;
  }

  .footer__content {
    margin-top: 20px;
  }

  .footer__descr {
    font-size: 16px;
    line-height: 20px;
  }
}

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