/*====  HOME ============================ */
#home {
  overflow: hidden;
  margin-bottom: 2rem;
  margin-top: 5rem;
  padding-left: 3rem;
}

#home .container {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20rem;
}

#home .text {
  margin-left: 1.5rem;
  width: 70%;
  text-align: center;
}

#home .text h1 {
  margin-bottom: 1rem;
}

#home .text p {
  margin-bottom: 2rem;
}

#home .button {
  background-color: var(--base-color) !important;
}

#home .image {
  position: relative;
  width: 40%;
  height: 20%;
}

#home .image::before {
  content: '';
  height: 80%;
  width: 60%;
  background: var(--base-color-second);
  position: absolute;
  top: -9.8%;
  left: 16.7%;
  z-index: 0;
}

#home .image img {
  position: relative;
  right: 2.93rem;
  width: 80%;
}

#home .image img,
#home .image::before {
  border-radius: 0.25rem;
}
