@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'MaziusReview';
    src: url('fonts/MAZIUS\ REVIEW\ 20.09\ Extra\ italic\ 400.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
  }

*{
    margin : 0;
    padding : 0;
    box-sizing : border-box;
    font-family: "Gilroy";
}

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

#main{
    width: 100%;
}

#loader{
    z-index: 9999;
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: #111;
    color: aliceblue;
}

#loader #topheading{
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translate(-50%, 0);
}

#topheading h5{
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8rem;
}

#loader h1{
   
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4vw;
    font-weight: 300;
}

.maz{
    font-family: "MaziusReview";
    color: #14cf93;
}


.reveal .parent { 
    display: flex;
    width: 100%;
    justify-content: center;
    overflow-y: hidden;
}

.reveal .parent .child {
    display: block;
}

.parent .child span {
    display: inline-block;
}

#green{
    z-index: 9999;
    position: absolute;
    top: 100%;
    width: 100%;
    height: 0vh;
    background-color: #14cf93;
}

#home {
    width: 100%;
    height: 150vh;
    background-color: #f3f3f3;
}

#home #nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0 5vw;

}

#nav a{
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 12px;
    color: #111;
}

#nav a .line{
    bottom: 0;
    position: absolute;
    display: inline-block;
    height: 1px;
    background-color: #000;
}

#line1{
    left:0;
    width: 0;
    transition: cubic-bezier(0.19, 1, 0.22, 1) 1s;
    transition-delay: .1s;
}

#line2{
    right:0;
    transition: cubic-bezier(0.19, 1, 0.22, 1) 1s;
    width: 100%;
}

#nav a:hover #line2{
    width: 0;
}

#nav a:hover #line1{
    width: 100%;
}

.row{
    margin-top: 5vw;
    display: flex;
    justify-content: space-between;
    width:100%;
    color: #333;
    padding: 0 7vw;
    padding-right: 11vw;
    align-items: center;

}

.row h1{
    font-size: 9vw;
    font-weight: 600;
}

.row text{
    margin-top: 0vw;

}

.row h5{
    opacity: 0.5;
    font-weight:400;
}

.row:nth-child(3){
    margin-top: 0;
}

.row svg{
    height: 7.5vw;
    margin:0 4vw;
    font-family: "MaziusReview";

}

path, polyline{
    stroke: #14cf93;
}
