*{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Gilory";
}
 
*::selection{
    color: #fff;
    background-color: black;
}

html,body{
        height: 100%;
        width: 100%;
}

body{
    background-color: #f7f7f7;
}

#nav{
    /* height: 100px; */
    padding: 15px;
    width: 100%;
    /* background-color: brown; */
    z-index: 99;
    position: fixed;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
#nav-part1{
    /* background-color: red; */
    height: 83px;
    overflow: hidden;
}

#nav-part1 svg{
    display: block;
}
#nav #nav-part2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

#nav-part2 #links a{
    text-transform: uppercase;
    text-decoration: none;
    font-family: "Helvetica Now Text", "Lucida Sans", Tahoma, sans-serif;
    color: black;
    font-size: 12px;
    margin:0 20px;
}
#links{
    padding: 10px;
}

#nav-part2 #icons i{
    font-size: 18px;
    margin: 0 20px;
}
#icons{
    padding: 20px;
    border-radius: 50px;
    background-color: #f7f7f7;
} 

#nav-part2 #links a:hover{
    text-decoration: underline;
}


#cursor{
    height: 180px;
    width: 180px;
    border-radius: 50%;
    background-color: #c1bbb0d3;
    position: fixed;
    transform: translate(-50%,-50%) scale(0);
}
#page1{
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 0 1vw;
    padding-top: 30vh;
    
}

#page1 h1{
    font-size: 15.5vw;
    text-transform: uppercase;
    font-family: futura;
    line-height: 13vw;
    letter-spacing: -5px;
}

#video-container{
    height: 100vh;
    width: 100%;
    margin-top: 1vw;
    position: relative;
   
}

#video-container video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#video-container #play{
    padding: 3vw 2vw;
    border-radius: 50%;
    position: fixed;
    font-size: 1.5vw;
    
    background-color: black;
    color: #fff;
    font-family: futura;
    text-transform: uppercase;
    opacity: 0;
    scale: 0;
}

#page2{
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content:space-between;

    padding: 3vw 1vw;
}

#page2 .elem{
    /* background-color: black; */
    height: 100%;
    width: 30%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

#page2 .elem img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    scale: 1.1;
}

.elem .dets{
    position: absolute;
    height: 40px;
    width: 80%;
    background-color: #f5dfcf;
    color: black;
    border-radius: 25px;
}

.elem .dets:hover{
    height: 200px;

}

#page3 {
    min-height: 120vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.child {
    height: 54vh;
    width: 38vw;
    /* background-color: red; */
    /* border: 2px solid #000; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.child img {
    height: 100%;
}












@media (max-width:600px) {


    #page1 {
        /* background-color: red; */
        min-height: 70vh;
        width: 100%;
        padding: 0 3vw;
        padding-top: 25vh;

    }

    #page1 h1 {
        font-size: 15.5vw;
        letter-spacing: -3px;
    }

    #video-container {
        height: 25vh;
        margin-top: 3vw;
    }

    #video-container #play {
        padding: 9.5vw 7.2vw;
        font-size: 4.5vw;
        position: absolute;
        top: 50%;
        left: 50%;
        opacity: 1;
        scale: 1;
        transform: translate(-50%, -50%);
    }

    #page2{
        min-height: 100vh;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content:space-between;
        padding: 5vw 3vw;
     
    }
    
    #page2 .elem{
        height: 100%;
        width: 100%;
        overflow: hidden;
        margin-bottom: 3vw;
        
    }
}