/* General */
main{
  padding-top: 2.5rem;
}
.hero-section{
  width: 100%;
  display: flex;
  justify-content: center;
}
/* Hero Section */
/* Hero section background */
.hero-section::before{
  content: '';
  height: 44rem;
  width: auto;
  position: absolute;
  right: -10px;
  left: -10px;
  background-image: url(../../images/background.png); 
  background-size: cover;
  background-position: center; 
  filter: blur(6px);
  z-index: -1;
}
.inner-hero-section{
  height: 40rem;
  width: auto;
  background-color: red;
  position: absolute;
  top: 6.5rem;
  right: 1rem;
  left: 1rem;
  border-radius: 1rem;
  background-image: url(../../images/background.png);
  background-size: cover;
  background-position: center;
  z-index: 10;
}

/* Media queries (Hero section background) */
@media (min-width: 1100px){
  .inner-hero-section{
    right: 3rem;
    left: 3rem;
  }
}
@media (min-width: 1400px){
  .inner-hero-section{
    width: 1303px;
    left: auto;
    right: auto;
  }
}

/* Hero section content */
.hero-section-content{
  padding-top: 18rem;
  cursor: default;
}
.hero-section-logo{
  color: whitesmoke;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}
.hero-section-description{
  color: var(--text-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  width: 480px;
}
.hero-section-content hr{
  width: 260px;
  margin-top: 1rem;
  border: 1px solid #fff;  
  border-radius: 2px;
}
/* Hero section button */
.hero-section-button{
  color: whitesmoke;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: .08rem;
  text-transform: uppercase;
  position: relative;
  padding: 1rem 3rem;
  margin-top: 1rem;
  border: 3px solid whitesmoke;
  border-radius: 8px;
  cursor: pointer;
  transition: .2s;
}
.hero-section-button .additional-info{
  color: var(--text-accent);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02rem;
  transition: inherit;
}
/* Media queried button animations */
@media (max-width: 600px){
  .hero-section-button::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    background-color: var(--main-accent);
    z-index: -1;
    transition: transform .5s;
    transform-origin: bottom;
    transform: scaleY(0);
    border-radius: 4px;
  }
  .hero-section-button:hover::before, .hero-section-button:hover::after{
    transform: scaleY(1);
  }
}
@media (min-width: 600px){
  .hero-section-button::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    background-color: var(--main-accent);
    z-index: -1;
    transition: transform .5s;
    transform-origin: left;
    transform: scaleX(0);
    border-radius: 4px;
  }
  .hero-section-button:hover::after, .hero-section-button:hover::after{
    transform: scaleX(1);
  }
}

/* Media queries (Hero section content) */
@media (max-width: 600px){
  .hero-section-content{
    display: flex;
    align-items:center;
    justify-content: center;
    flex-direction: column;
  }
  .hero-section-logo{
    font-size: 7vw;
  }
  .hero-section-description{
    font-size: 2.8vw;
    text-align: center;
    width: 75vw;
    max-width: 80%;
  }
  .hero-section-content hr{
    width: 60vw;
  }
  .hero-section-button{
    padding: 3vw 9vw;
    border-width: 2px;
  }
}
/* Override max-width till 230px */
/* @media (max-width: 230px){
  .hero-section-content{
    padding-top: 0;
    height: 100%;
  }
  .hero-section-logo{
    font-size: 1.5rem;
    max-width: 1rem;
    word-wrap: break-word;
  }
  .hero-section-description, .hero-section-content hr, .hero-section-button{
    display: none;
  }
} */
@media (min-width: 600px){
  .hero-section-content{
    padding-top: 18rem;
    padding-left: 3rem;
    cursor: default;
  }
  .hero-section-description{
    text-align: start;
  }
  .hero-section-button{
    text-align: start;
  }
}
/* Hero Section */

/* New Section */
.another-section{
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: whitesmoke;
  height: 100px;
  top: 720px;
  position:absolute;
}

/* New Section */
