@charset "UTF-8";
@font-face {
  font-family: Roboto-Medium;
  src: url("../font/Roboto-Medium.ttf");
  font-display: swap;
}
:root,
body,
html {
  --couleurpurple: #521a72;
  --couleurgreendark: #168d98;
  --couleurgreenlight: #208c99;
  --couleurpurplelight: #912172;
  --couleurbleu: #048abf;
  --couleurbleulight: #f1f9ff;
  --couleurvert: #bed984;
  --couleurgris: #f2f2f2;
  --couleurgrisdark: #888888;
  --couleurorangeclair: #f2c063;
  --couleurorange: #d97925;
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0 !important;
  font-family: Roboto-Medium;
}

html {
  min-height: 100%;
  position: relative;
}

body {
  padding: 0;
  margin: 0;
  height: 100%;
  padding-bottom: 20px;
}

.page-wrap {
  padding-bottom: 20px;
}

footer {
  height: 20px;
  position: absolute;
  bottom: 0;
  background-color: black;
  color: white;
  text-align: center;
  font-size: 16px;
  width: 100%;
}

.language-to-not-display {
  display: none;
}

header {
  padding: 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: white;
}
header .top-header {
  display: flex;
  flex-direction: row;
  width: 100%;
}
header .top-header .logo {
  display: flex;
  width: 75%;
  justify-content: center;
  background-color: white;
}
header .top-header .logo #icon-menu-burger {
  display: flex;
  width: 33%;
}
header .top-header .logo figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  margin-bottom: 0;
}
header .top-header .logo figure.scrolled {
  width: 15%;
}
header .top-header .logo figure h1 {
  margin-bottom: 0;
}
header .top-header .logo figure h1 img {
  width: 100%;
}
header .top-header .logo .icon-menu-burger {
  display: flex;
}
header .top-header .logo .icon-menu-burger:before {
  display: none;
}
header .top-header .language {
  display: flex;
  width: 25%;
  justify-content: center;
  background-color: white;
}
header .top-header .language span {
  display: flex;
  align-items: center;
}
header .top-header .language span:first-child {
  margin-right: 10px;
}
header nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1px;
  background-color: white;
}
header nav ul {
  width: 100%;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: space-around;
  list-style: none;
}
header nav ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  color: var(--couleurpurple);
}
header nav ul li a.current-item-menu {
  color: var(--couleurpurplelight);
}
header nav ul li a:hover {
  color: var(--couleurbleu);
  font-size: 20px;
  transition: font-size 500ms ease-out;
}
header nav ul li a:active {
  color: var(--couleurbleulight);
}
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    display: contents;
  }
  header .top-header .logo {
    width: 100%;
    padding: 0 10%;
    height: auto;
    align-items: center;
  }
  header .top-header .logo figure, header .top-header .logo figure.scrolled {
    margin-bottom: 0;
    width: 80%;
    padding-left: 10%;
  }
  header .top-header .logo figure img, header .top-header .logo figure.scrolled img {
    width: 100%;
  }
  header .top-header .logo .icon-menu-burger-open {
    display: flex;
    width: 40px;
    cursor: pointer;
  }
  header .top-header .logo .icon-menu-burger-open:before {
    display: flex !important;
    font-family: "FontAwesome";
    font-weight: 100;
    content: "";
    font-size: 40px;
    color: black;
  }
  header .top-header .logo .icon-menu-burger-close {
    display: flex;
    width: 40px;
    cursor: pointer;
  }
  header .top-header .logo .icon-menu-burger-close:before {
    display: flex !important;
    font-family: "FontAwesome";
    font-weight: 100;
    content: "";
    font-size: 40px;
    color: black;
  }
  header nav {
    width: 100% !important;
    padding: 0 10%;
    overflow: hidden;
    /* Hide the element content, while height = 0 */
    height: 0;
    opacity: 0;
    transition: height 0ms 400ms, opacity 0ms 0ms;
  }
  header nav.to-display {
    height: auto;
    opacity: 1;
    transition: height 0ms 400ms, opacity 600ms 0ms;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  header nav.to-display ul {
    width: 100%;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
  }
  header nav.to-display ul li {
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--couleurgrisdark);
  }
  header nav.to-display ul li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: uppercase;
  }
  header nav.to-display ul li a:hover {
    font-size: 16px;
    transition: font-size 500ms ease-out;
  }
  header nav.to-not-display {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0ms 400ms, opacity 400ms 0ms;
  }
}

