/*variable*/ /*couleur du theme*/
/*delay des animations*/
/*breakpoint*/
/*mixin*/
/*base*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
body {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  color: #32a0c5;
}

section {
  margin: 50px 0;
}

#wrapper {
  min-height: 100vh;
}
@media (min-width: 1400px) {
  #wrapper {
    flex-direction: row-reverse;
  }
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

/*components*/
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-height {
  transition: height 500ms ease-in-out;
}

@font-face {
  font-family: "y2k_neophyteregular";
  src: url("../../fonts/y2k_neophyte-webfont.woff2") format("woff2"), url("../../fonts/fontsy2k_neophyte-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "y2k_neophyteitalic";
  src: url("../../fonts/y2k_neophyte_italic-webfont.woff2") format("woff2"), url("../../fonts/y2k_neophyte_italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
html {
  font-size: 16px;
}

p {
  letter-spacing: 0.2px;
  color: #32a0c5;
}

.h1-like,
.h2-like,
.h3-like,
.h4-like,
.h5-like,
.h6-like,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-transform: none;
  color: #48545f;
}

.h1-like,
h1 {
  font-size: 2rem;
}

.h2-like,
h2 {
  font-size: 1.5rem;
}

.h3-like,
h3 {
  font-size: 1.5rem;
}

.h4-like,
h4 {
  font-size: 1.2rem;
}

a,
a.active,
a:active,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
  background-color: transparent;
}

a {
  color: #e97230;
  text-decoration: none;
  outline: 0;
  background-color: transparent;
}
a:hover {
  color: #d9322c;
}

/*waypoints*/
.wp1, .wp5, .wp4, .wp3, .wp2 {
  visibility: hidden;
}

/*delay*/
.delay-0s5 {
  animation-delay: 0.5s;
}

.delay-1s {
  animation-delay: 1s;
}

.delay-1s5 {
  animation-delay: 1.5s;
}

.delay-2s {
  animation-delay: 2s;
}

.fadeInLeft,
.fadeInUp {
  visibility: visible;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#menu-burger-button {
  background-color: #d9322c;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.5s ease, box-shadow 0.5s ease;
}
@media (min-width: 576px) {
  #menu-burger-button {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 992px) {
  #menu-burger-button {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1400px) {
  #menu-burger-button {
    width: fixed;
    left: 280px;
  }
}
#menu-burger-button.inactive {
  left: 0;
}
#menu-burger-button .burger-button > * {
  height: 1.4rem;
  width: 1.4rem;
  background-size: 100% 2px;
  background-image: linear-gradient(#fff, #fff);
}
@media (min-width: 576px) {
  #menu-burger-button .burger-button > * {
    height: 1.8rem;
    width: 1.8rem;
    background-size: 100% 4px;
  }
}
@media (min-width: 992px) {
  #menu-burger-button .burger-button > * {
    height: 2.2rem;
    width: 2.2rem;
  }
}
@media (min-width: 1400px) {
  #menu-burger-button .burger-button > * {
    height: 2.6rem;
    width: 2.6rem;
  }
}
#menu-burger-button .burger-button.is-active > * {
  background-image: none;
}
#menu-burger-button .burger-button > ::after, #menu-burger-button .burger-button > ::before {
  height: 2px;
  background-color: #fff;
}
@media (min-width: 576px) {
  #menu-burger-button .burger-button > ::after, #menu-burger-button .burger-button > ::before {
    height: 4px;
  }
}

.btn {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  padding: 8px 20px;
  transition: all 0.5s;
  text-transform: uppercase;
  color: #e97230;
  border: 2px solid #e97230;
  background-color: transparent;
  border-radius: 5px;
}
.btn:hover {
  color: #fff;
  background-color: #e97230;
}

.list-style-circle {
  list-style: circle;
}

