/*Google Fonts*/
@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,200&display=swap');

/*Basic Settings*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body{
    height: 100vh;
}

.wrapper{
    height: 100%;
    width: 100%;
}


/**********About Us Page***************/

/*Banner Section*/

.AboutUsPage .banner_section{
    color: #ffffff;
    background-color: rgb(13, 13, 58);
}
.AboutUsPage .banner_section .title{
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    font-size: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
}
/*Text Section*/

.AboutUsPage .text_section{
    background-color: #ffffff;
    padding: 40px 0;
}
.AboutUsPage .text_section .content{
    margin-bottom: 20px;
}
.AboutUsPage .text_section h3{
    font-size: 24px;
    font-weight: 700;
    color: rgb(20, 20, 114);
}
.AboutUsPage .text_section p{
    font-weight: 400;
    font-size: 16px;
}

/*Icons*/
.icon{
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 1.1em;
    height: 1.1em;
    vertical-align: middle;
}

.icon.icon_profile{
    background-image: url("https://dev.qaoncloud.com/v3.4/public/assets/img/about/Q-logo.png");
    font-size: 30px;
    left: 80px;
}



/*History*/

.History{
    padding: 30px 0;
}
.History .title{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 70px;
}
.History ul{
    margin-bottom: 0!important;
}

.AboutUsPage .text_section .line {
  width: 34%;
  min-width: 33px;
  height: 3px;
  background-color: #00ACFF;
  margin: 10px 0px;
}

  
.about-title-session{
  align-items: flex-start;
}
.about-title-session > img
{
  margin-right: 20px;
}






  /*aboutus-main*/
