
:root{
  --wa-olive:#9c982d;
  --wa-olive-light:#c8c617;
  --wa-bg:#efefed;
  --wa-blue:#6f92a1;
  --wa-white:#fff;
  --wa-dark:#111;
  --wa-font:'Jura',sans-serif;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:var(--wa-font);
  font-size:14px;
  font-weight:300;
  color:var(--wa-blue);
  background:var(--wa-bg);
  overflow-x:hidden;
}

a{
  text-decoration:none;
  transition:.25s ease;
  color:inherit;
}

.container{
  max-width:1170px;
}

/* HEADER */

.wa-header{
  height:68px;
  background:rgba(156,152,45,.97);
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
}

.wa-header-inner{
  height:68px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:90px;
  padding:0 20px;
}

.wa-logo img{
  width:135px;
  display:block;
}

.wa-menu-button{
  display:none;
}

.wa-offcanvas{
  position:static!important;
  visibility:visible!important;
  transform:none!important;
  background:transparent;
  width:auto!important;
  height:auto!important;
  border:0;
}

.wa-offcanvas .offcanvas-header{
  display:none;
}

.wa-offcanvas .offcanvas-body{
  padding:0;
  overflow:visible;
}

.wa-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  white-space:nowrap;
}

.wa-nav a{
  color:#fff;
}

.wa-nav a:hover,
.wa-nav a.active{
  color:#ece77d;
}

/* HERO */

.wa-hero{
  height:515px;
  margin-top:68px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
}

.wa-hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(0,0,0,.58),rgba(0,0,0,.58)),
    url('../img/hero.jpg') center center/cover no-repeat;
  filter:grayscale(1);
}

.wa-hero-content{
  position:relative;
  z-index:2;
}

.wa-hero-logo{
  width:110px;
  display:block;
  margin:0 auto 20px;
}

.wa-hero h1{
  font-size:27px;
  font-weight:400;
  margin-bottom:55px;
  color:#fff;
}

.wa-hero-links{
  display:flex;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
}

.wa-hero-links a{
  min-width:195px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.7);
  color:#fff;
  text-transform:uppercase;
  font-size:15px;
}

.wa-hero-links a:first-child,
.wa-hero-links a:nth-child(2){
  background:#c8c617;
  border-color:#c8c617;
}

.wa-hero-links a:hover{
  background:#fff;
  color:#666;
}

.wa-scroll{
  display:none;
}

/* TITRES */

.wa-title{
  font-size:45px;
  line-height:1.1;
  font-weight:300;
  letter-spacing:.03em;
  color:var(--wa-blue);
  margin-bottom:40px;
}

/* SECTIONS */

.wa-section{
  padding:100px 0;
}

/* ACTUALITES */

.wa-news-section{
  background:var(--wa-bg);
  position:relative;
}

.wa-news-section:before{
  content:"";
  position:absolute;
  right:250px;
  top:60px;
  width:650px;
  height:450px;
  background:url('../img/logo-walter-blanc.png') center/contain no-repeat;
  opacity:.18;
}

.row.wa-news-grid{
  --bs-gutter-x:28px;
}

.wa-news-card{
  background:#fff;
  height:285px;
  text-align:center;
  padding:65px 35px;
}

.wa-news-card h3{
  font-size:20px;
  line-height:1.45;
  font-weight:300;
  color:var(--wa-blue);
  margin-bottom:12px;
}

.wa-news-card time{
  display:block;
  font-size:11px;
  margin-bottom:15px;
}

.wa-news-card a{
  background:#c8c617;
  color:#fff;
  padding:10px 16px;
  font-size:12px;
}

.wa-news-card a:hover{
  background:#9c982d;
}

/* BACK TOP */

.wa-backtop{
  position:fixed;
  right:210px;
  bottom:120px;
  width:45px;
  height:45px;
  background:rgba(156,152,45,.35);
  z-index:50;
}

