@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  
} 

body,html{
    background-color: #eff5fd;
    overflow-x: hidden;
}
nav{
  display: flex;
  height: 80px;
  
  max-width: 1300px;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
  margin: 0 auto;
}

nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  z-index: 10;
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: #2563eb;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: #eff5fd;
  background: #2563eb;
}
nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}

.logo{
    width: 250px;
    margin-bottom: -6px;
}

.container{
    max-width: 1100px;
    margin: 2em auto;
}
.flexbox{
    width: 100%;
    display: flex;
    justify-content: space-between;

}

.row{
    width: 50%;
    position: relative;
}
.row img{
    width: 100%;
}
.bannerTitle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.about{
    text-align: center;
    margin-top: 4em;
}

.services{
  width: 100%;
  background-color: #93c5fd;
  padding:1em;
}
.services-flexbox{
  display: flex;
  justify-content: space-evenly;
  margin: 2em 0;
}
.srvc-row{
 display: flex;

}

.srvc-row svg{
  color: #3B82F6;
}
.srvc-row p{
  padding: 0;
  margin-top:10px;
  text-indent: 5px;
  text-align: center;
  word-break: break-word;
  color:#1E3A8A;
}

.jobs{
  margin:2em 0;
}
.section{
  width: 30%;
  position: relative;
  background-color: #DBEAFE;
  padding:5em 1em;
  margin:4em 0;
  box-shadow: 2px 3px 10px #000;
}
.section svg{
  color:#1E3A8A;
  
}

.icon-holder{
  background-color:#BFDBFE ;
  padding: 1em;
 width:110px;
 height: 110px;
 border-radius: 50%;
 position: absolute;
 top:-4em;
 left:1em;
}

.box{
  background-color:#BFDBFE ;
  padding: 1.5em;
  box-shadow: 2px 3px 10px #000;
}

.bottom{
margin:10em auto;
}


.apiform{
  width: 50%;
  background-color: rgb(147, 197, 253,0.3);
  padding: 2em 4em;
  box-shadow: 2px 2px 10px #000;
  
}

#mc_embed_signup{
  box-shadow: 2px 2px 5px #191919;
  width: 100%;
}
#mc_embed_signup{
  background:#fff; 
  clear:left; 
  font:14px Helvetica,Arial,sans-serif;  
  width:70%;
}

footer{
  background-color: #1E3A8A;
  padding: 1em;
  color: white;
  text-align: center;
  margin-top: 4em;
}
@media (max-width: 1056px){
  .logo{
    width: 150px;
  }
}
@media (max-width: 1000px){
  nav{
    padding: 0 25px 0 0;
    margin-top: 2em;
  }
  
}
@media (max-width: 925px) {
  
  .banner{
    padding-top: 4em;
  }
  header{
    margin-top: -2.1em;
    padding-top: 0;
    width: 100%;
    position: fixed;
    z-index: 10;
  }
    nav{
        background-color: #1e3a8a;
        
    }
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 75px;
    left: -100%;
    background: #3b82f6;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color:white;
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: cyan;
  }
}