section.bao-hero{
    .wrapper{
        max-width: 1300px;
        margin: auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 130px 0;
    }
}
section.boite-a-outils{
    .wrapper{
        max-width: 1300px;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 72px;
        padding-bottom: 100px;

        .col-1{
            display: flex;
            flex-direction: column;
            gap: 20px;
            border-right: 1px solid black;
            padding: 20px;
            .title-level{
                opacity: .6;
                cursor: pointer;
                transition: all ease 200ms;
            }
            .title-level:hover{
                font-size: 1.6rem;
            }
            .title-level-active{
                opacity: 1!important;
                font-size: 1.7rem!important;
            }
        }
        .col-2{
            padding: 20px;
            .outils-peinture{
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;                
            }
            [data-repeteur] {
                display: none;
            }

            .outil-titre{
                margin-top: 12px;
                grid-column: span 2;
                font-size: 18px;
                font-weight: 100;
            }

            .outil-lien{
                grid-column: span 2;
                margin-top: 12px;
                a{
                    text-decoration: underline;
                    font-size: 18px;
                    font-family: var(--typotitre) !important;
                    font-weight: 100;
                }
            }

            .outil-telechargement{
                padding: 16px;
                display: flex;
                flex-direction: column;
                gap: 16px;
                border: 1px solid #DEDCD2;
                .nom-fichier{
                    margin: 0;
                    font-size: 14px;
                }
                .liens-telechargement{
                    display: flex;
                    flex-direction: row;
                    gap: 32px;

                }
                .btn-telechargement::before {
                    content: '';
                    display: inline-block;
                    width: 24px;
                    height: 24px;
                    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='12' y1='2' x2='12' y2='16' stroke='black' stroke-width='2'/%3E%3Cpath d='M7 11L12 16L17 11' stroke='black' stroke-width='2'/%3E%3Cpath d='M5 16V21H19V16' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
                    background-repeat: no-repeat;
                    background-size: contain;
                    margin-right: 0.5em; 
                    vertical-align: middle;
                }
            }

        }

    }
}

@media only screen and (max-width: 690px){
    section.boite-a-outils .wrapper{
        grid-template-columns: 1fr;
        .col-1{
            border-right: none;
        }
        .col-2{
            .outil-telechargement{
                grid-column: span 2;
            }
        }
    }
}