section{
  width: 100dvw;
  height: auto;
}
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.cannes-col{
  position: relative;
  width: 100dvw;
  height: auto;
}
  .cannes-col .video-box{
    height: fit-content;
  }
  .hero .video-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    overflow: hidden;
  }
    .hero .video-box video{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .cannes-col .video-box img{
      width: 100%;
      height: auto;
    }
    /* #bg-movie {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      z-index: 0;
      pointer-events: none;
    } */
  .hero .control-box{
    position: absolute;
    bottom: calc(10% + 25px);
    padding: 0 25px;

    width: 100%;
    height: auto;
  }
    .play-button {
      box-sizing: border-box;
      width: 0;
      height: 14px;
      border-style: solid;
      border-width: 7px 0 7px 14px;
      border-color: transparent transparent transparent #ffffff;
      cursor: pointer;
      will-change: border-width;
      transition: all .2s ease;

      &.paused {
        border-style: double;
        border-width: 0px 0 0px 14px;
      }
    }
  .hero .title{
    position: absolute;
    bottom: calc(10% + 25px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);

    width: auto;
    height: auto;
  }
    .hero .title a{
      text-decoration: none;
    }
      .hero .title p{
        font-size: var(--default-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);
      }
  .hero .desc{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 10%;
    padding: 10px 0;
  }
    .hero .desc .desc-box{
      max-width: 1170px;
      width: 100%;
      margin: 0 auto;
    }

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

  margin: 100px 0;
}
  section .container{
    max-width: 1170px;
    width: 100%;

    margin: 0 auto;
  }
    section .title-box{
      width: auto;
      height: auto;
      text-align: center;
      margin-bottom: 50px;
    }
      section .title-box h3{
        font-size: var(--subtitle-font-sise);
        font-weight: lighter;
        margin: 0;
      }
      section .title-box p{
        font-size: var(--desc-font-sise);
        font-weight: lighter;
        margin: 20px 0 0;
      }
  .collection .content-box{
    width: 100%;
    height: auto;
  }
    .collection .content-box .item-list{
      display: flex;
      gap: 30px;
      width: 100%;
      height: auto;
    }
      .collection .content-box .item-list .image-item{
        max-width: 240px;
        width: 100%;
        height: 240px;
        overflow: hidden;
      }
        .collection .content-box .item-list .image-item img{
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: 0.5s;
        }
        .collection .content-box .item-list .image-item:hover img{
          transform: scale(1.1);

        }
    .collection .content-box .collection-link{
      width: fit-content;
      width: 100%;
      height: auto;
      margin-top: 50px;

      display: flex;
      justify-content: center;
    }
      .collection .content-box .collection-link a{
        text-decoration: none;
        width: fit-content;
        height: auto;
      }
        .collection .content-box .collection-link p{
          width: fit-content;
          text-align: center;
          color: var(--black);

          margin: 0;
        }

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

  margin: 100px 0;
}
  .category .content-box{
    width: 100%;
    height: auto;
  }
    .category .content-box .item-list{
      display: flex;
      gap: 25px;
    }
      .category .content-box .item-list .item-box{
        max-width: 400px;
        width: 100%;
        height: auto;
      }
        .category .content-box .item-list .item-box .image-box{
          position: relative;
          aspect-ratio: 1 / 1;
        }
          .category .content-box .item-list .item-box .image-box .visual-box{
            position: absolute;
            top: 0;
            left: 0;

            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
          }
            .category .content-box .item-list .item-box .image-box .visual-box a{
              width: 100%;
              height: auto;
              aspect-ratio: 1 / 1;
            }
            .category .content-box .item-list .item-box .image-box .visual-box img{
              display: none;
              width: 100%;
              height: auto;
              aspect-ratio: 1 / 1;
              object-fit: cover;
            }
            .category .content-box .item-list .item-box .image-box .visual-box img.active{
              display: block;
            }
          .category .content-box .item-list .item-box .image-box .image-control{
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);

            padding: 0 20px 20px;

            display: flex;
            justify-content: center;
            gap: 20px;
          }
            .category .content-box .item-list .item-box .image-box .image-control a{
              width: 40px;
              height: 40px;
            }
              .category .content-box .item-list .item-box .image-box .image-control a img{
                width: 100%;
                height: 100%;
                object-fit: cover;
              }
        .category .content-box .item-list .item-box .desc-box{
          width: 100%;
          padding: 20px 0;
        }
          .category .content-box .item-list .item-box .desc-box .title{
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: var(--accent-font-sise);
          }
          .category .content-box .item-list .item-box .desc-box p{
            font-weight: lighter;
            color: var(--black);
          }
          .category .content-box .item-list .item-box .desc-box .desc{
            font-weight: lighter;
            color: var(--black);
            margin-bottom: 15px;
          }

