*{
    min-height: 0;
    min-width: 0;
}

html {
    height: 100%;
    overflow-x: hidden;
}
body {
    /*!*background-color: #ffbebc;*!*/
    /*background:  var(--bg1) top no-repeat, var(--bg2) bottom no-repeat, linear-gradient(180deg, #ffbebc 50%, #ffbebc 50%);*/
    /*background-size: cover, cover;*/
    /*!*background-position: bottom, left 0 bottom 75% ;*!*/
    position: relative;
    max-height: fit-content;
    font-family: 'SpaceGrotesk';
}

#bg-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    background-color: #2154FF;
    background-image: var(--bg1);
    background-size: cover;
    background-repeat: no-repeat;
}

#bg-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-color: #ffbebc;
    background-image: var(--bg2);
    background-size: cover;
    background-repeat: no-repeat;
}


hr {
    width: 50%;
    margin: auto;
}

body.noscroll {
    overflow: hidden;
}

a[disabled] {
    pointer-events: none;
}

a:active, a:focus {
    outline: 0;
    border: none;
    -moz-outline-style: none;
}

.btn, .btn:focus {
    border: 3px solid var(--main-color);
    padding: 10px 15px;
    color: var(--main-color);
    background-color: #000;
    line-height: 2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: var(--main-color);
    color: #000;
}

#loading {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,1);
    text-align: center;
}

#loading-img {
    margin-top: 10%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.top-bar {
    display: flex;
    justify-content: start;
    z-index: 20;
    position: fixed;
    margin: auto;
    top: 0;
    width: 100%;
    height: 100px;
    transition: top 0.3s ease 0.3s, border 0.3s ease, height 0.3s ease;
    background-color: #191919;
    padding: 0;
    border-bottom: 5px solid var(--main-color);
    flex-wrap: nowrap;
}

#top-bar_content {
    height: 100%;
    width: 100%;
    position: relative;
}

.top-bar.player-open {
    border-color: #191919;
}


.top-bar .burger-toggle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 92px;
    background-color: #CCD6DF;
    font-size: 45px;
    color: #191919;
    transition: all 0.3s ease;
}

.top-bar .burger-toggle-btn:hover {
    color: #a5a5a5;
}

#top-bar_content .menu {
    position: absolute;
    left: 0;
    width: 53%;
    height: 100%;
}

#top-bar_content > div.menu > ul {
    font-family: TerminalGrotesk;
    font-size: 20px;
    text-transform: uppercase;
    background-color: inherit;
    display: flex;
    height: 100%;
    align-items: center;
}

#top-bar_content > div.menu > ul li {
    height: 100%;
    list-style-type: none;
    position: relative;
    width: auto;
}

#top-bar_content > div.menu > ul li > a {
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    line-height: 0.9em;
    transition: all 0.2s ease;
    border-bottom: 4px solid transparent;
    text-align: center;
}

#top-bar_content > div.menu > ul > li > a:hover,
#top-bar_content > div.menu > ul > li > a.hoverClass {
    color: var(--main-color);
    border-color: var(--main-color);
}

/*.top-bar.unfold {*/
/*    height: 110px;*/
/*    border-bottom: 35px solid var(--main-color);*/
/*}*/

#top-bar_content > div.menu > ul li.sub ul {
    display: flex;
    flex-direction: column;
    font-family: SpaceGrotesk;
    text-transform: initial;
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    width: 450px;
    white-space: nowrap;
    background-color: var(--main-color);
    margin-left: 0!important;

}

#top-bar_content > div.menu > ul li.sub ul li {
    display: inline-block;
    padding: 0 10px;
    margin: 0;
}
#top-bar_content > div.menu > ul li.sub ul li a {
    background: var(--main-color);
    border: 0;
}

#top-bar_content > div.menu > ul li.sub ul li:hover {
    border-left: 3px solid;
    padding: 0 10px 0 7px;
}

#top-bar_content .icons {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 8%;
    height: 100%;
    right: 17%;
}

#top-bar_content .icons a {
    color: #fff;
    font-size: 3vw;
    line-height: 2vw;
}

#top-bar_content .logo-rcf {
    position: absolute;
    right: 0;
    width: 17%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#top-bar_content .logo-rcf a {
    display: block;
    height: 80%;
}

#top-bar_content .logo-rcf img {
    display: block;
    max-height: 100%;
    max-width: 100%;
}

.burger-container {
    position: fixed;
    z-index: -1;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    transition-delay: 0.3s;
    transition-property: z-index;
}
.burger-container.burger-open {
    z-index: 11;
    transition-delay: 0s;
    transition-property: z-index;
}

