/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
body {
    margin: 0;
}

#container {
    background-color: #E9E8F4;
    background-image: linear-gradient(to right, #E9E8F4 60%, #ffffff46 50%);
    /* background: linear-gradient(130deg, rgb(255, 137, 0), rgb(255, 160, 64) 76%); */

    /* background: linear-gradient(130deg, rgb(255, 137, 0), rgba(255, 165, 0, 0.75) 41%, rgb(204, 85, 0) 76%); */
    /* background: linear-gradient(130deg, rgba(196, 86, 176, 0.75), #d7a9e3 41%, #a284be 76%); */
}

#info-card {
    display: none;
    position: absolute;
    z-index: 10;
    padding: 10px;
    background-color: #292929;
    color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#info-card-liste {
    display: none;
    position: absolute;
    z-index: 11;
    padding: 5px;
    background-color: #f1f1f1;
    color: #292929;
}

#section {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

svg {
    margin-left: 5%;
}

svg g {
    display: flex;
    justify-content: flex-end;
}

#listemap {
    width: 75%;
}

#listemap ul {
    list-style-type: none;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin: 0;
    padding: 30px 0px 30px 0px;

    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f1f1f1;
    font-size: 1.125em;
}

#listemap ul li {
    position: relative;
    padding-left: 20px;
    color: #324A6D;
}

@media screen and (max-width: 1130px){
    #listemap ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 880px){
    #section {
        flex-wrap: wrap;
    }

    svg {
        margin-left: 0;
    }

    #listemap ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 700px){
    #listemap ul {
        grid-template-columns: repeat(2, 1fr);
    }

    #listemap ul li {
        padding-top: 5px;
        padding-bottom: 5px;
        font-size: 1.2em;
    }

    svg {
        display: none;
    }
}

@media screen and (max-width: 550px){
    #section {
        justify-content: center;
    }

    #listemap ul {
        grid-template-columns: 1fr;
    }

    #listemap ul li {
        padding: 5px 0 5px 20px;
        font-size: 1.2em;
    }
}