@charset "UTF-8";
@import 'https://fonts.googleapis.com/css?family=Cinzel+Decorative:400,700,900';
@import 'https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins:wght@200;300;400;500;600&display=swap';
/* COLOR */
/* FONTS */
/* CHEMIN */
#back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  align-items: center;
  justify-content: center;
  display: none;
  width: 5rem;
  height: 5rem;
  background-color: transparent;
  border: 1px solid white;
  opacity: 0;
  visibility: hidden;
  z-index: 4000;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  #back-to-top {
    bottom: 10rem;
  }
}
#back-to-top .icon {
  color: white;
  font-size: 2.4rem;
}
#back-to-top.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

#menu-wrapper {
  overflow: hidden;
  max-width: 100%;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}

#hamburger-menu {
  position: relative;
  width: 25px;
  height: 20px;
  margin: 80px 50px 30px 15px;
}
#hamburger-menu span {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  color: black;
  position: absolute;
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;
  background-color: #0e1924;
}
#hamburger-menu span:nth-child(1) {
  top: 2px;
}
#hamburger-menu span:nth-child(2) {
  top: 9px;
}
#hamburger-menu span:nth-child(3) {
  top: 16px;
}
#hamburger-menu.open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
#hamburger-menu.open span:nth-child(2) {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  left: -60px;
}
#hamburger-menu.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}
#hamburger-menu:hover span {
  background-color: #F0554A;
}

.close-button {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: -5rem;
  right: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .close-button {
    top: -4rem;
  }
}
.close-button > div {
  position: relative;
}
.close-button-block {
  width: 4rem;
  height: 2rem;
  position: relative;
  overflow: hidden;
}
.close-button-block:before, .close-button-block:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(55% - 4px);
  display: block;
  width: 4px;
  height: 25px;
  transform-origin: bottom center;
  background: white;
  transition: all ease-out 280ms;
}
.close-button-block:last-of-type {
  transform: rotate(180deg);
}
.close-button .in .close-button-block:before {
  transition-delay: 280ms;
  transform: translateX(20px) translateY(-20px) rotate(45deg);
}
.close-button .in .close-button-block:after {
  transition-delay: 280ms;
  transform: translateX(-22px) translateY(-22px) rotate(-45deg);
}
.close-button .out {
  position: absolute;
  top: 0;
  left: 0;
}
.close-button .out .close-button-block:before {
  transform: translateX(-5px) translateY(5px) rotate(45deg);
}
.close-button .out .close-button-block:after {
  transform: translateX(5px) translateY(5px) rotate(-45deg);
}
.close-button:hover .in .close-button-block:before {
  transform: translateX(-5px) translateY(5px) rotate(45deg);
}
.close-button:hover .in .close-button-block:after {
  transform: translateX(5px) translateY(5px) rotate(-45deg);
}
.close-button:hover .out .close-button-block:before {
  transform: translateX(-20px) translateY(20px) rotate(45deg);
}
.close-button:hover .out .close-button-block:after {
  transform: translateX(20px) translateY(20px) rotate(-45deg);
}

.modal-backdrop {
  background: #375e97;
}
.modal-backdrop.show {
  opacity: 0.85;
}

.modal-dialog {
  width: 97.5%;
  max-width: initial;
  padding-top: 8rem;
}
@media (max-width: 767px) {
  .modal-dialog {
    margin-top: 5rem;
  }
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 85%;
  }
}
@media (min-width: 1200px) {
  .modal-dialog {
    width: 65%;
  }
}
@media (min-width: 992px) {
  .modal-dialog-small {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .modal-dialog-small {
    width: 40%;
  }
}

.modal-content {
  border: 10px solid #4070b6;
  padding: 5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .modal-content {
    padding: 3rem 1.5rem;
  }
}
.modal-content .title {
  font-size: 4rem;
  color: #0e1924;
}
@media (max-width: 767px) {
  .modal-content .title {
    font-size: 3rem;
  }
}
.modal-content .title strong {
  font-size: 7rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .modal-content .title strong {
    font-size: 3rem;
  }
}
.modal-content .title small {
  font-size: 4rem;
}
@media (max-width: 767px) {
  .modal-content .title small {
    font-size: 2rem;
  }
}
.modal-content .title span {
  font-size: 7rem;
  display: block;
  color: #F0554A;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .modal-content .title span {
    font-size: 3.5rem;
  }
}
.modal-content .title-open {
  font-size: 3.6rem;
  color: #F0554A;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .modal-content .title-open {
    font-size: 3rem;
  }
}
.modal-content p {
  font-size: 3rem;
}
@media (max-width: 767px) {
  .modal-content p {
    font-size: 2.4rem;
  }
}

