@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');


html{
    scroll-behavior: smooth;
    
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PT Sans', sans-serif;
    
}

ul{
    list-style: none;
    text-decoration: none;
}
li{
    text-decoration: none;
}
a{
    text-decoration: none;
    color: #FFF;
}
a:hover{
    color: #FFF9;
}
#banner nav{

    background: #071A2D;
    
}


.desc-slider{
    margin-top:10px;
    color: #FFF;
    text-align: center;
}
.desc-slider p{
    margin-left: 25%;
    margin-right: 26%;
    
}


#banner{
  
    background-size: cover;
    background-position: center;
    height: 100%;

    position: relative;
    overflow: hidden;
    color:#1F1717;
    justify-content: center;

    

}



.logo{
    width: 50px;
margin: 2px;


}


.banner-text{
 text-align: center;
 color:rgb(255, 255, 255);
 padding-top: 180px;
}

.banner-text h1{
    font-size: 60px;
    text-shadow: 1px 5px 4px black;
   }


   .banner-text p{
    font-size: 25px;
    font-style: italic;
    text-shadow: 1px 5px 4px black;
   }


.banner-btn{
    margin: 70px auto 0;
}


.banner-btn a{
    text-shadow: 1px 1px 1px black;
      width: 170px;
      text-decoration: none;
      display: inline-block;
      margin: 10px 0;
      padding: 12px 0;
      color: #fff;
      border: .5px solid #fff;
      position: relative;
      z-index: 1;
      transition: color 0.5s;
}



.banner-btn a span{

    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
 
}

.banner-btn a:hover span{
    width: 100%;
  
}

.banner-btn a:hover {
    color: black;
}










/*  ABout */

#about{
    background:#071A2D;
   
    background-size: cover;
    background-attachment: fixed;
    
    width: 100%;
    padding: 40px 0;

}

.title-text{
    text-align: center;
    padding-bottom: 70px;
  
}

.title-text p{
    margin: auto;
    font-size: 30px;
    color:#00C8EE;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-shadow: 1px 2px 2px black;
}




.about-box{
 
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}


.about-box .about{

    width: 100%;
    min-width: 300px;
    align-self: flex-start;
    text-align: left;
    line-height: 30px;
    letter-spacing: 1px;
    color: rgb(255, 255, 255);

}

.about h1{
    padding: 0 20px;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color:#00C8EE;
    text-shadow: 1px 1px 1px black;
}

.about-desc{
  
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.about-desc p{
    
    padding: 0 15px;
 text-align: initial;
 font-size: 16px;
}


.about-desc ul{
    font-size: 16px;
    list-style-type:square;
    padding: 0 25px;
}





/* Service */


#service{
    width: 100%;
    padding:70px 0;
    background:#efefef;
}

.title-text h1{
    font-size: 30px;
    margin: 0%;
    color:#00C8EE;
    text-shadow: 1px 1px 1px black;

}
.service-box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.single-service{
    width: 90%;
    max-width: 310px;
    text-align: center;
    border-radius: 7px;
    padding: 5px;
    color: #fff;
    position: relative;
}



.single-service img{
    width: 100%;
    height: 180px;
    border-radius: 7px;
}

.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.1),#101520);
    opacity: 0;
    transition: 1s;
}

.single-service:hover .overlay 
{
opacity: 1;
}

.service-desc{
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: 1s;
}
hr{
    background: #fff;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}

.service-desc p{
    font-size: 14px;
    
}
.single-service:hover .service-desc{
    bottom: 40%;
    opacity: 1;
}



@media  screen  and(max-width:770px){
    .title-text h1{
        font-size: 30px;
    }
 
    .service-desc p{
        font-size: 12px;
    }
    hr{
        margin: 5px auto;
    }
    .single-service:hover .service-desc{
        bottom: 25% !important;
    }
    }




    /*  contact */

    #footer{
        background: #071A2D;
        position: relative;
        display: flex;
        width: 100%;
        align-items: stretch;
        justify-content: center;
        flex-direction: column;
        color:#FFF;
    }

    .footer-row{
        width: 100%;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .footer-row > * {
        width: 90%;
        padding: 8px;
        margin-bottom: 20px;
        text-align: center;
        max-width: 350px;
    }



  .footer-logo{
      height: 30%;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-around;
      flex-wrap: wrap;
      padding: 5px;
  }
  .footer-img{
    width: auto;
    height: 100%;
    padding: 4px;
    max-height: 200px;
  }
    

    .footer-row p{
        line-height: 35px;
    }

     .footer-left .fas , .footer-right .fas {
         
         font-size: 20px;
         color: #00C8EE;
         margin:10px;
     }

    


     .footer-center ul li{
        list-style:none;
        margin: 5px ;
        line-height: 35px;
    }

    .footer-center ul li a{
        text-decoration: none;
        color: rgb(255, 255, 255);
    }


    .footer-center , .footer-left,  .footer-right{
        padding-top: 70px;
    }
   


  .social-links{
      text-align: center;
      margin-bottom: 15px;
  }

  .social-links .fab{
      height: 40px;
      width: 40px;
      font-size: 20px;
      line-height: 40px;
      border: 1px solid #00C8EE;
      margin:40px 5px 0;
      color: #00C8EE;
      cursor: pointer;
      transition: 0.s;
  }


  .social-links .fab:hover{
      background: #00C8EE;
      color: rgb(0, 0, 0);
      transform:translateY(-7px);
  }

  .social-links p{
      font-size: 12px;
      margin-top:5px;
  }

 

 





