.burger-container .burger-overlay {
    position: absolute;
    left: 0;
    top:0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.burger-container.burger-open .burger-overlay {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.burger-container .burger-menu {
    z-index: 100;
    position: fixed;
    top: 100px;/
    left:0;
    width: 50vw;
    height: 0;
    background-color: #CCD6DF;
    transition: height 0.3s ease;
    box-shadow: 24px 25px 70px -13px #222;
    overflow: hidden;
}

.burger-container.burger-open .burger-menu {
    height: 70vh;
}

.burger-container .burger-menu .left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-right: 1px solid #000;
}

.burger-container .burger-menu .left a {
    font-size: 50px;
    color: #0F0F0F;
}

.burger-container .burger-menu .left a:hover {
    color: var(--main-color);
}

.burger-container .burger-menu .left p {
    position: absolute;
    writing-mode: vertical-rl;
    font-size: 2.3vh;
    bottom: 0;
    white-space: nowrap;
    transform: rotate(180deg);
}

.burger-container .burger-menu .burger-close {
    color: white;
    font-size: 2em;
}

.burger-container .burger-menu .playerToggle {
    display: block;
    font-size: 20px;
    color: #fff;
    margin-top: 15px;
    margin-left: 20px;
}

.burger-container .burger-menu .main-menu {
    font-family: TerminalGrotesk;
    font-size: 22px;
    width: 90%;
}

.burger-container .burger-menu .main-menu li {
    list-style: none;
    font-size: 4vh;
    line-height: 1.2em;
    text-transform: uppercase;
    border-bottom: 1px solid #323232;
    padding-top: 1.2vw;
}

.burger-container .burger-menu .main-menu li a {
    color: #2f2f2f;
}

.burger-container .burger-menu .main-menu li a:hover {
    color: var(--main-color);
}
.burger-container .burger-menu .right {
    position: relative;
    height: 70vh;
    overflow-y: scroll;
    padding-bottom: 40px;
}

.burger-container .burger-menu .right h4 {
    font-family: SpaceGrotesk;
    text-transform: uppercase;
    margin-left: 20px;
    margin-bottom: 0;
    font-size: 1.2rem;
    margin-top: 30px;
}

.burger-container .burger-menu .right h4 i {
    font-size: 0.6rem;
    vertical-align: middle;
}

.burger-container .burger-menu .right::-webkit-scrollbar-track
{
    background-color: transparent;
}

.burger-container .burger-menu .right::-webkit-scrollbar
{
    float: right;
    z-index: 50;
    width: 6px;
    background-color: transparent;
}

.burger-container .burger-menu .right::-webkit-scrollbar-thumb
{
    background-color: #909090;
    border-radius: 8px;
}

.burger-container .burger-menu .right .radios {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: row;
    margin: 0 10px 20px 10px;
}
.burger-container .burger-menu .right .radios > * {
    margin: 0 10px;
}
.burger-container .burger-menu .right .radios > p {
    grid-column: 1 / 5 ;
    font-size: 0.8rem;
    line-height: 0.9rem;
    text-transform: uppercase;
    margin-top: 10px;
    width: 100%;
}
.burger-container .burger-menu .right .radios > a {
    color: #0F0F0F;
    font-weight: bold;
}

.burger-container .burger-menu .right .radios > a:hover {
    color: var(--main-color);
}

.burger-container .burger-menu h5 {
    font-family: TerminalGrotesk;
    font-size: 24px;
    color: #aaaaaa;
    margin-left: 10px;
    margin-right: 80px;
    padding-left: 40px;
    padding-bottom: 7px;
    border-bottom: 2px solid #aaaaaa;
    text-transform: lowercase;
}

.burger-container .burger-menu .radio-list {
    margin-bottom: 30px;
}

.burger-container .burger-menu .radio-list li {
    list-style: none;
    display: flex;
    align-items: center;
}

.burger-container .burger-menu .radio-list li a {
    font-family: Karrik;
    color: #fff;
    transition: all 0.2s ease;
    font-size: 20px;
    line-height: 1.5rem;
}

.burger-container .burger-menu .radio-list a::before {
    font-family: "icomoon";
    font-weight: initial;
    content: "\e90e";
    font-size: 20px;
    margin-right: 7px;
}

.burger-container .burger-menu .radio-list li a:hover {
    color: var(--main-color);
    padding-left: 8px;
}

.burger-container .burger-menu .newsletter {
    width: 95%;
    margin: auto;
}

.burger-container .burger-menu .newsletter input {
    margin-bottom: 0;
}

.burger-container .burger-menu .newsletter .links {
    align-items: center;
    margin-left: 1rem;
}

.burger-container .burger-menu .newsletter .links a {
    color: #0a0a0a;
}

.burger-container .burger-menu .newsletter .links a:hover {
    text-decoration: underline;
}


.main-section {
    position: relative;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    color: #2d2d2d;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    margin-bottom: -1.5vw;
}

#index_content {
    display: grid;
    grid-template-columns: repeat(4, 1.5fr);
    grid-template-areas:
        "pin pin pin pin"
        "strip1 strip1 strip1 strip1"
        "article article article article"
        "random random random random";
    height: 100%;
    width: 100%;
    overflow: hidden;
    /*background: var(--bg1) top no-repeat, var(--bg2) bottom no-repeat, linear-gradient(180deg, #2154FF 50%, var(--main-color) 50%);*/
}

#index_content section {
    padding-left: 40px;
    padding-right: 40px;
}

#index_content section:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

section#pin-slider {
    margin-top: 180px;
    grid-area: pin;
    position: relative;
    margin-bottom: -5vw;
    padding-bottom: 3%;
    padding-top: 18vh;
    z-index: 10;
}

section#pin-slider:before {
    background-color: #CCD6DF;
    transform: skewY(2deg);
}

section#pin-slider .background-title {
    transform: skewY(-2deg);
}

section#articles {
    grid-area: article;
    padding-top: 18vh;
    min-height: 700px;
    position: relative;
    padding-bottom: 20vh;
}

section#articles .background-title {
    transform: skewY(-2deg);
}

section#articles::before {
    background-color: #ECECEC;
    transform: skewY(2deg);
}

section#strip1 {
    z-index: 5;
    grid-area: strip1;
    position: relative;
    top: 5vw;
    left: -5px;
    background-color: #ffbebc;
    height: 80px;
    width: 110%;
    transform: rotate(2deg);
    overflow: hidden;
}

section#strip2 {
    z-index: 5;
    grid-area: strip2;
    position: relative;
    top: 4%;
    left: -5px;
    background-color: #2154FF;
    height: 80px;
    width: 110%;
    transform: rotate(2deg);
}

