@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');


*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-margin: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* ----------------------------------------------- Header Section ----------------------------------------------- */

/* ---------------- Navigation Bar ---------------- */

nav {
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    background: #fff;
    display: flex;
    align-items: center;
    z-index: 9999;
    box-shadow: 0px 4px 34px -6px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 4px 34px -6px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 4px 34px -6px rgba(0,0,0,0.2);
}

nav a {
    padding-left: 30px;
}

nav img {
    width: 65px;
    transition: transform .2s ease-in-out;
}

nav img:hover {
    transform: scale(1.05);
}

.list_nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    z-index: 40;
}

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


.list_nav a {
    text-decoration: none;
    color: #111;
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 18px;
}

.list_nav a::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 0;
    height: 2px;
    background: #ef7197;
    transition: width .3s ease-in-out;
}

.list_nav a:hover::after {
    width: 100%;
}

.list_nav a:hover {
    color: #ef7197;
}

/* ---------------- Burger Menu ---------------- */

.burger_menu {
    position: absolute;
    display: flex;
    align-items: center;
    width: 35px;
    height: 40px;
    right: 20px;
    top: 20px;
    border: none;
    cursor: pointer;
    background: transparent;
    overflow: hidden;
    z-index: 55;
    display: none;
}

.burger_menu span {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background: #ef7197;
    pointer-events: none;
    transition: all .3s ease-in-out;
    border-radius: 20px;
}

.burger_menu .line_1 {
    transform: translate(0, -10px);
}

.burger_menu .line_3 {
    transform: translate(0, 10px);
}

.open .line_1 {
    transform: translate(0, 0) rotate(-45deg);
    width: 80%;
}

.open .line_2 {
    opacity: 0;
}

.open .line_3 {
    transform: translate(0, 0) rotate(45deg);
    width: 80%;
}


/* ----------------------------------------------- Home Section ----------------------------------------------- */

.home {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
}

.slides_home {
    position: absolute;
    width: 100%;
    height: 100%;
}

.home .content {
    width: 100%;
    display: none;
    z-index: 20;
}

.home .content.change {
    display: block;
    transition: all 1s ease-in-out;
}

.home_content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.txt_content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 60%;
    padding-left: 50px;
    z-index: 20;
}

.img_content {
    width: 40%;
    padding-left: 50px;
}

.logo_main {
    width: 350px;
    filter: drop-shadow(5px 5px 5px rgba(34, 34, 34, 0.568));
    -webkit-filter: drop-shadow(5px 5px 5px rgba(34, 34, 34, 0.568));
}

.flower {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -20;
    opacity: 0.3;
}

/* ---------------- Background Color ---------------- */


.bg-color {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #57C4E5;
    opacity: 0;
}

.bg-color.change {
    transition: all 1s ease-in-out;
    opacity: 1;
}

.color-1 {
    background: #EDF2EF;
    width: 100%;
    height: 100%;
}

.color-2 {
    background: #212738;
    width: 100%;
    height: 100%;
    display: flex;
}
.color-3 {
    background: #EDF2EF;
    width: 100%;
    height: 100%;
}
.color-4 {
    background: #212738;
    width: 100%;
    height: 100%;
}

/* ---------------- Home Txt ---------------- */

.home h1 {
    font-size: 4.5rem;
    text-transform: uppercase;
    color: #212738;
    line-height: 45px;
}

.txt_white h1 {
    color: #EDF2EF;
}

.txt_white p {
    color: #EDF2EF;
}

.home p {
    font-size: 1.8rem;
    font-weight: 200;
    line-height: 25px;
    width: 65%;
    padding: 25px 0;
}

.pink_btn {
    position: relative;
    display: inline-block;
    text-align: center;
    background: #ef7197;
    border: 2px solid #ef7197;
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    width: 200px;
    height: 55px;
    line-height: 55px;
    transition: all .2s ease-in-out;
}

.pink_btn:hover {
    border: 2px solid #ef7197;
    background: transparent;
    color: #ef7197;
}

