.agence-pre-title{
    font-family: var(--font-main);
    font-weight: 200;
    font-size: 22px;
    text-transform: uppercase;
}

.agence-title{
    font-size: 44px;
    color: var(--col-red);
    text-transform: uppercase;
}

#agence-bloc{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 64px;
    margin-top: 32px;
}

.agence-bloc-left{
    width: 66%;
    display: block;
}
.agence-bloc-right{
    width: 33%;
}

#agence-horaires{
    margin-top: 1em;
    margin-bottom: 1em;
}
#agence-horaires strong{
    color: var(--col-red);
    text-transform: uppercase;
}
#agence-horaires table td{
    padding: .05em .7em;
}
.hor-tab-jour{
    text-align: right;
}

.agence-bloc-left img{
    width: 100%;
}

#agence-bloc-contact{
    background-color: #e6e6e6;
    padding: 32px;
    display: inline-block;
    border: 1px solid #c0c0c0;
    border-right: none;
    border-left: none;
    position: relative;
    margin-top: 32px;
}

.agence-bloc-right h5{
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}

.agence-bloc-right h6{
    color: var(--col-red);
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    position: absolute;
    top:-20px;
}

.agence-bloc-right ul{
    list-style-type: none;
}

#agence-bloc-contact li{
    position: relative;
    padding-left: 2em;
}
#agence-bloc-contact li:not(:last-child){
    margin-bottom: 1em;
}
#agence-bloc-contact li:first-child{
    margin-top: .5em;
}

#agence-bloc-contact li>span{
    color: var(--col-red);
    position: absolute;
    left: -.5em;
    width: 2em;
    text-align: center;
    font-size: 110%;
}

a.btn-contact-agence{
    margin-top: 2em;
    background-color: transparent;
    border: 2px solid var(--col-red);
    color: var(--font-main);
    font-weight: 600;
}
a.btn-contact-agence:hover{
    background-color: var(--col-red);
    color: white;
    background-image:none;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
  .image-wrapper img {
    height: auto;
    display: block;
  }
  
  .image-wrapper::before,
  .image-wrapper::after {
    content: "";
    position: absolute;
    background-color: var(--col-red); /* rouge Euromat */
    z-index: -1;
  }
  
  /* Bande rouge en bas */
  .image-wrapper::before {
    bottom: -12px;
    right: -12px;
    width: 50%;
    height: 12px;
  }
  
  /* Bande rouge à droite */
  .image-wrapper::after {
    bottom: -12px;
    right: -12px;
    height: 50%;
    width: 12px;
  }