.strip-text {
    text-align: center;
    height: 100%;
    font-family: TerminalGrotesk-Open;
    font-size: 60px;
    color: #fff;
    line-height: 90px;
    text-transform: uppercase;
}

.strip-text:hover {
    color: initial;
}

section#random {
    margin-top: -100px;
    grid-area: random;
    position: relative;
    padding-bottom: 15vh;
    margin-bottom: 0;
    background-color: #0F0F0F;
    padding-top: 18vh;
}

#homeScroll {
    padding-left: 36px;
    padding-right: 36px;
}

section#random .bg-title-container {
    transform: skewY(-2deg);
    top: -2vw;
}

section#random .background-title {
    transform: skewY(2deg);
    width: 135vw;
}

section#random:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 100px;
    transform: skewY(-2deg);
}

section#random .background-title {
    -webkit-text-stroke: 1px #6f6f6f;
    background-color: #0F0F0F;
}

section#footer {
    z-index: 2;
    background-color: transparent;
    position: relative;
    margin-top: 20vh;
    /*margin-bottom: -100px;*/
    grid-area: footer;
    min-height: 200px;
    height: fit-content;
}

section#footer::before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #191919;
    content: '';
    visibility: visible;
}

#footer div {
    z-index: 5;
    color: #fff;
}

#footer ul {
    display: flex;
    width: 100%;
    list-style-type: none;
    margin: 0 auto;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

#footer img {
    max-width: 80%;
}

#footer li {
    display: inline;
    padding: 5px 20px;
}

#footer > div {
    align-self: center;
}

#footer a {
    color: #fff
}

#footer i {
    font-size: 3rem;
}

.footer-list {
    justify-content: flex-start!important;
}

#footer .newsletter {
    width: 50%;
    margin: auto;
}
#footer .newsletter .links {
    justify-content: center;
}

#footer .newsletter .links a:hover {
    text-decoration: underline;
}

#footer h5 {
    font-family: SpaceGrotesk;
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
}


.bg-title-container {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: skewY(2deg);
    overflow: hidden;
}

.background-title {
    width: 100vw;
    position: relative;
    top: -2.4vh;
    font-family: SpaceGrotesk;
    font-size: 17.9vw;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 20vh;
    -webkit-text-stroke: 1px #666666;
    color: transparent;
    text-align: justify;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
    margin-bottom: 10vh;
}

.background-title:after {
    content: "";
    display: inline-block;
    width: 100%;
}

.burger-container.burger-open + .main-section {
    overflow: hidden;
}

.top-background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 25%;
    z-index: 0;
}

.top-background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: skewY(3deg);
    background-color: #fff;
}

#listing {
    margin-top: 140px;
    background-color: #fff;
    padding: 30px;
    padding-bottom: 12vw;
    z-index: 2;
    overflow: hidden;
}

#listing h3 {
    font-family: TerminalGrotesk-Open;
    text-transform: uppercase;
    font-size: 4rem;
}

#listing > section h4 {
    font-family: SpaceGrotesk;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.3rem;
}

#listing > section a {
    display: inline-block;
    padding: 5px;
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    background-color: #f1f1f1;
    color: #000;
    transition: all 0.2s ease;
    text-transform: lowercase;
    margin-bottom: 4px;
}

#listing .show_all_tags {
    background: #353535;
    color: #fff;
}

#listing .show_all_tags:hover {
    background: #f1f1f1;
    color: #000;
}

#listing > section a:hover {
    color: #fff;
    background-color: #0F0F0F;
}

#listing .vignettes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 0;
    margin-right: 0;
    overflow: visible;
    max-height: initial;
    transition: min-height 0.3s ease;
}
#listing .vignette p {
    font-size: 1.1vw;
}

#listing .vignette:hover .cat_color,
#listing .vignette.hover_effect .cat_color
{
    display: none;
}

#listing .vignette:hover .illustr,
#listing .vignette.hover_effect .illustr {
    filter: none;
}


    /*#listing .vignette {*/
/*    width: 23%;*/
/*    margin-top : 5%;*/
/*}*/

.main-section .vignettes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    max-height: 68vw;
    padding: 20px 20px 70px 10px;
    margin-right: -20px;
    overflow-y: scroll;
}

.main-section .vignettes::-webkit-scrollbar-track
{
    background-color: transparent;
}

.main-section .vignettes::-webkit-scrollbar
{
    float: right;
    z-index: 50;
    width: 6px;
    background-color: transparent;
}

.main-section .vignettes::-webkit-scrollbar-thumb
{
    background-color: #323232;
    border-radius: 8px;
}
#scrollLoader {
    height: 50%;
    min-height: 35px;
    min-width: 35px;
    width: 100%;
    padding: 0;
    justify-self: center;
    align-self: center;
}

#scrollLoader img {
    display: none;
    height: 30%;
    margin: auto;
}

#scrollLoader.active img {
    display: block;
}

/*#scrollLoader.active img {*/
/*    display: block;*/
/*}*/

.last-elements {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px 20px;
    width: 100%;
    margin: auto;
}

.vignette-large {
    position: relative;
    /*height: 5.8vw;*/
}

.vignette-large .illustr {
    position: relative;
    /*height: 100%;*/
    width: 11vw;
    height: 11vw;
    max-height: 124px;
    max-width: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    filter: none;
}

.vignette-large .illustr > a {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vignette-large .data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 1.5%;
}

.vignette-large .play-button {
    height: 30px;
    width: 30px;
    z-index: 4;
}

.vignette-large > a {
    color: #000;
}

