@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&family=Montserrat:ital, wght@0, 1, 0, 100..900, 100..900&family=Poppins:ital, 100, 200, 300, 400, 500, 600, 700, 800, 900, 900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caesar+Dressing&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins";
    color: #397584;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}


a:visited {
    text-decoration: none;
}

img {
    max-width: 100%;

}

/*HEADER*/

.barre_menu {
    background-color: #fff;
    height: 75px;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.barre_menu::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    filter: blur(3px);
}

.menu_principal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    text-align: center;
    font-weight: 200;
}

.menu_principal img {
    max-height: 70px;
    margin-right: 20px;
}

.menu_principal li {
    position: relative;
    display: inline;
}

.li_header>a {
    font-family: "Caesar Dressing";
    color: #397584;
}

.menu_principal a {
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.3s;
}

.menu_principal a:hover {
    background-color: #ffde59;
    border-radius: 5px;
}

.sous_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-radius: 5px;
    width: 200px;
}

.btq_ligne {
    border: 2px solid #397584;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s, border-color 0.3s;
}

.btq_ligne:hover {
    background-color: #ffde59;
    border-color: #397584;
    color: #397584;
}


/*FOOTER*/
footer {
    background-color: white;
    padding: 30px 30px 0px 30px;
    box-shadow: 4px 4px 10px rgba(89, 85, 85, 0.778);
}

.logo_footer {
    height: 100px;
}

section.footer {
    display: flex;
    justify-content: space-evenly;
    color: #ede2d5;
}

.grandes-parties_footer {
    display: flex;
    align-items: center;
}

.grand-titre_footer {
    font-weight: 600;
    color: #397584;
}

.bloc_elements-footer {
    line-height: 40px;
    /* padding-left: 30px;
    padding-right: 30px; */
}

.contact {
    text-align: center;
}

.paiement_copyright {
    display: flex;
    justify-content: space-between;
}

.icon_paiement {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
}

.footer_desing>a {
    color: #397584;
}


/*RESEAUX SOCIAUX*/
.reseaux_sociaux {
    display: flex;
    justify-content: center;
}

.reseaux_sociaux>li>a {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 3px;
    font-size: 35px;
    line-height: 80px;
    text-align: center;
    background-color: #ecf1f2;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    color: #6b4316;
}

.menu_reseaux_sociaux li a .icon {
    position: relative;
    transition: .5s;
    z-index: 3;
}

.reseaux_sociaux li a:hover .icon {
    transform: rotateY(360deg);
}

.reseaux_sociaux li a::before {
    content: "";
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: .5s;
}

.reseaux_sociaux li a:hover:before {
    top: 0;
}

.reseaux_sociaux li:nth-child(1) a::before {
    background-color: #83b0bb;
}

.reseaux_sociaux li:nth-child(2) a::before {
    background-color: #83b0bb;
}

/*COPYRIGHT*/
.copyright {
    display: flex;
    justify-content: flex-end;
    font-weight: 200;
}

.copyright>ul>li {
    color: #397584;
}


/*RECRUTEMENT TEST*/

.form-container_recrutement {
    background-color: #397584;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    margin: 50px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.critere_recrutement {
    color: white;
    text-align: left;
    font-weight: 500;
}

.form-container_recrutement>h2,
.form-container_recrutement>h3 {
    color: white;
}

.form-container_recrutement>h2 {
    font-family: "Caesar Dressing";
    font-size: 50px;
}

.form-container_recrutement>h3 {
    font-size: 18px;
}

#cv {
    background-color: white;
}

.logo {
    position: absolute;
    top: 10px;
    right: 10px;
    max-width: 80px;
}

h2 {
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    text-align: center;
    font-size: 16px;
}

