html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  box-sizing: border-box;
  color: #3A3A3A;
  margin: 0;
  padding: 0;
}

.scroll-lock {
  height: 100vh;
  overflow: hidden;
}

.container {
  margin: auto;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Prata", serif;
  color: #06402B;
}

h1 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 4rem;
}

h2 {
  font-size: 2.025rem;
  line-height: 2.688rem;
  margin-bottom: 2.4rem;
}

h3 {
  font-size: 2rem;
  line-height: 2.05rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.3rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}
h4:last-child {
  margin-bottom: 0;
}

h5 {
  font-size: 1rem;
  line-height: 1.025rem;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.02rem;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.navbar {
  --bs-navbar-padding-y: 1.2rem;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section {
  padding: 160px 0;
}
section.sp {
  padding: 104px 0;
}

.cta {
  padding: 16px 52px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  color: #ffffff;
  overflow: hidden;
  border: 2px solid #AD935E;
  cursor: pointer;
  display: inline-block;
}
.cta a.butn, .cta .butn {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  -webkit-text-fill-color: #ffffff;
  background-image: none;
}
.cta::after {
  content: "";
  position: absolute;
  background-color: #AD935E;
  z-index: -1;
  top: -1px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 120%;
  height: calc(100% + 2px);
  transform: rotate(0deg) translateZ(0);
  transform-origin: 0 100%;
  transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 1s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.cta:hover {
  color: #AD935E;
}
.cta:hover::after {
  opacity: 0.5;
  transform: rotate(10deg) translate3d(-1.2em, 110%, 0);
}
.cta:hover a.butn, .cta:hover .butn {
  -webkit-text-fill-color: #AD935E;
}

.subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  color: #BB9732;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: url(../images/gold.jpg);
  background-position: 50% 100%;
  background-size: 1000px;
  -webkit-background-clip: text;
          background-clip: text;
}

a.link {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  position: relative;
  color: #AD935E;
  padding-right: 4px;
  overflow: hidden;
}
a.link img {
  width: 20px;
  transition: 0.4s;
}
a.link::after {
  content: "";
  position: absolute;
  background-color: #AD935E;
  width: 100%;
  height: 1px;
  opacity: 1;
  right: 0;
  bottom: 0;
  animation: flash2 linear 0.4s 1 forwards;
}
a.link:hover {
  color: #AD935E;
}
a.link:hover img {
  transform: translateX(4px);
}
a.link:hover::after {
  animation: flash linear 0.4s 1 forwards;
}

@keyframes flash {
  0% {
    width: 100%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 100%;
  }
  51% {
    width: 100%;
    left: -100%;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
@keyframes flash2 {
  0% {
    width: 100%;
    right: 0;
  }
  50% {
    width: 100%;
    right: 100%;
  }
  51% {
    width: 100%;
    right: -100%;
  }
  100% {
    width: 100%;
    right: 0;
  }
}/*# sourceMappingURL=reset.css.map */