.vignette-large .data p {
    margin-bottom: 0;
}
.vignette-large .data .date {
    line-height: 0.9rem;
}

.vignette-large .data .title {
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.2rem;
    text-align: justify;
    padding-top: 5px;
    padding-bottom: 5px;
}

.vignette-large .data .type {
    font-size: 0.9rem;
    line-height: 0.9rem;
}

.vignette {
    position: relative;
    color: #2d2d2d;
    font-size: 1.4em;
    line-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    width : 100%;
    background-color: #fff;
    transition: all 0.2s ease;
    background-size: cover;
    /*overflow: hidden;*/
}

.vignette_content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vignette::before {
    display: block;
    content: '';
    width: 100%;
    padding-top: 100%;
}

.vignette div.category {
    position: absolute;
    top: 3%;
    left: 0%;
    background-color: #fff;
    border-left: 0px;
    font-size: 0.8rem;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 3px;
    line-height: 1.1em;
    transition: top 0.3s ease;
    text-transform: uppercase;
}

.vignette:hover div.category,
.vignette.hover_effect div.category {
    top: -20%;
}

.vignette_content > a {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


.main-section > .content > .illustration .city {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    max-width: 100%;
    color: #fff;
    font-size: 1.4vw;
    position: absolute;
    text-align: center;
    transition: top 0.2s ease;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow:hidden;
    line-height: 1;
    top: 0;
    left: 0;
    padding: 0 10%;
}

/* Si annulé, remettre le selecteur avec celui au dessus */
.vignette_content p {
    position: absolute;
    display: inline;
    bottom: 3%;
    right: -3%;
    /*background-color: #000;*/
    color: #fff;
    border-left: 0px;
    font-size: 0.8rem;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 3px;
    line-height: 1.1em;
    transition: bottom 0.3s ease;
    text-transform: uppercase;
    text-align: right;

}

.vignette p span {
    font-family: SpaceGroteskBold;
    /*color: #fff;*/
    /*text-shadow: 1px 1px 4px #000000;*/
    /*font-weight: bolder;*/
    letter-spacing: 0.1rem;
    padding-top:5px;
    padding-bottom: 5px;
    background-color: #000;
    box-shadow: 0.5em 0 0 #000,-0.5em 0 0 #000;
}

.illustr {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1);
    opacity: 0.9;
}

.cat_color {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}

.pattern {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg2);
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.vignette:hover .pattern,
.vignette.hover_effect .pattern {
    opacity: 0;
}

.vignette .illustr img {
    display: block;
    position: absolute;
    max-height: 100%;
    vertical-align: middle;
}

.vignette:hover,
.vignette.hover_effect {
    transform: scale(1.1);
    box-shadow: 0 3px 16px #222;
    z-index: 40;
}

.vignette div.links {
    position: absolute;
    top: 100%;
    transition: top 0.2s ease;
}

.vignette:hover div.links,
.vignette.hover_effect div.links {
    top: 40%;
}

.vignette:hover .vignette_content p,
.vignette.hover_effect .vignette_content p {
    bottom: -50%;
}

.vignette div.links a {
    text-align: center;
    color: white;
    transition: background-color 0.2s ease;
}

.vignette_addon {
    position: absolute;
    /*width: 150%;*/
    height: 0;
    width: 120%;
    top: 88%;
    z-index: 20;
    background-color: #000;
    transition: width 0.2s ease;
    overflow: hidden;
    box-shadow: 0 3px 16px #222;

}

.vignette_addon h4 {
    font-family: SpaceGrotesk;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.vignette_addon p {
    display: block;
    position: relative;
    color: #fff;
    font-size: 1rem;
    line-height: 1.2rem;
    /*text-align: justify;*/
}

.vignette:hover .vignette_addon,
.vignette.hover_effect .vignette_addon {
    /*height: 60%;*/
    height: fit-content;
    height: -moz-fit-content;
    padding: 8%;
    padding-left: 15%;
    padding-right: 15%;
    border-top: 4px solid;

}

.vignette_addon .infos-button a {
    color: #fff;
}

.play-button {
    font-size: 6vw;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    width: 3vw;
    height: 3vw;
    text-align: center;
    background-color: #fff;
}

.play-button:hover {
    transform: scale(1.2);
}

.play-button a {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    line-height: 1rem;
    color: var(--main-color);
}

.infos-button {
    opacity: 0;
    /*position: absolute;*/
    font-size: 70px;
    /*transition: all 0.3s ease;*/
    border-radius: 50%;
    width: 30px;
    height: 30px;
    right: 12%;
    bottom: 10%;
    text-align: center;
    /*background-color: rgba(0,0,0, 0.4);*/
    border: 1px solid #7e7e7e;
    /*margin-bottom: 3%;*/
    margin-top: -3%;
    margin-left: 5%;
    float: right;
}

.vignette:hover .infos-button,
.vignette.hover_effect .infos-button {
    opacity: 1
}

.infos-button:hover {
    transform: scale(1.2);
}

.infos-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-size: 20%;
    line-height: 1rem;
    color: #000;
}

.slick-arrow {
    z-index: 20;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.50);
    width: 45px;
    height: 45px;
}

.slick-arrow:hover,
.slick-arrow:focus {
    background-color: #fff;
}

.slick-prev:before {
    font-family: icomoon;
    content: "\e901";
    color: #222222;
    font-size: 30px;
    margin-right: 5px;
}

.slick-next:before {
    font-family: icomoon;
    content: "\e902";
    color: #222222;
    font-size: 30px;
    margin-left: 3px;
}

#caroussel .slick-arrow {
    background-color: initial;
}

#caroussel .slick-arrow:before {
    color: #fff;
}

