

.cta {
  position: relative;
  margin: auto;
  padding: 10px 22px;
  transition: all 0.2s ease;
}
.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 28px;
  background: rgba(227, 208, 168, 0.5);
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
}
.cta span {
  position: relative;
  font-size: 14px;
  line-height: 18px;
  font-weight: 900;
  letter-spacing: 0.25em;
  vertical-align: middle;
}
.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #111;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}
.cta:hover:before {
  width: 100%;
  background: #e3d0a8;
}
.cta:hover svg {
  transform: translateX(0);
}
.cta:active {
  transform: scale(0.96);
}


/*--------------------------------------------------------------
# Police du pied de page
--------------------------------------------------------------*/
.p2{
    color: #458f81;
}


/*--------------------------------------------------------------
# Couleur des svg
--------------------------------------------------------------*/
a svg:hover #facebook,
a svg:hover #instagram { 
  fill: #b0386c;
}
/*--------------------------------------------------------------
# Bandeau blanc du bas
--------------------------------------------------------------*/

#tip {
	position: fixed;
	float: left;
        bottom: 0;
	width: 100%;
	padding: 5px 0 43px 0;
        background-color: #fff;
	z-index: 10;
}