* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

:root {
    --swiper-navigation-size: 25px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: 'prev';
    height: 26px;
    width: 15px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'next';
    height: 26px;
    width: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;

}

/* NAVBAR + HEADER  */

header {
    height: 100vh;
    width: 100%;
    background-image: url("../assets/Home_7.jpg");
    background-size: cover;
    position: relative;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.header-content h2 {
    font-size: 2rem;
    margin-bottom: 5rem;
}

.header-content .reserve-btn {
    cursor: pointer;
    font-size: 1.5rem;
    border: 0;
    background: transparent;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 20px 50px;
    border-radius: 30px;
}

.header-content .reserve-btn::after {
    content: "";
    width: 400px;
    height: 400px;
    position: absolute;
    top: -150px;
    left: -50px;
    background-image: -webkit-linear-gradient(225deg, #f6a43d 0%, #f0823b 33%, #dc3e6c 66%, #a22d96 100%);
    background-image: linear-gradient(225deg, #f6a43d 0%, #f0823b 33%, #dc3e6c 66%, #a22d96 100%);
    z-index: -1;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}

.header-content .reserve-btn:hover::after {
    -webkit-transform: rotate(150deg);
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    transform: rotate(150deg);
}

.navbar-logo img {
    width: 60%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    /* margin: 1% 20px 0 1%; */
}

.navbar-logo img.small {
    width: 40%;
    margin-top: 1.5%;
}

.navbar {
    position: fixed;
    height: 15%;
    top: 0;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    z-index: 100;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
}

.navbar>* {
    flex: 1;
}

.navbar.opaque {
    background-color: #25242f;
    opacity: 1;
    height: 70px;
}

.navbar a {
    color: white;
    font-size: 1.5vw;
    -webkit-transition: font-size 0.5s;
    -moz-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
}

.navbar a.small {
    font-size: 1.2vw;
}

.navbar .dropdown .drop .langs a {
    color: white;
    font-size: 1.2vw;
    -webkit-transition: font-size 0.5s;
    -moz-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
}

.navbar .dropdown .drop .langs a.small {
    font-size: 0.9vw;
}

.navbar .nav-links {
    display: flex;
    justify-content: center;
}

.navbar .dropdown {
    text-align: right;
    position: relative;
}

.navbar .dropdown a:hover {
    cursor: pointer;
}


.navbar .nav-links ul {
    -webkit-transition: margin-right 0.5s;
    -moz-transition: margin-right 0.5s;
    -o-transition: margin-right 0.5s;
    transition: margin-right 0.5s;
}

.navbar .nav-links ul li {
    position: relative;
    margin: 0 25px;
    white-space: nowrap;
}

.fa-chevron-down {
    transform: scale(0.6);
}


#service-link:after {
    border-bottom: none;
    transition: none;
}

.navbar .nav-links ul li:after {
    display: block;
    content: '';
    border-bottom: solid 2px white;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
}

.navbar .nav-links ul li:hover:after {
    transform: scaleX(1);
}

.navbar .nav-links ul li.dark {
    color: #25242f;
}

.navbar .nav-links ul li.active {
    border-bottom: white 2px solid;
    font-weight: 600;
}

.navbar .nav-links ul li.active::after {
    border-bottom: none;
    transition: none;
}


.navbar .dropdown ul li a:hover {
    opacity: 0.5;
}


.navbar .nav-bars-btn {
    display: none;
    position: absolute;
    right: 15%;
}

.navbar .dropdown .drop {
    display: none;
    text-align: left;
    position: absolute;
    right: 0;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -o-transition: width 0.5s;
    transition: width 0.5s;
}

#service-link .drop {
    text-align: left;
    width: 200%;
    left: 0;
}

#service-link ul li:after {
    border-bottom: none;
    transition: none;
}

.navbar #service-link:hover>.drop {
    /* background: white; */
    height: 300%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    -webkit-animation: fadeIn .3s ease;
    -moz-animation: fadeIn .3s ease;
    -o-animation: fadeIn .3s ease;
    animation: fadeIn .3s ease;
}



