/*
Theme Name: ACTU-CULTURE
Theme URI: https://www.actu-culture.com/
Author: Annelise GUY
Author URI: http://anneliseguy.com/
Description: Site Actu-culture.com
Requires at least: WordPress 6.0
Version: 1.0
*/

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

@font-face {
    font-family: Poppins-Italic;
    font-style: normal;
    font-weight: normal;
    src: url(fonts/Poppins-Italic.ttf);
}

@font-face {
    font-family: Poppins-BoldItalic;
    font-style: normal;
    font-weight: normal;
    src: url(fonts/Poppins-BoldItalic.ttf);
}

@font-face {
    font-family: Poppins-SemiBold;
    font-style: normal;
    font-weight: 600;
    src: url(fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: Poppins-SemiBoldItalic;
    font-style: normal;
    font-weight: 600;
    src: url(fonts/Poppins-SemiBoldItalic.ttf);
}

@font-face {
    font-family: Poppins-Bold;
    src: url(fonts/Poppins-Bold.ttf);
}
@font-face {
    font-family: Poppins-ExtraBold;
    src: url(fonts/Poppins-ExtraBold.ttf);
}
@font-face {
    font-family: Poppins-Black;
    src: url(fonts/Poppins-Black.ttf);
}

/* variables */
:root {
    --main-color: #0000ff;
    --main-color-dark: #0024ba;
    /* --buy-color: #f6ab3b; */
    --buy-color: #ffa900;
    --buy-color-dark: #E8982E;
    --taupe: #d6c8b9;
    --light: #e1e1e1;
    --gray: #808080;
    --paper: #f7f2eb;
    --bs-heading-color: black;
    --bs-secondary-bg-rgb: 0, 0, 255;
    --bs-tertiary-bg-rgb: 214, 200, 185;
    --bs-primary: var(--buy-color);
    --font-family-base: Poppins;
    --form-control-color: var(--main-color);
    --black: black;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

/* general */
* {
    box-sizing: border-box;
  }
body {
    font: 1rem/1.5 Poppins;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Poppins-SemiBold;
    font-style: normal;
}
h2 {
    font-size: 35px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 25px;
}

.logo {
    height: 95px;
}

.col-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.col {
    flex: 0 0 33.3333%;
    padding: 16px;
}

/* blog stylesheet */
.logo-section > a {
    margin-bottom: 20px;
}
.menu {
    position: fixed;
    top: 0px;
}

.breadcrumb {
    padding: 0;
    margin-bottom: 0;
    display: inline-block;
}

.breadcrumb a {
    color: var(--black);
    text-decoration: none;
    font-family: Poppins;
    font-size: 13px;
}
.breadcrumb .breadcrumb_last {
    font-family: Poppins-Bold;
    font-size: 13px;
}

.breadcrumb p {
    color: var(--black);
    font-family: Poppins-Bold;
    font-size: 13px;
    display: inline;
}

.navigation.pagination {
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.navigation.pagination .page-numbers {
    font-family: Poppins-SemiBold;
    font-size: 18px;
    text-decoration: none;
    color: black;
    margin: 10px;
}
.navigation.pagination .page-numbers.current {
    font-family: Poppins-Bold;
    color: var(--main-color);
}
.navigation.pagination .prev.page-numbers::after,
.navigation.pagination .next.page-numbers::after {
    content: '';
    width: 25px;
    height:25px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    top: 5px;
}
.navigation.pagination .next.page-numbers::after {
    background-image: url(img/next.svg);
}
.navigation.pagination .prev.page-numbers::after {
    background-image: url(img/prev.svg);
}

.footer-copyright {
    color: white;
    font-size: 11px;
}

/* SEARCH */
.search-result .search-type li a {
    color: var(--black);
    font-family: Poppins-Bold;
    font-size: 13px;
    position: relative;
    padding-bottom: 4px;
}
.search-result .search-type li.active a {
    color: var(--black);
}
.search-result .search-type li.active a::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    bottom: -8px;
    left: 0;
    background-color: var(--main-color);
    transition: transform 0.3s ease;
}

.search-result .search-type::after {
    content: "";
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    bottom: -8px;
    left: 0;
    background-color: var(--light);
}
.search-box{
    width: fit-content;
    height: fit-content;
    position: relative;
}
.input-search {
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 13px;
    outline: none;
    transition: all .5s ease-in-out;
    padding-right: 40px;
    color:black;
}
.input-search::placeholder{
    color:rgba(255,255,255,.5);
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 100;
}
.btn-search{
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color:black ;
    background-color:transparent;
    pointer-events: none;  
}
.btn-search:hover ~ .input-search, 
.btn-search:focus ~ .input-search, 
.search-result-form .input-search{
    width: 175px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 2px solid var(--main-color);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
.input-search:hover, 
.input-search:focus{
    width: 175px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 2px solid var(--main-color);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

/* MAIN MENU */
.site__header__menu li a {
    color: var(--black);
    font-family: Poppins-Bold;
    font-size: 13px;
    position: relative;
    padding-bottom: 4px;
}

.site__header__menu li a:hover,
.site__header__menu li a:focus,
.site__header__menu li a:active {
    color: var(--black);
}

.site__header__menu li a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 6px;
    bottom: -16px;
    left: 0;
    background-color: var(--main-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.site__header__menu li a:hover::before,
.site__header__menu li a:focus::before,
.site__header__menu li a:active::before {
    transform-origin: left;
    transform: scaleX(1);
}

.site__header__menu::after {
    content: "";
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    bottom: -16px;
    left: 0;
    background-color: var(--light);
}

/* SECONDARY MENU */
.bg-body-secondary .logo-section .special-mention {
    color: white;
    font-family: Poppins-Bold;
    font-size: 15px;
}
.secondary__header__menu li a {
    color: white;
    font-family: Poppins-Bold;
    font-size: 13px;
    position: relative;
    transition: transform 0.3s ease;
}

.secondary__header__menu li a:hover,
.secondary__header__menu li a:active,
.secondary__header__menu li a:focus {
    color: white;
    transition: transform 0.3s ease;
    transform: translateY(-2px);
}

.admin-bar .menu {
    top: 32px;
    /* on prend en compte le décalage */
}


/* FOOTER MENU */
.footer__menu,
.footer__menu ul {
    list-style-type: none;
    padding: 0;
}
.footer__menu .footer__menu_content {
    display: flex;
}
.footer__menu .menu-item .nav-link {
    position: relative;
    width: fit-content;
}
footer .footer__menu .menu-item .nav-link::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: var(--main-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}
footer .footer__menu .menu-item .nav-link:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}
footer .footer__menu .menu-item.footer-section-logo .nav-link::before {
    content: none;
}
.footer__menu .footer-section-logo,
footer .footer-section-title {
    margin: 15px auto;
    font-family: Poppins-Bold;
    font-size: 15px;
}
.footer__menu .footer-section-logo::after,
footer .footer-section-title::after {
    content: "";
    display: block;
    width: 22px;
    height: 6px;
    background-color: black;
    margin-top: 15px;
}
.footer__menu .footer-section-logo .nav-link {
    width: auto;
}
.footer__menu .footer-section-logo .nav-link::before {
    content: none;
}
.footer__menu .footer-section-logo img {
    max-width: 100px;
}
.marquee {
    position: relative;
    overflow: hidden;
    --move-initial: calc(0);
    --move-final: calc(-100%);
}
.marquee .footer__menu {
    width: 100%;
    display: flex;
    position: relative;
    transform: translate3d(var(--move-initial), 0, 0);
    animation: marquee 20s linear infinite;
    animation-play-state: running;
}
@keyframes marquee {
    0% {
        transform: translate3d(var(--move-initial), 0, 0);
    }

    100% {
        transform: translate3d(var(--move-final), 0, 0);
    }
}
footer {
    font-family: Poppins;
    font-size: 13px;
}
.logo-bande {
    display: flex;
    justify-content: space-around;
    width: calc(100vw - 9px);
    position: relative;
    left: calc(-50vw + 50%);
}
.logo-bande .nav-link img {
    max-height: 50px;
    margin: 0 40px;
}
.outro, .outro .filigram, .outro .filigram img  {
    height: 100%;
}
.outro .footer-logo {
    max-width: 150px;
    padding-bottom: 20px;
}
.outro .footer-description {
    font-family: Poppins;
    font-size: 13px;
    padding-bottom: 20px;
    padding-right: 30px;
}

.footer-copyright {
    font-family: Poppins;
}
.footer-copyright a {
    color: white;
    text-decoration: none;
}
/* GENERAL */
@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }
    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}
@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }
    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}
