/* -- ANIMATION ------------------------------------------------------------- */
/* -- KEYFRAMES -- */
@-webkit-keyframes load {
  0% {
    opacity: 1;
    pointer-events: initial;
  }
  60% {
    opacity: 1;
    pointer-events: initial;
  }
  100% {
    opacity: 0;
    display: none;
    pointer-events: initial;
  }
}
@keyframes load {
  0% {
    pointer-events: initial;
    opacity: 1;
  }
  60% {
    opacity: 1;
    pointer-events: initial;
  }
  100% {
    opacity: 0;
    display: none;
    pointer-events: initial;
  }
}

@-webkit-keyframes mask {
  from {
    clip-path: inset(0);
  }
  to {
    clip-path: inset(0 0 100% 0);
  }
}
@keyframes mask {
  from {
    clip-path: inset(0);
  }
  to {
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes titre_svg_digit {
  from {
    transform: translate(100vw);
  }
  to {
    transform: translate(-1630px);
  }
}

@keyframes titre_svg_ident {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-2050px);
  }
}

@keyframes trait_extension {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

@keyframes trt_verti {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes trt_hori {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes before_gallery {
  0% {
    transform: translateY(0);
  }
  16% {
    transform: translateY(-50px) rotateZ(180deg);
  }
  33% {
    transform: translateY(0) rotateZ(180deg);
  }
  50% {
    transform: translateY(-60px);
  }
  66% {
    transform: translateY(0px);
  }
  82% {
    transform: translateY(-100px) rotateZ(360deg);
  }
  100% {
    transform: translateY(0px) rotateZ(720deg);
  }
}
*
.page-id-67{
  background-color: var(--ultra-violet-lightest)
}

/* -- ANIMATION -- */
.img-scale {
  transform: scale(1);
  overflow: hidden;
  transition: transform 0.25s ease-in-out;
}
.img-scale:hover {
  transform: scale(1.1);
  overflow: hidden;
  transition: transform 0.25s ease-in-out;
}
.fadeUp {
  animation-name: fadeUp;
  animation-duration: 1s;
}
.titre_svg_digit svg {
  animation-name: titre_svg_digit;
  animation-duration: 4.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform: translate(100vw);
  position: absolute;
  height: inherit;
  width: auto;
}
.titre_svg_ident svg {
  animation-name: titre_svg_ident;
  animation-duration: 4.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 0.5s;
  transform: translate(100vw);
  position: absolute;
  height: inherit;
  width: auto;
}
.trait_cb.is-visible {
  animation-name: trait_extension;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}
.gallery .container-ref::before {
  animation-name: before_gallery;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.gros_trt_verti.is-visible {
  animation-name: trt_verti;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}
.gros_trt_hori.is-visible {
  animation-name: trt_hori;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}
/*LOAD ANIMATION LOGO*/
.load {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  -webkit-animation: load 3s ease backwards;
  animation: load 3s ease backwards;
  opacity: 0;
}
.load svg {
  width: 50%;
  height: auto;
  top: 50%;
  opacity: 1;
  -webkit-animation: mask 0.5s ease 1.5s forwards;
  animation: mask 0.5s ease 1.5s forwards;
}

.haut .up-title{
  font-size:0.8rem;
  letter-spacing:0.05rem;
  font-weight: 700;
}

.evolution::before{
  content:"";
  display: block;
  width:1px;
  height:6rem;
  background-color: var(--noir);
  position: absolute;
  left:50%;
  top:0;
  transform: translate(-50%, -30%)
}
.trait-v{
  width:1px;
  height:2rem;
  background-color: var(--noir);
  margin:0 auto;
}
.trait-v.tall{
  height:6rem;
}

@media screen and (min-width: 768px) {
  .load svg {
    width: 15%;
  }
}

/* -- JOURNAL --------------------------------------------------------------- */


.nav_journal {
  text-align: left;
  padding: 0;
  max-width: 600px;
}

.nav_journal ul {
  padding: 0;
}

.nav_journal ul li {
  display: inline-block;
  padding: 0 10px 10px 0;
}

.nav_journal ul li a {
  text-decoration: none;
  color: #7c7c7c;
  font-size: 0.7rem;
}

.nav_journal ul li a:hover {
  text-decoration: none;
  color: #000;
}

/* -- CONTENT -- */
.content_journal {
  text-align: left;
}

.content_journal .item a {
  text-decoration: none;
  color: var(--blanc)
}
.content_journal .img_space {
  border-radius: 1rem;
  overflow: clip;
  flex-grow: 1;
}
.content_journal img {
  width: 100%; height:100%;
  object-fit: cover;
  padding: 0;
}
.content_journal p {
  margin-bottom: 0;
}

.content_journal .accroche {
  padding: 1rem 0 0.5rem 0;
}

.content_journal .texte {
  font-size: 0.9rem;
}

/*PAGINATION*/
.pagination {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  color: var(--ultra-violet-lightest);
  font-size: 0.8rem;
  font-weight: 600;
}
.pagination .page-numbers{
  padding: .35rem .75rem;
  display: inline-block;
  color: var(--ultra-violet-lightest);
  text-decoration: none;
}

.pagination .page-numbers.current {
  color: var(--ultra-violet);
  background-color: var(--ultra-violet-lightest)
}

/* -- MEDIA QUERY -- */
@media screen and (min-width: 576px) {
  .content_journal .accroche {
    font-size: 1.1rem;
  }

  .content_journal .texte {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 768px) {
  .nav_journal ul li a {
    font-size: 1rem;
  }

  .nav_journal ul li {
    padding: 10px 15px 10px 0;
  }
  .content_journal .accroche {
    font-size: 1.2rem;
  }
  .content_journal .texte {
    font-size: 0.9rem;
  }
  .content_journal .card {
    padding: 0 1rem;
  }
}

@media screen and (min-width: 992px) {
  .content_journal .accroche {
    font-size: 1.3rem;
  }
  .content_journal .texte {
    font-size: 0.9rem;
  }
}

.bloc-contact{
  border-radius: 1.5rem
}
/* -- REFERENCE ------------------------------------------------------------- */
#references h3 {
  text-align: center;
}

/* GALLERY -- */

#references .gallery .container-ref {
  overflow: clip;
}
#references .gallery .container-ref a{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1 1 auto;
  overflow: clip;
  transition: all 0.2s ease;
  text-decoration: none
}
#references .gallery .container-ref .back{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.5s ease;
  height: 360px;
  margin-bottom: 2rem;
  border-radius: 1.5rem;
}
#references .gallery .container-ref a .back .filtre{
  position: absolute;
  left:0; top:0;
  width:100%; height: 100%;
  background: rgba(0,0,0,.3) url(../img/arrow-ref.svg) no-repeat center / 35px;
  opacity:0;
  transition: all 0.2s ease;
}
#references .gallery .container-ref a:hover .back .filtre{
  opacity:1;
}
#references .gallery .text_container {
  position: relative;
  text-align: left;
  color: #fff;
}

