*{
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
}

body {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: white;
    overflow: auto;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

header {
    display: flex;
    position: fixed;
    flex-direction: row;
    width: 100%;
    height: 48px;
    top: 0;
    z-index: 5;
    background:rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: all 1s ease;
    transform-origin: top;
    border-bottom: 2px solid gray;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.logo {
    display: flex;
    position: relative;
    align-items: center;
    width: 200px;
    height:100%;
    bottom:0;
    line-height: 100%;
    font-size: 30px;
    font-weight: 100;
    color: gray;
    transform-origin:left;
    transition: all 1s ease;
    cursor:pointer;
    pointer-events: all;
    background-image: url(/assets/Glanc3dBanner.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#logo:hover{
    opacity:1;
    filter: blur(0);
}
.menuitem{
    display: flex;
    position: absolute;
    color: gray;
    right:0;
    bottom:0;
    margin-right: 20px;
    transition: all 1s ease;
    cursor:pointer;
    pointer-events: all;
    justify-content: flex-end;
    font-size: 16px;
    font-weight: 100;
}
#contact:hover{
    opacity:1;
    color: white;
}
#about:hover{
    opacity:1;
    color: white;
}
.container {
    display:flex;
    width: 100%;
    height: 100%;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12;
    padding:20px;
    padding-top: 72px;
    z-index: 0;
}
.details{
    flex-direction: column;
    flex-wrap: nowrap; 
    justify-content:space-evenly; 
}

.item{
    display: flex;
    position: relative;
    align-items: center;
    object-fit: cover;
    width: 25%;
    height:35vh;
    max-height:330px;
    margin: 20px;
    justify-content: center;
    padding-bottom: 48px;
    margin-bottom: 48px;
    cursor:pointer;
    transition: scale 1s ease;
}
.poster{
    position: absolute;
    width:100%;
    height:100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity:0;
  /*  transition: all 2s ease;*/
}
.text {
    display:flex;
    position: absolute;
    z-index: 1;
    bottom: -30px;
    color: gray;
    height:48px;
    opacity:0;
    transition: all 1s ease;
    text-align: right;
    font-size: 12px;
    font-weight: none;
    right:0;
   }
   
.left{
    text-align:left; 
    left:0; 
    text-indent: 0;
}
p{
    position: relative;
    text-indent: 25px;
    color:gray;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    text-align:justify;
    margin: auto;
    margin-top: 0;
}
a{
    position: relative;
    text-indent: 25px;
    color:gray;
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    text-align:justify;
    margin-top: 0;
}
.title{
    display: flex;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    text-align:center;
    text-indent: 0px;
    z-index: 6;
    color:gray;
    line-height: 100px;
}
p.subtitle{
    width: 100%;
    height:20px;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    text-indent: 0px;
    margin: auto;
    margin-bottom: 0;
}
.raw{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
    margin-top: 50px;
}
.slide{
    width:100%;
    min-height:100vh;
    margin-top:0;
}

.description{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    max-width:100%;
    width: 480px;
    height:40vh;
    min-height: 300px;
    overflow: auto;
}

.image{
    position:absolute;
    display: flex;
    margin:auto;
    max-width: 100%;
    width: 480px;
    height: 270px;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.instruct{
    display:none;
    width:100%; 
    height:20px; 
    position: relative; 
    margin-top: auto;
    margin-bottom: 0;
    color:gray; 
    font-size: 10px; 
    text-align: center;
    transform-origin: center ;
    pointer-events: none;
    letter-spacing: 0;
}

.imagefs{
    display: none;
    position: absolute;
    width:1920px;
    height:1080px;
    z-index: 10;
    top:0;
    left:0;
    margin:0;
}
video {
    display: flex;
    position: absolute;
    width: 100%; 
    height: 100vh;
    background: black;
    z-index:3;
}
.youtube{
    margin: auto;
}

#about{
    margin-right: 110px;
}
@media screen and (max-width:1400px) {
    .item {
        width:40%;
        height: 330px;
        max-width: 480px;
    }
    @media screen and (max-width:1000px) {
        .item {
            width:100%;
            height: 330px;
            max-width: 480px;
        }
    }
}