:root{
    /* COLORS */
    --gap : 6%;
    --radius : 12px;
}

.franchise-content main{
    min-height: unset;
}

.flexBloc{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--gap);
}
.flexBloc img{
    width: 100%;
}
.flexBloc-50{
    width: calc(50% - var(--gap)/2);
}
.flexBloc-60{
    width: calc(60% - var(--gap)/2);
}
.flexBloc-40{
    width: calc(40% - var(--gap)/2);
}
.flexBloc-25{
    width: calc(25% - var(--gap)/2);
}
.flexBloc > *{
  flex: var(--w, 1) 1 0; /* --w = poids (ratio) */
  min-width: 0;        /* important pour éviter le dépassement avec textes longs */
}


.franchise-img{
    border-radius: 10px;
    display: block;
    background-image: url(../img/franchise-lien-pdf.jpg);
    background-size: auto 100%;
    background-position: center left;
    aspect-ratio: 3/2;
    transition: all 0.3s ease;
}
.franchise-img:hover{
    opacity: 0.8;
    background-size: auto 110%;
}

.franchise ul.ul-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.franchise ul.ul-list li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}
.franchise ul.ul-list li::before {
  content: "•";
  margin-right: 12px;
  flex-shrink: 0;
  font-weight: 900;
  color: var(--col-red);
}

.bg-lightgray{
    background-color: #f9f9f9;
}

#videos-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(var(--gap)/3);
    margin-top: 2em;
}
#videos-flex>a{
    width: calc(25% - var(--gap)/4);
    text-align: center;
    margin-bottom: calc(var(--gap)/2);
}
#videos-flex>a b{
    display: block;
    line-height: 1;
    margin-bottom: .25em;
}
#videos-flex>a span{
    display: block;
    margin-bottom: 1em;
    line-height: 1.1;
}
#videos-flex>a img{
    width: 100%;
    border-radius: var(--radius);
}

#franchise-3 .flexBloc{
    gap: calc(var(--gap)/2);
    margin-top: 4em;
}

#franchise-3 .flexBloc img{
    border-radius: var(--radius);
}

#parcours-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3em;
    margin-bottom: 3em;
}
#parcours-flex>div{
    width: 24%;
    text-align: center;
    margin-bottom: 3em;
}
#parcours-flex>div b{
    height: 130px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    border: 2px solid;
    font-size: 2.85em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: .5em;
}
#parcours-flex>div span{
    font-size: 1.2em;
    line-height: 1.1;
    font-weight: 800;
}
#parcours-flex>div.arrow{
    font-size: 2.6em;
    color: var(--col-red);
    width: 8%;
}
#parcours-flex .arrow i{
    padding-top: 46px;
}
#parcours-flex>div:nth-child(6),
#parcours-flex>div:nth-child(7){
    opacity: 0;
    width: calc(8% + 3.99%);
}

#franchise-contact-flex{
    display: flex;
    justify-content: space-between;
    margin-top: 3em;
}
#franchise-contact-flex .col{
    width: 48%;
}
.required-note{
    margin-top: .8em;
    display: block;
}
#contact textarea, #franchise-contact textarea {
    min-height: 180px;
}
#franchise-contact-flex .actions{
    display: flex;
    justify-content: space-between;
}
#franchise-contact-flex .actions .contact-agences-li{
    width: 100%;
    margin: 0 0 0 2em;
}
#franchise-contact-flex #contact-submit-button{
    white-space: nowrap;
}


@media screen and (max-width: 1079px) {

.flexBloc{
    flex-direction: column;
}
.franchise-img {
    width: 100%;
}

#videos-flex {
    gap: 0;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
}
#videos-flex>a {
    width: 80%;
    margin-bottom: 2em;
}
#videos-flex>a:last-child{
    margin-bottom: 0;
}

#franchise-3 .flexBloc {
    gap: 0;
    margin-top: 3em;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}
#franchise-3 .flexBloc > * {
    flex: unset;
}

#franchise-3 .flexBloc img {
    width: 48%;
    margin-bottom: 1em;
}
#franchise-3 .flexBloc img:nth-child(3) {
    width: 100%;
    margin-bottom: 0;
}

#parcours-flex {
    margin-bottom: 1em;
}
#parcours-flex>div {
    width: 46%;
}
#parcours-flex>div:nth-child(6),
#parcours-flex>div:nth-child(7){
    opacity: 1;
    width: unset;
}
#parcours-flex>div:nth-child(4),
#parcours-flex>div:nth-child(7),
#parcours-flex>div:nth-child(9){
    display: none;
}

#parcours-flex>div.arrow {
    font-size: 2em;
    width: 6%;
}

#parcours-flex>div b {
    height: 110px;
    font-size: 2.5em;
}
#parcours-flex .arrow i {
    padding-top: 38px;
}

#franchise-4 p:last-child{
    margin-bottom: 0;
}


#franchise-contact-flex {
    flex-direction: column;
}
#franchise-contact-flex .col{
    width: 100%;
}
#franchise-contact-flex .actions{
    flex-direction: column;
    align-items: center;
}
#franchise-contact-flex .actions>div{
    margin-bottom: 2em;
}
#franchise-contact-flex .actions .contact-agences-li {
    width: 100%;
    margin: 0;
}

}