@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Miao&family=Raleway:wght@100;200;400;500&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    --couleur-lien-active: #24699f;
    --couleur-lien: #11bbe1;
    --color-back-content: #dce3ee;
    --color-text-blanc: #dce3ee;
    --back-color-boutons: rgba(18, 186, 227, 255);
}

a {
    text-decoration: none;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 9px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #ccc;
}


/* #head */

#head {
    background: url("../images/crepsy-haiti-image.jpg");
    background-position: center;
    background-size: cover;
    height: 100vh;
    position: relative;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 40px 6%;
    z-index: 1000;
    transition: background-color 0.4s ease-in-out;
}

nav.scrolled {
    background-color: white;
    opacity: 0.98;
}

.logo {
    width: 200px;
    height: 60px;
}

.menu .fom-link {
    display: block;
}

ul {
    position: relative;
}

ul .message {
    position: absolute;
    top: 5.5rem;
    left: 10rem;
    background-color: #fff;
    border-radius: 7px;
    padding: 0.5rem 1rem;
    visibility: hidden;
}

ul .message.visible {
    visibility: visible;
}

ul .message .shape {
    position: absolute;
    background-color: #fff;
    height: 16px;
    width: 16px;
    transform: rotate(45deg);
    top: -8px;
    right: 20px;
    border-right: none;
    border-bottom: none;
}

ul .message .i-text {
    display: flex;
    align-items: center;
}

ul .message .i-text .bx {
    color: red;
}

ul .message .i-text p {
    font-size: 1.1rem;
    color: var(--couleur-lien-active);
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
}

ul li ul.dropdown li {
    display: block;
    background-color: #fff;
    padding: 1rem 3rem;
    text-align: center;
}

ul li ul.dropdown {
    width: auto;
    position: absolute;
    z-index: 999;
    display: none;
    transition: all 0.5s ease-in-out;
}

ul li:hover ul.dropdown {
    display: block;
}

.logo a img {
    width: 100%;
    height: 100%;
}

.logo a {
    font-size: 30px;
    color: var(--couleur-lien);
}

.menu {
    display: flex;
    align-items: center;
}

.menu li {
    margin: 0 15px;
    list-style: none;
}

.menu li a {
    color: var(--couleur-lien);
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: 0.5s ease-in-out;
}

.menu li a:hover {
    color: var(--couleur-lien-active);
}

.menu .lien-a {
    background-color: var(--back-color-boutons);
    color: #fff;
    padding: 15px 19px;
    font-size: 16px;
    transition: all 0.5s ease-in-out;
    border-radius: 5px;
    font-family: Merriweather;
    text-align: center;
    margin: 0 0px 0 15px;
    border-radius: 7px;
}

.menu .lien-a:hover,
#home a:hover {
    background-color: var(--couleur-lien-active);
}

i {
    font-size: 30px;
}

.fom-link a {
    display: flex;
    align-items: center;
}

#home .home-content {
    /* border: 1px solid red; */
    position: absolute;
    left: 6%;
    top: 50%;
    transform: translateY(-50px);
}

#home h4 {
    font-size: 52px;
    color: #fff;
    font-family: "Merriweather", serif;
    font-style: italic;
}

#home h4:last-of-type {
    padding-bottom: 50px;
}

#home p {
    font-size: 25px;
    color: #fff;
    font-weight: 400;
    margin: 5px 0;
}

#home .home-btn {
    margin: 20px 0;
    color: #29d9d5;
    border: 1px solid #29d9d5;
    padding: 15px 25px;
    transition: 0.5s;
    font-size: 16px;
    background-color: #12bae3;
    color: #fff;
    border-radius: 5px;
}


/* Services */

.services-offert {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

i {
    font-size: 33px;
}

.services-offert h2 {
    font-size: 25px;
    font-weight: bold;
    color: var(--couleur-lien-active);
    font-family: "Merriweather", serif;
    font-style: italic;
}

#services {
    padding: 0 6%;
    margin: 50px 0;
}

#services .contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    row-gap: 70px;
    column-gap: 32px;
}

