.pageAssurance {
    .content {
        @media (max-width: 768px) {
            padding: 1rem;
        }
    }

    .assuranceTitleBlock {
        padding: 5rem;
        justify-content: center;
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                          url(/assets/img/engine-background_desktop.jpg);
        background-size: cover;
        h1 {
            text-align: center;
        }
    }

    .assuranceLogoContainer {
        display: flex;
        justify-content: center;
        flex-flow: row wrap;
        gap: 2rem;
        margin-top: -2.5rem;
        margin-bottom: 4rem;

        .assuranceLogo {
            height: 4rem;

            @media (min-width: 768px) {
                height: 6rem;
            }
        }
    }

    .assuranceSection {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;

        .subtitle {
            color: black;
            font-size: 1.4rem;
        }

        h2 {
            display: flex;
            justify-content: center;
            color: #575757;
            font-size: 2.2em;
            text-align: center;
            margin-bottom: 1rem;
        }

        ul {
            list-style: unset;
            @media (max-width: 768px) {
                padding: 1rem;
            }
        }

        a {
            text-decoration: underline;
            &:hover {
                text-decoration: none;
            }
        }

        .blogArticles {
            display: flex;
            flex-flow: row wrap;
            justify-content: space-between;
            .blogArticlesBlock {
                display: flex;
                flex-direction: column;
                align-items: center;
                img {
                    top: 3rem;
                    position: relative;
                    width: 4rem;
                }
                .blogArticlesTextTitle {
                    margin-bottom: 1rem;
                }
            }
        }

        table {
            border: 1px solid #000;

            span {
                font-weight: 500;
            }

            th, td {
                border: 1px solid #000;
                padding: 1rem 1.4rem;
                text-align: center;
                background-color: #FFFFFF;
            }

            .rowTitle {
                text-align: start;
            }

            thead th {
                background-color: #31A8E0;
                color: #FFFFFF;
                font-weight: bold;
            }

            tbody td:not(:first-child) {
                color: #FF8364;
                font-size: 1.2rem;
            }
        }

        .flex-row {
            display: flex;
            flex-flow: row wrap;
            gap: 3rem;

            @media (min-width: 768px) {
                flex-flow: row nowrap;
            }
        }
    }

    .backColorWhite {
        width: 100%;
        height: fit-content;
    }

    .satBlockTitleBleu {
        text-transform: uppercase;
        padding-left: 15px;
    }

    .backColorWhiteContent {
        display: flex;
        flex-direction: column;
        gap: 1rem;

        h3 {
            margin: .5rem;
        }

        a {
            font-weight: 800;
            color: #FF8364;
        }
    }

    .assuranceCardLogocontainer {
        display: flex;
        justify-content: center;

        img {
            width: 7rem;
        }
    }

    .assuranceLinks {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        .assuranceLinksElement  {
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }
    }

    .listElement {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 1rem;
        img {
            width: 3rem;
        }
    }

    .assuranceElement {
        display: flex;
        align-items: center;
        gap: .5rem;

        .assurance-picto {
            width: 1.5rem;
        }
    }
}