/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Inter';
  src: url('/fontsPLfhbfo/inter-variablefontPLfhbfo.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('/fontsPLfhbfo/nunito-variablefontPLfhbfo.woff2') format('woff2');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('/fontsPLfhbfo/opensans-variablefontPLfhbfo.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

@font-face {
  font-family: 'Open Sans';
  src: url('/fontsPLfhbfo/opensans-variablefontPLfhbfo.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('/fontsPLfhbfo/nunito-variablefontPLfhbfo.woff2') format('woff2');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

.headerPLfhbfo {
  position: relative;
  z-index: 100;
  background: #3c287d;
  padding: 10px 0;
}

.headerPLfhbfo__container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headerPLfhbfo__logo {
  display: inline-flex;

  flex-shrink: 0;
}

.headerPLfhbfo__logo img {
  display: block;
  width: 120px;
  height: 55.862px;
  object-fit: contain;
}

.headerPLfhbfo__actions,
.headerPLfhbfo__mobile-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.headerPLfhbfo__btn {
  min-width: 184px;
  min-height: 44px;
  padding: 10px 26px;
  border-radius: 11px;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: normal;
  cursor: pointer;
}

.headerPLfhbfo__btn--primary {
  border: 1px solid #fff;
  background: linear-gradient(
    94deg,
    #eb9e39 1.61%,
    #7100fa 52.29%,
    #eb9e39 103.56%
  );
}

.headerPLfhbfo__btn--secondary {
  border: 1px solid #fb9a1c;
  background: transparent;
}

.headerPLfhbfo__burger {
  display: none;
  width: 64px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.headerPLfhbfo__burger span {
  display: block;
  width: 50px;
  height: 6px;
  margin: 8px auto;
  border-radius: 20px;
  background: #fb9a1c;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.headerPLfhbfo__burger.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(46deg);
}

.headerPLfhbfo__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.headerPLfhbfo__burger.is-active span:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg);
}

.headerPLfhbfo__mobile {
  display: none;
}

.modalPLfhbfo {
  position: fixed;
  z-index: 999999;

  inset: 0;

  display: none;

  justify-content: center;
  align-items: center;

  padding: 40px 20px;

  overflow-y: auto;
}

.modalPLfhbfo.is-open {
  display: flex;
}

.modalPLfhbfo__overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 8, 12, 0.72);
  backdrop-filter: blur(8px);
}

.modalPLfhbfo__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 21px;
  border: 1px solid #e5a3ff;
  background: #24082e;
  color: #fff;
  box-sizing: border-box;
}

.modalPLfhbfo__dialog--login {
  max-width: 549px;
  padding: 91px 40px 94px;
}

.modalPLfhbfo__dialog--register {
  width: min(1179px, 100%);
  max-height: calc(100vh - 80px);

  padding: 94px 42px 91px;

  overflow-y: auto;
  overflow-x: hidden;

  scrollbar-width: thin;
  scrollbar-color: #e5a3ff #24082e;
}
.modalPLfhbfo__dialog--register::-webkit-scrollbar {
  width: 8px;
}

.modalPLfhbfo__dialog--register::-webkit-scrollbar-track {
  background: #24082e;
  border-radius: 20px;
}

.modalPLfhbfo__dialog--register::-webkit-scrollbar-thumb {
  background: #e5a3ff;
  border-radius: 20px;
}

.modalPLfhbfo__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid #e5a3ff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modalPLfhbfo__title {
  margin: 0 0 33px;
  color: #fff;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 45px;
  text-transform: uppercase;
}

.loginFormPLfhbfo {
  max-width: 440px;
  margin: 0 auto;
}

