/* Forbidden / Region page - standalone styles */

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

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.not-found-page {
  position: relative;
  background-color: #FEF3F9;
  display: flex;
  justify-content: center;
  padding: 192px 120px 72px;
  box-sizing: border-box;
  color: #000;
  min-height: 100vh;
}

@media (max-width: 1024px) {
  .not-found-page {
    padding: 159px 24px 60px;
  }
}

@media (max-width: 480px) {
  .not-found-page {
    padding: 171px 16px 40px;
  }
}

.politic-page__bg {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 646px;
  background:
    linear-gradient(0deg,
      rgba(254, 243, 249, 0) 0%,
      rgba(254, 243, 249, 1) 100%),
    linear-gradient(180deg,
      rgba(254, 243, 249, 0) 0%,
      rgba(254, 243, 249, 1) 100%),
    url("images/turbo-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.politic-page__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 8px;
  background: #FEF3F9;
}

.not-found-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 1180px;
  z-index: 2;
}

@media (max-width: 1024px) {
  .not-found-page__content {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .not-found-page__content {
    gap: 10px;
  }
}

.not-found-page__img {
  max-width: 522px;
  width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  .not-found-page__img {
    max-width: 294px;
  }
}

.not-found-page__img--access {
  max-width: 254px;
}

@media (max-width: 480px) {
  .not-found-page__img--access {
    max-width: 170px;
  }
}

.not-found-page__text {
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not-found-page__title {
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg,
    #F97ABF 0%,
    #F1188B 50%,
    #EC047E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.not-found-page__sub {
  font-size: 16px;
  text-align: center;
  color: #000;
}
