*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
*::selection
{
    color: #fff;
    background-color: black;
}
html,body
{
    height: 100%;
    width: 100%;
}
body
{
    background-color: #F7F7F7;
}
#nav {
  height: 100px;
  width: 100%;
  position: sticky;
  z-index: 10000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#nav-part2 {
  display: flex;
  align-items: center;
  gap: 40px; 
}


#nav-part2 a {
  text-decoration: none;
  text-transform: uppercase;
  color: #333;
  font-weight: 400;
  font-size: 14px;
  margin-right: 20px;
  z-index: -100;
  position: static;
}

/* ICONS */
#icons {
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px; /* space between icons */
  z-index: 1;
}

#icons i {
  font-size: 18px;
  color: #333;
  cursor: pointer;
}


#cursor
{
    height: 150px;
    width: 150px;
    background-color: pink                                                               ;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: fixed;
    transform: translate(-50%,-50%) scale(0);
    -webkit-transform: translate(-50%,-50%) scale(0);
    -moz-transform: translate(-50%,-50%) scale(0);
    -ms-transform: translate(-50%,-50%) scale(0);
    -o-transform: translate(-50%,-50%) scale(0);
}
#page1
{
    min-height: 100vh;
    position: relative;
    padding: 0 3vw;
    padding-top: 15vh;

}
#page1 h1
{
    font-size: 14vw;
    line-height: 23vh;
    font-weight: 800;
    letter-spacing: -8px;
}
.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;
    background-color: black;
    color: #fff;
    font-size: 1.3vw;
    font-weight: 600;
    position: fixed;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0;
    scale: 0;
}

#page2
{
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vw 1vw;
}
#page2 .elem
{
    width:31%;
    height: 100%;
    overflow: hidden;
    position: relative;
    
}
#page2 .elem img
{
    height: 100%;
    width: 100%;
    object-fit: cover;
    scale: 1.1;
}
.elem .dets
{
    height: 60px;
    width: 70%;
    position: absolute;
    background-color: pink;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    position: absolute;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.elem .dets svg
{
    height: 5vh;
}
.elem .dets .arrow
{
    height: 3vh;
}

#page3
{
    min-height: 120vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.child
{
    height: 54vh;
    width: 38vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.child img
{
    height: 100%;
}

#page4
{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 2vw;
}
#page4 .line
{
    height: 1px;
    width: 99%;
    border-top: 5px;
    background-color: black;
    margin-bottom: 2vw;
}
#para
{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 19vw;
}
#para p
{
    line-height: 20px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}
@media (max-width:600px) {
    #nav {
  height: 100px;
  width: 100%;
  position: fixed;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

#nav-part2 {
  display: flex;
  align-items: center;
  gap: 40px; /* keeps links and icons apart */
}


#nav-part2 a {
  text-decoration: none;
  text-transform: uppercase;
  color: #333;
  font-weight: 400;
  font-size: 14px;
  margin-right: 20px;
  display: none;
}
#nav-part1 svg
{
    display: block;
    height: 65px;
}
/* ICONS */
#icons {
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px; /* space between icons */
  z-index: 1;
}

#icons i {
  font-size: 18px;
  color: #333;
  cursor: pointer;
}

    #page1
    {
        min-height: 70vh;
        width: 100%;
        padding: 0 1.3vw;
        padding-top: 16vh;
    }
    #page1 h1
    {
    font-size: 14.1vw;
    line-height: 5vh;
    letter-spacing: -2px;
    }
.video-container
{
    height: 25vh;
    width: 100%;
    margin-top: 3vw;
    position: relative;
}
.video-container video
{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.video-container #play
{
    padding: 6vw 5vw;
    background-color: black;
    color: #fff;
    font-size: 4vw;
    font-weight: 600;
    position: fixed;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 1;
    scale: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}

#page2
{
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5vw 3vw;
}
#page2 .elem
{
    width:100%;
    height: 100vh;
    overflow: hidden;
}
#page2 .elem img
{
    padding: 5vw;
    height: 100%;
    width: 100%;
    object-fit: cover;
    scale: 1.1;
}
.elem .dets
{
    height: 40px;
    width: 70%;
    position: absolute;
    background-color: pink;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.child
{
    height: 48vh;
    width: 88vw;
    padding: 15vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.child img
{
    height: 100%;
}
}