@charset "UTF-8";
@import "https://fonts.googleapis.com/css?family=Noto+Sans:400,700";
/********************************/
/* BACK TO TOP */
/********************************/
#back-to-top {
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  font-size: 30px;
  /*     height: 60px;
      line-height: 60px;
      width: 60px;
      @include radius(30px); */
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  opacity: 0; }
  #back-to-top:hover {
    border-color: black;
    color: black; }
  #back-to-top.show {
    opacity: 1; }

html {
  /* R├®-├®quilibrage du Rem face au Pixel pour des calculs simples: ex) 10px=1.0rem */
  font-size: 62.5%; }

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.4rem; }

a, .more {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  a:hover, a:link, .more:hover, .more:link {
    text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0; }

ul, li {
  margin: 0;
  padding: 0;
  list-style: none; }

section {
  margin-bottom: 50px; }

hr {
  border-top: 1px solid black;
  margin: 2rem 0; }

h1 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0; }

h2 {
  font-size: 26px;
  font-weight: 900;
  color: black;
  margin: 0 0 20px 15px; }

/** HEADER - NAV ***/
.top {
  background: #ddd;
  padding: 5px 0;
  text-align: center;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between; }

.navbar {
  padding: 10px 0 0 0; }

.navbar-nav {
  font-size: 13px; }
  .navbar-nav li {
    position: relative; }
    .navbar-nav li .navitem {
      position: relative;
      padding: 0 0 10px 0;
      margin: 5px 15px;
      text-transform: uppercase;
      color: #6f6f6f;
      font-weight: 700;
      overflow: hidden; }
      .navbar-nav li .navitem:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: 0;
        right: 0;
        bottom: 0;
        height: 4px;
        background: white;
        -webkit-transform: translateY(4px);
        -moz-transform: translateY(4px);
        -ms-transform: translateY(4px);
        -o-transform: translateY(4px);
        transform: translateY(4px);
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out; }
      .navbar-nav li .navitem:hover {
        color: black; }
        .navbar-nav li .navitem:hover:before {
          -webkit-transform: translateY(0);
          -moz-transform: translateY(0);
          -ms-transform: translateY(0);
          -o-transform: translateY(0);
          transform: translateY(0);
          background: #461045; }
    .navbar-nav li:last-child a {
      margin-right: 0; }

.bggris {
  background-color: #f1f1f1; }

.btn {
  font-size: 13px;
  text-transform: uppercase;
  color: white;
  display: inline-block;
  padding: 10px;
  background-color: #e33636; }
  .btn:hover, .btn.active, .btn:focus {
    cursor: pointer;
    background: #333;
    color: #e33636;
    outline: none;
    box-shadow: none; }

.linkmore {
  color: black;
  font-weight: 700;
  text-decoration: underline !important; }
  .linkmore:hover {
    cursor: pointer; }

.mr-15 {
  margin-left: -15px; }

.ml-15 {
  margin-right: -15px; }

.navbar-brand {
  width: 100%;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  color: #e33636 !important;
  line-height: 1.3;
  margin-bottom: 30px; }
  .navbar-brand small {
    color: black;
    font-weight: 700;
    font-size: 20px; }

.maintitle {
  position: relative;
  text-transform: uppercase;
  margin-left: 35px;
  color: #122b3a; }
  .maintitle:before, .maintitle:after {
    top: -2px;
    position: absolute;
    font-family: "FontAwesome";
    font-size: 40px;
    vertical-align: middle; }
  .maintitle:before {
    content: "\f100";
    left: -30px; }
  .maintitle:after {
    content: "\f101";
    right: -30px; }

.navbar-toggler {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  top: 1.5rem;
  width: 3rem;
  height: 2.5rem;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer; }
  .navbar-toggler:focus {
    outline: none; }
  .navbar-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 50%;
    background: #461045;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out; }
    .navbar-toggler span:nth-child(even) {
      left: 50%;
      border-radius: 0 9px 9px 0; }
    .navbar-toggler span:nth-child(odd) {
      left: 0;
      border-radius: 9px 0 0 9px; }
    .navbar-toggler span:nth-child(1), .navbar-toggler span:nth-child(2) {
      top: 0px; }
    .navbar-toggler span:nth-child(3), .navbar-toggler span:nth-child(4) {
      top: 9px; }
    .navbar-toggler span:nth-child(5), .navbar-toggler span:nth-child(6) {
      top: 18px; }
  .navbar-toggler.open span:nth-child(1), .navbar-toggler.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  .navbar-toggler.open span:nth-child(2), .navbar-toggler.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .navbar-toggler.open span:nth-child(1) {
    left: 0;
    top: 7px; }
  .navbar-toggler.open span:nth-child(2) {
    left: calc(50% - 4px);
    top: 7px; }
  .navbar-toggler.open span:nth-child(3) {
    left: -50%;
    opacity: 0; }
  .navbar-toggler.open span:nth-child(4) {
    left: 100%;
    opacity: 0; }
  .navbar-toggler.open span:nth-child(5) {
    left: 0;
    opacity: 29px; }
  .navbar-toggler.open span:nth-child(6) {
    left: calc(50% - 4px);
    opacity: 29px; }

.navbar-toggleable-md > .container {
  flex-direction: column;
  justify-content: center; }

.nav {
  text-transform: uppercase;
  font-weight: 700;
  border-top: 1px dotted #999; }
  .nav .nav-item .nav-link {
    color: black; }
    .nav .nav-item .nav-link:hover {
      color: #461045; }

.presentation {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
  background-image: url("../img/presentation_bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center; }
  .presentation .intro {
    width: 65%;
    padding: 3rem 5rem;
    background: rgba(255, 255, 255, 0.9); }
    .presentation .intro p {
      font-size: 16px; }
    .presentation .intro h2 {
      color: #e33636;
      font-size: 20px; }
    .presentation .intro h1 small {
      font-size: 18px;
      font-weight: 700; }
    .presentation .intro h1 .maintitle:before, .presentation .intro h1 .maintitle:after {
      font-size: 28px; }

.list li {
  display: block;
  float: left;
  font-size: 16px;
  margin-bottom: 15px; }
.list .date {
  font-weight: 700;
  color: #e33636; }

.programmes .bloc {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 450px; }
  .programmes .bloc.expo {
    background-image: url("../img/peinture_coreen.jpg"); }
  .programmes .bloc.atelier {
    background-image: url("../img/978150.jpg"); }
  .programmes .bloc.cinema {
    background-image: url("../img/tunnel.jpg"); }
  .programmes .bloc.spectacle {
    background-image: url("../img/gukack_1.jpg"); }
  .programmes .bloc.concert {
    background-image: url("../img/gukack_3.jpg"); }
  .programmes .bloc.concertD {
    background-image: url("../img/134.jpg"); }
  .programmes .bloc.cuisine {
    background-image: url("../img/thumbnail_306449.jpg"); }
  .programmes .bloc.hangul {
    background-image: url("../img/hangul.jpg"); }
  .programmes .bloc.festival {
    background-image: url("../img/opening.jpg"); }
  .programmes .bloc.rencontre {
    background-image: url("../img/rencontre.jpg"); }
.programmes .txt-body {
  padding: 15px; }
  .programmes .txt-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px; }
  .programmes .txt-body .infos {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 10px 0;
    margin-bottom: 15px; }
    .programmes .txt-body .infos a {
      color: #003964; }
      .programmes .txt-body .infos a:hover {
        text-decoration: underline; }
  .programmes .txt-body .date,
  .programmes .txt-body .lieu,
  .programmes .txt-body .who {
    display: block;
    font-weight: 500; }
  .programmes .txt-body .date {
    font-weight: 900; }
  .programmes .txt-body .auteur {
    color: black;
    text-decoration: underline;
    font-weight: 700; }
  .programmes .txt-body .tag {
    display: inline-block;
    font-size: 16px;
    border-top: 4px solid #e33636;
    border-bottom: 4px solid #e33636;
    color: black;
    font-weight: 700;
    padding: 1px 0;
    margin-bottom: 15px; }

.contact {
  background-color: #b9f293;
  padding: 50px 0;
  justify-content: center;
  margin-bottom: 0; }
  .contact .bloc {
    background-color: white;
    padding: 20px;
    margin: 0 25px;
    text-align: center; }
  .contact h2 {
    margin-left: 23px;
    color: #122b3a; }
  .contact h3 {
    font-size: 24px;
    color: #122b3a;
    font-weight: 700;
    margin-left: 23px;
    margin-bottom: 10px; }
  .contact h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px; }
  .contact h5 {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px; }

.partenaires {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  padding-bottom: 40px; }
  .partenaires h2 {
    text-align: left;
    margin-left: 23px; }
  .partenaires h5 {
    font-size: 17px;
    color: black;
    margin-bottom: 10px; }
  .partenaires .bloc {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 0 25px;
    text-align: center; }

.download {
  display: inline-block;
  background-color: #333;
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 15px;
  margin-bottom: 20px; }
  .download:hover {
    background-color: black;
    color: white; }

/** FOOTER ***/
footer {
  display: flex;
  padding: 50px 0;
  background: #a5b49b;
  text-align: center; }
  footer a {
    color: #e33636;
    font-size: 36px;
    font-weight: 700; }
    footer a:hover {
      color: white; }
    footer a .maintitle:before, footer a .maintitle:after {
      font-size: 28px; }
  footer .cright {
    font-size: 13px;
    color: #122b3a; }
    footer .cright a {
      font-size: 13px;
      font-weight: 400; }
      footer .cright a:hover {
        color: #ccc;
        text-decoration: underline; }

@media (max-width: 575px) {
  .container {
    margin-left: 15px;
    margin-right: 15px; } }
@media (max-width: 900px) {
  .presentation .intro {
    width: 90%; }

  .navbar-toggler {
    top: 26px;
    right: -60px; } }
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 0rem;
    padding: 2rem 0;
    width: 100%;
    text-align: center;
    border-top: 3px solid #461045; }

  .navbar-nav {
    line-height: 3.5rem; }

  .nav {
    border-top: 0;
    display: block; }

  footer .fnav-common,
  footer .cright {
    display: inline-block; }
  footer .fnav-common li {
    display: inline-block; } }
@media (min-width: 992px) {
  .navbar-toggleable-md .navbar-collapse {
    flex-direction: column; }

  .nav {
    justify-content: center; } }

/*# sourceMappingURL=festivalkorea.css.map */