input[type="text"],
input[type="email"],
input[type="file"] {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

button {
    background-color: #397584;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

button:hover {
    background-color: #397584;
}

/*SECTION 1*/
.section1 {
    height: 655px;
}

.img_section1 {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


.div_section1 {
    top: 50%;
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* padding-top: 235px; */
    color: white;
    font-family: "Poppins", sans-serif;
}

.div_section1 h1 {
    font-size: 70px;
    font-weight: 700;
    font-family: "Caesar Dressing";
    padding-bottom: 20px;
}

.div_section1>h2 {
    font-size: 23px;
    padding-bottom: 30px;
    font-family: "montserrat";
    padding-right: 70px;
    padding-left: 70px;
    color: white;
}

.btn_carousel {
    background-color: #397584;
    border: none;
    cursor: pointer;
}

.btn_carousel:hover {
    background-color: #58808a;
}

.btn-primary {
    --bs-btn-active-bg: #15353d;
}

/*SECTION 2*/

.section2 {
    padding-top: 70px;
    font-size: 18px;
}

.section2>h3 {
    text-align: center;
    color: #397584;
    font-weight: 800;
    padding-bottom: 30px;
    font-size: 35px;
    font-family: "Caesar Dressing";
}

.img_section2 {
    width: 670px;
    padding-right: 60px;
}

.div_section2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 50px;
    padding-right: 50px;
    padding-left: 50px;
}

.sous_container_div_section2 {
    display: flex;
    align-items: center;
}

.p_div_section2 {
    display: flex;
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    padding: 15px;
    border-radius: 10px;
    background-color: #397584;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    height: 400px;
    width: 650px;
}

.p_div_section2>p {
    padding-left: 10px;
    padding-right: 10px;
    color: white;
}


/*SECTION 3*/
.section3 {
    padding-top: 50px;
    padding-bottom: 70px;
}

.section3>h3 {
    text-align: center;
    color: #397584;
    font-weight: 800;
    padding-bottom: 30px;
    font-size: 35px;
    font-family: "Caesar Dressing";
}

.card_container_section3 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.card-body {
    text-align: center;
    color: #29505a;
}

.card-title {
    font-weight: 700;
}

.card-text1 {
    padding-top: 10px;
}

.card-text3 {
    padding-top: 20px;
}

.div_btn_section3 {
    padding-top: 50px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
}

.card_section3:hover {
    box-shadow: 0px 0px 36px rgba(186, 186, 191, 0.842);
}

.nos_services {
    color: #397584;
    text-align: center;
    font-family: "Caesar Dressing";
    padding-bottom: 150px;
}

.nos_services>h3 {
    padding-bottom: 50px;
    font-family: "Caesar Dressing";
    font-size: 35px;
    font-weight: 800;
}

.cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #397584;
}

.card span {
    font-size: 18px;
    font-weight: bold;
}

.p_card_services {
    color: #29505a;
}



/*SECTION 4*/

.section4>h3 {
    text-align: center;
    color: #397584;
    font-weight: 800;
    padding-bottom: 30px;
    font-size: 35px;
    font-family: "Caesar Dressing";
}

.section4 {
    padding-bottom: 150px;
}

.sous_section_section4 {
    display: flex;
    justify-content: space-evenly;
    color: #397584;
}

.container_div_section4>h4 {
    text-align: center;
}

.h4_info_horaire {
    padding-bottom: 30px;
    font-family: "Caesar Dressing";
    font-size: 35px;
}

.horaire_exceptionnelle {
    font-weight: 600;
    color: red;
}

.container_div_horaires {
    display: flex;
    flex-direction: row;
}

.div_horaire1 {
    padding-right: 40px;
}

.div_horaire1,
.div_horaire2 {
    font-size: 25px;
}

/* .div_coordonnees {
    display: flex;
    justify-content: space-between;
}

.sous_div_coordonnees {
    padding-right: 50px;
} */

/*CARTE*/
.section_carte1 {
    background-image: url(../img/restaurant_saveurs_mediterranee4.jpg);
    background-size: cover;
    height: max(20vw, 600px);
}

.div_section_carte1 {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 235px;
    color: white;
}

.main_carte {
    background-color: #f8f8f8;
}

.section_carte_texte {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.div_section_carte_texte>h3 {
    font-size: 20px;
    text-align: center;
    line-height: 2.5rem;
    font-weight: 400;
}

.div_section_carte1>h1 {
    font-size: 50px;
    font-family: "Caesar Dressing", sans-serif;
}

.div_section_carte1>h2 {
    font-size: 20px;
    padding-bottom: 30px;
    font-family: "Poppins";
    color: white;
}

.section_principale_carte {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;

}


.menu-container_carte {
    width: 90%;
    max-width: 2000px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.menu-container_carte>h1,
.menu-container_carte>h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-family: "Caesar Dressing";
    line-height: 2.5rem;
    color: #397584;
}

.menu-container_carte>h1 {
    font-size: 40px;
}

.menu_carte_class_unique {
    display: flex;
    flex-direction: column;
}

.menu_carte_class_unique>span {
    color: #29505a;
}

.p_span_menu_carte {
    font-size: 13px;
}

.menu-section_carte {
    margin: 20px 0;
}

.titre_elements_carte {
    color: #29505a;
    font-family: "Caesar Dressing";
    font-size: 30px;
}


.menu-section_carte>h3 {
    color: #29505a;
    font-family: "Caesar Dressing";
    font-size: 30px;
}

.menu-section_carte>h4 {
    font-size: 20px;
    color: #397584;
    font-family: "Caesar Dressing";
    padding-top: 10px;
}

.menu-item_carte {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.menu-item_carte2 {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.menu-item:last-child {
    border-bottom: none;
}

.div_price_carte {
    display: flex;
    align-items: center;
    color: #29505a;
}

.price {
    font-weight: bold;
    color: #d4a373;
}


/*BOUTIQUE EN LIGNE*/

.boutique-container {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.maintenance-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.maintenance-box h2 {
    font-size: 24px;
    color: #29505a;
    margin-bottom: 20px;
}

.maintenance-box p {
    font-size: 16px;
    color: #29505a;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #397584;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #397584;
    transition: 0.2s;
}

.cta-button:hover {
    background-color: #29505a;
    border-color: #29505a;
}

/*EVENEMENTS*/

.criteres_evenement {
    text-align: left;
    font-size: 18px;
    font-weight: 400;
}

section.event {
    background-color: white;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

.events-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    text-align: center;
    background-color: #397584;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.219);
    padding: 30px;

}

.logo_evenement {
    height: 150px;
}


.criteres_evenement {
    color: white;
}

.events-header>h3,
.events-header>h1,
.events-header>p {
    color: white;
}

#prenom,
#nom,
#email,
#nombre-personnes {
    color: #333;
}

#nombre-personnes {
    padding-left: 10px;
}

.events-header>h1 {
    font-size: 50px;
    font-family: "Caesar Dressing";
}

.cta-button_evenement {
    display: inline-block;
    background-color: rgb(93, 149, 163);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #397584;
    transition: background-color 0.3s, border-color 0.3s;
    width: 100%;
}

.cta-button_evenement:hover {
    background-color: #29505a;
    border-color: #397584;
}

#type-event {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f4f9;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

#type-event:focus {
    border-color: #007bff;
    background-color: #e9f4fe;
}

#type-event>option {
    padding: 10px;
    background-color: #fff;
    color: #333;
}

#type-event::-ms-expand {
    display: none;
}