.wa-backtop:before{
  content:"";
  position:absolute;
  left:15px;
  top:17px;
  width:15px;
  height:15px;
  border-left:3px solid rgba(255,255,255,.8);
  border-top:3px solid rgba(255,255,255,.8);
  transform:rotate(45deg);
}

/* ASSOCIATION */

.wa-association{
  background:#fff;
}

.wa-photo{
  min-height:520px;
  background:center/cover no-repeat;
}

.wa-photo-association{
  background-image:url('../img/association.jpg');
  filter:grayscale(1);
}

.wa-text-block{
  max-width:600px;
  padding:90px 70px;
  margin-left:auto;
}

.wa-text-block p{
  color:#666;
  line-height:1.9;
}

.wa-link-button,
.wa-submit{
  background:#c8c617;
  color:#fff;
  padding:11px 18px;
  border:0;
}

/* VALEURS */

.wa-values{
  background:#efefed;
  position:relative;
  overflow:hidden;
}

.wa-values-bg{
  display:none;
}

.wa-values::after{
  content:"";
  position:absolute;
  right:40px;
  top:20px;
  width:500px;
  height:350px;
  background:url('../img/logo-walter-blanc.png') center center/contain no-repeat;
  opacity:.25;
  pointer-events:none;
}

.wa-values .container{
  position:relative;
  z-index:2;
}

.wa-values .wa-title{
  color:#6f92a1;
}

.wa-value-card{
  text-align:center;
  min-height:auto;
  padding:20px;
  border:0;
  background:none;
}

.wa-value-card img{
  height:50px;
  margin-bottom:20px;
}

.wa-value-card h3{
  font-family:'Jura',sans-serif;
  font-size:18px;
  font-weight:300;
  color:#6f92a1;
  margin-top:15px;
}

/* CONTACT */

.wa-contact{
  background:#28354c;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.wa-contact::before{
  content:"";
  position:absolute;
  width:600px;
  height:400px;
  right:320px;
  top:250px;
  background:url('../img/logo-walter-blanc.png') center center/contain no-repeat;
  opacity:.08;
}

.wa-contact .container{
  position:relative;
  z-index:2;
}

.wa-contact .wa-title{
  color:#fff;
  margin-bottom:25px;
}

.wa-address{
  font-size:18px;
  margin-bottom:15px;
}

.wa-contact strong{
  color:#fff;
  font-weight:600;
}

.wa-contact-top{
  color:#fff;
  font-size:15px;
  line-height:1.8;
}

.wa-contact-text{
  margin-top:30px;
}

.wa-contact-text a{
  color:#c8c617;
}

.wa-phone-box{
  margin-top:20px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  color:#fff;
}

.wa-phone-box::before{
  content:"☎";
  width:24px;
  height:24px;
  background:#c8c617;
  color:#28354c;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:2px;
  font-size:14px;
}

.wa-form label{
  display:block;
  color:#fff;
  margin-bottom:6px;
  margin-top:12px;
}

.wa-form .form-control{
  background:#fff;
  border:none;
  border-radius:0;
  height:42px;
}

.wa-form textarea.form-control{
  height:150px;
}

.wa-consent{
  margin-top:15px;
  display:block;
}

.wa-submit{
  margin-top:15px;
  background:#c8c617;
  color:#fff;
  border:none;
  padding:14px 22px;
  font-size:15px;
}

.wa-map{
  margin-top:40px;
}

.wa-map iframe{
  width:100%;
  height:390px;
  border:0;
}

/* FOOTER */

.wa-footer{
  background:#28354c;
  height:110px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 120px;
  color:#8f97a3;
  font-size:14px;
}

.wa-footer-logo img{
  width:240px;
  margin:0;
}

.wa-footer p{
  margin:0;
}

.wa-footer a{
  color:#b5b9c1;
}

/* FORM MESSAGE */