.aboutus-main {
    padding-top: 80px;
  }
  
  .aboutus-content h2 {
  
    color: #213455;
    font-family: "Poppins", Sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 0;
  }
  
  @media only screen and (max-width:1024px) {
    .aboutus-content h2 {
      font-size: 14px;
    }
  
  
  }
  
  .aboutus-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .animated-bg {
    position: relative;
  }
  .mainbg{
    width: 100%;
  }
  
  .aboutus-contain {
    max-width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .firstman {
    position: absolute;
    width: 80px;
    left: 20%;
    bottom: 50%;
    animation: fadeindown 1s ease-in;
  }
  
  .secondman {
    position: absolute;
    width: 120px;
    right: 2%;
    bottom: 88%;
    animation: fadeindown 1s ease-in;
  }
  
  .thirdman {
    position: absolute;
    width: 200px;
    bottom: 43%;
    left: 26%;
    animation: fadeindown 1s ease-in;
  }
  
  @media only screen and (max-width:900px) {
  
    .firstman,
    .secondman {
      width: 30px;
    }
  
    .thirdman {
      width: 80px;
    }
  
  
  }
  
  @keyframes fadeindown {
    from {
      opacity: 0;
      transform: translateY(-200px);
    }
  
    to {}
  }
  
  .delay {
    display: none;
  }
  
  /*-----------------------------------timeline-------------------------------------------*/
  .timeline-head {
    text-align: center;
    margin: 5%;
  }
  
  .timeline-head h5 {
    color: #1495D6;
    margin-top: 2%;
  }
  
  .timeline-head h3 {
    color: black;
    margin-top: 2%;
    font-weight: 700;
    font-size: 32px;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #1495D6;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  
  /* Container around content */
  .timeline-box {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
  }
  
  /* The circles on the timeline */
  
  .timeline-box.left::after {
    content: '2020';
    position: absolute;
    width: fit-content;
    height: fit-content;
    right: -38px;
    background-color: #1495D6;
    top: 39px;
    border-radius: 20px;
    z-index: 1;
    padding: 5px 20px;
    font-weight: bold;
    color: #fff;
  }
  .timeline-box.right::after {
    content: '2020';
    position: absolute;
    width: fit-content;
    height: fit-content;
    left: -38px;
    background-color: #172C54;
    top: 39px;
    border-radius: 20px;
    z-index: 1;
    padding: 5px 20px;
    font-weight: bold;
    color: #fff;
  }
  
  /* Place the container to the left */
  .left {
    left: 0;
  }
  
  /* Place the container to the right */
  .right {
    left: 50%;
  }
  
  /* Add arrows to the left container (pointing right) */
  .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 33px;
    width: 0;
    z-index: 1;
    right: 25px;
    border: medium solid #172C54;
    border-width: 30px 0 30px 30px;
    border-color: transparent transparent transparent #172C54;
    display: none;
  }
  
  /* Add arrows to the right container (pointing left) */
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 33px;
    width: 0;
    z-index: 1;
    left: 25px;
    border: medium solid #00ACFF;
    border-width: 30px 30px 30px 0;
    border-color: transparent #00ACFF transparent transparent;
    display: none;
  }
  
  /* Fix the circle for containers on the right side */
  .right::after {
    left: -30px;
  }
  
  /* The actual content */
  .right > .timeline_content{
    margin-left: 15%;
  }
  .left > .timeline_content{
    margin-right: 15%;
  }
  .timeline_content {
    padding: 40px 40px;
    text-align: left;
    color: #fff;
    position: relative;
    border-radius: 10px;
    font-size: 16px;
  }
  .timeline_content li{
    margin: 10px 0;
  
  }
  .timeline-box.left .timeline_content {
    background-color: #172C54;
  }
  .timeline-box.right .timeline_content {
    background-color: #00ACFF;
  }
  
  .icon-left {
    width: 100px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(217deg) brightness(107%) contrast(102%);
    position: absolute;
    top: 18px;
    left: 12px;
    z-index: 0;
    opacity: 0;
    transition: all .5s ease-in;
  }
  
  .icon-right {
    width: 100px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(217deg) brightness(107%) contrast(102%);
    position: absolute;
    top: 11px;
    right: 12px;
    z-index: 0;
    opacity: 0;
    transition: all .5s ease-in;
  }
  
  .timeline_content:hover .icon-left {
    opacity: .3;
  }
  
  .timeline_content:hover .icon-right {
    opacity: .3;
  }
  
  /* .year-left {
    right: -20%;
    top: 52px;
    position: absolute;
    display: none;
  
  } */
  
  /* .year-right {
    left: -20%;
    top: 52px;
    position: absolute;
    display: none;
  
  } */
  
  .year-left h4,
  .year-right h4 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
  }

  .timeline-year-2014::after{
    content:"2014" !important
  }
  .timeline-year-2015::after{
    content:"2015" !important
  }
  .timeline-year-2016::after{
    content:"2016" !important
  }
  .timeline-year-2017::after{
    content:"2017" !important
  }
  .timeline-year-2018::after{
    content:"2018" !important
  }
  .timeline-year-2019::after{
    content:"2019" !important
  }
  .timeline-year-2020::after{
    content:"2020" !important
  }
  .timeline-year-2021::after{
    content:"2021" !important
  }
  .timeline-year-2022::after{
    content:"2022" !important
  }



  /* Media queries - Responsive timeline on screens less than 576px wide */

  @media screen and (max-width:576px){
    .timeline_content {
        font-size: 14px;
        padding: 40px 20px 40px 20px;
    }
  }
  /* Media queries - Responsive timeline on screens less than 768px wide */
  @media screen and (max-width: 768px) {
    
    /* Place the timelime to the left */
    .timeline::after {
      left: 39px;
    }
  
    /* Full-width containers */
    .timeline-box {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
  
    .year-left,
    .year-right {
      position: unset;
    }
  
    /* Make sure that all arrows are pointing leftwards */
    .timeline-box::before {
      left: 56px;
      top: 85px;
      border: medium solid #1495D6;
      border-width: 20px 20px 20px 0;
    }
    .timeline-box.left::before {
      border-color: transparent #172C54 transparent transparent;
    }
    .timeline-box.right::before {
        
      border-color: transparent #00ACFF transparent transparent;
    }
  
    /* Make sure all circles are at the same spot */
    .left::after,
    .right::after {
      left: 0;
      top: 80px;
    }
  
    /* Make all right containers behave like the left ones */
    .right {
      left: 0%;
    }
  }
  
  


/*Leadership team*/

.AboutUsPage .leadership_section{
  background: linear-gradient(#e7e7e7 , #f7f7f7);
    padding: 30px 0 100px 0;
}

.AboutUsPage .leadership_section .title{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 50px;
}

.AboutUsPage .leadership_section .heading{
    color: #000000;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px;
}

.AboutUsPage .leadership_section .cardBox{
    background-color: transparent;
    text-align: center;
    width: 380px;
    height: 500px;
    border: 0;
    margin-bottom: 50px;
    box-shadow: unset;
    cursor: pointer;
}
.AboutUsPage .leadership_section .cardBox .card-header{
    background-color: transparent;
    border: 0;
}
.AboutUsPage .leadership_section .cardBox .profileImg{
    width: 160px;
    height: 160px;
}
.AboutUsPage .leadership_section .cardBox .card-body{
    flex: none;
    height: 100px;
}
.AboutUsPage .leadership_section .cardBox .card-body .name{
    font-size: 24px;
    color: #172c54;
    font-weight: 400;
}
.AboutUsPage .leadership_section .cardBox .card-body .designation{
    font-size: 16px;
    color: #172c54;
    font-weight: 400;
}
.AboutUsPage .leadership_section .cardBox .card-footer .qualification{
    font-size: 14px;
    font-weight: 400;
}

.AboutUsPage .leadership_section .cardBox .card-footer{
    background-color: transparent;
    border: 0;
}



/*Our Key Clients*/

.AboutUsPage .keyClients_section{
    background-color: #ffffff;
    padding: 30px 0 30px 0;
}

.AboutUsPage .keyClients_section .title{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 50px;
}

.AboutUsPage .keyClients_section .item{
    width: 230px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.AboutUsPage .keyClients_section img{
    width: 180px;
}

.year-left::after {
  content: "";
  border: 1px dotted;
  width: 20%;
  position: absolute;
  top: 55px;
  right: 0;
}
.year-right::after {
  content: "";
  border: 1px dotted;
  width: 20%;
  position: absolute;
  top: 55px;
  left: 0;
}

@media screen and (max-width:575px) {
    .AboutUsPage .banner_section .title{
        bottom: 0;
    }
    .AboutUsPage .banner_section .title h2{
        font-size: 20px;
    }
    .AboutUsPage .text_section .content {
        padding: 0 20px;
    }
    .AboutUsPage .text_section h3{
        font-size: 20px;
    }
    .AboutUsPage .text_section p {
        font-weight: 400;
        font-size: 14px;
    }
    .History .title {
        font-size: 24px;
    }
    .AboutUsPage .leadership_section .title{
        font-size: 24px;
    }
    .AboutUsPage .leadership_section .heading{
        font-size: 18px;
    }
    .AboutUsPage .leadership_section .cardBox .card-footer {
        padding: 0;
    }
    .year-right, .year-left{
      /* display: none; */
    }
    .year-left::after {
      left: 45px;
  }
  .year-right::after {
    left: 45px;
}
    .timeline-box.right::after{
      left: 0px;
    }
    .left > .timeline_content {
      margin-left: 15%;
    margin-right: 0px;
}
}

@media screen and (min-width:576px) and (max-width:767px) {
    .AboutUsPage .banner_section .title{
        bottom: 10px;
    }
    .AboutUsPage .banner_section .title h2{
        font-size: 20px;
    }
    .AboutUsPage .text_section p{
        font-size: 16px;
    }
    .year-right, .year-left{
      display: none;
    }
}

@media screen and (min-width:768px) and (max-width:990px) {
    .AboutUsPage .banner_section .title{
        bottom: 20px;
    }
    .AboutUsPage .banner_section .title h2{
        font-size: 24px;
    }
    .AboutUsPage .text_section p{
        font-size: 16px;
    }
    .year-right, .year-left{
      display: none;
    }
}