@font-face {
    font-family: 'Brown';
    src: local("Brown"), local("Brown"), url(../js/../font/Brown-Regular.woff2) format("woff2"), url(../js/../font/Brown-Regular.woff) format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

body {
    margin: 0
}

.cursor {
    cursor: pointer
}

.cont {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: black;
    overflow: hidden
}

.cont h1 {
    font-family: "Brown";
    font-size: 60px;
    color: silver;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    line-height: 1.5;
    margin-left: 1vw
}

.cont h2 {
    font-family: "Brown";
    text-transform: uppercase;
    font-size: 60px;
    color: silver;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}
.cont h2 span {
    color:#E82A3B ;

}

@media only screen and (max-width: 700px) {
    .cont h2 {
        font-size: 45px
    }
}

.cont .bg {
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 0;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column
}

.cont .bg h2 {
    line-height: 1.5;
    margin: 1vw;
}

.cont .bg h3 {
    display: none;
    margin: 0;
    margin-left: 1vw;
    margin-right: 1vw;
    font-size: 24px;
    font-family: "Brown";
    color: silver;
    line-height: 1.4;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

@media only screen and (max-width: 700px) {
    .cont .bg h3 {
        display: block
    }
}

.cont .scene {
    opacity: 0;
    position: fixed
}

.cont .loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.cont .back {
    position: fixed;
    color: silver;
    font-family: "Brown";
    text-decoration: none;
    right: 5vw;
    bottom: 5vh;
    z-index: 9
}

.cont img.plane {
    display: none
}

.cont .image-viewer {
    position: fixed;
    visibility: hidden;
    padding: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    z-index: 2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
}

@media only screen and (max-width: 700px) {
    .cont .image-viewer {
        padding: 10px;
        width: 95%;
        top: 55%;
        height: auto;
        max-height: 90vh
    }
}

.cont .image-viewer .close {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox=%270 0 24 24%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg stroke=%27silver%27 fill=%27silver%27 data-name=%27Layer 2%27%3E%3Cg data-name=%27close%27%3E%3Crect width=%2724%27 height=%2724%27 transform=%27rotate%28180 12 12%29%27 opacity=%270%27/%3E%3Cpath d=%27M13.41 12l4.3-4.29a1 1 0 1 0-1.42-1.42L12 10.59l-4.29-4.3a1 1 0 0 0-1.42 1.42l4.3 4.29-4.3 4.29a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l4.29-4.3 4.29 4.3a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.42z%27/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    border: 2px solid silver;
    border-radius: 50%;
    padding: 10px;
    z-index: 3
}

@media only screen and (max-width: 700px) {
    .cont .image-viewer .close {
        top: -30px
    }
}

.cont .image-viewer img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%
}