* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

.container__page {
  width: 70%;
  margin: 0 auto;
}

a {
  transition: 0.8s;
}
a:hover {
  opacity: 0.8;
  transition: 0.8s;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #E8AE62;
  border: 2px solid #ffb35c;
  background: rgba(255, 150, 40, 0.03);
  box-shadow: 0 0 8px rgba(255, 180, 90, 0.9), 0 0 22px rgba(255, 140, 30, 0.65), 0 0 55px rgba(255, 120, 0, 0.35), inset 0 0 8px rgba(255, 190, 100, 0.85), inset 0 0 22px rgba(255, 140, 30, 0.45), inset 0 0 45px rgba(255, 110, 0, 0.18);
  text-shadow: 0 0 6px rgba(255, 190, 120, 0.45);
  transition: 0.3s ease;
}
.button:hover {
  background: rgba(255, 150, 40, 0.08);
  box-shadow: 0 0 12px rgb(255, 190, 100), 0 0 32px rgba(255, 140, 30, 0.8), 0 0 75px rgba(255, 120, 0, 0.5), inset 0 0 12px rgb(255, 200, 120), inset 0 0 30px rgba(255, 150, 40, 0.6), inset 0 0 60px rgba(255, 100, 0, 0.25);
}
@media screen and (max-width: 1920px) {
  .button {
    font-size: 20px;
    padding: 15px 35px;
  }
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 16px;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  background-color: #010100;
  max-height: 100svh;
}
.wrapper__image {
  max-height: calc(100svh - 80px);
  background-color: #010100;
  background-repeat: no-repeat;
  background-image: url("../image/main_wrapper.jpg");
  background-position: center right;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .wrapper__image {
    height: calc(100svh - 80px);
    background-image: url("../image/main_wrapper_mobile.jpg");
    background-position: center center;
    background-size: cover;
  }
}

a {
  text-decoration: none;
}

.header {
  display: flex;
  align-items: center;
  height: 80px;
  background-color: #010100;
  color: #E8AE62;
}
@media screen and (max-width: 767px) {
  .header {
    padding-top: 10px;
    justify-content: center;
    background-color: #0D080C;
  }
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    justify-content: center;
  }
}
.header__logo {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__logo {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .header__logo_image {
    margin-bottom: 10px;
  }
}
.header__logo_image img {
  max-width: 40px;
}
@media screen and (max-width: 767px) {
  .header__logo_image img {
    max-width: 30px;
  }
}
.header__logo_text {
  text-transform: uppercase;
  margin-left: 25px;
  font-size: 18px;
  color: #E8AE62;
}
@media screen and (max-width: 767px) {
  .header__logo_text {
    margin-left: 0;
  }
}
.header__nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: flex;
}
.header__nav ul li {
  margin-left: 25px;
}
.header__nav ul li a {
  text-transform: uppercase;
  font-size: 18px;
  color: #E8AE62;
}
@media screen and (max-width: 767px) {
  .header__page {
    padding-top: 0;
  }
  .header__page .header__logo {
    display: flex;
    flex-direction: row;
  }
  .header__page .header__logo_image {
    margin-bottom: 0;
  }
  .header__page .header__logo_text {
    margin-left: 10px;
  }
}

.hero {
  height: calc(100svh - 160px);
}
@media screen and (max-width: 767px) {
  .hero {
    height: calc(100svh - 230px);
  }
}
.hero__container {
  width: 70%;
  height: 100%;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (max-width: 1920px) {
  .hero__container {
    padding: 0 2%;
  }
}
@media screen and (max-width: 767px) {
  .hero__container {
    width: 100%;
    padding: 0 20px;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 1920px) {
  .hero__content {
    justify-content: flex-start;
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .hero__content {
    width: 100%;
    padding-top: 15px;
  }
}
.hero__subtitle {
  font-size: 16px;
  letter-spacing: 0.35em;
  color: #E8AE62;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.hero__title {
  font-size: 88px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: #FCD8A9;
  text-transform: uppercase;
  font-family: "Playfair Display", sans-serif;
}
@media screen and (max-width: 1920px) {
  .hero__title {
    font-size: 64px;
  }
}
@media screen and (max-width: 767px) {
  .hero__title {
    font-size: 36px;
  }
}
.hero__divider {
  display: flex;
  width: 300px;
  height: 1px;
  background: #E8AE62;
  margin: 40px auto;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .hero__divider {
    width: 200px;
    margin: 20px auto;
  }
}
.hero__text {
  font-size: 14px;
  letter-spacing: 0.4em;
  color: #E8AE62;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .hero__text {
    font-size: 12px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .hero__button .button {
    display: none;
  }
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .footer {
    display: flex;
    flex-direction: column;
    height: 150px;
  }
}
.footer__button {
  display: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__button {
    display: flex;
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
}
.footer__button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 100%;
  height: 1px;
  background-color: #E8AE62;
}
.footer__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__nav ul li {
    margin-left: 15px;
  }
}
.footer__nav ul li:before {
  content: "|";
  color: #E8AE62;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .footer__nav ul li:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav ul li:first-child {
    margin-left: 0;
  }
}
.footer__nav ul li:first-child:before {
  display: none;
}
.footer__nav ul li a {
  color: #E8AE62;
}
@media screen and (max-width: 767px) {
  .footer__nav ul li a {
    font-size: 14px;
  }
}
.footer__page {
  background-color: #010100;
}
@media screen and (max-width: 767px) {
  .footer__page {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .footer__page .footer__button {
    display: none;
  }
}

.page {
  flex: 1;
  padding: 80px 0;
  background-color: #010100;
  border: 1px solid;
  border-top-color: #E8AE62;
  border-bottom-color: #E8AE62;
}
@media screen and (max-width: 767px) {
  .page {
    padding: 50px 0;
  }
}
.page__content h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #E8AE62;
  font-weight: 700;
  font-family: "Playfair Display", sans-serif;
}
@media screen and (max-width: 767px) {
  .page__content h1 {
    font-size: 28px;
  }
}
.page__content p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #E8AE62;
}
.page__content p a {
  color: #E8AE62;
}
.page__content p strong {
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */