@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900');

a{
    text-decoration:  none;
}

.navbar{
    display: flex;
    margin: 15px 0;
}

.logo{
    flex: 1 1 auto;
    max-width: 40px;
    margin: 0 0 0 20px;
}

.navbar > .menuMobile{
    margin: 0 20px 0 auto;
    flex: 1 1 auto;
    background-color: var(--color_main);
    border: none;
    cursor: pointer;

    border-radius: 0.25rem;
    box-shadow: 0 0.25rem 0 rgba(0, 0, 0, 0.1);
    color: #fff;
    max-width: 40px;
}

.navbar > .menuMobile > span{
    padding: 7px 0;
    color: white;
}

.navbar > ul{
    position: absolute;
    top: 50px;

    list-style-type: none;
    width: 100%;
    padding-left: 0;
    font-family: Poppins;

    border-top: 1px solid #e7e7e7;

    box-shadow: 0 0.25rem 0 rgba(0, 0, 0, 0.1);

	z-index: 1;
    visibility: hidden;
}
.navbar > ul > li{
    text-align: center;
    padding: 10px 0;
}
.navbar > ul > li:nth-child(2n-1){
    background-color: var(--color_main);
}

.navbar > ul > li:nth-child(2n-1) > a{
    color: #fff;
}

.navbar > ul > li:nth-child(2n){
    background-color: #fff
}

.navbar > ul > li:nth-child(2n) > a{
    color: #000;
}


@media screen and (min-width: 900px) {
    .navbar {
        margin: 30px auto;
        padding: 0 40px;
        height: 110px;
        max-width: 1200px;
    }
    .logo{
        max-width: 100px;
        height: 100px;
        margin: 0 0 0 0px;
    }
    .navbar > .menuMobile{
        display: none;
    }

    .navbar > ul{
        position: static;

        list-style-type: none;
        width: calc(100% - 100px);
        padding-left: 0;
        font-weight: 500;

        border-top: none;

        box-shadow: none;


        visibility: visible;

        margin: auto 0;

        text-align: right;

        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .navbar > ul > li{
        text-align: center;
        padding: 0;
        background-color: transparent !important;
        display: inline-block; 

    }


    .navbar > ul > li > a{
        color: #000 !important;
        display: block;
    }
}



/** MODAL */
.modal-container{
    display: none;
    z-index: 10;

    position: fixed;
    top: 0;
    left: 0;

    min-height: 100%;
    min-width: 100%;

    background-color: rgba(31,32,41,.75);
}

.modal-container > div {
    background-color: #ffffff;


    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    padding-bottom: 20px;
}

.modal-container > .close{
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 110;
    width: 40px;
    border-radius: 3px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 18px;
    background-color: var(--color_main);
    color: white;
    box-shadow: 0 12px 25px 0 rgba(16,39,112,.25);
    cursor: pointer;
}

.modal-container > .close:hover{
    background-color: #fff;
    color: var(--color_main);
}

.modal-container  h1 {
    margin: 20px 15px 0 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.7;
    color: #1f2029;
}
.modal-container  form {
    padding: 20px 30px 0 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #1f2029;
}

.modal-container form button {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    border: 1px solid var(--color_main);


    background-color: var(--color_main);
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 12px 25px 0 rgba(16,39,112,.25);

    cursor: pointer;
}

.modal-container form button:hover {
    background-color: #fff;
    color: var(--color_main);
}


/** FOOTER */
.footer {
    background-color: var(--color_main);
    color: white;
    display: block;
    justify-content: center;
    padding: 60px 15px;
    margin: 30px 0 0 0;
    font-family: "Open Sans", sans-serif;
}

.footer div {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    flex-grow: 1;
    flex-basis: 0;

    color: white;
}

.footer .infos a, .footer .infos p {
    padding-bottom: 30px;
    line-height: 1.5;
}

.footer .infos .logo {
    max-width: 120px;
    width: 120px;
    height: 120px;
    flex: none;
}
.footer .infos .name {
    font-size: 1.1rem;
    font-weight: 300;   
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin: 6px 0;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
}

.footer-copyright {
    background-color: #2f301b;
    text-align: center;
    color: white;
    padding: 15px;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}


@media screen and (min-width: 900px) {
    .footer {
        display: flex;
        justify-content: center;
        gap: 200px;
        padding: 60px 20%;
        font-family: "Open Sans", sans-serif;
    }

    .footer div {
        display: flex;
        flex-direction: column;
        align-items: left;
        text-align: left;
        flex-grow: 1;
        flex-basis: 0;

        color: white;
    }

    .footer .infos a, .footer .infos p {
        padding-bottom: 30px;
        line-height: 1.5;
    }

    .footer .infos .logo {
        max-width: 120px;
        width: 120px;
        height: 120px;
        flex: none;
    }
    .footer .infos .name {
        font-size: 1.1rem;
        font-weight: 300;   
    }

    .footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer ul li {
        margin: 6px 0;
    }

    .footer ul li a {
        text-decoration: none;
        font-size: 15px;
    }

    .footer-copyright {
        text-align: center;
        padding: 15px;
        font-size: 14px;
    }
}