section{
  width: 100dvw;
  height: auto;
}
.hero{
  position: relative;
  width: 100%;
  height: 50dvh;
}
  .hero .video-box{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: calc(100% - 80px);
  }
    .video-box img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  .hero .title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);

    width: auto;
    height: auto;
  }
    .hero .title a{
      text-decoration: none;
    }
      .hero .title a p{
        font-size: var(--subtitle-font-sise);
        color: var(--white);
        margin: 0;

        border-bottom: solid 0.5px rgba(255, 255, 255, 0);

        transition: 0.5s;
      }
      .hero .title a:hover p{
        border-bottom: solid 0.5px var(--white);
      }

.shop{
  max-width: 1170px;
  width: 100%;
  height: auto;

  margin: 100px auto;
}








@media screen and (max-width: 900px){

.news .container{
  padding: 0 50px;
}

}