/* 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: 'Montserrat';
  src: url('/fontsMYLPONy/montserrat-variablefontMYLPONy.woff2') format('woff2');
  font-weight: 100 900; /* variable */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('/fontsMYLPONy/opensans-variablefontMYLPONy.woff2') format('woff2');
  font-weight: 100 900; /* variable */
  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%;
}
html,
body {
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 0;
  background: #000;
  overflow: hidden;
}

main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background: url('/imagesMYLPONy/herowheelMYLPONy.webp') top center / contain
    no-repeat;
}

main::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 50%,
      #000 85%,
      #000 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6) 45%, #000 75%);
}
/* BASE */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

/* HEADER */
.headerMYLPONy {
  position: relative;
  z-index: 10;
  background: #171717;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* TOP */
.headerMYLPONy__top {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;

  padding: 6px 10px;
  font-size: 10px;
  color: #fff;
  text-align: center;
}

.headerMYLPONy__age {
  font-size: 18px;
  font-weight: 800;
  color: #6c73f5;
}

/* MAIN */
.headerMYLPONy__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 15px;
}

.headerMYLPONy__logo img {
  width: 150px;
}

/* NAV */
.headerMYLPONy__list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.headerMYLPONy__list a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* BURGER */
.headerMYLPONy__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.headerMYLPONy__burger span {
  width: 28px;
  height: 3px;
  background: #ff6a00;
}

/* MOBILE MENU */
.headerMYLPONy__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;

  background: #171717;
  padding: 20px;

  transform: translateX(100%);
  transition: transform 0.3s ease;

  z-index: 9999;
}

.headerMYLPONy__mobile.active {
  transform: translateX(0);
}

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

/* CLOSE */
.headerMYLPONy__close {
  width: 40px;
  height: 40px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.headerMYLPONy__close span {
  position: absolute;
  top: 18px;
  left: 8px;
  width: 24px;
  height: 3px;
  background: #ff6a00;
}

.headerMYLPONy__close span:nth-child(1) {
  transform: rotate(45deg);
}
.headerMYLPONy__close span:nth-child(2) {
  transform: rotate(-45deg);
}

/* MOBILE LIST */
.headerMYLPONy__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.headerMYLPONy__mobile-list a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* OVERLAY */
.headerMYLPONy__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);

  opacity: 0;
  pointer-events: none;
  transition: 0.3s;

  z-index: 9998;
}

.headerMYLPONy__overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* LOCK */
.body-lockMYLPONy {
  overflow: hidden;
}

/* MOBILE */
@media (max-width: 992px) {
  .headerMYLPONy__nav {
    display: none;
  }

  .headerMYLPONy__burger {
    display: flex;
  }

  .headerMYLPONy__top {
    font-size: 9px;
  }
}

.heroMYLPONy {
  padding-top: 16px;

  position: relative;
}

.heroMYLPONy__content {
  max-width: 650px;
}

.heroMYLPONy__title {
  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 44px;

  margin-bottom: 20px;
}

.heroMYLPONy__text {
  color: #fff;

  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 400;

  margin-bottom: 30px;
}

.heroMYLPONy__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.heroMYLPONy__item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  color: #fff;
  text-align: center;

  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;

  border-radius: 5px;
  border: 1px solid #c6bcbc;

  background: linear-gradient(90deg, #2b32b2 0%, #1488cc 100%);
}

.heroMYLPONy__item img {
  width: 16px;
  height: 16px;
}