#type-event::after {
    /* content: ' ▼';  */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
}

.container {
    position: relative;
    width: 250px;
    margin: 20px;
}

.criteres_evenement {
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

#message_evenement {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    color: #333;
    background-color: #f4f4f9;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
}

#message_evenement:focus {
    border-color: #007bff;
    background-color: #e9f4fe;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

#message_evenement::placeholder {
    color: #999;
    font-style: italic;
    opacity: 0.7;
}

#message_evenement:focus::placeholder {
    opacity: 0.5;
}

#message_evenement:active,
#message:focus {
    border-color: #007bff;
}

/*RESERVATION*/

:root {
    --primary-color: #FFDE59;
    --secondary-color: #397584;
    --text-color: #333;
    --background-color: #f4f4f4;
    --white-color: #fff;
    --light-gray: #f0f0f0;
    --border-color: #ddd;
}



.restaurant-name {
    margin: 0 0 10px;
    font-size: 2em;
    font-family: 'Caesar Dressing', cursive;
    color: #397584;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}


.reservation-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    max-width: 2000px;
    margin: 20px auto;
    width: 80%;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.reservation-calendar-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    flex: 1 1 400px;
    min-width: 300px;
}

.critere_reservation {
    color: #397584;
    text-align: left;
}

.reservation-calendar {
    width: 100%;
}

.reservation-title {
    margin: 0 0 15px;
    font-size: 1.8em;
}

.reservation-alert {
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
}

.reservation-date-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.date-button,
.arrow-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1em;
    padding: 8px 15px;
    outline: none;
}

.month-year {
    font-weight: bold;
}

.offer-icons span {
    margin: 0 8px;
    color: var(--secondary-color);
}

.calendar-grid {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 5px;
}

.day-names {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    border-bottom: 1px solid var(--border-color);
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day {
    border: 1px solid var(--border-color);
    background: var(--white-color);
    padding: 12px;
    min-height: 40px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    outline: none;
    color: var(--text-color);
}

.day:hover {
    background-color: var(--light-gray);
}

.day.inactive {
    color: #aaa;
    background-color: #eee;
}



/* .reservation-container {
    display: flex;
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
} */

.calendar-section,
.form-section {
    flex: 1;
    padding: 20px;
}

.calendar-section {
    background-color: #585353e7;
    border-right: 1px solid var(--border-color);
}

.form-section {
    display: flex;
    flex-direction: column;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

input,
textarea {
    width: calc(100% - 12px);
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    color: var(--text-color);
}

button {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
}

button:hover {
    background-color: var(--secondary-color);
}



.reasons {
    text-align: center;
    padding: 30px 10px;
    background: #f5f5f5;
    border-radius: 12px;
}

.reasons h2 {
    font-size: 1.8em;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.reasons h2 span {
    color: var(--secondary-color);
}

.reasons-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    margin-top: 20px;
    align-items: flex-start;
}

.reason {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
    min-height: 200px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.reason:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.reason i {
    font-size: 2.5em;
    color: #FF6F61;
    margin-bottom: 12px;
    transition: color 0.3s ease-in-out;
}

.reason:hover i {
    color: var(--secondary-color);
}

.reason h3 {
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.reason p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
}



.header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}

.line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 15px;
}



.reservation-section {
    color: var(--white-color);
}

.reservation-section>h2 {
    color: #397584;
    font-family: "Poppins";
}

/*A EMPORTER*/

.section_a_emporter {
    background-image: url(../img/restaurant_saveurs_mediterranee_14.jpg);
    background-size: cover;
    height: max(20vw, 600px);
}
.div_h4_emporter>h4,
.div_h4_emporter2>h4{
    text-align: center;
    font-weight: 400;
    line-height: 2.5rem;
}
.div_h4_emporter{
    padding-bottom: 30px;
    padding-left: 50px;
    padding-right: 50px;
}
.div_h4_emporter2{
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
}
.div_h4_emporter3{
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
}
.div_h4_emporter3>h4{
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    font-weight: 700;
}
.img_emporter{
    width: 500px;
}
.div_principale_emporter{
    display: flex;
}