p {
    font-family: 'Inter','Poppins','arial',sans-serif;
}
.msg-screen {
    display: none;
    font-weight: 800;
    padding: 10px 13%;
    background-color: #eee;
    border-radius: 30px;
}
.header-article {
     background-color: #777;
     position: relative;
     max-height: 80vh;
     height: 600px;
     color: #fff;
     overflow: hidden;
 }
.header-background {
    filter: blur(1px);
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100%;
    width: 100%;
}
.title-article {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 60px 50px;
    -webkit-animation: fondu 1.2s;
    animation: fondu 1.2s;
}
.header-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-image: linear-gradient(to bottom, #00000000,#00000011, #00000079);
}
.header-article .type {
    -webkit-animation: article-type 3s;
    animation: article-type 2s;
}
.header-article .type a {
    background-color: #000;
    padding: 3px 5px;
    font-size: 20px;
    position: relative;
    top: -20px;
}
.type a {
    color: #fff;
    font-weight: 600;
    padding: 2px 5px;
    background-color: #000;
    -o-transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s;
}
.type a:hover {
    background-color: #fff;
    color: #000;
    -o-transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-box-shadow: 0 2px 20px #00000026;
    box-shadow: 0 2px 20px #00000026;
}
.title-article h1, .title-article h2 {
    margin: 0;
    color: #000;
}
.title-article h1 {
    font-size: 40px;
    font-weight: 700;
}
.title-article h2 {
    font-size: 27px;
    font-weight: 500;
}
.title-article span {
    background-color: #fff;
    padding: 0 5px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.date {
    font-size: 19px;
    padding-right: 1em;
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.9;
  /*  font-weight: 700;*/
}
@keyframes fondu {
    0% {
        -ms-transform: translatey(150px);
        -moz-transform: translatey(150px);
        -webkit-transform: translatey(150px);
        transform: translatey(50px);
        opacity: 0;
    }
    10% {
        -ms-transform: translatey(150px);
        -moz-transform: translatey(150px);
        -webkit-transform: translatey(50px);
        transform: translatey(50px);
    }
    20% {
        opacity: 0;
    }
    100% {
        -ms-transform: translatey(0px);
        -moz-transform: translatey(0px);
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
        opacity: 1;
    }
}
@keyframes article-type {
    0% {
        opacity: 0;
    }
    40% {
        -ms-transform: translatex(-20px);
        -moz-transform: translatex(-20px);
        -webkit-transform: translatex(-20px);
        transform: translatex(-20px);
        opacity: 0;
    }
    100% {
        -ms-transform: translatex(0px);
        -moz-transform: translatex(0px);
        -webkit-transform: translatex(0px);
        transform: translatex(0px);
        opacity: 1;
    }
}
.article-content {
    color: #000;
    text-align: justify;
    overflow-wrap: break-word;
    font-weight: 400;
    letter-spacing: -0.3px;
    font-size: 18px;
    line-height: 1.5;
    max-width: 780px;
    margin: 20px auto;
}
.article-content h3 {
    font-size: 35px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2em;
    text-align: left;
}
/*
.article h4 {
    font-size: 21px;
    margin: 1em 0;
}*/
.article-content p {
    margin: 25px 0;
}
.article-content p:first-child {
    margin-top: 0;
}
.article-content hr {
    border-top: 1px solid #565555;
    margin: 25px 0;
}
.photo {
    width: 100%;
    position: relative;
    margin: auto;
}
.photo img {
    width: 100%;
}
.yt-video {
    height: 425px;
    margin: 25px auto 20px;
}
.yt-video iframe {
    border: 0;
    width: 100%;
    height: 100%;
}
.citation {
    text-align: left;
    font-size: 26px;
    margin: 80px auto 70px;
    width: 80%;
    font-weight: 600;
    font-style: italic;
}
.citation span::before, .citation span::after {
    content: '"';
    font-weight: 900;
}
.citation span {
    background-color: #000;
    color: #fff;
    padding: 0 5px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 1.5em;
}
.citation div {
    text-align: right;
    font-weight: 300;
    font-size: 20px;
    opacity: 0.8;
    line-height: 3em;
}
.lien {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid #565555;
    -o-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}
.lien:hover {
    color: #000;
    border-color: #000;
    -o-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}
.credits {
    text-align: center;
    font-weight: 600;
    margin-top: 30px;
}
.credits a {
    font-weight: 400;
}
.title-more {
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 25px;
    padding: 10px 0;
    position: relative;
    text-align: center;
    color: #888;
}
.title-more::after {
    content: '';
    border-top: 2px #ccc solid;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.title-more::before {
    content: '';
    border-top: 2px #ccc solid;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.more {
    width: 900px;
    margin: 100px auto;
}
.more-articles {
    display: inline-block;
    width: 100%;
}
/*
.more-article {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 70%;
    margin: 0 auto 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e7e7e7;
}
#last-more-article {
    border: none;
}
.text-more-article {
    position: relative;
    max-width: 315px;
}*/
/*.more h4, .more h5 {
    margin: 0;
}*/
/*.more h4 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2em;
}
.more h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1em;
}
/*
.more .type {
    position: absolute;
    top: -30px;
    font-size: 14px;
    font-weight: 500;
}
.more-cover {
    width: 300px;
    height: 200px;
    overflow: hidden;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: center;
    align-content: center;
    -webkit-box-shadow: 0 2px 20px #00000026;
    box-shadow: 0 2px 20px #00000026;
    margin-right: 20px;
}
.more-cover img {
    width: 100%;
    height: auto;
    -o-transition: .4s;
    -moz-transition: .4s;
    -webkit-transition: .4s;
    transition: .4s;
}
.more-cover:hover img {
    -o-transform: scale(1.02) rotate(1.5deg);
    -ms-transform: scale(1.02) rotate(1.5deg);
    -moz-transform: scale(1.02) rotate(1.5deg);
    -webkit-transform: scale(1.02) rotate(1.5deg);
    transform: scale(1.02) rotate(1.5deg);
    -webkkit-filter: brightness(0.85);
    filter: brightness(0.85);
    -o-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}*/
.detailed-chronicle {
    margin: 60px 0;
}
.detailed-chronicle img {
    width: 300px;
    margin-bottom: 7px;
}
.align-left img {
    float: left;
    margin-right: 20px;
}
.align-right img {
    float: right;
    margin-left: 20px;
}
.detailed-chronicle .title {
    margin-bottom: 40px;
}
.align-left .title {
    text-align: left;
}
.align-right .title {
    text-align: right;
}
.detailed-chronicle .title h3 {
    font-weight: 900;
    font-size: 40px;
    margin: 0;
    line-height: 1em;
    text-align: inherit;
}
.detailed-chronicle .title h4 {
    margin: 0;
    font-size: 22px;
    line-height: 1em;
}
.detailed-chronicle p {
    margin: 0;
}
.summary-chronicle {
    padding: 15px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
#last-summary-chronicle {
    margin-bottom: 60px;
}
.summary-chronicle img {
    width: 230px;
    max-width: 100%;
    display: inline;
    margin-right: 15px;
}
.summary-chronicle, .capsule {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 20px #00000033;
    box-shadow: 0 2px 20px #00000033;
    border-radius: 5px;
    margin: 20px 0;
}
.capsule p {
    margin: 15px;
}
.summary-chronicle p {
    margin: 0;
    font-size: 16px;
    text-align: justify;
}
.summary-chronicle h3 {
    margin: 10px 0;
    line-height: 1em;
    font-size: 20px;
    text-align: inherit;
}
.capsules-section {
    margin: auto;
    max-width: 1050px;
    text-align: justify;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}
.capsule {
    width: 31%;
    display: inline-block;
    margin: 1%;
}
.capsule .cover {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    color: #fff;
}
.capsule .cover img {
    height: auto;
    width: inherit;
}
.capsule .cover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-image: linear-gradient(to bottom, #00000000,#0000001c, #000000d3);
}
.capsule .article-titles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    padding: 10px;
    text-align: left;
}
.capsule h3, .capsule h4 {
    margin: 0;
    line-height: 1.2em;
}
.capsule h3 {
    font-size: 25px;
    font-weight: 800;
}
.capsule h4 {
    font-size: 19px;
    font-weight: 500;
}