#references .gallery .container-ref .sous-titre {
  font-family: 'Apercu', 'sans-serif';
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

#references .gallery .container-ref .titre {
  font-family: 'Apercu', 'sans-serif';
  line-height: 1.2;
  transition: all 0.2s ease;
}
#references .gallery .container-ref .type {
  line-height: 1.3
}
#references .gallery .container-ref .titre p {
  margin: 0;
}

/* -- JOBS ------------------------------------------------------------------ */
#jobs h5 {
  margin: 0;
}

#jobs .col-xs-12 {
  padding-right: 0;
  padding-left: 0;
}

#jobs .content h2 {
  color: #fff;
  margin-bottom: 3.5rem;
}

#jobs .content .first {
  margin-bottom: 0;
}

#jobs .haut {
  padding-top: 6.5rem;
  background-size: cover;
}

#frm_field_108_container {
  opacity: 0 !important;
}

#jobs .haut .titre {
  color: #fff;
}

#jobs .haut .tiret {
  background: #ccc;
}

/* -- ANNONCES -- */

#jobs .annonces .items {
  background-color: var(--blanc);
  padding: 3rem 2rem;
  margin: 1rem auto;
  border-radius: 1.5rem;
}

#jobs .annonces .accroche {
  font-size: 1.5rem;
  font-family: 'Apercu', 'sans-serif';
  margin-top: 2rem;
}