.white_btn {
    position: relative;
    display: inline-block;
    text-align: center;
    background: #EDF2EF;
    border: 2px solid #EDF2EF;
    color: #111;
    text-decoration: none;
    font-size: 1.8rem;
    width: 200px;
    height: 55px;
    line-height: 55px;
    transition: all .2s ease-in-out;
}

.white_btn:hover {
    border: 2px solid #EDF2EF;
    background: transparent;
    color: #EDF2EF;
}

/* ---------------- Home Btn Slider ---------------- */

.slider-navigation {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(80px);
    margin-bottom: 12px;
    z-index: 999;
    bottom: 100px;
}

.slider-navigation .nav-btn {
    width: 12px;
    height: 12px;
    background: hsla(342, 80%, 69%, 0.4);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.2s ease-in-out;
}

.slider-navigation .nav-btn.change {
    background: #ef7197;
}

.slider-navigation .nav-btn:not(:last-child) {
    margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
    transform: scale(1.4);
}

/* ----------------------------------------------- Media Query ----------------------------------------------- */

@media screen and (max-width: 1250px) {

    .burger_menu {
        display: block;
    }

    .list_nav {
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        background: #fff;
        top: 0;
        left: 0;
        transform: translate(-100%, 0);
        transition: transform .3s ease-in-out;
        min-height: 650px;
    }

    nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav a {
        padding: 0;
        z-index: 999;
    }

    .list_nav.active {
        transform: translate(0, 0);
    }

    .item_nav {
        margin: 10px 0;
    }

    .item_nav a {
        font-size: 3rem;
    }

    .logo_main {
        width: 300px;
    }

    .home h1 {
        font-size: 4rem;
    }

    .white_btn {
        font-size: 1.7rem;
        width: 190px;
    }

    .pink_btn {
        font-size: 1.7rem;
        width: 190px;
    }
}

@media screen and (max-width: 1024px) {
    .logo_main {
        width: 280px;
    }

    .txt_content {
        padding-left: 30px;
    }

    .home h1 {
        font-size: 3.8rem;
    }

    .home p {
        font-size: 1.7rem;
    }

}

@media screen and (max-width: 890px) {
    .logo_main {
        width: 250px;
    }

    .txt_content {
        padding-left: 20px;
    }

    .home h1 {
        font-size: 3.4rem;
    }

    .home p {
        font-size: 1.6rem;
    }

    .white_btn {
        font-size: 1.6rem;
        width: 180px;
    }

    .pink_btn {
        font-size: 1.6rem;
        width: 180px;
    }
}

@media screen and (max-width: 768px) {
    .home_content {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .content {
        padding: 0;
    }

    .txt_content {
        width: 100%;
        align-items: center;
        justify-content: center;
        margin: 40px 0;
        padding: 0;
    }

    .home h1 {
        text-align: center;
    }

    .home p {
        text-align: center;
    }

    .img_content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 20px 0;
    }

    .logo_main {
        margin-top: 80px;
        width: 200px;
    }

    .slider-navigation {
        bottom: 80px;
    }
}

@media screen and (max-width: 576px) {

    .item_nav a {
        font-size: 2.8rem;
    }

    .logo_main {
        margin-top: 80px;
        width: 160px;
    }

    .txt_content {
        margin: 20px 0;
    }

    .home h1 {
        font-size: 3.2rem;
    }

    .home p {
        font-size: 1.5rem;
        width: 80%;
    }

    .white_btn {
        font-size: 1.5rem;
        width: 170px;
        height: 50px;
        line-height: 50px;
    }

    .pink_btn {
        font-size: 1.5rem;
        width: 170px;
        height: 50px;
        line-height: 50px;
    }

    .content {
        padding: 0;
    }
}

@media screen and (max-width: 480px) {

    .item_nav a {
        font-size: 2.5rem;
    }

    .logo_main {
        margin-top: 70px;
        width: 140px;
    }

    .home h1 {
        font-size: 2.8rem;
        width: 100%;
    }

    .home p {
        width: 100%;
    }
}

