@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: 'NewsCycle';
    src: url(/data/fonts/News_Cycle/NewsCycle-Regular.ttf);
}

*{
    margin: 0;
    font-family: 'NewsCycle', sans-serif;
}

/* Menu */
.menu {
    font-weight: 700;
    font-style: normal;
}

.menu ul, .bottom ul {
    list-style-type: none;
    padding: 0;
    overflow: hidden;
}

.main, .menu ul, .titel, .bottom {
    margin: auto;
    width: 100%;
    max-width: 1200px;
    padding: 0;
}

.menu li {
    float: left;
    padding: 4px 12px;
}

.menu a {
    font-size: 1.2em;
    display: block;
    color: #1c1c1c;
    text-align: center;
    text-decoration: none;
}

.menu-btn {
    display: none;
}

/* trois ptits traits */
.menu .menu-icon {
    cursor: pointer;
    float: right;
    padding: 20px 16px 18px 0px;
    position: relative;
    user-select: none;
}

.menu .menu-icon .navicon {
    background: #1c1c1c;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.menu .menu-icon .navicon:before,
.menu .menu-icon .navicon:after {
    background: #1c1c1c;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.menu .menu-icon .navicon:before {
    top: 5px;
}

.menu .menu-icon .navicon:after {
    top: -5px;
}

.menu .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.menu .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.menu .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.menu .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.menu .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

@media only screen and (min-width: 1001px)  {

    /* computer size */

    .menu .menu-icon {
        display: none;
    }

    .menu li.langue {
        float: right;
        padding: 4px 0px;
    }

    .menu a {
        padding: 18px 20px;
    }

    .langue a {
        color: rgb(155, 155, 155);
        margin-top: calc(1.2em - 0.8em);
        font-size: .8em;
        transition:.3s;
    }

    .menu-item:hover a {
        margin-bottom: -4px;
        border-bottom: 4px solid #1c1c1c;
    }

}

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

    /* smartphone size */

    .menu li {
        width: 100%;
        padding: 10px 0px;
    }

    .menu ul {
        max-height: 0;
        transition: max-height 0.15s ease-out;
        overflow: hidden;
    }

    .menu-btn:checked ~ ul{
        max-height: 500px;
        transition: max-height 0.25s ease-in;
    }
}

.langue:hover a {
    color: #1c1c1c;
}

p {
    color: #1c1c1c;
    text-align: justify;
    font-size: 1.2em;
}



/* Couverture */
.titel h1{
    color: #1c1c1c;
    /* margin-top: 200px; */
    font-size: 4em;
}

.titel {
    position: absolute;
    left: 0; 
    right: 0; 
}

.cover-image {
    z-index: -1;
    width: 100%;
}

.titel-bar {
    height: 4px;
    width: 60px;
    background-color: #1c1c1c;
}

/* Style des articles */
.article, footer{
    margin-top: 60px;
    float: left;
}

/* Style des 2 articles */
.article-2 {
    float: left;
    width: 50%;
}

.cover-article-2 {
    margin: auto;
    text-align: center;
    width: 98%;
}

.cover-article-2 img {
    width: 100%;
}

.description {
    margin: auto;
    text-align: center;
    background-color: #fff;
    width: 90%;
    transform: translateY(-50%);
    margin-bottom: -10%;
}

.description .subtitel{
    padding-bottom: 50px;
}

.description .button {
    color: #fe6a22;
    border: 2px solid #fe6a22;
    background-color: #fff;
    padding: 4px 40px;
    text-decoration: none;
    transition:.3s;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

.description .button:hover {
    color: #fff;
    background-color: #fe6a22;
}

/* Style des 1 articles */
.article {
    width: 100%;
}

.article h2 {
    text-align: center;
    color: #1c1c1c;
    font-size: 2.4em;
}

.article h3 {
    font-size: 1.6em;
    color: #1c1c1c;
}

.article .date {
    font-style: italic;
}

.article .titel-bar {
    margin: 20px auto;
}


/* Style du flyer */
.flyer {
    margin: auto;
    float: left;
    width: 33.333%;
}

.flyer-img {
    width: 100%;
}

.flyer-text {
    font-size: 1.5em;
    margin: 20px;
}


/* Footer */
footer {
    width: 100%;
    background-color: #1c1c1c;
    color: #fff;
    padding: 40px 0px;
}

footer a {
    text-decoration: none;
    color: #fff;
}

.bottom-menu-item {
    width: 25%;
    float: left;
}

.bottom .titel-bar {
    background-color: #fff;
    margin: 40px 0px;
}

.copyright, .social {
    width: 50%;
    float: left;
}

.social svg{
    fill: #fff;
    height: 25px;
    transition:.3s;
}

.social svg:hover{
    fill: #fe6a22;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}


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

    /* smartphone size */
    .titel {
        position: relative;
        text-align: center;
    }

    .titel h1{
        font-size: 2.0em;
    }

    .titel .titel-bar {
        margin: 40px auto;
    }

    .article-2 {
        width: 100%;
        margin-bottom: 30px;
    }

    .article h2{
        margin-top: 20px;
        font-size: 1.6em;
    }

    .main {
        width: calc(100% - 40px);
    }

    .bottom-menu-item {
        width: 100%;
    }

    .bottom .titel-bar {
        margin: 40px auto;
    }

    .flyer {
        float: none;
        width: 100%;
        max-width: 500px;
    }

    .flyer-text {
        font-size: 1.2em;
        margin: 20px;
    }

    .flyer-img {
        width: calc(100% - 40px);
        margin: 20px;
    }

    .copyright, .social {
        text-align: center;
        width: 100%;
    }

    .social {
        margin-top: 20px;
    }

}