@charset "utf-8";
@import url(https://fonts.googleapis.com/css2?family=Montserrat&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap);
:root {
  --main-bk-color: #1a1a1a;
  --main-eurobs-color: #d17e4b;
  --main--fbk-color: #121212;
  --loader-size: 50px;
  --animation: cubic-bezier(0.785, 0.135, 0.15, 0.86) 2s infinite;
  --loader-color: #d17e4b;
}
@-webkit-keyframes scaleIn {
  to {
    transform: scale(1);
  }
}
@keyframes scaleIn {
  to {
    transform: scale(1);
  }
}
@-webkit-keyframes slideIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes move-nodal {
  from {
    bottom: -100%;
  }
  to {
    bottom: -70px;
  }
}
@keyframes move-nodal-after {
  from {
    bottom: -70px;
  }
  to {
    bottom: -100%;
  }
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
* {
  box-sizing: border-box;
  scroll-behavior: smooth !important;
  font-family: Montserrat;
}
html {
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
img {
  pointer-events: none;
}
header {
  display: block;
}
body {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  background-color: #fff;
  letter-spacing: 0.025em;
  line-height: 2.1428;
  -webkit-overflow-scrolling: touch;
}
@-o-viewport {
  width: device-width;
}
@-ms-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
body .auto {
  height: auto !important;
}
#wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
#main {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
}
#s_connexion_bloc {
  display: flex;
}
#s_inscription_bloc,
#s_mot_de_passe_bloc {
  display: none;
}
.s_notification {
  display: block;
  position: fixed;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  top: 20%;
  right: 0;
  z-index: 10;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.s_notification i {
  margin-right: 15px;
  font-weight: 700;
}
.s_notification .error_message {
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  background: #bd3630;
  color: #f5f5f5;
  align-items: center;
  justify-content: center;
}
.s_notification .sucess_message {
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  background: #4caf4f;
  color: #f5f5f5;
  align-items: center;
  justify-content: center;
}
.contain_loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--main-bk-color);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: var(--loader-size);
  height: var(--loader-size);
  -webkit-animation: rotate 8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  animation: rotate 8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
