@charset "UTF-8";
/*
* Mixin pour les typographies fluides responsives
*
* $min-font-size - La taille de police minimum
* $max-font-size - La taille de police maximum
*
* Dans l'exemple ci-dessous l'élément aura une font-size minimum de 12px en dessous du le breakpoint small et maximum 18px au dessus du breakpoint large
* .mon-element {
* 	@include fluid-type(12px, 18px);
* }
*
* On peut également redéfinir les breakpoint minimum et maximum comme ci-dessous 
* .mon-element {
* 	@include fluid-type(12px, 18px, 768px, 1200px);
* }
*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/*
Envoyer ce fichier non minifié car animation supprimée à la minification
*/
@keyframes pulsate {
  0% {
    r: 3;
  }
  50% {
    r: 5.5;
  }
  100% {
    r: 3;
  }
}
#footer {
  background: transparent linear-gradient(209deg, var(--primary-ligth) 0%, var(--primary) 100%) 0 0 no-repeat padding-box;
}
#footer footer {
  position: relative;
  border-top: 1px solid var(--white);
  color: var(--white);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 780px) {
  #footer footer {
    display: block;
  }
}
#footer footer svg {
  order: 2;
  width: 100%;
}
@media screen and (min-width: 780px) {
  #footer footer svg {
    opacity: 0.5;
    position: absolute;
    height: 100%;
    width: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
#footer footer svg circle {
  transform-origin: center;
  animation: pulsate 2s infinite;
}
#footer footer p {
  line-height: 25px;
}
#footer footer a, #footer footer p {
  color: var(--white);
  text-decoration: none;
}
#footer footer .main-footer {
  position: relative;
  padding-bottom: 1.875em;
  padding: 2.5em var(--padding-container);
  order: 1;
}
@media screen and (min-width: 780px) {
  #footer footer .main-footer {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
#footer footer .menu-footer .widget_text:first-of-type {
  margin-bottom: 0.9375em;
}
#footer footer #logo-footer img {
  margin: 0 0 1.25em 0;
  max-width: 300px;
  max-height: 110px;
}
#footer footer .menu-title {
  font-weight: 600;
}
@media screen and (max-width: 780px) {
  #footer footer #logo-footer img {
    width: min(250px, 75%);
    margin: 0 auto 1.875em 0;
  }
}
#footer footer .menu-footer-bottom .wp-menu-footer {
  padding: 0.5em var(--padding-container);
  text-align: center;
}
@media screen and (min-width: 780px) {
  #footer footer .menu-footer-bottom .wp-menu-footer {
    text-align: left;
    display: flex;
    justify-content: space-around;
    max-width: 700px;
    margin: auto;
  }
}
#footer footer .adress {
  text-align: center;
  margin: auto;
  font-size: 14px;
}
@media screen and (max-width: 780px) {
  #footer footer .adress {
    order: 2;
  }
}
#footer footer .menu-footer-bottom {
  position: relative;
  order: 3;
}
#footer footer .menu-footer-bottom::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: var(--white);
  top: 0;
  left: 0;
}

.menu-footer {
  position: relative;
  margin: 10px auto auto;
  width: fit-content;
  transition: all ease 400ms;
}
@media screen and (min-width: 780px) {
  .menu-footer {
    margin: 88px auto auto;
  }
}
.menu-footer > div:first-of-type {
  border-bottom: 1px solid var(--white);
  position: relative;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 1120px) {
  .menu-footer > div:first-of-type {
    font-size: 18px;
  }
}
@media screen and (min-width: 780px) {
  .menu-footer > div:first-of-type {
    border-bottom: none;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 780px) {
  .menu-footer > div:first-of-type {
    padding: 1rem 0;
  }
  .menu-footer > div:first-of-type::after {
    content: "";
    background-color: var(--white);
    mask-image: url(../assets/img/svg/nav-arrow-down.svg);
    -webkit-mask-image: url(../assets/img/svg/nav-arrow-down.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: cover;
    -webkit-mask-size: cover;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    aspect-ratio: 1/1;
    transition: ease 200ms;
  }
}
.menu-footer .wp-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 780px) {
  .menu-footer .wp-menu-footer {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 780px) {
  .menu-footer .wp-menu-footer li {
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 1s ease, opacity 1s ease;
  }
}
.menu-footer .wp-menu-footer li:before {
  content: ">";
  margin-right: 8px;
}
@media screen and (min-width: 780px) {
  .menu-footer .wp-menu-footer li:before {
    content: none;
  }
}
@media screen and (max-width: 780px) {
  .menu-footer {
    width: 100%;
  }
  .menu-footer.active > div:first-of-type {
    opacity: 0.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  .menu-footer.active > div:first-of-type::after {
    opacity: 0.8;
    transform: rotate(180deg);
  }
  .menu-footer.active li {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 780px) {
  .menu-footer .wp-menu-footer {
    transform: scale(0);
    height: 0;
    transform-origin: left top;
  }
  .menu-footer.active {
    padding-bottom: 20px;
  }
  .menu-footer.active > div:first-of-type {
    margin-bottom: 10px;
  }
  .menu-footer.active .wp-menu-footer {
    transform: scale(1);
    height: auto;
    transition: transform 0.2s ease-in-out, height 0.2s ease-in-out;
  }
  .menu-footer.active .wp-menu-footer + .widget_text {
    margin-top: 8px;
  }
}

.wp-menu-footer a {
  color: var(--white);
  text-decoration: none;
  transition: ease 200ms;
  position: relative;
}
.wp-menu-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 0.3s ease;
}
.wp-menu-footer a:hover::after {
  width: 100%;
}