.brand-story{
  width: 100%;
  height: auto;

  margin: 100px 0;
}
  .brand-story .container{
    height: auto;
    width: 100%;
    max-width: 100%;
  }
    .brand-story .content-box{
      position: relative;
      
      height: 700px;
      width: 100%;
      object-fit: cover;

      margin: 0 auto;
    }
      .brand-story .content-box .image-box{
        position: absolute;
        top: 0;
        left: 0;

        height: 700px;
        width: 100%;
      }
        .brand-story .content-box img{
          max-height: 700px;
          height: 100%;
          width: 100%;
          object-fit: cover;
          display: none;
        }
      .brand-story .content-box .control-box{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);

        width: 100%;
        height: 50px;
        padding: 0 30px;

        display: flex;
        justify-content: space-between;
        align-items: center;
      }
        .brand-story .content-box .control-box button{
          background-color: var(--white);
          border: none;
          cursor: pointer;
          outline: none;
          padding: 0;
          appearance: none;

          width: 30px;
          height: 30px;
          border-radius: 15px;
        }
    .brand-story .content-desc{
      max-width: 1170px;
      width: 100%;
      height: 100px;
      margin: 0 auto;
    }
      .brand-story .content-desc p{
        margin-top: 20px;
        font-size: var(--accent-font-sise);
        display: none;
        text-align: center;
      }
        .brand-story .content-desc p a{
          color: var(--black);
          text-decoration: underline;
        }

      .brand-story .content-box img.active{
        display: block;
      }
      .brand-story .content-desc p.active{
        display: block !important;
      }

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

  margin: 100px 0;
}
    .news .content-box{
      max-width: 900px;
      margin: 0 auto;
    }
      .news-list{
        display: flex;
        flex-direction: column;
      }
        .news-list .news-item{
          position: relative;
          width: 100%;
          height: 50px;

          border-bottom: solid 0.5px var(--black);
        }
          .news-list .news-item a{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            display: flex;
            justify-content: space-between;
            align-items: center;

            text-decoration: none;
          }
            .news-list .news-item a p{
              color: var(--black);
              transition: 0.5s;
            }
          .news-list .news-item img{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            object-fit: cover;
            opacity: 0;

            transition: 0.5s;
          }
        .news-list .news-item:hover a p{
          color: #ffffff;
        }
        .news-list .news-item:hover img{
          opacity: 1;
          filter: brightness(0.7);
        }
      .instagram-link{
        width: 100%;
        display: flex;
        justify-content: end;

        margin-top: 30px;
      }
        .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){

.hero {
  height: 50dvh;
}
  .hero .video-box {
    width: 100%;
    height: 45dvh;
  }

.collection .content-box .item-list{
  padding: 0 50px;
  width: 100%;
}
  .collection .content-box .item-list .image-item{
    max-width: 400px;
    aspect-ratio: 5 / 6;
    height: auto;
  }

.category .content-box .item-list{
  padding: 0 50px;
  width: 100%;
}
  .category .content-box .item-list .item-box .image-box .image-control{
    padding: 0 10px 10px;
  }

.news .content-box{
  padding: 0 50px;
}

}














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

.hero {
  height: 50dvh;
}
  .hero .video-box {
    width: 100%;
    height: 45dvh;
  }
.hero.cannes-col{
  height: 300px;
}

.collection .content-box .item-list{
  flex-direction: column;
  padding: 0 50px;
  width: 100%;
}
  .collection .content-box .item-list .image-item{
    max-width: 400px;
  }

.category .content-box .item-list{
  flex-direction: column;
  padding: 0 50px;
  width: 100%;
}
  .category .content-box .item-list .item-box .image-box .image-control a{
    width: 50px;
    height: 50px;
  }

  .brand-story .content-box{
    height: 300px;
    }.brand-story .content-box .image-box{
      height: 300px;
    }
      .brand-story .content-box img{
        max-height: 300px;
      }
.news .content-box{
  padding: 0 50px;
}

}