.post .block-texte img,
.post .block-chapo img,
.author-preview img, 
.post-section .post .post-title,
.post-section .post .post-infos,
.post-section .post-preview {
    opacity: 0;
}
.post .qiota_trunked img {
    opacity: 1;
}
.post .block-texte img.is-inViewport,
.post .block-chapo img.is-inViewport,
.author-preview img.is-inViewport, 
.post-section .post .post-data.is-inViewport .post-title,
.post-section .post-data.is-inViewport .post-infos,
.post-section .post-data.is-inViewport .post-preview{
    animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}
.post-section .post .post-data.is-inViewport .post-title {
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
}
.post-section .post .post-data.is-inViewport .post-infos.is-inViewport {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
}
.post__content h2 {
    margin-top: 40px;
    font-size: 40px;
}
.post__content h3 {
    margin-top: 20px;
    font-size: 20px;
}
.form-btn-group {
    margin-top: 40px;
}
.form-check-group, .form-group {
    margin: 15px auto;
}
.form-check-group .form-group-label {
    font-family: Poppins-Bold;
    font-size: 15px;
    margin-bottom: 7px;
}
.form-check-group label {
    font-family: Poppins-SemiBold;
    font-size: 15px;
}
.form-check-group .form-check {
    padding-left: 0;
    margin-bottom: 7px;
}
.form-check-group input[type="radio"] {
    appearance: none;
    background-color: #fff;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid var(--main-color);
    border-radius: 50%;
    margin: 3px 5px 0 0;
}
.form-check-group input[type="radio"] {
    display: grid;
    place-content: center;
}
.form-check-group input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
}
input[type="radio"]:checked::before {
    transform: scale(1);
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 30px;
    margin-right: 120px;
    float: right;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}
