/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    font-family: 'Montserrat', sans-serif;/* Définir une police de base */
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Votre style personnalisé va ici */
.language-link {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    z-index:3;
}
#header {
    min-height: 640px;
    background-color: #f2f2f2;
    background: url('images/banniere.jpg') center no-repeat;
    position: relative;
    padding-bottom: 150px;
    padding: 30px 0 150px;
}
#header::before {
    background-image: linear-gradient(180deg, #133c67 0%, #000000 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}
#header > div:not(.separator) {
    z-index: 1;
    position: relative;
}
.container.boxes-container {
    position: relative;
    margin-top: -160px;
    max-width: 1200px;
}
.logo-trapeze{
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    filter: brightness(10);
}
.separator {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    bottom: -1px;
    transform: rotate(180deg);
}
.separator svg{
    width: calc(100% + 1.3px);
    height: 105px;
    transform: translateX(0%) rotateY(180deg);
    z-index: -1;
    
}
.separator svg .elementor-shape-fill, .separator svg .elementor-shape-fill {
    fill: #FFFFFF;
    transform-origin: center;
    transform: rotateY(0deg);
}
h1 {
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.1;
    max-width: 865px;
    margin: 15px auto 30px;
}

.description {
    font-size: 20px;
    color: white;
    text-align: center;
    line-height: 2;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.box {
    text-align: center;
    max-width: 100%;
    padding: 60px 30px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 0 14px 2px #3d39390a;
    overflow: hidden;
}
.box a {
    position: relative;
    z-index: 1;
    text-decoration: none !important;
}
.box img {
    display: block;
    margin: 0 auto;
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.box h2 {
    font-size: 18px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    font-weight: 600;
}
.box:after{
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.5s ease;
    filter: blur(0px);
    transform: scale(1);
}

.box:hover:after{
    transition: all 0.5s ease;
    /* filter: blur(3px); */
    transform: scale(1.3);
}
.box:nth-child(1):after{
    background: url(images/bg-destination-ski.jpg) center no-repeat;
}

.box:nth-child(2):after{
    background: url(images/bg-jeterlancre.jpg) center no-repeat;
}

.box:nth-child(3):after{
    background: url(images/bg-en-voyage.jpg) center no-repeat;
}

.icon-list {
    position: fixed;
    left: 20px; /* Ajuster la position fixe */
    top: 500px; /* Centrer verticalement */
    transform: translateY(-50%);
  }
  
  .icon-list a {
    display: block;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff; /* Couleur des icônes */
    font-size: 24px; /* Taille des icônes */
    text-decoration: none;
    position:relative;
    padding: 15px 15px;
    border: 1px solid #ffffff;
    border-radius: 100%;
  }
  .icon-list a:hover {
      background: white;
      color: #4b4e6e;
  }
  
  .icon-list a:hover .icon-text {
      opacity: 1;
      position: absolute;
      left: 110%;
      transition: all 0.3s ease;
      color: white;
  }
  
  .icon-text {
      opacity: 0;
      position: absolute;
      left: 100%;
      top: 18px;
      font-size: 18px;
      font-weight: 600;
      margin-left: 10px;
      transition: all 0.3s ease;
      pointer-events: none;
  }

footer {
    background-color: #fff;
    color: #9b9a9a;
    padding: 10px 20px;
    text-align: center;
    margin-top: 110px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
}
@media screen and (max-width: 767px) {
   .icon-list a {
        color: #393939;
        border: 1px solid #393939;
    }
    .icon-list {
        position: relative;
        padding: 15px 0;
        display: flex;
        transform: none;
        align-items: center;
        justify-content: center;
        gap: 25px;
        left: 0;
        top: 0;
    }
    h1 {
        font-size: 1.4rem;
        line-height: 1.5;
    }
    .content {
        grid-template-columns: 1fr;
        padding: 50px 30px;
    }
    .logo-trapeze {
        width: 100%;
        max-width: 250px;
        margin: 0px auto 30px;
    }
    footer {
        margin-top: 0px;
    }
}