.about, .contact, .murals, .paintings, .detailled-mural,
.detailled-painting {
  padding-top: 10px;
}
.about h2, .about h3, .contact h2, .contact h3, .murals h2, .murals h3, .paintings h2, .paintings h3, .detailled-mural h2, .detailled-mural h3,
.detailled-painting h2,
.detailled-painting h3 {
  text-align: center;
}
.about p, .about li, .contact p, .contact li, .murals p, .murals li, .paintings p, .paintings li, .detailled-mural p, .detailled-mural li,
.detailled-painting p,
.detailled-painting li {
  color: black;
  font-size: 17px;
  line-height: 33px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-right: 15%;
  padding-left: 15%;
}
@media screen and (max-width: 768px) {
  .about p, .about li, .contact p, .contact li, .murals p, .murals li, .paintings p, .paintings li, .detailled-mural p, .detailled-mural li,
.detailled-painting p,
.detailled-painting li {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .about p, .about li, .contact p, .contact li, .murals p, .murals li, .paintings p, .paintings li, .detailled-mural p, .detailled-mural li,
.detailled-painting p,
.detailled-painting li {
    font-size: 14px;
  }
}
.about li, .contact li, .murals li, .paintings li, .detailled-mural li,
.detailled-painting li {
  list-style: none;
}

hr {
  border: 3px solid var(--couleurgrisdark);
  border-radius: 5px;
  width: 50%;
  margin: 0 auto 10px auto;
}

.home {
  padding-top: 50px;
}
.home p {
  color: black;
  font-size: 17px;
  line-height: 33px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home p {
    font-size: 16px;
    padding-right: 1%;
    padding-left: 1%;
  }
}
@media screen and (max-width: 600px) {
  .home p {
    font-size: 14px;
    padding-right: 1%;
    padding-left: 1%;
  }
}

.about .container-iframe iframe {
  display: block;
  margin: 0 auto;
  width: 60%;
}
@media screen and (max-width: 475px) {
  .about .container-iframe iframe {
    width: 100%;
  }
}
.about p, .about li {
  padding-left: 20%;
  padding-right: 20%;
}
@media screen and (max-width: 475px) {
  .about p, .about li {
    padding-left: 10%;
    padding-right: 10%;
  }
}
.about span {
  font-size: 19px;
  line-height: 33px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-right: 20%;
  padding-left: 20%;
}
@media screen and (max-width: 768px) {
  .about span {
    font-size: 18px;
    padding-right: 10%;
    padding-left: 10%;
  }
}
@media screen and (max-width: 600px) {
  .about span {
    font-size: 16px;
    padding-right: 10%;
    padding-left: 10%;
  }
}

.murals, .paintings {
  width: 100%;
}
.murals section, .paintings section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.murals section figure, .paintings section figure {
  width: 30%;
  margin: 20px auto;
}
@media screen and (max-width: 600px) {
  .murals section figure, .paintings section figure {
    width: 45%;
  }
}
.murals section figure img, .paintings section figure img {
  width: 100%;
}

.detailled-mural, .detailled-painting {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
.detailled-mural figure, .detailled-painting figure {
  width: 86%;
  margin: 20px auto;
}
@media screen and (max-width: 600px) {
  .detailled-mural figure, .detailled-painting figure {
    width: 100%;
  }
}
.detailled-mural figure img, .detailled-painting figure img {
  width: 100%;
}

.contact {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 30px;
  padding-left: 10%;
  padding-right: 10%;
}
.contact h2 {
  text-align: center;
}
.contact p {
  text-align: center;
  padding-top: 10%;
}
.contact p a {
  text-decoration: none;
}

@keyframes tonext {
  75% {
    left: 0;
  }
  95% {
    left: 100%;
  }
  98% {
    left: 100%;
  }
  99% {
    left: 0;
  }
}
@keyframes tostart {
  75% {
    left: 0;
  }
  95% {
    left: -300%;
  }
  98% {
    left: -300%;
  }
  99% {
    left: 0;
  }
}
@keyframes snap {
  96% {
    scroll-snap-align: center;
  }
  97% {
    scroll-snap-align: none;
  }
  99% {
    scroll-snap-align: none;
  }
  100% {
    scroll-snap-align: center;
  }
}
* {
  box-sizing: border-box;
  scrollbar-color: transparent transparent;
  /* thumb and track color */
  scrollbar-width: 0px;
}

*::-webkit-scrollbar {
  width: 0;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}

* {
  -ms-overflow-style: none;
}

.container-carousel {
  max-width: 37.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 600px) {
  .container-carousel {
    padding: 0;
  }
}

.container-carousel figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}
.container-carousel figure img {
  width: 100%;
  object-fit: contain;
}
.container-carousel ol,
.container-carousel li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container-carousel .carousel {
  position: relative;
  padding-top: 75%;
  filter: drop-shadow(0 0 10px #0003);
  perspective: 100px;
}
.container-carousel .carousel__viewport {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: scroll;
  counter-reset: item;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  margin-bottom: -17px;
}
.container-carousel .carousel__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  counter-increment: item;
}
.container-carousel .carousel__snapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
}
@media (hover: hover) {
  .container-carousel .carousel__snapper {
    animation-name: tonext, snap;
    animation-timing-function: ease;
    animation-duration: 4s;
    animation-iteration-count: infinite;
  }
  .container-carousel .carousel__slide:last-child .carousel__snapper {
    animation-name: tostart, snap;
  }
}
@media (prefers-reduced-motion: reduce) {
  .container-carousel .carousel__snapper {
    animation-name: none;
  }
}
.container-carousel .carousel:hover .carousel__snapper,
.container-carousel .carousel:focus-within .carousel__snapper {
  animation-name: none;
}
.container-carousel .carousel__navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}
.container-carousel .carousel__navigation-list,
.container-carousel .carousel__navigation-item {
  display: inline-block;
}
.container-carousel .carousel__navigation-button {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #333;
  background-clip: content-box;
  border: 0.25rem solid transparent;
  border-radius: 50%;
  font-size: 0;
  transition: transform 0.1s;
}
.image-size-small-15 {
  width: 15% !important;
}
.image-size-small-25 {
  width: 25% !important;
}
.image-size-small-33 {
  width: 33% !important;
}
.image-size-small-40 {
  width: 40% !important;
}
.image-size-small-45 {
  width: 50% !important;
}
.image-size-small-50 {
  width: 50% !important;
}
.image-size-small-75 {
  width: 75% !important;
}
.image-size-small-80 {
  width: 100% !important;
}
.image-size-small-90 {
  width: 100% !important;
}
.image-size-small-100 {
  width: 100% !important;
}
.tac {
  text-align: center;
}

