
.DivDoc {
    margin-inline: 20%;
    margin-top: 150px;
}

.sous_div_doc {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.sous_div_doc_secret {
    width: 100%;
    display: flex;
    flex-direction: column;
}

h3 {
    padding-left: 20px;
    line-height: 1.5;
}

.CatDoc ul {
    padding-left: 40px;  
}

li a {
    font-size: 0.9rem;
}

.CatDoc {
    position: relative;
    display: grid;
    cursor: pointer;
    padding: 20px 0 20px 0;
    border-top: 1px solid silver;
    height: 100%;
    border-right: 1px solid silver;
    border-left: 5px solid #2F4D89;
}

.CatDoc i {
    position: absolute;
    right: 20px;
    top: 20px;
    pointer-events: auto;
    rotate: 0deg;
    transition: transform .4s ease-in-out;
    
}

.rotate {
    transform: rotate(90deg);
    transition: transform .4s ease-in-out;
}

.main_div_doc {
    display: flex;
    align-items: center;
    justify-content: space-around;
}


.imgdoc img{
    width: 25rem;
}

.flexTitre{
    display: flex;
    
    
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
}

.flexDrapeaux{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.drapeaux{
    margin-right: 5%;
}

.drapeauxDuo{
    display: flex;
}

.drapeauxDuoEspacement{
    margin-right: 8%;
    height: 20px;
}

.drapeauIcone{
    display: flex;
}

.CatDoc ul.noPadding{
    padding: 0;
}

@keyframes growDown {
    0% {
        transform: scaleY(0)
    }
    100% {
        transform: scaleY(1)
    }
}

.CatDoc:last-child {
    border-bottom: 1px silver solid;
    border-radius:  0px 0px 5px 5px;
}

.CatDoc:first-child {
    border-radius: 5px 5px 0px 0px;
}


.bloc_mention h1 {
    text-align: center;
    color: #2F4D89;
    font-weight: bold;
}

.bloc_mention h3 {
    text-decoration: underline;
}

.bloc_mention button {
    color: white;
    background-color: #243C6A;
    border-color: transparent;
    border-radius: 5px;
    cursor: pointer;
}

.mention {
    margin-inline: 20%;
    margin-top: 150px;
}

@media (min-width:1024px) {
    .CatDoc i {
        font-size: 1.5rem;
    }
}

@media (max-width:800px){
    .sous_div_doc {
        width: 100%;
        padding-left: 0%;
    }
    .drapeauxDuoEspacement{
        height: 15px;
    }
    .main_div_doc {
        display: flex;
        flex-direction: column;
    }
    .mention {
        margin-inline: 5%;
    }
} 

@media (max-width:600px){
    .sous_div_doc {
        width: 100%;
        padding-left: 0%;
    }
    li a {
        font-size: 0.7rem;
    }
} 


    
