section.contact{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
  .contact__inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
  }
    .contact__inner__concept
      .contact__inner__concept__wrapper {
        display: inline-block;
        position: relative;
        overflow: hidden;
      }
        .contact__inner__concept__wrapper .none{
          display: inline-block;
          font-size: 6rem;
          font-weight: bold;
          text-align: center;
          margin: 0;

          pointer-events: none;
          visibility: hidden;
          opacity: 0;
        }
        .contact__inner__concept__wrapper .none span{
          font-size: var(--normal-font-size);
          line-height: var(--normal-font-size);
          font-weight: bold;
        }
        .contact__inner__concept__wrapper video,
          .contact__inner__concept__wrapper .visible {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);

            height: 100%;
          }
          .contact__inner__concept__wrapper video {
            object-fit: cover;
            width: 99%;
            height: 98% !important;
          }
          .contact__inner__concept__wrapper .visible {
            width: 100%;
            display: inline-block;
            background: #fff;
            font-family: "Work Sans";
            font-size: 6rem;
            font-weight: bold;
            text-align: center;
            display: flex;
            margin: 0;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            mix-blend-mode: screen;
          }
          .contact__inner__concept__wrapper .visible span{
            font-size: var(--normal-font-size);
            font-weight: bold;
          }
  .contact__inner__btn__wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
  }
    .contact__inner__btn__wrapper a{
      width: auto;
      height: 50px;
      padding: 0 20px;
      border-radius: 25px;
      background-color: var(--black);

      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }
      .contact__inner__btn__wrapper a p{
        color: var(--white);
      }
      .contact__inner__btn__icon{
        width: 35px;
        height: 35px;
        background-color: var(--white);
        border-radius: 50%;

        display: flex;
        justify-content: center;
        align-items: center;
      }
      .contact__inner__btn__icon img{
        width: 25px;
        height: auto;
      }





@media screen and (max-width: 1000px){
  .contact__inner{
    gap: 0px;
  }
  .contact__inner__concept__wrapper{
    padding: 0 10px;
  }
    .contact__inner__concept__wrapper .none{
      font-size: 5rem;
      align-items: start;
      text-align: left;

      width: 100%;
    }
    .contact__inner__concept__wrapper .visible {
      font-size: 5rem;
      align-items: start;
      text-align: left;
      width: calc(100vw - 40px);
      padding: 0 20px;
    }
}