.box {
    border: 4px solid rgba(221, 226, 239, 255);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.box:hover {
    border: 3px solid var(--couleur-lien);
    overflow: hidden;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}

.box .image {
    height: 80%;
    display: flex;
    align-items: center;
}

.box .image img {
    width: 100px;
    height: 100px;
}

.box .content {
    background-color: rgba(221, 226, 239, 255);
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.box .content h4 {
    color: var(--couleur-lien-active);
    font-weight: bold;
    font-size: 18px;
}

#home .discover {
    background-color: var(--back-color-boutons);
    color: #fff;
    padding: 18px 20px;
    font-size: 18px;
    transition: all 0.5s ease-in-out;
    border-radius: 5px;
    font-family: "Ubuntu", sans-serif;
    border-radius: 7px;
}


/* Affichage */

#affichage {
    padding: 0 6%;
    margin: 129px 0 200px 0;
    height: 250px;
    width: 100%;
    background-color: #2568a0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.affichage-left {
    width: 50%;
}

.affichage-left h2 {
    font-size: 30px;
    font-family: "Merriweather", serif;
    font-style: italic;
}

.affichage-right {
    /* border: 1px solid red; */
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.affichage-right a {
    padding: 25px 40px;
    font-size: 25px;
    font-weight: 900;
    border-radius: 7px;
    background-color: var(--back-color-boutons);
    color: #fff;
    font-family: "Ubuntu", serif;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.affichage-right a:hover {
    background-color: #fff;
    color: var(--couleur-lien-active);
}


/* Equipe */

#equipe {
    padding: 0 6%;
    margin: 200px 0 100px 0;
}

.offert-text p {
    font-size: 18px;
    width: 60%;
    color: rgba(131, 161, 196, 255);
    font-family: "Ubuntu", sans-serif;
}

.slide-container {
    max-width: 1322px;
    width: 100%;
}

.card {
    border: 4px solid var(--color-back-content);
    border-radius: 20px;
    background-color: var(--color-back-content);
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.card:hover {
    border: 4px solid var(--couleur-lien);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

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

.card-image {
    position: relative;
    height: 430px;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}

.card-image .first {
    transform: scale(1.1);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0px 0px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.card-image img:hover {
    transform: scale(1.1);
}

.card-image .first:hover {
    transform: scale(1.2);
}

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

.card-content h2 {
    color: var(--couleur-lien-active);
    font-weight: 600;
    font-family: "Ubuntu", sans-serif;
}

.card-content p {
    color: var(--couleur-lien-active);
    font-family: "Ubuntu", sans-serif;
}

.image-content {
    position: relative;
    padding: 0;
}

.image-content .overplay::before,
.image-content .overplay::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #4070f4;
}

.image-content .overplay::after {
    border-radius: 0 25px 0 0;
    background-color: #fff;
}

.name {
    font-size: 18px;
    font-weight: 500;
    color-interpolation-filters: #333;
}

.description {
    font-size: 14px;
    color: #707070;
    text-align: center;
}

button {
    background-color: var(--back-color-boutons);
    color: #fff;
    padding: 20px 32px;
    font-size: 1.8rem;
    transition: all 0.5s ease-in-out;
    border-radius: 5px;
    border: none;
    margin: 20px 0;
    cursor: pointer;
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
}

button:hover {
    background-color: #fff;
    color: var(--couleur-lien-active);
}

.Swiper-navBtn {
    color: #6e93f7;
    transition: color 0.3s ease;
}

.Swiper-navBtn:hover {
    color: #4070f4;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

nav .bx-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 30px;
}


/* Don */

.a-propo-class {
    padding: 0 6%;
    background-color: var(--couleur-lien-active);
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    position: relative;
    margin: 40rem 0 0 0;
}

.apropos-text {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    position: absolute;
    top: -35%;
    width: 88%;
}

.text-propos {
    background-color: var(--color-back-content);
    padding: 4rem 10rem;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    border-radius: 20px;
}

.text-propos p {
    font-size: 2.2rem;
    color: #24689e;
    font-family: "Ubuntu", sans-serif;
}

.text-propos a {
    color: var(--couleur-lien);
    text-decoration: underline;
    transition: 0.5s ease-in-out;
    width: 20rem;
    font-size: 2rem;
    font-family: "Ubuntu", sans-serif;
}

.text-propos a:hover {
    color: #fff;
}

.logo-text {
    display: flex;
    columns: 0.2rem;
    align-items: center;
}

.logo-text p {
    font-size: 25px;
    font-weight: bold;
    color: var(--couleur-lien-active);
    font-family: "Merriweather", serif;
    font-style: italic;
}

.content-boy_Text {
    display: flex;
    align-items: center;
    margin: 20rem 0 4rem 0;
    column-gap: 10rem;
}

.content-Don-img {
    width: 400px;
    height: 400px;
}

.content-Don-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.text-right {
    width: 40%;
}

.text-right h2 {
    color: #fff;
    font-size: 2.3rem;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
}


/* Aide */

#aide {
    padding: 50px 8%;
    background-color: rgba(221, 226, 239, 255);
}

.aide-content-text {
    padding: 0 0 20px 0;
}

.aide-content-text h2 {
    font-size: 25px;
    font-weight: bold;
    color: #2568a0;
    font-family: "Merriweather", serif;
}

.aide-content-text p {
    font-size: 18px;
    color: rgba(131, 161, 196, 255);
    font-family: "Ubuntu", sans-serif;
}

.confirmation {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    background-color: #fff;
    margin-top: 10px;
}


/* contact */

.form-box {
    width: 100%;
}

.form-box .row50 {
    display: flex;
    gap: 20px;
}

.inputBox {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
    position: relative;
}

.inputBox p {
    font-size: 2rem;
    color: var(--couleur-lien-active);
}

.inputBox p a {
    text-decoration: underline;
    color: var(--couleur-lien);
    font-weight: 800;
    transition: all 0.5s ease-in-out;
}

.inputBox p a:hover {
    color: #fff;
}

.row100 .inputBox {
    width: 100%;
}

.inputBox span {
    color: var(--couleur-lien-active);
    margin-bottom: 5px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
    font-family: "Ubuntu", sans-serif;
}

.inputBox input {
    padding: 20px 10px;
    font-size: 1.4em;
    outline: none;
    border: 1px solid var(--couleur-lien);
    border-radius: 5px;
    color: var(--couleur-lien-active);
    font-family: "Ubuntu", sans-serif;
}

.inputBox textarea {
    padding: 20px 10px;
    font-size: 1.4em;
    outline: none;
    border: 1px solid var(--couleur-lien);
    border-radius: 5px;
    resize: none;
}

input[type="submit"] {
    background-color: var(--couleur-lien-active);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 17px 20px;
    border-radius: 10px;
    font-size: 2.2em;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
    max-width: 160px;
    position: absolute;
    right: 0;
}

.inputBox input[type="submit"]:hover {
    background-color: #fff;
    color: var(--couleur-lien-active);
}

.input-btn {
    display: flex;
    margin: 1rem 0;
}


/* Footer */

footer {
    width: 100%;
    background-color: rgba(37, 104, 160, 255);
    padding: 35px 8%;
    /* margin-top: 30px; */
}

.container-footer {
    display: flex;
    justify-content: space-between;
}

.container-footer h1 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin: 0px 0 15px 0;
    font-family: "Ubuntu", sans-serif;
}

.coordonne_text {
    margin-top: 3rem;
}

.footer-social a i {
    font-size: 20px;
    margin-top: 10px;
}

.container-footer .para,
a {
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-family: "Ubuntu", sans-serif;
}

.para2 {
    color: #fff;
    font-size: 14px;
    padding: 0 0 15px 0;
}

.para2 p {
    font-family: "Ubuntu", sans-serif;
}

.footer-nos-lien {
    display: flex;
    row-gap: 40px;
    flex-direction: column;
}

.footer-nos-lien .lien-colum {
    display: flex;
    flex-direction: column;
}

.autres-lien {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Newsletters {
    width: 30%;
    /* border: 1px solid red; */
}

.content-form {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.content-form input {
    padding: 13px;
    border: none;
    outline: none;
    border-radius: 4px;
    background-color: #93b5cf;
    color: #fff;
    font-size: 1.5rem;
}

.content-form input::placeholder {
    color: #fff;
}

.content-form .souscrire {
    font-size: 1.5rem;
    background-color: #fff;
    padding: 13px;
    color: var(--couleur-lien-active);
    margin: 5px 0;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
}

.content-form .souscrire:hover {
    background-color: var(--couleur-lien);
    color: #fff;
}


/* responsive */

@media screen and (max-width: 1000px) {
    nav .bx-menu {
        position: absolute;
        top: 10px;
    }
    .menu {
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgb(67, 66, 66);
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(7px);
        transition: all 0.5s ease;
        flex-direction: column;
        margin-left: -100%;
    }
    .menu li {
        margin-bottom: 50px;
    }
    .menu li a {
        color: #29d9d5;
        font-weight: 600;
        font-size: 20px;
    }
    .menu.addClass {
        margin-left: 0;
    }
    .btn-reservation {
        margin-right: 35%;
    }
    nav .bx-menu {
        display: block;
    }
    #home .home-content {
        /* border: 1px solid red; */
        position: absolute;
        left: 4%;
        top: 37%;
        transform: translateY(-50px);
    }
    /* A propos */
    .img-desc {
        flex-direction: column;
        width: 100%;
    }
    .img-desc .left,
    .img-desc .right {
        width: 100%;
        margin-bottom: 20px;
    }
    .offert-text p {
        font-size: 18px;
        width: 96%;
        color: rgba(131, 161, 196, 255);
    }
    .affichage-left h2 {
        font-size: 18px;
    }
    .affichage-right button {
        padding: 18px 11px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        border-radius: 5px;
        border: none;
        background-color: #fff;
        color: rgba(35, 105, 161, 255);
        cursor: pointer;
    }
    .menu .fom-link:hover {
        display: block;
        margin-bottom: 31.2rem;
    }
    ul .message {
        position: absolute;
        top: 8.5rem;
        left: auto;
    }
    ul .message .shape {
        position: absolute;
        background-color: #fff;
        height: 16px;
        width: 16px;
        transform: rotate(45deg);
        top: 35px;
        right: 20px;
        border-right: none;
        border-bottom: none;
    }
    ul .message .i-text p {
        font-size: 1.3rem;
    }
}


/* Don */

@media screen and (max-width: 1280px) {
    .content-boy_Text {
        display: flex;
        align-items: center;
        margin: 25rem 0 4rem 0;
        column-gap: 10rem;
    }
}

@media screen and (max-width: 1024px) {
    .content-boy_Text {
        display: flex;
        align-items: center;
        margin: 32rem 0 4rem 0;
        column-gap: 10rem;
    }
}

@media screen and (max-width: 880px) {
    .content-boy_Text {
        display: flex;
        align-items: center;
        flex-direction: column;
        row-gap: 3rem;
        margin: 62rem 0 4rem 0;
    }
    .text-right {
        width: 100%;
    }
    .text-propos {
        background-color: var(--color-back-content);
        padding: 4rem 4rem;
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
        border-radius: 20px;
    }
    .text-propos {
        font-size: 2rem;
        color: #24689e;
    }
    .apropos-text {
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
        position: absolute;
        top: -19%;
        width: 88%;
    }
}


/* response for contact */

@media screen and (max-width: 590px) {
    .form-box .row50 {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }
    .inputBox {
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
        width: 100%;
        position: relative;
    }
    #affichage {
        column-gap: 1rem;
    }
    .affichage-right a {
        padding: 23px 7px;
        font-size: 2rem;
    }
    .inputBox p {
        font-size: 2rem;
        color: var(--couleur-lien-active);
        padding-bottom: 1rem;
    }
    .input-btn {
        display: block;
        margin: 2rem 0;
    }
}


/* responsive for footer */

@media screen and (max-width: 914px) {
    .container-footer {
        row-gap: 3rem;
        display: grid;
        justify-content: space-between;
        grid-template-columns: 1fr 1fr;
    }
    .Newsletters {
        width: 100%;
        /* border: 1px solid red; */
    }
}

@media screen and (max-width: 700px) {
    .container-footer {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .Newsletters {
        width: 100%;
        /* border: 1px solid red; */
    }
    .footer-nos-lien {
        display: block;
        column-gap: 20px;
    }
    .container-footer .para,
    a {
        color: #fff;
        font-size: 17px;
        padding: 5px 0;
        transition: all 0.3s ease;
    }
    .para2 {
        color: #fff;
        font-size: 17px;
        padding: 0 0 15px 0;
    }
}