/* Colors */
/* Typo */
@import url("https://fonts.googleapis.com/css2?family=Grandstander:wght@400;700;900&family=Poppins:wght@300;400;700;900&display=swap");
/* Style */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

nav {
  background-color: #fff;
  z-index: 850;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

nav .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

nav .container .content-logo {
  display: flex;
  flex-direction: column;
  width: 20%;
  position: relative;
}

@media screen and (max-width: 768px) {
  nav .container .content-logo {
    width: 42%;
  }
}

nav .container .content-logo a {
  position: absolute;
  display: block;
  width: 50%;
  height: 100%;
  z-index: 999;
}

nav .container .content-logo img {
  width: 50%;
}

nav .container .content {
  display: flex;
  flex-direction: column;
  width: 80%;
  text-align: right;
  justify-content: center;
}

nav .container .content input[type="checkbox"], nav .container .content label {
  display: none;
}

@media screen and (max-width: 768px) {
  nav .container .content {
    /* BTN Burger */
    width: 57%;
  }
  nav .container .content input[type="checkbox"] {
    position: absolute;
    left: -9999;
  }
  nav .container .content label {
    display: block;
  }
  nav .container .content input[type="checkbox"]:checked ~ ul {
    transform: translateY(0);
  }
}

nav .container .content ul {
  list-style-type: none;
  transition: all 0.3s;
  position: relative;
}

nav .container .content ul img {
  display: none;
}

nav .container .content ul label {
  position: absolute;
  top: 15px;
  right: 15px;
}

nav .container .content ul li {
  display: inline;
  margin-right: 25px;
}

nav .container .content ul li:last-child {
  margin-right: 0;
}

nav .container .content ul li a {
  color: #00567C;
  text-decoration: none;
  font-family: "Poppins";
}

nav .container .content ul li.contact {
  background-color: #FBBC20;
  padding: 5px;
  transition: all 0.3s;
}

nav .container .content ul li.contact a {
  color: #000;
  font-weight: 700;
  transition: all 0.3s;
}

nav .container .content ul li.contact:hover {
  background-color: #3BB183;
}

nav .container .content ul li.contact:hover a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  nav .container .content ul {
    display: flex;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    left: 0;
    top: 0;
    z-index: 1000;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
    text-align: left;
    transform: translateX(-100%);
    padding: 0;
    text-align: center;
  }
  nav .container .content ul li {
    margin-bottom: 25px;
    width: 100%;
  }
  nav .container .content ul img {
    display: block;
    align-self: center;
    margin-bottom: 50px;
  }
}

.container {
  width: 1200px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .container {
    width: 100vw;
  }
}

.top-container {
  width: 100%;
  height: 90vh;
  padding-top: 10%;
  overflow: hidden;
  background-image: url(/img/header-b2c.jpg);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .top-container {
    background-position: right;
    height: auto;
  }
}

.top-container iframe {
  display: block;
  margin: auto;
  width: 700px;
  height: 394px;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .top-container iframe {
    width: 90%;
    height: 50.7vw;
    margin-top: 100px;
  }
}

.top-container .container-title {
  width: 45%;
  background-color: #3BB183;
  margin: auto;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .top-container .container-title {
    width: 90%;
  }
}

.top-container .container-title h1 {
  margin: 0;
  font-family: "Grandstander";
  font-size: 25px;
  color: #fff;
}

.top-container .container-sub-title {
  display: block;
  margin: auto;
  width: 35%;
  background-color: #FBBC20;
  margin-bottom: 25px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top-container .container-sub-title {
    width: 80%;
  }
}

.top-container .container-sub-title p {
  margin: 0;
  font-family: "Poppins";
  font-size: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.hub {
  background-color: #FBBC20;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .hub {
    margin-bottom: 25px;
  }
}

.hub .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.hub .container .vign {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .hub .container .vign {
    width: 100%;
  }
}

.hub .container .vign .content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .hub .container .vign .content {
    justify-content: center;
  }
}

.hub .container .vign .content img {
  display: flex;
  flex-direction: column;
  border-radius: 100%;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .hub .container .vign .content img {
    width: 80px;
  }
}

.hub .container .vign .content p {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 15px;
}

.hub .container .vign .content p .title {
  font-family: "Grandstander";
  color: #00567C;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 700;
}

.hub .container .vign .content p .text {
  font-family: "Poppins";
  font-size: 16px;
}

.row {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .row {
    margin-bottom: 25px;
  }
}

.row .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .row .container {
    display: block;
  }
}

.row .container .container-img {
  display: flex;
  flex-direction: column;
  width: 70%;
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .row .container .container-img {
    width: 100%;
    height: 250px;
  }
}