#service-link .langs a:hover {
    opacity: 1;
    color: #F07C3B;
    /* color: white; */
    text-decoration: underline;
}


/* #service-link a.small + .drop {
    top: 50px;
} */


.navbar .dropdown .drop.small {
    width: 20%;
}

.navbar .dropdown ul li {
    clear: both;
    list-style: none;
    display: block;
    padding: 0 10px;
    margin: 5px;
    width: 100%;
    font-size: 20px;
}

.navbar .dropdown ul li.small {
    font-size: 0.9rem;
}

.navbar .dropdown:hover>.drop {
    background: #25242f;
    border-radius: 10px;
    display: flex;
    /* height: 200%; */
    flex-direction: column;
    -webkit-animation: fadeIn .3s ease;
    -moz-animation: fadeIn .3s ease;
    -o-animation: fadeIn .3s ease;
    animation: fadeIn .3s ease;
}


.navbar .nav-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .langs {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.langsHidden {
    display: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 1084px) {
    .navbar .nav-links ul li {
        margin: 0 25px;
        font-size: 25px;
    }

    .navbar-logo img {
        width: 100%;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        margin: 1% 0 0 1%;
    }

    .navbar {
        padding: 10px;
    }

}

@media (max-width: 520px) {
    .navbar {
        padding: 80px 0 0 0;
    }

    svg {
        width: 100px;
        height: 50px;
    }

    .navbar-logo {
        position: relative;
    }

    .navbar-logo img {
        width: 70%;
        position: absolute;
        left: 40%;
        transform: translate(-50%, -50%);
        margin: 0;
    }

    .navbar-logo img.small {
        width: 70%;
        position: absolute;
        top: 45px;
        left: 40%;
        transform: translate(-50%, -50%);
        margin: 0;
    }

    .navbar .nav-links ul li.dropdown {
        width: inherit;
    }

    .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .nav-links.show-links {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-bars-btn {
        display: block;
    }

    .navbar .nav-links ul li {
        margin: 25px 0;
        /* font-size: 1.5em; */
    }

    .navbar.opaque .nav-links ul li.active {
        border-bottom: #25242f 2px solid;
        font-weight: 600;
    }

    .navbar .nav-links ul li:after {
        border-bottom: none;
    }

    .navbar .nav-links ul li a {
        font-size: 1em;
    }

    .header-content h1 {
        font-size: 2.2rem;
        width: 300px;
        margin: 8rem 0 2rem 0;
    }

    .header-content h2 {
        font-size: 1rem;

    }

    .header-content .reserve-btn {
        font-size: 1rem;
        margin-top: 50px;
    }

    .header-content .reserve-btn:hover::after {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .navbar .nav-links ul li:hover>.drop {
        background: none;
        display: flex;
        flex-direction: column;
    }

    .navbar .nav-links ul li ul li {
        padding: 0 0;
    }

    .langsHidden {
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
    }

    .hiddenDropdown {
        display: none;
    }

    .navbar .nav-links .dropdown .drop {
        width: 100%;
    }

    .navbar .nav-links .dropdown .drop .langs li {
        margin: 0 10px;
    }

    .navbar .nav-links ul li:hover {
        border-bottom: none;
    }

    .navbar .dropdown .drop .langs a {
        font-size: 1rem !important;
    }

    #service-link {
        display: flex;
    }

    .navbar #service-link {
        margin-bottom: 25px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .navbar #service-link:hover,
    .navbar #service-link:active {
        margin-bottom: 80px;
    }

    .navbar #service-link:hover>.drop,
    .navbar #service-link:active>.drop {
        width: 100%;
        height: 100%;
        margin-top: 50px;
        box-shadow: none;
    }

    #service-link .langs a {
        color: white;
    }

    .navbar.opaque #service-link .langs a {
        color: #25242f;
    }
}