.article-element {
    margin-left: 10px;
    margin-right: 10px;
}

.article-element a {
    color: #191919;
    font-family: SpaceGrotesk;
}

.article-element a:hover {
    text-decoration: underline;
}
#articles-slider {
    z-index: 2;
}
#articles-slider .slick-arrow {
    top: 22%;
}

.article-element h5 {
    font-size: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;

}

.article-element p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.article-element .article-image {
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    margin-bottom: 8px;
}

#caroussel {
    padding-left: 40px;
}

#caroussel .slick-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #222222;
}

#caroussel .slick-list {
    height: 100%
}

#caroussel .slick-track {
    height: 100%;
}

#caroussel .slick-arrow {
    z-index: 1;
}

#caroussel .slick-prev { left: 55px; }
/*#caroussel .slick-prev::before { color: var(--main-color) }*/
#caroussel .slick-next { right: 15px; }
/*#caroussel .slick-next::before { color: var(--main-color) }*/

#caroussel .slick-slide h5 {
    font-size: 1.6rem;
    position: absolute;
    display: block;
    font-family: SpaceGrotesk;
    /*background-color: rgba(255,255,255,0.6);*/
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

#caroussel .slick-slide p {
    display: inline-block;
    font-family: SpaceGrotesk;
    position: absolute;
    bottom: 0;
    color: #fff;
    /*background-color: rgba(255,255,255,0.6);*/
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}