#contact-form {
  background-color: #f0f0f0;
  padding-bottom: 50px;
}
#contact-form .form-control {
  font-size: 1em;
  width: 100%;
  height: 2em;
  border: 1px solid #e97230;
  border-radius: 3px;
  box-shadow: none;
}
@media (min-width: 576px) {
  #contact-form .form-control {
    height: 3em;
  }
}
@media (min-width: 992px) {
  #contact-form .form-control {
    height: 4em;
  }
}
@media (min-width: 1400px) {
  #contact-form .form-control {
    height: 5em;
  }
}
#contact-form textarea.form-control {
  width: 100%;
  height: 8em;
}
@media (min-width: 576px) {
  #contact-form textarea.form-control {
    height: 10em;
  }
}
@media (min-width: 992px) {
  #contact-form textarea.form-control {
    height: 12em;
  }
}
@media (min-width: 1400px) {
  #contact-form textarea.form-control {
    height: 14em;
  }
}

#map {
  padding-top: 1rem;
  height: 100%;
}
#map iframe {
  height: 96%;
}

#success {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  display: flex;
  visibility: hidden;
  min-width: 100%;
  min-height: 100%;
  background-color: rgba(252, 252, 252, 0.631372549);
}
#success .alert {
  font-size: 1.6em;
  margin: auto;
  padding: 20px;
  border: 1px solid #c9121d;
  border-radius: 5px;
  background-color: #fff;
}
#success .alert-success {
  color: #c9121d;
}
#success .alert-danger {
  color: #9f1e11;
}
#success.visible {
  visibility: visible;
}
#success .close {
  margin-right: 20px;
  border: 1px solid;
  border-radius: 5px;
  background-color: #fff;
}
#success .close:hover {
  color: #fff;
  border-radius: 5px;
}
#success .alert-danger .close:hover {
  background-color: #9f1e11;
}
#success .alert-success .close:hover {
  background-color: #c9121d;
}

#login,
#reset-password {
  text-align: center;
  margin-bottom: 50px;
}
#login .wrapper-input,
#reset-password .wrapper-input {
  width: 300px;
  margin-right: auto;
  margin-left: auto;
}
#login .wrapper-input > div > span,
#reset-password .wrapper-input > div > span {
  position: relative;
}
#login .wrapper-input > div > span > ion-icon,
#reset-password .wrapper-input > div > span > ion-icon {
  position: absolute;
  top: 20%;
  right: 10px;
}
#login .wrapper-input .box-input,
#reset-password .wrapper-input .box-input {
  font-size: 1em;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 2em;
  border: 2px solid #e97230;
  border-radius: 3px;
  box-shadow: none;
  position: relative;
}
#login .button-login,
#login .button-reset,
#reset-password .button-login,
#reset-password .button-reset {
  border: 1px solid #e97230;
  border-radius: 15px;
  margin-top: 30px;
  padding: 0 15px;
  cursor: pointer;
}
#login .button-login:hover,
#login .button-reset:hover,
#reset-password .button-login:hover,
#reset-password .button-reset:hover {
  background-color: #e97230;
  color: #fff;
}

ion-icon.md.hydrated {
  text-align: center;
  vertical-align: middle;
}

.message-password {
  font-size: 12px;
}
.message-password span.invalide p {
  color: #000;
}
.message-password span:not(.invalide) p {
  color: #469f11;
}
.message-password ion-icon {
  color: #469f11;
}

.wrapper-result {
  display: flex;
  flex-direction: column-reverse;
  padding-bottom: 50px;
  color: #d9322c;
}

#sidebar {
  width: 300px;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  height: 100%;
  box-shadow: 0 0 5em 0 rgba(0, 0, 0, 0.175);
  transition: margin-left 0.5s ease, box-shadow 0.5s ease;
  background-color: #d9322c;
}
@media (min-width: 1400px) {
  #sidebar {
    position: relative;
    height: auto;
    width: 380px;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
#sidebar.inactive {
  margin-left: -300px;
}
@media (min-width: 1400px) {
  #sidebar.inactive {
    margin-left: -380px;
  }
}
#sidebar > .inner {
  position: absolute;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  width: 300px;
  padding: 0 20px 0 10px;
}
@media (min-width: 1400px) {
  #sidebar > .inner {
    position: relative;
    width: 380px;
    height: auto;
    padding: 0 50px;
    overflow-x: hidden;
    overflow-y: none;
  }
}
#sidebar a {
  color: #e97230;
}
#sidebar a:hover {
  color: #32a0c5;
}

