section {
    padding: 50px 0;
}

.inner {
    width: 70%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    font-size: 1.2em;
}

.infos {
    background-color: var(--secondary-color);
    color: var(--primary-text-color);
}

.infos .inner {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.infos .text {
    flex-basis: 60%;
    flex-grow: 1;
}

.infos img {
    flex-basis: 25%;
    flex-grow: 1;
    min-width: 250px;
    max-width: 300px;
    height: auto;
}

.plan {
    background-color: var(--primary-color);
    color: var(--secondary-text-color);
}

.plan .inner {
    display: flex;
    justify-content: center;
    align-items: stretch;
    font-weight: bold;
    flex-wrap: wrap;
    gap: 50px;
}

.plan .wrapper {
    max-width: 600px;
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.plan .adresse {
    text-align: center;
}

.plan .wrapper img {
    height: 400px;
}

.horaires {
    background-color: var(--secondary-color);
    color: var(--primary-text-color);
}

.horaires .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

.horaires .wrapper {
    flex: 1 1 40%;
}

.horaires .wrapper * {
    display: block;
    text-align: center;
}

a {
    color: var(--primary-text-color);
    font-weight: 500;
}

@media only screen and (max-width: 1000px) {
    .inner {
        width: 95%;
    }
    
    .plan .wrapper img, .plan .wrapper iframe {
        width: 100%;
    }

    .plan .wrapper img {
        height: auto;
    }
}

@media only screen and (max-width: 700px) {
    .horaires .inner {
        flex-direction: column;
    }

    .horaires .wrapper {
        flex: 1 1 100%;
        width: 100%;
    }
    
}