/*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%;
}


/**********Why Us***************/

.WhyUs_Page p{
    margin-bottom: 0 !important;
}


/*why QAonCloud*/

.WhyUs_Page .whyQAonCloud{
    background-color: #ffffff;
    text-align: center;
}
.WhyUs_Page .whyQAonCloud .title_box{
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.WhyUs_Page .whyQAonCloud .heading{
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
}
.WhyUs_Page .whyQAonCloud .heading .blue_highlight{
    color: #00ACFF;
}
.WhyUs_Page .whyQAonCloud .description{
    font-size: 18px;
}

.WhyUs_Page .whyQAonCloud .content_row{
    display: flex;
    align-items: center;
    padding: 15px 0;
}
.WhyUs_Page .whyQAonCloud .grey_bg{
    background-color: #EBEBEB;
}

.WhyUs_Page .whyQAonCloud .content_row .text_column{
    text-align: left;
}
.WhyUs_Page .whyQAonCloud .content_row .text_column .title{
    font-size: 24px;
    color: #172C54;
    font-weight:600;
}
.WhyUs_Page .whyQAonCloud .content_row .text_column .description{
    font-size: 16px;
    color: #000000;
}
.WhyUs_Page .whyQAonCloud .content_row .img_column{
    display: flex;
    align-items: center;
    justify-content: center;
}
.WhyUs_Page .whyQAonCloud .content_row .img_column img{
    width: 250px;
}


/*Cards*/
.WhyUs_Page .whyQAonCloud .cards_section{
    padding: 0 0 50px 0;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.WhyUs_Page .whyQAonCloud .cards_section > div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.WhyUs_Page .whyQAonCloud .cards_section .cardBox{
    text-decoration: none;
    background: #172C54;
    text-align: center;
    max-width: 350px;
    height: 300px;
    border: 0;
    padding: 50px 0 20px 0;
    border: 1px solid #707070;
    border-radius: 10px;
    color: #ffffff;
}
.WhyUs_Page .whyQAonCloud .cards_section .cardBox:hover{
    background-color: #ffffff;
    color: #172C54;
}
.WhyUs_Page .whyQAonCloud .cards_section .cardBox .card-header{
    width: 50%;
    margin: 0 auto;
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 20px;
}
.WhyUs_Page .whyQAonCloud .cards_section .cardBox img{
    width: 40px;
    height: 40px;
}
.WhyUs_Page .whyQAonCloud .cards_section .cardBox .card-body{
    flex: none;
    height: 100px;
}
.WhyUs_Page .whyQAonCloud .cards_section .cardBox .card-body .title{
    font-size: 20px;
    font-weight: 600;
    
}


/*Media queries*/

@media screen and (max-width : 575px) {
    .WhyUs_Page .banner_section .title > div{
        font-size: 16px;
    }
    .WhyUs_Page .whyQAonCloud .heading{
        font-size: 20px;
    }
    .WhyUs_Page .whyQAonCloud .description{
        font-size: 14px;
    }
    .WhyUs_Page .whyQAonCloud .content_row .img_column img{
        width: 150px;
    }
    .WhyUs_Page .whyQAonCloud .content_row .text_column .title{
        font-size: 20px;
    }
    .WhyUs_Page .whyQAonCloud .content_row .text_column .description{
        font-size: 14px;
        font-weight: unset;
    }

}
@media screen and (min-width : 576px) and (max-width : 767px) {
    .WhyUs_Page .banner_section .title > div{
        font-size: 24px;
    }
    .WhyUs_Page .whyQAonCloud .heading{
        font-size: 20px;
    }
    .WhyUs_Page .whyQAonCloud .description{
        font-size: 14px;
    }
    .WhyUs_Page .whyQAonCloud .content_row{
        padding: 15px 0 30px 0;
    }
    .WhyUs_Page .whyQAonCloud .content_row .text_column .title{
        font-size: 24px;
    }
    .WhyUs_Page .whyQAonCloud .content_row .img_column img{
        width: 200px;
    }
    .WhyUs_Page .whyQAonCloud .content_row .text_column{
        text-align: center;
    }
    .WhyUs_Page .whyQAonCloud .content_row .text_column .description{
        font-weight: unset;
        font-size: 14px;
    }
}
@media screen and (min-width : 768px) and (max-width : 990px) {
    .WhyUs_Page .banner_section .title > div{
        width: 85%;
        font-size: 24px;
        max-width: 500px;
    }
    .WhyUs_Page .whyQAonCloud .heading{
        font-size: 24px;
    }
    .WhyUs_Page .whyQAonCloud .description{
        font-size: 16px;
    }
    .WhyUs_Page .whyQAonCloud .content_row .text_column .title{
        font-size: 20px;
    }
    .WhyUs_Page .whyQAonCloud .content_row .text_column .description{
        font-size: 14px;
        font-weight: unset;
    }
    
}
@media screen and (max-width : 767px) {
    .WhyUs_Page .whyQAonCloud .content:nth-child(even) .content_row{
        flex-direction: column-reverse;
    }
}













/***************End of Why Us Main Page*****************/


/***************Why Us Page[Founders, Products, Engineering][ Common CSS]****************/



.WhyUs_CommonPage p{
    margin-bottom: 0 !important;
}

/*Banner Section*/

.WhyUs_CommonPage .banner_section{
    position: relative;
}
.WhyUs_CommonPage .banner_section .title{
    display: flex;
    align-items: center;
    justify-content: left;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
}
.WhyUs_CommonPage .banner_section .title > div{
    width: 90%;
    max-width: 800px;
}


/*how QAonCloud*/

.WhyUs_CommonPage .howQAonCloud{
    background-color: #ffffff;
    text-align: center;
}
.WhyUs_CommonPage .howQAonCloud .title_box{
    padding: 40px 20px;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.WhyUs_CommonPage .howQAonCloud .title_box .heading{
    font-size: 24px;
    font-weight: 700;
    color: #172C54;
    margin-bottom: 30px;
}
.WhyUs_CommonPage .howQAonCloud .title_box .heading .blue_highlight{
    color: #00acff;
}
.WhyUs_CommonPage .howQAonCloud .title_box .description{
    font-size: 16px;
}

.WhyUs_CommonPage .howQAonCloud .content_row > div{
    padding: 0;
}

.WhyUs_CommonPage .howQAonCloud .content:nth-child(even) .content_row{
    background-color: #EBEBEB;
}

.WhyUs_CommonPage .howQAonCloud .content_row .text_column{
    padding: 60px;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
.WhyUs_CommonPage .howQAonCloud .content_row .text_column .title{
    color: #172C54;
    font-weight: 600;
    font-size: 24px;
}
.WhyUs_CommonPage .howQAonCloud .content_row .text_column .description{
    font-size: 16px;
}




/*Media Queries*/
@media screen and (max-width:575px){
    .WhyUs_CommonPage .banner_section .title{
        font-size: 16px;
    }
    .WhyUs_CommonPage .howQAonCloud .title_box{
        padding: 40px 10px;
    }
    .WhyUs_CommonPage .howQAonCloud .title_box .heading{
        font-size: 20px;
    }
    .WhyUs_CommonPage .howQAonCloud .title_box .description{
        font-size: 14px;
    }
    .WhyUs_CommonPage .howQAonCloud .content{
        --bs-gutter-x:0;
    }
    
    .WhyUs_CommonPage .howQAonCloud .content:nth-child(odd) .content_row{
        flex-direction: column-reverse;
    }
    .WhyUs_CommonPage .howQAonCloud .content_row .text_column{
        padding: 20px 10px 20px 10px;
    }
    .WhyUs_CommonPage .howQAonCloud .content_row .text_column .title{
        font-size: 20px;
    }
    .WhyUs_CommonPage .howQAonCloud .content_row .text_column .description{
        font-size: 14px;
    }

    .WhyUs_Page .whyQAonCloud .cards_section > div{
        padding: 0;
    }
}

@media screen and (min-width:576px) and (max-width:767px){
    .WhyUs_CommonPage .banner_section .title{
        font-size: 20px;
    }
    .WhyUs_CommonPage .howQAonCloud .content:nth-child(odd) .content_row{
        flex-direction: column-reverse;
    }
    .WhyUs_CommonPage .howQAonCloud .content_row .text_column{
        padding: 20px;
        font-size: 16px;
    }
}


@media screen and (min-width:768px) and (max-width:990px){
    .WhyUs_CommonPage .banner_section .title > div{
        font-size: 24px;
        max-width: 80%;
    }

    .WhyUs_CommonPage .howQAonCloud .content_row .text_column{
        padding: 15px 10px 8px 15px;
    }
    .WhyUs_CommonPage .howQAonCloud .content_row .text_column .title{
        font-size: 20px;
    }
    .WhyUs_CommonPage .howQAonCloud .content_row .text_column .description{
        font-size: 14px;
    }
}
@media screen and (min-width:991px) and (max-width:1200px){
    .WhyUs_CommonPage .howQAonCloud .content_row .text_column{
        padding: 25px 25px 10px 25px;
    }
}

@media only screen and (max-width:750px){
    main.HowWeWork_Page section.banner_section{
    background-image: url(../assets/img/mobile-banner/company/Product_Company.jpg) !important;
  }
  
  main.ToolsWeUse section.banner_section{
    background-image: url(../assets/img/mobile-banner/general/tools.jpg) !important;
  }
  
  main.whyUsFounders section.banner_section{
    background-image: url(../assets/img/mobile-banner/general/founder_company.jpg) !important;
  }
  
  main.whyUsProduct section.banner_section{
    background-image: url(../assets/img/mobile-banner/general/Product_Company.jpg) !important;
  }
  
  main.whyUsEngineering section.banner_section{
    background-image: url(../assets/img/mobile-banner/general/engineering_company.jpg) !important;
  }
}