
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Video Css */
/* Video Css */
/* Video Css */

*{
  transform: none;
}
body{
    background-color: white !important;
    font-family: Lato ;
}
  

/* Animated Slider Courasel */
/* Animated Slider Courasel */
/* Animated Slider Courasel */




/* carousel */

.slider{
    width: 100vw;
    height: 100vh;
    margin-top: 50px;
    overflow: hidden;
    position: relative;

}


.slider .list .item{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 99;
    transition: 2s;
    
}

@media screen and (max-width:450px){
  .slider .list .item{
    height: 180px;
    width: 135px;

  }
}

.list .item:nth-child(1) .bluecard{
  width: 100%;
  height: 100%;
  background-color: #012f6a;
  opacity: 60%;
}

.slider .list .item:nth-child(1){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.slider .list .item:nth-child(2){
    left: 67%;
}

.slider .list .item:nth-child(3){
    left: calc(67% + 200px);
}







.list .item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}

@media screen and (max-width:750px) {
  .list .item .content{
    padding-right: 10px;
    max-width: 95%;
  }
}

.list .item:nth-child(1) .content{
    display: block;
}

.content .title{
    font-size: 50px;
    text-transform: uppercase;
    color: rgb(238, 89, 34);
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);
    
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn{
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button{
    padding: 10px 20px;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
    background: transparent;
    transition: 0.3s;
    color: white;
    border-radius: 5px;
    
}

.content .btn button:nth-child(1){
    margin-right: 15px;
}


@keyframes animate {
    
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */






/* next prev arrows */

.arrows{
    position: absolute;
    top: 90%;
    left: 5%;
    z-index: 99;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #012f6a;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.arrows button:hover{
    background: #fff;
    color: #000;
}


/* time running */
.slider .timeRunning{
    position: absolute;
    z-index: 99;
    width: 0%;
    height: 4px;
    background-color: #012f6a;
    left: 0;
    top: 0;
    animation: runningTime 4s linear 1 forwards;
}

@keyframes runningTime {
    
    from{width: 0%;}
    to{width: 100%;}

}

@media screen and (max-width: 500px){
  .slider{
    height: 70vh;
  }
}

/* Responsive Design */

@media screen and (max-width: 999px){
    
  

    .list .item .content{
        left: 20px;
        right: 20px;
    }

    .content .title, .content .name{
        font-size: 30px;
    }

    .content .des{
        font-size: 16px;
    }

}

@media screen and (max-width: 690px){
  

    .list .item .content{
        top: 40%;
        padding-right: 20px !important;
    }

    .content .title, .content .name{
        font-size: 25px;
    }

    .content .btn button{
        padding: 10px 15px;
        font-size: 14px;
    }
    .arrows{
      top: 90%;
      left: 5%;
    }
}

  /* why-us  */
  /* why-us  */
  /* why-us  */
  /* why-us  */
  
  .why-us{
    padding-top: 20px;
    border-top: 1px solid rgb(237, 230, 230);
   
    padding-bottom: 20px;
  }
  .why-us h1{
    color: rgb(238, 89, 34);
    text-align: left;
  }
  .why-us h2{
    color: #012f6a;
    text-align: left;
    font-weight: bold;
    padding-left: 10%;
    font-size: 28px;
    margin: 0 !important;
    padding: 0;
  }
    
  .why-us-content{
    font-size: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
 


/* Evolution Design */


.block-cont{
  display: block;
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(244, 240, 240);
  
}

.image-row {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: auto;
  height: 60vh;
 
}

.image {
  position: absolute;
  display: block;
}

.s_img1 {
  width: 33%;
  bottom: 0%;
  left: 0%;
  height: 75%;
  border-left: 3px solid #012f6a;

}

.s_img2 {
  width: 33%;
  bottom: 0%;
  left: 27%;
  height: 88%;
}

.s_img3 {
  width: 34%;
  bottom: 0%;
  left: 60%;
  height: 100%;
  border-right: 3px solid rgb(238,89,34);

}
.dumbox{
  position: absolute;
  background-color: rgb(147, 145, 145);
  border-bottom-right-radius: 10px;
  z-index: 10;
}
.whitebox{
  position: absolute;
  background-color: rgb(255, 255, 255);
  z-index: 15;
}

.whitebox,.dumbox,.colorbox,.stbox{
  border: none !important;
}

.dumbox1{
  width: 13%;
  height: 5%;
  top: 45%;
  left: 0%;
  background-color: #012f6a;
}
.whitebox1{
  width: 13%;
  height: 20%;
  top: 25%;
  left: 0%;
}



.dumbox2{
  width: 14%;
  height: 20%;
  top: 20%;
  left: 13%;
  background-color: #012f6a;
}
.whitebox2{
  width: 14%;
  height: 15%;
  top: 20%;
  left: 13%;
}


.dumbox3{
  width: 17%;
  height: 15%;
  top: 16%;
  left: 27%;
  background-color: rgb(238, 89, 34);
}
.whitebox3{
  width: 17%;
  height: 15%;
  top: 11%;
  left: 27%;
}


.dumbox4{
  width: 16%;
  height: 10%;
  top: 11%;
  left: 44%;
  background-color: rgb(238, 89, 34);
}

.whitebox4{
  width: 16%;
  height: 5%;
  top: 11%;
  left: 44%;
}


.dumbox5{
  width: 17%;
  height: 5%;
  top: 5%;
  left: 60%;
  background-color: #012f6a;

}
.whitebox5{
  width: 17%;
  height: 5%;
  top: 0%;
  left: 60%;
 }

.dumbox6{
  width: 17%;
  border-bottom-right-radius: 0px !important;
  height: 5%;
  top: -5%;
  left: 77%;
  background-color: rgb(238, 89, 34);
} 


.colorbox{
  position: absolute;
  height: 2.5%;
  bottom: -2.5%;
 
  z-index: 16;
  
}
.cred1,.cblue1,.cred3{
  
  background-color: #012f6a;
}

.cred2,.cblue2,.cblue3{
  background-color: rgb(238, 89, 34);
}


.cred1{
  width: 13%;
  left: 0;
}
.cred2{
  width: 17%;
  left: 27%;
}
.cred3{
  width: 17%;
  left: 60%;
}

.cblue1{
  width: 14%;
  left: 13%;
}
.cblue2{
  width: 16%;
  left: 44%;
}
.cblue3{
  width: 17%;
  left: 77%;
}

.stbox{
  position: absolute;
  height: 10%;
  width: 2%;
  z-index: 21;
}

.st1{
  background-color: #012f6a;
  top: 35%;
  left: 11%;

}

.st2{
  background-color: rgb(238, 89, 34);
  top: 16%;
  left: 42%;
}

.st3{
  background: linear-gradient(to top,#012f6a,rgb(238, 89, 34));
  top: 26%;
  left: 25%;
}
.st4{
  background: linear-gradient(to top,rgb(238, 89, 34),#012f6a);
  top: 5%;
  left: 58%;
  height: 12%;
}
.st5{
  background: linear-gradient(to top,#012f6a,rgb(238, 89, 34));
  top: -5%;
  left: 75%;
}
@media screen and (max-width:500px) {
  .image-row{
    height: 40vh;
  }
}
  /* Bonolo's activities */
  
  

#key-section{
  border-top: 1px solid rgb(220, 208, 208);
  border-bottom: 1px solid rgb(169, 167, 167);
  
}


#key-section h2{
  text-align: left;
  font-size: 28px;
  color: #012f6a;
  font-weight: bold;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

.Activities-content h4{
  text-align: left;
  font-size: 32px;
  padding-top: 10px;
  color: rgb(238,89,34) !important;
}
.Activities-content p{
  text-align: center;
  padding-bottom: 5px;
  font-size: 18px;
}

.span-color{
  color: #012f6a;
}


.olcard-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr  ;
}

@media screen and (max-width:750px){
  .olcard-grid{
    display: grid;
    grid-template-columns:1fr;
  }
}

.olcards,
.olcards * {
  margin: 0;
  padding: 0;
 
  box-sizing: border-box;
}

.olcards {
  list-style: none;
  counter-reset: cardCount;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  --cardsGap: 1rem;
  gap: var(--cardsGap);
  padding-bottom: var(--cardsGap);
}


.olcards li {
  counter-increment: cardCount;
  display: flex;
  color: white;
  --labelOffset: 1rem;
  --arrowClipSize: 1.5rem;
  margin-top: var(--labelOffset);
  padding-right: 5px;
  width: 100%;
}

.olcards li::before {
  /* content: counter(cardCount, decimal-leading-zero); */
  /* content: '😀'; */
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  /* background: rgb(238, 89, 34) !important; */
  background: #012f6a;
  /* color: white;
   */
   color: rgb(238, 89, 34);
  font-size: 2em;
  font-weight: 700;
  transform: translateY(calc(-1 * var(--labelOffset)));
  margin-right: calc(-1 * var(--labelOffset));
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 0.5em;
  
}

.olcards li.i1::before{
  content: "\e06e";
}
.olcards li.i2::before{
  content: "\e561";
}
.olcards li.i3::before{
  content: "\f0eb";
}
.olcards li.i4::before{
  content: "\f0ae";
}

.olcards li.i5::before{
  content: "\e561";
}
.olcards li.i6::before{
  content: "\f164";
}
.olcards li.i7::before{
  content: "\f0e3";
}
.olcards li.i8::before{
  content: "\f095";
}

.olcards li .content {
  background-color: var(--cardColor);
  --inlinePadding: 1em;
  --boxPadding: 0.5em;
  display: grid;
  padding: var(--boxPadding) calc(var(--inlinePadding) + var(--arrowClipSize))
    var(--boxPadding) calc(var(--inlinePadding) + var(--labelOffset));
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 0.25em 1em;
  clip-path: polygon(
    0 0,
    calc(100% - var(--arrowClipSize)) 0,
    100% 50%,
    calc(100% - var(--arrowClipSize)) 100%,
    calc(100% - var(--arrowClipSize)) calc(100% + var(--cardsGap)),
    0 calc(100% + var(--cardsGap))
  );
  position: relative;
  width: 100%;
  justify-content: left;
}

.olcards li .content::before {
  content: "";
  position: absolute;
  width: var(--labelOffset);
  height: var(--labelOffset);
  background: var(--cardColor);
  left: 0;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  filter: brightness(0.75);
}

.olcards li .content::after {
  content: "";
  position: absolute;
  height: var(--cardsGap);
  width: var(--cardsGap);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent 50%);
  left: 0;
  top: 100%;
}
.olcards li .icon {
  grid-area: icon;
  align-self: center;
  font-size: 2em;
}
.olcards li .content .title {
  grid-area: title;
  font-size: 1em;
}
.olcards li .content .text {
  grid-area: text;
  font-size: .7em;
}


  
  /* How we can help */
  /* How we can help */
  /* How we can help */
  
  .how-we-can{
    padding-top: 20px;
    background-color: white;
  }
  
  .how-we-hicons img{
    height: 300px;
  }
  
  .how-we-h{
    color: rgb(238, 89, 34);
    font-size: 32px;
    text-align: left;
    
  }
  
  .how-we-sc{
    color: #012f6a;
    padding-top: 10px;
    padding-bottom: 5px;
  }
  .how-we-sp{
  font-weight: 600;
  font-size: 24px;
  }
  .how-we-sp span{
    font-size: 18px;
    color: rgb(238, 89, 34);
  }
  .how-we-hicons{
    padding-top: 20px;
  }
  
  .how-we-content{
    font-size: 20px !important;
  }
  
  .how-we-hicons h5{
    color: rgb(238, 89, 34);
    
  }
  
  @media screen and (max-width: 500px) {
    .how-we-content{
        font-size: 18px !important;
    }
  }
  
  
  
  
  
  
  /* Testiomonals */
  .homesec4{
    border-top: 2px solid rgb(237, 231, 231);
    background-color: white !important;
    padding-top: 30px;
    
  }
  .testimonal-area{
    padding: 80px 0;
    background-image: url();
    background-size: cover;
    background-position: center;
  }
  
  .section-header h4{
    color: #f75023;
    font-weight: 600;
  }
  
  .section-header{
    padding-bottom: 15px;
  }
  
  .section-header h2{
    font-weight: 700;
  }
  .section-header p{
    color: #3f3b80;
    width: 40%;
    margin: auto;
  }
  
  .icon-area{
    text-align: center;
  }
  
  .icon-area i{
    color-interpolation-filters: #f75023;
    margin-bottom: 20px;
  }
  .content p{
    color: #6f6b80;
  }
  .person{
    width: 100px;
    height: 100px;
    display: block;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f75023;
    margin-top: 50px;
  }
  .person img{
    width: 100%;
  }
  
  .content h5{
    font-weight: 900;
    margin-top: 15px;
  
  }
  
  .carousel.test{
    padding-bottom: 50px;
    margin-bottom: 20px;
  }
  .carousel-indicators{
    bottom: -20px;
  
  }
  .carousel-indicators [data-bs-target]{
    width: 60px;
    height: 10px;
    background-color: #f75023;
  }

  .carousel-control-prev{
    z-index: 100;
  }
  
.content p{
    font-size: 18px;
  }
  
  
  /* animate style */
  
  section .animate{
    transition: 1s;
  }
  .homesec2 .animate{
    transform: translateX(-10%);
    
  }
  
  
  .homesec2.show-animate .animate{
    transform: translateX(0) !important;
    
  
  }
  
  
  
  
  
  
  @media (max-width :767px){
    .industry-bg h2{
        font-size: 13px;
    }
  
    .industry-text{
        font-size: 13px;
    }
    .testimonal-area{
        padding: 30px 0;
    }
    .section-header p{
        width: 85%;
    }
    .content p{
        width: 95%;
    }
    .icon-area i{
        font-size: 50px;
    }
  }
  