.wa-success-message{
  background:#c8c617;
  color:#fff;
  padding:20px 25px;
  margin-bottom:25px;
  font-size:18px;
  font-family:'Jura',sans-serif;
  border-left:5px solid #fff;
  animation:fadeIn .4s ease;
}

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(-10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* FORCE JURA */

body,
button,
input,
textarea,
select,
a,
p,
h1,h2,h3,h4,h5,h6,
.wa-nav,
.wa-title,
.wa-form,
.form-control{
  font-family:'Jura',sans-serif !important;
}

/* RESPONSIVE TABLET + BURGER */

@media(max-width:991px){

  .wa-header{
    height:68px;
  }

  .wa-header-inner{
    height:68px;
    justify-content:space-between;
    gap:0;
    padding:0 18px;
  }

  .wa-logo{
    max-width:145px;
    overflow:hidden;
  }

  .wa-logo img{
    width:135px;
    max-width:135px;
  }

  .wa-menu-button{
    display:flex !important;
    align-items:center;
    gap:10px;
    background:transparent;
    border:0;
    color:#fff;
    font-family:'Jura',sans-serif !important;
    font-size:15px;
    text-transform:uppercase;
    z-index:1002;
  }

  .wa-menu-lines{
    display:flex;
    flex-direction:column;
    gap:5px;
  }

  .wa-menu-lines i{
    display:block;
    width:28px;
    height:2px;
    background:#fff;
  }

  .wa-offcanvas{
    position:fixed !important;
    top:0 !important;
    right:0 !important;
    left:auto !important;
    width:285px !important;
    height:100vh !important;
    background:#111 !important;
    visibility:hidden !important;
    transform:translateX(100%) !important;
    border:0 !important;
    transition:.3s ease;
    z-index:1001;
  }

  .wa-offcanvas.show{
    visibility:visible !important;
    transform:translateX(0) !important;
  }

  .wa-offcanvas .offcanvas-header{
    display:flex !important;
    justify-content:flex-end;
    padding:20px;
  }

  .wa-offcanvas .offcanvas-body{
    padding:25px;
    overflow-y:auto;
  }

  .wa-nav{
    flex-direction:column;
    align-items:flex-start;
    gap:22px;
    font-size:18px;
    white-space:normal;
  }

  .wa-nav a{
    color:#fff;
  }

  .wa-hero{
    margin-top:68px;
    height:520px;
  }

  .wa-hero-logo{
    width:100px;
  }

  .wa-hero h1{
    font-size:26px;
    margin-bottom:45px;
  }

  .wa-hero-links{
    gap:18px;
  }

  .wa-hero-links a{
    min-width:200px;
  }

  .wa-section{
    padding:75px 0;
  }

  .wa-title{
    font-size:46px;
  }

  .wa-text-block{
    max-width:none;
    padding:70px 35px;
  }

  .wa-photo{
    min-height:420px;
  }

  .wa-backtop{
    right:25px;
    bottom:25px;
  }

  .wa-contact::before,
  .wa-values::after,
  .wa-news-section:before{
    display:none;
  }

  .wa-map{
    margin-top:35px;
  }

  .wa-footer{
    padding:0 40px;
  }

  .wa-footer-logo img{
    width:200px;
  }
}

/* RESPONSIVE MOBILE */

@media(max-width:575px){

  body{
    font-size:14px;
  }

  .wa-header,
  .wa-header-inner{
    height:66px;
  }

  .wa-logo{
    max-width:125px;
  }

  .wa-logo img{
    width:120px;
  }

  .wa-menu-button{
    font-size:13px;
  }

  .wa-offcanvas{
    width:260px !important;
  }

  .wa-hero{
    margin-top:66px;
    height:520px;
    padding:0 18px;
  }

  .wa-hero-logo{
    width:95px;
  }

  .wa-hero h1{
    font-size:25px;
    line-height:1.25;
    margin-bottom:35px;
  }

  .wa-hero-links{
    flex-direction:column;
    gap:18px;
    width:100%;
  }

  .wa-hero-links a{
    width:100%;
    max-width:260px;
    min-width:0;
    margin:0 auto;
    height:54px;
  }

  .wa-section{
    padding:60px 0;
  }

  .wa-title{
    font-size:42px;
    margin-bottom:35px;
  }

  .wa-news-card{
    height:auto;
    min-height:230px;
    margin-bottom:20px;
  }

  .wa-text-block{
    padding:55px 25px;
  }

  .wa-photo{
    min-height:320px;
  }

  .wa-value-card{
    padding:25px 10px;
  }

  .wa-contact .row{
    row-gap:20px;
  }

  .wa-contact-top{
    font-size:14px;
  }

  .wa-address{
    font-size:16px;
  }

  .wa-phone-box{
    font-size:16px;
  }

  .wa-map iframe{
    height:320px;
  }

  .wa-footer{
    height:auto;
    flex-direction:column;
    gap:20px;
    padding:35px 20px;
    text-align:center;
  }

  .wa-footer-logo img{
    width:190px;
  }

  .wa-footer p{
    font-size:13px;
  }
}

/* =====================================
   PAGE EQUIPE
===================================== */

.wa-team-page{
    background:#fff;
    min-height:100vh;
}

.wa-team-section{
    padding-top:130px;
}

.wa-team-subtitle{
    font-family:'Jura',sans-serif;
    font-size:34px;
    font-weight:300;
    color:#6f92a1;
    margin:25px 0 60px;
}

.wa-team-subtitle-spaced{
    margin-top:90px;
}

.wa-staff-title{
    margin-top:90px;
    margin-bottom:60px;
}

.wa-team-grid{
    row-gap:55px;
}

.wa-team-grid-small{
    row-gap:45px;
}

/* =====================================
   CARTE AVOCAT
===================================== */

.wa-lawyer-card{
    cursor:pointer;
}

.wa-lawyer-photo{
    position:relative;
    width:100%;
    aspect-ratio:1/1;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

/* Overlay Walter */

.wa-lawyer-hover{
    position:absolute;
    inset:0;
    background:#a5a525;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:18px;
    opacity:0;
    transition:.3s ease;
}

.wa-lawyer-card:hover .wa-lawyer-hover{
    opacity:1;
}

.wa-lawyer-hover span{
    color:#fff;
    font-family:'Jura',sans-serif;
    font-size:16px;
    font-weight:300;
    letter-spacing:.02em;
    line-height:1.4;
    text-align:center;
    padding:0 20px;
}

.wa-lawyer-card h3{
    margin-top:22px;
    font-family:'Jura',sans-serif;
    font-size:22px;
    font-weight:300;
    color:#6f92a1;
    letter-spacing:.02em;
}

.wa-staff-role{
    font-family:'Jura',sans-serif;
    font-size:14px;
    color:#9aa8b0;
    margin-top:-8px;
}

/* =====================================
   MODAL AVOCAT
===================================== */

.wa-lawyer-modal .modal-dialog{
    max-width:1250px;
}

.wa-lawyer-modal .modal-content{
    border:0;
    border-radius:0;
    overflow:hidden;
    font-family:'Jura',sans-serif;
}

.wa-lawyer-modal .btn-close{
    position:absolute;
    top:20px;
    right:20px;
    z-index:5;
}

.wa-lawyer-modal img{
    width:100%;
    height:100%;
    min-height:500px;
    object-fit:cover;
}

.wa-modal-text{
    padding:50px;
}

.wa-modal-text h2{
    font-size:42px;
    font-weight:300;
    color:#6f92a1;
    margin-bottom:25px;
}

.wa-modal-text p{
    color:#666;
    font-size:14px;
    line-height:1.8;
    margin-bottom:15px;
}

.wa-modal-text strong{
    color:#28354c;
    font-weight:600;
}

.wa-modal-text a{
    color:#9c982d;
}

.wa-modal-text a:hover{
    color:#c8c617;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:991px){

    .wa-team-section{
        padding-top:110px;
    }

    .wa-team-subtitle{
        font-size:28px;
    }

    .wa-lawyer-hover span{
        font-size:15px;
    }

    .wa-modal-text{
        padding:35px;
    }

    .wa-modal-text h2{
        font-size:34px;
    }
}

@media(max-width:767px){

    .wa-lawyer-card{
        margin-bottom:35px;
    }

    .wa-lawyer-card h3{
        font-size:20px;
    }

    .wa-modal-text{
        padding:25px;
    }

    .wa-modal-text h2{
        font-size:30px;
    }

    .wa-lawyer-modal img{
        min-height:320px;
    }
}

@media(max-width:575px){

    .wa-team-section{
        padding-top:95px;
    }

    .wa-team-subtitle{
        font-size:24px;
        margin-bottom:35px;
    }

    .wa-staff-title{
        margin-top:70px;
        margin-bottom:35px;
    }

    .wa-lawyer-hover{
        gap:12px;
    }

    .wa-lawyer-hover span{
        font-size:14px;
    }

    .wa-lawyer-card h3{
        font-size:18px;
    }
}

/* PAGE MATIERES */

.wa-matieres-page{
  background:#efefed;
  min-height:100vh;
}

.wa-matieres-section{
  padding-top:135px;
}

.wa-matieres-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:35px;
}

.wa-matiere-card{
  background:#fff;
  padding:45px 45px 40px;
  min-height:260px;
}

.wa-matiere-card h2{
  font-family:'Jura',sans-serif;
  font-size:34px;
  font-weight:300;
  color:#6f92a1;
  margin-bottom:25px;
}

.wa-matiere-card ul{
  margin:0;
  padding-left:20px;
  color:#666;
  font-size:16px;
  line-height:1.8;
}

.wa-matiere-card li::marker{
  color:#c8c617;
}

@media(max-width:767px){
  .wa-matieres-list{
    grid-template-columns:1fr;
  }

  .wa-matieres-section{
    padding-top:105px;
  }

  .wa-matiere-card{
    padding:32px 28px;
  }

  .wa-matiere-card h2{
    font-size:28px;
  }
}

/* PAGE TROUVER MON AVOCAT */

.wa-find-page{
  background:#fff;
  min-height:100vh;
}

.wa-find-hero{
  margin-top:68px;
  background:#e7e7e7;
  padding:38px 0 34px;
}

.wa-find-hero .wa-title{
  margin:0;
  font-size:42px;
}

.wa-find-section{
  background:#fff;
  padding-top:50px;
}

.wa-filter-box h2{
  font-size:24px;
  font-weight:300;
  color:#6f92a1;
  margin-bottom:45px;
}

.wa-filter-box label{
  display:block;
  font-size:11px;
  text-transform:uppercase;
  color:#9aa8b0;
  margin-bottom:8px;
}

.wa-filter-box .form-select{
  height:42px;
  border-radius:0;
  border:1px solid #cfcfcf;
  color:#8a8a8a;
  font-size:15px;
  font-family:'Jura',sans-serif;
}

.wa-find-grid{
  row-gap:95px;
}

.wa-find-card{
  cursor:pointer;
}

.wa-find-photo{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  background:#ddd;
}

.wa-find-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(1);
  display:block;
}

.wa-find-overlay{
  position:absolute;
  inset:0;
  background:#a5a525;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:13px;
  opacity:0;
  transition:.3s ease;
  text-align:center;
  padding:18px;
}

.wa-find-card:hover .wa-find-overlay{
  opacity:1;
}

.wa-find-overlay span{
  font-size:14px;
  font-weight:300;
  line-height:1.25;
}

.wa-find-card h3{
  font-size:17px;
  font-weight:300;
  color:#6f92a1;
  margin-top:18px;
}

.wa-no-result{
  display:none;
  color:#6f92a1;
  font-size:20px;
  margin-top:40px;
}

@media(max-width:991px){
  .wa-filter-box{
    margin-bottom:45px;
  }

  .wa-find-grid{
    row-gap:55px;
  }
}

@media(max-width:575px){
  .wa-find-hero .wa-title{
    font-size:36px;
  }

  .wa-find-section{
    padding-top:35px;
  }
}