#jobs .annonces .items .titre {
  padding: 1.5rem 0 1rem 0;
}

#jobs .annonces .texte {
  max-width: 90%;
  margin: 0 auto;
  color: var(--gris);
}

#jobs .annonces .texte p, #jobs .annonces .categorie p {
  text-align: center
}

#jobs .annonces .categorie p {
  font-size: 1rem;
}

#jobs .annonces .job-title {
  padding: 0 !important;
}

#jobs .annonces .titre h2 {
  margin: 0;
  font-size: 1.35rem;
  text-align: center;
  text-transform: uppercase;
}

#jobs .annonces .items .trait_sw_in {
  width: 1px;
  height: 2rem;
  margin: 0 auto;
  background-color: black;
  display: inline-block;
  margin: 1rem 0;
}

#jobs .annonces a {
  text-decoration: none;
  color: var(--blanc);
}
#jobs .annonces a:hover {
  color: var(--ultra-violet);
}

#jobs .annonces .postuler p {
  text-decoration: none;
  color: #1495cc;
  transition: 0.3s ease;
  margin-left: 0.5rem;
}

#jobs .annonces .postuler:hover p {
  color: var(--ultra-violet);
  transition: 0.3s ease;
}

#jobs .annonces .postuler:hover .border {
  border: 1px solid #1495cc;
  transition: 0.3s ease;
  background: #1495cc;
}

#jobs .annonces .postuler:hover .border svg {
  fill: #fff;
  transition: 0.3s ease;
}

#jobs .annonces .texte_bottom {
  margin-top: 5rem;
  margin-bottom: 6rem;
}

#jobs .annonces .texte_bottom a {
  margin-left: 0.5rem;
  color: #1495cc;
  transition: 0.3s ease;
}

#jobs .annonces .texte_bottom a:hover {
  margin-left: 0.5rem;
  color: var(--ultra-violet);
  transition: 0.3s ease;
}

.liste-services a{
  border-radius: 1.5rem;
  text-decoration: none;
  color: var(--noir)
}
.liste-services a .img-service{
  width:200px;
  aspect-ratio: 16/9;
}
.liste-services a .img-service img{
  object-fit: contain;
  width:100%; height: 100%;
}

.softwares .item{
  background-color: var(--blanc);
  border-radius: 1.5rem;
}
.softwares .item .image{
  width: 100px;
  aspect-ratio: 16/9;
}
.softwares .item .image img{
  width: 100%;
  height:100%;
  object-fit: contain
}
.thin-content{
  max-width: 992px;
  margin-left: auto;
  margin-right: auto
}
.thin-content .post-image img{
  width: 100%; height: auto;
}
.small-vs{
  display: flex;
  justify-content: center;
  width:160px;
}
.med-vs{
  display: flex;
  justify-content: center;
  width:230px;
}
.verysmall-vs{
  display: flex;
  justify-content: center;
  width:80px;
}
.small-vs img, .verysmall-vs img{
  width:100%;
}
@media screen and (min-width: 1200px){
  .small-vs{
    width:200px;
  }
  .verysmall-vs{
    width:120px;
  }
}

.page-template-page-contact{
  background-color: var(--framboise-lightest)
}
.border-radius{
  border-radius: 1.5rem;
  overflow: clip;
}
.border-radius-1{
  border-radius: 1rem;
  overflow: clip;
}