#menu {
  margin-top: 50px;
}
@media (min-width: 576px) {
  #menu {
    margin-top: 80px;
  }
}
@media (min-width: 992px) {
  #menu {
    margin-top: 100px;
  }
}
#menu ul a,
#menu ul span {
  font-size: 15px;
  font-weight: 300;
  display: block;
  padding: 15px 0;
  cursor: pointer;
  color: #fff;
  border-bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#menu ul li ul a,
#menu ul li ul span {
  padding: 10px 0;
}
#menu ul a:hover,
#menu ul span:hover {
  color: #32a0c5;
}
#menu ul a.opener,
#menu ul span.opener {
  position: relative;
  transition: color 0.5s ease-in-out;
  text-decoration: none;
}
#menu ul .opener:before {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  transform: rotate(135deg);
  vertical-align: middle;
  width: 14px;
  height: 14px;
}
#menu ul a.opener:hover:before,
#menu ul span.opener:hover:before {
  color: #32a0c5;
}
#menu ul a.opener.active + ul,
#menu ul span.opener.active + ul {
  display: block;
}
#menu ul a.opener.active:before,
#menu ul span.opener.active:before {
  transform: rotate(-45deg);
}
#menu > ul > li {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  border-top: solid 1px #1a1b20;
}
#menu > ul > li > ul {
  display: none;
  margin: 0.5em 0 1.5em;
  padding-left: 1em;
  color: #9fa3a6;
}
#menu > ul > li > ul a, #menu > ul > li > ul span {
  font-size: 13px;
}
#menu > ul > li > ul > li {
  margin: 0.125em 0 0;
  padding: 0.125em 0 0;
}
#menu > ul > li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.featured-posts {
  position: relative;
  margin-top: 10px;
  margin-right: -10px;
  margin-left: -5px;
  padding: 25px;
  background-color: rgba(0, 0, 0, 0.2901960784);
}
@media (min-width: 1400px) {
  .featured-posts {
    margin-right: -30px !important;
    margin-left: -30px !important;
    padding: 30px !important;
  }
}
.featured-posts .heading h2 {
  font-size: 19px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  color: #fff;
  border-bottom: 1px solid #2d2e39;
}
.featured-posts p {
  margin-top: 20px;
  color: #fff;
}

.owl-carousel .owl-dots {
  position: absolute;
  top: -55px;
  right: 0;
}
.owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  margin-left: 5px;
  outline: 0;
  background-color: #e97230 !important;
}
.owl-carousel button.active {
  background-color: #32a0c5 !important;
}

/*!
/*coollink*/
.cool-link::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: #32a0c5;
  transition: width 0.3s;
}
.cool-link:hover::after {
  width: 100%;
}
.cool-link.active::after {
  width: 100%;
  content: "";
  display: block;
  height: 4px;
  background: #32a0c5;
}

#info-section {
  border-bottom: 1px solid #dddddd;
}

.download:hover {
  color: #dddddd;
  cursor: pointer;
}

#cookie-alert {
  display: none;
  position: fixed;
  bottom: 10px;
  background-color: #fff;
  min-height: 150px;
  max-width: 500px;
  border-radius: 5px;
  right: 10px;
  padding: 10px;
  box-shadow: 5px 5px 27px 13px rgba(0, 0, 0, 0.16);
  margin-left: 10px;
}
#cookie-alert .wrapper-cookies-alert {
  border-radius: 5px;
  padding: 20px;
}
#cookie-alert span {
  margin-bottom: 20px;
}

