*
{
    margin: 0;
    padding: 0;
    font-family: Century Gothic;
}

header
{
    background-image:linear-gradient(rgba( 0,0,0,0.5),rgba( 0,0,0,0.5)), url(bg.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
}

ul
{
    float: right;
    list-style-type: none;
    margin-top: 25px;
}

ul li
{
    display: inline-block;
}

ul li a
{
    text-decoration: none;
    color: #fff;
    padding: 5px 20px;
    border: 1px solid transparent;
    transition: 0.85s ease;
}

ul li a:hover
{
    background-color: #fff;
    color: #000;
}

ul li.active a
{
    background-color: #fff;
    color: #000;
}

.logo img
{
    float: left;
    width: 150px;
    height: auto;
}

.main
{
    max-width: 1200px;
    margin: auto;
}
.title
{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.title span
{
    text-transform: uppercase;
    display: block;
}

.txt1
{
    color: white;
    font-size: 60%;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 0%;
    position: relative;
    
    animation: text 5s 1;
}

.txt2
{
    font-size: 100%;
    letter-spacing: 8px;
    color: cornflowerblue;

}

@keyframes text
{
    0%{
        color: black;
        margin-bottom: -40%;

    }
    30%{
        letter-spacing: 25px;
        margin-bottom: -40%;

    }
    85%{
        letter-spacing: 8px;
        margin-bottom: -40%;
    }
}

.button
{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.btn1
{
    border: 1px solid #fff;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.6s ease;
}

.btn1:hover
{
    background-color: #fff;
    color: #000;
}

.table
{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%); 
    
}

.lng
{
    width: 120px; 
    color: brown;
}

.dp
{
    width: 120px;
    color: orangered;
}

.ml
{
    width: 120px;
    color: dodgerblue;
}

.ai
{
    width: 120px;
    color: aqua;
}

.cl
{
    color: white;
}

.jl
{
    color: yellow;
}

.pl
{
    color: blueviolet;
}

.cdp
{
    color: white;

}

.cml
{
    color: white;
}

.cai
{
    color: white;

}

.jdp
{
    color: yellow;
}

.jml
{
    color: yellow;
}

.jai
{
    color: yellow;
}
.pdp
{
    color: blueviolet;
}

.pml
{
    color: blueviolet;
}
.pai
{
    color: blueviolet;
    
    
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/



.middle{
  position: absolute;
  top: 90%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.btn{
  display: inline-block;
  width: 90px;
  height: 90px;
  background: #f1f1f1;
  margin: 10px;
  border-radius: 30%;
  box-shadow: 0 5px 15px -5px #00000070;
  color: #3498db;
  overflow: hidden;
  position: relative;
}
.btn i{
  line-height: 90px;
  font-size: 26px;
  transition: 0.2s linear;
}
.btn:hover i{
  transform: scale(1.3);
  color: #f1f1f1;
}

.btn::before{
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: #3498db;
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}
.btn:hover::before{
  animation: aaa 0.7s 1;
  top: -10%;
  left: -10%;
}
@keyframes aaa {
  0%{
    left: -110%;
    top: 90%;
  }50%{
    left: 10%;
    top: -30%;
  }100%{
    top: -10%;
    left: -10%;
  }
}
