/*HERO MOBILE CSS*/

@media screen and (max-width: 900px){

  html{
    scroll-behavior: smooth;
  }

  body{
    font-family: Poppins;
    color: white;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .header{
    height: 100vh;
    width: 100%;
    background-color: #E7B024;
    background-image: url(hero-1.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .header__top-section{
    justify-content: space-between;
    align-items: center;
    margin: 0 !important;
    height: 20vh;
    flex-wrap: wrap;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .header_h1{
    display: flex !important;
    font-size: 12vw !important;
    font-weight: 600;
  }

  .header__link-bar{
    display: none !important;
  }

  .header__links{
    display: block;
    margin-left: 40px;
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: normal;
    border-bottom: 2px solid rgba(0,0,0,0);
    transition: .2s;
  }

  .header__links:hover{
    border-bottom: 2px solid white;
  }

  .header__content{
    margin-left:  0 !important;
    margin-bottom: 0 !important;
    height: 80vh;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header_h2{
    font-size: 10vw !important;
    line-height: 84px;
    font-weight: 800;
  }

  .header_h3{
    font-size: 6vw !important;
    font-weight: 600;
    line-height: 75px;
    margin-top: 6%;
  }

  .header_button{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E7B024;
    border-radius: 40vh !important;
    color: white;
    font-weight: 600;
    font-size: 2em;
    width: 30vw !important;
    height: 8vh !important;
    text-decoration: none;
    margin-top: 8% !important;
    padding: 0 10vw;
  }

  .header_button::after{
    content: "\f063";
    font-family: "Font Awesome 5 Free";
    margin-left: 10px;
  }

  .section-one{
    height: 100vh;
    width: 100%;
    background-color: #1f1f1f;
  }

}
