a {
  color: inherit;
  text-decoration: inherit;
}

body {
  margin: 0;
  padding: 0;

  font-family: operetta-12, serif;

  font-weight: 400;
  line-height: 25px;
  font-style: normal;
  min-width: 320px;
  height: 100vh;
  overflow: hidden;
 
}

@media (max-width:699px) {
 
  .hidden-mobile {
    display:none
  }
}

@media (min-width:700px) {
  .hidden-desktop {
    display:none
  }
}

/**** _______________________

         NAV
 _______________________ ***/

nav ul {
  list-style-type: none;
}

nav li {
  text-align: center;
  color: #fff;

  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
}

nav li a {
  font-family: hero-new, sans-serif;
}

@media (min-width: 599px) {
  nav {
    width: 100%;
    background-color: #264040;
    position: fixed;
    top: 0;
    height: 50px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 0 5px #000;
  }

  nav ul {
    position: absolute;
    top: 0;
    left: 0;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 140vw;
  }

  nav li {
    margin: 0;
    float: left;
    display: inline-block;
    height: 48px;
    margin-bottom: 2px;
    line-height: 50px;
    width: 25vw;
    text-align: center;
    color: #fff;
    transition: background-color 0.5s 0.2s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    transform: translateY(100%);
  }
  nav li a {
    width: 25vw;
    line-height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
  }
  nav li.active {
    background-color: #151515;
    color: #efefef;
  }
  nav li.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ae8a5c;
  }
  nav li:nth-child(1) {
    animation: pop 0.5s 0.15s 1 forwards;
  }
  nav li:nth-child(2) {
    animation: pop 0.5s 0.3s 1 forwards;
  }
  nav li:nth-child(3) {
    animation: pop 0.5s 0.45s 1 forwards;
  }
  nav li:nth-child(4) {
    animation: pop 0.5s 0.6s 1 forwards;
  }
  nav li:nth-child(5) {
    animation: pop 0.5s 0.75s 1 forwards;
  }
  nav li:nth-child(6) {
    animation: pop 0.5s 0.9s 1 forwards;
  }
  nav li:nth-child(7) {
    animation: pop 0.5s 1.05s 1 forwards;
  }
  nav li:hover {
    color: #ececec;
  }
  nav li:active {
    background-color: #222;
  }
  nav li:nth-child(1):hover ~ .slide {
    left: 0;
  }
  nav li:nth-child(2):hover ~ .slide {
    left: 25vw;
  }
  nav li:nth-child(3):hover ~ .slide {
    left: 50vw;
  }
  nav li:nth-child(4):hover ~ .slide {
    left: 75vw;
  }
  nav li:nth-child(5):hover ~ .slide {
    left: 100vw;
  }
  nav li:nth-child(6):hover ~ .slide {
    left: 125vw;
  }
  nav li:nth-child(7):hover ~ .slide {
    left: 150vw;
  }
  nav li.slide {
    position: absolute;
    left: -25vw;
    top: 0;
    background-color: #fff;
    z-index: -1;
    height: 2px;
    margin-top: 48px;
    transition: left 0.3s ease;
    transform: translateY(0);
  }
}

@media (max-width: 599px) {
  nav {
    width: 100%;
    height: 105px;
    background-color: #264040;
    position: fixed;
    z-index: 10;
    top:0;
  
  }

  nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 1rem 0;
    flex-wrap: wrap;
  }

  nav li:last-child {
    display: none;
  }

  nav li {
    padding-bottom: 1rem;
width: 50%;
  }

  /**** _______________________

         INTRO
 _______________________ ***/

  .section__intro .title span {
    line-height: 5rem;
  }

 
  .swiper-container .swiper-pagination {
    display: none;
  }
}

.section__intro {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
}

@media (max-width: 599px) {
  .section__intro {
    top: 40%;
  }
}

.section__intro .title {
  align-self: center;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  padding-bottom: 10px;
  line-height: normal;
}
.section__intro .title span {
  display: inline-block;
  font-size: 60px;
  color: #fff;
  width: 100%;
  text-transform: uppercase;
  transform: translateX(-100%);
  animation: byBottom 1s ease both;
  font-weight: 600;
  letter-spacing: 0.25vw;
}

