@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins';
}
/* custom scroll bar */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::selection{
  background: rgb(0,123,255,0.3);
}
.content{
  max-width: 1250px;
  margin: auto;
  padding: 0 30px;
}
.navbar{
  position: fixed;
  width: 100%;
  z-index: 2;
  padding: 25px 0;
  transition: all 0.3s ease;
}
.navbar{
  background-color: #24262B;
  padding: 10px 0;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
}
.navbar .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo img {
  color: #fff;
  width: 60px;
}
.navbar .menu-list{
  display: inline-flex;
}
.menu-list li{
  list-style: none;
}
.menu-list li a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.10em;
  
  display: inline-block;
  padding: 5px 15px;
  position: relative;
}
.menu-list li a:hover {
  color: ;
}
 .menu-list li a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: lightblue;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.menu-list li a:hover:after {
  color:blue;
  width: 100%; 
  left: 0;
}
.icon{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.menu-list .cancel-btn{
  position: absolute;
  right: 30px;
  top: 20px;
}

section{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/5.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
/*.about{
    background-size: 80%;
    background-color: #fdfdfd;
    overflow: hidden;
    padding: 40px 0;
}*/
.inner-section{
    margin-top: 50px;
    width: 90%;
    background-color: #f3f2f2;
    padding: 100px;
    box-shadow: 10px 10px 8px rgba(0,0,0,0.3);
}
.inner-section h1{
    margin-bottom: 10px;
    text-align: center;
    font-size: 45px;
    font-weight: 900;
    color:
}
.inner-section h2{
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color:
}
.text{
    font-size: 15px;
    color: #545454;
    text-align: justify;
    margin-bottom: 40px;
}
.skills button{
    font-size: 20px;
    text-align: center;
    letter-spacing: px;
    border: none;
    border-radius: 20px;
    padding: 8px;
    width: 200px;
    background-color:#408BF4;
    color: white;
    cursor: pointer;
}
.skills button:hover{
    transition: 1s;
    background-image:-webkit-linear-gradient( 0deg, rgb(192,97,226) 0%, rgb(55,143,246) 100%);
    background-color: white;
}
.team-section{
  background-color: #f3f2f2;
  min-height: 100vh;
  padding:70px 15px 30px;
}

.container{
  max-width: 1170px;
  margin:auto;
}

.row{
  display: flex;
  flex-wrap: wrap;
}

.team-section .section-title{
  flex-basis: 100%;
  max-width: 100%;
  margin-bottom: 70px;
}

.team-section .section-title h1{
  font-size: 40px;
  text-align: center;
  margin:0;
  color: #ffffff;
  font-weight: 700;
}

.team-section .section-title p{
  font-size:16px;
  text-align: center;
  margin:15px 0 0;
  color:#ffffff;
}
.team-section .team-items{
  
  flex-basis: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.team-section .team-items .item{
 flex-basis: calc(25% - 30px);
 max-width: calc(25% - 30px);
 transition: all .5s ease;
 margin-bottom: 40px;
}
.team-section .team-items .item img{
  display: block;
  width: 100%;
  border-radius: 8px;
}

.team-section .team-items .item .inner{
  position: relative;
  z-index: 11;
  padding:0 15px;
}
.team-section .team-items .item .inner .info{
  background-color:#408BF4;
  text-align: center;
  padding: 20px 15px;
  border-radius:8px;
  transition: all .5s ease;
  margin-top: -40px;
}
.team-section .team-items .item:hover  .info{
    transform: translateY(-20px);
}
.team-section .team-items .item:hover{
 transform: translateY(-10px);  
}
.team-section .team-items .item .inner .info h5{
  margin:0;
  font-size: 18px;
  font-weight: 600;
  color:#ffffff;
}
.team-section .team-items .item .inner .info p{
  font-size: 16px;
  font-weight: 400;
  color:#c5c5c5;
  margin:10px 0 0;
}

.team-section .team-items .item .inner .info .social-links{
  padding-top: 15px;
}

.team-section .team-items .item .inner .info .social-links a{
  display: inline-block;
  height: 32px;
  width: 32px;
  background-color: #ffffff;
  color:#408BF4;
  border-radius: 50%;
  margin:0 2px;
  text-align: center;
  line-height: 32px;
  font-size:16px;
  transition: all .5s ease;
}

.team-section .team-items .item .inner .info .social-links a:hover{
  box-shadow: 0 0 10px #000;
}



/*footer css*/
.container{
  max-width: 1170px;
  margin:auto;
}
.row{
  display: flex; 
  flex-wrap: wrap;
  justify-content: space-around;
}
ul{
  list-style: none;
}
.footer{
  background-color: #24262b;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col p{
  color: #bbbbbb;
}
.footer-col h4{
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before{
  content: '';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: #00999c;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}
.footer-col ul li a{
  font-size: 16px;
  text-transform:;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin:0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
  color: #24262b;
  background-color: #00999c;
}
/*footer css end*/

.copyright {
  background: #111;
  padding: 15px 23px;
  color: #fff;
  text-align: center;
}
.copyright span a {
  color: #fff;
  text-decoration: none;
}
.copyright span a:hover {
  text-decoration: none;
}

@media (max-width: 1230px) {
  .content{
    padding: 0 60px;
  }
}
@media (max-width: 1100px) {
  .content{
    padding: 0 40px;
  }
}
@media (max-width: 900px) {
  .content{
    padding: 0 30px;
  }
}
@media (max-width: 868px) {
  body.disabled{
    overflow: hidden;
  }

  .icon{
    display: block;
    color: #000;
  }
  .menu-list .cancel-btn{
    color: white;
  }
  .icon.hide{
    display: none;
  }
  .navbar .menu-list{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background: #222;
    transition: all 0.3s ease;
  }
  .navbar.sticky{
  background: none;
}

  .navbar.show .menu-list{
    left: 0%;
  }
  .navbar .menu-list li{
    margin-top: 45px;
  }
  .navbar .menu-list li a{
    font-size: 23px;
    margin-left: -100%;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .navbar.show .menu-list li a{
    margin-left: 0px;
  }
  .about{
        padding: 0;
    }
    .inner-section{
        margin-top: 15px;
        padding: 60px;
        width: 100%;
        height: 100%
    }
    .inner-section{
    justify-content: center;
  }
    .services{
        padding: 0;
    }
    .inner-section-services{
       background-color: #e3e1e1;
        padding: 60px;
        width: 100%;
        height: 100%
    }
    .skills button{
        font-size: 18px;
        padding: 5px;
        margin: 5px;
        width: 160px;
      }
      .section-padding{
        padding-top: 50px;
        padding: 10px;
      }
      .service{
      width: 50%;
      width: calc(100% / 1);
  }

    .footer-col{
    width: 100%;
    margin-bottom: 30px;
    }


}
@media (max-width: 380px) {
  .navbar .logo a{
    font-size: 27px;
  }
}



/*responsive*/
@media(max-width: 991px){
  .team-section .team-items .item{
      flex-basis: calc(50% - 30px);
       max-width: calc(50% - 30px);

   }
}

@media(max-width: 767px){
  .team-section .team-items .item{
      flex-basis: calc(100%);
       max-width: calc(100%);

   }
}