@font-face {
    font-family: HelveticaNeueLight;
    src: url(./fonts/HelveticaNeueLight.otf);
  }

* {
    box-sizing: border-box;
}

body {
    cursor: url(./images/cursor-white-normal.png), none;
    font-family: HelveticaNeueLight;
    line-height: 14px;
    letter-spacing: 0.3px;
    padding: 0;
    margin: 0;
    background-color: black;
    overflow: hidden;
}

/* menu */
.nav {
    position: fixed;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 999;
    background-color: black;
}

.nav-item {
    font-size: 11px;
    color: white;
    margin: 0;
    padding: 10px;
}

.nav-item a {
    color: rgb(128, 128, 128);
    text-decoration: none;
    cursor: url(./images/cursor-white-hover.png), none;
}

.nav-item a:hover {
    color: white;
}

/* flex */
.flex-container {
    display: flex;
    position: relative;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.text-item{
    flex: 30%;
    max-width: 30%;
    margin: 0;
    padding: 0;
}

.text-main{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100vh;
    width: 100%;

    font-size: 13px;
    color: white;
    margin: 0;
    padding: 15px;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.photo-item {
    flex: 70%;
    max-width: 70%;
    margin: 0;
    padding: 0;
}

.flex-container-small {
    display: flex;
    position: relative;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.text-sub {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    height: 100vh;
    width: 20%;
    max-width: 20%;
    
    font-size: 8.5px;
    line-height: 10px;
    color: white;
    margin: 0;
    padding: 15px;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    width: 80%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
}

span {
    font-size: 10px;
    font-weight: lighter;
}

.play {
    position: absolute;
    top: 0%;
    height: 100%;
    width: 34%;
    right: 0;
}

.play:hover {
    cursor: url(./images/cursor-white-pause-play.png), none;
}

#whostotrust {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease;
  }

  @media screen and (max-height: 740px) {
    .flex-container {
        display: none;
    }

  }

@media screen and (max-width: 720px) {
    .flex-container {
        display: none;
    }

}