.main-section > .content {
    position: relative;
    background-color: #ffffff;
    min-height: 100%;
    padding-top: 120px;
    padding-bottom: 5rem;
    height: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.main-section .content .side-floating_container {
    position: absolute;
    left: 95%;
    top: 200px;
    bottom: 0;
    z-index: 50;
}

.main-section .side-floating {
    width: 15vw;
    background-color: #d6d6d6;
    position: sticky;
    position: -webkit-sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    padding: 12px 15px;
}

.main-section .side-floating hr {
    width: 70%;
    border: 1px solid #a3a3a3;
    border-top: 0;
}
.side-floating .social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.side-floating .social .www {
    text-transform: uppercase;
    font-size: 1.8rem;
    font-family: SpaceGroteskBold;
    padding-top: 5%;
}
.side-floating .social a {
    display: block;
    width: 33%;
    font-size: 4vw;
    line-height: 3vw;
    text-align: center;
    color: #000;
    transition: color 0.3s ease;
}

.side-floating .social a:hover {
    color: var(--main-color);
}

.side-floating p {
    font-size: 0.8rem;
    margin-bottom: 0;
    text-transform: uppercase;
}

.side-floating .tags a {
    display: inline-block;
    font-size: 0.8rem;
    line-height: 0.8rem;
    border: 1px solid #8a8a8a;
    border-radius: 3px;
    padding: 3px;
    background-color: #e2e2e2;
    color: #2d2d2d;
    transition: background-color 0.3s ease;
    margin-bottom: 4px;
}

.side-floating .tags a:hover {
    background-color: white;
}

.informations .rating-title {
    font-family: TerminalGrotesk!important;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: initial!important;
}

.selectors {
    height: 3rem;
    /*margin-left: 20px;*/
    display: flex;
    align-items: center;
    z-index: 10;
    background-color: #fff;
    margin-bottom: 4%;
}

.selectors div {
    position: relative;
    align-self: start;
}

.selectors p {
    margin-bottom: 0;
    margin-left: 0;
}

.selectors ul {
    position: relative;
    list-style: none;
    direction: ltr;
    height: 3vw;
    line-height: 1vw;
    border: 0;
    /*padding-top: 10px;*/
    cursor: pointer;
    /*width:40%;*/
    z-index: 10;
    margin: 0;
}

.selectors ul li {
    display: block;
    padding-left: 20px;
    height: fit-content;
    font-size: 1.1rem;
    background-color: #fff;
    z-index: 100;
    padding-right: 50px;
    padding-top: 5px;
    line-height: 1.2rem;
}

.selectors ul li a {
    color: #000;
    transition: 0s;
    display: inline-block;
    width: 100%;
}

.selectors ul li:not(.init):hover a,
.selectors ul li a:hover {
    color: #fff;
}

.selectors ul li:not(.init):hover {
    color: #fff;
    background-color: #000;
}


.selectors ul:before {
    position: absolute;
    font-family: 'icomoon' !important;
    content: "\e904";
    font-size: 10px;
    padding-top: 7px;
    left: 0px;
    z-index: 2;
    pointer-events: none;
}


.selectors li:not(.init) {
    display: none;
}

.classement {
    margin: auto;
    width: 93%;
}

.classement > .cell:not(:last-of-type){
    border-bottom: 2px solid #000;
}

.classement > .cell:first-of-type {
    border: 0;

}

.classement .rate {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: TerminalGrotesk;
    border-right: 2px solid #000;
    max-height: 100%;
}

.classement .artwork {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100%;
    /*height: 5vw*/
}

.classement .artwork img {
    max-height: 64px;
    max-width: 64px;
    height: 80%;
}

.classement .data {
    display: flex;
    position: relative;
    align-items: center;
    z-index: 2;
}

.classement .data > span {
    /*line-height: 1vw;*/
    display: flex;
    align-items: center;
    z-index: 2;
}

.classement .data .artist {
    align-items: flex-end;
    font-size: 1.3rem;
    line-height: 1.7rem;
    font-weight: bold;
}

.classement .data .album {
    line-height: 1.4rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.classement .data .album-label {
    align-items: flex-start;
    font-size: 0.8rem;
    line-height: 1.4rem;
}

.classement .data .like  {
    position: absolute;
    font-size: 3.4rem;
    display: flex;
    height: 100%;
    align-items: center;
    z-index: 1;
}

.classement .data .like span {
    font-family: TerminalGrotesk;
    font-size: 0.65rem;
    position: absolute;
    left: 0.6rem;
    top: 1.5rem;
    text-align: center;
}

/*.classement .data .like span {*/
/*    font-size: 3vw;*/
/*}*/



.classement .links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.classement .links .play-button {
    width: 2rem;
    height: 2rem;
    border: 0px;
    background-color: #000;
}

.classement .links .play-button a {
    font-size: 1rem;
    color: #fff;
}

.informations .rating-title > span {
    font-family: TerminalGrotesk-Open;
}

.main-section > .content > .illustration {
    position: relative;
    padding-top: 61%;
    width: 61%;
    margin: auto;

}

.main-section > .content > .illustration .background1 {
    position: absolute;
    background-color: #d6d6d6;
    background-image: var(--bg1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
}

.main-section > .content > .illustration .background2 {
    position: absolute;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: 30px;
    left: 0px;
}

.main-section > .content > .illustration .city {
    width: initial;
    height: initial;
    display: initial;
    top: initial;
    position: initial;
    z-index: 4;
    font-size: 1.5rem;
}

.main-section > .content > .illustration .illustr_content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-section > .content > .illustration .play-button {
    z-index: 4;
    width: 20%;
    height: 20%;
    font-size: 30px;
}

.main-section > .content > .illustration .play-button a {
    font-size: 3rem;
}


.main-section > .content .informations {
    font-family: SpaceGrotesk;
    margin-top: 70px;
    margin-bottom: 2rem;
    width: 86%;
    margin-left: auto;
    margin-right: auto;
}

.main-section > .content .informations iframe {
    width: -webkit-fill-available;
    width: 100%;
}

.main-section > .content .informations h4 {
    font-size: 3rem;
    line-height: 3rem;
    font-weight: bold;
    font-family: SpaceGrotesk;
}

.main-section > .content .informations h5 {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: bold;
    font-family: SpaceGrotesk;
}

.main-section > .content .informations h6 {
    font-family: SpaceGrotesk;
    /*text-transform: uppercase;*/
    text-align: right;
}
.main-section > .content .informations h6 span {
    font-weight: bold;
}

.main-section > .content .informations img {
    /*margin: 9px;*/
}

.main-section > .content .informations p.intro {
    font-size: 1.25rem;
    font-weight: 100;
    line-height: 1.4rem;
}

.main-section > .content > .vignettes {
    margin-top: 0;
}

.main-section > .content > .vignettes .vignette {
    width : 29%;
    padding-top: 29%;
    margin: 0 2% 30px;
}

.main-section > .content > .vignettes .vignette p {
    font-size: 1.2rem;
}



.top-margin {
    margin-top: 140px;
}

.body-title {
    z-index: 9;
    display: block;
    position: relative;
    font-family: "TerminalGrotesk-Open";
    margin-left: 10px;
    width: 40%;
    color: white;
    border-bottom: 1px solid white;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.body-title span {
    height: 100%;
    float: right;
}
.body-title span a {
    font-family: SpaceGrotesk;
    font-size: 1rem;
    border: 1px solid #0F0F0F;
    padding: 5px;
    color: #0F0F0F;
}

.body-title span a:hover {
    color: #fff;
    background-color: #0F0F0F;
}

.color-dark {
    color: #0F0F0F;
    border-color: #0F0F0F;
}

.color-light {
    color: #CCD6DF;
    border-color: #CCD6DF;
}

.pinned {
    margin-top: -2%;
    margin-bottom: 0px;
    z-index: 1;
}

.pinned .slick-list,
.tag-listing .slick-list {
    /*overflow-y: visible;*/
    overflow: visible;
    padding-top: 2%;
    padding-bottom: 2%;
}

.tag-listing .vignette:hover,
.tag-listing .vignette.hover_effect {
    z-index: 10;
}

.tag-listing .vignette:hover,
.tag-listing .vignette.hover_effect {
    z-index: 25;
}

.tag-listing {
    margin-bottom: 3vw;
}

#listing h4 a {
    position: relative;
    display: inline-block;
    vertical-align: text-bottom;
    height: 100%;
    font-family: SpaceGrotesk;
    font-size: 1rem;
    line-height: 0.9rem;
    border: 1px solid #0F0F0F;
    padding: 5px;
    padding-bottom: 2px;
    color: #0F0F0F;
    margin-left: 50px;
}

#listing h4 a:hover {
    color: #fff;
    background-color: #0F0F0F;
}

.pinned .vignette,
.tag-listing .vignette {
    position: relative;
    display: flex;
    margin: 0 10px;
    padding-top: 0;
}

#topcampus_container {
    z-index: 5;
    padding-left: 40px;
    padding-top: 20px;
}

.top-campus_informations {
    background-color: #fff;
    position: absolute;
    right: 10%;
    top: -7.5%;
    left: 90%;
    bottom: -7.5%;
    z-index: 3;
    width: 0;
    overflow: hidden;
    transition: width 0.4s ease, left 0.4s ease, padding 0.4s ease;
}

.top-campus_informations.active, .top-campus_informations:hover {
    box-shadow: 0 3px 16px #222;
    left: 23%;
    width: 64.7%;
    padding: 10px;
    padding-left: 15px;
}
.top-campus_informations div {
    height: 100%;
}

.top-campus_informations p {
    margin-bottom: 5px;
}

.top-campus_informations img {
    max-height: 50%;
}

.classement > div {
    position: relative;
}

.classement .links {
    z-index: 10;
}

#homepage-topcampus {
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 8;
}

