/* FOOTER CSS */
.site-footer {
  text-align: center;
  font-size: 0.8rem;
  background-color: #fff;
  position: relative;
  border-top: solid 1px var(--grismed);
}

.site-footer .adresse, .site-footer .adresse p{
  color: var(--blanc);
}

@media screen and (min-width:768px){
  .site-footer {
    text-align: left;
  }
}

.site-footer .first {
  position: relative;
  padding-top: 4vw;
  padding-bottom: 4vw;
}
.site-footer .first .texte-accroche-footer{
  font-size:2.25rem;
  text-align: center;
  font-weight: 700;
  line-height:1.1
}

.site-footer p{
  margin-top: 0;
  margin-bottom: 0.4rem;
  line-height: 150%;
  color: var(--blanc);
}
.site-footer a {
  color: var(--blanc);
  text-decoration: underline dotted;
}
.site-footer .bottom a:hover{
  color: var(--gris)
}
.site-footer a.btn {
  text-decoration: none;
}
.site-footer .rezos{
  gap:0.65rem
}
.site-footer .rezos img{
  width:30px;
}
.site-footer .rezos a{
  transition: all 0.2ss ease;
}
.site-footer .rezos a:hover{
  opacity: 0.85
}
.site-footer .menu-footer ul{
  list-style: none;
  margin:0.5rem 0;
  padding:0;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.site-footer #menu-solutions-mobile-footer{
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.site-footer #menu-solutions-mobile-footer li.uppercase a{
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--neutral);
  margin:0.5rem 0
}
.site-footer #menu-solutions-mobile-footer li.uppercase a::after{
  content:"";
  display: block;
  width:20px;
  height:20px;
  background: url(img/chevron_down_white.svg) no-repeat center / contain
}
.site-footer #menu-solutions-mobile-footer ul.sub-menu{
  display: none;
}
.site-footer #menu-solutions-mobile-footer ul.sub-menu li{
  margin:0.25rem 0
}
.site-footer #menu-solutions-mobile-footer ul.sub-menu li a{
  text-transform: none;
  border: none
}
.site-footer #menu-solutions-mobile-footer ul.sub-menu li a::after{
  display: none
}
@media screen and (min-width:768px){
  .site-footer .menu-footer ul{
    margin:0;
    flex-direction: row;
    justify-content: space-between;
    align-items: top;
    gap: 1.5rem;
  }
}
.site-footer .menu-footer ul li a{
  text-decoration: none
}
.site-footer .menu-footer ul li{
  font-size:1.15rem;
  font-weight: 500;
  text-align: left;
}
.site-footer .menu-footer ul li.uppercase{
  text-transform: uppercase;
}
.site-footer .menu-footer ul ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap:0.1rem;
}
.site-footer .menu-footer ul ul li{
  font-size:0.85rem;
  font-weight: 300;
  text-transform: none
}
.site-footer .logo-parts{
  gap:0.15rem
}
.site-footer .logo-parts .item{
  aspect-ratio: 1/1;
  flex: 1 1 auto;
  max-width:125px;
}
.site-footer .logo-parts .item img{
  width:100%; height: 100%;
  object-fit: contain
}
.site-footer .under-bottom{
  border-top:1px solid var(--blanc);
}

@-webkit-keyframes call {
  0% {
    -webkit-transform: translateY(-50%) scale(1)
  }
  50% {
    -webkit-transform: translateY(-50%) scale(1.25);
    background-color: rgb(0, 0, 0)
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1);
  }
}

@keyframes call {
  0% {
    background-color: #6c63fc
  }
  50% {
    background-color: rgb(0, 0, 0)
  }
  100% {
    background-color: #6c63fc
  }
}

footer .call {
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 1001;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  width: 50px;
  height: 50px;
  border-radius: 5rem 0 0 5rem;
  background: #6c63fc url(img/cell-phone.svg) no-repeat center / 20px;
  animation-name: call;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}

.call.actif {
  background-color: #000000;
  animation: none;
  animation-duration:0s;
}

.site-footer .recall {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,0.2);
  border-right: none;
  z-index: 1000;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  overflow-x: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
  opacity: 0;
}