@-webkit-keyframes rotate {
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader__dot {
  background-color: var(--loader-color);
  border-radius: 50%;
}
.loader__dot:nth-of-type(1) {
  -webkit-animation: dot1 var(--animation);
  animation: dot1 var(--animation);
  --loader-color: #fbaf94;
}
@-webkit-keyframes dot1 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(-100%, -100%);
    border-radius: 0;
  }
  95% {
    transform: translateY(0);
  }
}
@keyframes dot1 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(-100%, -100%);
    border-radius: 0;
  }
  95% {
    transform: translateY(0);
  }
}
.loader__dot:nth-of-type(2) {
  -webkit-animation: dot2 var(--animation);
  animation: dot2 var(--animation);
}
@-webkit-keyframes dot2 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(100%, -100%);
    border-radius: 0;
  }
  95% {
    transform: translateY(0);
  }
}
@keyframes dot2 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(100%, -100%);
    border-radius: 0;
  }
  95% {
    transform: translateY(0);
  }
}
.loader__dot:nth-of-type(3) {
  -webkit-animation: dot3 var(--animation);
  animation: dot3 var(--animation);
}
@-webkit-keyframes dot3 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(-100%, 100%);
    border-radius: 0;
  }
  95% {
    transform: translateY(0);
  }
}
@keyframes dot3 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(-100%, 100%);
    border-radius: 0;
  }
  95% {
    transform: translateY(0);
  }
}
.loader__dot:nth-of-type(4) {
  -webkit-animation: dot4 var(--animation);
  animation: dot4 var(--animation);
}
@-webkit-keyframes dot4 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(100%, 100%);
    border-radius: 0;
  }
  95% {
    transform: translateY(0);
  }
}
@keyframes dot4 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(100%, 100%);
    border-radius: 0;
  }
  95% {
    transform: translateY(0);
  }
}
.s_overlay_white {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background-image: linear-gradient(90deg, #fff 15%, #edecec00 45%);
  z-index: 7;
}
.s_overlay {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background-color: var(--main-bk-color);
  z-index: 7;
}
.opa_x_6 {
  opacity: 0.6;
}
.opa_x_4 {
  opacity: 0.4;
}
.opa_x_3 {
  opacity: 0.3;
}
.opa_x_2 {
  opacity: 0.2;
}
.htKxuG svg path {
  fill: #d17e4b !important;
}
.htKxuG svg path:last-child {
  fill: white !important;
}
.ButtonGroup__ButtonGroupStyle-sc-1usw1pe-1
  .inpjsL.inpjsL.inpjsL.inpjsL.inpjsL.inpjsL {
  color: #d17e4b !important;
}
.gegvBA {
  display: none !important;
}
.s_active_list {
  background-color: #eee;
}
.s_cache_slide {
  position: absolute;
  left: 0;
  z-index: 10;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background-repeat: no-repeat;
  background-size: 20%;
  background-position: center;
  background-image: url("../images/logo/logo-svg.svg");
}
.s_list_catalogue {
  width: 100%;
  position: relative;
  height: 70vh;
  z-index: 10;
  display: flex;
  overflow: hidden;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: row;
}
.s_list_catalogue > div:first-child {
  position: relative;
  width: 30%;
  height: 100%;
  margin-right: 5px;
}
.s_list_catalogue > div:last-child {
  position: relative;
  overflow: hidden;
  width: 70%;
  height: 100%;
}
.s_list_catalogue > div:first-child > ul {
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  padding: 0;
  border-radius: 0.358rem;
  margin: 0 5px 0 0;
  list-style: none;
  position: relative;
  height: 100%;
  overflow: auto;
}
.s_list_catalogue > div:first-child > ul > li {
  position: relative;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0;
  height: 12vh;
  font-weight: 700;
  display: flex;
  letter-spacing: 2px;
  justify-content: center;
  align-items: center;
  transition: 1s all;
}
.s_list_catalogue > div:first-child > ul > li:hover {
  background-color: #eee;
}
.s_list_catalogue > div:first-child > ul > li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #eee;
}
.s_list_catalogue > div:first-child > ul > li > a {
  text-decoration: none;
  opacity: 0.7;
  font-size: 12px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 20px 0;
  letter-spacing: 2px;
  color: var(--main-bk-color);
  align-items: center;
  justify-content: center;
  align-content: center;
}
.s_bloc_content_product {
  position: absolute;
  top: 10px;
  right: 10px;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  align-content: center;
}
.s_carrousel img,
.s_carrousel_preview img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s_carrousel a {
  display: none;
}
.s_carrousel_preview a {
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--main-bk-color);
  font-size: 12px;
  background: var(--main--fbk-color);
  padding: 5px 10px;
  color: #fff;
  border-radius: 0.5rem;
  transition: all 0.5s;
}
.s_carrousel_preview a:hover {
  background-color: var(--main-eurobs-color);
}
.s_bloc_content_product span {
  position: relative;
  padding: 5px 10px;
  font-size: 10px;
  text-transform: uppercase;
  border-radius: 0.358rem;
  background: #fff;
  z-index: 10;
}
.s_carrousel .s_carrousel_fourniseur,
.s_carrousel_preview .s_carrousel_fourniseur {
  margin-left: 10px;
  background: #d17e4b;
  color: #fff;
}
.s_carrousel .s_carrousel_fourniseur {
  display: none;
}
.s_carrousel_preview {
  width: 100%;
  height: 80%;
  margin-bottom: 5px;
  border-radius: 0.358rem;
}
.s_carrousel {
  border-radius: 0.358rem;
  width: 100%;
  height: 20%;
}
.s_catalogue {
  width: 100%;
  height: 100%;
  padding-top: 5%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.s_catalogue > div {
  position: relative;
  width: 30%;
  height: auto;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}
.s_catalogue > div > h4 {
  margin: 5px 0;
  font-size: 12px;
}
.s_catalogue > div > img {
  object-fit: cover;
  width: 100%;
  height: 150px;
}
.s_catalogue > div > img:active {
  transform: scale(1.2);
}
.s_carrousel_preview .swiper-button-next,
.s_carrousel_preview .swiper-button-prev {
  top: 90%;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #1b1b23;
}
.s_button_carrousel {
  position: absolute;
  padding: 5px;
  display: flex;
  z-index: 10;
  right: 10px;
  bottom: 10px;
  border-radius: 0.358rem;
  border: 1px solid #eee;
  width: 70px;
  height: 40px;
  background-color: #fff;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  align-content: center;
}
.s_button_carrousel i {
  cursor: pointer;
  transition: all 0.5s;
}
.s_button_carrousel i:hover,
footer > .s_footer > div:last-child > div > ul:first-child > li > a:hover,
footer > .s_footer > div:last-child > div > ul:last-child > li > a:hover,
footer > .s_footer > div > ul > li > ul > li::marker,
footer > .s_footer > div > ul > li > ul > li > a:hover {
  color: var(--main-eurobs-color);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #1b1b23 !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 23px !important;
}
.s_row {
  flex-direction: row !important;
}
html .s_100_h {
  height: 100%;
}
html .s_100_h_vh {
  height: 100vh;
}
.s_main_section {
  position: relative;
  width: 100%;
  height: auto;
}
.s_index_section {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 5;
  background-image: url("../images/marbre/white-gold-marbre.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.s_content_title {
  position: relative;
  width: auto;
  z-index: 10;
  height: auto;
  margin-bottom: 40px;
}
.s_content_title::after {
  content: "";
  position: absolute;
  width: 15%;
  height: 200px;
  left: 3%;
  opacity: 0.7;
  z-index: -1;
  bottom: -40px;
  background-color: #fff;
}
.s_content_title > span {
  position: relative;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 28px;
  color: var(--main-bk-color);
}
.s_content_title > span::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  background: var(--main-eurobs-color);
}
.s_content {
  background: #f5f5f5;
  width: 100%;
  height: auto;
  padding: 90px 5% 5% 5%;
  position: relative;
  overflow: hidden;
  z-index: 5;
}
.s_index_content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 5%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  z-index: 10;
}
.s_index_content::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 3px;
}
.s_index_content > h1 {
  position: relative;
  text-transform: inherit;
  letter-spacing: 1px;
  width: 60%;
  opacity: 0.8;
  font-size: 14px;
  font-family: Montserrat;
  line-height: 20px;
  margin: 0;
  padding-top: 20px;
  padding-left: 2px;
  color: var(--main-bk-color);
}
.s_index_content > a {
  display: flex;
  position: relative;
  margin-top: 40px;
  background: var(--main-bk-color);
  padding: 10px;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  border-radius: 0.358rem;
  transition: all 0.5s;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.s_index_content > a:hover {
  background-color: var(--main-eurobs-color);
}
.s_index_content > a > i {
  position: relative;
  margin-right: 10px;
  font-size: 16px;
}
.s_index_content > h2 {
  position: relative;
  text-transform: uppercase;
  width: 100%;
  font-size: 30px;
  line-height: 40px;
  padding-bottom: 40px;
  margin: 0;
  color: var(--main-bk-color);
  font-family: Montserrat, sans-serif;
}
.s_index_reseaux {
  width: 90%;
  height: 50px;
  display: flex;
  left: 5%;
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  z-index: 10;
}
.s_contact_reseaux {
  width: 100%;
  height: 50px;
  display: flex;
  overflow: hidden;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  z-index: 10;
}
.s_contact_reseaux > div,
.s_index_reseaux > div {
  width: 30px;
  height: 30px;
  position: relative;
  margin: 5px;
  cursor: pointer;
}
.s_contact_reseaux > div > a,
.s_contact_reseaux > div > li,
.s_index_reseaux > div > a,
.s_index_reseaux > div > li {
  list-style: none;
  display: flex;
  border: 1px solid var(--main-bk-color);
  line-height: 30px;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
  align-items: center;
  opacity: 1;
  transition: all 0.5s;
}
.s_contact_reseaux > div > li > a,
.s_index_reseaux > div > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.s_contact_reseaux > div > a,
.s_index_reseaux > div > a {
  background-color: var(--main-bk-color);
  transition: all 0.5s;
}
.s_contact_reseaux > div > a:hover,
.s_index_reseaux > div > a:hover {
  background-color: var(--main-eurobs-color);
}
.s_contact_reseaux > div > li:hover,
.s_index_reseaux > div > li:hover {
  border-color: var(--main-bk-color);
  opacity: 1;
  border-radius: 50%;
}
.s_contact_reseaux > div > a > i,
.s_contact_reseaux > div > li > a > i,
.s_index_reseaux > div > a > i,
.s_index_reseaux > div > li > a > i {
  overflow: hidden;
  height: 15px;
  text-decoration: none;
}
.s_contact_reseaux > div > a > i,
.s_index_reseaux > div > a > i {
  color: #f5f5f5;
}
.s_contact_reseaux > div > li > a > i,
.s_index_reseaux > div > li > a > i {
  color: var(--main-bk-color);
}
.s_deco_specialiste {
  position: absolute;
  text-transform: uppercase;
  letter-spacing: 8px;
  left: 35%;
  opacity: 0.8;
  font-weight: 700;
  font-size: 10px;
  z-index: 10;
  bottom: 25px;
  color: var(--main-bk-color);
  text-align: right;
}
.s_index_content > h2::before {
  position: absolute;
  content: "";
  left: 2px;
  bottom: 25%;
  width: 10%;
  height: 2px;
  background-color: var(--main-bk-color);
}
.s_mobile_menu {
  display: none;
}
.s_deskop_menu > .s_menu > ul > .s_revendeur_button {
  background: #fff;
  border-radius: 0.358rem;
  transition: all 0.5s;
  padding: 0;
  margin-left: 10px;
}
.s_deskop_menu > .s_menu > ul > .s_revendeur_button > a {
  color: var(--main-bk-color);
  font-family: Montserrat, sans-serif;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 0.358rem;
  transition: all 0.5s;
}
.s_deskop_menu > .s_menu > ul > .s_revendeur_button > a:hover {
  border-radius: 0.358rem;
  color: #f5f5f5;
  background-color: var(--main-eurobs-color);
}
.s_deskop_menu {
  display: block;
  position: fixed;
  width: 100%;
  height: auto;
  padding: 10px 5%;
  z-index: 5;
  background: 0 0;
  background-color: var(--main-bk-color);
}
.s_deskop_menu.scrolled,
.s_main_menu ul.scrolled {
  background-color: var(--main-bk-color) !important;
  transition: background-color 0.2s linear;
}
.s_menu {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
}
.s_menu > div {
  display: flex;
  z-index: 10;
  cursor: pointer;
}
.s_menu > ul {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  position: relative;
  justify-content: flex-end;
}
.s_menu > ul > li {
  position: relative;
  padding: 5px 10px;
  text-transform: uppercase;
  font-family: revert;
  color: #fff;
  display: flex;
  opacity: 1;
  justify-content: center;
  align-items: flex-start;
}
.s_menu > ul > li > a,
.s_menu > ul > li > i {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: #fff;
  position: relative;
}
.s_main_menu .s_normal_button::after {
  position: absolute;
  content: "";
  display: block;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.5s;
}
.s_main_menu .s_normal_button:hover::after {
  width: 100%;
  transition: width 0.5s;
}
.s_main_menu img {
  position: relative;
  width: 60px;
  height: auto;
  margin: 0 10px;
  z-index: 0;
}
.s_contact {
  position: relative;
  padding-top: 5%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}
.s_contact > div:first-child {
  margin-right: 1%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.s_contact > div:first-child h4 {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--main-bk-color);
  padding-bottom: 20px;
}
.s_contact > div:first-child p {
  margin: 0;
  font-size: 12px;
  opacity: 0.7;
}
.s_contact > div:first-child img {
  width: 100%;
  height: 60%;
  object-fit: cover;
}
.s_contact > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.s_contact > div {
  width: 50%;
  padding: 20px;
  background-color: #fff;
}
.s_revendeur_bloc {
  position: relative;
  z-index: 10;
  display: flex;
  padding-top: 90px;
  width: 100%;
  height: 100%;
}
.s_revendeur_bloc > div {
  position: relative;
  width: 50%;
  height: 100%;
  background-color: #f5f5f5;
}
.s_revendeur_bloc > div:first-child > div {
  padding: 5%;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.s_revendeur_bloc > div:first-child > div > h4 {
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  margin: 5px 0;
}
.s_revendeur_bloc > div:first-child > div > p {
  position: relative;
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
  margin-top: 0;
}
.s_revendeur_bloc form {
  padding: 20px;
  border: 1px solid #eee;
}
.s_newsletter {
  background-color: transparent;
}
form {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
}
.s_card > form > div,
form > div {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.s_card > form > b > div,
form > b > div {
  width: 49%;
}
.s_card > form > b,
form > b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-direction: row;
}
.s_card > form > div > a,
form > div > a {
  font-size: 8px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 5px;
  color: var(--main-bk-color);
  transition: all 0.5s;
}
.s_card > form > button > i,
form > div > a > i {
  margin-right: 10px;
}
.s_card > form > div > a:hover,
form > div > a:hover {
  color: var(--main-eurobs-color);
}
.s_card > form > b > div > label,
form > b > div > label,
form > label {
  float: left;
  position: relative;
  width: 100%;
  text-align: left;
  font-weight: 500;
}
.s_card > form > b > div > label > i,
form > b > div > label > i,
form > label > i {
  padding-right: 12px;
  font-size: 16px;
  color: #d17e4b;
  position: absolute;
  font-weight: 700;
  top: 14px;
  left: 20px;
  text-align: left;
}
.s_card > form > p,
form > p {
  position: relative;
  margin: 5px 0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
form textarea {
  height: 150px;
}
.s_card > form > b > div > input,
.s_card > form > b > div > select,
form select,
form textarea,
form > b > div > input,
form > input,
input {
  float: left;
  border-radius: 5px;
  background: #f5f5f5;
  width: 100%;
  border: #eee solid 0.2px;
  padding: 15px 20px 15px 55px;
  color: #fff;
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--main-bk-color);
}

.s_checkbok {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-content: center;
  flex-direction: column;
}

.s_checkbok > div {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}

.s_checkbok label {
  font-size: 12px;
  text-transform: normal;
  font-weight: normal;
}

.s_checkbok input {
  margin-bottom: 0;
  margin-right: 5%;
  width: auto;
}

.s_wrap {
  flex-wrap: wrap;
}
.s_card > form > b > div > select,
form select,
form > b > div > input {
  text-transform: none;
}
form > b > div > input[type="text"],
form > b > div > input[type="text"]:focus,
form > input[type="text"]:focus {
  color: var(--main-bk-color);
  text-transform: none;
}
.s_card > form > button,
form > button {
  display: flex;
  position: relative;
  border: none;
  cursor: pointer;
  margin-top: 5px;
  background: var(--main-eurobs-color);
  padding: 10px;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border-radius: 0.358rem;
  transition: all 0.5s;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.s_card > form > button:hover,
form > button:hover {
  background-color: var(--main-bk-color);
  color: #f5f5f5;
}
.s_revendeur_bloc > div:last-child {
  position: relative;
  background-image: url("../images/entreprise/espace_connexion.jpeg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
footer {
  position: fixed;
  background: var(--main-bk-color);
  height: auto;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
footer > .s_footer {
  display: flex;
  height: 100%;
  overflow: hidden;
}
footer > .s_footer > div {
  position: relative;
  height: 100%;
  padding: 5%;
  width: 33.3%;
}
footer > .s_footer > div > h3 {
  position: relative;
  color: #f5f5f5;
  text-align: left;
  font-size: 14px;
  margin-bottom: 40px;
  margin-top: 0;
  font-weight: 400;
  letter-spacing: 1px;
  padding-bottom: 10px;
}
footer > .s_footer > div > ul {
  list-style: none;
  padding-left: 0;
}
footer > .s_footer > div > ul > li {
  position: relative;
  list-style: none;
  font-size: 14px;
  margin-bottom: 10px;
}
footer > .s_footer > div > ul > li > ul {
  color: var(--main-eurobs-color);
  list-style-type: square;
}
footer > .s_footer > div > ul > li > ul > li {
  color: #999;
  font-size: 14px;
  transition: all 0.5s;
}
footer > .s_footer > div > ul > li > ul > li > a {
  color: #999;
  text-decoration: none;
  font-size: 12px;
  transition: 1s all;
}
footer > .s_footer > div > ul > li > a:hover {
  color: #f5f5f5;
}
footer > .s_footer > div > ul > li > a {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  color: #999;
}
footer > .s_footer > div:first-child > h4::after,
footer > .s_footer > div > h3::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--main-eurobs-color);
}
footer > .s_footer > div > h3 > b {
  color: var(--main-bk-color);
  color: var(--main-eurobs-color);
}
footer > .s_footer > div:last-child > div {
  margin: 20px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-content: flex-start;
}
footer > .s_footer > div:last-child > div > ul:last-child {
  display: flex;
  width: auto;
  padding: 0;
  list-style: none;
  align-items: center;
  justify-content: flex-start;
}
footer > .s_footer > div:last-child > div > ul:last-child > li {
  width: 40px;
  display: flex;
  height: 40px;
  font-size: 16px;
  margin-right: 10px;
  border: 1px solid #999;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
footer > .s_footer > div:last-child > div > ul:last-child > li > a {
  color: #999;
  text-decoration: none;
  position: relative;
  width: 100%;
  text-align: center;
  transition: all 0.5s;
}
footer > .s_footer > div:last-child > div > ul:last-child > li:hover {
  color: var(--main-eurobs-color);
  border-color: var(--main-eurobs-color);
  border-radius: 50%;
}
footer > .s_footer > div:last-child > div > ul:first-child > li > i {
  position: relative;
  color: var(--main-eurobs-color);
  margin-right: 10px;
  font-size: 11px;
}
footer > .s_footer > div:last-child > div > ul:first-child {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  padding-left: 0;
}
footer > .s_footer > div:last-child > div > ul:first-child > li > a {
  color: #f5f5f5;
  font-size: 11px;
  margin-left: 10px;
  text-decoration: none;
  transition: all 0.5s;
}
footer > .s_footer > div:last-child > div > ul:first-child > li {
  position: relative;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  margin-bottom: 5px;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}
footer > .s_footer > div:first-child > h4 {
  position: relative;
  color: #f5f5f5;
  font-size: 14px;
  margin: 0;
  letter-spacing: 2px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
footer > .s_footer > div:first-child > p {
  position: relative;
  margin: 0;
  color: #f5f5f5;
  font-size: 12px;
  opacity: 0.7;
}
footer > .s_footer > div:first-child > a {
  display: flex;
  position: relative;
  margin-top: 40px;
  background: var(--main-eurobs-color);
  padding: 10px;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  border-radius: 0.358rem;
  transition: all 0.5s;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
footer > .s_footer > div:first-child > a > i,
form > button > i {
  margin-right: 20px;
  font-weight: 700;
}
footer > .s_footer > div:first-child > a:hover {
  background-color: #f5f5f5;
  color: var(--main-bk-color);
}
footer > .s_footer > div:first-child > div:first-child {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
footer > .s_footer > div:first-child > div:first-child > img {
  position: relative;
  width: 100px;
  height: auto;
  filter: invert(1);
}
footer > .s_copyright {
  background: #17171a;
  float: left;
  height: 60px;
  padding: 20px 40px 20px 20px;
  font-family: Montserrat;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  text-align: left;
  width: 100%;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 17px;
  align-items: center;
  background-color: var(--main--fbk-color);
}
footer > .s_copyright > span > a {
  text-decoration: none;
  color: var(--main-eurobs-color);
}
footer > .s_footer > div > form div input {
  border: none;
  border-bottom: 1px solid #f5f5f5;
  border-radius: 0;
  background: 0 0;
  color: #fff;
  margin: 0;
  padding: 5px 0 10px 0;
  width: 100%;
  font-family: Montserrat;
}
footer > .s_footer > div > form div input::placeholder {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2px;
}
footer > .s_footer > div > form > div {
  display: flex;
  flex: row;
  flex-direction: row;
  align-items: flex-end;
}
footer > .s_footer > div > p {
  position: relative;
  margin: 20px 0;
  color: #f5f5f5;
  font-size: 12px;
  opacity: 0.7;
}
footer > .s_footer > div > form div button {
  position: relative;
  top: 3px;
  margin: 0 15px;
  border: none;
  font-size: 10px;
  background-color: var(--main-eurobs-color);
  color: #fff;
  cursor: pointer;
  transition: all 0.5s;
  padding: 10px;
  border-radius: 0.358rem;
}
footer > .s_footer > div > form div button:hover {
  color: var(--main-bk-color);
  background-color: #f5f5f5;
}
@media screen and (min-width: 100px) and (max-width: 800px) {
  .s_carrousel .s_bloc_content_product a,
  .s_carrousel .s_bloc_content_product span,
  .s_deco_specialiste,
  .s_deskop_menu,
  .s_main_menu a::after,
  .s_no_mobile,
  .s_revendeur_bloc > div:last-child {
    display: none !important;
  }

  html .s_100_h_vh {
    height: auto;
  }

  .s_content .s_board > .s_column_row > .s_simulateur > div .s_contact,
  .s_main_menu ul > li,
  footer > .s_footer,
  .s_board > .s_column_row > .s_simulateur > div {
    flex-direction: column !important;
    list-style-type: none;
  }
  .s_list_catalogue {
    flex-direction: column-reverse;
  }
  .s_main_menu img {
    margin: 0;
  }
  .s_index_content > h1,
  .s_list_catalogue > div:first-child,
  .s_list_catalogue > div:last-child,
  .s_notification,
  .s_revendeur_bloc > div,
  footer > .s_footer > div,
  .s_contact > div,
  .s_column_row > .s_card > .s_simulateur > div > img {
    width: 100%;
  }
  footer > .s_footer > div:first-child > div:first-child {
    margin-top: 20px;
  }
  .s_menu_burger > ul,
  .s_simulateur > div > img {
    padding: 0;
  }
  .s_list_catalogue > div:first-child {
    height: 20vh;
  }
  .s_list_catalogue {
    height: 65vh;
    justify-content: flex-end;
  }
  .s_list_catalogue > div:first-child > ul > li {
    height: 6.55vh;
  }
  .s_list_catalogue > div:last-child,
  footer > .s_footer > div > h3 {
    margin-bottom: 10px;
  }
  .s_revendeur_bloc > div:first-child > div > h4 {
    font-size: 12px;
  }
  footer > .s_footer > div:first-child > h4,
  footer > .s_footer > div:last-child > div {
    margin: 0 0 20px 0;
  }
  form > b > div > input {
    margin-bottom: 5px;
  }
  .s_mobile_menu {
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 90px;
    padding: 5px 5%;
    background-color: var(--main-bk-color);
    position: fixed;
    box-shadow: 0 0 13px 0 rgb(82 63 105 / 5%);
  }
  .s_main_menu img {
    padding: 5px;
  }
  .s_main_menu a,
  .s_main_menu i {
    display: flex;
    color: #f5f5f5;
    align-items: center;
    text-decoration: none;
  }
  .s_mobile_menu i {
    font-size: 31px;
    font-weight: 700;
    color: #fff;
    position: relative;
  }
  .s_menu_burger {
    width: 100%;
    height: 100%;
    right: 0;
    z-index: -1;
    display: none;
    z-index: -1;
    background: var(--main-bk-color);
    position: fixed;
    animation-duration: 1s;
    animation-name: move-nodal;
  }
  .s_menu_burger > ul > li {
    margin-bottom: 10px;
  }
  .s_menu_burger > ul > li > a {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
    list-style-type: none;
    text-decoration: none;
    color: #f5f5f5;
    letter-spacing: 1.5px;
  }
  .s_menu_burger > span {
    opacity: 0;
  }
  .s_menu_burger > span:before {
    opacity: 0;
  }
  .s_menu_burger > ul > li > ul {
    display: flex;
  }
  .s_menu_burger > ul > li > span {
    font-size: 12px;
    color: #f5f5f5;
    opacity: 0.7;
    text-transform: uppercase;
    margin: 5px 0;
    text-decoration: none;
  }
  .s_menu_burger > ul > li > span > a {
    opacity: 0.7;
    letter-spacing: 1.5px;
  }
  .s_menu_burger > ul {
    display: flex;
    margin: 50px 0 50px 5%;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    position: fixed;
  }
}