.slider span {
    display: block;
    font-family: Poppins-Bold;
    font-size: 16px;
    width:100px;
}
.slider span.left-span {
    position: relative;
    left: -80px;
    top: 5px;
}
.slider span.right-span {
    position: relative;
    left: 70px;
    top: -17px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--main-color);
}
input:focus + .slider {
    box-shadow: 0 0 1px var(--main-color);
}
input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}
#searchDate {
    width: 250px;
    border-width: 0px;
    border-bottom: 2px black solid;
    margin: 15px 0; 
    padding: 10px 2px; 
    appearance: none;
    font-family: Poppins-Bold;
    font-size: 15px;
    border-radius: 0;
}
#searchDate[type="text"] {
    background-image: url(./img/calendar.svg);
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 1rem auto;
}
#searchDate::placeholder {
    color: black;
}
#searchDate::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background: url(./img/calendar.svg) no-repeat;
    width: 20px;
    height: 20px;
    border-width: thin;
}
.btn {
    color: black;
    font-family: Poppins-Bold;
    font-size: 12px;
    min-width: 130px;
    padding: 10px;
    border: 2px solid var(--buy-color);
    margin: 0 5px;
    display: flex;
    align-items: end;
    justify-content: space-evenly;
    transition: 0.5s;
}
.btn .fa-chevron-down {
    font-size: 18px;
    margin-left: 8px;
}
.btn .fa-regular {
    font-weight: 500;
    font-size: 18px;
    margin-right: 10px
}
.btn.btn-primary, 
.wpcf7-form input[type="submit"] {
    color: white;
    background-color: var(--main-color);
    --bs-btn-bg: var(--main-color);
    border-radius: 0;
    border-width: 0;
    font-size: 14px;
    width: fit-content;
    padding: 10px 25px 9px;
    margin: 0;
    position: relative;
}
.wpcf7-form input[type="submit"]:hover {
    background-color: var(--buy-color);
}
.btn.btn-primary div {
    z-index: 2;
    position: relative;
}
.btn.btn-primary::before {
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background-color: var(--buy-color);
    z-index: 0;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    color: black;
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s ease all;
}
.btn.btn-primary:hover::before,
.btn.btn-primary:focus::before {
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1; 
}
.btn.btn-secondary {
    --bs-btn-color: var(--black);
    --bs-btn-bg: transparent;
    border-radius: 0;
    width: fit-content;
    transition: all .3s;
    position: relative;
    height: 50px;
    padding: 10px 20px 12px;
}
.btn.btn-secondary:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--buy-color);
    z-index: -2;
}
.btn.btn-secondary:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--buy-color-dark);
    transition: all .3s;
    z-index: -1;
}
.btn.btn-secondary:hover:after,
.btn.btn-secondary:active:after,
.btn.btn-secondary:focus:after {
    width: 100%;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary:focus {
    color: var(--black);
    --bs-btn-hover-bg: var(--buy-color-dark);
    border-color: var(--buy-color-dark); 
}
.btn.btn-tertiary {
    border-radius: 0;
    background-color: white;
    color: black;
    position: relative;
}
.btn.btn-tertiary:hover,
.btn.btn-tertiary:active,
.btn.btn-tertiary:focus {
    border-color: var(--buy-color-dark);
}
.btn.btn-tertiary div {
    line-height: 15px;
}
.login-menu .nav-item,
.outro .btn {
    max-width: 150px;
}
.login-menu .btn.btn-primary {
    padding: 10px 20px 14px;
    height: 50px;
    font-size: 12px;
}
.login-menu .btn.btn-primary svg {
    z-index: 5;
}
.login-menu .btn.btn-primary:hover svg rect {
    stroke: black !important;
    transition: 1s;
}
.btn-border {
    border-width: 0px;
    position: relative;
    height: 50px;
    padding: 10px;
}
.btn.btn-border div {
    line-height: 15px;
}
.btn.btn-border > svg {
    max-height: 50px;
    height: 50px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.btn-border > svg rect {
    fill: none;
    stroke: var(--buy-color);
    stroke-width: 4;
    stroke-dasharray: 422, 0;
    transition: all 0.35s linear;
}
.btn-border > div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-border div.btn-text  {
    margin-top: 6px;
    white-space: wrap;
}
a.btn-border div.btn-text  {
    white-space: nowrap;
    padding-bottom: 6px;
}
.btn-border:hover {
    background: rgba(225, 51, 45, 0);
}
.btn-border:hover > svg rect {
    stroke-dasharray: 15, 310;
    stroke-dashoffset: 48;
    transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn.btn-cancel {
    background-color: black;
    color: white;
    border-radius: 0;
    padding: 10px 25px;
    font-size: 14px;
    border-width: 0;
}
.btn svg, .btn svg#Calque_2 {
    max-height: 18px;
    display: inline-block;
    width: 100%;
    margin-right: 10px;
}
.btn.btn-secondary svg {
    max-height: 22px !important;
}
.dropdown-menu {
    border-radius: 0px;
    box-shadow: 1px 1px 5px #aaa;
    border-width: 0px;
    padding: 15px;
}
.dropdown-menu .dropdown-item {
    color: black;
    font-family: Poppins-Bold;
    font-size: 13px;
    padding: 10px;
    display: flex;
}
.dropdown-menu .dropdown-item svg,
.dropdown-menu .dropdown-item i {
    font-size: 20px;
    max-height: 20px;
    margin-right: 10px;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
    background-color: var(--bs-dropdown-link-hover-bg);
}
a.search-link {
    color: black;
}
.link-no-style {
    color: inherit;
    text-decoration: none;
}

.sep {
    width: 100%;
    height: 1px;
    background-color: var(--light);
    display: block;
    margin: 50px 0;
}

.bg-paper {
    background-color: var(--paper);
    width: calc(100vw - 9px);
    position: relative;
    left: calc(-50vw + 50%);
}
.carousel {
    width: auto;
    margin: 30px 15px;
}
.carousel .carousel-inner {
    height: 100%;
    width: auto;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    max-height: 100%;
}
.carousel .carousel-inner .carousel-item {
    height: 100%;
    width: auto;
    max-width: 100%;
}
.carousel .carousel-inner .carousel-item p.item-content {
    text-align: center;
    max-height: 780px;
}
.carousel .carousel-inner .carousel-item img.img-fluid {
    max-height: 100%;
    max-width: 100%;
}
.carousel .carousel-inner .carousel-item .img-caption{
    height: auto;
    max-height: 100px;
    overflow: auto;
}
.carousel-control-next {
    justify-content: flex-end;
} 
.carousel-control-prev {
    justify-content: flex-start;
}
.carousel .carousel-control-prev-icon {
    background-image: url(img/prev.svg)
}
.carousel .carousel-control-next-icon {
    background-image: url(img/next.svg)
}
/* HOME */
.intro.home {
    margin-top: 75px;
}
.intro .filigram,
.intro .gimmick {
    position: relative;
    z-index: 99;
}

.archive .intro .gimmick img,
.tag .intro .gimmick img,
.category .intro .gimmick img,
.subcategory .intro .gimmick img {
    left: -57px;
}
.intro .gimmick img {
    position: absolute;
    bottom: -215px;
    left: -45px;
    max-width: 200px;
}

.intro .filigram img {
    position: absolute;
    max-width: 150px;
    top: -27px;
    left: -6px;
}

.intro .blog-title h1 {
    font-family: Poppins-Bold;
    font-size: 36px;
}

.intro .blog-description {
    font-family: Poppins;
    font-size: 13px;
}

.post-section-top .post-data.position-static {
    padding-bottom: 0px !important;
}
.post-section-top h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 15px;
    background-color: var(--main-color);
}

.post-section {
    position: relative;
}
.post-section .head-section {
    margin-bottom: 20px;
}
.post-section-top h2 {
    margin-left: 15px;
}
.post-section h2 {
    font-family: Poppins-SemiBold;
    font-size: 40px;
}
.post-section .section-title {
    max-width: 42%;
}
.post-section.gimmick h2 {
    position: relative;
    left: -15px;
    line-height: 1;
}
.post-section.gimmick h2::after {
    content: '';
    background-image: url(img/gimmick.svg);
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 55px;
    height: 130px;
    width: 50px;
    display: block;
    position: absolute;
    z-index: 0;
    transform: translateY(8px);
}
.post-section .post.post-auteur .post-preview {
    background-image: url(img/redacteur.gif);
}
.post-section .post .post-preview {
    position: relative;
    background-image: url(img/vignette.jpg);
    background-position: center;
    background-size: cover;
    width: 416px;
    height: 270px;
    overflow: hidden;
}
.post-section .post .post-preview:hover img {
    transform: scale(1.05);
}
.post-section .post .post-preview img {
    object-fit: cover;
    transition: all .5s ease;
    flex: 1;
    z-index: 1;
}
.post-section.thirds-section .post .post-preview {
    width: 269px;
    height: 174px;
}

.intro a.see-more-link,
.post-section a.see-more-link {
    font-family: Poppins-SemiBold;
    font-size: 16px;
    text-decoration: none;
    color: var(--black);
    position: relative;
    top: 20px;
    text-align: right;
}

.intro .see-more-link::after,
.post-section .see-more-link::after {
    content: '';
    background-color: var(--main-color);
    background-image: url(img/icon-plus.svg);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    width: 35px;
    height: 35px;
    position: relative;
    top: 10px;
    right: -10px;
    display: inline-block;
    line-height: 35px;
    padding-left: 5px;
    transition: all 200ms ease;
}
.see-more-link:hover::after {
    background-size: 70%;
}
.post-section-top .post:first-child .post-preview {
    width: 750px;
    height: 486px;
}
.post-section-top .post:nth-child(2) .post-preview {
    width: 530px;
    height: 343px;
}
.post-section-top .post:nth-child(3) .post-preview,
.post-section-top .post:nth-child(4) .post-preview {
    width: 640px;
    height: 414px;
}
.category .intro,
.archive .intro,
.tag .intro {
    margin: auto;
}
.archive .intro .gimmick,
.tag .intro .gimmick,
.category .intro .gimmick {
    z-index: 0;
}
.archive .intro .gimmick img,
.tag .intro .gimmick img,
.category .intro .gimmick img {
    bottom: -310px;
}
.archive .post-section-top .col-md-8 .post .post-preview,
.tag .post-section-top .col-md-8 .post .post-preview,
.category .post-section-top .col-md-8 .post .post-preview {
    width: 840px;
    height: 544px;
}
.archive .post-section-top .col-md-4 .post .post-preview,
.tag .post-section-top .col-md-4 .post .post-preview,
.category .post-section-top .col-md-4 .post .post-preview {
    width: 416px;
    height: 270px;
}

.post .post-preview {
    height: 240px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post.first .post-preview {
    height: 430px;
}

.post.second .post-preview {
    height: 300px;
}

.post .post-title {
    font-family: Poppins-Bold;
    font-size: 18px;
}

.post .post-infos, .post .post-infos a {
    font-style: normal;
    font-size: 13px;
    text-decoration: none;
    color: black;
    flex-wrap: wrap;
}

.post .post-infos .post-category, .post .post-infos .post-category a {
    font-weight: 700;
}

.post .post-category::after {
    content: '|';
    color: var(--main-color);
    font-family: Poppins-ExtraBold;
    position: relative;
    left: 4px;
}
.post.fiche-auteur .block-auteur::before {
    content: none;
}
.post.fiche-auteur .block-auteur {
    font-family: Poppins;
    padding-left: 0;
}
.post.fiche-auteur .author-name-container {
    align-items: self-end;
    display: flex;
}
.post.fiche-auteur .author-name {
    padding-top: 400px;
}
.post.fiche-auteur .author-name h1 {
    transform: rotate(-90deg) translateY(75px);
    -webkit-transform-origin: bottom left;
    margin-bottom: -5px;
    width: 400px;
}
.post.fiche-auteur .author-preview {
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.post.fiche-auteur .author-preview {
    overflow: hidden;
}
.post.fiche-auteur .author-preview p {
    font-family: Poppins-Italic;
    color: var(--gray);
    font-size: 13px;
    max-width: 500px;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}
.event-type-agenda {
    background-color: var(--main-color);
    padding: 10px;
    color: white;
    font-family: Poppins-SemiBold;
    font-size: 19px;
    transform: rotate(-90deg) translateY(-200px) translateX(65px);
    -webkit-transform-origin: center right;
    position: absolute;
    width: 130px;
    text-align: center;
}
.post.event .event-infos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.post.event .event-location {
    border-left: solid 6px var(--main-color);
    padding-left: 21px;
    font-family: Poppins;
    font-size: 16px;
}
.post.event .event-dates {
    font-family: Poppins-Bold;
    font-size: 27px;
}
.post.event .event-organisateur {
    font-family: Poppins-SemiBold;
    font-size: 23px;
}
.sticky-container {
    height: fit-content;
    overflow: hidden;
}
.post.fiche-auteur h2 {
    font-family: Poppins-Bold;
    font-size: 30px;
}
/** AD DISPLAYS **/
.ad-display-placeholder {
    background-color: lightgray;
}

.ad-display-placeholder.full-banner {
    display: block;
    width: 1000px;
    height: 250px;
}

.ad-display-placeholder.sidebar-banner {
    display: block;
    width: 300px;
    height: 250px;
}

/** MAIN CONTENT **/
.main-content .post-section {
    margin-top: 75px;
}
.main-content .post-section:first-child {
    margin-top: 0;
}

/** SIDEBAR **/

.sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 150px;
}
.sidebar > a {
    display: flex;
    justify-content: center;
    margin: 20px auto;
}
.sidebar > * {
    /* flex: 1; */
}
.sidebar .sidebar-title .sidebar-title-wrapper.larger {
    width: 375px;
    transform: rotate(-90deg) translateY(-325px);
}
.sidebar .sidebar-title .sidebar-title-wrapper {
    transform: rotate(-90deg) translateY(-300px);
    -webkit-transform-origin: center right;
    text-align: right;
    width: 350px;
}
.sidebar .sidebar-title .sidebar-title-wrapper h2 {
    font-family: Poppins-Bold;
    font-size: 30px;
    position: relative;
    bottom: 8px;
    width: fit-content;
    float: right;
    white-space: nowrap;
}
.sidebar .sidebar-title .sidebar-title-wrapper h2::after {
    content: '';
    background-color: white;
    width: 100%;
    height: 10px;
    display: block;
    position: relative;
    bottom: 15px;
    z-index: -2;
}
.sidebar .sidebar-title {
    height: 75%;
    margin-top: 50px;
}

.sidebar .sidebar-content h3 {
    font-family: Poppins-ExtraBold;
    font-size: 18px;
}

.sidebar-container {
    position: relative;
    margin-bottom: 50px;
    min-height: 250px;
}

.sidebar-container.whos-who a {
    font-family: Poppins-SemiBold;
    color: black;
    text-decoration: underline;
    font-size: 18px;
}
.sidebar-container .post.event .post-infos .post-mag {
    font-weight: 700;
}
.sidebar-content {
    padding-top: 50px;
    position: relative;
    height: fit-content;
}

.sidebar-content::before{
    content: '';
    width: 1px;
    height: 100%;
    background-color: var(--main-color);
    position: absolute;
    display: inline-block;
    left: -30px;
    top: 50px;
    z-index: -1;
}

.sidebar .sidebar-content .post-date {
    position: relative;
    font-family: Poppins-Bold;
    font-size: 17px;
}

.sidebar .sidebar-content p {
    font-family: Poppins;
    font-size: 13px;
}
.sidebar .fiche-auteur-sidebar {
    text-align: center;
}
.sidebar .fiche-auteur-sidebar .author-preview {
    width: 180px;
    height: 180px;
    margin: auto;
    overflow: hidden;
    border-radius: 100%;
    background-image: url(img/redacteur.gif);
    background-size: contain;
}
.sidebar .fiche-auteur-sidebar .author-preview img {
    object-fit: cover;
    aspect-ratio: auto;
    max-width: 180px;
    max-height: 180px;
    width: auto;
    transition: all 0.5s ease-in-out;
    opacity: 1;
}
.sidebar .fiche-auteur-sidebar:hover .author-preview img {
    transform: scale(1.05);
}
.sidebar .fiche-auteur-sidebar .author-name {
    font-family: Poppins-SemiBold;
    font-size: 20px;
}
.sidebar .fiche-auteur-sidebar .author-fonction {
    font-family: Poppins;
    font-size: 16px;
}

/** FOOTER **/
footer {
    border-top: var(--main-color) solid 4px;
}

/** SINGLE **/
.single h1 {
    font-family: Poppins-Bold;
    font-size: 40px;
}

.single .post-meta {
    font-family: Poppins-Bold;
    font-size: 13px;
    position: relative;
    padding-left: 5px;
}

.single .post-meta::before {
    content: '';
    background-color: var(--main-color);
    font-family: Poppins-Bold;
    position: relative;
    left: -4px;
    width: 3px;
    display: inline-block;
    height: 16px;
    top: 2px;
}
.single .post-meta::before {
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.single .post-tags {
    padding-bottom: 20px;
}
.single .post-tags .post-tag {
    font-family: Poppins-SemiBold;
    font-size: 10px;
    position: relative;
    padding: 5px 10px 4px;
    margin: 5px;
    border-radius: 50px;
    border: var(--taupe) 1px solid;
    color: black;
    text-decoration: none;
    overflow: hidden;
}
.single .post-tags .post-tag a {
    color: inherit;
    text-decoration: none;
}
.single .post-tags .post-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--taupe);
    transition: all .5s ease-in-out;
    z-index: -1;
    border-radius: 50px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}
.single .post-tags .post-tag:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}
.single .img-caption {
    font-family: Poppins-Italic;
    color: var(--gray);
    font-size: 13px;
    text-align: center;
    margin: auto;
    padding-bottom: 20px;
}
.block-note {
    font-family: Poppins-BoldItalic;
    font-size: 13px;
}
.block-auteur {
    font-family: Poppins-Bold;
    font-size: 13px;
    position: relative;
    padding-left: 12px;
}
.block-auteur::before {
    content: '';
    position: absolute;
    background-color: var(--main-color);
    font-family: Poppins-Bold;
    left: 3px;
    width: 3px;
    display: inline-block;
    height: 16px;
}
.block-chapo {
    font-family: Poppins-Bold;
    font-size: 22px;
}
.block-soustitre {
    font-family: Poppins-SemiBold;
    font-size: 20px;
}
.block-question {
    font-family: Poppins-SemiBoldItalic;
    font-size: 24px;
}
.block-exergue {
    background-color: var(--paper);
    padding: 40px 75px;
    text-align: center;
    margin: 40px auto;
}