.text-small {
  font-size: 13px !important;
}
.text-small-2 {
  font-size: 15px !important;
}
@media screen and (max-width: 768px) {
  .text-small {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 600px) {
  .text-small {
    font-size: 10.5px !important;
  }
}

.image-zoom:hover {
  -webkit-box-shadow: 10px 10px 15px 5px #000000;
  box-shadow: 10px 10px 15px 5px #949393;
  transform: scale(1.2);
  transition: transform 600ms ease-out, box-shadow 126ms ease-out;
}
.image-zoom-2:hover {
  -webkit-box-shadow: 10px 10px 15px 5px #000000;
  inset: 0;
  box-shadow: 10px 10px 15px 5px #949393;
  transform: scale(1.5);
  transition: transform 600ms ease-out, box-shadow 126ms ease-out;
}
.image-zoom-3:hover {
  -webkit-box-shadow: 10px 10px 15px 5px #000000;
  inset: 0;
  box-shadow: 10px 10px 15px 5px #949393;
  transform: scale(1.8);
  transition: transform 600ms ease-out, box-shadow 126ms ease-out;
}
.bouton-2 {
  background-color:orange;
  padding: 20px 40px;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0,0,0,.3px) #ca1c1c;
  text-decoration: none;
  color:#521a72

}
.bouton {
  background-color:orange;
  padding: 20px 40px;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0,0,0,.3px) #ca1c1c;
  text-decoration: none;
  color:#521a72;
  margin: 20px 0;
}
.bouton:hover {
  filter:brightness(0.9);
  color:chartreuse
  
}
/*# sourceMappingURL=css.css.map */
