*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: HamonLight;
  src: url("../assets//fonts//hamonlight.otf") format("opentype");
}

:root{
  --primary: HamonLight;
  --primary-light: 300;
  --primary-bold: 700;
  --normal: normal;
  --titre: 4rem;
  --letter-spacing: .2em;
  --letter-spacing2: .4em;
  --text: white;
  background-image: url('../assets/images/FOND.jpg');
  background-repeat: no-repeat;
  background-size: cover;

}
section{
  height: 100vh;
}

a{
  text-decoration: none;
  color: white;
}

h1, h2{
  font-family: var(--primary);
  text-align: center;
  font-size: var(--titre);
  font-style: var(--normal);
  color: var(--text);

}

.h3{
  font-family: var(--primary);
  font-weight: var(--primary-light);
  font-style: var(--normal);
  color: var(--text);
}

.h3-bold{
  font-family: var(--primary);
  font-weight: var(--primary-bold);
  color: var(--text);
}

p{
  font-family: var(--primary);
  font-weight: var(--primary-light);
  font-style: var(--normal);
  font-size: 1.5rem;
  letter-spacing: var(--letter-spacing);
  color: var(--text);
}
#nop{
  letter-spacing: normal;
}
.logo{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.logo img{
  width: 30rem;
}

.flex{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  justify-content: center;
  align-items: center;
  margin-top: 20rem;
  margin-bottom: 5rem;
}
.separator{
  height: 10vh;
}
.separator2{
  height: 11vh;
}
.grid-col2{
  display: grid;
  grid-template-columns: 1fr 1rem 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.tiret{
  width: 2px;
  background-color: white;
  height: auto;
}
.avocat{
  display: flex;
  flex-wrap: nowrap;
  justify-content: end;
  gap: 3rem;
  margin-right: 1.5rem;
}
.avocat div {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.avocat:last-of-type{
  display: flex;
  justify-content: flex-start;
  margin-left: 1rem;
}


.grid-adress {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 20vh;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: center;
}

@media only screen and (max-width: 1024px){
  .flex .flex-div{
    display: flex;
    flex-direction: column;
  }
  h1, h2{
    font-size: 2.5rem
  }
}
@media only screen and (max-width: 768px){
  .logo img{
    width: 20rem;
  }
  .grid-adress{
    display: flex;
    flex-direction: column;
    margin: 10rem;
  }
  .grid-col2{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
  }
  .tiret{
    display: none;
  }
  .avocat, .avocat:last-child{
    margin: 0;
    gap: 0;
    text-align: center;
  }
}