.block-exergue .block-texte, .block-exergue {
    font-family: Poppins-SemiBold;
    font-size: 22px;
    text-align: center;
}
.block-exergue .block-texte::after {
    content: '';
    position: relative;
    display: block;
    width: 110px;
    height: 6px;
    background-color: var(--main-color);
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;;
}
.block-texte img,
.block-auteur img {
    margin: 25px auto 10px;
    display: flex;
}
.block-exergue .block-auteur::before {
    content: none;
}
.block-exergue .block-auteur {
    font-family: Poppins-Bold;
    font-size: 13px;
    text-align: center;
    padding-left: 0;
}
.block-infos-pratiques {
    font-family: Poppins-Bold;
    font-size: 16px;
    padding-left: 25px;
    border-left: var(--main-color) 5px solid;
}
.block-dates {
    width: fit-content;
    font-family: Poppins;
    font-size: 17px;
    border-bottom: var(--main-color) 3px solid;
    margin-bottom: 10px;
}
.block-dates p {
    margin-bottom: 0;
}
.block-encadre {
    padding-left: 25px;
    border-left: var(--main-color) 8px solid;
    background-color: var(--paper);
    padding: 50px;
    margin-bottom: 25px;
}
.block-default {
    margin-bottom: 20px;
}

/* AGENDA */
.agenda .blog-title {
    font-size: 40px;
}
.agenda .filter-by {
    font-family: Poppins-Bold;
    font-size: 13px;
    width: fit-content;
}
.agenda .post-date, 
.breves .post-date {
    font-family: Poppins-Bold;
    font-size: 17px;
    width: 150px;
}
.breves .post-date::before,
.agenda .post-date::before {
    content: '';
    display: inline-block;
    position: absolute;
    height: 190px;
    width: 1px;
    background-color: var(--light);
    transform: translate(130px);
}
.breves h2,
.agenda h2 {
    font-family: Poppins-ExtraBold;
    font-size: 18px;
}
.breves .event,
.agenda .event {
    flex: 1;
}
.breves .event p,
.agenda .event p {
    font-family: Poppins;
    font-size: 13px;
}
.breves .post.event::before,
.agenda .post.event::before {
    content: '';
    width: 6px;
    height: 70px;
    position: absolute;
    transform: translateX(-26px);
    background-color: var(--light);
}
.agenda .post-tags {
    padding-bottom: 20px;
}
.agenda .post-tags .post-tag {
    font-family: Poppins-SemiBold;
    font-size: 11px;
    position: relative;
    padding: 10px 15px 8px;
    margin: 5px;
    border-radius: 50px;
    border: var(--taupe) 2px solid;
    color: black;
    width: fit-content;
    text-decoration: none;
    overflow: hidden;
}
.agenda .post-tags .post-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--taupe);
    transition: all .5s ease-in-out;
    z-index: -1;
    border-radius: 50px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}