.main-header {
  left: 0;
  right: 0;
  z-index: 100;
  transition: all linear 0.3;
  background-color: #f1dfdf;
}
.main-header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.main-header .navbar {
  padding: 1.5rem 0;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .main-header .navbar {
    padding: 1.5rem;
  }
}
.main-header .navbar .navbar-brand {
  width: 30%;
}
.main-header .navbar .navbar-brand .spip_logo {
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .main-header .navbar .navbar-brand {
    width: 15%;
  }
}
.main-header .navbar .navbar-toggler {
  position: relative;
  display: inline-flex;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
  transform: translate3d(0, 33%, 0px);
  background-color: #f47067;
}
@media (min-width: 768px) {
  .main-header .navbar .navbar-toggler {
    height: 5rem;
    width: 5rem;
  }
}
.main-header .navbar .navbar-toggler:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.9rem;
  transform: translate3d(-50%, -50%, 0px);
  height: 3px;
  width: 3px;
  background-color: white;
  box-shadow: -6px -6px 0 0 white, 0px -6px 0 0 white, 6px -6px 0 0 white, -6px 0px 0 0 white, 6px 0px 0 0 white, -6px 6px 0 0 white, 0px 6px 0 0 white, 6px 6px 0 0 white;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .main-header .navbar .navbar-toggler:after {
    top: 2.4rem;
    height: 4px;
    width: 4px;
    box-shadow: -8px -8px 0 0 white, 0px -8px 0 0 white, 8px -8px 0 0 white, -8px 0px 0 0 white, 8px 0px 0 0 white, -8px 8px 0 0 white, 0px 8px 0 0 white, 8px 8px 0 0 white;
  }
}
.main-header .navbar .navbar-toggler:hover {
  background-color: white;
}
.main-header .navbar .navbar-toggler:hover:after {
  background: transparent;
  box-shadow: -9px -9px 0 0 transparent, -6px -3px 0 0 #F0554A, 9px -9px 0 0 transparent, -3px 0px 0 0 #F0554A, 3px 0px 0 0 #F0554A, -9px 9px 0 0 transparent, 0px 3px 0 0 #F0554A, 9px 9px 0 0 transparent, 6px -3px 0 0 #F0554A;
}
@media (min-width: 768px) {
  .main-header .navbar .navbar-toggler:hover:after {
    box-shadow: -12px -12px 0 0 transparent, -8px -4px 0 0 #F0554A, 12px -12px 0 0 transparent, -4px 0px 0 0 #F0554A, 4px 0px 0 0 #F0554A, -12px 12px 0 0 transparent, 0px 4px 0 0 #F0554A, 12px 12px 0 0 transparent, 8px -4px 0 0 #F0554A;
  }
}
.main-header .navbar .navbar-toggler:hover, .main-header .navbar .navbar-toggler:focus, .main-header .navbar .navbar-toggler:active {
  outline: none;
  border: none;
  box-shadow: none;
}

