html {
  height: 100vh;
  max-height: 100vh;
  scroll-behavior: smooth;
}


body main {
  flex-grow: 1;
}

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

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

input,
button {
  outline: none;
  border: none;
}

html {
  font-family: "Unbounded";
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  overflow-x: hidden;
}

.container {
  padding-inline: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .container {
    padding-inline: 30px;
  }
}

.hero {
  position: relative;
  background: url("../images/bg.webp") no-repeat center/cover ;
}
@media (max-width: 768px) {
  .hero{
    background: url("../images/bg-mob.webp")no-repeat center/cover ;
  }
}

.hero__content {
  height: fit-content;
  min-height: 100vh;
  padding: 150px 0 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}


.hero__title {
  color: #ffc134;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}

.hero__text {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  text-align: center;

  font-family: "Unbounded";
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
}

.btn-primary {
  width: fit-content;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Unbounded;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;

  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;

  border-radius: 50px;
  background: linear-gradient(
    144.9deg,
    #ffc134 15.47%,
    #ffdd90 49.79%,
    #ffc134 84.11%
  );
  color: #000;
  box-shadow: 0px 4px 0px 0px #b98105;
  z-index: 200;
  cursor: pointer;
  border: none;
  transition: transform 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(
    144.9deg,
    #ffc134 15.47%,
    #ffefcb 49.79%,
    #ffc134 84.11%
  );
  transform: translateY(-4px);
}
