@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body{
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    color: #001f38;
}
.navbar{
    background-color: transparent;
    padding: 10px;;

}
.navbar-toggler{
  border:1px solid #fff !important;
}


.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}




.navbar.scrolled {
    background-color: #166bca !important;
    transition: background-color 200ms linear;
    
  }
.nav-item{
    padding-left: 20px;
    padding-right: 20px;
}

.nav-link{
    color:rgba(255, 255, 255, 0.7);
    font-size: large;
    font-weight: 500;
}
.active{
 color:#fff !important;
}
/* brand logo image css for different screens */
.brand-logo{
    width:140px ;
    /* height: 80px; */
}
  /* On screens that are 992px or less */
  @media screen and (min-width: 992px) {
    .brand-logo{
        width:140px ;
        /* height: 80px; */
    }
    .container-main{
        margin-left:90px;
    }
    .headsmall{
      font-size: 3rem;
      font-weight: 400;
  }
  .headmedium{
      font-size: 4rem;
      font-weight: 700;
  }
  .headlarge{
      font-size: 5.5rem;
      font-weight: 900;
      
  }
  }
  
  /* On screens that are 600px or less */
  @media screen and (max-width: 600px) {
    .brand-logo{
        width:140px ;
        /* height: 80px; */
    }
    .headsmall{
      font-size: 2rem;
      font-weight: 400;
  }
    .headmedium{
      font-size: 2.8rem;
      font-weight: 700;
  }
    .headlarge{
      font-size: 3.5rem;
      font-weight: 900;
      
  }
  }

.bg-primary{
 background-color: #0779e4 !important;
 background: -webkit-linear-gradient(to left, #89C4FB, #2688e9);  

}
.bg-lightblue{
    background-color: #89C4FB   ;
}
.text-primary{
    color:#166bca;
}
.btn{
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;    
}
.btn-primary {
    background: #166bca !important;
    border: 1px solid #166bca !important;
    color: #fff !important;
}

.btn-secondary{
    background: #fff !important;
    border: 1px solid #fff !important;
    color: #166bca !important;
}
.main-bg{
    background-color: #0779e4;
    /* background-image: url('../img/b1.PNG'); */
    background-repeat: no-repeat;
    background-size: cover;
}


.subhead {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.f-small{
    font-size: 12px;;
}

.contact-radius{
  border-radius: 2rem;
}

/* (A) SPEECH BOX */
.speech {
    /* (A1) FONT & COLORS */
    font-size: 1.2em;
    color: #066bca;
    background: #fff;
  
    /* (A2) DIMENSIONS */
    padding: 5px;
    border-radius: 5px;
    max-width: 120px;
  }
  
  /* (B) USE ::AFTER TO CREATE THE "CALLOUT" */
  .speech::after {
    display: block; width: 0; content: "";
    border: 15px solid transparent;
  }
   
  /* (C) "CALLOUT" DIRECTIONS */
  .speech.up::after {
    border-bottom-color: #fff;
    border-top: 0;
  }
  .speech.down::after {
    border-top-color: #fff;
    border-bottom: 0;
  }
  .speech.left::after {
    border-right-color: #fff;
    border-left: 0;
  }
  .speech.right::after {
    border-left-color: #fff;
    border-right: 0;
  }
  
  /* (D) POSITION THE CALLOUT */
  .speech {
    position: relative;
    margin: 30px;
  }
  .speech::after { position: absolute; }
  .speech.up::after {
    top: -15px; left: calc(50% - 15px);
  }
  .speech.down::after {
    bottom: -15px; left: calc(50% - 15px);
  }
  .speech.left::after {
    left: -15px; top: calc(50% - 15px);
  }
  .speech.right::after {
    right: -15px; top: calc(50% - 15px);
  }
  

.typewrite{
    text-decoration: none;
    color:#fff;

}


/* tickmark in circle */
.tickmark-circle {
    position: relative;
    width: 35px;
    height: 35px;
    background-color: #166bca;
    border-radius: 50%;
  }
  
  .tickmark-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23fff' stroke-width='5' fill='none' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 20px;
    background-position: center; 
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }
/* list style  */
.service-item {
    list-style: none;
    counter-reset: my-awesome-counter;
  }
  .service-item-list {
    /* counter-increment: my-awesome-counter; */
    margin: 0.25rem;
  }
  .service-item-list::before {
    content: '-';
    background: #662974;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-block;
    line-height: 2rem;
    color: white;
    text-align: center;
    margin-right: 0.5rem;
  }

/* moving shapes background */
.area{
    background: #2688e9;  
    background: -webkit-linear-gradient(to left, #89C4FB, #2688e9);  
    width: 100%;
    height:100vh;
    border-radius: 0;
   
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(148, 182, 241, 0.4);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.clickable{
  text-decoration: none;
}
.clickable-card {
  display: block;
  /* max-width: 400px; */
  margin-inline: auto;
  /* border-radius: 16px; */
  overflow: hidden;
  box-shadow: none;
  background: #fff;
  transform-origin: center center;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
  color: #001f38;
}

.clickable-card h6,
.clickable-card .read-more {
  transition: color 0.4s ease-in-out;
  
}

.clickable-card img {
  transform-origin: center;
  transition: transform 0.4s ease-in-out;
}

.clickable-card:hover .read-more,
.clickable-card:focus .read-more,
.clickable-card:hover h6,
.clickable-card:focus h6 {
  color: #28666e;
}

.clickable-card:hover img,
.clickable-card:focus img {
  transform: scale(1.1);
}

.article-body {
  padding: 24px;
}

.clickable-card h2 {
  margin: 0 0 18px 0;
  font-family: "Bebas Neue", cursive;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  transition: color 0.3s ease-out;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}





#footer{
  background-color: #166bca;
  color: #ebedef;
}