/*sections*/
#header .container-logo {
  justify-content: flex-start;
  background-color: rgba(83, 91, 160, 0.0509803922);
}
@media (min-width: 576px) {
  #header .container-logo {
    justify-content: flex-end;
    height: 80px;
  }
}
@media (min-width: 992px) {
  #header .container-logo {
    height: 100px;
  }
}
#header .wrapper-logo {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}
@media (min-width: 576px) {
  #header .wrapper-logo {
    flex-direction: row;
  }
}
#header .logo-img {
  width: 10vw;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
@media (min-width: 576px) {
  #header .logo-img {
    width: 70px;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  #header .logo-img {
    width: 90px;
  }
}
#header .logo-img .man1 {
  fill: #d9322c;
}
#header .logo-img .man2 {
  fill: #e97230;
}
#header .logo-img .man3 {
  fill: #32a0c5;
}
#header .logo-img .man4 {
  fill: #fbc733;
}
#header .logo-text {
  margin-right: auto;
  margin-left: auto;
  width: 30vw;
  fill: #32a0c5;
}
@media (min-width: 576px) {
  #header .logo-text {
    width: 240px;
  }
}
@media (min-width: 992px) {
  #header .logo-text {
    width: 300px;
  }
}

.btn-login {
  margin-top: 15px;
  margin-right: 15px;
  justify-content: end;
  display: grid;
}
.btn-login span.text-login {
  display: none;
}
@media (min-width: 576px) {
  .btn-login span.text-login {
    display: inline-block;
  }
}
.btn-login .wrapper-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #e97230;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  /*     .nav_show .perso-page {
        height: 40px;
        opacity: 1;
        transform: translateY(0);
      }
   */
}
.btn-login .wrapper-btn:hover {
  border-color: #d9322c;
}
.btn-login .wrapper-btn a {
  font-size: 1rem;
}
@media (min-width: 576px) {
  .btn-login .wrapper-btn {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 8px;
  }
}
.btn-login .wrapper-btn .wrapper-dropdown-menu {
  position: relative;
  display: inline-flex;
}
.btn-login .wrapper-btn .dropdown-menu {
  position: absolute;
  top: 30px;
  right: -10%;
  z-index: 1000;
  float: left;
  padding: 5px 0;
  margin: 0;
  font-size: 12px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
  height: 0;
}
.btn-login .wrapper-btn .dropdown-menu.nav_show {
  height: auto;
  opacity: 1;
  transform: translateY(0);
  /*         &.perso-page {
            height: 45px;
            opacity: 1;
            transform: translateY(0);
          }
   */
}
.btn-login .wrapper-btn .dropdown-menu .dropdown-item {
  font-size: 1rem;
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.btn-login .wrapper-btn .dropdown-link {
  position: relative;
  display: block;
}
.btn-login .wrapper-dropdown-menu span:first-child,
.btn-login a span:first-child {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .btn-login .wrapper-dropdown-menu span:first-child,
  .btn-login a span:first-child {
    margin-right: 10px;
  }
}

#banner {
  margin: 50px 0;
}
#banner .banner-content {
  background-repeat: no-repeat;
  background-size: cover;
  height: 150px;
  min-height: 100%;
  background-position: 95% 50%;
}
@media (min-width: 576px) {
  #banner .banner-content {
    height: 280px;
  }
}
@media (min-width: 992px) {
  #banner .banner-content {
    height: 320px;
  }
}
#banner .banner-content.accueil {
  background-image: url("../../img/header_ps_bg1.jpg");
}
#banner .banner-content.aide {
  background-image: url("../../img/assistance.jpg");
}
#banner .banner-content.entretien {
  background-image: url("../../img/entretien1.jpeg");
}
#banner .banner-content.garde {
  background-image: url("../../img/garde.jpg");
}
#banner .banner-content.bienvenue {
  background-image: url("../../img/bienvenue.jpg");
}
#banner .banner-content.quisommes {
  background-image: url("../../img/qui-sommes.jpg");
  background-position-y: 10%;
}
#banner .banner-content.tarif {
  background-image: url("../../img/tarif.jpg");
  background-position: 95% 30%;
}
#banner .banner-content.garantie {
  background-image: url("../../img/confiance.jpg");
}
#banner .banner-content.partenaire {
  background-image: url("../../img/partenaire.jpeg");
  background-position: 95% 40%;
}
#banner .banner-caption {
  max-width: 520px;
  margin: 20px;
  padding: 20px 30px;
  background-color: rgba(94, 94, 94, 0.5);
  height: -moz-fit-content;
  height: fit-content;
}
#banner .banner-caption h1 {
  font-family: "y2k_neophyteregular", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.25px;
  color: #f7f7f7;
  text-transform: none;
}
@media (min-width: 576px) {
  #banner .banner-caption h1 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  #banner .banner-caption h1 {
    font-size: 2.2rem;
  }
}