.row .container .container-text {
  display: flex;
  flex-direction: column;
  width: 40%;
  background-color: #F5F5F5;
  height: 300px;
  position: absolute;
  right: 0;
  justify-content: center;
  padding: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .row .container .container-text {
    width: 100%;
    height: auto;
    position: relative;
    box-shadow: none;
  }
}

.row .container .container-text h2 {
  font-family: "Grandstander";
  font-size: 25px;
  color: #00567C;
  text-transform: uppercase;
  font-weight: 700;
}

.row .container .container-text p {
  font-family: "Poppins";
  font-size: 16px;
}

.row .container .container-text button {
  display: block;
  background: #3BB183;
  border-radius: 25px;
  border: 0;
  padding: 0;
  width: 300px;
  margin: auto;
}

.row .container .container-text button a {
  display: block;
  padding: 10px;
  color: #fff;
  font-family: "Grandstander";
  text-decoration: none;
  font-size: 20px;
  margin: 0;
}

.row .container.revert {
  flex-flow: row-reverse;
}

@media screen and (max-width: 768px) {
  .row .container.revert {
    flex-flow: row;
  }
}

.row .container.revert .container-text {
  left: 0;
  right: auto;
}

.row.bloc-1 .container-img {
  background-image: url(/img/img-bloc1-b2c.jpg);
}

.row.bloc-2 .container-img iframe {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

.row.bloc-3 .container-img {
  background-image: url(/img/img-bloc3.jpg);
}

.row.bloc-4 .container-img {
  background-image: url(/img/img-contact-b2c.jpg);
  height: 795px;
}

@media screen and (max-width: 768px) {
  .row.bloc-4 .container-img {
    height: 250px;
  }
}

.row.bloc-4 .container-text {
  background-color: #3BB183;
  height: 755px;
}

.row.bloc-4 .container-text .alert {
  display: block;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.row.bloc-4 .container-text .alert.danger {
  background-color: rgba(255, 0, 0, 0.795);
  border: solid 2px #fff;
}

.row.bloc-4 .container-text h2 {
  color: #fff;
  text-align: center;
  margin: 0;
}

.row.bloc-4 .container-text p {
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin: 0;
}

.row.bloc-4 .container-text form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.row.bloc-4 .container-text form .form-group {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 2%;
}

.row.bloc-4 .container-text form .form-group.mail {
  width: 100%;
}

.row.bloc-4 .container-text form .form-group.message {
  width: 100%;
}

.row.bloc-4 .container-text form .form-group label {
  font-family: "Poppins";
  color: #F5F5F5;
  font-size: 14px;
  margin-bottom: 5px;
}

.row.bloc-4 .container-text form .form-group input {
  border-radius: 5px;
  border: 0;
  padding: 5px;
}

.row.bloc-4 .container-text form .form-group textarea {
  resize: none;
  height: 110px;
  border: 0;
  border-radius: 5px;
  padding: 5px;
  font-family: "Poppins";
  font-size: 12px;
}

.row.bloc-4 .container-text form .g-recaptcha {
  margin: auto;
}

.row.bloc-4 .container-text form button {
  margin-top: 25px;
  background-color: #FBBC20;
  font-family: "Grandstander";
  font-size: 20px;
  width: 135px;
}

footer {
  display: block;
  margin: 0;
  padding: 15px;
  background-color: #00567C;
  width: 100vw;
}

footer p {
  color: #fff;
  text-align: center;
  margin: 0;
}

footer p a {
  color: #fff;
  text-decoration: none;
  font-weight: bolder;
  transition: all 0.3s;
}

footer p a:hover {
  color: #FBBC20;
}

.go_top {
  display: flex;
  width: 45px;
  height: 45px;
  background: #FBBC20;
  position: fixed;
  z-index: 800;
  right: 30px;
  bottom: 15px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 100%;
  outline: none;
  text-decoration: none import !important;
}

nav.nav-legal {
  display: block;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  pad: 10px;
  background-color: #00567C;
}

nav.nav-legal a {
  color: #FBBC20;
  text-decoration: none;
  font-family: "Poppins";
  font-weight: bold;
}

.mentions-legales {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .mentions-legales {
    padding: 25px;
    width: 90%;
  }
}

.mentions-legales p {
  font-family: "Poppins";
  font-size: 14px;
  line-height: 25px;
  text-align: justify;
}

.mentions-legales p.intro {
  text-align: center;
}

.mentions-legales h1 {
  font-family: "Grandstander";
  text-align: center;
  color: #FBBC20;
}

.mentions-legales h2 {
  font-family: "Grandstander";
  color: #00567C;
  margin-bottom: 0px;
}

.mentions-legales ul {
  font-family: "Poppins";
  font-size: 14px;
}