@media (max-width: 992px) {
  .heroMYLPONy {
    padding: 80px 0;
  }

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

@media (max-width: 576px) {
  .heroMYLPONy {
    padding-top: 6px;
  }

  .heroMYLPONy__content {
    text-align: center;
  }

  .heroMYLPONy__title {
    color: var(--White, #fff);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    margin-bottom: 11px;
  }

  .heroMYLPONy__text {
    display: none;
  }

  .heroMYLPONy__list {
    justify-content: center;
    gap: 8px;
  }

  .heroMYLPONy__item {
    font-size: 12px;
    padding: 3px 4px;
  }
}
.brandsFinalMYLPONy {
  padding: 36px 0 70px;
}

.brandsFinalMYLPONy__desktop {
  display: none;
}

.brandsFinalMYLPONy__mobile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 320px;
  position: relative;
  top: -95px;
}

.brandCardMobileMYLPONy,
.brandCardDeskMYLPONy {
  box-sizing: border-box;
}

.brandCardMobileMYLPONy {
  position: relative;
  overflow: visible;
  width: 100%;
  padding: 16px 14px 0px;
  border-radius: 22px;
  border: 1px solid #878dd3;
  background: #0a0a2e;
  backdrop-filter: blur(0px);
}

.brandCardMobileMYLPONy__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 155px;
  max-width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #c6bcbc;
  background: linear-gradient(90deg, #2b32b2 0%, #1488cc 100%);
  text-decoration: none;
  box-shadow: 0 0 0 2px rgba(10, 10, 46, 0.96);
}

.brandCardMobileMYLPONy__badge img {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 auto;
}

.brandCardMobileMYLPONy__badge span {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 114.236%;
}

.brandCardMobileMYLPONy__headSolo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  margin-bottom: 12px;
}

.brandCardMobileMYLPONy__head {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-top: 2px;
}

.brandCardMobileMYLPONy__head--plain {
  padding-top: 18px;
}

.brandCardMobileMYLPONy__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 66px;
  text-decoration: none;
}

.brandCardMobileMYLPONy__logo--solo {
  justify-content: center;
  min-height: 88px;
}

.brandCardMobileMYLPONy__logo img {
  display: block;
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  margin: 0 auto;
}

.brandCardMobileMYLPONy__info,
.brandCardMobileMYLPONy__infoSolo {
  text-align: center;
}

.brandCardMobileMYLPONy__rating {
  color: #fff;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.72px;
  font-style: normal;
  font-weight: 600;
  line-height: 12.15px; /* 125% */
}

.brandCardMobileMYLPONy__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  list-style: none;
  margin: 6px 0 8px;
  padding: 0;
}

.brandCardMobileMYLPONy__stars img {
  display: block;
  width: 9.74px;
  height: 9.236px;
  aspect-ratio: 20 / 18.97;
}

.brandCardMobileMYLPONy__desc {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.brandCardMobileMYLPONy__users {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  margin: auto;
  max-width: max-content;
  margin: 0 0 12px;
  margin: auto;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid #c6bcbc;
  background: linear-gradient(90deg, #2b32b2 0%, #1488cc 100%);
  text-decoration: none;
}

.brandCardMobileMYLPONy__users img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
}

.brandCardMobileMYLPONy__users span {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 114.236%;
}

.brandCardMobileMYLPONy__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0;
  padding: 10px 14px;
  border-radius: 11px;
  border: 1px solid #c44f00;
  background: #c44f00;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.brandCardMobileMYLPONy__payments {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0 4px;
}

.brandCardMobileMYLPONy__payments img {
  object-fit: contain;
  display: block;
  max-width: 100%;
}

.brandCardMobileMYLPONy__num {
  display: none;
}

@media (min-width: 600px) and (max-width: 991px) {
  .brandsFinalMYLPONy__mobile {
    max-width: 680px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    top: -95px;
  }

  .brandCardMobileMYLPONy {
    min-height: 100%;
  }
}