.loginFormPLfhbfo__label {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.loginFormPLfhbfo__label input {
  width: 100%;
  min-height: 51px;
  margin-top: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid #e5a3ff;
  background: #daecf8;
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.1);
  color: #111;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

.loginFormPLfhbfo__submit {
  width: 100%;
  min-height: 44px;
  margin-top: 1px;
  border-radius: 11px;
  border: 1px solid #fff;
  background: linear-gradient(
    94deg,
    #eb9e39 1.61%,
    #7100fa 52.29%,
    #eb9e39 103.56%
  );
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.modalPLfhbfo__text {
  margin: 30px 0 31px;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.modalPLfhbfo__outline {
  display: block;
  width: 100%;
  max-width: 440px;
  min-height: 44px;
  margin: 0 auto;
  border-radius: 11px;
  border: 1px solid #fb9a1c;
  background: transparent;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.registerCardsPLfhbfo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0 0 33px;
  padding: 0;
  list-style: none;
}

.registerCardsPLfhbfo__item {
  min-height: 337px;
  padding: 45px 26px 28px;
  border-radius: 36px;
  border: 1px solid #e5a3ff;
  background: linear-gradient(180deg, #1b1a50 0%, #0d0e2f 100%);
  box-shadow: 0 -2px 20.2px 0 rgba(229, 163, 255, 0.51);
  text-align: center;
  box-sizing: border-box;
}

.registerCardsPLfhbfo__item img {
  display: block;
  width: 105px;
  height: 105px;
  margin: 0 auto 56px;
  object-fit: contain;
}

.registerCardsPLfhbfo__item h3,
.registerInfoPLfhbfo h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.registerCardsPLfhbfo__item p,
.registerInfoPLfhbfo p {
  margin: 0;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.registerInfoPLfhbfo {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 25px;
  align-items: start;
  max-width: 1010px;
  margin: 0 0 30px 10px;
}

.registerInfoPLfhbfo img {
  display: block;
  width: 62px;
  height: 72px;
  object-fit: contain;
}

.registerInfoPLfhbfo a {
  display: inline-block;
  margin-top: 14px;
  color: #fb9a1c;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

body.modal-lockPLfhbfo {
  overflow: hidden;
}

@media (max-width: 992px) {
  .modalPLfhbfo {
    align-items: center;
  }

  .modalPLfhbfo__dialog--register {
    max-height: calc(100vh - 40px);
  }
  .modalPLfhbfo__dialog--register {
    max-width: 549px;
    padding: 28px 14px 18px;
  }

  .registerCardsPLfhbfo {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .registerCardsPLfhbfo__item {
    min-height: 0;
    padding: 26px 16px 20px;
    border-radius: 24px;
  }

  .registerCardsPLfhbfo__item img {
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
  }

  .registerInfoPLfhbfo {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    margin: 0 0 18px;
  }

  .registerInfoPLfhbfo img {
    width: 54px;
    height: 64px;
  }

  .registerCardsPLfhbfo__item h3,
  .registerInfoPLfhbfo h3 {
    font-size: 13px;
  }

  .registerCardsPLfhbfo__item p,
  .registerInfoPLfhbfo p,
  .registerInfoPLfhbfo a {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .headerPLfhbfo__container {
    min-height: 72px;
  }

  .headerPLfhbfo__logo {
    width: 120px;
    height: 55.862px;
  }

  .headerPLfhbfo__nav {
    display: none;
  }

  .headerPLfhbfo__burger {
    display: block;
  }

  .headerPLfhbfo__mobile {
    display: block;
    padding: 0 20px 24px;
  }

  .headerPLfhbfo__mobile[hidden] {
    display: none;
  }

  .headerPLfhbfo__mobile-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .headerPLfhbfo__btn {
    width: 100%;
  }

  .modalPLfhbfo {
    padding: 40px 20px;
  }

  .modalPLfhbfo__dialog--login {
    max-width: 549px;
    padding: 80px 40px 80px;
  }
}

@media (max-width: 480px) {
  .headerPLfhbfo__container {
    min-height: 72px;
  }

  .headerPLfhbfo__logo {
    width: 180px;
  }

  .headerPLfhbfo__burger {
    width: 52px;
  }

  .headerPLfhbfo__burger span {
    width: 42px;
    height: 5px;
    margin: 7px auto;
  }

  .modalPLfhbfo {
    padding: 24px 10px;
  }

  .modalPLfhbfo__dialog--login {
    padding: 56px 22px 56px;
  }

  .modalPLfhbfo__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 34px;
  }

  .loginFormPLfhbfo__label,
  .loginFormPLfhbfo__label input,
  .loginFormPLfhbfo__submit,
  .modalPLfhbfo__outline {
    font-size: 14px;
  }

  .modalPLfhbfo__text {
    font-size: 15px;
  }
}
.heroSliderPLfhbfo {
  position: relative;
  background: #04071e;
  padding-bottom: 70px;
  overflow: hidden;
}

.heroSliderPLfhbfo__viewport {
  position: relative;
  width: 100%;
  height: 525px;
  overflow: hidden;
}

.heroSliderPLfhbfo__track {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.heroSliderPLfhbfo__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.heroSliderPLfhbfo__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.heroSliderPLfhbfo__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.heroSliderPLfhbfo__content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.heroSliderPLfhbfo__tag {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.heroSliderPLfhbfo__title {
  max-width: 470px;
  margin: 0 0 12px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 54px;
  font-weight: 900;
  line-height: 56px;
}

.heroSliderPLfhbfo__text {
  margin: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.heroSliderPLfhbfo__dots {
  position: absolute;
  left: 50%;
  bottom: 63px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transform: translateX(-50%);
}

.heroSliderPLfhbfo__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
}

.heroSliderPLfhbfo__dot.is-active {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  background: linear-gradient(
    94deg,
    #eb9e39 1.61%,
    #7100fa 52.29%,
    #eb9e39 103.56%
  );
}

@media (max-width: 768px) {
  .heroSliderPLfhbfo {
    padding-bottom: 62px;
  }

  .heroSliderPLfhbfo__viewport {
    height: 655px;
  }

  .heroSliderPLfhbfo__slide img {
    object-position: center;
  }

  .heroSliderPLfhbfo__slide:first-child img {
    object-position: 58% center;
  }

  .heroSliderPLfhbfo__content {
    top: 53%;
    padding: 0 28px;
  }

  .heroSliderPLfhbfo__tag {
    margin-bottom: 22px;
    color: #ffc400;
    font-size: 20px;
  }

  .heroSliderPLfhbfo__title {
    max-width: 390px;
    margin-bottom: 22px;
    font-size: 64px;
    line-height: 1.06;
  }

  .heroSliderPLfhbfo__text {
    font-size: 22px;
  }

  .heroSliderPLfhbfo__dots {
    bottom: 76px;
    gap: 8px;
  }

  .heroSliderPLfhbfo__dot {
    width: 13px;
    height: 13px;
  }

  .heroSliderPLfhbfo__dot.is-active {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 480px) {
  .heroSliderPLfhbfo__viewport {
    height: 528px;
  }

  .heroSliderPLfhbfo__content {
    padding: 0 20px;
  }

  .heroSliderPLfhbfo__tag {
    font-size: 15px;
  }

  .heroSliderPLfhbfo__title {
    font-size: 46px;
    line-height: 1.08;
  }

  .heroSliderPLfhbfo__text {
    font-size: 17px;
  }
}
.gamesPLfhbfo {
  padding: 54px 0 64px;
  background: #111;
  overflow: hidden;
}

.gamesPLfhbfo__container {
  max-width: 1220px;
  width: 100%;
}

.gamesPLfhbfo__section {
  margin-bottom: 28px;
}

.gamesPLfhbfo__section:last-child {
  margin-bottom: 0;
}

.gamesPLfhbfo__title {
  margin: 0 0 18px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.gamesSliderPLfhbfo {
  position: relative;
  padding: 0 34px;
}

.gamesSliderPLfhbfo__list {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  list-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
}

.gamesSliderPLfhbfo__list::-webkit-scrollbar {
  display: none;
}

.gamesCardPLfhbfo {
  flex: 0 0 calc((100% - 30px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.gamesCardPLfhbfo__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #11bdf0;
  background: #080808;
}

.gamesCardPLfhbfo__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gamesCardPLfhbfo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 7px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #fff;
  background: linear-gradient(
    94deg,
    #eb9e39 1.61%,
    #7100fa 52.29%,
    #eb9e39 103.56%
  );
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.gamesSliderPLfhbfo__arrow {
  position: absolute;
  top: 41%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 36px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid #fff;
  background: linear-gradient(
    94deg,
    #eb9e39 1.61%,
    #7100fa 52.29%,
    #eb9e39 103.56%
  );
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.gamesSliderPLfhbfo__arrow--prev {
  left: 0;
}

.gamesSliderPLfhbfo__arrow--next {
  right: 0;
}

@media (max-width: 1180px) {
  .gamesPLfhbfo__container {
    max-width: 100%;
  }

  .gamesCardPLfhbfo {
    flex-basis: calc((100% - 20px) / 3);
  }
}

@media (max-width: 900px) {
  .gamesPLfhbfo {
    padding: 42px 0 48px;
  }

  .gamesSliderPLfhbfo {
    padding: 0 30px;
  }

  .gamesCardPLfhbfo {
    flex-basis: calc((100% - 10px) / 2);
  }

  .gamesSliderPLfhbfo__arrow {
    width: 26px;
    height: 34px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .gamesPLfhbfo {
    padding: 36px 0;
  }

  .gamesSliderPLfhbfo {
    padding-left: 16px;
  }

  .gamesSliderPLfhbfo__arrow {
    display: none;
  }

  .gamesSliderPLfhbfo__list {
    gap: 16px;

    padding-right: 16px;
    padding-bottom: 2px;

    margin: 0;

    scroll-snap-type: x mandatory;
  }

  .gamesCardPLfhbfo {
    flex: 0 0 clamp(180px, 62vw, 228px);

    &:first-child {
      margin-left: 0;
    }
  }
}

@media (max-width: 420px) {
  .gamesSliderPLfhbfo__list {
    gap: 12px;
  }

  .gamesCardPLfhbfo {
    flex-basis: 72vw;
  }

  .gamesCardPLfhbfo__btn {
    min-height: 44px;
    font-size: 11px;
  }
}
.footerPLfhbfo {
  background: #3f2b80;
}

.footerPLfhbfo__nav {
  background: #170c3a;
}

.footerPLfhbfo__nav-container {
  max-width: 1220px;
}

.footerPLfhbfo__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin: 0;
  padding: 28px 0;
  list-style: none;
}

.footerPLfhbfo__nav-list a,
.footerPLfhbfo__nav-btn {
  padding: 0;
  border: 0;
  background: transparent;
  color: #fb9a1c;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
}

.footerPLfhbfo__main {
  padding: 42px 0 28px;
  background: #3f2b80;
}

.footerPLfhbfo__container {
  max-width: 1220px;
  display: grid;
  grid-template-columns:
    minmax(150px, 220px) minmax(150px, 220px) minmax(280px, 1fr)
    minmax(180px, 260px);
  gap: 48px;
  align-items: start;
}

.footerPLfhbfo__title {
  margin: 0 0 26px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}

.footerPLfhbfo__apps,
.footerPLfhbfo__responsible,
.footerPLfhbfo__providers {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footerPLfhbfo__apps,
.footerPLfhbfo__responsible {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.footerPLfhbfo__apps img,
.footerPLfhbfo__responsible img,
.footerPLfhbfo__providers img,
.footerPLfhbfo__pay {
  display: block;
  max-width: 100%;
  height: auto;
}

.footerPLfhbfo__providers {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 28px 34px;
  align-items: center;
}

.footerPLfhbfo__col--pay {
  min-width: 0;
}

.footerPLfhbfo__pay {
  width: 100%;
  max-width: 250px;
  object-fit: contain;
}

.footerPLfhbfo__text {
  max-width: 1130px;
  margin: 48px auto 0;
  padding: 0 20px;
  color: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.18;
}

@media (max-width: 1100px) {
  .footerPLfhbfo__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 34px;
  }

  .footerPLfhbfo__col--providers {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .footerPLfhbfo__nav-list {
    gap: 14px 18px;
    padding: 18px 0;
  }

  .footerPLfhbfo__nav-list a,
  .footerPLfhbfo__nav-btn {
    font-size: 12px;
  }

  .footerPLfhbfo__main {
    padding: 18px 0 24px;
  }

  .footerPLfhbfo__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footerPLfhbfo__title {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .footerPLfhbfo__apps,
  .footerPLfhbfo__responsible {
    gap: 14px;
  }

  .footerPLfhbfo__providers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    max-width: 340px;
  }

  .footerPLfhbfo__pay {
    max-width: 260px;
  }

  .footerPLfhbfo__text {
    margin-top: 30px;
    font-size: 9px;
    line-height: 1.25;
  }
}

.policyHeroPLfhbfo {
  padding: 82px 0;
  background: #04071e;
}

.policyHeroPLfhbfo__container {
  max-width: 980px;
}

.policyHeroPLfhbfo__title {
  margin: 0 0 30px;

  color: #ffb71c;
  text-align: center;

  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 45px;

  text-transform: uppercase;
}

.policyHeroPLfhbfo__content {
  display: grid;
  gap: 18px;
}

.policyHeroPLfhbfo__content p {
  margin: 0;

  color: #fff;
  text-align: center;

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.policyHeroPLfhbfo__content > *:last-child {
  margin-bottom: 0;
}

.policyHeroPLfhbfo__content ul,
.policyHeroPLfhbfo__content ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;

  color: #fff;
  text-align: center;

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.policyHeroPLfhbfo__content h2,
.policyHeroPLfhbfo__content h3,
.policyHeroPLfhbfo__content h4 {
  margin: 10px 0 0;

  color: #ffb71c;
  text-align: center;

  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.policyHeroPLfhbfo__content a {
  color: #ffb71c;
}

@media (max-width: 768px) {
  .policyHeroPLfhbfo {
    padding: 56px 0;
  }

  .policyHeroPLfhbfo__container {
    max-width: 100%;
  }

  .policyHeroPLfhbfo__title {
    margin-bottom: 24px;

    font-size: 32px;
    line-height: 1.12;
  }

  .policyHeroPLfhbfo__content {
    gap: 14px;
  }

  .policyHeroPLfhbfo__content p,
  .policyHeroPLfhbfo__content ul,
  .policyHeroPLfhbfo__content ol {
    font-size: 16px;
  }
}

.accordionPLfhbfo {
  padding: 48px 0;
  background: #04071e;
}

.accordionPLfhbfo ol li {
  margin-left: 20px;
}

.accordionPLfhbfo__container {
  display: grid;
  gap: 16px;
}

.accordionPLfhbfo__item {
  border-radius: 19px;
  border: 0.568px solid #e5a3ff;
  background: #3f2b80;
  overflow: hidden;
}

.accordionPLfhbfo__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  width: 100%;
  padding: 20px 26px 10px 18px;

  border: 0;
  background: transparent;

  color: #fff;
  text-align: left;

  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;

  cursor: pointer;
}

.accordionPLfhbfo__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 23px;
}

.accordionPLfhbfo__icon::before,
.accordionPLfhbfo__icon::after {
  content: '';
  position: absolute;
  top: 8px;
  width: 16px;
  height: 4px;
  border-radius: 10px;
  background: #ffb71c;
  transition: transform 0.3s ease;
}

.accordionPLfhbfo__icon::before {
  left: -1px;
  transform: rotate(45deg);
}

.accordionPLfhbfo__icon::after {
  right: -1px;
  transform: rotate(-45deg);
}

.accordionPLfhbfo__button[aria-expanded='true']
  .accordionPLfhbfo__icon::before {
  transform: rotate(-45deg);
}

.accordionPLfhbfo__button[aria-expanded='true'] .accordionPLfhbfo__icon::after {
  transform: rotate(45deg);
}

.accordionPLfhbfo__panel {
  padding: 0 18px 18px;
}

.accordionPLfhbfo__content {
  color: rgba(255, 255, 255, 0.78);

  color: #c1c1c1;

  /* 16_regular */
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.accordionPLfhbfo__content p {
  margin: 0 0 12px;
}

.accordionPLfhbfo__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .accordionPLfhbfo {
    padding: 36px 0;
  }

  .accordionPLfhbfo__button {
    padding: 18px 18px 10px;
    font-size: 20px;
  }

  .accordionPLfhbfo__panel {
    padding: 0 18px 18px;
  }

  .accordionPLfhbfo__content {
    font-size: 16px;
    line-height: 1.25;
  }
}

.linksCardsPLfhbfo {
  padding: 56px 0;
  background: #04071e;
}

.linksCardsPLfhbfo__container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.linksCardsPLfhbfo__card {
  padding: 16px 14px 18px;

  border-radius: 19px;
  border: 0.568px solid #e5a3ff;

  background: #3f2b80;

  min-height: 100%;
}

.linksCardsPLfhbfo__card h2 {
  margin: 0 0 16px;

  color: #fff;

  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.15;

  text-transform: uppercase;
}

.linksCardsPLfhbfo__card ul {
  margin: 0;
  padding-left: 18px;

  display: grid;
  gap: 12px;
}

.linksCardsPLfhbfo__card li {
  color: #fff;
}

.linksCardsPLfhbfo__card a {
  color: #ffb71c;

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

  text-decoration: underline;

  transition: opacity 0.3s ease, color 0.3s ease;
}

.linksCardsPLfhbfo__card a:hover {
  opacity: 0.8;
}

.linksCardsPLfhbfo__card a:focus-visible {
  outline: 2px solid #ffb71c;
  outline-offset: 4px;
}

@media (max-width: 992px) {
  .linksCardsPLfhbfo__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .linksCardsPLfhbfo__card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .linksCardsPLfhbfo {
    padding: 36px 0;
  }

  .linksCardsPLfhbfo__container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .linksCardsPLfhbfo__card:last-child {
    grid-column: auto;
  }

  .linksCardsPLfhbfo__card {
    padding: 16px;
  }

  .linksCardsPLfhbfo__card h2 {
    margin-bottom: 14px;

    font-size: 18px;
    line-height: 1.2;
  }

  .linksCardsPLfhbfo__card ul {
    gap: 10px;
  }

  .linksCardsPLfhbfo__card a {
    font-size: 16px;
    line-height: 1.2;
  }
}
.faqListPLfhbfo {
  padding: 48px 0;
  background: #04071e;
}

.faqListPLfhbfo__container {
  display: grid;
  gap: 18px;

  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;

  list-style: none;
}

.faqListPLfhbfo__box {
  padding: 18px 14px;

  border-radius: 19px;
  border: 0.568px solid #e5a3ff;
  background: #3f2b80;

  overflow: hidden;
}

.faqListPLfhbfo__title {
  margin: 0 0 12px;

  color: #fff;

  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;

  text-transform: uppercase;
}

.faqListPLfhbfo__box p {
  margin: 0;

  color: rgba(255, 255, 255, 0.78);

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.22;

  overflow-wrap: anywhere;
}

.faqListPLfhbfo__box a {
  color: #ffb71c;
}

.faqListPLfhbfo__box ul,
.faqListPLfhbfo__box ol {
  margin: 12px 0 0;
  padding-left: 20px;

  color: rgba(255, 255, 255, 0.78);

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.22;
}

@media (max-width: 768px) {
  .faqListPLfhbfo {
    padding: 36px 0;
  }

  .faqListPLfhbfo__container {
    gap: 16px;
  }

  .faqListPLfhbfo__box {
    padding: 16px;
  }

  .faqListPLfhbfo__title {
    font-size: 20px;
    line-height: 1.2;
  }

  .faqListPLfhbfo__box p,
  .faqListPLfhbfo__box ul,
  .faqListPLfhbfo__box ol {
    font-size: 16px;
    line-height: 1.25;
  }
}

.responsibleTextPLfhbfo {
  padding: 64px 0;
  background: #04071e;
}

.responsibleTextPLfhbfo__container {
  max-width: 1220px;
}

.responsibleTextPLfhbfo__title {
  margin: 0 0 28px;

  color: #ffb71c;
  text-align: center;

  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 45px;

  text-transform: uppercase;
}

.responsibleTextPLfhbfo__content {
  color: rgba(255, 255, 255, 0.78);

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.responsibleTextPLfhbfo__content p {
  margin: 0;
}

.responsibleTextPLfhbfo__content ul {
  margin: 0;
  padding-left: 24px;
}

.responsibleTextPLfhbfo__content li {
  margin: 0;
}

@media (max-width: 768px) {
  .responsibleTextPLfhbfo {
    padding: 46px 0;
  }

  .responsibleTextPLfhbfo__title {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 1.12;
  }

  .responsibleTextPLfhbfo__content {
    font-size: 16px;
    line-height: 1.25;
  }
}

.personCardPLfhbfo {
  padding: 56px 0;
  background: #04071e;
}

.personCardPLfhbfo__card {
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  align-items: center;
  gap: 56px;

  padding: 28px 42px;

  border-radius: 36px;
  border: 1px solid #e5a3ff;

  background: linear-gradient(180deg, #1b1a50 0%, #0d0e2f 100%);

  box-shadow: 0 -2px 20.2px 0 rgba(229, 163, 255, 0.51);

  overflow: hidden;
}

.personCardPLfhbfo__image {
  display: flex;
  justify-content: center;
}

.personCardPLfhbfo__image img {
  display: block;

  width: 100%;
  max-width: 560px;
  height: auto;

  object-fit: contain;
}

.personCardPLfhbfo__content {
  max-width: 560px;
}

.personCardPLfhbfo__title {
  margin: 0 0 18px;

  color: #ffb71c;
  text-align: center;

  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 45px;

  text-transform: uppercase;
}

.personCardPLfhbfo__text {
  margin: 0;

  color: #fff;
  text-align: center;

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 992px) {
  .personCardPLfhbfo__card {
    grid-template-columns: 1fr;

    gap: 28px;

    padding: 28px 22px;
  }

  .personCardPLfhbfo__content {
    max-width: 100%;
  }

  .personCardPLfhbfo__image img {
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .personCardPLfhbfo {
    padding: 36px 0;
  }

  .personCardPLfhbfo__card {
    gap: 24px;

    padding: 24px 18px;

    border-radius: 30px;
  }

  .personCardPLfhbfo__image img {
    max-width: 100%;
  }

  .personCardPLfhbfo__title {
    margin-bottom: 18px;

    font-size: 32px;
    line-height: 1.15;
  }

  .personCardPLfhbfo__text {
    font-size: 16px;
    line-height: 1.2;
  }
}

.adamActionsPLfhbfo {
  padding: 56px 0;
  background: #04071e;
}

.adamActionsPLfhbfo__title {
  margin: 0 0 26px;

  color: #fff;
  text-align: center;

  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 45px;

  text-transform: uppercase;
}

.adamActionsPLfhbfo__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.adamActionsPLfhbfo__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 435px;

  padding: 34px 28px;

  border-radius: 36px;
  border: 1px solid #e5a3ff;

  background: linear-gradient(180deg, #1b1a50 0%, #0d0e2f 100%);

  box-shadow: 0 -2px 20.2px 0 rgba(229, 163, 255, 0.51);
}

.adamActionsPLfhbfo__item:last-child {
  grid-column: 1 / -1;

  max-width: 620px;
  width: 100%;

  justify-self: center;
}

.adamActionsPLfhbfo__item img {
  display: block;

  width: 100%;
  max-width: 310px;
  height: auto;

  object-fit: contain;

  margin-bottom: 34px;
}

.adamActionsPLfhbfo__item p {
  margin: 0;

  color: #fff;
  text-align: center;

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;

  max-width: 420px;
}

@media (max-width: 768px) {
  .adamActionsPLfhbfo {
    padding: 36px 0;
  }

  .adamActionsPLfhbfo__title {
    margin-bottom: 20px;

    font-size: 32px;
    line-height: 1.15;
  }

  .adamActionsPLfhbfo__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .adamActionsPLfhbfo__item,
  .adamActionsPLfhbfo__item:last-child {
    min-height: 0;
    max-width: 100%;

    padding: 30px 18px;

    border-radius: 30px;
  }

  .adamActionsPLfhbfo__item img {
    max-width: 260px;

    margin-bottom: 28px;
  }

  .adamActionsPLfhbfo__item p {
    font-size: 16px;
    line-height: 1.2;
  }
}

.adamDontPLfhbfo {
  padding: 8px 0 56px;
  background: #04071e;
}

.adamDontPLfhbfo__title {
  margin: 0 0 26px;

  color: #fff;
  text-align: center;

  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 45px;

  text-transform: uppercase;
}

.adamDontPLfhbfo__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.adamDontPLfhbfo__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 390px;

  padding: 30px;

  border-radius: 36px;
  border: 1px solid #bf645c;

  background: linear-gradient(180deg, #1b1a50 0%, #0d0e2f 100%);

  box-shadow: 0 -2px 23.4px 0 rgba(234, 47, 30, 0.92);
}

.adamDontPLfhbfo__item:last-child {
  grid-column: 1 / -1;

  max-width: 560px;
  width: 100%;

  justify-self: center;
}

.adamDontPLfhbfo__item img {
  display: block;

  width: 100%;
  max-width: 270px;
  height: auto;

  object-fit: contain;

  margin-bottom: 32px;
}

.adamDontPLfhbfo__item p {
  margin: 0;

  color: #fff;
  text-align: center;

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;

  max-width: 420px;
}

@media (max-width: 768px) {
  .adamDontPLfhbfo {
    padding: 6px 0 36px;
  }

  .adamDontPLfhbfo__title {
    margin-bottom: 20px;

    font-size: 32px;
    line-height: 1.15;
  }

  .adamDontPLfhbfo__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .adamDontPLfhbfo__item,
  .adamDontPLfhbfo__item:last-child {
    min-height: auto;

    max-width: 100%;

    padding: 28px 18px;
  }

  .adamDontPLfhbfo__item img {
    max-width: 240px;

    margin-bottom: 28px;
  }
}

.happyAdamPLfhbfo {
  padding: 56px 0;
  background: #04071e;
}

.happyAdamPLfhbfo__card {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 560px);
  align-items: center;
  gap: 40px;

  padding: 24px 40px;

  border-radius: 36px;
  border: 1px solid #00ff44;

  background: linear-gradient(180deg, #1b1a50 0%, #0d0e2f 100%);

  box-shadow: 0 -2px 20.2px 0 rgba(0, 255, 68, 0.51);

  overflow: hidden;
}

.happyAdamPLfhbfo__content {
  max-width: 520px;
}

.happyAdamPLfhbfo__title {
  margin: 0 0 18px;

  color: #ffb71c;
  text-align: center;

  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 45px;

  text-transform: uppercase;
}

.happyAdamPLfhbfo__text {
  margin: 0;

  color: #fff;
  text-align: center;

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.happyAdamPLfhbfo__image {
  display: flex;
  justify-content: center;
}

.happyAdamPLfhbfo__image img {
  display: block;

  width: 100%;
  max-width: 520px;
  height: auto;

  object-fit: contain;
}

@media (max-width: 992px) {
  .happyAdamPLfhbfo__card {
    grid-template-columns: 1fr;

    gap: 24px;

    padding: 24px;
  }

  .happyAdamPLfhbfo__image {
    order: -1;
  }

  .happyAdamPLfhbfo__content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .happyAdamPLfhbfo {
    padding: 36px 0;
  }

  .happyAdamPLfhbfo__card {
    gap: 18px;

    padding: 22px 18px;

    border-radius: 30px;
  }

  .happyAdamPLfhbfo__image img {
    max-width: 100%;
  }

  .happyAdamPLfhbfo__title {
    margin-bottom: 16px;

    font-size: 32px;
    line-height: 1.15;
  }

  .happyAdamPLfhbfo__text {
    font-size: 16px;
    line-height: 1.2;
  }
}

.careerCardsPLfhbfo {
  padding: 56px 0;
  background: #04071e;
}

.careerCardsPLfhbfo__title {
  margin: 0 0 38px;

  color: #ffb71c;
  text-align: center;

  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 45px;

  text-transform: uppercase;
}

.careerCardsPLfhbfo__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.careerCardsPLfhbfo__item {
  display: flex;
  flex-direction: column;

  padding: 48px 38px;

  border-radius: 36px;
  border: 1px solid #e5a3ff;

  background: linear-gradient(180deg, #1b1a50 0%, #0d0e2f 100%);

  box-shadow: 0 -2px 20.2px 0 rgba(229, 163, 255, 0.51);
}

.careerCardsPLfhbfo__item h2 {
  margin: 0 0 28px;

  color: #ffb71c;
  text-align: center;

  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;

  text-transform: uppercase;
}

.careerCardsPLfhbfo__item p {
  margin: 0;

  color: #fff;
  text-align: center;

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 768px) {
  .careerCardsPLfhbfo {
    padding: 36px 0;
  }

  .careerCardsPLfhbfo__title {
    margin-bottom: 24px;

    font-size: 32px;
    line-height: 1.15;
  }

  .careerCardsPLfhbfo__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .careerCardsPLfhbfo__item {
    padding: 30px 18px;
  }

  .careerCardsPLfhbfo__item h2 {
    margin-bottom: 18px;

    font-size: 24px;
  }
}

.joinTeamPLfhbfo {
  padding: 56px 0;
  background: #04071e;
}

.joinTeamPLfhbfo__title {
  margin: 0 0 38px;
  color: #ffb71c;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 45px;
  text-transform: uppercase;
}

.joinTeamPLfhbfo__list {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 24px;
  list-style: none;
  border-radius: 19px;
  border: 0.568px solid #e5a3ff;
  background: #3f2b80;
}

.joinTeamPLfhbfo__item {
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: center;
  gap: 24px;
}

.joinTeamPLfhbfo__item h3 {
  margin: 0;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;
  text-transform: uppercase;
}

.joinTeamPLfhbfo__button {
  min-height: 47px;
  border-radius: 11px;
  border: 1px solid #fff;
  background: linear-gradient(
    94deg,
    #eb9e39 1.61%,
    #7100fa 52.29%,
    #eb9e39 103.56%
  );
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 768px) {
  .joinTeamPLfhbfo {
    padding: 36px 0;
  }

  .joinTeamPLfhbfo__title {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 1.15;
  }

  .joinTeamPLfhbfo__list {
    padding: 16px;
  }

  .joinTeamPLfhbfo__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .joinTeamPLfhbfo__button {
    width: 190px;
  }
}

.advantagesPLfhbfo {
  padding: 56px 0;
  background: #04071e;
}

.advantagesPLfhbfo__title {
  margin: 0 0 18px;

  color: #ffb71c;
  text-align: center;

  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 45px;

  text-transform: uppercase;
}

.advantagesPLfhbfo__text {
  max-width: 860px;

  margin: 0 auto 36px;

  color: #fff;
  text-align: center;

  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.advantagesPLfhbfo__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 24px;

  margin: 0;
  padding: 34px;

  list-style: none;

  border-radius: 36px;
  border: 1px solid #e5a3ff;

  background: #3f2b80;
}

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

  text-align: center;
}

.advantagesPLfhbfo__item img {
  display: block;

  width: 78px;
  height: 78px;

  object-fit: contain;

  margin-bottom: 18px;
}

.advantagesPLfhbfo__item h3 {
  margin: 0;

  color: #fff;

  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;

  text-transform: uppercase;
}

@media (max-width: 768px) {
  .advantagesPLfhbfo {
    padding: 36px 0;
  }

  .advantagesPLfhbfo__title {
    margin-bottom: 16px;

    font-size: 32px;
    line-height: 1.15;
  }

  .advantagesPLfhbfo__text {
    margin-bottom: 28px;
  }

  .advantagesPLfhbfo__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px 20px;

    padding: 24px 18px;

    border-radius: 30px;
  }

  .advantagesPLfhbfo__item img {
    width: 70px;
    height: 70px;
  }

  .advantagesPLfhbfo__item h3 {
    font-size: 18px;
    line-height: 1.2;

    overflow-wrap: anywhere;
  }
}

.contactCardsPLfhbfo {
  padding: 56px 0;
  background: #04071e;
}

.contactCardsPLfhbfo__title {
  margin: 0 0 42px;
  color: #ffb71c;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 45px;
  text-transform: uppercase;
}

.contactCardsPLfhbfo__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contactCardsPLfhbfo__item {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 56px 48px 42px;
  border-radius: 36px;
  border: 1px solid #e5a3ff;
  background: linear-gradient(180deg, #1b1a50 0%, #0d0e2f 100%);
  box-shadow: 0 -2px 20.2px rgba(229, 163, 255, 0.51);
}

.contactCardsPLfhbfo__item img {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  object-fit: contain;
}

.contactCardsPLfhbfo__item h2 {
  margin: 0 0 34px;
  color: #ffb71c;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;
  text-transform: uppercase;
}

.contactCardsPLfhbfo__item p,
.contactCardsPLfhbfo__item address {
  margin: auto 0 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  font-style: normal;
}

.contactCardsPLfhbfo__link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.contactCardsPLfhbfo__link:hover {
  color: #ffb71c;
}

.contactCardsPLfhbfo__link:focus-visible {
  outline: 2px solid #ffb71c;
  outline-offset: 4px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .contactCardsPLfhbfo {
    padding: 36px 0;
  }

  .contactCardsPLfhbfo__title {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 1.15;
  }

  .contactCardsPLfhbfo__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contactCardsPLfhbfo__item {
    min-height: auto;
    padding: 34px 26px;
    border-radius: 30px;
  }

  .contactCardsPLfhbfo__item img {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
  }

  .contactCardsPLfhbfo__item h2 {
    margin-bottom: 24px;
    font-size: 18px;
  }
}