.main-nav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  visibility: hidden;
  background: #FF4234 url("../img/bgs/fd_festival.jpg") 0% 0%/cover no-repeat fixed;
  background-blend-mode: overlay;
  transition: all 0.2s ease-in-out;
}
.main-nav .container {
  display: none;
}
.main-nav.show {
  visibility: visible;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-nav.show .container {
  display: block;
}
.main-nav.show .navbar-nav {
  display: flex;
}
.main-nav.show .btn-close {
  width: 4rem;
  height: 4rem;
  background-color: white;
  border-radius: 50%;
}
.main-nav .navbar-nav {
  display: none;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 3rem;
}
.main-nav .navbar-nav .nav-item {
  font-size: 2.2rem;
  font-weight: 600;
  transition: all 0.3s linear;
}
.main-nav .navbar-nav .nav-item .nav-link {
  white-space: nowrap;
  text-transform: uppercase;
  color: white;
}
.main-nav .navbar-nav .nav-item:hover {
  cursor: pointer;
}
.main-nav .navbar-nav .nav-item:hover .nav-link {
  color: black;
}

html {
  /* Ré-équilibrage du Rem face au Pixel pour des calculs simples: ex) 10px=1.0rem */
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
  height: 100%;
  background: url("../img/bgs/fd_festival.jpg") 0% 0%/cover no-repeat fixed;
}

.top, .header, main, .partenaires, .footer {
  z-index: 1;
  position: relative;
}

a, .more, .tag {
  transition: all 0.3s ease-in-out;
}
a:hover, a:link, .more:hover, .more:link, .tag:hover, .tag:link {
  text-decoration: none;
  outline: none;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.title, .btn, .rubtitle {
  font-family: "Cinzel Decorative", cursive;
}

.rubtitle {
  position: relative;
  font-size: 2.6rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .rubtitle {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .rubtitle {
    font-size: 3.6rem;
  }
}

.texte {
  font-family: "Lato", sans-serif;
}

.more {
  position: relative;
  color: #F0554A;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  border: 2px solid #F0554A;
}
.more:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F0554A;
  transform: scaleX(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.more:hover {
  color: white;
}
.more:hover:before {
  transform: scaleX(1);
}

.btn {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  border-radius: 2.9rem;
  padding: 0.5rem 3rem;
}
.btn--bgcolre {
  background-color: black;
  color: white;
  width: -moz-max-content;
  width: max-content;
}
.btn--bgcolre:hover {
  background-color: #F0554A;
  color: white;
}
.btn--border {
  border: 3px solid white;
  color: black;
  width: -moz-max-content;
  width: max-content;
}
.btn--border:hover {
  background-color: black;
  color: white;
  border-color: black;
}
.btn-group {
  background-color: #f1dfdf;
}
.btn:focus {
  box-shadow: none;
}

.btn-group {
  width: 100%;
  justify-content: center;
  padding: 2.5rem 0 5rem 0;
}
.btn-group .btn {
  width: -moz-max-content;
  width: max-content;
  flex-grow: 0;
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

.main {
  position: relative;
  padding: 0;
}

#main.pousser {
  padding-top: 7.5em;
}
@media (max-width: 991px) {
  #main.pousser {
    padding-top: 9.5rem;
  }
}

.rub-partners {
  position: relative;
  background-color: #f1dfdf;
  padding: 7rem 0;
}
@media (max-width: 767px) {
  .rub-partners .row {
    margin: 0 0.75rem;
  }
}
.rub-partners .rubtitle {
  width: 100%;
  display: block;
  margin-bottom: 2.5rem;
}
.rub-partners .rubtitle a {
  color: white;
}
.rub-partners .rubtitle a:hover {
  color: #F0554A;
}
.rub-partners .bloc {
  text-align: center;
}
@media (max-width: 767px) {
  .rub-partners .bloc {
    width: 100%;
  }
}
.rub-partners .bloc h5 {
  font-size: 1.4rem;
  color: white;
  font-weight: 500;
  margin-top: 1rem;
}
.rub-partners .bloc figure {
  width: 100%;
  height: 7rem;
  background-color: white;
  padding: 5px 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .rub-partners .bloc figure {
    height: auto;
  }
}
.rub-partners .bloc figure img {
  width: 100%;
  height: auto;
}

footer {
  padding: 50px 0;
  text-align: center;
  background-color: #f0554a;
}
@media (max-width: 767px) {
  footer .img-fluid {
    width: 85%;
  }
}
footer ul {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}
@media (max-width: 767px) {
  footer ul {
    display: block;
  }
}
footer ul li {
  padding: 0 1.5rem;
}
footer ul li .menu-link {
  color: white;
}
footer ul li .menu-link:hover {
  color: #0e1924;
}
@media (max-width: 767px) {
  footer ul.network {
    display: flex;
  }
}
footer ul.network li a {
  color: white;
}
footer ul.network li a .fab,
footer ul.network li a .fas {
  font-size: 4rem;
}
footer ul.network li a:hover {
  color: black;
}

.cright {
  font-size: 13px;
  color: #0e1924;
}
.cright a {
  text-transform: uppercase;
  color: #0e1924;
}
.cright a:hover {
  color: #0e1924;
  text-decoration: underline;
}

.newevent {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 3rem 5rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .newevent {
    padding: 3rem;
  }
}
.newevent .rubtitle {
  margin-bottom: 2rem;
}
.newevent .subtitle {
  display: flex;
  font-size: 2rem;
  color: #f4827a;
  width: 70%;
  text-align: center;
  margin: 0 auto 2rem;
}
@media (max-width: 767px) {
  .newevent .subtitle {
    width: 100%;
  }
}
.newevent a {
  display: block;
  text-align: center;
  width: 100%;
}

.home__intro {
  background-color: #f1dfdf;
  padding: 5rem 0;
}
.home__intro--mainintro {
  width: 90rem;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .home__intro--mainintro {
    padding: 0 0.75rem;
  }
}
.home__intro--mainintro h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  color: black;
  text-align: center;
}
.home__intro--mainintro .btn {
  margin: auto;
}
.home__rubs--title {
  background-color: #f1dfdf;
  padding: 3rem 0;
  mix-blend-mode: normal;
}
.home__rubs--title h1 {
  font-size: 4rem;
  color: black;
  font-weight: 600;
}
.home__rubs--title .btn--bgcolre {
  background-color: #F0554A;
}
.home__rubs--title .btn--bgcolre:hover {
  background-color: #375e97;
}
.home__events-inner {
  background: #0e8461;
  mix-blend-mode: hard-light;
  padding: 5rem 0;
}
.home__events--item {
  padding: 7.5rem 5rem;
}
.home__events--item h2 {
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  margin-bottom: 5rem;
}
.home__events--item h2 a {
  color: white;
}
.home__events--item h2 a:hover {
  text-decoration: underline;
}
.home__events--item .btn--border {
  color: white;
}
@media (max-width: 767px) {
  .home__programme .row {
    margin: 0 0.75rem;
  }
}
.home__programme--item {
  position: relative;
  padding: 3.5rem 0;
}
.home__programme--item:before {
  display: flex;
  content: "";
  mix-blend-mode: hard-light;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.home__programme--item.rub-3:before {
  background-color: #ff4234;
}
.home__programme--item.rub-4:before {
  background-color: #4874e4;
}
.home__programme--item.rub-6:before {
  background-color: #8b0bbe;
}
.home__programme--item.rub-7:before {
  background-color: #ff34ba;
}
.home__programme--item.rub-8:before {
  background-color: #c021ff;
}
.home__programme--item.rub-12:before {
  background-color: #0e8461;
}
.home__programme--item:nth-child(odd) .col-md-7 {
  order: 2;
}
@media screen and (max-width: 767px) {
  .home__programme--item:nth-child(odd) .col-md-7 {
    order: 1;
  }
}
.home__programme--item:nth-child(odd) .col-md-5 {
  order: 1;
}
@media screen and (max-width: 767px) {
  .home__programme--item:nth-child(odd) .col-md-5 {
    order: 2;
  }
}
.home__programme--item:nth-child(odd) .item-text {
  padding: 0 2.5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .home__programme--item:nth-child(odd) .item-text {
    padding: 0 2.5rem 0 0;
  }
}
.home__programme--item:nth-child(odd) .item-text h3 {
  left: 10rem;
}
@media screen and (max-width: 767px) {
  .home__programme--item:nth-child(odd) .item-text h3 {
    left: 0;
  }
}
.home__programme--item .img-fluid {
  width: 100%;
}
.home__programme--item .item-text {
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0 5rem 0 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .home__programme--item .item-text {
    padding: 0;
  }
}
.home__programme--item .item-text .date {
  display: block;
  font-size: 1.4rem;
  color: black;
  font-weight: 500;
}
.home__programme--item .item-text h2 {
  font-size: 3.6rem;
  color: black;
  font-weight: 500;
  margin-top: 1.5rem;
}
.home__programme--item .item-text h2 a {
  color: black;
}
.home__programme--item .item-text h2 a:hover {
  color: white;
}
@media screen and (max-width: 767px) {
  .home__programme--item .item-text h2 {
    font-size: 3rem;
    order: 2;
    margin-bottom: 1.5rem;
  }
}
.home__programme--item .item-text h3 {
  position: absolute;
  bottom: 2rem;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .home__programme--item .item-text h3 {
    position: relative;
    order: 1;
    bottom: 0;
    top: 0.5rem;
  }
}
.home__programme--item .item-text h3 p {
  display: inline;
}
.home__programme--item .item-text h3 p:after {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: white;
  margin-left: 0.5rem;
}
.home__programme--item .item-text h3 a {
  color: white;
}
.home__programme--item .item-visuel {
  overflow: hidden;
  height: 25rem;
}
@media screen and (max-width: 767px) {
  .home__programme--item .item-visuel {
    height: auto;
  }
}

.embed-responsive-item {
  width: 100%;
  height: 53rem;
}

.article-content {
  position: relative;
  width: 100%;
  padding: 0;
}
.article-content .header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 2rem 0;
}
@media (max-width: 767px) {
  .article-content .header {
    padding: 2rem;
  }
}
.article-content .header .title-group {
  width: 70%;
  margin: auto;
}
@media (max-width: 767px) {
  .article-content .header .title-group {
    width: 100%;
  }
}
.article-content .header .title, .article-content .header .kr-title {
  font-size: 3rem;
  font-family: "Noto Serif", serif;
  color: black;
  font-weight: bold;
  text-align: center;
}
.article-content .article-body {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .article-content .article-body {
    flex-direction: column;
  }
}
.article-content .article-body .photozone {
  width: 100%;
  background: white;
  padding: 1rem 0 1rem 1rem;
}
@media (max-width: 991px) {
  .article-content .article-body .photozone {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .article-content .article-body .photozone .spip_logo {
    position: sticky;
    top: 15rem;
  }
}
.article-content .article-body .row {
  padding: 0 3rem 3rem;
  width: 100%;
  background-color: white;
}
@media (max-width: 767px) {
  .article-content .article-body .row {
    padding: 0 0 3rem;
  }
}
@media (max-width: 991px) {
  .article-content .article-body .col {
    min-width: 100%;
  }
}
.article-content .article-body .info {
  letter-spacing: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.8rem;
  border: 1px solid #e0e0e0;
  padding: 1rem;
  margin-bottom: 2rem;
}
.article-content .article-body .info .icon {
  font-size: 3.5rem;
  color: #F0554A;
  margin-right: 1.5rem;
}
.article-content .article-body .info p {
  margin-bottom: 0;
}
.article-content .content {
  padding: 3rem;
  background: white;
}
.article-content .content p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: black;
  margin-bottom: 1.5rem;
}
.article-content .content p strong {
  color: #f4827a;
}

.main__article {
  background-color: rgba(243, 223, 223, 0.8);
  padding: 5rem 0;
}
.main__article h1 {
  font-size: 3.6rem;
  font-weight: 600;
}
.main__article--header {
  max-width: 90rem;
  width: 100%;
  margin: auto;
  text-align: center;
  margin-bottom: 3rem;
}
.main__article--header h1 {
  margin-bottom: 2rem;
}
.main__article--inner {
  max-width: 60rem;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .main__article--inner {
    padding: 0 0.75rem;
  }
}
.main__article--inner .photozone {
  margin-bottom: 3rem;
}
.main__article--inner p {
  margin-bottom: 2.5rem;
}
.main__article--inner figure img {
  width: 100%;
}
.main__article--footer .auteurs {
  padding: 3rem 0;
  background-color: white;
}
.main__article--footer .auteurs .row {
  display: flex;
  justify-content: center;
}
.main__article--footer .auteurs .title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  color: black;
}
.main__article--footer .auteurs .artist {
  display: flex;
  background-color: white;
  justify-content: center;
  padding: 3rem;
  margin: 0.75rem 0;
}
@media (max-width: 767px) {
  .main__article--footer .auteurs .artist {
    position: relative;
    padding-bottom: 5rem;
  }
}
.main__article--footer .auteurs .artist img {
  margin-right: 5rem;
}
.main__article--footer .auteurs .artist .presentation {
  color: #0e1924;
}
.main__article--footer .auteurs .artist .presentation .author {
  font-size: 1.8rem;
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
.main__article--footer .auteurs .artist .presentation p {
  text-transform: none;
  font-size: 1.4rem;
}
.main__article--footer .auteurs .artist .presentation .download {
  margin: 2rem 0 0 0;
}
.main__article--footer .auteurs .artist .presentation .download li {
  margin: 0;
  display: flex;
}
@media (max-width: 991px) {
  .main__article--footer .auteurs .artist .presentation .download li {
    flex-direction: column;
  }
}
.main__article--footer .auteurs .artist .presentation .download .fas {
  color: #F0554A;
  margin-right: 0.75rem;
}
.main__article--footer .auteurs .artist .presentation .download a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #375e97;
  margin: 0 1.2rem 0 0;
}
.main__article--footer .auteurs .artist .presentation .download a:hover {
  color: #0e1924;
}
.main__article--footer .auteurs .artist .presentation .download .format {
  font-size: 1.2rem;
  color: #666;
}

.infos {
  background-color: white;
  color: black;
  padding: 0;
  width: 100%;
  padding: 3rem 0;
  display: flex;
}
@media (max-width: 991px) {
  .infos {
    flex-direction: column;
    align-items: flex-start;
  }
}
.infos li {
  letter-spacing: 1;
  display: flex;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 3rem;
}
@media (max-width: 991px) {
  .infos li {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .infos li {
    margin: 0 0 1rem 0;
  }
}
.infos li .icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.infos li.date {
  color: black;
}
.infos li.date .icon {
  background: #375e97;
  color: white;
}
.infos li.place {
  color: black;
}
.infos li.place .icon {
  background: #F0554A;
  color: white;
}

.nav-article {
  position: relative;
  background-color: rgba(255, 66, 52, 0.7);
  font-size: 2.6rem;
  padding: 7rem 0;
}
.nav-article .container {
  display: flex;
  justify-content: space-between;
}
.nav-article .fas {
  font-size: 3rem;
  display: block;
}
.nav-article .lineV {
  width: 1px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.3);
}
.nav-article a {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  line-height: 1.1;
  color: black;
  width: 50%;
}
.nav-article a.previous {
  align-items: flex-start;
}
.nav-article a.previous .fas {
  margin-right: 1rem;
}
.nav-article a.next {
  align-items: flex-end;
  text-align: right;
}
.nav-article a.next .fas {
  margin-left: 1rem;
}
.nav-article a:hover, .nav-article a:focus {
  color: white;
  outline: none;
}

.portfolios {
  padding: 1rem;
  display: flex;
  justify-content: flex-start;
  border: 1px solid #ededed;
}
.portfolios img {
  width: 100%;
  height: auto;
}
.portfolios small {
  font-weight: normal;
  line-height: 1.2;
  display: block;
  margin-top: 0.5rem;
}
.portfolios .row {
  width: 100%;
  min-width: auto !important;
}
.portfolios .row .col-* {
  display: flex;
  flex-direction: column;
}

.photozone {
  text-align: center;
  position: relative;
  margin: 0;
}
.photozone img {
  -o-object-fit: cover;
     object-fit: cover;
}
.photozone figcaption {
  font-size: 11px;
  color: #4778bf;
  text-align: right;
  font-style: italic;
}

.card {
  padding: 2rem;
  border: none;
  border-radius: 0;
  margin: 0 10px;
}
.card figure {
  text-align: center;
}

.partner-row .titre-3 {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
  color: #F0554A;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}
.partner-row .card {
  margin: 0 0.75rem !important;
  text-align: center;
  border-radius: 0.4rem;
  min-height: auto !important;
  border: 1px solid #bbbcbc;
}
.partner-row .card figure {
  text-align: center;
  border-bottom: 1px dotted #bbbcbc;
  padding: 0.75rem;
  overflow: hidden;
}
.partner-row .card .card-body {
  padding: 0 2rem;
}
.partner-row .card .card-body .title {
  color: #0e1924;
  text-align: center;
  font-size: 1.8rem;
}
.partner-row .card a .title {
  color: #0e1924;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}
.partner-row .card a .spip_logo {
  height: auto;
  transform: scale(0.9);
  transition: all 0.2s ease-in-out;
}
.partner-row .card a:hover .title {
  color: #F0554A;
  transform: scale(0.9);
}
.partner-row .card a:hover .spip_logo {
  transform: scale(1);
}

.annuel {
  display: flex;
  flex-direction: row;
}

.select-annee {
  display: block;
  padding: 1rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  background-color: white;
  border: 1px solid white;
  color: black;
}
.select-annee:hover {
  border: 1px solid #bbbcbc;
  background-color: transparent;
}
.select-annee:hover .title-n2 {
  color: #F0554A;
}

/*** SPIP ***/
.spip_documents {
  margin-bottom: 1.5rem;
  margin-right: 1.5rem;
}

h2.spip {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

h3.spip {
  font-weight: 700;
  color: #F0554A;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  display: inline-block;
}

ul.spip {
  margin-left: 4rem;
  color: black;
  margin-bottom: 3rem;
}
ul.spip li {
  list-style: none;
  margin-bottom: 1rem;
}
ul.spip li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  color: #F0554A;
  font-weight: 900;
  font-size: 1.8rem;
  margin-left: -3rem;
  margin-right: 0.75rem;
  display: inline-block;
}
ul.spip li a {
  color: #375e97;
}
ul.spip li a:hover {
  color: #f4827a;
  text-decoration: underline;
}
ul.spip li ul.spip {
  margin-left: 0rem;
}
ul.spip li ul.spip li:before {
  font-family: "icomoon";
  content: "\e90b";
  color: #375e97;
  font-size: 1.4rem;
  margin-left: 0rem;
  margin-right: 0.5rem;
}

hr {
  margin: 1.5rem 0;
  background-color: #53565a;
}

.spip_mail {
  color: #375e97;
  font-weight: 700;
}
.spip_mail:hover {
  color: #f4827a;
  text-decoration: underline;
}

.spip_out {
  color: #375e97;
}
.spip_out:hover {
  color: #f4827a;
  text-decoration: underline;
}

.spip_documents img {
  height: auto;
}

.formulaire_spip {
  border: 1px solid #e0e0e0;
  padding: 2rem;
  margin-bottom: 3rem;
  color: #0e1924;
}
.formulaire_spip legend {
  font-size: 2rem;
}
.formulaire_spip .editer {
  display: flex;
  margin: 0.75rem 0;
}
@media (max-width: 767px) {
  .formulaire_spip .editer {
    flex-direction: column;
  }
}
.formulaire_spip .editer label {
  width: 25%;
  font-weight: 600;
}
@media (max-width: 767px) {
  .formulaire_spip .editer label {
    width: 100%;
  }
}
.formulaire_spip .editer input, .formulaire_spip .editer textarea {
  width: 75%;
  border: 1px solid #375e97;
  padding: 0.75rem 1rem;
}
@media (max-width: 767px) {
  .formulaire_spip .editer input, .formulaire_spip .editer textarea {
    width: 100%;
  }
}
.formulaire_spip .boutons {
  margin-bottom: 0;
  padding: 3rem 0 0 25%;
}
@media (max-width: 767px) {
  .formulaire_spip .boutons {
    padding: 3rem 0 0 0;
  }
}
.formulaire_spip .boutons .submit {
  border: none;
  background-color: #F0554A;
  color: white;
  padding: 1rem 2rem;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .formulaire_spip .boutons .submit {
    width: 100%;
  }
}
.formulaire_spip .boutons .submit:hover {
  background-color: white;
  color: #F0554A;
}
.formulaire_spip .champ.afficher {
  display: none;
}

.previsu {
  background-color: white;
  padding: 2rem;
}

.reponse_formulaire.reponse_formulaire_ok {
  background-color: white;
  padding: 2rem;
}
.reponse_formulaire.reponse_formulaire_ok p {
  color: #375e97 !important;
}

.infos-importants {
  border: 1px solid rgba(55, 94, 151, 0.5);
  padding: 1.5rem;
}
.infos-importants p {
  font-size: 1.3rem !important;
  color: #375e97 !important;
}

.organisation img {
  width: auto !important;
}

.rubs--title {
  padding: 3rem 0;
  text-align: center;
}
.rubs--title p a {
  font-size: 1.8rem;
  color: black;
}
.rubs--title p a:hover {
  color: white;
}
.rubs--title h1 {
  font-size: 4rem;
  color: black;
  font-weight: 600;
}
.rubs--title h1 a {
  color: black;
}
.rubs--title h1 p {
  display: inline;
  font-size: 3.4rem;
}
.rubs--title h1 p:after {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: white;
  margin-left: 1rem;
}
.rubs--title.rub-common {
  background-color: #f1dfdf;
}
.rubs--title.rub-3 {
  background-color: rgba(255, 66, 52, 0.7);
}
.rubs--title.rub-4 {
  background-color: rgba(72, 116, 228, 0.7);
}
.rubs--title.rub-6 {
  background-color: rgba(139, 11, 190, 0.7);
}
.rubs--title.rub-7 {
  background-color: rgba(255, 52, 186, 0.7);
}
.rubs--title.rub-8 {
  background-color: rgba(192, 33, 255, 0.7);
}
.rubs--title.rub-12 {
  background-color: rgba(14, 132, 97, 0.7);
}

.programme--items {
  mix-blend-mode: hard-light;
  height: 100%;
  padding: 7rem;
}
.programme--items .item-content {
  margin-bottom: 2rem;
}
.programme--items .item-content .item-photo {
  height: 22rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.programme--items .item-content .item-photo .img-fluid {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
  transition: all 0.3s ease-in-out;
}
.programme--items .item-content h3 {
  font-size: 1.6rem;
  transition: all 0.3s ease-in-out;
  margin-bottom: 4rem;
}
.programme--items .item-content a {
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.programme--items .item-content a h3,
.programme--items .item-content a p {
  color: black;
}
.programme--items .item-content a .date {
  font-size: 1.3rem;
  color: black;
}
.programme--items .item-content a:hover h3 {
  color: white;
}
.programme--items .item-content a:hover .img-fluid {
  transform: scale(1.1);
}
.programme--items.rub-common {
  background-color: rgba(243, 223, 223, 0.8);
}
.programme--items.rub-common h2 {
  color: black;
}
.programme--items.rub-3 {
  background-color: rgba(255, 66, 52, 0.7);
}
.programme--items.rub-4 {
  background-color: rgba(72, 116, 228, 0.7);
}
.programme--items.rub-6 {
  background-color: rgba(139, 11, 190, 0.7);
}
.programme--items.rub-7 {
  background-color: rgba(255, 52, 186, 0.7);
}
.programme--items.rub-8 {
  background-color: rgba(192, 33, 255, 0.7);
}
.programme--items.rub-12 {
  background-color: rgba(14, 132, 97, 0.7);
}
.programme--items h2 {
  font-size: 4rem;
  color: white;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.programme--items h2 a {
  color: white;
}
.programme--items h2 a:hover {
  color: black;
}
.programme--items h2 a p {
  display: inline;
  font-size: 3.6rem;
}
.programme--items h2 a p:after {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: white;
  margin-left: 1rem;
}
.programme--items h3 {
  font-size: 2rem;
  color: white;
  font-weight: 400;
}
.programme--items h3.black {
  color: black;
}
.programme--items h3 a {
  color: white;
}
.programme--items .card {
  position: relative;
  padding: 2rem;
  height: 20rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
  margin: 0.75rem 0;
  text-align: center;
}
.programme--items .card.auto {
  height: auto;
}
.programme--items .card .img-fluid {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.programme--items .card a {
  color: #0e1924;
  transition: all 0.2s ease-out;
}
.programme--items .card a:hover {
  color: #F0554A;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* grid-template-columns: 1fr 1fr; */
  gap: 0 5rem;
  padding: 0 5rem;
}/*# sourceMappingURL=festivalkorea.css.map */