@font-face {
    font-family: Quicksand;
    src: url("fonts/Quicksand/Quicksand-VariableFont_wght.ttf");
}

* {
    box-sizing: border-box;
}

*::selection {
    color: black;
    background: white;
}

html, body {
    width: 100vw;
    margin: 0;
    padding: 0;
    scrollbar-color: white black;
}
body {
    display: flex;
    flex-direction: column;
    font-family: "Quicksand";
}
nav {
    background-color: black;
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 5%;
    position: fixed;
    z-index: 12;
}
nav .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1%;
    text-transform: uppercase;
    font-size: 1vw;
    font-weight:normal
}
nav a {
    text-decoration: none;
    color: white;
}
nav a:hover {
    background-color: white;
    color: black;
}
nav .right {
    margin-left: auto;
    margin-right: 0;
}
nav img {
    width: 175px;
}

/*********************************
    PARALLAX 1
*********************************/

.parallax {
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-delay: 3s;
}
.im1 {
    background-image: url("../img/studioHD.jpg");
}
.im2 {
    background-image: url("../img/studio2HD.jpg");
}
.im3 {
    background-image: url("../img/studio3HD.jpg");

}
.parallax img {
    position:absolute;
    bottom: 3%;
    left: 4%;
    width: 35%;
}

.parallax .modal {
    position: relative;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 20px 0px 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13pt;
    justify-content: space-around;
}
.parallax .modal {
    position: relative;
    top: 10%;
    width: 30%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 20px 0px 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15pt;
    justify-content: space-around;
    text-transform: uppercase;
}
.parallax .modal h1 {
    font-family: "Quicksand";
    text-transform: uppercase;
    font-weight: 400    ;
}
.parallax .modal p {
    margin: 0;
    padding: 0;
}
.parallax .m1 {
    left: 10%;
}
.parallax .m2 {
    margin-left: 50%;
}






main {
    width: 100vw;
    height: 95%;
    display: flex;
    flex-direction: column;
}

.page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 95vh;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
}
.page .figure {
    width: 50%;
}
.page .figure img {
    width: 100%;
}
.page .text {
    background-color: black;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5% 10%;
    font-size: 15pt;
    color: white;
}
.page .text h1 {
    color: white;
    font-weight: lighter;
    text-transform: uppercase;
    font-size: 20pt;
}
.page .text p {
    color: white;
}
.page .text img {
    width: 50%;
    align-self: center;
    justify-self: center;
    margin: 50px 0px;
}

.page .line {
    border: 0;
    background-color: white;
    height: 4px;
    width: 100%;
    margin-bottom: 6px;
}
.page .fine-line {
    border: 0;
    background-color: white;
    height: 1pt;
    width: 100%;
    margin-bottom: 6px;
}

.page .contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}
.page .contacts a {
    color: white;
}
 
