/* ---------------------------------------------- Presentation Section ---------------------------------------------- */

.presentation {
    position: relative;
    width: 100%;
    height: 125vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #212738;
}

.pesentation_effect {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
    height: 85%;
    background: #fff;
    padding: 50px 0;
    border-radius: px;
    z-index: 66;
}

/* ---------------- Title Presentation ---------------- */

.title_presentation {
    width: 100%;
    height: auto;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title_presentation h1 {
    font-size: 9rem;
    font-weight: 200;
    font-family: 'Allura', cursive;
    color: #ef7197;
}

.title_presentation span {
    display: block;
    position: relative;
    height: 2px;
    width: 180px;
    background: #ef7197;
    top: -10px;
}

/* ---------------- Txt Presentation ---------------- */

.txt_presentation {
    padding: 0 200px;
    width: 100%;
    height: 100%;
}

.txt_presentation p {
    font-size: 2rem;
    font-weight: 300;
    color: #212738;
    text-align: center;
    line-height: 40px;
}

.fl1 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, 0);
    width: 700px;
    opacity: .3;
}

.fl2 {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, 0);
    width: 700px;
    opacity: .3;
}

/* ----------------------------------------------- Media Query ----------------------------------------------- */

@media screen and (max-width: 1250px) {
    .presentation {
        height: 130vh;
    }

    .title_presentation h1 {
        font-size: 8rem;
    }

    .txt_presentation {
        padding: 0 160px;
    }

    .txt_presentation p {
        font-size: 1.9rem;

    }
}

@media screen and (max-width: 1024px) {
    .pesentation_effect {
        padding: 0;
        height: 88%;
    }

    .title_presentation h1 {
        font-size: 7.5rem;
    }

    .title_presentation span {
        width: 160px;
    }

    .txt_presentation {
        padding: 0 100px;
    }
}

@media screen and (max-width: 890px) {
    .pesentation_effect {
        height: 90%;
    }

    .title_presentation {
        margin: 20px 0;
    }

    .title_presentation h1 {
        font-size: 7rem;
    }

    .txt_presentation {
        padding: 0 80px;
    }

    .txt_presentation p {
        font-size: 1.8rem;
    }

    .fl1, .fl2 {
        width: 650px;
    }
}