@media (max-width: 768px) and (min-width: 520px) {
    .navbar {
        padding: 0;
    }

    svg {
        width: 200px;
        height: 100px;
    }

    .navbar-logo img {
        max-width: 60%;
        margin-left: 0;
    }

    .navbar .nav-links ul li.dropdown {
        width: inherit;
    }

    .navbar-logo {
        position: absolute;
        top: 20px;
        left: 50px;
    }

    .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .nav-links.show-links {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-bars-btn {
        display: block;
        /* top: 75px; */
        right: 80px;
    }

    .navbar .nav-links ul li {
        margin: 25px 0;
        font-size: 1.5em;
    }

    .header-content h1 {
        font-size: 2rem;

    }

    .header-content h2 {
        font-size: 1rem;

    }

    .header-content .reserve-btn {
        font-size: 1rem;
    }

    .header-content .reserve-btn:hover::after {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .navbar .nav-links ul li:hover>.drop {
        background: none;
        display: flex;
        flex-direction: column;
    }

    .navbar .nav-links ul li ul li {
        padding: 0 0;
    }

    /* .navbar .nav-links ul li .drop {
        left: 0;
    } */
}

/* A L'ABORDAGE */

.abordage {
    /* box-sizing: border-box; */
    display: flex;
    margin-top: 150px;
    margin-bottom: 150px;
}

.abordage h2 {
    flex: 1;
    margin-left: 15%;
    font-size: 3em;
}

.abordage p {
    flex: 1;
    margin-right: 5%;
    font-size: 1.5em;
}

@media (max-width: 768px) {
    .abordage {
        flex-direction: column;
        margin: 50px 20px;
    }

    .abordage h2 {
        margin-left: 0;
        text-align: center;
        margin-bottom: 40px;
        font-size: 2em;
    }

    .abordage p {
        margin-right: 0;
        text-align: center;
        font-size: 1em;
    }
}

.carousel-mobile {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #F7F6F7;
    position: relative;
}

.carousel-mobile h1 {
    text-align: center;
    font-size: 2em;
    /* margin-bottom: 10px; */
}

.carousel-mobile h2 {
    text-align: center;
    font-size: 1.5em;
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    .carousel-mobile {
        padding-top: 80px;
        padding-bottom: 80px;
        background-color: #F7F6F7;
        position: relative;
    }

    .carousel-mobile h1 {
        text-align: center;
        font-size: 1.5em;
        /* margin-bottom: 10px; */
    }

    .carousel-mobile h2 {
        text-align: center;
        font-size: 1.2em;
        padding-bottom: 20px;
    }

    .carousel-mobile .custom-owl-nav {
        display: none;
    }
}

/* CAROUSEL */
.carousel {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #F7F6F7;
}

.carousel h1 {
    text-align: center;
    font-size: 2em;
    /* margin-bottom: 10px; */
}

.carousel-wrapper {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide {
    margin-right: 30px;
    margin-left: 30px;
    /* width: 500px !important; */
    height: 60vh;
}

.slide-container {
    /* max-width: 1120px; */
    width: 100%;
    height: 600px;
    padding: 40px 10%;
}

.slide-content {
    overflow: hidden;
    margin: 0 60px;
    border-radius: 25px;
}

.card {
    width: 30%;
    /* height: 600px; */
    border-radius: 25px;
    background-color: #fff;
    overflow: hidden;
}

.image-content {
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
    background-color: transparent;
    height: 50%;
}

.card-image {
    position: relative;
    height: 50%;
    width: 100%;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image .card-img {
    width: 100%;
    height: 50% !important;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}


.name {
    font-size: 1.5rem;
    /* margin-top: 30px; */
    /* font-weight: 500; */
    color: #333;
}

.description {
    margin-top: 20px;
    font-size: 16px;
    color: #707070;
    text-align: center;
    font-weight: 700;
}


@media (max-width: 768px) {
    .swiper-slide {
        width: 100% !important;
        height: 400px !important;
        margin-right: 0;
        margin-left: 0;
    }

    .slide-container {
        height: auto;
    }

    .card {
        width: 100%;
        height: auto;
        margin: 30px 0;
    }

    .swiper-wrapper {
        display: block;
    }

    .experience-cards-content {
        margin: 0;
    }
}

.swiper-nav-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: -webkit-linear-gradient(45deg, #f6a43d, #a22d96);
    background: linear-gradient(45deg, #f6a43d, #a22d96);
    z-index: 1;
    opacity: 1;
}

.swiper-nav-btn:hover {
    opacity: 0.8;
}


.swiper-button-next {
    color: #fff;
    right: 8%;
    top: 50%;
}


.swiper-button-prev {
    color: #fff;
    left: 8%;
    top: 50%;
}


.swiper-pagination-bullet {
    background-color: #f0823b;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #dc3e6c;
}

@media screen and (max-width: 520px) {
    .swiper-nav-btn {
        display: none;
    }

    .name {
        font-size: 1.5rem;
        margin-top: 10px;
        font-weight: 700;
    }

    .description {
        margin-top: 10px;
        font-size: 1rem;
    }


    .slide-content {
        margin: 0 20px;
    }

    .slide-container {
        height: 550px;
    }

    .card {
        height: 550px;
    }

    .card-content {
        padding: 40px 14px;
    }

}

@media screen and (max-width: 768px) {
    .swiper-nav-btn {
        display: none;
    }

    .name {
        font-size: 1rem;
        margin-top: 10px;
        font-weight: 700;
    }

    .description {
        margin-top: 10px;
        font-size: 0.8rem;
    }


    .slide-content {
        margin: 0 20px;
    }

    .slide-container {
        height: 550px;
    }

    .card {
        height: 550px;
    }

    .card-content {
        padding: 30px 14px;
    }

}


/* AVENTURE */

.aventure {
    padding-top: 80px;
    padding-bottom: 80px;
    /* background-color: #F7F6F7; */
}

.aventure h1 {
    text-align: center;
    font-size: 2em;
}

.aventure h2 {
    text-align: center;
    font-size: 1.5em;
}

.aventure .link-to-store {
    text-align: center;
    margin-top: 60px;
}

.aventure .link-to-store img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
    margin-left: 15px;
    opacity: 0.3;
}

/* EXPERIENCE */



.experience {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #F7F6F7;
}


.experience h1 {
    text-align: center;
    font-size: 2em;
}

.experience h2 {
    text-align: center;
    font-size: 1.4vw;
}

.experience-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.experience-cards-container {
    width: 100%;
    height: 600px;
    padding: 40px 10%;
}

.experience-cards-content {
    overflow: hidden;
    margin: 0 60px;
    border-radius: 25px;
}

@media screen and (max-width: 520px) {
    .experience h1 {
        text-align: center;
        font-size: 1.8em;
        margin: 0 30px 30px 30px;
    }

    .experience h2 {
        text-align: center;
        font-size: 1.2em;
        margin: 0 30px;
    }

    .experience p {
        text-align: center;
        font-size: 1em;
        margin: 10px 0px 0;
    }
}

.card {
    border-radius: 25px;
    background-color: #fff;
    overflow: hidden;
}

.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10% 15px 5% 15px;
}

.image-content {
    position: relative;
    row-gap: 5px;
    padding: 0 0;
    background-color: transparent;
    height: 50%;
}


.card-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.card-image .card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 1.5rem;
    /* margin-top: 30px; */
    color: #333;
}

.description {
    margin-top: 20px;
    font-size: 1vw;
    color: #707070;
    text-align: center;
    font-weight: 700;
}

/* RESERVATION */

.reservation {
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    margin-top: 150px;
    margin-bottom: 150px;
}

.reservation .reservation-des {
    flex: 1;
    margin-left: 15%;
}

.reservation .reservation-des h2 {
    font-size: 3em;
}

.reservation .reservation-des p {
    font-size: 1.5em;
    margin-top: 20px;
}

.reservation .reservation-btns {
    flex: 1;
    margin-right: 5%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reservation .reservation-btns .reserve-btn {
    cursor: pointer;
    font-size: 1.5rem;
    border: 0;
    background: transparent;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 20px 50px;
    border-radius: 30px;
}

.reservation .reservation-btns .reserve-btn::after {
    content: "";
    width: 400px;
    height: 400px;
    position: absolute;
    top: -150px;
    left: -50px;
    background-image: -webkit-linear-gradient(225deg, #f6a43d 0%, #f0823b 33%, #dc3e6c 66%, #a22d96 100%);
    background-image: linear-gradient(225deg, #f6a43d 0%, #f0823b 33%, #dc3e6c 66%, #a22d96 100%);
    z-index: -1;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}

.reservation .reservation-btns .reserve-btn:hover::after {
    -webkit-transform: rotate(150deg);
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);
    transform: rotate(150deg);
}

.reservation .reservation-btns .catalog {
    font-size: 1.5em;
    margin-top: 40px;
    color: #f0823b;
    text-decoration: underline;
    font-weight: 700;
}

@media (max-width: 768px) {
    .reservation {
        flex-direction: column;
        margin-top: 0;
        margin-bottom: 0;
    }

    .reservation .reservation-des {
        margin: 0 10px;
        text-align: center;
    }

    .reservation .reservation-des h2 {
        font-size: 2em;
    }

    .reservation .reservation-des p {
        font-size: 1.2em;
        margin-top: 20px;
    }

    .reservation .reservation-btns {
        margin-right: 0;
        margin-top: 100px;
    }

    .reservation .reservation-btns .reserve-btn {
        font-size: 1rem;
    }

    .reservation .reservation-btns .catalog {
        font-size: 1em;
    }

    .reservation .reservation-btns .reserve-btn:hover::after {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}

/* ETERNITE */

.eternity-container {
    padding: 80px 0 50px 10%;
    position: relative;
    background-color: #F7F6F7;
}


.eternity-container .citation {
    position: absolute;
    top: 50%;
    left: 70%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px 3%;
    width: 70%;
    max-width: 600px;
    text-align: left;
    border-radius: 20px;
    box-shadow: #25242f 0px 0px 20px 0px;
    opacity: 0.95;
}

.eternity-container .citation h2 {
    font-size: 3em;
    font-weight: 900;
    margin-top: 20px;
}

.eternity-container .citation p {
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

.eternity-container .etenity-img {
    flex: 0 0 50%;
    margin-left: 10%;
    max-width: 50%;
    /* width: 50%; */
    border-radius: 20px;
}

@media (max-width: 768px) {
    .eternity-container {
        padding-left: 0;
        padding-right: 0;
    }

    .eternity-container .citation {
        position: absolute;
        top: 85%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 0 3%;
        text-align: center;
        width: 80%;
        /* border: 1px solid black; */
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    }

    .eternity-container .citation h2 {
        font-size: 1em;
        margin-top: 20px;
    }

    .eternity-container .citation p {
        font-size: 0.8em;
        margin-top: 5px;
        /* margin-bottom: 20px; */
    }

    .eternity-container .etenity-img {
        flex: 0 0 50%;
        margin-left: 0;
        max-width: 100%;
    }
}

/* PROPRIETAIRE */

.proprietaire-container {
    padding: 50px;
    /* margin-top: 50px; */
}

.proprietaire-container h1 {
    font-size: 3em;
    text-align: center;
    margin-top: 100px;
}

.proprietaire-container h2 {
    font-size: 2em;
    text-align: center;
}

.proprietaire-container .proprietaire-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
}

.proprietaire-container .proprietaire-wrapper #card {
    flex: 1;
    margin: 8%;
    text-align: center;
    justify-content: center;
}

.proprietaire-container .proprietaire-wrapper #card h2 {
    font-size: 2em;
    font-weight: 900;
    margin-top: 50px;
}

.proprietaire-container .proprietaire-wrapper #card p {
    font-size: 1em;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

.proprietaire-container .proprietaire-wrapper #card a {
    color: #f07c3b;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: underline;
}

.proprietaire-container .proprietaire-wrapper #card .circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-image: linear-gradient(225deg, #f6a43d 0%, #f0823b 33%, #dc3e6c 66%, #a22d96 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    -webkit-transition: margin-top 0.2s ease, background-color 0.5s ease;
    -moz-transition: margin-top 0.2s ease, background-color 0.5s ease;
    -o-transition: margin-top 0.2s ease, background-color 0.5s ease;
    transition: margin-top 0.2s ease, background-color 0.5s ease;
}

.proprietaire-container .proprietaire-wrapper #card .circle:hover {
    margin-top: -25px;
    /* background-color: #dc3e6c; */
}

