/* ### GENERAL ### */
.association h2 {
    font-size: 36px;
}
.association > section {
    margin-bottom: 80px;
}
.association > section p{
    font-size: 16px;
    line-height: 1.3;
}
.association > section a{
    text-decoration: underline;
}
.association > section .btn-black-fill{
    text-decoration: none;
}
.inner-section {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
}
.col-left, .col-right {
    flex: 1 1 45%;
}
.inner-section h3 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}
.inner-section h3 img {
    width: 45px;
    margin-right: 15px;
}
.inner-section img {
    object-fit: cover;
    border-radius: 10px;
    height: 100%;
}
.inner-section li {
    font-size: 16px;
}
.inner-section ul{
    padding-left: 15px;
}

/* ### TROIS MAISONS ### */
.first-section h2{
    color: var(--primary-color);
}
.first-section .inner-section {
    /* padding: 30px; */
    border-radius: 15px;
    /* box-shadow: 0px 0 15px rgba(0,0,0,0.15); */
}
.first-section .col-left {
    margin-bottom: 8px;
}
.first-section .inner-section .btn-black-fill{
    margin-top: 5px;
}
.first-section .inner-section .discover{
    margin-top: 8px;
}
.first-section .inner-section.rose .btn-black-fill {
    background-color: var(--primary-color);
}
.first-section .inner-section.rose .btn-black-fill:hover{
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #fff;
}
.first-section .inner-section.jaune .btn-black-fill{
    background-color: var(--second-color);
    color: var(--default-text-color);
}
.first-section .inner-section.jaune .btn-black-fill:hover{
    border-color: var(--second-color);
    color: var(--second-color);
    background-color: var(--default-text-color);
}
.first-section .inner-section.bleu .btn-black-fill{
    background-color: var(--fourth-color);
}
.first-section .inner-section.bleu .btn-black-fill:hover{
    border-color: var(--fourth-color);
    color: var(--fourth-color);
    background-color: #fff;
}
.first-section > p {
    margin-bottom: 20px;
}
.first-section .inner-section:nth-child(2n) {
    flex-direction: row-reverse;
}
.first-section .inner-section:last-child{
    margin-bottom: 0;
}
.first-section p {
    font-size: 14px;
    line-height: 1.3;
}

/* ### DEUXIEME SECTION ### */
.second-section h2 {
    color: var(--fifth-color);
}
.project .wrapper-section-content {
    /* columns: 2; */
}
.second-section .btn-black-fill {
    margin-top: 20px;
    display: block;
    width: fit-content;
}
/* .date-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
 } */
.date-item {
    margin-bottom: 10px;
    margin-left: 30px;
    position: relative;
 }
 /* .date-item .dote {
    position: relative;
    width: 25px;
    height: 25px;
    display: inline-block;
    background-color: var(--fourth-dark-color);
    border-radius: 50px;
    margin-right: 15px;
} */

.date-item .dote {
    position: relative;
    width: 25px;
    height: 25px;
    display: inline-block;
    background-color: var(--fourth-dark-color);
    border-radius: 50px;
    margin: auto 0;
    position: absolute;
    left: -35px;
    right: 0;
    top: 0;
    bottom: 0;
}
.date-item .dote:after {
    content: '';
    position: absolute;
    top: calc(100% - 3px);
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 41px;
    border-radius: 5px;
    background-color: var(--fourth-dark-color);
}
.date-item:last-child .dote:after{
    height: 33px;
    display: none;
}
.date-item p {
    font-size: 16px;
}
.dates-section .date-item .event {
    box-shadow: 0px 0 15px rgba(0,0,0,0.1);
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
}
.dates-section .date-item .event span {
    font-weight: 900;
    font-size: 16px;
    background-color: #fff;
    margin-right: 5px;
}
.inner-section.history .p4 {
    margin-top: 35px;
}
.inner-section.elus li {
    display: inline-block;
    padding: 10px 15px;
    box-shadow: 0px 0 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    margin-bottom: 5px;
}
.inner-section.elus ul {
    padding: 0;
}
.elus .inner-section-content .btn-black-fill {
    margin-top: -1px;
    display: inline-block;
}

/* ### TROISIEME SECTION ### */
.thrid-section h2 {
    color: var(--fourth-dark-color);
}
.thrid-section .inner-section {
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}
.thrid-section .inner-section:nth-child(3) {
    margin-bottom: 50px;
}
.members-section {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
}
.member-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0 15px rgba(0,0,0,0.15);
    flex: 1 1 20%;
}
.member-item img {
    height: 100px;
    width: 100px;
    border-radius: 50px;
    background-color: red;
}
.member-desc {
    width: 100%;
    margin-top: 10px;
}
.member-item .member-desc p {
    font-size: 13px;
    margin: 0;
}
.member-desc .name {
    font-weight: 900;
}

/* ### QUATRIEME SECTION ### */
.fourth-section h2{
    color: var(--third-dark-color);
}
.fourth-section .inner-section {
    flex-direction: column;
    gap: 0;
}
.place{
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}
.place-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 6px;
    border-radius: 50%;
    min-width: 12px;
}
.place-color.color-rose {
    background: var(--primary-color);
}
.place-color.color-jaune {
    background: var(--second-color);
}
.place-color.color-bleu {
    background: var(--fourth-color);
}

.fourth-section .member-item {
    position: relative;
    transition: .2s;
}
.fourth-section .member-item:hover {
    background-color: var(--third-dark-color);
    color: #fff;
}
.fourth-section .member-item img {
    background: none;
    border-radius: 0;
    max-height: 150px;
    width: 100%;
    object-fit: contain;
}
.emphasis{
    box-shadow: 0px 0 15px rgba(0,0,0,0.1);
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
}
