* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --color1: #003124;
  --color2: #007d5c;
  --color3: #f2c641;
  --color4: #a5872c;
  --text: #0a0a0a;
  --white: #ffffff;
}

body {
  font-family: "Montserrat", sans-serif;
  /* background: #f4fffc; */
  background-color: #003124;
  position: relative;
}

/* Titles */
h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

ul {
  padding-left: 2rem;
}

li {
  padding-left: 0.5rem;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text);
}

/* Button  */
button {
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
  border: 0;
  background: var(--color3);
  box-shadow: 0px -2px 5px 0px rgba(242, 198, 65, 0.3),
    0px -1px 6px 0px rgba(242, 198, 65, 0.25),
    0px 4px 4px 0px rgba(242, 198, 65, 0.25);

  color: #000000e2;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 100%; /* 1.5rem */
  letter-spacing: 0.045rem;
  text-transform: uppercase;

  max-width: 400px;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

button:hover {
  filter: brightness(1.1);
}

button:active {
  filter: brightness(0.7);
}

input {
  height: 42px;
}

.firts-sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  border-radius: 0 0 1.5rem 1.5rem;
}

.bg-thumb {
  position: absolute;
  top: 0;
  left: -10;
  width: 100vw;
  height: 100%;
  opacity: 0.7;
  z-index: -1;
}

@media (max-width: 900px) {
  .bg-thumb {
    width: auto;
    height: 100%;
  }
}
