*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Gilroy'; */
}
*::selection{
    color:#fff;
    background-color: #000;
}

html, body{
    height: 100%;
    width: 100%;
    background-color: #f7f7f7;
   
}
#nav-bar{
    width: 100%;
    position: fixed;
    padding: 25px;
    padding-bottom: 0px;
    z-index: 9;
    display: flex;
    justify-content: space-between;
}
#nav-part1{
    height: 82px;
    overflow: hidden;
}
#nav-part1>SVG{
    display: block;
}
#nav-part2{
    display: flex;
    width: 45%;
    justify-content: space-around;
    
    
}
#nav-links{
    width: 80%;
    display: flex;
    justify-content: space-around;
}
#nav-links>a{
    padding-top: 5px;
    text-decoration: none;
    color: #000;
    font-weight: 300;
    font-size: 13px;
}
#nav-icons{
    padding-top: 5px;
    width: 20%;
    display: flex;
    justify-content: space-around;
    font-size: 16px;
    background-color: #f7f7f7;
    margin-bottom: 50px;
    border-radius: 30px;
}
#cursor {
    height: 200px;
    width: 200px;
    background-color: #fff;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%,-50%) scale(0);
}

#page1{
    min-height: 100vh;
    position: relative;
    width: 100%;
    padding: 0 1vw;
    padding-top: 32vh;
}
#page1 h1{
    font-size: 15.9vw;
    font-family: futura;
    text-transform: uppercase;
    line-height: 14vw;
    letter-spacing: -8px;
}

#video-container{
    height: 100vh;
    width: 100%;
    background-color: grey;
    margin-top: 1vw;
}
#video-container video{
    height: 100%;
    width: 100%;
    object-fit: cover;

}
#play{
    padding: 3vw 2.3vw;
    background-color: black;
    color: #fff;
    font-size: 1.3vw;
    position: fixed;
    text-transform: uppercase;
    font-family: futura;
    border-radius: 50%;
    opacity: 0;
    scale: 0;
    transform: translate(-50%,-50%);
}



#ruler{
    margin-top: 10vh;
    display: flex;
    justify-content: space-between;
    
}
#ruler>p{
    font-weight: 100;
    padding: 0vw 1vw 0vw 1vw;
}
hr{
    margin: 0vw 1vw;
}

#page2{
    height: 100vh;
    width: 100%;
    /* background-color: aliceblue; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1vw 1vw;
}
.elem{
    /* background-color: red; */
    height: 100%;
    width: 33%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    
}
.elem>img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    scale: 1;
}
.dets{
    height: 60px;
    width: 60%;
    border-radius: 40px;
    background-color: burlywood;
    /* z-index: 10; */
    position: absolute;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.dets>i{
    height: 10px;
}
#bvs{
    height: 60vh;
    /* background-color: red; */
    display: flex;
}
#bvsr{
    /* background-color: aqua; */
    height: 100%;
    width: 70%;
    font-size: 30px;
    font-family: futura;
    letter-spacing: -1.8px;
    line-height: 4vw;
    text-transform: uppercase;
    margin-top: 10vh;
    margin-left: 2vw;
}
#support{
    /* background-color: blue; */
    width: 40%;
    margin-top: 10vh ;
    margin-right: 10vw;
    margin-left: 10vw;
    padding-left: 5vw;
    font-size: 14px;
    font-family: "Helvetica Now Text", "Lucida Sans", Tahoma, sans-serif;
    font-weight: 100;
    line-height: 1.5;
    letter-spacing: 0.1px;
    
}
#s-link{
    font-size: 12px;
    color: #000;
    text-underline-offset: 8px;  
}
#fourelem{
    margin-top: 15vh;
    margin-bottom: 15vh;
    min-height: 180vh;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    /* flex-direction: row; */
    flex-wrap: wrap;
    justify-content: space-around;

}
.fourpic{
    height: 70vh;
    width: 40%;
    /* background-color: red; */
    position: relative;
    
}
.fourpic>img{
    height: 100%;
    padding-left: 10vh;
}
.fourpic>p{
    text-align: center;
}
#child1{
    margin-top: 10vh; 
}
#child2{
    margin-top: 10vh;
}
#child3{
    margin-top: 2vh;
}
#child4{
    margin-top: 2vh;
}


