<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Ubuntu&amp;display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    font-family: 'Ubuntu';
}

body {
    /*background: rgb(255, 225, 225);
    background: linear-gradient(0deg, rgba(255, 225, 225, 1) 0%, rgba(255, 255, 255, 1) 100%);*/
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: #fff;
}

/*################################################## HEADER ########################################################################*/

header{
    margin-top : 40px;
}

.contWelcome {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    padding: 0 40px;
}

.contIllustrationGarage {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contWelcome img {
    width : 600px;
    max-height : 450px;
}

.contIntroduction {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 300px;
    padding: 20px 20px;
}

p#animated {
    text-transform: uppercase;
    color: #222;
    font-weight: 900;
    color: transparent;
    font-size: 0px;
}

p#animated span {
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-size: clamp(20px, 4vw, 120px);
}

p#animated span::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateX(-100%);
}

p#animated:nth-child(1) {
    font-weight: 300;
    animation: txt-appearance 0s 0.6s forwards;
}

p#animated:nth-child(2) {
    animation: txt-appearance 0s 0.6s forwards;
}

p#animated:nth-child(1) span::after {
    background: #A03232;
    animation: slide-in 0.40s ease-out forwards,
        slide-out 0.75s 0.6s ease-out forwards;
}

p#animated:nth-child(2) span::after {
    background: #000;
    animation: slide-in 0.40s ease-out forwards,
        slide-out 0.75s 0.6s ease-out forwards;
}

p.description,
p#whatWeDo {
    font-size: clamp(10px, 1vw, 20px);
}

p.description {
    margin-top: 20px;
}

@keyframes slide-in {
    100% {
        transform: translateX(0%);
    }
}

@keyframes slide-out {
    100% {
        transform: translateX(110%)
    }
}

@keyframes txt-appearance {
    100% {
        color: #222;
    }
}

.contPresentations {
    padding: 0 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    margin-top: 12vh;
}

.contPresentations a#aboutMe {
    background-color: #A03232;
    color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    gap: 10px;
    transition: .5s;
    border: 2px solid #601e1e;
}

.contPresentations a#aboutMe:hover {
    background-color: #872a2a;
}

.contPresentations a img {
    height: 17px;
}

.contPresentations img#arrow {
    height: 30px;
    margin-top: 50px;
}

@media (max-width: 1200px){
   .contWelcome img {
      max-height : none;
      max-width : 380px;
   }
}

@media (max-width: 1400px) {

    p.description,
    p#whatWeDo {
        font-size: clamp(15px, 1vw, 20px);
    }

    .contPresentations {
        padding: 0 40px;
    }

}

@media (min-width: 1600px){
   .contIntroduction{
      padding: 20px 130px 20px 20px;
  }
}

@media (max-width: 950px) {
  .contWelcome img {
      max-width : none;
   }
    header{
        margin-top: 20px;
    }

    .contWelcome {
        flex-direction: column;
    }

    .contIntroduction {
        justify-content: center;
        height: fit-content;
        padding: 0;
    }

    .contIllustrationGarage {
        height: fit-content;
	width: 100%;
    }

    .bottomH1 {
        margin-bottom: 20px;
    }

    .description {
        margin-bottom: 20px;
    }

    .contWelcome img {
        width: 80vw;
        max-width : 400px;
	max-height: none;
    }

    p.description {
        font-size: clamp(12px, 3vw, 10px);
        text-align: center;
    }

    p#animated {
        font-size: clamp(30px, 4vw, 100px);
        text-align: center;
    }

    .contPresentations {
        margin-top: 10vh;
    }

    .contPresentations a#aboutMe {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .contPresentations a img {
        height: 10px;
    }
}

@media (max-width: 500px) {
    p#animated {
        font-size: clamp(25px, 4vw, 120px);
        text-align: center;
    }
}

/*################################################## END HEADER ########################################################################*/

/*------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------*/

/*################################################## MAIN ########################################################################*/

main {
    margin-top: 150px;
}

main h2 {
    text-decoration: underline;
    color: #A03232;
}

.contFindUs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    margin-top: 140px;
}

.contFindUs a {
    background-color: #A03232;
    color: #fff;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .5s;
    border: 2px solid #601e1e;
    margin-bottom: 110px;
    padding: 10px 15px;
    gap: 10px;
}

.contFindUs a:hover {
    background-color: #872a2a;
}

iframe {
    height: 300px;
    width: 80vw;
}