@media screen and (max-width: 768px) {
    .title_presentation h1 {
        font-size: 6rem;
    }

    .title_presentation span {
        width: 140px;
    }

    .txt_presentation p {
        font-size: 1.7rem;
        line-height: 40px;
    }

    .txt_presentation {
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .title_presentation h1 {
        font-size: 5.5rem;
    }

    .title_presentation span {
        width: 120px;
    }

    .txt_presentation p {
        font-size: 1.6rem;
        line-height: 35px;
    }

    .fl1 {
        left: -30px;
    }

    .fl2 {
        right: -30px;
    }
}

@media screen and (max-width: 480px) {
    .pesentation_effect {
        height: 95%;
    }

    .presentation {
        height: 140vh;
    }

    .title_presentation h1 {
        font-size: 5rem;
    }

    .title_presentation span {
        width: 100px;
    }

    .txt_presentation {
        padding: 0 10px;

    }

    .txt_presentation p {
        font-size: 1.5rem;
        line-height: 28px;
    }

    .fl1 {
        left: 50%;
    }

    .fl2 {
        display: none;
    }

}

/* ---------------------------------------------- Discover Section ---------------------------------------------- */

.discover {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 80px;
}

.discover_title {
    text-align: center;
    color: #212738;
    font-size: 3.2rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 38px;
}

.discover_title span {
    font-family: 'Allura', cursive;
    text-transform: capitalize;
    font-size: 9rem;
    font-weight: 200;
    color: #ef7197;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 50px 20px;
}

.inverse {
    flex-direction: row-reverse;
    background: #EDF2EF;
    border-radius: 25px;
}

.img_content_discover {
    width: 40%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img_content_discover img {
    object-fit: cover;
    object-position: center;
    transition: all .3s ease-in-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    width: 500px;
    height: 500px;
}

.img_content_discover:hover img {
    transform: scale(105%);
}

.txt_content_discover {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
}

.txt_content_discover h3 {
    font-family: 'Allura', cursive;
    text-align: center;
    font-size: 4.8rem;
    font-weight: 100;
    color: #ef7197;
    padding: 20px;
    text-transform: capitalize;
}

.txt_content_discover p {
    line-height: 30px;
    font-size: 1.8rem;
    font-weight: 300;
    color: #111;
}

.txt_content_discover a {
    display: block;
    width: 280px;
    height: 60px;
    line-height: 60px;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    background: transparent;
    color: #111;
    border: #111 1px solid;
    transition: all .3s ease-in-out;
    margin: 60px 55%;
}

.txt_content_discover a:hover {
    background: #212738;
    color: #fff;
}

/* ----------------------------------------------- Media Query ----------------------------------------------- */

@media screen and (max-width: 1250px) {

    .discover {
        padding: 80px 30px;
    }

    .discover_title span {
        font-size: 8rem;
    }

    .discover_title {
        font-size: 3rem;
    }

    .txt_content_discover h3 {
        font-size: 4.2rem;
    }

    .txt_content_discover p {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 1024px) {

    .discover {
        padding: 70px;
    }

    .discover_title span {
        font-size: 7.5rem;
    }

    .discover_title {
        font-size: 2.8rem;
    }

    .content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .txt_content_discover {
        width: 100%;
        padding: 0px 40px;
    }

    .img_content_discover {
        width: 60%;
    }
}

@media screen and (max-width: 890px) {
    .discover_title span {
        font-size: 7rem;
    }

    .discover_title {
        font-size: 2.7rem;
    }

    .img_content_discover {
        height: 450px;
    }

    .txt_content_discover a {
        width: 260px;
        height: 55px;
        line-height: 55px;
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 768px) {
    .discover {
        padding: 60px 20px;
    }

    .discover_title span {
        font-size: 6rem;
    }

    .discover_title {
        font-size: 2.5rem;
    }

    .txt_content_discover {
        padding: 0;
    }

    .img_content_discover {
        height: 350px;
        width: 70%;
    }
}

@media screen and (max-width: 576px) {
    .discover {
        padding: 60px 0px;
    }

    .discover_title span {
        font-size: 5.5rem;
    }

    .discover_title {
        font-size: 2.3rem;
    }

    .txt_content_discover h3 {
        font-size: 3.8rem;
    }

    .txt_content_discover p {
        font-size: 1.6rem;
    }

    .txt_content_discover a {
        width: 240px;
        height: 55px;
        line-height: 55px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .discover_title span {
        font-size: 5rem;
    }

    .discover_title {
        font-size: 2rem;
    }

    .txt_content_discover h3 {
        font-size: 3.4rem;
    }

    .img_content_discover {
        height: 300px;
        width: 75%;
    }
}

/* ---------------------------------------------- Best Sell Section ---------------------------------------------- */

.best_sell {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 750px;
    margin-bottom: 80px;
}

.best_sell_title h2 {
    font-family: 'Allura', cursive;
    text-transform: capitalize;
    font-size: 7rem;
    font-weight: 200;
    color: #212738;
    text-align: center;
    margin-bottom: 80px;
}

.products {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.img_link {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_sheet {
    width: 30%;
    min-width: 250px;
    height: 100%;
    border-radius: 20px;
    transition: all .3s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product_sheet img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px 20px 0 0;
    transition: all .3s ease-in-out;
    padding-bottom: 20px;
}

.product_sheet:hover img {
    transform: scale(104%);
}

.bio {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .8s ease-in-out;
}

.bio h3 {
    padding-top: 5px;
    font-size: 2rem;
    color: #212738;
    text-align: center;
    border-top: rgba(17, 17, 17, 0.1) .5px solid;
}

.bio a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 500;
    color: #10375C;
    opacity: .5;
}

.bio a span {
    font-size: 26px;
}

.bio a:hover {
    opacity: 1;
}

.btn_product {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px;
}

.btn_product a {
    display: block;
    width: 280px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    font-size: 1.8rem;
    background: transparent;
    color: #212738;
    border: #212738 1px solid;
    transition: all .3s ease-in-out;

}

.btn_product a:hover {
    background: #212738;
    color: #fff;

}

/* ---------- Best Sell Section Media Query ---------- */
 
@media screen and (max-width: 1200px) {
    .bio h3 {
        font-size: 18px;
    }

    .bio h4 {
        font-size: 18px;
    }

    .bio a {
        font-size: 16px;
    }

    .bio a span {
        font-size: 24px;
    }
}

@media screen and (max-width: 1024px) {
    .bio h3 {
        font-size: 16px;
    }

    .bio h4 {
        font-size: 16px;
    }

    .bio a {
        font-size: 14px;
    }

    .bio a span {
        font-size: 22px;
    }

    .best_sell_title h2 {
        font-size: 6rem;
    }
}

@media screen and (max-width: 890px) {
    .best_sell_title h2 {
        font-size: 5.5rem;
    }
}

@media screen and (max-width: 768px) {
    .best_sell_title h2 {
        font-size: 5rem;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 576px) {
    .best_sell_title h2 {
        font-size: 4.5rem;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 480px) {
    .best_sell_title h2 {
        font-size: 4rem;
        margin-bottom: 20px;

    }
}

/* ---------------------------------------------- Devis Section ---------------------------------------------- */

.devis {
    position: relative;
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 60px 0;
    
}

.back_devis {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(assets/photos/Fleur/flower.jpg) no-repeat fixed bottom;
    opacity: .8;
}

.devis h2 {
    font-size: 3rem;
    color: #ef7197;
    z-index: 88;
}

.devis a {
    display: block;
    position: relative;
    width: 280px;
    height: 60px;
    line-height: 60px;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    background: transparent;
    color: #ef7197;
    border: #ef7197 1px solid;
    transition: all .3s ease-in-out;
    border-radius: 25px;
    z-index: 99;
}

.devis a:hover {
    background: #ef7197;
    color: #EDF2EF;
}

/* ---------------------------------------------- Media Query ---------------------------------------------- */

@media screen and (max-width: 1250px) {
    .devis h2 {
        font-size: 2.5rem;
    }

    .devis a {
        width: 240px;
        height: 60px;
        line-height: 60px;
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 1024px) {
    .devis {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .devis h2 {
        font-size: 2rem;
    }

    .devis a {
        width: 220px;
        height: 55px;
        line-height: 55px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 576px) {
    .devis h2 {
        font-size: 1.8rem;
    }

    .devis a {
        width: 200px;
        height: 55px;
        line-height: 55px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .devis h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .devis a {
        width: 200px;
        height: 50px;
        line-height: 50px;
        font-size: 1.6rem;
    }
}

/* ---------------------------------------------- Footer Section ---------------------------------------------- */

footer {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 80vh;
    background: #212738;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 34px 6px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 4px 34px -6px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 4px 34px -6px rgba(0,0,0,0.2);
    bottom: 0;
}

.footer {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 50px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fond_footer {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .1;
    z-index: 1;
}

/* ---------- Logo Part ---------- */

.logo_part {
    width: 33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 55;
}

.logo_footer img {
    width: 200px;
}

.logo_part h2 {
    color: #ef7197;
    font-size: 4.2rem;
    text-transform: uppercase;
}

.logo_part h4 {
    color: #EDF2EF;
    font-size: 1.6rem;
    font-weight: 300;
}

.social_footer {
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social_footer div {
    margin: 20px 0;
}

.social_footer h3 {
    font-size: 2rem;
    color: #EDF2EF;
}

.social_footer a {
    padding: 10px;
}

.social_footer img {
    width: 30px;
    transition: all .1s ease-in-out;
}

.social_footer img:hover {
    transform: scale(108%);
}
/* ---------- Links Part ---------- */

.link_services {
    width: 34%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 55;
}

.link_services h2 {
    font-size: 2rem;
    color: #ef7197;
    margin: 30px;
}

.links {
    display: flex;
    align-self: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.link_services a {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    padding: 10px;
}

.link_services a:hover {
    color: #ef7197;
}

/* ---------- Contact Part ---------- */

.contact_footer {
    width: 33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    z-index: 55;
}

.contact_footer img {
    width: 35px;
    height: auto;
    object-fit: contain;
}

.contact_footer h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin: 0 20px;
}

.infos {
    display: flex;
    margin: 15px;
}

/* ---------- Dev Info Part ---------- */

.dev_info {
    width: 100%;
    height: auto;
}

.dev_info h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    padding: 10px;
}

.dev_info span img {
    width: 20px;
    margin-left: 10px;
}

/* ----------------------------------------------- Media Query ----------------------------------------------- */

@media screen and (max-width: 1250px) {
    .logo_footer img {
        width: 180px;
    }

    .logo_part h2 {
        font-size: 4rem;
    }

    .contact_footer {
        padding-left: 10px;
    }

    .contact_footer h3 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 1024px) {
    
    .footer {
        flex-direction: column;
    }

    .logo_part {
        width: 100%;
    }
    
    .link_services {
        width: 100%;
    }

    .contact_footer {
        width: 100%;
        flex-direction: row;
        margin: 50px 0;
        flex-wrap: wrap;
    }
    
    .infos {
        flex-direction: column;
        align-items: center;
    }

    .infos img {
        margin: 25px 0;
    }

    .links {
        flex-direction: row;
        flex-wrap: wrap;
        margin: 10px;
    }
}

@media screen and (max-width: 576px) {
    .logo_footer img {
        width: 150px;
    }

    .logo_part h2 {
        font-size: 3.6rem;
    }

    .contact_footer h3 {
        font-size: 1.6rem;
    }
    
    .social_footer h3 {
        font-size: 1.6rem;
    }
}

/* ---------------------------------------------- Event Page ---------------------------------------------- */

.page {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 100px 80px 0 80px;
}

.page h2 {
    font-family: 'Allura', cursive;
    text-transform: capitalize;
    font-size: 9rem;
    font-weight: 200;
    text-align: center;
    color: #ef7197;
}

.page p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 40px;
    padding: 30px 50px;
    text-align: center;
    color: #212738;
}

.gallerie_page h2 {
    font-family: 'Allura', cursive;
    text-transform: capitalize;
    font-size: 9rem;
    font-weight: 200;
    text-align: center;
    color: #ef7197;
    margin: 50px 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
}
  
.gallery img {
    width: 250px;
    height: 250px;
    margin: 10px;
    cursor: pointer;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    transition: transform .2s ease-in-out;
}

.gallery img:hover {
    transform: scale(103%);
}

.modal {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 90vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    display: none;
}
  
.modal img {
    max-width: 90%;
    max-height: 90%;
}
  
.prev,
.next {
    width: 80px;
    height: 80px;
    fill: white;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
  
.prev {
    left: 20px;
}
  
.next {
    right: 20px;
}

.gallerie_page a {
    display: block;
    position: relative;
    width: 280px;
    height: 60px;
    line-height: 60px;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    background: transparent;
    color: #212738;
    border: #212738 1px solid;
    transition: all .3s ease-in-out;
    left: 50%;
    transform: translate(-50%, 0);
    margin: 80px 0;
}

.gallerie_page a:hover {
    background: #212738;
    color: #EDF2EF;
}
  
/* ----------------------------------------------- Media Query ----------------------------------------------- */

@media screen and (max-width: 1250px) {
    .page h2 {
        font-size: 8rem;
    }

    .gallerie_page h2 {
        font-size: 8rem;
    }
}

@media screen and (max-width: 1024px) {
    .page h2 {
        font-size: 7.5rem;
    }

    .gallerie_page h2 {
        font-size: 7.5rem;
    }

    .page {
        padding: 120px 60px 0 60px;
    }
}

@media screen and (max-width: 890px) {
    .page h2 {
        font-size: 7rem;
    }

    .gallerie_page h2 {
        font-size: 7rem;
    }

    .page {
        padding: 120px 40px 0 40px;
    }
}

@media screen and (max-width: 768px) {
    .page h2 {
        font-size: 6rem;
    }

    .gallerie_page h2 {
        font-size: 6rem;
    }

    .page {
        padding: 120px 20px 0 20px;
    }

    .page p {
        font-size: 1.8rem;
    }

    .gallery img  {
        width: 200px;
        height: 200px;
    }

    .gallerie_page a {
        width: 250px;
        height: 55px;
        line-height: 55px;
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 576px) {
    .page h2 {
        font-size: 5.5rem;
    }

    .gallerie_page h2 {
        font-size: 5.5rem;
    }

    .page {
        padding: 120px 0px 0 0px;
    }

    .page p {
        font-size: 1.7rem;
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .page h2 {
        font-size: 5rem;
    }

    .gallerie_page h2 {
        font-size: 5rem;
    }

    .page p {
        font-size: 1.6rem;
    }

    .gallerie_page a {
        width: 220px;
        height: 50px;
        line-height: 50px;
        font-size: 1.6rem;
    }
}


/* ----------------------------------------------- Detailles Page ----------------------------------------------- */

.product_detaills {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    margin-top: 80px;
}

/* ---------- Img Part ---------- */

.detaills_img {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.detaills_img img {
    width: 80%;
    height: auto;
}

.flower_det img {
    width: 70%;
    height: auto;
}

/* ---------- Txt Part ---------- */

.detaills_txt {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 120px 50px;
}

.detaills_txt h4 {
    font-size: 3rem;
    color: #ef7197;
}

.detaills_txt h2 {
    font-size: 5rem;
    padding-top: 20px;
    color: #111;
    line-height: 45px;
}

.detaills_txt ul {
    padding: 30px 50px;
}

.detaills_txt li {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 35px;
    color: #212738;
}

/* ---------- Couleur Part ---------- */
 
.couleur {
    width: 100%;
    display: flex;
    align-items: center;
}

.couleur span {
    width: 30px;
    height: 30px;
    margin: 0 15px;
    border-radius: 50%;
    background: #10375C;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border: .1px solid hsla(0, 0%, 7%, 0.1);
}

.couleur span:hover {
    transform: scale(110%);
}

/* ----------------------------------------------- Media Query ----------------------------------------------- */

@media screen and (max-width: 1200px) {
    .detaills_img  {
        width: 45%;
    }

    .detaills_txt h4 {
        font-size: 2.5rem;
    }

    .detaills_txt h2 {
        font-size: 4rem;
    }

    .detaills_txt li {
        font-size: 1.7rem;
    }

    .couleur span  {
        width: 25px;
        height: 25px;
    }
}

@media screen and (max-width: 1024px) {
    .product_detaills {
        flex-direction: column;
        height: 100%;
    }

    .detaills_img {
        width: 100%;
    }

    .detaills_img img {
        width: 60%;
    }

    .detaills_txt {
        width: 100%;
    }
}

@media screen and (max-width: 890px) {
    .detaills_img img {
        width: 70%;
    }

    .detaills_txt h4 {
        font-size: 2.2rem;
    }

    .detaills_txt h2 {
        font-size: 3.5rem;
    }

    .detaills_txt li {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .detaills_img img {
        width: 80%;
    }

    .detaills_txt h4 {
        font-size: 2rem;
    }

    .detaills_txt h2 {
        font-size: 3rem;
    }

    .couleur span  {
        width: 20px;
        height: 20px;
        margin: 0 10px;
    }
}

@media screen and (max-width: 480px) {
    .detaills_img img {
        width: 90%;
    }

    .detaills_txt {
        padding: 80px 20px;
    }

    .detaills_txt ul {
        padding: 30px 20px;
    }

    .couleur span  {
        width: 20px;
        height: 20px;
        margin: 0 5px;
    }
}