.hero-section {
  width: 100%;
  height: 50vw;
  transition: all 0.2s ease-in-out;
  position: relative;
  border-bottom: 0.2vw solid var(--primaryColor);
  background-color: black;
}

.next-button, .prev-button {
    position: absolute;
    width: 3vw;
    height: 3vw;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    border-radius: 1000px;
    font-size: 1vw;
    z-index: 3;
    opacity: 0.5;
}

.next-button {
  right: 5vw;
}

.prev-button {
  left: 5vw;
}

.hero-background{
  position: absolute;
  top: 7vw;
  left: 0;
  width: 100%;
  height: calc(100% - 7vw);
  filter: brightness(1.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/images/heroSection/hero-image-background.webp");
  background-position: center;
  background-size: cover;
}

.hero-background1{
  position: absolute;
  top: 7vw;
  left: 0;
  width: 100%;
  height: calc(100% - 7vw);
  filter: brightness(1.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/images/heroSection/hero-image-background1.webp");
  background-position: center;
  background-size: cover;
}


.hero-background video{
  width: 100%;
  height: 110%;
  object-fit: cover;
}

.hero-scroll-button{
  cursor: pointer;
  color: var(--primaryColor);
  font-family: var(--headingFont);
  font-weight: 500;
  font-size: var(--subheadingFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  margin: 0;
  position: absolute;
  top: 44vw;
  left: 50%;
  width: 10vw;
  text-align: center;
  transform: translate(-50%, 0);
}

.hero-scroll-button::after{
  content: "";
  position: absolute;
  top: 1.5vw;
  left: 50%;
  width: 1vw;
  height: 1vw;
  border-top: 0.2vw solid var(--primaryColor);
  border-left: 0.2vw solid var(--primaryColor);
  transform: translate(-50%, 0) rotate(-135deg);
  animation-name: wobble;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.hero-info-container{
  width: 30%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  left: 10vw;
  top: 36.5vw;
}

.hero-info-title {
  color: var(--tertiaryHeadingColor);
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: var(--superheadingFontSize);
  line-height: 3vw;
  text-shadow: 0 0 1vw 0 #00000080;
  margin: 0;
  margin-bottom: 1vw;
  text-transform: uppercase;
}

.hero-info-paragraph {
  color: rgba(var(--primaryColorRgb), 0.7);
  font-family: var(--headingFont);
  font-weight: 500;
  font-size: var(--subheadingFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  width: 80%;
  margin: 0;
}

.hero-info-subtitle {
  color: rgba(var(--primaryColorRgb), 0.8);
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: var(--paragraphFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  margin: 0;
  margin-bottom: 1vw;
}

.hero-action-container{
  width: max-content;
  height: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  right: 10vw;
  top: 43.5vw;
}

.hero-action-button{
  background-color: black;
  border: 0;
  color: var(--primaryColor) !important;
  border-radius: 0.2vw;
  font-family: var(--headingFont);
  font-weight: 700;
  font-size: var(--subheadingFontSize);
  box-sizing: border-box;
  padding: 1vw 1.8vw;
  margin-right: 1vw;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 4vw 0 #00000080;
}

.hero-dossier-button{
  background-color: #00000080;
  border: 0.2vw solid var(--primaryColor);
  color: var(--primaryColor) !important;
  border-radius: 0.2vw;
  font-family: var(--headingFont);
  font-weight: 700;
  font-size: var(--subheadingFontSize);
  box-sizing: border-box;
  padding: 0.8vw 1.8vw;
  margin-right: 1vw;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 4vw 0 #00000080;
}

.hero-dossier-button:hover{
  transition: all 0.2s ease-in-out;
  color: #000000 !important;
  background-color: var(--primaryColor) !important;
}

.hero-logo-container{
  width: 25%;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  right: 10vw;
  top: 37.5vw;
  opacity: 0.75;
  /* transform: translate(-50%, 0); */
}

.hero-logo{
  width: 100%;
}

.hero-sold-out-message{
  position: absolute;
  top: 43vw;
  left: 50%;
  transform: translate(-50%, 0);
  width: 30%;
  color: rgba(var(--primaryColorRgb), 0.8);
  font-family: var(--headingFont);
  font-weight: 600;
  font-size: var(--subparagraphFontSize);
  text-shadow: 0 0 1vw 0 #00000080;
  margin: 0;
  display: block;
  text-align: center;
}

@keyframes fadeInBackground{
  0% {background-color: #000000ff;}
  5% {background-color: #000000ce;}
  10% {background-color: #00000033;}
  15% {background-color: #00000060;}
  20% {background-color: #00000000;}
  100% {background-color: #00000000;}
}

@keyframes wobble{
  0% {top: 1.5vw;}
  50% {top: 2.2vw;}
  100% {top: 1.5vw;}
}

@keyframes wobbleMobile{
  0% {top: 3.5vw;}
  50% {top: 6.2vw;}
  100% {top: 3.5vw;}
}

@media(max-width: 700px){
  .hero-section{
    height: 72vh;
    border-bottom: 0.5vw solid var(--primaryColor);
  }

  .next-button, .prev-button{
    position: absolute;
    width: 10vw;
    height: 10vw;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    border-radius: 1000px;
    font-size: 3vw;
    z-index: 3;
    opacity: 0.5;
  }
  
  .next-button{
      right: 10vw;
  } 
  
  .prev-button{
      left: 10vw;
  }
  
  .hero-background{
    top: 20vw;
    height: calc(100% - 20vw);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url("/images/heroSection/hero-image-background-mobile.webp");
  }
  
  .hero-background1{
    top: 20vw;
    height: calc(100% - 20vw);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url("/images/heroSection/hero-image-background-mobile1.webp");
  }


  .hero-info-container{
    top: 60vh;
    width: 90%;
  }

  .hero-action-container{
    top: 61.75vh;
    left: 50vw;
    transform: translate(-50%, 0);
  }

  .hero-action-button{
    font-size: var(--headingFontSize);
    padding: 3vw 4vw;
  }

  .hero-dossier-button{
    font-size: var(--headingFontSize);
    padding: 3vw 4vw;
    border: 0.5vw solid var(--primaryColor);
    margin-left: 9vw;
  }

  .hero-scroll-button{
    left: 50vw;
    width: 30vw;
    top: 84vh;
  }

  .hero-scroll-button::after{
    width: 5vw;
    height: 5vw;
    border-top: solid 0.5vw var(--primaryColor);
    border-left: solid 0.5vw var(--primaryColor);
    animation-name: wobbleMobile;
  }

  .hero-sold-out-message{
    top: 78vh;
    left: 50%;
    width: 80%;
  }
}