#itinerary img {
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width : 950px) {
    .contFindUs a {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

.wrapper {
    display: flex;
    max-width: 1200px;
    position: relative;
}

.wrapper i {
    top: 50%;
    height: 44px;
    width: 44px;
    color: #fff;
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #A03232;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
    z-index: 900;
}

.wrapper i:active {
    transform: translateY(-50%) scale(0.9);
    background: #872a2a;
}

.wrapper i:hover {
    background: #872a2a;
}

.wrapper i:first-child {
    left: -22px;
    display: none;
}

.wrapper i:last-child {
    right: -22px;
}

.wrapper .carousel {
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.carousel.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

.carousel .contImg {
    position: relative;
    display: inline-block;
    height: 340px;
    user-select: none;
    margin-left: 14px;
    width: calc(100% / 3);
    transition: .5s;
    vertical-align: top;
    margin-right: 10px;
}

.carousel .contImg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #31313197;
    z-index: 5;
    transition: background 0.5s ease;
}

.carousel .contImg:hover::after {
    background: transparent;
}

.carousel .contImg:hover {
    z-index: 100;
}


.carousel .contImg p {
    position: absolute;
    /* Positionne le texte absolument par rapport Ã&nbsp; .contImg */
    top: 50%;
    /* Centrer verticalement */
    left: 50%;
    /* Centrer horizontalement */
    transform: translate(-50%, -50%);
    /* DÃ©cale le texte pour le centrage parfait */
    color: #fff;
    /* Couleur du texte (blanc pour la visibilitÃ©) */
    font-size: 1.2em;
    /* Taille du texte */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Ombre du texte pour augmenter la lisibilitÃ© */
    z-index: 10;
}

.carousel .contImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.carousel.dragging .contImg img {
    pointer-events: none;
}

.carousel .contImg:hover {
    scale: 1.05;
    background-color: rgba(0, 0, 0, 0.5);
    /* Couleur de la superposition sombre */
    opacity: 0.8;
    /* Vous pouvez ajuster l'opacitÃ© selon vos besoins */
}

.carousel .contImg:first-child {
    margin-left: 0px;
}

.contServices {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.carousel {
    cursor: pointer;
    white-space: nowrap;
    scroll-behavior: smooth;

}

.carousel .contImg {
    position: relative;
    display: inline-block;
    height: 340px;
    margin-left: 0;
    width: calc(100% / 3);
    transition: .5s;
    vertical-align: top;
    scroll-snap-align: start;
}

.contImg a {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 340px;
    text-align: center;
    width: 400px;
    line-height: 630px;
    z-index: 100;
    color: #fff;
    text-shadow: 1px 1px #A03232;
    text-decoration: underline;
}

h2 {
    font-size: 1.5rem;
}

.contPopup {
    background-color: #3d0000aa;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contPopup p {
    color: #A03232;
    text-decoration: underline;
}

#popupImportant {
    background-color: #fff;
    width: 80vw;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px;
    text-align: center;
}

#popupImportant button {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0;
    padding: 7px 10px;
    border: 2px solid #601e1e;
    color: #fff;
    background-color: #A03232;
    transition: .3s;
}

#popupImportant button:hover {
    background-color: #b84444;
}

#popupImportant button img {
    height: 20px;
}

#popupImportant button:hover {
    cursor: pointer;
}

#important{
    text-align: center;
    color: #A03232;
    margin-top: 20px;
    font-size: 1.5rem;
    padding: 0 50px;
    text-decoration: underline;
}

#scrollToTop{
    color: #A03232;
}

@media (max-width : 1400px) {
    .wrapper {
        max-width: 1100px;
    }
}

@media (max-width : 1250px) {
    .wrapper {
        max-width: 900px;
    }

    .carousel .contImg {
        width: calc(100% / 2);
    }
}

@media (max-width : 1060px) {
    .wrapper {
        max-width: 700px;
    }
}

@media (max-width : 900px) {
    .wrapper {
        max-width: 500px;
    }

    .carousel .contImg {
        width: calc(100% / 1);
    }
}

@media (max-width : 600px) {
    .wrapper {
        max-width: 400px;
    }

    h2 {
        font-size: 1.1rem;
    }
}

@media (max-width : 500px) {
    .wrapper {
        max-width: 300px;
    }
}

@media (max-width : 370px) {
    .wrapper {
        max-width: 300px;
    }

    h2 {
        font-size: 1rem;
    }
}

/*################################################## END MAIN ########################################################################*/

/*------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------*/</pre></body></html>