#homepage-topcampus h3,
#homepage-topcampus h5 {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-family: TerminalGrotesk-Open;
    font-size: 4.5vw;
    line-height: 4vw;
    color: #000;
    padding-top: 1vw;
    /*margin-bottom: 20px;*/
}

#homepage-topcampus h5 {
    padding-top: 0;
    font-size: 2.5vw;
    margin-top: -20px;
}

#homepage-topcampus .terminal-plain {
    font-family: TerminalGrotesk;
}

#homepage-topcampus .topcampus-element {
    display: grid;
    grid-template-columns: 0.3fr 0.6fr 1.3fr 0.3fr;
    grid-template-rows: 1.1fr 1.4vw 1fr 10px;
    gap: 0px 15px;
    grid-template-areas:
            "rating artwork artist artist"
            "rating artwork album album"
            "rating artwork label label"
            "separator separator separator separator";
    color: #0F0F0F;
    padding-top: 10px;
}

#homepage-topcampus .topcampus-element:hover {
    background-color: #2d2d2d;
    color: white;
}

#homepage-topcampus .topcampus-element::after {
    display: block;
    width: 80%;
    height: 1px;
    content: "";
    grid-area: separator;
    justify-self: center;
    align-self: end;
    border-bottom: 1px solid #000;
}

#homepage-topcampus .topcampus-element .rating {
    grid-area: rating;
    justify-self: center;
    align-self: center;
    font-family: TerminalGrotesk;
    font-size: 3vw;
    padding-left: 1vw
}
#homepage-topcampus .topcampus-element .artwork {
    grid-area: artwork;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#homepage-topcampus .topcampus-element .artist {
    font-weight: bold;
    font-size: 1.5vw;
    line-height: 1vw;
    align-self: end;
    grid-area: artist;
    text-transform: uppercase;
}
#homepage-topcampus .topcampus-element .album {
    font-weight: bold;
    grid-area: album;
    font-size: 1.2vw;
}
#homepage-topcampus .topcampus-element .album-label {
    grid-area: label;
    align-self: start;
    font-size: 1vw;
    line-height: 1vw;
}

#homepage-topcampus .topcampus-element .artwork img {
    display: block;
    max-height: 100%;
}

#homepage-topcampus a#foot-link {
    font-family: TerminalGrotesk-Open;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    color: #000;
}

#homepage-topcampus a#foot-link:hover {
    background-color: var(--main-color);
    color: #fff;
}

.pagination {
    margin-top: 5%;
    margin-bottom: 5%;
}

.pagination ul {
    width: fit-content;
    margin: auto;
}

.pagination li {
    font-size: 1.4rem;
}

.pagination li.active {
    color: #fff;
    background-color: #414141;
    padding: 0.1875rem 0.625rem;
}

.jssocials-shares {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

#shareReveal h4 {
    font-family: SpaceGrotesk;
    text-align: center;
}

.jssocials-share-logo {
    font-size: 2.5rem;
}



.toast {
    margin-top: 1rem !important;
    opacity: 1 !important;
}

#searchForm input {
    height: 3.4rem;
    font-size: 1.3rem;
}

#searchForm button {
    margin-left: 1rem;
}

@media (max-width: 1450px) {
    #top-bar_content > div.menu > ul {
        font-size: 1.3vw;
    }
}

@media (max-width: 1024px) {
    .top-bar .burger-toggle-btn {
        font-size: 4vw;
        width: 8%;
        min-font-size: 35px;
        min-width: 40px;
    }

    .body-title {
        width: 60%;
    }

    .vignette_content p, .main-section > .content > .illustration .city {
        font-size: 70%;
    }

    #caroussel {
        padding-left: 0;
    }

    .burger-container .burger-menu {
        width: 75vw;
    }

    #topcampus_container {
        padding-left: 0;
    }

    #homepage-topcampus {
        height: 120vw;
    }

    #homepage-topcampus .topcampus-element {
        grid-template-columns: 8fr 5fr 14fr 18fr 30fr;
        grid-template-rows: 1fr 10px;
        grid-template-areas:
            "rating artwork artist album label"
            "separator separator separator separator separator";
        align-items: center;
    }

    #homepage-topcampus .topcampus-element .artist {
        align-self: center;
    }

    #homepage-topcampus .topcampus-element .album-label {
        align-self: center;
    }

    #homepage-topcampus .topcampus-element::after {
        width: 86%;
    }

    #homepage-topcampus .topcampus-element .artist {
        font-size: 1.8vw;
    }
    #homepage-topcampus .topcampus-element .album {
        font-size: 1.6vw;
    }
    #homepage-topcampus .topcampus-element .album-label {
        font-size: 1.5vw;
    }
    #homepage-topcampus a#foot-link {
        font-size: 3vw;
    }

    #footer .footer-list {
        justify-content: center !important;
        padding-top: 2vw;
    }

    #footer .logo-rcf {
        width: 20%;
        margin: auto;
    }

    .pagination {
        margin-top: 40%;
    }

    #listing .vignette p {
        font-size: 1rem;
    }

    /* SIDE FLOATER */

    .main-section .content .side-floating_container {
        position: relative;
        left: 0;
        top: 50px;
        right: 0;
        bottom: 0;
    }

    .main-section .side-floating {
        width: 80%;
        margin: auto;
        background-color: transparent;
        position: initial;
        display: flex;
        flex-direction: column;
        padding: 12px 15px;
    }

    .main-section .side-floating hr {
        width: 70%;
        border: 1px solid #a3a3a3;
        border-top: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .side-floating .social {
        display: flex;
        flex-direction: row;
        justify-content: end;
        flex-wrap: wrap;
    }

    .side-floating .social .www {
        text-transform: uppercase;
        font-size: 1.8rem;
        font-family: SpaceGroteskBold;
        padding-top: 5%;
    }
    .side-floating .social a {
        display: block;
        width: 14%;
        font-size: 3rem;
        line-height: 3rem;
        text-align: center;
        color: #000;
        transition: color 0.3s ease;
    }

    .side-floating .social a:hover {
        color: var(--main-color);
    }

    .side-floating p {
        font-size: 1.3rem;
        margin-bottom: 0;
        text-transform: uppercase;
    }

    .side-floating .tags a {
        display: inline-block;
        font-size: 1rem;
        line-height: 1rem;
        border: 1px solid #8a8a8a;
        border-radius: 3px;
        padding: 6px;
        background-color: #e2e2e2;
        color: #2d2d2d;
        transition: background-color 0.3s ease;
        margin-bottom: 4px;
    }

    .side-floating .tags a:hover {
        background-color: white;
    }

    .classement .data .like span {
        display: none;
    }

    .last-elements ~ .pagination {
        margin-top: 6%
    }
    .vignette-large .illustr {
        width: 11vw;
        height: 11vw;
    }

}

