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);
      }

.news{
  width: 100%;
  height: auto;

  margin: 100px 0;
}
  .news .container{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  }
    .news .container .title-box{
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: end;
    }
      .news .container .title-box h3{
        font-size: var(--title-font-sise);
        width: fit-content;
      }
      .news .container .title-box p{
        font-size: var(--desc-sise);
        width: fit-content;
      }
    .news .container .content-box{
      margin-top: 150px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
      .news .container .content-box h4{
        font-size: var(--subtitle-font-sise);
        font-weight: lighter;
      }
      .news .container .content-box p{
        line-height: 3rem;
      }
      .news .container .content-box p span{
        font-weight: bold;
      }
      .news .container .content-box p a{
        color: var(--black);
        text-decoration: underline;
      }
      .news .container .content-box img{
        width: 100%;
        height: auto;
      }
      .news .container .content-box .line{
        height: 0;
        width: 100%;
        border-bottom: 1px solid var(--black);
        margin: 20px 0;
      }
    .instagram-link{
      width: 100%;
      display: flex;
      justify-content: end;

      margin-top: 100px;
    }
      .instagram-link a{
        width: fit-content;

        border-bottom: solid 0.5px var(--black);
      }
        .instagram-link a p{
          color: var(--black);
        }








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

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

}