/*
 * style
 */
/*
 * global
 */
/*
 * variables
 */
:root {
  --bg-color: #1a0327;
  --text-color: #fff;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}
p {
  line-height: 1.2;
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: "Bodoni", serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
}
h1 {
  font-family: "DS CenturyCapitals", serif;
  font-size: 42px;
  letter-spacing: 0;
}
@media (min-width: 576px) {
  h1 {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 72px;
  }
}
h2 {
  font-size: 30px;
}
@media (min-width: 576px) {
  h2 {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 40px;
  }
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}
html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 100%;
  color: var(--text-color);
  background: url("../images/bg/main_top_right_mobile.png") no-repeat top right, url("../images/bg/main_bottom_left_mobile.png") no-repeat bottom left, var(--bg-color);
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body {
    background: url("../images/bg/main_top_left.png") no-repeat top left, url("../images/bg/main_top_right.png") no-repeat top right, url("../images/bg/main_center_left.png") no-repeat top 2521px left, url("../images/bg/main_center_right.png") no-repeat top 2257px right, url("../images/bg/main_bottom_left.png") no-repeat bottom left, url("../images/bg/main_bottom_right.png") no-repeat bottom 1230px right, var(--bg-color);
  }
}
.container {
  min-width: 320px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1350px;
  }
}
#wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}
/*
 * header
 */
.header {
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 14px 0;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.04);
}
@media (min-width: 768px) {
  .header {
    padding: 4px 0;
  }
}
.header .container {
  max-width: 1648px;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 16px;
}
@media (min-width: 768px) {
  .header__wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .header__wrapper {
    gap: 0 26px;
  }
}
@media (min-width: 1400px) {
  .header__wrapper {
    gap: 0 42px;
  }
}
.header__logo {
  max-width: 177px;
}
@media (min-width: 768px) {
  .header__logo {
    max-width: 136px;
  }
}
@media (min-width: 992px) {
  .header__logo {
    max-width: inherit;
  }
}
.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px 0;
  width: 24px;
  height: 18px;
  padding: 10px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  width: 100%;
  height: 2px;
  background-color: #fac690;
}
.header__nav {
  width: 100%;
  display: none;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
    width: auto;
    padding: inherit;
  }
}
@media (max-width: 767px) {
  .header__nav.active {
    display: block;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .header__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 992px) {
  .header__nav-list {
    gap: 0 26px;
  }
}
@media (min-width: 1400px) {
  .header__nav-list {
    gap: 0 42px;
  }
}
.header__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__nav-link {
  padding: 8px 10px;
  font-family: "DS CenturyCapitals", serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .header__nav-link {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .header__nav-link {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .header__nav-link {
    font-size: 15px;
  }
}
.header__nav-link:hover {
  color: #fac690;
}
/*
 * footer
 */
.footer {
  padding: 132px 0 40px;
}
@media (min-width: 768px) {
  .footer {
    padding: 152px 0 50px;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding: 185px 0 60px;
  }
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__logo {
  max-width: 188px;
}
@media (min-width: 768px) {
  .footer__logo {
    max-width: inherit;
  }
}
.footer__copyright {
  margin: 170px auto 0;
  text-align: center;
  font-size: 12px;
  line-height: 140%;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .footer__copyright {
    margin: 134px auto 0;
  }
}
@media (min-width: 1200px) {
  .footer__copyright {
    margin: 178px auto 0;
  }
}
.footer__documents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px 0;
  margin: 20px auto 0;
}
.footer__document-link {
  text-align: center;
  font-size: 12px;
  line-height: 140%;
  opacity: 0.5;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__document-link:hover {
  opacity: 1;
}
/*
 * modals
 */
