/* btn animations  */
.custom-btn {
    width: 200px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
  }

  
  .btn-3 {
    background: rgb(0,172,238);
  background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
    
    height: 40px;
    line-height: 42px;
    padding: 0;
    border: none;
    
  }
  .btn-31 {
    background: rgb(0,172,238);
  background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
    
    height: 40px;
    line-height: 42px;
    padding: 0;
    border: none;
    
  }
  .btn-3 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .btn-3:before,
  .btn-3:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
     background: rgba(2,126,251,1);
    transition: all 0.3s ease;
  }
  .btn-3:before {
    height: 0%;
    width: 2px;
  }
  .btn-3:after {
    width: 0%;
    height: 2px;
  }
  .btn-3:hover{
     background: transparent;
    box-shadow: none;
  }
  .btn-3:hover:before {
    height: 100%;
  }
  .btn-3:hover:after {
    width: 100%;
  }
  .btn-3 span:hover{
     color: rgba(2,126,251,1);
  }
  .btn-3 span:before,
  .btn-3 span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
     background: rgba(2,126,251,1);
    transition: all 0.3s ease;
  }
  .btn-3 span:before {
    width: 2px;
    height: 0%;
  }
  .btn-3 span:after {
    width: 0%;
    height: 2px;
  }
  .btn-3 span:hover:before {
    height: 100%;
  }
  .btn-3 span:hover:after {
    width: 100%;
  }




.navbar{
    background-color: #8DCBFE;
    padding: 0 90px;
}
.navbar-brand{
    justify-content: space-between !important;
}
.navbar-collapse{
    justify-content: center;
}
.navbar-brand>img{
    width: 100px;
}
.nav-link{
    font-size: 14px;
    font-weight: 600;
    color: rgb(31, 30, 30);
}
.nav-link:hover{
   border-bottom: 2px solid #072BD4;

}
.navbar-btn{
    display: flex;
    justify-content: flex-end;
    border: none;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #072BD4;
    color: white;
}


/* banner  */
.carousel-bg1{
    background-image: url("../images/banner-1.jpg");
    background-size: cover;
    opacity: 0.7;
    height: 90vh;
    
    animation-name: zoomOut;
    animation-duration:20s;
}
.carousel-bg2{
    background-image: url("../images/banner-2.jpg");
    background-size: cover;
    opacity: 0.7;
    height: 90vh;
    
    animation-name: zoomOut;
    animation-duration:20s;
}
.carousel-bg3{
    background-image: url("../images/banner-3.jpg");
    background-size: cover;
    opacity: 0.7;
    height: 90vh;
    
    animation-name: zoomOut;
    animation-duration:20s;
}
.carousel-text{
    text-align: center;
    margin-left: 33%;
    margin-top: -450px;
    position: absolute;
    z-index: 10;
    font-family: 'DM Serif Display', serif;
    
}
.carousel-text>h4{
    font-size: 60px;
    color: #072BD4;
}
.carousel-text>h1{
    color: white;
    font-size: 82px;
}
.carousel-text>button{
    
    
}

@keyframes zoomOut{
from{
    transform: scale(1);
}
to{
    transform: scale(1.2);
}
}

/* about section  */
.about-wrapper{
    margin: 80px auto;
}
.about-img1{
    width: 300px;
}
.about-img2{
    width: 300px;
    margin-top: -200px;
    margin-left: -200px;
    border-radius: 50%;
    border: 10px solid #8DCBFE;
}
.about-text{
    width: 500px;
   
}
.about-text>h1{
    margin-bottom: 40px;
    font-family: 'DM Serif Display', serif;
}
.about-text>h1>span{
    color: #8DCBFE;
}
.about-text>p{
    text-align: justify;
}
.about-text>button{
    
}
/* approach section  */
.approach-wrapper{
    background-color: #8DCBFE;
    width: 85%;
    display: flex;
    border-radius: 0px 180px 180px 0px;
    padding: 20px 20px;
}
.ap-img{
    border-radius: 50%;
    

}
.ap-text{
    text-align: justify;
    padding: 50px;
     
    
}
.ap-text>h1{
    font-family: 'DM Serif Display', serif;
}
.ap-text>p{
    font-size: 20px;
}

/* services section  */
.services-wrapper{
    text-align: center;
    margin: 80px 0;
}
.services-wrapper h1{
    font-family: 'DM Serif Display', serif;
}
.service-card{
    text-align: justify ;
    
    height: 420px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    padding: 0 20px;
}

.service-card>h3{
    text-align: center ;
}
.service-card>p{
    text-align: justify;
}
/* card animations  */
.service-card{
    position: relative;
    
}
   .service-card .overlay{
    position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to top, #8DCBFE 0%, #072BD4 100%);
  
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: all 0.4s ease-in-out 0s;
   }
   .service-card .image2{
    display: block;
  width: 100%;
  height: auto;
   }
   .service-card:hover .overlay {
    height: 100%;
    cursor: pointer;
  }
  .text3{
    
    color: white;
    font-size: 20px;
    position: absolute;
    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }

  /* footer section  */
  .footer{
    background-color: rgb(30, 29, 29);
    color: white;
  }
  .footer-logo{
    width: 150px;
  }
  .footer-left>hr{
    margin-left: 20px;
    width: 150px;
    border: 5px solid #8DCBFE;
    opacity: 1;
    border-radius: 20px;
  }
  .footer-mid>hr{
    margin-left: 20px;
    width: 150px;
    border: 5px solid #8DCBFE;
    opacity: 1;
    border-radius: 20px;
  }
  .footer-mid{
   padding-left: 100px;
  }
  .footer-mid>ul{
    padding-left:10px !important;
  }
  .footer-mid>ul>li{
    margin-bottom: 7px;
    list-style: none;
    font-weight: 500;
  }
  .footer-mid>ul>li:hover{
   color: #8DCBFE;
   cursor: pointer;
  }
  .footer-right>hr{
    margin-left: 20px;
    width: 150px;
    border: 5px solid #8DCBFE;
    opacity: 1;
    border-radius: 20px;
  }
  .footer2{
    background-color: rgb(15, 15, 15);
    color: rgb(205, 199, 199);
   padding: 10px 0;
   font-size: 14px;
  }