.agenda .post-tags .post-tag:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}
.agenda .post-tags .post-tag a {
    color: inherit;
    text-decoration: none;
}
.agenda .post-tags .post-tag.active {
    border-color: var(--main-color);
    border-width: 3px;
}

/* SEARCH */
.search-result .intro {
    margin-top: 0;
}
.search-result .intro .blog-title {
    font-family: Poppins-Bold;
    font-size: 40px;
}
.search-result .intro .count {
    font-family: Poppins-Black;
    color: var(--main-color);
    font-size: 40px;
    margin-right: 10px;
}
.search-result .sidebar-search {
    display: flex;
}
.search-result .sidebar-search .search-result-form {
    width: 250px;
}
.search-result-form .btn {
    min-width: fit-content;
    display: inline;
}
.search-result .input-search {
    width: 250px;
    margin-bottom: 15px;
}
.search-result .intro h1 {
    font-family: Poppins-Bold;
    font-size: 60px;
}
.search-result select {
    width: 250px;
    border-width: 0px;
    border-bottom: 2px black solid;
    margin: 15px 0; 
    padding: 10px 2px; 
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%230024e8%22%20d%3D%22M233.4%20406.6c12.5%2012.5%2032.8%2012.5%2045.3%200l192-192c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200L256%20338.7%2086.6%20169.4c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3l192%20192z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 1rem auto;
    font-family: Poppins-Bold;
    font-size: 15px;
}
.auteur-list-preview h2.post-title {
    font-family: Poppins-Bold;
    font-size: 42px;
}
.auteur-list-preview h2.post-title::after {
    content: none;
}
.auteur-list-preview .btn.btn-primary {
    color: white;
    min-width: fit-content;
}
.auteur-list-preview .btn.btn-primary:hover,
.auteur-list-preview .btn.btn-primary:focus {
    color: black;
}
.auteur-list-preview .auteur-preview {
    background-image: url(img/redacteur.gif);
    background-position: center;
    background-size: cover;
}
.post-section .list-posts > a {
    width: 100%;
    margin: 20px auto;
}
.archive .post-section .first-post .post-preview {
    width: 100%;
    height: auto;
    aspect-ratio: 1.54;
}
.error-404 .blog-title {
    flex: 1;
}
.error404 .blog-title h1 {
    font-size: 150px;
    display: flex;
    justify-content: center;
}
.error404 .blog-title h2 {
    font-size: 40px;
    display: flex;
    justify-content: center;
}
.contact h1 {
    font-family: Poppins-ExtraBold;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 50px;
}
.contact .wpcf7-form label {
    font-family: Poppins-Bold;
    font-size: 15px;
}
.contact .wpcf7-form,
.contact .wpcf7-form label {
    width: 100%;
    padding-top: 8px;
}
.contact .wpcf7-form input[type="text"],
.contact .wpcf7-form input[type="email"],
.contact .wpcf7-form textarea {
    border-radius: 0px;
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid black;
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
    margin-bottom: 30px;
    width: 100%;
    max-height: 150px;
}
.contact .wpcf7-form input[type="text"]:focus,
.contact .wpcf7-form input[type="email"]:focus,
.contact .wpcf7-form textarea:focus {
    border-color: var(--main);
}
.contact .liste-formulaires {
    display: flex;
    flex-direction: column;
}
.contact .form-container {
    display: none;
    transition: all .5s ease-in-out;
}
.contact .form-container.active {
    display: block;
}
.contact .liste-formulaires .nav-item {
    font-family: Poppins;
    font-size: 30px;
    border-bottom: 1px black solid;
    padding: 25px 0;
    transition: all .5s ease-in-out;
    cursor: pointer;
}
.contact .liste-formulaires .nav-item:first-child {
    padding-top: 0;
}
.contact .liste-formulaires .nav-item:last-child {
    border-width: 0px;
}
.contact .liste-formulaires .nav-item.active {
    font-family: Poppins-Bold;
    font-size: 30px;
}
.contact .liste-formulaires .nav-item.active::before {
    content: '';
    background-image: url(img/next.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    transform: translateX(-35px) translateY(13px);
    width: 29px;
    height: 29px;
}
.newsletter-form * {
    color: black;
}
.newsletter-form .mention-rgpd {
    font-family: Poppins;
	font-size: 14px;
    margin: 15px 0;
}
.newsletter-form .subtitle {
	font-family: Poppins-Bold;
	font-size: 20px;
}
.newsletter-form p {
	font-family: Poppins;
	font-size: 14px;
}
.newsletter-form .choice-block label img {
    background-color: var(--paper);
	padding: 25px
}
.newsletter-form label {
    font-family: Poppins-Bold;
    font-size: 15px;
    width: 100%;
    padding-top: 8px;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"]{
    border-radius: 0px;
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid black;
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
    margin-bottom: 30px;
    width: 100%;
    max-height: 150px;
}
.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
    border-color: var(--main);
}
.newsletter-form .checkbox-label {
    font-family: Poppins-SemiBold;
	font-size: 15px;
}
.newsletter-form input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid var(--main-color);
    margin: 3px 5px 0 0;
    display: grid;
    place-content: center;
}
.newsletter-form input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
}
.newsletter-form input[type="checkbox"]:checked::before {
    transform: scale(1);
}
.newsletter-form .choice-block .checkbox-label span {
    position: relative;
    left: 30px;
}
.newsletter-form .choice-block input {
    position: relative;
    top: -25px;
}
.newsletter-form input[type="checkbox"]#terms {
    position: relative;
    bottom: -26px;
}
.newsletter-form label[for=terms] {
    position: relative;
    left: 25px;
}
.sitemap h2 {
    margin: 15px auto;
    font-family: Poppins-SemiBold;
    font-size: 30px;
}
.sitemap h2::after {
    content: "";
    display: block;
    width: 22px;
    height: 6px;
    background-color: black;
    margin-top: 5px;
}
.sitemap div > ul {
    padding: 0;
}
.sitemap div ul {
    list-style-type: none;
}
.sitemap ul ul li::before {
    content: '';
    position: absolute;
    top: 7px;
    left: -16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--main-color);
}
.sitemap ul li {
    position: relative;
    width: fit-content;
}
.sitemap ul li::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: var(--main-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}
.sitemap ul li:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}
.sitemap ul li a {
    text-decoration: none;
    color: black;
    font-family: Poppins;
}