@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Miao&family=Raleway:wght@100;200;400;500&display=swap");
*{
    font-family: "Raleway", sans-serif;
}


/* wertyrewqerty */
* {
    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 {
    /* background: url("../images/crepsy-haiti-image.jpg"); */
    background-position: center;
    background-size: cover;
    height: 20vh;
    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;
}



/* wertyrewqerty */


#aide{
    display: none !important;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #fefffe;
  padding: 20px;
}

main {
    width:50%;
    margin: auto;
}

main .donation-container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
  max-width: 500px;
  text-align: left;

  margin: 20px !important;
}
main h2 {
    margin-bottom : 20px !important;
    color: #333;
}
main p {
    margin: 5px !important;
    color: #333;
  /* color: #666; */
}
main .bank-info {
  margin-top: 20px;
}
main h3, main a{
  color: #2468a1;
  /* color: #ff2a00; */
}




/* 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;
    }
    main {
        width:90%;
        margin: auto;
    }
}
