@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
   --color: rgb(100, 154, 201);
   --white: white;
   --red: rgb(77, 194, 107);
   --light: rgb(218, 218, 218);
   --gray: rgb(179, 179, 179);
   --black: black;
   --light-blue: rgb(252, 243, 240);
}



/* /////////////////////////////  for overseas //////////////////////////////////////////// */
.top-nav-btn{
    width: 180px !important;
}

/* steps */
.tes-box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 16px;
    width: 100%;
    min-height: 60px;
    /* margin-bottom: 20px; */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
 }
 .step{
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    transition:all .4s;
 }
.step-section .num{
    font-size: 70px;
    color: #b4b0b0;
 }
 .tbx-3{
    /* background-image: linear-gradient(to right, #e52d27 0%, #b31217  51%, #e52d27  100%); */
    background-color: var(--color);
 }
 .step{
    color: var( --black);
 }
 .tbx-3 .step{
    color: #fff;
    transition:all .4s;
 }
 .tes-box:hover{
    /* background-image: linear-gradient(to right, #e52d27 0%, #b31217  51%, #e52d27  100%); */
    background-color: var(--color);
    transition:all .4s;
    background-size: 200% auto;
 }
 .tes-box:hover .step{
    color: #fff;
    transition:all .4s;
 }
 .step-img{
    height: 400px;
    width: 100%;
    /* object-fit: contain; */
 }
 /* faq */
 .accordion-item{
    margin-bottom: 10px;
 }

 .step-section .fw-bold {
   color: var(--gray);
 }

/* /////////////////////////////////// for libral page ////////////////////////////////////////////////////////////// */
 /* About the Program */
.solution-box{
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.solution-box .sol-box ul li{
   font-size: 14px;
   text-align: justify;
   font-family: 'Open Sans', sans-serif;
   font-weight: 400;
   font-size: 12px;
}

.solution-box .sol-box ul li span{
   font-size: 11px;
}

.solution .text-center h3{
   color: var(--color);
}
.sol-box {
   width: 300px;
   min-height: 350px;
   background-color: var(--white);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: flex-start;
   margin: 3%;
   border: 2px solid var(--color);
   position: relative;
   /* z-index: 10 !important; */

}

.sol-box h5{
   color: var(--color);
   font-size: 17px;
   font-family: 'Open Sans', sans-serif;

}

.sol-box p{
   color: var(--black);
   font-family: 'Open Sans', sans-serif;
   font-size: 15px;

}

.sol-box img{
   width: 70px;
   background-color: var(--color);
   border-radius: 50%;
}

.sol-img{
   position: absolute;
   bottom: 5%;
   right: 3%;
   opacity: .2;
   /* z-index: -1; */
}
.sol-back{
   position: absolute;
   top: 1%;
   left: 0%;
   width: 150px;
   height: 150px;
   border-top: 5px solid var(--color);
   border-left: 5px solid var(--color);
   z-index: -1 !important;
   /* transform: translate(-10%); */
   transform: translatey(0%);
   transition: all .5s;
}
.sol-box:hover .sol-back{
   left: -5%;
   transform: translateY(-12%);
   transition: all .5s;
}
/* make it resposive */
@media screen and (max-width:920px) {
     /* About the Program */
  .solution-box{
   flex-direction: column;
 }
}

@media screen and (max-width:620px) {
      /* About the Program  */
      .solution-box{
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
     }
}