#services {
  margin-bottom: 100px;
}
#services .service-item {
  height: 100%;
  margin-bottom: 3px;
  padding: 50px;
  transition: all 0.5s;
  text-align: center;
  background-color: #eaebef;
}
#services .service-item:hover {
  background-color: #e97230;
}
@media (min-width: 576px) {
  #services .service-item:last-child {
    margin-left: 24.6vw;
    margin-right: 24.6vw;
  }
}
@media (min-width: 992px) {
  #services .service-item:last-child {
    margin-left: 0;
    margin-right: 0;
  }
}
#services .service-item h3 {
  margin-bottom: 20px;
  transition: all 0.5s;
  color: #31323a;
}
#services .service-item p {
  margin-bottom: 0;
  transition: all 0.5s;
}
#services .service-item:hover h3,
#services .service-item:hover p {
  color: #fff;
}

#avantage .list-avantage {
  list-style: none;
  width: 600px;
  max-width: 90%;
}
#avantage .item {
  display: block;
  clear: both;
  counter-increment: list;
  padding-bottom: 4rem;
  font-size: 1.1rem;
  line-height: 1.375;
  position: relative;
}
#avantage .item::before {
  font: bold 2.25rem/1 Montserrat, Roboto, Helvetica, Arial, sans-serif;
  content: counter(list);
  width: 5rem;
  height: 5rem;
  float: left;
  margin: 0 1.5rem 0.75rem 0;
  color: #fdfdfd;
  background: #e97230 linear-gradient(to bottom right, #e97230 25%, #fbc733);
  text-shadow: 0 0 2px #e97230;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  shape-outside: ellipse();
  z-index: 1;
}
#avantage .item::after {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #e97230;
  z-index: -1;
  border-top-left-radius: 3px;
}

#transition {
  display: flex;
  background-repeat: no-repeat;
  height: 350px;
  background-image: url("../../img/proxim1.jpg");
  background-attachment: fixed;
  background-size: cover;
}
#transition .tel-me {
  padding: 20px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.3);
}
#transition .tel-me p {
  font-size: 35px;
  color: #fff;
}
@media (min-width: 992px) {
  #transition .tel-me p {
    font-size: 60px;
  }
}

.partenaire .table-partenaire {
  border-collapse: collapse;
  border: 2px solid #c8c8c8;
  letter-spacing: 1px;
  font-family: sans-serif;
  font-size: 0.8rem;
}
.partenaire .table-partenaire td {
  border: 1px solid #bebebe;
  padding: 5px 10px;
}

#copyright {
  background-color: rgba(0, 0, 0, 0.2901960784);
  color: #fff;
  margin-bottom: 0;
  line-height: 3rem;
}

#footer {
  color: #fff;
}
#footer .footer_liste-container {
  margin-top: 20px;
}
#footer .footer_liste-container ul li span:first-child {
  margin-right: 10px;
}

#grid-container .download > * {
  cursor: pointer;
}
#grid-container .dx-datagrid-search-text {
  background-color: #32a0c5;
}/*# sourceMappingURL=proxim.css.map */