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


/**********Solutions_All***************/

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

/*Banner Section*/


/*Description*/


.ToolsWeUse .description_box{
    background-color: #ffffff;
    padding: 80px 20px;
    color: #000000;
    text-align: center;
    
}
.ToolsWeUse .description_box .description{
    font-size:20px;
    font-weight: 500;
}

/*Tools Section*/

.ToolsWeUse .tools_section .heading{
    background-color: dodgerblue;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    padding: 15px 0;
    text-align: center;
}
.ToolsWeUse .tools_section .content_row{
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.ToolsWeUse .tools_section .content_row .logo_div{
    height: 200px;
    min-width: 220px;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .ToolsWeUse .tools_section .content_row.testing_automation .logo_div{
    height: 200px;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
} */
.ToolsWeUse .tools_section .content_row img{
    width: 150px;
}


@media screen and (max-width:576px){
    .ToolsWeUse .banner_section .title{
        right: 0;
        font-size: 16px;
    }
    .ToolsWeUse .banner_section .title > div {
        max-width: 300px;
    }
    .ToolsWeUse .description_box{
        padding: 30px 20px;
    }
    .ToolsWeUse .description_box .description{
        font-size: 14px;
    }
    .ToolsWeUse .tools_section .heading{
        font-size: 16px;
        padding: 10px 0;
    }
    .ToolsWeUse .tools_section .content_row .logo_div {
        height: 150px;
        min-width: 200px;
    }
}


@media screen and (min-width:576px) and (max-width:767px){
    .ToolsWeUse .banner_section .title{
        right: 0;
        font-size: 20px;
    }
    .ToolsWeUse .banner_section .title > div {
        max-width: 400px;
    }
    .ToolsWeUse .description_box .description{
        font-size: 14px;
    }
}

@media screen and (min-width:768px) and (max-width:991px){
    .ToolsWeUse .banner_section .title{
        font-size: 20px;
    }
    .ToolsWeUse .banner_section .title > div {
        max-width: 400px;
    }
    .ToolsWeUse .description_box .description{
        font-size: 16px;
    }
}