.proprietaire-container .proprietaire-wrapper #card svg {
    width: 50%;
    height: 50%;
}

.proprietaire-container .btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.proprietaire-container .btn-container .reserve-btn {
    cursor: pointer;
    font-size: 1.5rem;
    border: 0;
    background: transparent;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 20px 50px;
    border-radius: 30px;
}

.proprietaire-container .btn-container .reserve-btn::after {
    content: "";
    width: 400px;
    height: 400px;
    position: absolute;
    top: -150px;
    left: -50px;
    background-image: -webkit-linear-gradient(225deg, #f6a43d 0%, #f0823b 33%, #dc3e6c 66%, #a22d96 100%);
    background-image: linear-gradient(225deg, #f6a43d 0%, #f0823b 33%, #dc3e6c 66%, #a22d96 100%);
    z-index: -1;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
}

.proprietaire-container .btn-container .reserve-btn:hover::after {
    -webkit-transform: rotate(150deg);
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    -o-transform: rotate(150deg);

    transform: rotate(150deg);
}

@media (max-width: 768px) {
    .proprietaire-container {
        padding-top: 0;
        margin-top: 0;
    }

    .proprietaire-container h1 {
        font-size: 1.5em;
        text-align: center;
        margin-top: 50px;
    }

    .proprietaire-container h2 {
        font-size: 1em;
        text-align: center;
        margin-top: 50px;
    }

    .proprietaire-container .proprietaire-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        padding: 20 30%;
        margin-top: 30px;
    }

    .proprietaire-container .proprietaire-wrapper #card {
        flex: 1;
        margin: 1%;
        text-align: center;
        justify-content: center;
        height: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .proprietaire-container .proprietaire-wrapper #card h2 {
        font-size: 1.1em;
        font-weight: 900;
        margin-top: 20px;
    }

    .proprietaire-container .proprietaire-wrapper #card p {
        font-size: 0.7em;
        font-weight: 700;
        margin-top: auto;
        margin-bottom: 0;
    }

    .proprietaire-container .proprietaire-wrapper #card a {
        font-size: 0.7em;
        font-weight: 700;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .proprietaire-container .proprietaire-wrapper #card .circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #f07c3b;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .proprietaire-container .proprietaire-wrapper #card svg {
        width: 50%;
        height: 50%;
    }

    .proprietaire-container .btn-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .proprietaire-container .btn-container .reserve-btn {
        margin-top: 50px;
        font-size: 1rem;
    }

    .proprietaire-container .btn-container .reserve-btn:hover::after {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}

/* FOOTER  */

footer {
    padding: 30px 0;
    flex-shrink: 0;
    width: 100%;
    background: #efefef;
}

.content-footer {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 30px 0 50px;
}

.bloc {
    width: 20%;
    margin: 0 30px;
    text-align: center;
}

.footer-contact h3,
.footer-services h3,
.footer-schedule h3 {
    font-size: 22px;
    padding-bottom: 20px;
}

.footer-contact a,
.footer-services a,
.footer-schedule a {
    color: black;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    footer {
        padding: 10px 0;
    }

    .content-footer {
        font-size: 2vw;
        padding: 30px 0 10px 0;
    }

    .content-footer h3 {
        font-size: 3vw;
    }

    .content-footer .bloc {
        width: 30%;
        height: 100px;
        margin: 0 10px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: flex-start;
    }
}