@keyframes fadein{
  from { opacity:0 } to {opacity:1}
}
.site-footer .recall.open {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  animation-name: fadein;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.site-footer .recall .frm_forms {
  background: #FFFFFF;
  border: 1px solid #6c63fc;
  padding: 2rem 5%;
  margin: 3vw auto;
  width: 90%;
  max-width: 768px;
}
.site-footer .recall .frm_forms p {
  text-align: center !important;
}
.site-footer .contact .trait{
  width:1px;
  height:2rem;
  background-color:var(--noir)
}

footer .row .contact .btn-contact {
  margin: 50px 0 50px 0;
}

.site-footer .copyright a:hover {
  color: rgb(150, 150, 150);
}
.site-footer .menu-bottom ul{
  list-style: none;
  margin:0; padding:0;
  display: flex;
  flex-wrap: wrap;
  gap:0.5rem
}

.navmobile {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 997;
  transform: translateY(-100%);
  transition: all 0.5s ease-out;
  background-color: var(--blanc);
  overflow-y: auto;
  padding-top: 7rem;
}

.navmobile.opened {
  transform: translateY(0)
}

.navmobile ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.navmobile ul li {
  text-align: left;
  font-size: 1.25rem;
}
.navmobile ul li.uppercase {
  border-bottom: 1px solid var(--noir);
    font-weight: 700;
}
.navmobile ul li ul {
  display: none;
}
.navmobile ul li ul.sub-menu li {
  font-size:1rem;
}
.navmobile ul li a {
  display: block;
  padding: .8rem 0;
  color: var(--noir);
  text-decoration: none;
}

.navmobile ul li a:hover {
  color: var(--violet);
}

.navmobile a.contact_btn {
  background-color: #6c63fc;
  display: inline-block;
  border-radius: 3rem;
  padding: 0.85rem 2rem
}


/* -- MEDIA QUERY -- */
@media screen and (min-width: 768px) {
  .site-footer {
    text-align: left;
    font-size: 1rem;
    background-color: #ffffff;
  }

  .site-footer .row .text {
    margin: 20px 0 10px 0;
    font-size: 2rem;
    font-family: 'Apercu', sans-serif;
  }

  /* .site-footer .feet ul li p {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
  } */

  /* .site-footer .feet ul li {
    font-size: 1rem;
    margin-bottom: 5px;
  } */

  /* .site-footer .row .obj {
    background-position: left bottom;
  } */

  .site-footer .bottom {
    background-color: var(--grisclair);
    padding: 3em 7.5% 1em 7.5%;
    line-height: 200%;
  }
}

@media screen and (min-width: 992px) {
  .site-footer .footer-wrapper {
    max-width: 60rem;
  }

  .site-footer .box {
    flex-direction: row;
    flex-grow: 1;
    text-align: left;
  }

  .site-footer .desc1,
  .site-footer .desc2,
  .site-footer .desc3 {
    width: max-content;
  }

  .site-footer .desc3 {
    padding-left: 5rem;
  }

  .site-footer .feet ul {
    text-align: left;
  }

  .site-footer .foot ul li {
    margin-right: 6rem;
    width: fit-content;
  }

  .site-footer .foot ul li a {
    font-size: 1.5rem;
    text-align: left;
  }

  .site-footer .trois_parties {
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .site-footer .footer-wrapper {
    max-width: unset;
  }

  .site-footer .bottom {
    padding-top: 5rem;
  }
  footer .call {
    top:50%;
    width: 60px;
    height: 60px;
    background-size: 25px;
  }
}

@media screen and (min-width: 1200px) {
  .site-footer .bottom {
    padding: 6em 8rem 1em 8em;
  }

  .site-footer .row .adjust {
    padding: 3rem 0 3rem 0;
  }

  .site-footer .row .text {
    font-size: 2rem;
  }

  .site-footer .row .contact .btn-contact {
    margin: 50px 0 50px 0;
  }

  .site-footer .row.bottom {
    padding: 3rem 0;
  }

  .site-footer .foot ul {
    padding: 0;
    display: block;
  }

  .site-footer .feet ul li {
    font-size: 1rem;
  }

  .site-footer .trois_parties {
    padding: 0;
  }

  .site-footer .desc3 {
    padding-left: 0;
  }
}