@media (min-width: 992px) {
  .brandsFinalMYLPONy__mobile {
    display: none;
  }
  .brandsFinalMYLPONy__desktop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: stretch;
  }

  .brandCardDeskMYLPONy {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 474px;
    padding: 84px 16px 18px;
    border-radius: 22px;
    border: 1px solid #878dd3;
    background: #0a0a2e;
    backdrop-filter: blur(0px);
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .brandCardDeskMYLPONy:nth-child(n + 4) {
    padding-top: 16px;
  }

  .brandCardDeskMYLPONy__badge {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 214px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 16px 18px 14px 18px;
    border-radius: 0 0 20px 0;
    border-right: 1px solid #878dd3;
    border-bottom: 1px solid #878dd3;
    background: linear-gradient(90deg, #2b32b2 0%, #1488cc 100%);
    text-decoration: none;
  }

  .brandCardDeskMYLPONy__badge img {
    width: 16px;
    height: 16px;
    display: block;
    flex: 0 0 auto;
  }

  .brandCardDeskMYLPONy__badge span {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 114.236%;
  }

  .brandCardDeskMYLPONy__ratingWrap {
    position: absolute;
    top: 18px;
    right: 24px;
    width: 130px;
    text-align: center;
  }

  .brandCardDeskMYLPONy__ratingWrap--simple {
    position: static;
    width: auto;
    margin-bottom: 18px;
  }

  .brandCardDeskMYLPONy__rating {
    color: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
  }

  .brandCardDeskMYLPONy__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
  }

  .brandCardDeskMYLPONy__stars img {
    display: block;
    width: 20px;
    height: 18.966px;
    aspect-ratio: 20 / 18.97;
  }

  .brandCardDeskMYLPONy__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 116px;
    text-decoration: none;
  }

  .brandCardDeskMYLPONy__logo--simple {
    min-height: 120px;
    margin-bottom: 16px;
  }

  .brandCardDeskMYLPONy__logo img {
    display: block;
    width: 100%;
    max-width: 220px;
    max-height: 88px;
    object-fit: contain;
    margin: 0 auto;
  }

  .brandCardDeskMYLPONy__users {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    margin: 0 6px 14px;
    padding: 7px 12px;
    border-radius: 5px;
    border: 1px solid #c6bcbc;
    background: linear-gradient(90deg, #2b32b2 0%, #1488cc 100%);
    text-decoration: none;
  }

  .brandCardDeskMYLPONy__users img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
  }

  .brandCardDeskMYLPONy__users span {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 114.236%;
  }

  .brandCardDeskMYLPONy__desc {
    margin: 0 0 14px;
    color: #fff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    min-height: 72px;
  }

  .brandCardDeskMYLPONy__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin: 0 0 14px;
    padding: 10px 14px;
    border-radius: 11px;
    border: 1px solid #c44f00;
    background: #c44f00;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }

  .brandCardDeskMYLPONy__license {
    margin: 0 0 18px;
    color: #fff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    min-height: 22px;
  }

  .brandCardDeskMYLPONy__payments {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    list-style: none;
    margin: auto 0 0;
    padding: 0;
  }

  .brandCardDeskMYLPONy__payments img {
    object-fit: contain;
    display: block;
    max-width: 100%;
  }

  .brandCardDeskMYLPONy__num {
    display: none;
  }
}

.guideMYLPONy {
  padding: 60px 0;
  padding-top: 0;
}

.guideMYLPONy__title {
  color: #fff;
  text-align: center;

  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 45px;
  max-width: 817px;
  margin: auto;
  margin-bottom: 40px;
}

.guideMYLPONy__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;

  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.guideMYLPONy__item {
  position: relative;
  padding: 20px;

  border-radius: 22px;
  border: 1px solid #878dd3;
  background: #0a0a2e;
}

