.audit-fact{
    display:flex;
}

.audit-fact img{
    border-radius: 1rem;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.audit-fact h2{
    text-align: left;
}

.audit-fact li {
    color: #0a0a0a;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.analyse {
    display: flex;
    background: #ececec;
}

.analyse-step{
    border-radius: calc(0.625rem + 4px);
    border-style: solid;
    border-width: 1px;
    border-color: #f0f0f0;
    padding: calc(0.25rem * 6);
    background: white;
    margin-bottom: 40px;
}

.analyse-step > i{
    display: block;
    width:56px;
    height:56px;
    background-color: rgba(17, 88, 125, 0.25);
    color: #11587D;
    font-size: 1.7em;
    text-align: center;
    align-items: center;
    line-height: 56px;
    border-radius: 0.625rem;
}

.audit-operation{
    display: flex;
    background: white;
    padding-bottom: 100px;
}

.audit-step{
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.audit-step i{
    width: 64px;
    height: 64px;
    background: #11587D;
    border-radius: 100%;
    display: inline-block;align-items: center;
    line-height: 64px;
    font-size: 1.7em;
    color: white;
    font-style: normal !important;
}

.analyse-grid{
    display: flex;
    background: #fafafa;
    padding-bottom: 60px;
}

table{
    background: white;
    border-radius: 0.625rem;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    width:100%;
    overflow: hidden;
    border-collapse: collapse;
}

th:first-of-type{
    text-align: left;
}

th:last-of-type, td:nth-child(2n){
    text-align: right;
}

th, td{
    padding: 20px;
}

thead tr{
    background-color: #11587D;
    color:white;
}

tbody tr{
    border-bottom: 1px solid #e0e0e0;
}

tfoot tr{
    background-color: #f0f0f0;
}

.why-audit{
    display: flex;
    padding-bottom: 60px;
    background: white;
}

.why-audit-explanation{
    text-align: center;
    margin-top: 60px;
}

.why-audit-explanation i{
    width: 64px;
    height: 64px;
    background: rgba(17, 88, 125, 0.25);
    border-radius: 100%;
    display: inline-block;align-items: center;
    line-height: 64px;
    font-size: 1.7em;
    color: #11587D;
    font-style: normal !important;
}

.why-audit h3{
    color: #11587D;
}

/* For devices with a maximum width of 600px */
@media screen and (min-width: 800px) {
    .audit-fact {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .audit-fact-content{
        float: right;
        width:calc(50% - 30px);
    }

    .audit-fact-img{
        float:left;
        width: calc(50% - 30px);
        margin-top: 50px;

    }

    .audit-fact h2{
        font-size: 2.5em;
    }

    .audit-fact-content{
        padding-left: 30px;
    }

    .analyse{
        padding-top: 20px;
        padding-bottom: 80px;
    }

    .analyse-step{
        float:left;
        width: calc(25% - 78px);
        margin-right:30px;
        box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .analyse-step:last-of-type{
        margin-right: 0px;
    }

    .analyse-steps{
        display: flex;
        flex-wrap: wrap;
    }

    .audit-operation{
        padding-top: 100px;
    }

    .audit-step{
        width:calc(25% - 40px);
        padding-left: 20px;
        padding-right: 20px;
        float:left;
    }

    .why-audit-explanation{
        width:calc(25% - 40px);
        padding-left: 20px;
        padding-right: 20px;
        float:left;
    }
}