*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 1280px) {
  html {
    font-size: 50.5%;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 41.5%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  margin: 0;
  min-width: 320px;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Noto Sans", sans-serif;
  background: rgba(248, 249, 244, 1);

}

img {
  max-width: 100%;
  max-height: 100%;
}

.container {
  max-width: 118rem;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 2.4rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    max-width: 390px;
  }
}

.failed-region {
  padding-top: 2rem;
  padding-bottom: 4rem;
  text-align: center;
  background: url("/geo-block/img/404-bg.png") center center / cover;
  height: 100%;
}

.failed-region__title {
  font-size: 5rem;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  background: linear-gradient(95.83deg, #806a39 1.26%, #af9357 47.69%, #806a39 95.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
  .failed-region__title {
    font-size: 4.5rem;
    margin-bottom: 0.9rem;
  }
}

.failed-region__img {
  width: 26rem;
  margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
  .failed-region__img {
    width: 21.3rem;
    margin-bottom: 1.1rem;
  }
}

.failed-region__desc {
  font-size: 1.8rem;
  margin-bottom: 3.3rem;
}

@media (max-width: 768px) {
  .failed-region__desc {
    margin-bottom: 2.1rem;
  }
}

.failed-region__txt {
  max-width: 32rem;
  margin: 0 auto;
  font-size: 1.4rem;
  color: #7f7f7f;
}

.failed-region__txt a {
  font-weight: bold;
  color: #7f7f7f;
  text-decoration: underline;
}

.failed-region__txt a:hover {
  text-decoration: none;
}

