
.service{
    position: relative;
    padding: 4rem 6%;
  }
  .top-background{
    background: url("../src/assets/clients-background.jpg") no-repeat top center/cover;
}
  .audit{
    background: url("../src/assets/audit-background.jpg") no-repeat center center/cover;
  }

  .business{
    background: url("../src/assets/business-background.jpg") no-repeat center center/cover;
  }

  .finance{
    background: url("../src/assets/finance-background.jpg") no-repeat top center/cover;
  }

  .tax{
    background: url("../src/assets/tax-background.jpg") no-repeat center center/cover;
  }
 .service .content,
 .service .content2{
    display: grid;
    min-height: 80%;
    width: 100%;
    line-height: 1.6;
    font-size: 14px;
    column-gap: 2rem;
  }
  .service .content{
    grid-template-columns:30% 1fr;
  }
  .service .content2{
    grid-template-columns: 1fr 30%;
    margin-block-start: 4rem;
  }
  
 .service .content .profile,
 .service .content2 .profile{
    flex: 1 ;
    display: flex;
    align-items:flex-start;
    position: relative;
    height: 100%;
    overflow: hidden !important;
  }

  .profile img{
    position: relative;
    width: 100%;
}

  .content .side-info,
  .content2 .side-info{
    flex: 1.3 ;
    height: 100%;
    padding:0 1rem;
  }

  .side-info h1{
    line-height: 1;
    font-size: clamp(1rem, 2.5vw, 3rem);
    margin-block-end: 1rem;
    text-align: center;
    color: #0b1c59;
  }
  .side-info h2{
    color: #0b1c59;
    margin-block-end: 1rem;
    text-align: center;
  }
  .side-info ul li,
  .side-info p{
    font-size: 1.2em;
    line-height: 1.5;
    text-align: justify;
    margin-block-end: 0.5rem;
  }

  .paragraph2{
    margin-block-start: 2.3rem;
  }

  .side-info ul li{
    margin-block-end: 0.4rem;
    list-style: none;
    position: relative;
  }

  .side-info ul li::before{
    content: "";
    display: inline-flex;
    width: 8px;
    transform: translateY(-2px);
    height: 8px;
    margin-right: 0.6rem;
    background-color: #0b1c59;
    
  }

  .services{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 4%;
}

.wrapper{
    margin-block-start: 0rem !important;
}

.head-title{
  color: #0b1c59;
  font-weight: normal;
  font-size: 3em;
  text-align: center;
  margin-block-start: 1rem;
  margin-block-end: 2rem;
}

.img-slider {
  margin-bottom: 3rem;
  width: 100vw;
  overflow: hidden;
}
.img-slider ul {
  display: flex;
  padding: 0;
  animation: slide 80s infinite linear;
}
.img-slider li {
  padding: 0 4rem;
  list-style: none;
}
.img-slider img {
  width: auto;
  max-height: 7rem;
}
@keyframes slide {
  from {
    margin-left: 0%;
  }
  to {
    margin-left: -100%;
  }
}


   /* ================================================= 
                      responsive 
  ==================================================*/

 @media screen and (max-width: 777px) {
    .service{
        padding: 2rem 3%;
    }
    .service .content,
    .service .content2{
        display: block;
        min-height: 90%;
        width: 100%;
        line-height: 1.6;
        font-size: 14px;
        opacity: 1;
    }

    .service .content2 {
      display: flex;
      flex-direction: column-reverse;
  }

    .profile{
        margin: 3rem 0;
        display: flex;
        justify-content: center;
    }
    .profile img{
        position: relative;
        width: 40%;
    }

    .about .content .side-info{
        flex: 1.3 ;
        height: 100%;
        display: block;
        padding: none !important;
      }

      .side-info h1{
        line-height: 1;
        padding: 0 1rem;
        font-size: 2rem;
        margin-block-end: 1rem;
        text-align: center;
      }
      .side-info ul li,
      .side-info p{
        font-size: 1em;
      }

       /* ================================================= 
                vision mission value 
        ==================================================*/
        .cards{
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            grid-template-columns: none;
        }
        
        .img-slider ul {
          animation: slide 25s infinite linear;
        }

        .img-slider li {
          padding: 0 2rem;
          list-style: none;
        }

        .img-slider img {
          width: auto;
          max-height: 5rem;
        }
 }



 @media screen and (max-width: 425px){
    .side-info h1{
        line-height: 1;
        padding: 0 0rem;
        font-size: 1.5rem;
        margin-block-start: 1rem;
        margin-block-end: 1rem;
      }

      .profile img{
        position: relative;
        width: 80%;
    }

    .img-slider li {
      padding: 0 2rem;
      list-style: none;
    }

    .img-slider img {
      width: auto;
      max-height: 3rem;
    }
    .img-slider ul {
      animation: slide 12s infinite linear;
    }
    .head-title{
      font-size: 2em;
      text-align: center;
      margin-block-start: 1rem;
      margin-block-end: 2rem;
    }
 }