

.wrapper {
  text-align: center;
  margin: 25px auto;
}

.tabs {
  margin-top: 50px;
  font-size: 15px;
  padding: 0px;
  list-style: none;
  background: #fff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  display: inline-block;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  padding: 3vmin;
}
.tabs a {
  text-decoration: none;
  color: #777;
  padding: 10px 20px;
  display: inline-block;
  position: relative;
  z-index: 2;
  transition-duration: 0.6s;
}
.tabs a img, .tabs a i {
  display: inline;
  max-height: 13px;
  margin-right: 5px;
}
.tabs a.active {
  color: #fff;
}

.tabs .selector {
  height: 100%;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  border-radius: 50px;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: #d64915;
  background: linear-gradient(205deg, #d64915 0%, rgb(252, 214, 144) 100%);
  box-shadow: 0px 2px 10px rgba(207, 83, 0, 0.3);
}

.tab-body > section {
  background-color: white;
  padding-top: 10vmin;
  display: none;
}
.tab-body > section:first-child {
  display: block;
}

img{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .5s ease-in-out;
    border-radius:10px;
	transition: .5s ease-in-out;
}

img:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
    transition: .5s ease-in-out;
}

h2{
    font-weight: bold!important;
}
h1{
    font-weight: bold!important;
}

.erudit-ligne {
    border-bottom: 1px solid #e6e6e6;
}
.erudit-ligne-right {
    border-right: 1px solid #e6e6e6;
}