:root {
  --primary-color: #0B1D10;
  --secondary-color: #1B4526;
}

body {
  background-color: var(--primary-color);
  color: #fff;
  font-family: 'Overpass', sans-serif;
}

input {
  background-color: #102616;
  color: #fff;
  font-family: 'Overpass', sans-serif;
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 6px;
}

button {
  background: #fff;
  color: var(--primary-color);
  font-family: 'Overpass', sans-serif;
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  transition: .2s ease-in-out;
}

button:hover {
  background: rgba(255, 255, 255, .7);
}

input::placeholder {
  color: rgba(255, 255, 255, .7);
}

.hero {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  height: 100vh;
  overflow: hidden;
}

.hero__inner {
  position: relative;

  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__title {
  position: relative;
  z-index: 1;

  text-align: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 80px;
}

.hero__title span {
  font-size: 33px;
}

.form {
  position: relative;
  z-index: 1;

  max-width: 500px;
  margin: 0 auto;
  background: var(--primary-color);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0px 0px 100px rgba(27, 69, 38, 0.5);
}

.form input {
  width: calc(100% - 48px);
  margin-bottom: 18px;
}

.form__title {
  margin-bottom: 18px;
}

.form button {
  margin: 0 auto;
  width: 50%;
}

.form__policy {
  margin-top: 18px;
  color: rgba(255, 255, 255, .5);
}

.form__policy span {
  color: #fff;
}

.hero__img-1 {
  position: absolute;
  top: 50%;
  left: -350px;
  transform: translateY(-45%);
  width: 700px;
  height: 700px;
  pointer-events: none;

  animation: upDown1 5s ease-in-out infinite;
}

.hero__img-2 {
  position: absolute;
  right: -100px;
  top: 0px;
  transform: scaleX(-1) rotate(15deg);
  width: 300px;
  height: 300px;
  pointer-events: none;

  animation: upDown2 7s ease-in-out infinite;
}

.hero__img-3 {
  position: absolute;
  right: -250px;
  bottom: 0;
  width: 350px;
  height: 350px;
  pointer-events: none;
  z-index: 2;

  animation: upDown3 8s ease-in-out infinite;
}

@media (max-width: 950px) {
  .hero__img-1 {
    width: 400px;
    height: 400px;
    left: -150px;
  }

  .hero__img-2 {
    width: 150px;
    height: 150px;
    right: -50px;
  }

  .hero__img-3 {
    width: 350px;
    height: 350px;
  }
}

@keyframes upDown1 {
  0% {
    transform: translateY(-48%);
  }

  50% {
    transform: translateY(-52%);
  }

  100% {
    transform: translateY(-48%);
  }
}

@keyframes upDown2 {
  0% {
    transform: scaleX(-1) rotate(15deg) translateY(-2%);
  }

  50% {
    transform: scaleX(-1) rotate(10deg) translateY(2%);
  }

  100% {
    transform: scaleX(-1) rotate(15deg) translateY(-2%);
  }
}

@keyframes upDown3 {
  0% {
    transform: rotate(0deg) translateY(-1%);
  }

  50% {
    transform: rotate(-2deg) translateY(1%);
  }

  100% {
    transform: rotate(0deg) translateY(-1%);
  }
}

.chart {
  position: fixed;
  z-index: 0;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(11, 30px);
  gap: 10px;
  align-items: end;
}

.bar {
  position: relative;
  width: 100%;
  background-color: #0B1D10;
  border-radius: 4px;
  animation: barUpDown infinite ease-in-out;
  height: 100px;
}

.bar::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  height: 160%;
  background-color: var(--primary-color);
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes barUpDown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* BENEFITS */
.benefits {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.benefits__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.benefits__inner h3 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
}

.benefits__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.benefits__img {
  width: 500px;
}

.benefits__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.benefits__item {
  background-color: #14341d;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
}

.benefits__item img {
  width: 60px;
}

@media (max-width: 1020px) {
  .benefits__content {
    flex-direction: column-reverse;
  }

  .benefits__img {
    position: absolute;
    z-index: -1;
    width: 400px;
    margin-bottom: -40px;
  }
}

@media (max-width: 550px) {
  .benefits__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefits__img {
    width: 300px;
    top: 230px;
  }
}

/* FACTS */
.facts {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.facts__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.facts__inner h3 {
  text-align: center;
  font-size: 63px;
  font-weight: 800;
}

.facts__content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.facts__content img {
  width: 500px;
}

.facts__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.facts__text p {
  line-height: 20px;
}

.facts__text p span {
  color: #25aa48;
  font-weight: 800;
}

@media (max-width: 950px) {
  .facts__content {
    flex-direction: column;
  }

  .facts__content img {
    width: 300px;
  }
}

/* FOOTER */
footer {
  background-color: #09150d;
  padding: 40px 0;
}

.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;

  font-weight: 800;
  display: flex;
  justify-content: end;
  color: rgba(255, 255, 255, .7);
}

/*
max-width: 1080px;
margin: 0 auto;
padding: 0 24px; 
  */