/* #hero-banner .hero-banner-wrapper{
    display: none;
} */
#hero-banner{
    display: block;
    width: 100%;
    height: 100vh;
    /* min-height: var(--website-content-min-height); */
}

#hero-banner .hero-banner-wrapper, #hero-banner .hero-banner-wrapper .video{
    position: relative;
    height: 100%;
}

#hero-banner .hero-banner-wrapper .hero-banner{
    position: relative;
    width: 100%;
    height: 100%;
    background: url('../images/herobanner/herobanner.jpeg') center center no-repeat;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

#hero-banner .hero-banner-wrapper .video video{
    position: relative;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

#hero-banner .hero-banner-wrapper .logo img{
    position: absolute;
    z-index: 10;
    cursor: pointer;
    top:150px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 200px;
}
#hero-banner .hero-banner-wrapper .nav-button{
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    /* top:67px; */
    z-index: 90;
    right: 0px;
    /* transform: translate(-50%, -50%); */
}

#hero-banner .hero-banner-wrapper .nav-button img{
    width: 100%;
    height: auto;
}

#hero-banner .hero-banner-wrapper .hero-text{
    padding: 0 20px;
    box-sizing: border-box;
    max-width: var(--website-content-max-width);
    font-size: 40px;
    position: absolute;
    text-align: center;
    top: 280px;
    left: 50%;
    width: 100%;
    font-weight: 700;
    color: #283090;
    transform: translateX(-50%);
}

@media screen and (max-width:1199px) {
    #hero-banner .hero-banner-wrapper .hero-text{
        padding: 0 20px;
        font-size: 34px;
    }
    #hero-banner .hero-banner-wrapper .logo img{
        width:170px;
        height: auto;
        top:150px;
    }
}

@media screen and (max-width:767px) {
    #hero-banner .hero-banner-wrapper .hero-text{
        font-size: 30px;
    }
}
@media screen and (max-width: 500px){
  #hero-banner .hero-banner-wrapper .hero-text {
      font-size: 24px;
  }
}
#hero-banner .nav-button{
    /* width: 45px;
    height: 45px;
    background-color: #1D2088;
    border-radius: 50%;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer; */
    position: absolute;
    top: 13.5px;
    left: 9.5px;
    width: 30px;
    height: 25px;
    cursor: pointer;
}


/*  */
#hero-banner span {
    display: block;
    width: 100%;
    /* box-shadow: 0 2px 10px 0 rgba(0,0,0,0.3); */
    border-radius: 3px;
    height: 4px;
    background: #fff;
    transition: all .3s;
    position: relative;
  }

  #hero-banner  span + span {
    margin-top: 5px;
  }

  .active span + span {
    margin-top: 0px;
  }

  .active span:nth-child(1) {
    animation: ease .7s top forwards;
  }

  .not-active span:nth-child(1) {
    animation: ease .7s top-2 forwards;
  }

  .active span:nth-child(2) {
    animation: ease .7s scaled forwards;
  }

  .not-active span:nth-child(2) {

    animation: ease .7s scaled-2 forwards;
  }

  .active span:nth-child(3) {
    animation: ease .7s bottom forwards;
  }

  .not-active span:nth-child(3) {
    animation: ease .7s bottom-2 forwards;
  }

  @keyframes top {
    0% {
      top: 0;
      transform: rotate(0);
    }
    50% {
      top: 22px;
      transform: rotate(0);
    }
    100% {
      top: 9.5px;
      transform: rotate(45deg);
    }
  }

  @keyframes top-2 {
    0% {
      top: 22px;
      transform: rotate(45deg);
    }
    50% {
      top: 22px;
      transform: rotate(0deg);
    }
    100% {
      top: 0;
      transform: rotate(0deg);
    }
  }

  @keyframes bottom {
    0% {
      bottom: 0;
      transform: rotate(0);
    }
    50% {
      bottom: 22px;
      transform: rotate(0);
    }
    100% {
      bottom: 9.5px;
      transform: rotate(135deg);
    }
  }

  @keyframes bottom-2 {
    0% {
      bottom: 22px;
      transform: rotate(135deg);
    }
    50% {
      bottom: 22px;
      transform: rotate(0);
    }
    100% {
      bottom: 0;
      transform: rotate(0);
    }
  }

  @keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.nav-box{
    width: 50px;
    height: 50px;
    background-color: #1D2088;
    border-radius: 50%;
    position: absolute;
    top: 40px;
    right: 20px;
}
