#hero {
  width: 100vw;
  overflow-x: hidden;
}

#heroBgImage {
  z-index: -3;
  position: absolute;
  width: 100vw;
  overflow-x: hidden;
}
#heroBgImage img {
  transform: translateX(-40rem) translateY(-13rem);
}
#sloganMovable {
  display: flex;
  justify-content: center;
  padding-top: 20rem;
}
#sloganContent {
  width: 22rem;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  bottom: 55rem;
}

#sloganText {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#mainSlogan {
  color: #d9cdb8;
  align-self: center;
  text-shadow: 0px 4px 31.7px rgba(0, 0, 0, 0.25);
  font-family: "Italiana";
  font-size: 2.23rem;
}
#mainSlogan h2 {
  font-weight: 400;
}
#subSlogan {
  display: flex;
  justify-content: space-between;
  font-family: "Inter";
  color: rgba(217, 205, 184, 0.85);
  text-shadow: 0px 4px 13.5px rgba(0, 0, 0, 0.15);
  font-size: 1.3rem;
  margin-top: -75px;
}
#subSlogan h4 {
  font-weight: 400;
}
#heroContactButton {
  align-self: center;
  padding-top: 1.2rem;
}

#sloganBg #yellowCircle {
  right: 4rem;
  bottom: 6rem;
}

#sloganBg #orangeCircle {
  bottom: 22rem;
  left: 10rem;
}

#sloganBg #redCircle {
  bottom: 44rem;
  left: 15rem;
}

#scrollDownArrow {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.5s ease;
  z-index: 50;
  animation: bounceArrow 2s ease-in-out infinite;
}
#scrollDownArrow svg {
  height: 56px;
  width: 56px;
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(14px);
  }
}

#heroCut {
  width: 200rem;
  height: 17.95856rem;
  transform: rotate(-3deg);
  background: #d9cdb8;
  position: relative;
  bottom: 35rem;
  right: 10px;
  z-index: -1;
}

@media (min-width: 576px) {
  #heroBgImage img {
    transform: translateX(-23rem) translateY(-10rem);
    scale: 115%;
  }
  #sloganMovable {
    transform: scale(125%);
    align-items: flex-start;
    padding-top: 30rem;
    margin-right: 75%;
    margin-left: 40%;
    margin-top: -2.5%;
  }
  #heroCut {
    transform: rotate(2deg) translateY(3rem);
    bottom: 35rem;
  }
}

@media (min-width: 1152px) {
  #heroBgImage img {
    transform: translateX(5rem) translateY(-17rem) scaleX(-1);
    scale: 121%;
  }
  #sloganMovable {
    transform: scale(150%);
    margin-left: 30%;
  }
}
