/* **************************************************************************************************************************** */
/* TITLES
/* **************************************************************************************************************************** */
.titles{

}


/* **************************************************************************************************************************** */
/* TITLES > SURTITRE
/* **************************************************************************************************************************** */
.titles-surtitre{
  color: var(--vert);
  font-size: 24px;
  font-weight: lighter;
  margin-bottom: 20px;
  display: block;
}


/* **************************************************************************************************************************** */
/* TITLES > TITRE
/* **************************************************************************************************************************** */
.titles h2{
  color: var(--vert);
  font-size: 24px;
  font-weight: bold;
}


/* **************************************************************************************************************************** */
/* TITLES > BUTTON
/* **************************************************************************************************************************** */
.titles-button{
  margin-top: 30px;
}

@media only screen and (min-width: 1000px) {
  .titles-button{
    margin-top: 50px;
  }
}

.right .titles-button{
  margin-top: 0;
}

.titles-button a{
  padding: 10px 30px;
  border: 1px solid var(--vert);
  border-radius: 320px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  color: var(--vert);
  text-transform: uppercase;
}

@media only screen and (min-width: 1000px) {
  .titles-button a{
    padding: 10px 50px;
    font-size: 20px;
  }
}

.titles-button a:hover{
  color: #FFFFFF;
}

.titles-button a::before{
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  content: '';
  display: block;
  transition: all .4s ease;
  background: var(--vert);
}

.titles-button a:hover::before{
  width: 100%;
}

.titles-button a span{
  position: relative;
  z-index: 2;
}