@media (max-width: 599px) {
  .section__intro .title span {
    font-size: 50px;
    line-height: 60px;
  }
}

.section__intro .title span:last-child {
  font-size: 0.95rem;
  animation: byBottom 1s 0.25s ease both;
  line-height: 30px;
  padding-top: 2rem;
  font-family: hero-new, sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 75%;
}
.section__intro .title span a {
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  text-decoration: none;
  background: #ae8a5c;
  padding: 0.5rem 1rem;
}

.contact__header {
  text-transform: initial;
  font-family: hero-new, sans-serif;
  line-height: 45px;
  color: #fff;
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 0rem auto;
  flex-direction: column;
  letter-spacing: 0.25vw;
  font-weight: 700;
  transform: translateX(-100%);
  animation: byBottom 1s ease both;
  width: 75%;
}

.contact__header:before {
  content: '';
  border-bottom: 2px solid #fff;
  width: 80px;
  background-color: #fff;
  margin: 2rem auto;
}

.contact__header a span {
  text-decoration: underline;
}

.mail {
  font-weight: 600;
}

.mail::before {
  content: '***';
  margin: 1rem auto 0;
  display: flex;
  justify-content: center;
}

/**** _______________________

         SLIDE GENERALITE
 _______________________ ***/

.wrapper__bloc {
  position: absolute;
  background-color: rgb(255, 255, 255, 0.9);
  padding: 30px 50px;
  
}

@media (max-width: 1199px) {
  .wrapper__bloc {
    width:65%;
    padding: 20px;
  }
}


/**** _______________________

         SLIDE 1
 _______________________ ***/

.section__creation {
  border: 10px double #29465f;

}

.section__gestion {
  border: 10px double #402640;
}

.section__conseil {
  border: 10px double #bc4b51;
}

/**** _______________________

          ANIMATION
 _______________________ ***/

.swiper-container {
  width: 100%;
  height: 100vh;
  position: relative;
}
.swiper-container .slider {
  min-height: 50vh;
}
.swiper-container .slider .swiper-slide {
  background: #ccc;
  overflow: hidden;
  position: relative;
  height: 100%;
  text-align: center;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-container .slider .swiper-slide .slide-inner {
  position: absolute;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background: #000;
}
.swiper-container .slider .swiper-slide .slide-inner img {
  width:100%;
  height:100%;
  object-position: right;
  object-fit: cover;
  filter: opacity(55%);
}

.swiper-container .slider .swiper-slide .slide-inner img {
  filter: opacity(35%);
}

.swiper-container .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0);
}
.swiper-container .swiper-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 7em;
  position: absolute;
  z-index: 3;
  right: 0;
}
.swiper-container .swiper-pagination span {
  font-size: 1rem;
  color: #fff;
  padding-bottom: 0.5rem;
}
.swiper-container .swiper-pagination span:focus {
  outline: none;
}

/**** _______________________

          ANIMATION
 _______________________ ***/

@-moz-keyframes byBottom {
  0% {
    transform: translateY(150%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes byBottom {
  0% {
    transform: translateY(150%);
  }
  100% {
    transform: translateY(0);
  }
}
@-o-keyframes byBottom {
  0% {
    transform: translateY(150%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes byBottom {
  0% {
    transform: translateY(150%);
  }
  100% {
    transform: translateY(0);
  }
}


@-moz-keyframes pop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes pop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-o-keyframes pop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}



@media (max-width:699px) {
 
 

.section__intro {
position: inherit;
transform: inherit;
  padding:0 15px;
    margin-top: 150px;
    width:auto;
    text-align:center;

}

.section__intro .title span {
  font-size: 40px;
  line-height: 50px;
  
}

.section__intro .title span, .contact__header {
  color:#264040;
}

.section__intro .title span a {
  color:#fff;
}

.section__intro .title span:last-child {

  font-size: 0.93rem;
 
  line-height: 35px;
  width: 100%;
}

.contact__header::before {
 
  border-bottom: 2px solid #264040;
 
  margin: 1rem auto;
}

.contact__header {

  line-height: 30px;
 
  width: 100%;
}

.wrapper__bloc {
  position: inherit;
  transform: I;
 background: NONE;
}
}