
.inner_one{
    margin-top: 6vw;
}
.inner_one>h2{
    position: relative;
    display: inline;
}
.inner_one>h2::after{
    content: '';
    width: 3px;
    height: 11vmax;
    display: block;
    background-color: #1E3B94;
    position: absolute;
    left: -10px;
    top: 12px;
}
.imgSlider{
    height: 25em;
    background-image: url(../images/aboutus/aboutimg1.png);
    background-size: 100% 100%;
    animation: changeImage 12s linear infinite ;
}
@keyframes changeImage{
    0%{
        background-image: url(../images/aboutus/aboutimg4.jpg);
    }
    25%{
        background-image: url(../images/aboutus/aboutimg3.webp);
    }
    50%{
        background-image: url(../images/aboutus/aboutimg2.jpg);
    }
}
@keyframes fade-up {
    0%{
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100%{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.after_underline{
  margin-top: 5%;
}
.after_underline::after{
    content: '';
    height: 2px;
    width: 50%;
    background-color: #003757;
    display: block;
    margin: 2% 0 0 25%;
    
}
.wrapper{
    max-width: 1080px;
    margin: 50px auto;
    padding: 0 20px;
    position: relative;
    animation: fade-up 0.8s;
  }
  .wrapper .center-line{
    position: absolute;
    height: 65%;
    width: 4px;
    background: #003655;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }
  .wrapper .row{
    display: flex;
  }
  .wrapper .row-1{
    justify-content: flex-start;
  }
  .wrapper .row-2{
    justify-content: flex-end;
  }
  .wrapper .row section{
    background: #CFE2FF;
    border-radius: 5px;
    width: calc(50% - 40px);
    padding: 20px;
    position: relative;
  }
  .wrapper .row section::before{
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    background: #003655;
    top: 28px;
    z-index: -1;
    transform: rotate(45deg);
  }
  .row-1 section::before{
    right: -7px;
  }
  .row-2 section::before{
    left: -7px;
  }
  .row section .icon,
  .center-line .scroll-icon{
    position: absolute;
    background: #f2f2f2;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #183f54;
    font-size: 17px;
    box-shadow: 0 0 0 4px #3d6a85, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
  }
  .center-line{
    bottom: 0px;
    left: 50%;
    font-size: 25px;
    transform: translateX(-50%);
  }
  .row-1 section .icon{
    top: 15px;
    right: -60px;
  }
  .row-2 section .icon{
    top: 15px;
    left: -60px;
  }
  .row section .details{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .row section .details .title{
    font-size: 22px;
    font-weight: 600;
  }
  .row section p{
    margin: 10px 0 17px 0;
  }
  @media screen and (max-width: 790px){
    .wrapper .center-line{
      left: 40px;
    }
    .wrapper .row{
      margin: 30px 0 3px 60px;
    }
    .wrapper .row section{
      width: 100%;
    }
    .row-1 section::before{
      left: -7px;
    }
    .row-1 section .icon, .row-2 section .icon{
      display: none;
    }
  }
  @media screen and (max-width: 800px){

    .wrapper .row{
      margin: 10px 0;
    }
  }

  @media screen and (min-width: 200px) and (max-width: 1260px){
    .inner_one>h2::after{
      display: none;
  }
  .after_underline{
    margin-top: 5%;
  }
}