@media (max-width: 720px) {
    .top-bar .burger-toggle-btn {
        font-size: 35px;
        width: 48px;
    }

    .burger-container .burger-menu {
        width: 96vw;
        top: 100px;
    }

    .main-section .vignettes {
        grid-template-columns: repeat(3, 1fr);
    }

    #homepage-topcampus {
        height: 150vw;
    }

    #homepage-topcampus .topcampus-element {
        grid-template-columns: 5fr 3fr 10fr 11fr;
        grid-template-rows: 10fr 6fr 10px;
        grid-template-areas:
            "rating artwork artist label"
            "rating artwork album label"
            "separator separator separator separator";
        align-items: center;
    }

    #homepage-topcampus .topcampus-element .artist {
        align-self: center;
    }

    #homepage-topcampus .topcampus-element .album-label {
        align-self: center;
    }

    #homepage-topcampus .topcampus-element::after {
        width: 86%;
    }

    #homepage-topcampus .topcampus-element .artist {
        font-size: 2.2vw;
    }
    #homepage-topcampus .topcampus-element .album {
        font-size: 1.9vw;
    }
    #homepage-topcampus .topcampus-element .album-label {
        font-size: 1.8vw;
    }

    #listing .vignettes {
        grid-template-columns: repeat(2, 1fr);
    }

    #listing h3 {
        font-size: 3rem;
    }

    .last-elements {
        grid-template-columns: repeat(1, 1fr);
    }

    .vignette-large {
        height: 13.4vw;
    }
}

@media (max-width: 640px) {
    .body-title {
        width: 80%;
        font-size: 1.9rem;
    }

    .burger-container .burger-menu .main-menu li {
        font-size: 5vw;
        line-height: 7vw;
    }

    .burger-container .burger-menu .right .radios {
        grid-template-columns: repeat(3, 1fr);
    }

    .burger-container .burger-menu .right .radios > p {
        grid-column: 1 / 4;
    }

    .burger-container .burger-menu .left a {
        font-size: 7vw;
    }

    .burger-container .burger-menu .left p {
        font-size: 4vw
    }

    .main-section .vignettes {
        grid-template-columns: repeat(2, 1fr);
    }

    #homepage-topcampus {
        height: 170vw;
    }

    #homepage-topcampus h5 {
        margin-top: -15px;
    }

    #homepage-topcampus .topcampus-element .artist {
        font-size: 3vw;
    }
    #homepage-topcampus .topcampus-element .album {
        font-size: 2.5vw;
        line-height: 2.5vw;
    }
    #homepage-topcampus .topcampus-element .album-label {
        font-size: 2.3vw;
        line-height: 2.3vw;
    }

    #homepage-topcampus .topcampus-element .rating {
        font-size: 6vw;
    }

    #homepage-topcampus a#foot-link {
        font-size: 4vw;
    }

    #footer .logo-rcf {
        width: 32%;
        margin: auto;
    }

    .pagination {
        margin-top: 233%;
    }

    .classement .artwork img {
        position: absolute;
        top: 20%;
        max-height: 53px;
        max-width: 53px;
    }

    .classement .rate {
        align-items: flex-end;
    }

    .classement .links {
        justify-content: space-around;
    }

    .top-campus_informations {
        bottom: 39.5%;
    }

    .top-campus_informations.active, .top-campus_informations:hover {
        left: 25%;
        width: 71.7%;
    }

    .top-campus_informations i {
        font-size: 0.9rem;
    }
}

@media (max-width: 450px) {
    .main-section > .content > .illustration .play-button {
        width: 34%;
        height: 34%;
    }

    #caroussel .slick-prev {
        left: 25px;
    }

    .side-floating .social {
        justify-content: space-around;
    }

    .play-button a {
        height: 98%;
        width: 106%;
        font-size: 12.6vw;
    }

    .play-button {
        width: 100%;
        height: 42%;
    }

    .burger-container .burger-menu {
        top: 100px;
    }

    .main-section .vignettes {
        grid-template-columns: repeat(1, 1fr);
        max-height: 126vw;
    }

    #homeScroll {
        padding-left:0;
        padding-right: 0;
    }

    .pagination {
        margin-top: 160%;
    }

    #listing .vignette p {
        font-size: 0.8rem;
    }

    #listing h3 {
        font-size: 2rem;
    }
}