* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  overflow: hidden;
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.container {
  max-width: 1343px;
  margin: 0 auto;
}

.button {
  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;
  max-width: 350px;
  width: 100%;
  height: 66px;
  margin-top: 31px;
  background: #ffe08b;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  color: #000;
  font-family: "Delius Swash Caps";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 62px;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.title {
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -2px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media screen and (min-width: 1400px) {
  .title {
    font-weight: 400;
    font-size: 50px;
    line-height: 62px;
  }
}

.title-sec {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  font-style: italic;
  letter-spacing: -2px;
  margin-bottom: 25px;
}
@media screen and (min-width: 1400px) {
  .title-sec {
    font-weight: 500;
    font-size: 32px;
    line-height: 36px;
  }
}

.text {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background: rgba(255, 214, 168, 0.5);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.header .logo {
  color: #0f172a;
  font-family: "Delius Swash Caps", cursive;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  text-decoration: none;
}
.header .container {
  max-width: none;
}

.header__button-wrapper {
  margin-left: auto;
}

.header__icon-button {
  position: relative;
  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;
  background: transparent;
  border: none;
  padding: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.header__icon {
  position: absolute;
  width: 28px;
  height: 28px;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}

.header__icon--menu {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

.header__icon--close {
  opacity: 0;
  -webkit-transform: rotate(-90deg) scale(0.6);
          transform: rotate(-90deg) scale(0.6);
}

.header__icon-button.is-open .header__icon--menu {
  opacity: 0;
  -webkit-transform: rotate(90deg) scale(0.6);
          transform: rotate(90deg) scale(0.6);
}

.header__icon-button.is-open .header__icon--close {
  opacity: 1;
  -webkit-transform: rotate(0deg) scale(1);
          transform: rotate(0deg) scale(1);
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 15px 10px;
}
.navigation__list {
  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: 68px;
  padding: 76px 80px;
  background: rgba(255, 214, 168, 0.5019607843);
  backdrop-filter: blur(6px);
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  height: 100vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  color: #45556C;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.navigation__link:hover {
  text-shadow: 0 0 0.6px #45556C, 0 0 0.6px #45556C;
}

@media screen and (min-width: 1400px) {
  .header__button-wrapper {
    display: none;
  }
  .header .container {
    max-width: 1334px;
  }
  .navigation {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 auto;
    margin-left: auto;
    padding: 26px 0px;
  }
  .navigation__list {
    background: transparent;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    height: auto;
    padding: 0;
    gap: 32px;
    backdrop-filter: none;
  }
}
.hero {
  padding: 96px 10px 633px 10px;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .hero {
    padding-top: 168px;
    padding-bottom: 40px;
  }
}
.hero h1 {
  text-transform: none;
}
.hero .hero-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 502px;
  max-width: 502px;
  z-index: -1;
}
@media screen and (min-width: 1400px) {
  .hero .hero-img {
    max-width: none;
    width: auto;
    top: 0;
    -webkit-transform: translateX(-115%);
            transform: translateX(-115%);
  }
}
.hero .wrapper {
  max-width: 762px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1400px) {
  .hero .wrapper {
    margin-right: 0;
    margin-left: auto;
  }
}

.price {
  padding-top: 121px;
  padding-bottom: 68px;
}
@media screen and (min-width: 1400px) {
  .price {
    padding-top: 0;
  }
}
.price h2 {
  text-transform: none;
}
.price ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 1400px) {
  .price ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.price li {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  gap: 12px;
  max-width: 383px;
  width: 100%;
  height: 129px;
  padding-left: 81px;
  padding-right: 20px;
  border-radius: 50px;
  background: rgba(255, 214, 168, 0.5);
}
@media screen and (min-width: 1400px) {
  .price li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 73px;
    max-width: none;
    height: 96px;
    padding-inline: 0;
  }
}
.price li h3 {
  font-weight: 900;
  font-size: 20px;
  line-height: 22px;
}
.price li p {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
}

.order {
  padding: 68px 10px;
}
@media screen and (min-width: 1400px) {
  .order {
    padding-bottom: 104px;
  }
  .order .box {
    width: 686px;
  }
}
.order .container {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 128px;
}
@media screen and (min-width: 1400px) {
  .order .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.order .order-img {
  width: 355px;
}
@media screen and (min-width: 1400px) {
  .order .order-img {
    width: auto;
  }
}
.order .purchase-form {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.order .form-item {
  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;
  width: 100%;
  height: 66px;
  border-radius: 30px;
  background: rgba(255, 214, 168, 0.5);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 0 20px;
}
.order .form-item input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  outline: none;
  text-align: center;
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
}
.order .form-item input::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.order .form-item input::-moz-placeholder {
  color: #000;
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.order .form-item input:-ms-input-placeholder {
  color: #000;
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.order .form-item input::-ms-input-placeholder {
  color: #000;
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.order .form-item input::placeholder {
  color: #000;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.order .form-item input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.order .form-item input:focus::-moz-placeholder {
  opacity: 0;
}
.order .form-item input:focus:-ms-input-placeholder {
  opacity: 0;
}
.order .form-item input:focus::-ms-input-placeholder {
  opacity: 0;
}
.order .form-item input:focus::placeholder {
  opacity: 0;
}
.order .button {
  max-width: none;
  margin-top: 10px;
  border: none;
}
.order .modal-form {
  position: fixed;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #222221;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.order .modal-form.show {
  opacity: 1;
}
.order .hidden {
  display: none;
}
.order .form-item select {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}
.order .form-item select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.history {
  padding-inline: 10px;
  padding-bottom: 32px;
}
@media screen and (min-width: 1400px) {
  .history {
    padding-bottom: 247px;
    position: relative;
  }
}
.history .history-img {
  width: 465px;
}
@media screen and (min-width: 1400px) {
  .history .history-img {
    width: auto;
    position: absolute;
    z-index: -1;
    left: 50%;
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
    top: -20px;
  }
}
.history .container {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1400px) {
  .history .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.history .right {
  text-align: end;
  position: relative;
  top: -50px;
}
@media screen and (min-width: 1400px) {
  .history .right {
    position: static;
    top: unset;
  }
}
.history .mail {
  font-weight: 900;
  font-size: 20px;
  line-height: 22px;
  color: #000;
  text-decoration: none;
  margin-top: 25px;
  display: inline-block;
}
.history .button {
  margin-left: auto;
}

.book {
  padding-inline: 10px;
}
@media screen and (min-width: 1400px) {
  .book .left {
    -webkit-box-flex: 1.6;
        -ms-flex: 1.6;
            flex: 1.6;
  }
  .book .right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.book .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 44px;
}
@media screen and (min-width: 1400px) {
  .book .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.book ul {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.book li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
}

.about {
  padding: 0px 10px 490px 10px;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .about {
    padding-top: 171px;
    padding-bottom: 131px;
  }
}
.about .about-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 444px;
  max-width: 444px;
  z-index: -1;
}
@media screen and (min-width: 1400px) {
  .about .about-img {
    max-width: none;
    width: auto;
    top: 0;
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
}
.about .wrapper {
  max-width: 762px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1400px) {
  .about .wrapper {
    margin-right: auto;
    margin-left: 0;
  }
}

.contacts {
  padding: 109px 10px 64px 10px;
}
@media screen and (min-width: 1400px) {
  .contacts {
    padding-top: 115px;
    padding-bottom: 77px;
    position: relative;
  }
}
.contacts .contacts-img {
  width: 355px;
}
@media screen and (min-width: 1400px) {
  .contacts .contacts-img {
    width: auto;
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(3%);
            transform: translateX(3%);
  }
}
.contacts h1 {
  text-transform: none;
}
.contacts .container {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 31px;
}
@media screen and (min-width: 1400px) {
  .contacts .container {
    gap: 84px;
  }
}
.contacts .container div {
  max-width: 644px;
  width: 100%;
}
.contacts ul {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.contacts li {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  text-transform: uppercase;
}
@media screen and (min-width: 1400px) {
  .contacts li {
    font-size: 24px;
  }
}
.contacts li h4 {
  font-weight: 900;
}

.footer {
  padding: 100px 10px;
  background: rgba(255, 214, 168, 0.5);
}
@media screen and (min-width: 1400px) {
  .footer {
    padding-top: 54px;
    padding-bottom: 43px;
  }
}
.footer .policies-list {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
  margin-bottom: 37px;
}
@media screen and (min-width: 1400px) {
  .footer .policies-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer .policies-list li a {
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: #000;
  text-decoration: none;
  text-align: center;
}
.footer .copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.policies {
  color: #161616;
  padding: 120px 20px 40px 20px;
}
.policies h1 {
  font-weight: 500;
  font-size: 35px;
  line-height: 36px;
  margin-bottom: 30px;
  font-style: italic;
}
.policies h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 36px;
  margin-block: 10px;
  font-style: italic;
}
.policies p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.policies a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.policies ul {
  list-style: disc;
  padding-left: 20px;
}/*# sourceMappingURL=main.css.map */