.guideMYLPONy__num {
  display: block;
  background: linear-gradient(90deg, #2b32b2 0%, #1488cc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;

  margin-bottom: 10px;
}

.guideMYLPONy__highlight .guideMYLPONy__num {
  color: #fff;
  background: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
}

.guideMYLPONy__subtitle {
  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;

  margin-bottom: 20px;
}

.guideMYLPONy__text {
  color: #bebebe;

  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

.guideMYLPONy__highlight {
  padding: 24px;

  border-radius: 21px;
  border: 1px solid #c6bcbc;

  background: linear-gradient(90deg, #2b32b2 0%, #1488cc 100%);

  margin-bottom: 30px;
}

.guideMYLPONy__highlight-title {
  color: #fff;

  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;

  margin-bottom: 10px;
}

.guideMYLPONy__highlight-text {
  color: #fff;

  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

.guideMYLPONy__note {
  text-align: center;

  padding: 30px;

  border-radius: 21px;
  border: 1px solid #c6bcbc;

  background: linear-gradient(90deg, #2b32b2 0%, #1488cc 100%);
}

.guideMYLPONy__note-age {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;

  margin-bottom: 10px;
}

.guideMYLPONy__note-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;

  margin-bottom: 10px;
}

.guideMYLPONy__note-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #fff;
}

@media (min-width: 992px) {
  .guideMYLPONy__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .guideMYLPONy__list--bottom {
    grid-template-columns: repeat(4, 1fr);
  }
}

.guideMYLPONy__list.guideMYLPONy__list--bottom .guideMYLPONy__subtitle {
  text-align: center;
}

.footerMYLPONy {
  padding: 80px 0;
  background: #171717;
  color: #fff;
}

.footerMYLPONy__age {
  text-align: center;
  color: #2f6bff;

  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;

  margin-bottom: 40px;
}

.footerMYLPONy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footerMYLPONy__col {
  text-align: center;
}

.footerMYLPONy__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footerMYLPONy__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #bdbdbd;
}

.contactMYLPONy__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contactMYLPONy__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-family: 'Open Sans', sans-serif;
  font-size: 14px;

  margin-bottom: 12px;
}

.contactMYLPONy__item img {
  width: 18px;
  height: 18px;
}

.contactMYLPONy__item a {
  color: #fff;
  text-decoration: none;
}

.footerMYLPONy__company {
  text-align: center;

  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #bdbdbd;

  margin-bottom: 40px;
}

.footerMYLPONy__logos {
  text-align: center;
  margin-bottom: 20px;
}

.footerMYLPONy__logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footerMYLPONy__logos img {
  max-height: 40px;
}

.footerMYLPONy__age-small {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.footerMYLPONy__warning {
  text-align: center;

  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;

  margin-bottom: 20px;
}

.footerMYLPONy__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;

  list-style: none;
  padding: 0;
  margin: 0;

  text-align: center;
}

.footerMYLPONy__menu a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;

  color: #fff;
  text-decoration: none;
}

@media (min-width: 992px) {
  .footerMYLPONy__grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .contactMYLPONy__item {
    justify-content: flex-start;
  }

  .footerMYLPONy__menu {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}
.contactMYLPONy {
  background: #171717;
  padding: 100px 0;
  color: #fff;
}

.contactMYLPONy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contactMYLPONy__image {
  height: 100%;
}

.contactMYLPONy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.contactMYLPONy__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contactMYLPONy__text {
  margin-bottom: 25px;
  color: #fff;
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 400;
}

.contactMYLPONy__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
}

.contactMYLPONy__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Open Sans';
  font-size: 16px;
}

.contactMYLPONy__item img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}

.contactMYLPONy__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contactMYLPONy__form input,
.contactMYLPONy__form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 11px;
  border: none;
  font-family: 'Open Sans';
  font-size: 16px;
  background: #dcdcdc;
  color: #171717;
}

.contactMYLPONy__form textarea {
  min-height: 140px;
  resize: none;
}

.contactMYLPONy__form button {
  border-radius: 11px;
  border: 1px solid #c44f00;
  background: #c44f00;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 800;
  padding: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.contactMYLPONy__form button:hover {
  opacity: 0.9;
}

.contactMYLPONy__message {
  font-family: 'Open Sans';
  font-size: 14px;
  color: #4caf50;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

.contactMYLPONy__message.active {
  opacity: 1;
  transform: translateY(0);
}

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

  .contactMYLPONy__image {
    order: 2;
    height: auto;
  }

  .contactMYLPONy__image img {
    height: auto;
  }

  .contactMYLPONy__content {
    order: 1;
  }
}

@media (max-width: 576px) {
  .contactMYLPONy {
    padding: 60px 0;
  }

  .contactMYLPONy__text {
    font-size: 15px;
  }
}
.contactMYLPONy__item a {
  color: #fff;
  text-decoration: none;
  font-family: 'Open Sans';
  font-size: 16px;
}

.contactMYLPONy__item a:hover {
  text-decoration: underline;
}

.terms {
  padding: 70px 0;
  background: #171717;
  word-wrap: break-word;
}

.terms h1 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 800;
  line-height: 45px;
  margin-bottom: 24px;
}

.terms h2 {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 24px;
}

.terms p {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}

.terms ul {
  margin-bottom: 24px;
}

.terms ul li {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 740px) {
  .terms {
    padding: 32px 0;
  }
}
