:root {
  --swiper-theme-color: var(--color-fluo) !important;
}

html,
body{
    margin: 0;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  display: block;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
  user-select:none;
}

.swiper-slide {
  text-align: center;
  width: auto ;

  display: -webkit-box ;
  display: -ms-flexbox ;
  display: -webkit-flex ;
  display: flex ;
  -webkit-box-pack: center ;
  -ms-flex-pack: center ;
  -webkit-justify-content: center ;
  justify-content: center ;
  -webkit-box-align: center ;
  -ms-flex-align: center ;
  -webkit-align-items: center ;
  align-items: center ;
}

.swiper-slide-video{
  display: flex ;
  justify-content: center ;
  align-items: center ;
  width: calc(100vw + 2px) ;
  height: 100vh ;
  overflow: hidden ;
}

.swiper-slide-video video{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

picture{
  height: 100%;
}

.swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
}

.landscape{
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100vw + 2px);
  height: 100vh;
  overflow: hidden;
}

.landscape img{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  width: auto ;
  max-height: 100vh ;
}

.swiper-button-next,
.swiper-button-prev{
  height: 100vh ;
  top: 0 ;
  right: 0 ;
  width: 25% ;
  margin: 0 ;
  cursor: none ;
  outline: none ;
}

.swiper-button-next:active
.swiper-button-prev:active {
  border-style: none ;
  outline: none ;
}


video:focus-visible,
#prev:focus-visible,
#next:focus-visible{
    outline: none;
    border-style: none;
    outline: none;
}

.swiper-button-prev{
  left: 0;
}

.swiper-button-next:after, .swiper-button-prev:after{
  content: ' ' ;
}

.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100% ;
  height: 4px ;
  left: 0 ;
  top: auto ;
  bottom: 0 ;
}

#nav-right-desktop a p,
#nav-center p,
#burger-mobile p a{
  color: var(--color-fluo);
}

#nav-title p{
  color: var(--color-fluo);
}

.hamburger div {
  background-color: var(--color-fluo);
}

@media screen and (max-width: 600px){
  #burger-mobile p a{
    color: #181818;
  }

  .portrait{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  
  .portrait img{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}