@import url('https://fonts.googleapis.com/css2?family=Allura&family=GFS+Didot&family=Lora:ital,wght@0,400;0,500;0,700;1,400&family=M+PLUS+1p:wght@400;500&family=Roboto:wght@400;500&display=swap');

body {
  font-family: 'M PLUS 1p', sans-serif;
}

a {
  text-decoration: none;
  color: #000;
  transition: all .3s ease;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.mt {
  margin-top: 6px;
}

.link {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.link-2 {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.text-1 {
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.text-2 {
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.text-3 {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.text-4 {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.text-5 {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.t-center {
  text-align: center;
}

.title-1 {
  font-family: 'Didot';
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
}

.title-2 {
  font-family: 'Didot';
  font-size: 60px;
  font-style: italic;
  font-weight: 400;
  line-height: 80px;
}

.title-3 {
  font-family: 'Allura', cursive;
  font-size: 104px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.title-4 {
  font-family: 'Didot';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.title-page {
  color: var(--text-1);
  font-family: 'Didot';
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.title-point {
  font-family: 'Didot';
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  min-width: max-content;
}

.btn {
  display: flex;
  width: max-content;
  color: var(--text-2);
  font-family: 'Lora', serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  border-radius: 2px;
  padding: 15px 47px;
  border: 1px solid rgba(165, 136, 110, 0.02);
  background: var(--bg-btn);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(165, 136, 110, 0.02);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #FAF1E9;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all .3s ease;
}

.btn:hover::after {
  opacity: 1;
  visibility: visible;
}

.btn-2 {
  display: flex;
  width: max-content;
  color: var(--text-2);
  font-family: 'Lora', serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  border-radius: 2px;
  padding: 11px 23px;
  border: 1px solid rgba(165, 136, 110, 0.02);
  background: var(--bg-btn);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.btn-2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(165, 136, 110, 0.02);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #FAF1E9;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all .3s ease;
}

.btn-2:hover::after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1135px) {
  .link {
    font-size: 16px;
    line-height: 20px;
  }

  .title-3 {
    font-size: 72px;
  }

  .text-1 {
    font-size: 16px;
    line-height: 27px;
  }

  .title-page {
    font-size: 80px;
  }

  .title-point {
    font-size: 56px;
    line-height: 71px;
  }
}

@media (max-width: 767px) {
  .title-3 {
    font-size: 48px;
  }

  .title-1 {
    font-size: 24px;
    line-height: 31px;
  }

  .title-4 {
    font-size: 20px;
    line-height: 22px;
  }

  .title-2 {
    font-size: 40px;
    line-height: 50px;
  }

  .title-page {
    font-size: 56px;
    line-height: 71px;
  }

  .title-point {
    font-family: 'Didot';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }

  .mt {
    margin-top: 0;
  }
}