*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: gilroy;
}
html,
body {
  height: 100%;
  width: 100%;
 } 

 #main {
  width: 100%;
}  

 #loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #111;
  color: white;
  z-index: 999999999999;
}
#loader #topheading {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0);
}
#topheading h5 {
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 300;
}
#loader h1 {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4vw;
  font-weight: 500;
} 
#loader h1 .jha {
  font-family: "Times New Roman", Times, serif;
  color: rgb(80, 158, 142);
  font-style: italic;
  letter-spacing: -0.2vw;
}
.reveal .parent {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-y: hidden;
}
.reveal .parent .child {
  display: block;
}
.child span {
  display: inline-block;
}
#green {
  z-index: 999999999999;

  position: absolute;
  top: 100%;
  width: 100%;
  background-color: rgb(80, 158, 142);
}
#home {
  width: 100%;
  min-height: 150vh;
  background: color #f0f0f0;
}



#home #nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  width: 100%;
  height: 100px;
}
#nav a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 12px;
  color: black;
}
#nav a .line {
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: black;
}
#nav #line1 {
  left: 0;
  width: 0%;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
  transition-delay: 0.1s;
}
#nav #line2 {
  right: 0;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
  width: 100%;
}
#nav a:hover #line2 {
  width: 0;
}
#nav a:hover #line1 {
  width: 100%;
}

#home .row {
  margin-top: 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0vw 7vw;
  color: #333;
  padding-right: 12vw;
  line-height: 1.2;
}
.row h1 {
  font-size: 12vw;
  font-weight: 500;
}
.row .text {
  margin-top: 0vw;
}
.row h5 {
  opacity: 0.6;
  font-size: 11px;
  font-weight: 600;
}
.row:nth-child(3) {
  margin-top: 0;
}
.row svg {
  height: 8vw;
  margin: 0 2.5vw;
}
path,
polyline {
  stroke: #14cf93;
}

#imagery {
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10vw;
  width: 100%;
  padding: 7vw 7vw;
}
#imagery #imglef {
  width: 40%;
  height: auto;
}
#imglef h1 {
  font-size: 2.4vw;
  font-weight: 500;
  letter-spacing: 1px;
  color: #333;
}
#imglef h1 span {
  font-family: "Times New Roman", Times, serif;
  color: #14cf93;
  font-style: italic;
  letter-spacing: -0.1vw;
}
#imgrig {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60%;
  height: 300px;
  transition: transform 0.5s ease;

}

#imgrig .imgcntnr {
  position: absolute;
  width: 27vw;
  height: 40vw;
  border-radius: 1vw;
  filter: grayscale();
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
  z-index: 9;
}
#imgrig .imgcntnr:hover {
  filter: grayscale(0);
  cursor: pointer;
}

#imgrig .imgcntnr:nth-child(1) {
  transform: translate(-40%, -8%) rotate(-20deg);
  background-size: cover;
  background-position: center;

  background-image: url(https://abhishekjha.me/card1.a0552dbc.png);
}
#imgrig .imgcntnr:nth-child(2) {
  transform: translate(-15%, 0%) rotate(-15deg);
  background-image: url(https://abhishekjha.me/card2.cfc820ab.png);
  background-size: cover;
  background-position: center;
}
#imgrig .imgcntnr:nth-child(3) {
  transform: translate(20%, 10%) rotate(-5deg);
  background-image: url(https://abhishekjha.me/card3.b705d81b.png);
  background-size: cover;
  background-position: center;
}
#work {
  transition: background cubic-bezier(0.19, 1, 0.22, 1) 2s;
  padding-top: 60vh;
  position: relative;
  width: 100%;
  background-color: #f2f2f2;
  
}
#work::before {
  position: absolute;
  top: -45px;
  content: "";
  width: 100%;
  height: 18vh;
  transform: rotate(-180deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(https://abhishekjha.me/rip.f6d7c4dd.svg);
}
#work .workrow {
  padding: 0 12vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workrow h1 {
  display: flex;
  align-items: baseline;
  font-size: 8vw;
  font-weight: 600;
}
.workrow h1 .mini {
  font-size: 2vw;
  font-weight: 500;
  margin-left: 5vw;
}
.workrow h1 span {
  font-family: "Times New Roman", Times, serif;
  color: #14cf93;
  font-style: italic;
  letter-spacing: -0.1vw;
}