html{
    box-sizing:border-box;
    font-size: 62.5%;
}
body{
    padding: 0;
	margin: 0;
    background-image: url("img/pexels-michelangelo-buonarroti-8728388.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
    box-sizing: inherit;
    max-width: 100%;
}
.first{
    width: 100%;
    height: 100vh;
    text-align: center;
}

nav{
    margin: 27px auto 150px;
    position: relative;
    width: 55%;
    height: 50px;
    background-color: #34495e;
    border-radius: 8px;
    font-size: 0;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
nav a{
    line-height: 50px;
    height: 100%;
    font-size: 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: white;
    cursor: pointer;
}
nav .animation{
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    transition: all .5s ease 0s;
    border-radius: 8px;
}
a:nth-child(1){
    width: 15%;
}
a:nth-child(2){
    width: 16%;
}
a:nth-child(3){
    width: 13%;
}
a:nth-child(4){
    width: 20%;
}
a:nth-child(5){
    width: 16%;
}
a:nth-child(6){
    width: 20%;
}
nav .start-home, a:nth-child(1):hover~.animation{
    width: 15%;
    left:0;
    background-color: #1abc9c;
}
nav .start-about, a:nth-child(2):hover~.animation{
    width: 16%;
    left:15%;
    background-color: #e74c3c;
}
nav .start-web3, a:nth-child(3):hover~.animation{
    width: 13%;
    left:31%;
    background-color: black;
}
nav .start-services, a:nth-child(4):hover~.animation{
    width: 20%;
    left:44%;
    background-color: #9b59b6;
}
nav .start-contact, a:nth-child(5):hover~.animation{
    width: 16%;
    left:64%;
    background-color: #e67e22;
}
nav .start-portfolio, a:nth-child(6):hover~.animation {
    width: 20%;
    left: 80%;
    background-color: #1abc9c;
}
#loading{
    margin:27px auto 150px;


    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    fill: transparent;

    animation: draw 3s ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes draw {
    to {
        stroke-dashoffset: 0;
        fill: white;
    }
}

.btn{
    background: -webkit-linear-gradient(left, deepskyblue 10%, #34495e );
      font-size: 24px;
      padding: 10px 12px;
      transition: all 3s ease;
      text-decoration: none;
      transition-duration: 250ms;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      cursor: pointer;
      color:white;
      border: 2px solid #1abc9c;
      border-radius: 9999px;
      box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.8),
        5px 5px 10px rgba(0, 0, 0, 0.25);
  }
  .btn:hover{
      color: #404040;
      box-shadow: -1px -1px 5px rgba(255, 255, 255, 0.6),
        1px 1px 5px rgba(0, 0, 0, 0.3),
        inset -2px -2px 5px rgba(255, 255, 255, 0.6),
        inset 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  .second{
      width: 100%;
      height: 100vh;
      background-color: #000;
  }
  .header{
      display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;
  }
  .header li{
	list-style-type: none;
	display: inline-block;
	padding: 10px  25px;
      font-size: 1.5rem;
  }
 .header li a{
	color: white;
	text-decoration: none;
}
 .header li a:hover{
	color: #8958AA;
	transition: .4s;
}
 .second >div:nth-child(2){
     width: 80%;
     position: relative;
     display: flex;
     margin: auto;
     align-items: center;
     justify-content: flex-end;
 }
 .web{
     width:75%;
     height: 50vh;
     position: relative;
 }
 .web h2{
    font-size: 5rem;
	text-transform: capitalize;
	margin-bottom: 20px;
     color: white;
 }
 ul li{
     list-style-type: none;
	 display: inline-block;
 }
 .btn2{
     background: #D9D9D9;
     padding: 0 12px;
     border-radius: 18px;
     font-weight: 700;
     font-size: 1.5rem;
     line-height: 32px;
     color: lightseagreen;
     transition: all 3s ease;
     transition-duration: 250ms;
     cursor: pointer;
     box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.8),
        5px 5px 10px rgba(0, 0, 0, 0.25);
  }
   .btn2:hover{
      box-shadow: -1px -1px 5px rgba(255, 255, 255, 0.6),
        1px 1px 5px rgba(0, 0, 0, 0.3),
        inset -2px -2px 5px rgba(255, 255, 255, 0.6),
        inset 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
   .web p{
       font-weight: 700;
       font-size: 1.5rem;
       line-height: 33px;
       color: #FFFFFF;

   }
   .third{
       display: flex;
       align-content: center;
       justify-content: center;
       padding-top: 2%;

   }
   /*.video{
       min-width: 100%;
       min-height: 100vh;
       top: 0;
       bottom: 0;
   }*/
   .fourth{
        width: 100%;
       height: 100vh;
   }
   .fourth >div:first-child{
       width: 80%;
       position: relative;
       display: flex;
       margin: 5% auto 0;
       align-items: center;
       justify-content: space-between;
   }
   span{
       font-size: 3rem;
	   text-transform: capitalize;
       color: white;

   }
   .fourth >div:nth-child(2){
       width: 80%;
       height:155px;
       position: relative;
       display: flex;
       margin: 1% auto;
       padding: 10px 10px 0;
       align-items: normal;
       justify-content: space-between;
       background:#3E3E5C;
       border-radius: 0 0 10px 10px;
   }
   .fourth >div:nth-child(3){
       display: flex;
       align-content: center;
       justify-content: center;
   }
   tbody>tr{
       margin: 20px 0;
   }
   tr td{
       font-size: 1.5rem;

   }


