
/* Ordinateur */
@media (min-width: 769px) {
    /* Styles à appliquer pour un ordinateur */
    body{
        overflow-x: hidden;
    }
  }
  
  /* Téléphone en orientation portrait */
  @media (max-width: 768px) and (orientation: portrait) and (pointer: coarse) and (hover: none) {
    /* Styles à appliquer pour un téléphone en orientation portrait */
    body{
        overflow-x: hidden;
    }
  }
  /* Téléphone en orientation paysage */
  @media (max-width: 768px) and (orientation: landscape) and (pointer: coarse) and (hover: none) {
    /* Styles à appliquer pour un téléphone en orientation paysage */
    body{
        overflow-x: hidden;
        overflow-y: scroll;
    }
  }  
  /* Téléphone en orientation paysage */
  @media (min-width: 769px) and (orientation: landscape) and (pointer: coarse) and (hover: none) {
    /* Styles à appliquer pour un téléphone en orientation paysage */
    body{
        overflow-x: hidden;
        overflow-y: scroll;
    }
  }
.section-maintenance{
    position: relative;
    width: 100vw;
    height: max-content;
    min-height: 100vh;
}
.floral-decoration{
    width: 25%;
    height: auto;
    margin: 10px;

}
.floral-decoration-1{
    position: absolute;
    bottom: 0;
    left: 0;
}
.floral-decoration-2{
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(180deg);
}
.macaron-decoration{
    position: absolute;
    width: 10%;
    min-width: 50px;
    height: auto;
    margin: 10px;
    right: 0;
    bottom: 0;
}
.macaron-decoration img{
    width: 100%;
}

.content-hero{
    position: relative;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* height: 95%; */
    align-items: center;
    justify-content: center;
    text-align: center;

}
.content-hero h1{
    font-family: "Dynapuff";
    color: #594128;
    font-size: calc(15pt + 3.6vw);
    margin-bottom: 15px;
    margin-top: 50px;
}

.content-hero h2{
    font-family: "Dynapuff";
    color: #594128;
    font-size: calc(11pt + 0.5vw);
    width: 80%;
    margin: 15px;
    text-shadow: none;
}
.content-hero p{
    font-family: "Dynapuff";
    color: #594128;
    font-size: calc(10pt + 0.5vw);
    width: 80%;
    margin: 15px;
}
.content-hero .img-rabbit{
    display: block;
    width: 18%;
    min-width: 75px;
}
.content-hero .link-picto{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 50%;
    margin: 25px;
}
.content-hero .link-picto .btn-link{
    cursor: pointer;
}
.content-hero .link-picto img{
    width: 5vw;
    min-width: 50px;
    transition: 0.5s;
}
.content-hero .link-picto img:hover{
    transform: scale(1.2);
    filter: drop-shadow(0px 0px 10px #594128);
}