/* responsiveness */
@media (max-width : 600px) {

    #nav-bar{
        width: 100%;
        position: fixed;
        padding: 25px;
        padding-bottom: 0px;
        z-index: 9;
        display: flex;
        justify-content: space-between;
    }
    #nav-part1{
        height: 52px;
        overflow: hidden;
    }
    #nav-part1>SVG{
        padding-right: 40px;
        height: 52px;
        display: block;
    }
    #nav-part2{
        display: flex;
        width: 45%;
        
        
    }
    #nav-links{
        visibility: hidden;
        position: fixed;
    }
    #nav-icons{
        padding-top: 2px;
        margin-left: 30px;
        width: 80%;
        display: flex;
        justify-content: space-around;
        font-size: 14px;
        background-color: #f7f7f7;
        margin-bottom: 50px;
        border-radius: 30px;
    }
    #page1{
        
        min-height: 57vh;
        padding: 0vh 3vw;
        padding-top: 25vh;
        
    }
    #page1 h1{
        font-size: 15.9vw;
        line-height: 10vw;
        letter-spacing: -1.1vw;
    }
    
    #video-container{
        height: 23vh;
        width: 100%;
        background-color: grey;
        margin-top: 2vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #play{
        
        margin-top: 45px;
        background-color: black;
        color: #fff;
        font-size: 10px;
        position: absolute;
        text-transform: uppercase;
        font-family: futura;
        border-radius: 50%;
        opacity: 1;
        scale: 1;
    }
    #ruler>p{
        font-weight: 500;
        
        font-size: 5px;
    }
    #ruler{
        padding: 0vw 3vw;
        margin-top: 2vh;
        display: flex;
        justify-content: space-between;
    }
    hr{
        font-weight:bolder;
        margin: 0vw 3vw;
    }
    #page2{
        min-height: 220vh;
        width: 100%;
        
        display: flex;
        flex-direction: column;
        
        justify-content: space-between;
        padding: 1vw 3vw;
    }
    .elem{
        
        height: 70vh;
        width: 100%;
        overflow: hidden;
        
    }
    .elem>img{
        height: 70vh;
        width: 100%;
        object-fit: cover;
        scale: 1.1;
    }
    #bvs {
        flex-direction: column;
        height: auto;
        align-items: center;
        padding: 5vh 5vw;
      }
    
      #bvsr {
        width: 100%;
        text-align: center;
        margin: 0;
      }
    
      #bvsr h1 {
        font-size: 8vw; /* Responsive large heading */
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: -1px;
        margin: 0;
        padding: 0;
      }
    
      #support {
        width: 100%;
        margin-top: 5vh;
        padding: 0;
        text-align: center;
        font-size: 3.5vw;
        line-height: 1.6;
      }
    
      #s-link {
        display: inline-block;
        margin-top: 4vh;
        font-size: 3vw;
        text-decoration: underline;
        text-underline-offset: 6px;
        color: black;
      }

      #fourelem{
        /* margin-top: 0px;
        margin-bottom: 0px; */
        min-height: 65vh;
        width: 100%;
        /* background-color: blue; */
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
    
    }
    .fourpic{
        height: 20vh;
        width: 40%;
        /* background-color: red; */
        position: relative;
        align-items: center;   /* vertical center */
        justify-content: center; /* horizontal center */
    }
    .fourpic>img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        display: block;
        /* padding-right: 20px; */
        /* padding-left: 10vh; */
    }
    .fourpic>p{
        text-align: center;
    }
    #child1{
        margin-top: 5vh; 
    }
    #child2{
        margin-top: 5vh;
    }
    #child3{
        margin-top: 2vh;
    }
    #child4{
        margin-top: 2vh;
    }
}   