@media screen and (max-width: 1100px) and (min-width: 750px) {
    .date {
        font-size: 18px;
    }
}
@media screen and (max-width: 950px) {
    .more {
        width: 90%;
    }
    /*
    .more-article {
        width: 100%;
    }
    .more-cover {
        width: 45%;
        height: 32vw;
        margin-right: 2%;
    }
    .text-more-article {
        width: 53%;
    }*/
}
@media screen and (max-width: 840px) {
    /*.more .type {
        position: unset;
    }
    .more h4 {
        font-size: 25px;
    }
    .more h5 {
        font-size: 20px;
    }*/
    .article-content {
        margin: 20px 5%;
    }
}
@media screen and (max-width: 850px) and (min-width: 500px) {
      .detailed-chronicle img {
        width: 45%;
    }
}
@media screen and (max-width: 750px) {
    .msg-screen {
        display: block;
    }
    .header-background {
        background-attachment: local;
    }
    .title-article {
        padding: 10px 10px 80px;
    }
    .citation {
        font-size: 22px;
        width: 100%;
    }
    .citation div {
        font-size: 17px;
    }
    .summary-chronicle {
        display: block;
        text-align: center;
    }
    .summary-chronicle img {
        margin: 0;
    }
}
@media screen and (max-width: 750px) and (min-width: 500px) {
    .date {
        font-size: 16px;
    }
    .capsule {
        width: 45%;
    }
}
@media screen and (max-width: 640px) {
    .header-article .type a {
        font-size: 17px;
    }
    .title-article h1 {
        font-size: 7vw;
    }
    .title-article h2 {
        font-size: 6vw;
    }
    .cover {
        width: 50%;
        height: 37vw;
        margin-right: 3%;
    }/*
    .more h4 {
        font-size: 5vw;
    }
    .more h5 {
        font-size: 4vw;
    }
    .more .type {
        font-size: 13px;
    }
    .more {
        width: 95%;
    }*/
}
@media screen and (max-width: 500px) {
    .detailed-chronicle img {
        width: 100%;
    }
    .align-left img, .align-right img {
        float: none;
        margin: 0;
    }
    .align-right .title, .align-left .title {
        text-align: center;
        margin: 0;
    }
    .detailed-chronicle .title h3 {
        font-size: 32px;
        line-height: 1.1em;
        text-align: center;
    }
    .article-content p {
        margin-top: 15px;
    }
    .article-content hr {
        margin: 10px 0;
    }
    .text {
        width: 100%;
    }
    .titres h3 {
        font-size: 4vw;
    }
    .date {
        font-size: 15px;
        padding-right: 1vw;
    }
    .article-content h3 {
        font-size: 28px;
    }
    .capsule {
        width: 85%;
        margin-bottom: 25px;
    }
    .title-more {
        font-size: 18px;
    }
}
@media screen and (max-width: 500px) and (min-width: 400px) {
    .article-content {
        font-size: 17px;
    }
}
@media screen and (max-width: 400px) {
    .article-content {
        font-size: 15px;
    }
}