@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
/*
@import url('https://use.typekit.net/xig8kmx.css');
*/
@font-face {
  font-family: "coolveticacondensed_regular";
  src: url("../fonts/coolvetica_condensed_rg-webfont.woff2") format("woff2"), url("../fonts/coolvetica_condensed_rg-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "coolveticacrammed_regular";
  src: url("../fonts/coolvetica_crammed_rg-webfont.woff2") format("woff2"), url("../fonts/coolvetica_crammed_rg-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "coolveticaregular_italic";
  src: url("../fonts/coolvetica_rg_it-webfont.woff2") format("woff2"), url("../fonts/coolvetica_rg_it-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "coolveticaregular";
  src: url("../fonts/coolvetica_rg-webfont.woff2") format("woff2"), url("../fonts/coolvetica_rg-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "coolveticacompressed_heavy";
  src: url("../fonts/coolvetica_compressed_hv-webfont.woff2") format("woff2"), url("../fonts/coolvetica_compressed_hv-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*  Vars from project */
/* $myvar:myval; */
/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
  /* this ensures that a constrained height set by functionPosition,
  if greater that the natural height of the tooltip, will be enforced
  in browsers that support display:flex */
  display: flex;
  pointer-events: none;
  /* this may be overriden in JS for fixed position origins */
  position: absolute;
}

.tooltipster-box {
  /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
  and flex-basis auto for IE11- (at least) */
  flex: 1 1 auto;
}

.tooltipster-content {
  /* prevents an overflow if the user adds padding to the div */
  box-sizing: border-box;
  /* these make sure we'll be able to detect any overflow */
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
}

.tooltipster-ruler {
  /* these let us test the size of the tooltip without overflowing the window */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}

/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
  opacity: 1;
}

/* grow */
.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* swing */
.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

/* fall */
.tooltipster-fall {
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
  top: 0 !important;
}

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0 !important;
  opacity: 0;
}

/* slide */
.tooltipster-slide {
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
  left: -40px !important;
}

.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0 !important;
  opacity: 0;
}

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tooltipster-update-fade {
  animation: tooltipster-fading 400ms;
}

/* rotate */
@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.tooltipster-update-rotate {
  animation: tooltipster-rotating 600ms;
}

/* scale */
@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.tooltipster-update-scale {
  animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
  background: #0f8bff;
  border: 2px solid #002b48;
  border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px;
}

/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
  color: white;
  line-height: 18px;
  padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  /* half the width, for centering */
  margin-left: -10px;
  top: 0;
  width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
  been positioned yet */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  /* same as .tooltipster-left .tooltipster-arrow */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}

/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #0f8bff;
  left: 0;
  top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #0f8bff;
  left: -3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #0f8bff;
  left: 3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #0f8bff;
  left: 0;
  top: -3px;
}

/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #002b48;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #002b48;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #002b48;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #002b48;
}

/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #002b48;
}

.fontxl {
  font-size: 17px;
}

.fontxs {
  font-size: 10px;
}

.rotate {
  transform: rotate(-90deg);
}

.blueBtn {
  height: 50px;
  border-radius: 12px;
  background: #0f8bff;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.9px;
  line-height: 50px;
  padding: 0 25px;
  text-decoration: none;
  display: inline-block;
  border: none;
}
.blueBtn:hover {
  color: #002b48;
}
.blueBtn.dark {
  background: #002b48;
}
.blueBtn.dark:hover {
  color: #0f8bff;
}
.blueBtn.light {
  background: #fff;
  color: #002b48;
  border: 1px solid #002b48;
}
.blueBtn.light:hover {
  color: #0f8bff;
}
.blueBtn[disabled=true] {
  opacity: 0.5;
}
.blueBtn[disabled=true]:hover {
  color: #fff;
}

.whiteBtn {
  height: 50px;
  border-radius: 12px;
  background: #fff;
  color: #002b48;
  font-size: 16px;
  letter-spacing: 0.9px;
  line-height: 50px;
  padding: 0 40px 0 25px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  background: url("../images/flechebtn.png") 90% center no-repeat #fff;
}
.whiteBtn:hover {
  color: #0f8bff;
}

.btnTop {
  text-indent: -5000px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: url("../images/flecheh.png") center center no-repeat #0f8bff;
}

.mobile {
  display: none !important;
}

.contentblock {
  max-width: 1440px;
  margin: 0 auto;
}

.stickyleft {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  line-height: 15px;
}
.stickyleft a {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
.stickyleft a span {
  display: none;
}

.stdfontsizeplus {
  font-size: 15px;
}

.xlfontsize {
  font-size: 17px;
}

.xlfontsizemenu {
  font-size: 18px;
}

section h2 {
  color: #0f8bff;
  font-family: "coolveticaregular", sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
  letter-spacing: 2.4px;
}
section h2 span {
  color: #002b48;
}
section#bandeau {
  position: relative;
  height: 400px;
}
section#bandeau .descbandeau {
  margin-left: 80px;
  margin-top: 10px;
}
section#bandeau .descbandeau span {
  margin-bottom: 20px;
}
section#bandeau .promo, section#bandeaulight .promo {
  width: 100%;
  bottom: 0px;
  left: 0px;
  position: absolute;
  font-size: 18px;
  text-align: center;
  color: #002b48;
  font-weight: 500;
  line-height: 33px;
  z-index: 1;
}
section#bandeau .promo.active, section#bandeaulight .promo.active {
  background: rgba(135, 255, 148, 0.6666666667);
}
section#bandeau .promo .roundbottom, section#bandeaulight .promo .roundbottom {
  background: #fff;
  width: 100%;
  height: 60px;
  z-index: 1;
}
section#bandeau .promo .roundbottom .backBtn, section#bandeaulight .promo .roundbottom .backBtn {
  width: 90px;
  height: 30px;
  position: absolute;
  left: 0px;
  bottom: 30px;
  text-decoration: none;
  color: #002b48;
  font-size: 13px;
  font-weight: 600;
  line-height: 30px;
  
  background: url("../images/flechebtng.png") 10px center no-repeat #87ff94;
  padding-left: 20px;
  margin-left: 80px;
}
section .breadcrumb {
  color: #fff;
  font-size: 11px;
  margin-left: 80px;
  padding-top: 15px;
}
section .breadcrumb a {
  display: inline-block;
  color: #fff;
  padding-right: 5px;
  padding-left: 5px;
}
section#bandeaulight {
  background-color: #002b48;
  height: 188px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
section#bandeaulight .breadcrumb {
  position: relative;
  z-index: 1;
}
section#bandeaulight h1 {
  font-size: 62px;
  color: #fff;
  width: 100%;
  text-align: center;
  z-index: 1;
  position: relative;
  line-height: 65px;
}
section#bandeaulight .circle1, section#bandeaulight .circle2 {
  opacity: 0.71;
  position: absolute;
  background: linear-gradient(180deg, rgba(188, 255, 198, 0.76) 0%, #87ff94 100%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
section#bandeaulight .circle1 {
  left: -120px;
  top: -150px;
  width: 576px;
  height: 576px;
}
section#bandeaulight .circle2 {
  left: 300px;
  top: 40px;
  width: 288px;
  height: 288px;
}

.descbandeau, .descbandeau h1 {
  color: #fbfbfb;
  font-family: "coolveticaregular", sans-serif;
  letter-spacing: 3px;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 1.8px;
}
.descbandeau span, .descbandeau h1 span {
  font-size: 62px;
  display: inline-block;
  background: #002b48;
  padding: 0 5px;
  font-size: 62px;
  font-weight: 400;
  line-height: 65px;
  letter-spacing: 3px;
}
.descbandeau .col-lg-6, .descbandeau h1 .col-lg-6 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 20px;
  width: auto !important;
  height: 38px !important;
  border-radius: 8px;
  line-height: 38px;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #002b48;
  margin: 0 9px !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  width: 27px;
  height: 27px;
  border: 9px solid #90C4F7;
  margin: 0;
}

.navigation {
  position: absolute;
  left: 0px;
  top: 40px;
  width: 100%;
  height: 100px;
}
.navigation .swiper-button-prev, .navigation .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 25px;
}
.navigation .swiper-button-prev:after, .navigation .swiper-button-next:after {
  content: "";
}
.navigation .swiper-button-prev {
  left: 0px;
  background: url("../images/flecheg.png") center center no-repeat #0f8bff;
}
.navigation .swiper-button-next {
  background: url("../images/fleched.png") center center no-repeat #0f8bff;
}

.navigation .swiper-navigation-icon {
  height: 0px !important;
}

.accordeon {
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #b5d2f4;
  margin-bottom: 20px;
}
.accordeon a {
  text-decoration: none;
  color: #002b48;
  display: block;
  font-size: 22px;
  background: url("../images/deploy.png") center right no-repeat;
  padding-right: 40px;
  line-height: 36px;
  min-height: 36px;
}
.accordeon .desc {
  max-height: 0px;
  overflow: hidden;
  font-size: 15px;
  padding-top: 5px;
  transition: max-height 1s ease-in-out;
}
.accordeon.active a {
  background-image: url("../images/deploy2.png");
}
.accordeon.active .desc {
  max-height: 500px;
  transition: max-height 1s ease-in-out;
}

.visuel img {
  width: 100%;
}

.blockoverflow {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

section#blogarticlelist .swiper-wrapper .swiper-slide, section#listarticles .bloglistarticle .article {
  border: 1px solid #0f8bff;
  border-radius: 20px;
}
section#blogarticlelist .swiper-wrapper .swiper-slide img, section#listarticles .bloglistarticle .article img {
  width: 100%;
}
section#blogarticlelist .swiper-wrapper .swiper-slide .text, section#listarticles .bloglistarticle .article .text {
  padding: 20px;
}
section#blogarticlelist .swiper-wrapper .swiper-slide .text b, section#listarticles .bloglistarticle .article .text b {
  margin-top: 5px;
  margin-bottom: 5px;
  display: block;
}
section#blogarticlelist .swiper-wrapper .swiper-slide .text a, section#listarticles .bloglistarticle .article .text a {
  color: #002b48;
}

.rub {
  font-size: 11px;
  font-weight: 600;
  line-height: 13px;
  text-transform: uppercase;
  color: #fff;
  background: #0f8bff;
  padding: 4px 6px 4px 6px;
}

.clear {
  clear: both;
}

select, input, textarea {
  width: 100%;
  color: #002b48;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  padding: 15px;
  border: 1px solid #0f8bff;
  border-radius: 10px;
}
select::placeholder, input::placeholder, textarea::placeholder {
  color: #0f8bff !important; /* TODO : Supprimer le important une fois les css du site originel enlevée */
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  width: 30px;
  height: 30px;
  border: 1px solid #0f8bff;
  background: #fff;
}
input[type=checkbox]:checked {
  background: #0f8bff;
  margin: 0px;
  position: relative;
  margin-right: 10px;
}
input[type=checkbox]:checked:before {
  font-family: FontAwesome;
  content: "\f00c";
  display: block;
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 4px;
  left: 0px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* The switch - the box around the slider */
.switchtoogle {
  text-align: center;
  color: #002b48;
  font-size: 17px;
  font-weight: 600;
  line-height: 23px;
  padding: 15px;
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}
.switchtoogle .switch {
  position: relative;
  display: inline-block;
  width: 76px;
  height: 46px;
  margin-right: 15px;
  margin-left: 15px;
}
.switchtoogle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switchtoogle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switchtoogle .slider:before {
  position: absolute;
  content: "";
  height: 38px;
  width: 38px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switchtoogle input:checked + .slider {
  background-color: #0f8bff;
}
.switchtoogle input:focus + .slider {
  box-shadow: 0 0 1px #0f8bff;
}
.switchtoogle input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.switchtoogle .slider.round {
  border-radius: 46px;
}
.switchtoogle .slider.round:before {
  border-radius: 50%;
}

/* The switch - the box around the slider */
.switchtooglelight {
  text-align: center;
  color: #002b48;
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  padding: 1px;
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}
.switchtooglelight .switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 20px;
  margin-right: 15px;
  margin-left: 15px;
}
.switchtooglelight .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switchtooglelight .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 10px;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switchtooglelight .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switchtooglelight input:checked + .slider {
  background-color: #0f8bff;
  font-weight: 200;
}
.switchtooglelight input:focus + .slider {
  box-shadow: 0 0 1px #0f8bff;
  font-weight: 200;
}
.switchtooglelight input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.switchtooglelight .slider.round {
  border-radius: 46px;
}
.switchtooglelight .slider.round:before {
  border-radius: 50%;
}

input[type=date]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background: url(../images/datepicker.png) no-repeat;
  width: 20px;
  height: 20px;
  border-width: thin;
}
.ui-datepicker-header{
  background: #0F8BFF !important;
}


/* .ui-datepicker-prev.ui-state-hover.ui-datepicker-prev-hover {
    background-image: url(images/ui-icons_2e83ff_256x240.png) !important;
}
.ui-datepicker-next.ui-state-hover.ui-datepicker-next-hover {
  background-image: url(images/ui-icons_2e83ff_256x240.png) !important;
} */
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
  background-image: url(images/ui-icons_2e83ff_256x240.png)!important;
}
.tooltipster {
  width: 17px;
  height: 17px;
  background: #002b48;
  display: inline-block;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 17px;
  border-radius: 50%;
}

.tooltipster-bleu .tooltipster-content {
  background: #0f8bff;
  border-color: #0f8bff;
}

.compteur {
  text-align: center;
}
.compteur a {
  display: inline-block;
  background: #0f8bff;
  height: 46px;
  width: 46px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 46px;
  font-size: 30px;
  border-radius: 50%;
}
.compteur input {
  border: none;
  width: 80px;
  text-align: center;
  font-size: 29px;
  font-weight: 600;
}
.compteur input:focus {
  outline: none;
}

.gauche {
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top-left-radius: 28px;
  border-bottom-right-radius: 28px;
  border: 1px solid #0f8bff;
  margin: 0 15px 15px 0;
  text-align: center;
}

.droite {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 80%;
  height: 80%;
  background: rgba(27, 83, 150, 0.25);
  border-bottom-right-radius: 28px;
}

.mainimg {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.nobg {
  background-image: none !important;
}

.textestyle ul li {
  list-style: none;
  list-style-image: url("../images/check.svg");
}

.bleubg {
  background: linear-gradient(180deg, #ffffff 0%, #ecf8ff 100%);
}

a.back {
  background: url("../images/flecheg.png") center center no-repeat #0f8bff;
  border-radius: 50%;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: block;
  position: relative;
}
a.back:after {
  content: "Retour";
  left: 60px;
  top: 0px;
  position: absolute;
  line-height: 50px;
  color: #002b48;
  text-transform: uppercase;
}

@media screen and (max-width: 980px) {
  .mobile {
    display: block !important;
  }
  .stickyleft {
    position: fixed;
    bottom: 0px;
    width: 100%;
    top: auto;
    left: auto;
    transform: none;
    background: #002b48;
  }
  .stickyleft a {
    display: inline-block;
    width: 50%;
    float: left;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
  }
  .stickyleft a:first-child {
    border-right: 1px solid #87ff94;
  }
  .stickyleft a span {
    display: inline-block;
    margin-right: 15px;
  }
  .desktop {
    display: none !important;
  }
  section h2 {
    font-size: 34px;
    line-height: 34px;
    letter-spacing: 1.7px;
  }
  section#bandeau {
    height: 450px;
  }
  section#bandeau .descbandeau {
    padding-left: 12px !important;
    margin-left: 0px !important;
    margin-right: 0px;
    font-size: 39px;
    margin-top: 2em !important;
    display: inline-block !important;
    padding-top: 0 !important;
    transform: translateY(-30%);
  }
  section#bandeau .descbandeau h1 {
    font-size: 28px;
    letter-spacing: 1.07px;
    line-height: 29px;
  }
  section#bandeau .descbandeau h1 span {
    font-size: 39px;
    letter-spacing: 1.95px;
    line-height: 40px;
  }
  section#bandeau .descbandeau .rightbloc {
    justify-content: start;
  }
  section .breadcrumb {
    display: none;
  }
  section#bandeaulight {
    height: auto;
  }
  section#bandeaulight .descbandeau {
    margin-bottom: 88px;
  }
  section#bandeaulight h1 {
    font-size: 39px;
    line-height: 40px;
    margin-top: 25px;
  }
  section#bandeaulight .circle1 {
    left: -170px;
    top: -20px;
    width: 288px;
    height: 288px;
  }
  section#bandeaulight .circle2 {
    left: 40px;
    top: 75px;
    width: 144px;
    height: 144px;
  }
  section#bandeau .promo .roundbottom .backBtn, section#bandeaulight .promo .roundbottom .backBtn {
    margin-left: 12px;
  }
  section#produittexte .col-lg-6.textestyle {
    padding-top: 0;
  }
  .visuel {
    text-align: center;
  }
  .visuel img {
    width: 50%;
  }
  .accordeon a {
    line-height: 22px;
  }
  .mainimg {
    margin-bottom: 0px;
  }
  /* The switch - the box around the slider */
  .switchtooglelight {
    text-align: center;
    color: #002b48;
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
  }
  .switchtooglelight .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 15px;
    margin-right: 5px;
    margin-left: 5px;
  }
  .switchtooglelight .slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 1px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}
header .subheader {
  background: #0f8bff;
  width: 100%;
}
header .subheader ul {
  margin: 0;
}
header .subheader ul li {
  list-style: none;
  float: right;
  margin: 0 20px;
  height: 53px;
  display: flex;
  align-items: center;
  position: relative;
}
header .subheader ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
header .subheader ul li a.fontxl {
  line-height: 22px;
}
header .subheader ul li a.fontxs {
  line-height: 10px;
}
header .subheader ul li:hover div.submenu {
  display: block;
}
header .subheader ul li:hover .chevron {
  rotate: -180deg;
}
header .subheader ul li div.submenu {
  position: absolute;
  background: #002b48;
  color: white;
  width: 200px;
  right: -32px;
  top: 53px;
  display: none;
}
header .subheader ul li div.submenu ul {
  margin: 10px 0px 10px 0px;
  padding: 0;
  text-align: center;
}
header .subheader ul li div.submenu ul li {
  float: none;
  display: block;
  line-height: 30px;
  height: auto;
}
header .subheader ul li div.submenu ul li a {
  color: #fff;
}
header nav {
  transition: all 0.2s ease-in;
  background: #fff;
  width: 100%;
}
header nav.sticky {
  position: fixed;
  top: 0px;
  z-index: 1000;
  transition: all 0.2s ease-in;
}
header nav ul {
  margin: 0;
  padding: 0;
}
header nav ul li {
  list-style: none;
  float: left;
  height: 65px;
  display: flex;
  align-items: center;
  font-family: "coolveticaregular", sans-serif;
  margin: 0px 28px 0px 28px;
}
header nav ul li:not(:first-child):not(:last-child) a {
  color: #002b48;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 1.1px;
  padding: 30px 0 14px 0;
  display: block;
  border-bottom: 7px solid transparent;
}
header nav ul li:not(:first-child):not(:last-child) a:hover {
  color: #0f8bff !important;
  border-bottom: 7px solid #0f8bff;
  z-index: 100;
}
header nav ul li:last-child {
  float: right;
  margin: 7px 0px 0px 28px;
}
header nav ul li:first-child {
  margin: 7px 28px 0px 0px;
}
header nav ul li:not(:first-child):not(:last-child):hover div {
  display: block;
}
header nav ul li div {
  position: absolute;
  background: #002b48;
  color: white;
  width: 100%;
  left: 0px;
  top: 118px;
  z-index: 2;
  display: none;
}
header nav ul li div ul {
  width: fit-content;
  margin: 0 auto;
  padding: 0;
}
header nav ul li div ul li {
  height: 76px;
}
header nav ul li div ul li a {
  color: #fff !important;
  letter-spacing: 1px;
}
header nav ul li div ul li:hover {
  border-bottom-color: #0f8bff !important;
}
header nav ul li div ul li:last-child {
  float: right;
  margin: 7px 0px 0px 25px;
}
header nav ul li div ul li:first-child {
  margin: 7px 25px 0px 0px;
}
header nav ul li div ul li:not(:first-child):not(:last-child) {
  margin: 7px 25px 0px 25px;
}
header .mobilemenu {
  position: fixed;
  top: -400%;
  width: 100%;
  background-color: #002b48;
  overflow-y: auto;
  height: 100vh;
  transition: top 0.3s ease-in;
}
header .mobilemenu.active {
  top: 0px;
  transition: top 0.3s ease-in;
}
header .mobilemenu ul {
  margin: 0;
  padding: 0;
}
header .mobilemenu ul li {
  line-height: 70px;
  list-style: none;
  font-family: "coolveticaregular", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 0 20px 0 20px;
}
header .mobilemenu ul li a {
  color: white;
  text-decoration: none;
}
header .mobilemenu ul li:first-child {
  text-align: right;
}
header .mobilemenu ul li.lightcolor {
  background-color: #fff;
  font-size: 22px;
  letter-spacing: 1.3px;
}
header .mobilemenu ul li.lightcolor a {
  color: #002b48;
  display: block;
  background: url("../images/updown02.svg") center right no-repeat;
}
header .mobilemenu ul li.bluecolor {
  background-color: #0f8bff;
  font-size: 22px;
  letter-spacing: 1.3px;
  border-bottom: 1px solid #002b48;
}
header .mobilemenu ul li.bluecolor a {
  display: block;
  background: url("../images/updown01.svg") center right no-repeat;
}

@media screen and (max-width: 980px) {
  .subheader {
    display: none;
  }
  nav ul li:not(:first-child):not(:last-child) {
    display: none;
  }
  nav ul li:first-child {
    margin-right: 5px !important;
  }
  nav ul li:first-child img {
    width: 160px;
  }
  nav ul li:last-child {
    margin-left: 5px !important;
  }
  nav ul li:last-child .mobile {
    margin-left: 5px;
  }
}
footer section {
  padding-top: 30px;
  padding-bottom: 30px;
}
footer section#infosfooter {
  background: #002b48;
  color: #fff;
  font-size: 15px;
  line-height: 23px;
}
footer section#infosfooter .col-lg-4 {
  padding: 20px;
}
footer section#infosfooter .col-lg-4 img {
  margin-bottom: 10px;
}
footer section#infosfooter .col-lg-4 img:last-child {
  margin-top: 10px;
}
footer section#infosfooter .col-lg-4 a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 7px 0 7px 35px;
}
footer section#infosfooter .col-lg-4 a.pin {
  background: url("../images/pin.png") 7px 12px no-repeat;
}
footer section#infosfooter .col-lg-4 a.mail {
  background: url("../images/email.png") 7px 12px no-repeat;
}
footer section#infosfooter .col-lg-4 a.tel {
  background: url("../images/phone.png") 7px 12px no-repeat;
}
footer section#infosfooter .col-lg-4.text-center div {
  display: inline-block;
  text-align: left;
}
footer section#copyfooter {
  text-align: center;
  font-size: 15px;
  line-height: 33px;
}
footer section#copyfooter a {
  display: inline-block;
  padding: 0 15px 0 15px;
  color: #002b48;
}

@media screen and (max-width: 980px) {
  footer section#infosfooter .col-lg-4 {
    text-align: center;
  }
  footer section#infosfooter .col-lg-4 a {
    display: inline-block;
    padding: 0 20px 0 20px;
  }
  footer section#infosfooter .col-lg-4.text-center div {
    display: block;
    text-align: center;
  }
  footer section#copyfooter {
    margin-bottom: 70px;
  }
}
.js-swiper-full-w .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  border-bottom-right-radius: 100px;
}
.js-swiper-full-w .swiper-wrapper .swiper-slide .descbandeau {
  position: absolute;
  left: 90px;
  top: 20%;
  font-size: 62px;
  font-weight: 400;
  line-height: 65px;
  letter-spacing: 3px;
}
.js-swiper-full-w .swiper-pagination {
  background-color: rgba(255, 255, 255, 0.5019607843);
  position: absolute !important;
  bottom: 20px !important;
  width: auto !important;
  height: 38px !important;
  border-radius: 8px;
  line-height: 38px;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  z-index: 10;
}
.js-swiper-full-w .swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #002b48;
  margin: 0 9px !important;
}
.js-swiper-full-w .swiper-pagination .swiper-pagination-bullet-active {
  width: 27px;
  height: 27px;
  border: 9px solid #90C4F7;
  margin: 0;
}
section#assurance_background {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}
section#assurance_accident {
  padding-top: 40px;
  padding-bottom: 80px;;
}
section#assurance {
  padding-top: 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  padding-bottom: 80px;
}
section#assurance .triptyque {
  min-width: 850px;
  display: flex;
  margin-bottom: 20px;
}
section#assurance .triptyque .col-4 {
  padding: 15px;
}
section#produitshome {
  padding-top: 40px;
  padding-bottom: 80px;
}
section#produitshome .js-swiper-produits {
  margin-left: 80px;
  padding-top: 100px;
}
section#produitshome .js-swiper-produits .swiper-wrapper .swiper-slide img {
  width: 100%;
  border-radius: 40px;
}
section#produitshome .js-swiper-produits .swiper-wrapper .swiper-slide h3 {
  margin-top: 20px;
  color: #002b48;
  font-family: "coolveticaregular", sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 28px;
}
section#produitshome .js-swiper-produits .swiper-wrapper .swiper-slide .desc {
  font-size: 15px;
  margin: 20px 0;
  line-height: 23px;
}
section#assureurs {
  background: url("../images/home/fondassureurdesktop.png") 405px bottom no-repeat #ecf9ee;
}
section#assureurs .col-lg-4 {
  margin-top: 80px;
  margin-bottom: 80px;
}
section#assureurs .col-lg-4 h2 {
  text-align: left;
}
section#assureurs .col-lg-4.text-center {
  padding-left: 100px;
}
section#assureurs .col-lg-4 img {
  margin-bottom: 20px;
  width: 100%;
}
section#assureurs .col-lg-8 {
  margin: 0;
  padding: 0;
}
section#clients {
  background: rgba(15, 139, 255, 0.7333333333);
  padding-top: 30px;
  padding-bottom: 30px;
  /* Texte défilant */
}
section#clients h2 {
  padding-top: 30px;
  padding-bottom: 30px;
}
section#clients img {
  margin: 30px;
}
section#clients .messagedefilant {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 150px;
}
section#clients .messagedefilant div {
  position: absolute;
  min-width: 100%; /* au minimum la largeur du conteneur */
}
section#clients .messagedefilant div span {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  white-space: nowrap;
}
section#clients .messagedefilant div span:first-child {
  animation: defilement 20s infinite linear;
}
section#clients .messagedefilant div span:last-child {
  position: absolute;
  animation: defilement2 20s infinite linear;
}
@keyframes defilement {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -100%;
  }
}
@keyframes defilement2 {
  0% {
    margin-left: 100%;
  }
  100% {
    margin-left: 0%;
  }
}
section#equipe {
  background: linear-gradient(180deg, #ffffff 0%, rgba(221, 242, 255, 0.7) 100%);
  padding-top: 60px;
  padding-bottom: 60px;
}
section#equipe .js-swiper-equipe {
  margin-left: 80px;
  margin-right: 80px;
}
section#equipe .js-swiper-equipe .swiper-wrapper {
  margin-top: 30px;
}
section#equipe .js-swiper-equipe .swiper-wrapper .swiper-slide {
  text-align: center;
}
section#equipe .js-swiper-equipe .swiper-wrapper .swiper-slide h3 {
  font-size: 20px;
  color: #0f8bff;
  font-weight: bold;
  font-family: "coolveticaregular", sans-serif;
}
section#equipe .js-swiper-equipe .swiper-wrapper .swiper-slide img {
  width: 100%;
}
section#equipe .js-swiper-equipe .swiper-wrapper .swiper-slide .imgcontainer {
  height: 280px;
  display: flex;
  margin-bottom: 20px;
}

@media screen and (max-width: 980px) {
  .js-swiper-full-w .swiper-wrapper .swiper-slide img {
    width: 95%;
    border-bottom-right-radius: 40px;
  }
  .js-swiper-full-w .swiper-wrapper .swiper-slide .descbandeau {
    position: relative;
    font-size: 39px;
    color: #002b48;
    left: auto !important;
    top: auto !important;
    margin: 10px 12px;
    max-width: none;
    line-height: 41px;
  }
  .js-swiper-full-w .swiper-wrapper .swiper-slide .descbandeau span {
    color: #fff;
    font-size: 39px;
    line-height: 41px;
  }
  .js-swiper-full-w .swiper-pagination {
    position: relative;
    bottom: auto !important;
    margin-top: 20px;
  }
  section h2 {
    font-size: 34px;
  }
  section#assurance {
    padding-bottom: 40px;
  }
  section#produitshome {
    padding-bottom: 40px;
  }
  section#produitshome .js-swiper-produits {
    margin-left: 12px;
  }
  section#produitshome .js-swiper-produits .swiper-wrapper .swiper-slide img {
    border-radius: 10px;
  }
  section#assureurs {
    background: url("../images/home/fondassureur.png") 20px 300px no-repeat #ecf9ee;
  }
  section#assureurs .col-lg-4 {
    margin: 30px 0px 30px 0px;
    text-align: center;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  section#assureurs .col-lg-4 h2 {
    text-align: center;
  }
  section#assureurs .col-lg-4.text-center {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  section#equipe .js-swiper-equipe {
    margin-left: 12px;
    margin-right: 12px;
  }
}
section#bandeau {
  background: url("../images/home/slider4.png") top center no-repeat;
}


section#produits {
  padding-bottom: 40px;
}
section#produitslist {
  padding-bottom: 80px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #e0f2e2 100%);
}
section#produitslist .container {
  margin-top: 60px;
}
section#produitslist .container .col-lg-5 h2 {
  text-align: left;
  margin-bottom: 20px;
}
section#produitslist .container .col-lg-5 img {
  margin-right: 20px;
}
section .js-swiper-produitspe, section .js-swiper-produitspe2 {
  margin: 30px 0px 20px 80px;
}
section .js-swiper-produitspe .swiper-wrapper .swiper-slide, section .js-swiper-produitspe2 .swiper-wrapper .swiper-slide {
  text-align: center;
}
section .js-swiper-produitspe .swiper-wrapper .swiper-slide h3, section .js-swiper-produitspe2 .swiper-wrapper .swiper-slide h3 {
  font-size: 27px;
  font-family: "coolveticaregular", sans-serif;
  color: #002b48;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  letter-spacing: 1.26px;
}
section .js-swiper-produitspe .swiper-wrapper .swiper-slide .price, section .js-swiper-produitspe2 .swiper-wrapper .swiper-slide .price {
  margin-top: 20px;
  border-top: 1px solid #0f8bff;
  border-bottom: 1px solid #0f8bff;
  color: #0f8bff;
  font-size: 39px;
  font-weight: 900;
  line-height: 65px;
  text-align: center;
  letter-spacing: 1.1px;
}
section .js-swiper-produitspe .swiper-wrapper .swiper-slide .price span, section .js-swiper-produitspe2 .swiper-wrapper .swiper-slide .price span {
  font-size: 16px;
  font-weight: 400;
}
section .js-swiper-produitspe .swiper-wrapper .swiper-slide img, section .js-swiper-produitspe2 .swiper-wrapper .swiper-slide img {
  width: 100%;
}
section .js-swiper-produitspe2 {
  padding-top: 100px;
  margin-top: 0;
}
section .js-swiper-produitspe2 .swiper-wrapper {
  margin-top: 30px;
  margin-bottom: 38px;
}
section .js-swiper-produitspe2 .swiper-wrapper .swiper-slide h3 {
  text-align: left !important;
}
section .js-swiper-produitspe {
  margin-right: 80px;
}
section#blogarticlelist {
  margin-top: 40px;
  margin-bottom: 80px;
}
section#blogarticlelist .js-swiper-blogarticlelist {
  margin: 30px 80px;
}

@media screen and (max-width: 980px) {
  section#produitslist .col-lg-8 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  section .js-swiper-produitspe, section .js-swiper-produitspe2, section .js-swiper-blogarticlelist {
    margin: 0 0 20px 12px !important;
  }
  section#blogarticlelist {
    margin-bottom: 30px;
  }
}
main.assurkids section#bandeau {
  background: url("../images/home/slider4.png") top center no-repeat;
}
main.assurkids section#produits .container {
  margin-bottom: 30px;
}
main.assurkids section#produits h3 {
  margin-top: 20px;
}
main.assurkids section#produits .blueBtn {
  margin-top: 10px;
}
main.assurkids section#produitslist {
  border-top: 1px solid #0f8bff;
}
main.assurkids section#produitslist .js-swiper-produitspe {
  margin: 0px 0px 20px 80px;
}
main.assurkids section#produitslist .js-swiper-produitspe .swiper-wrapper .swiper-slide {
  text-align: center;
}
main.assurkids section#produitslist .js-swiper-produitspe .swiper-wrapper img {
  width: 100%;
}
main.assurkids section#produitslist .js-swiper-produitspe .swiper-wrapper .blueBtn {
  margin-top: 5%;
}
main.assurkids section#produitslist .text-center {
  margin-top: 2%;
  margin-bottom: 2%;
}
main.assurkids section .container {
  margin-bottom: 3%;
}
main.assurkids section .container .col-lg-5 h2 {
  text-align: left;
  margin-bottom: 20px;
}
main.assurkids section .container .col-lg-5 img {
  margin-right: 20px;
}
main .js-swiper-produitspe2 {
  padding-top: 100px;
  margin-top: 0;
}
main .js-swiper-produitspe2 .swiper-wrapper {
  margin-top: 30px;
  margin-bottom: 38px;
}
main .js-swiper-produitspe2 .swiper-wrapper .swiper-slide h3 {
  text-align: left !important;
}
main .js-swiper-produitspe {
  margin-right: 80px;
}
main#blogarticlelist {
  margin-top: 40px;
  margin-bottom: 80px;
}
main#blogarticlelist .js-swiper-blogarticlelist {
  margin: 30px 80px;
}

@media screen and (max-width: 980px) {
  section#produitslist .js-swiper-produitspe {
    margin: 0px 10px 20px 80px;
  }
  section#produitslist .js-swiper-produitspe .swiper-wrapper .swiper-slide {
    text-align: center;
  }
  section#produitslist .js-swiper-produitspe .swiper-wrapper img {
    width: 100%;
  }
  section#produitslist .col-lg-8 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  section .js-swiper-produitspe, section .js-swiper-produitspe2, section .js-swiper-blogarticlelist {
    margin: 0 0 20px 12px !important;
  }
  section#blogarticlelist {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  section#produitslist .js-swiper-produitspe {
    margin: 0px 10px 20px 80px;
  }
  section#produitslist .js-swiper-produitspe .swiper-wrapper .swiper-slide {
    text-align: center;
  }
  section#produitslist .js-swiper-produitspe .swiper-wrapper img {
    width: 100%;
  }
  section#produitslist .js-swiper-produitspe .swiper-wrapper .col-6 {
    margin-left: 10%;
    width: 80%;
  }
  section#produitslist .js-swiper-produitspe .swiper-wrapper h2 {
    letter-spacing: 2.09px !important;
  }
  section .js-swiper-produitspe, section .js-swiper-produitspe2, section .js-swiper-blogarticlelist {
    margin: 0 0 20px 12px !important;
  }
  section#blogarticlelist {
    margin-bottom: 30px;
  }
}
section#listproduits {
  padding-bottom: 20px;
}
section#listproduits .js-swiper-produitslist {
  margin: 0px 80px 0px 80px;
}
section#listproduits .js-swiper-produitslist .swiper-wrapper .swiper-slide .gauche {
  padding-bottom: 30px;
}
section#listproduits .js-swiper-produitslist .swiper-wrapper .swiper-slide .gauche img {
  width: 100%;
}
section#listproduits .js-swiper-produitslist .swiper-wrapper .swiper-slide .gauche h2 {
  font-size: 35px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  letter-spacing: 1.6px;
  font-family: "coolveticaregular", sans-serif;
  color: #0f8bff;
}

@media screen and (max-width: 980px) {
  section#listproduits .js-swiper-produitslist {
    margin: 0px 0px 40px 12px;
  }
}
section#listarticles {
  padding: 0px 80px 0px 80px;
}
section#listarticles .onglets {
  border-bottom: 1px solid #002b48;
  text-align: center;
}
section#listarticles .onglets a {
  color: #002b48;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0.8px;
  display: inline-block;
  font-family: "coolveticaregular", sans-serif;
  text-decoration: none;
  width: 230px;
  padding: 15px 15px 30px 15px;
}
section#listarticles .onglets a.active, section#listarticles .onglets a:hover {
  color: #fff;
  background: #002b48;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
section#listarticles .categories {
  text-align: center;
  color: #002b48;
  font-size: 15px;
  line-height: 23px;
  padding: 20px;
}
section#listarticles .categories a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  line-height: 13px;
  text-transform: uppercase;
  border: 1px solid #0f8bff;
  padding: 4px 6px 4px 6px;
  color: #0f8bff;
  background: #fff;
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
}
section#listarticles .categories a.active {
  color: #fff;
  background: #0f8bff;
}
section#listarticles .bloglistarticle {
  text-align: center;
  border-bottom: 1px solid #002b48;
  padding-bottom: 20px;
}
section#listarticles .bloglistarticle .article {
  width: 300px;
  margin: 10px;
  text-align: left;
}
section#listarticles .pagination {
  font-size: 12px;
  font-weight: 400;
  line-height: 40px;
  color: #002b48;
  margin-bottom: 40px;
}
section#listarticles .pagination a {
  text-decoration: none;
  color: #002b48;
}
section#listarticles .pagination a.active {
  font-weight: bold;
  color: #0f8bff;
  text-decoration: underline;
}
section#listarticles .pagination .chiffres {
  font-size: 15px;
}
section#listarticles .pagination .chiffres a {
  padding-right: 5px;
  padding-left: 5px;
}

@media screen and (max-width: 980px) {
  section#listarticles {
    padding: 0px 12px 0px 12px;
  }
  section#listarticles .bloglistarticle {
    border-bottom: none;
    margin-top: 10px;
  }
  section#listarticles .bloglistarticle .article {
    width: 100%;
    margin: 10px 0 10px 0;
  }
  section#listarticles .categories {
    text-align: left;
    padding: 0;
  }
  section#listarticles .categories a {
    margin: 10px 20px 0px 0px;
  }
  section#listarticles .listmobile {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.12px;
  }
  section#listarticles .listmobile select {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  section#listarticles .paginationmobile {
    font-size: 15px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 20px;
  }
  section#listarticles .paginationmobile a {
    color: #002b48;
  }
}
section#contentarticle {
  padding: 0px 205px 30px 205px;
}
section#contentarticle .text-center {
  font-size: 16px;
}
section#contentarticle .date {
  padding-left: 20px;
  font-size: 12px;
}
section#contentarticle .content {
  padding-top: 20px;
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 20px;
}
section#contentarticle .content h3 {
  font-size: 34px;
  color: #0f8bff;
  line-height: 50px;
  letter-spacing: 1.7px;
  margin-top: 30px;
  margin-bottom: 20px;
}
section#contentarticle .download {
  font-size: 15px;
  font-weight: 600;
  color: #002b48;
  line-height: 23px;
}
section#blogarticlelist {
  border-top: 1px solid #0f8bff;
  padding-top: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 980px) {
  section#contentarticle {
    padding: 0px 12px 30px 12px;
  }
}
.souscrirebg {
  background: linear-gradient(180deg, #ecf8ff 0%, #ffffff 100%);
}

section#headersouscrire .breadcrumb {
  color: #002b48;
}
section#headersouscrire .breadcrumb a {
  color: #002b48;
}
section#headersouscrire .breadcrumb.page2 {
  justify-content: center;
  margin-left: 0;
}
section#headersouscrire .descbandeau h1 {
  font-size: 62px;
  text-align: center;
  color: #002b48;
  font-weight: bold;
}
section#headersouscrire .step {
  position: relative;
}
section#headersouscrire .step .bar {
  max-width: 800px;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  border: 1px solid #a9d6ff;
  margin: 5px auto;
  position: relative;
  overflow: hidden;
}
section#headersouscrire .step .bar .progression {
  height: 10px;
  background: #0f8bff;
}
section#headersouscrire .step .pourcentage {
  max-width: 800px;
  width: 100%;
  margin: 10px auto 0px;
  font-size: 12px;
}
section#headersouscrire .step .pourcentage div {
  display: inline-block;
}
section#headersouscrire h2 {
  font-size: 27px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  letter-spacing: 1.35px;
  margin: 20px;
}
section#produitslistsouscrire {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire {
  margin: 0px 80px 0px 80px;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire h3:first-child {
  margin-bottom: 2%;
  font-size: 27px;
  color: #1b5396;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche .cat {
  font-size: 15px;
  font-weight: 400;
  line-height: 55px;
  letter-spacing: 0.7px;
  font-family: "coolveticaregular", sans-serif;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h4 {
  font-size: 17px;
  background: #0f8bff;
  line-height: 32px;
  color: #fff;
  text-transform: uppercase;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h4.darkblue {
  background: #1b5396;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h4.twoline {
  line-height: 17px;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h4.threeline {
  line-height: 24px;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h4.fourline {
  line-height: 48px;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h3 {
  font-size: 35px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  letter-spacing: 1.6px;
  font-family: "coolveticaregular", sans-serif;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h3 span {
  background: #abffb4;
  padding: 2px;
  margin-top: 2px;
  display: inline-block;
  /*
  &.cyan{
      background:#87fff2C0;
  }
  &.bleu2{
      background:#0f8bff60;
  }
  &.bleu3{
      background:#1b539630;
  }*/
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h3 span.bleu {
  background: #bcedff;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h3 span.SoftRed {
  background: #E26F6F;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h3 span.limeGreen {
  background: #41B56A;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h3 span.ModerateBlue {
  background: #438ECE;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h3 span.ModeratePink {
  background: #C54692;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche h3.assurkids {
  margin-bottom: 25px;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche .price {
  margin-top: 20px;
  border-top: 1px solid #0f8bff;
  border-bottom: 1px solid #0f8bff;
  color: #0f8bff;
  font-size: 39px;
  font-weight: 900;
  line-height: 65px;
  text-align: center;
  letter-spacing: 1.1px;
  margin-bottom: 10px;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche .price span {
  font-size: 16px;
  font-weight: 400;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche .price.assurkids {
  border-bottom: none;
  margin-bottom: 0;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche a {
  color: #002b48;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  text-decoration: underline;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche a img {
  margin-right: 10px;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche .choice {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche .choice .on {
  display: none;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide .gauche .choice.assurkids {
  height: 60px;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide.active .gauche .choice .on {
  display: block;
}
section#produitslistsouscrire .js-swiper-produitslistsouscrire .swiper-wrapper .swiper-slide.active .gauche .choice .off {
  display: none;
}
section#produitslistsouscrire.assurkids {
  margin-bottom: 0;
  padding-bottom: 0;
}
section#footersouscrire {
  position: relative;
  background: url("../images/souscrire/bg.png") bottom center no-repeat;
  background-size: cover;
  overflow: hidden;
}
section#footersouscrire .roundtop {
  background: #fff;
  width: 100%;
  height: 60px;
  border-bottom-right-radius: 60px;
  position: relative;
  z-index: 10;
}
section#footersouscrire .documentation {
  background: #0f8bff;
  position: relative;
  z-index: 10;
  max-width: 850px;
  margin: 60px auto;
  border-top-right-radius: 80px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
section#footersouscrire .documentation h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 400;
  line-height: 50px;
  text-align: center;
  letter-spacing: 1.7px;
}
section#footersouscrire .documentation a {
  display: inline-block;
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  color: #002b48;
  text-decoration: none;
  padding: 10px;
  font-family: "coolveticaregular", sans-serif;
  letter-spacing: 0.9px;
}
section#footersouscrire .documentation .row {
  margin-left: 30px;
  margin-right: 30px;
}
section#formsouscrire  {
  max-width: 920px;
  margin: 0 auto;
  font-size: 15px;
}
section#formsouscrire  input, section#formsouscrire  select {
  margin-top: 5px;
  margin-bottom: 20px;
}
section#formsouscrire  .col-lg-12 {
  margin-bottom: 20px;
}
section#formsouscrire  .col-lg-12 .line {
  border-top: 1px solid #b5d2f4;
}
section input[type=checkbox] {
  margin: 0;
  margin-right: 10px;
  float: left;
}
section .chkinfo {
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
section#assurancesouscrire {
  max-width: 1150px;
  margin: 0 auto;
}
section#assurancesouscrire .total {
  background: #0f8bff;
  border-radius: 16px;
  height: 100%;
  justify-content: center;
  font-size: 19px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  display: flex;
  align-items: center;
}
section#assurancesouscrire .total h5 {
  margin-bottom: 35px;
  line-height: 30px;
}
section#assurancesouscrire .total .price {
  font-size: 38px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 15px;
}
section#assurancesouscrire .col-lg-6 {
  position: relative;
}
section#assurancesouscrire .col-lg-12 {
  height: 20px;
}
section#assurancesouscrire .col-lg-10 {
  width: 83%;
}
section#assurancesouscrire .col-lg-2 {
  padding-right: 0px;
  width: 18%;
}
section#assurancesouscrire .gauche {
  text-align: left;
  padding: 15px;
  height: calc(100% - 15px);
}
section#assurancesouscrire .gauche h3 {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}
section#assurancesouscrire .gauche .periode {
  padding: 15px 0px;
}
section#assurancesouscrire .gauche .periode input {
  width: 155px;
}
section#assurancesouscrire .gauche select {
  margin: 15px 0px;
}
section#assurancesouscrire .navsouscrire {
  margin-top: 20px;
}
section#recapsouscrire {
  margin: 0px 80px 0px 80px;
  font-size: 15px;
}
section#recapsouscrire h3 {
  font-size: 22px;
  line-height: 24px;
}
section#recapsouscrire .col-lg-7 a {
  color: #002b48;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}
section#recapsouscrire .payer {
  padding: 20px;
  border: 1px solid #0f8bff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  margin: 20px 0 20px 0px;
}
section#recapsouscrire .payer img {
  margin-right: 20px;
}
section#recapsouscrire .sumup {
  position: relative;
  padding-bottom: 5px;
}
section#recapsouscrire .sumup .gauche, section#recapsouscrire .accordeon .desc {
  text-align: left;
}
section#recapsouscrire .sumup .gauche .padding, section#recapsouscrire .accordeon .desc .padding {
  padding: 20px;
}
section#recapsouscrire .sumup .gauche .padding .blue, section#recapsouscrire .accordeon .desc .padding .blue {
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  color: #0f8bff;
  padding: 5px 0;
}
section#recapsouscrire .sumup .gauche .padding .line, section#recapsouscrire .accordeon .desc .padding .line {
  margin: 10px 0;
  border-top: 1px solid #0f8bff;
}
section#recapsouscrire .sumup .gauche .total, section#recapsouscrire .accordeon .desc .total {
  padding: 20px;
  background: #0f8bff;
  color: #fff;
}
section#recapsouscrire .sumup .gauche .total .bigtotal, section#recapsouscrire .accordeon .desc .total .bigtotal {
  font-size: 30px;
  font-weight: 700;
}

@media screen and (max-width: 980px) {
  section#headersouscrire {
    margin: 0px 12px 0px 12px;
  }
  section#headersouscrire#headersouscrire .descbandeau h1 {
    font-size: 39px;
  }
  section#produitslistsouscrire {
    margin-bottom: 0px;
  }
  section#produitslistsouscrire .js-swiper-produitslistsouscrire {
    margin: 0px 0px 0px 12px;
  }
  section#produitslistsouscrire .text-center {
    margin-top: -110px;
  }
  section#produitslistsouscrire button {
    margin: 0px auto 40px !important;
  }
  section#footersouscrire .documentation {
    margin: 30px 12px 30px 12px;
  }
  section#footersouscrire .documentation h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    letter-spacing: 1.12px;
  }
  section#footersouscrire .documentation a {
    margin-top: 15px;
  }
  section#formsouscrire  {
    margin: 0px 12px 0px 12px;
  }
  section#assurancesouscrire .col-lg-10, section#assurancesouscrire .col-lg-2 {
    width: 100%;
  }
  section#assurancesouscrire .col-lg-2 {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  section#assurancesouscrire .col-lg-2 .total {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  section#assurancesouscrire .col-lg-2 .total h4 {
    margin-bottom: 0px;
    line-height: 0px;
  }
  section#assurancesouscrire .row {
    margin-left: 0px;
    margin-right: 0px;
  }
  section#assurancesouscrire .row .periode {
    text-align: center;
  }
  section#recapsouscrire {
    margin: 0px 12px 0px 12px;
  }
  section#recapsouscrire .accordeon a {
    line-height: 36px;
  }
}
.produitbg {
  background: linear-gradient(180deg, #ffffff 0%, #ecf8ff 100%);
}

section#produitslistsouscrire button {
  display: block;
  margin: 30px auto;
}
section#produittexte {
  margin: 0 80px;
  font-size: 15px;
}
section#produittexte h2 {
  margin-bottom: 30px;
}
section#produittexte .col-lg-6 {
  padding: 0px 30px 30px;
}
section#produittexte .col-lg-6 .anoter {
  padding: 20px;
  border: 1px solid #0f8bff;
  border-radius: 21px;
}
section#produittexte .col-lg-6 .anoter h3 {
  font-size: 27px;
}
section#listgarantie {
  background: linear-gradient(180deg, #ffffff 0%, #f2fcf3 77%, #f2fcf3 100%);
  padding: 30px 12px;
}
section#listgarantie .js-swiper-produitslistgarantie {
  list-style: none;
  padding: 30px 0;
  z-index: 1;
  height: 900px;
}
section#listgarantie .js-swiper-produitslistgarantie .swiper-slide {
  height: calc((100% - 30px) / 2) !important;
  text-align: center;
  padding: 0px 2.5%;
}
section#listgarantie .js-swiper-produitslistgarantie .swiper-slide h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: 1px;
  color: #0f8bff;
}
section#listgarantie .js-swiper-produitslistgarantie .swiper-slide .img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
}
section#listgarantietable {
  margin: 0 80px;
}
section#listgarantietable .responsivetable {
  width: 100%;
  margin-top: 20px;
  border-collapse: separate;
  border-spacing: 0px 5px;
}
section#listgarantietable .responsivetable tr {
  margin-bottom: 5px;
}
section#listgarantietable .responsivetable tr:nth-child(even) {
  background: #f0f8ff;
}
section#listgarantietable .responsivetable tr td {
  border: 1px solid #b5d2f4;
  border-style: solid none solid none;
  padding: 5px 0px;
}
section#listgarantietable .responsivetable tr td:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-left-style: solid;
}
section#listgarantietable .responsivetable tr td:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-right-style: solid;
}
section#listgarantietable .responsivetable tr td, section#listgarantietable .responsivetable tr th {
  width: 16%;
  text-align: center;
  color: #002b48;
  font-family: Poppins;
  font-size: 14px;
  line-height: 19px;
}
section#listgarantietable .responsivetable tr td:first-child, section#listgarantietable .responsivetable tr th:first-child {
  width: 36%;
  padding-left: 15px;
  text-align: left;
  color: #0f8bff;
  font-family: "coolveticaregular", sans-serif;
  font-size: 18px;
  line-height: 19px;
  letter-spacing: 1px;
}
section#listgarantietable .responsivetable tr th a {
  display: block;
  padding: 15px;
  margin: 0 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 24.5px;
  font-weight: 400;
  line-height: 25.2px;
  font-family: "coolveticaregular", sans-serif;
  color: #002b48;
  text-decoration: none;
  margin-bottom: -6px;
}
section#produitslistsouscrire .couleurfacil, section#listgarantietable .couleurfacil {
  background-color: #abffb4 !important;
}
section#produitslistsouscrire .couleursecu, section#listgarantietable .couleursecu {
  background-color: #a2fff5 !important;
}
section#produitslistsouscrire .couleursimple, section#listgarantietable .couleursimple {
  background-color: #add7ff !important;
}
section#produitslistsouscrire .couleurtranquille, section#listgarantietable .couleurtranquille {
  background-color: #c9d6e6 !important;
}
section#produitinfo {
  background: #e6f3ff;
  border-top-right-radius: 50px;
  margin: 0 80px 40px 80px;
  padding: 30px;
  font-size: 15px;
  font-weight: 600;
}
section#produitinfo .row {
  margin: 15px 0px;
}
section#produitinfo .row img {
  margin: 10px 0;
}
section#produitinfo .aligntxt {
  display: flex;
  align-items: center;
}
section#produitinfo h2 {
  font-size: 27px;
  line-height: 28px;
  color: #002b48;
}

.popin {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -2;
  /*
  z-index:100;
  pointer-events: none;
  */
  overflow-x: hidden;
  overflow-y: auto;
  transition: background 1s ease-in-out;
}
.popin.active {
  background: rgba(0, 0, 0, 0.5019607843);
  transition: background 1s ease-in-out;
}
.popin.active .content {
  margin-left: 80px;
  transition: margin-left 1s ease-in-out;
}
.popin .content {
  margin-left: 200%;
  background: #fff;
  width: calc(100% - 80px);
  border-bottom-left-radius: 50px;
  padding: 20px 40px 40px 40px;
  text-align: center;
  transition: margin-left 1s ease-in-out;
  position: relative;
}
.popin .content h2 {
  position: relative;
  z-index: 2;
}
.popin .content table {
  border-collapse: separate;
  border-spacing: 0px 5px;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.popin .content table tr {
  background: #fff;
}
.popin .content table tr:nth-child(even) {
  background: #f0f8ff;
}
.popin .content table tr td {
  height: 60px;
  border: 1px solid #b5d2f4;
  border-style: solid none solid none;
  padding: 5px 0px;
  text-align: center;
  color: #002b48;
  font-family: Poppins;
  font-size: 14px;
  line-height: 19px;
}
.popin .content table tr td:first-child {
  width: 36%;
  padding-left: 15px;
  text-align: left;
  color: #0f8bff;
  font-family: "coolveticaregular", sans-serif;
  font-size: 18px;
  line-height: 19px;
  letter-spacing: 1px;
}
.popin .content table tr td:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-left-style: solid;
  width: 70%;
}
.popin .content table tr td:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-right-style: solid;
}
.popin .content .footerpopin {
  max-width: 690px;
  margin: 30px auto 20px;
}
.popin .content .footerpopin h3 {
  font-size: 27px;
  margin-top: 40px;
}
.popin .content .footerpopin a {
  margin-top: 15px;
  text-align: left;
}
.popin .content .footerpopin a.blueBtn {
  padding: 0 10px;
}
.popin .content .footerpopin .col-lg-6 {
  padding: 0;
}
.popin .content .circle {
  opacity: 0.71;
  position: absolute;
  left: 227px;
  top: 33px;
  width: 467px;
  height: 467px;
  background: linear-gradient(180deg, rgba(188, 255, 198, 0.76) 0%, #87ff94 100%);
  border-radius: 50%;
}

@media screen and (max-width: 980px) {
  section#listgarantie .js-swiper-produitslistgarantie {
    height: auto;
  }
  section#listgarantie .js-swiper-produitslistgarantie .swiper-slide {
    height: auto;
  }
  section.produitbg {
    margin-bottom: 40px !important;
  }
  section.produitbg .swiper-pagination {
    margin-top: 10px !important;
    margin-bottom: 20px;
  }
  section#listgarantietable {
    margin: 0 12px;
  }
  section#listgarantietable .accordeon {
    padding: 0;
    border: none;
    margin: 0 0 10px;
  }
  section#listgarantietable .accordeon a {
    padding: 20px 0;
    text-align: center;
    background-position: 98%;
    border-radius: 16px;
  }
  section#listgarantietable .accordeon table tr {
    border-bottom: 1px solid #0f8bff;
  }
  section#listgarantietable .accordeon table tr td {
    width: 50%;
    text-align: center;
    font-size: 14px;
    color: #002b48;
    line-height: 19px;
    padding: 10px 0;
  }
  section#listgarantietable .accordeon table tr td:first-child {
    width: 50%;
    color: #0f8bff;
    font-family: "coolveticaregular", sans-serif;
    font-size: 18px;
    line-height: 19px;
    letter-spacing: 1px;
    text-align: left;
  }
  section#produittexte {
    margin: 0 12px;
  }
  section#produittexte .textestyle {
    order: 3;
  }
  section#produitinfo {
    margin: 0 12px 40px 12px;
  }
  .popin.active .content {
    margin-left: 0px;
  }
  .popin .content {
    width: 100%;
    padding: 10px;
    border-radius: inherit;
  }
  .popin .content h2 {
    margin-top: 20px;
  }
  .popin .content table {
    border-collapse: collapse;
  }
  .popin .content table tr {
    border-bottom: 1px solid #0f8bff;
    background: transparent !important;
  }
  .popin .content table tr td {
    width: 50%;
    text-align: center;
    font-size: 14px;
    color: #002b48;
    line-height: 19px;
    padding: 10px 0;
    border: none !important;
  }
  .popin .content table tr td:first-child {
    width: 50%;
    color: #0f8bff;
    font-family: "coolveticaregular", sans-serif;
    font-size: 18px;
    line-height: 19px;
    letter-spacing: 1px;
    text-align: left;
  }
  .popin .circle {
    display: none;
  }
}
section#listproduits .js-swiper-produitslist .decouvrir .swiper-slide .roundslide {
  background: #002b48;
  border-radius: 28px;
  padding-bottom: 20px;
}
section#listproduits .js-swiper-produitslist .decouvrir .swiper-slide .roundslide img {
  width: 100%;
}
section#listproduits .js-swiper-produitslist .decouvrir .swiper-slide .roundslide h2 {
  color: #fff;
  font-size: 35px;
  line-height: 36px;
  margin: 20px 0;
}

@media screen and (max-width: 980px) {
  section#listproduits .js-swiper-produitslist .decouvrir .swiper-slide .roundslide h2 {
    margin: 10px 10px;
  }
}
section#listproduits .js-swiper-produitslist .decouvrirChien {
  justify-content: center;
}
section#listproduits .js-swiper-produitslist .decouvrirChien .swiper-slide .roundslide {
  background: #002b48;
  border-radius: 28px;
  padding-bottom: 20px;
}
section#listproduits .js-swiper-produitslist .decouvrirChien .swiper-slide .roundslide img {
  width: 100%;
}
section#listproduits .js-swiper-produitslist .decouvrirChien .swiper-slide .roundslide h2 {
  color: #fff;
  font-size: 35px;
  line-height: 36px;
  margin: 20px 0;
}

@media screen and (max-width: 980px) {
  section#listproduits .js-swiper-produitslist .decouvrirChien {
    justify-content: start;
  }
  section#listproduits .js-swiper-produitslist .decouvrirChien .swiper-slide .roundslide h2 {
    margin: 10px 10px;
  }
}
section#faqcontent {
  margin: 0 110px;
  padding-bottom: 40px;
}
section#faqcontent h2 {
  margin-bottom: 40px;
}
section#faqinfo {
  background: #ffffff;
  border-top-right-radius: 40px;
  margin: 0 80px 40px 80px;
  padding: 30px;
  font-size: 15px;
  font-weight: 600;
}
section#faqinfo .row {
  margin: 15px 0px;
}
section#faqinfo .row img {
  margin: 10px 0;
}
section#faqinfo .aligntxt {
  display: flex;
  align-items: center;
}
section#faqinfo h2 {
  font-size: 27px;
  line-height: 28px;
  color: #002b48;
}

@media screen and (max-width: 980px) {
  section#faqcontent, section#faqinfo {
    margin: 0 12px;
  }
}
section#bandeauperso .breadcrumb a {
  color: #002b48;
}
section#bandeauperso h1 {
  color: #002b48;
  font-size: 62px;
  line-height: 65px;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 30px;
  font-weight: bold;
}
section#maincontent .row {
  margin-right: 0;
}
section#maincontent .row .col-lg-2 {
  padding-right: 0;
}
section#maincontent .row .col-lg-10 {
  padding-left: 0;
}
section#maincontent .titleperso {
  color: #002b48;
  margin-top: 10px;
}
section#maincontent .menu {
  background: #002b48;
  height: 100%;
  padding-bottom: 40px;
}
section#maincontent .menu .blanc {
  background: #fff;
}
section#maincontent .menu .blanc .info {
  border-top-left-radius: 34px;
  background: #0f8bff;
  color: #fff;
  font-size: 15px;
  padding: 20px 0 20px 80px;
  border-bottom: 1px solid #002b48;
}
section#maincontent .menu ul {
  margin-bottom: 0px;
  padding: 0;
}
section#maincontent .menu ul li {
  list-style: none;
  padding: 20px 10px 20px 80px;
}
section#maincontent .menu ul li.active {
  background: #fff;
}
section#maincontent .menu ul li.active a {
  color: #002b48;
}
section#maincontent .menu ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}
section#maincontent .menu ul li:hover {
  background: #fff;
}
section#maincontent .menu ul li:hover a {
  color: #002b48;
}
section#maincontent .js-swiper-produitsperso {
  margin: 0 40px 40px 40px;
  font-size: 15px;
}
section#maincontent .js-swiper-produitsperso a:not(.blueBtn) {
  color: #002b48;
}
section#maincontent .js-swiper-produitsperso .bgdarkblue {
  background: #002b48;
  color: #fff;
}
section#maincontent .js-swiper-produitsperso .bgdarkblue h2 {
  font-size: 35px;
  line-height: 36px;
  letter-spacing: 1.6px;
  color: #fff;
  padding-top: 10px;
}
section#maincontent .js-swiper-produitsperso .bgdarkblue h3 {
  padding-bottom: 10px;
  font-size: 24px;
  margin-bottom: 0;
}
section#maincontent .js-swiper-produitsperso .bgyellow {
  background: yellow;
  color: #fff;
}
section#maincontent .js-swiper-produitsperso .bgyellow h2 {
  font-size: 35px;
  line-height: 36px;
  letter-spacing: 1.6px;
  color: #fff;
  padding-top: 10px;
}
section#maincontent .js-swiper-produitsperso .bgyellow h3 {
  padding-bottom: 10px;
  font-size: 24px;
  margin-bottom: 0;
}
section#maincontent .js-swiper-produitsperso .contrat {
  background: #0f8bff;
  color: #fff;
  padding: 5px 0;
}
section#maincontent .js-swiper-produitsperso .contrat b {
  font-size: 20px;
  font-weight: 600;
}
section#maincontent .js-swiper-produitsperso .infos {
  margin: 0 20px;
  padding: 10px 0;
}
section#maincontent .js-swiper-produitsperso .infos b {
  font-size: 20px;
  color: #0f8bff;
  display: block;
}
section#maincontent .js-swiper-produitsperso .infos:not(:last-child) {
  border-bottom: 1px solid #b8ddff;
}
section#maincontent .js-swiper-produitsperso .row {
  border-top: 1px solid #0f8bff;
  padding: 20px 0;
}
section#maincontent .js-swiper-produitsperso .row .text-start {
  padding-left: 30px;
}

.no-underline {
  text-decoration: none;
}

.no-underline:hover {
  text-decoration-color: #0f8bff;
}

@media screen and (max-width: 980px) {
  section#bandeauperso h1 {
    font-size: 39px;
    line-height: 40px;
  }
  section#maincontent .row {
    margin: 0;
  }
  section#maincontent .row > * {
    padding: 0 !important;
  }
  section#maincontent .col-lg-2 {
    position: fixed;
    height: 100%;
    z-index: 10;
    top: 180px;
    opacity: 1;
    transition: opacity 1s ease-in;
  }
  section#maincontent .col-lg-10 {
    position: relative;
    opacity: 0;
    transition: opacity 1s ease-in;
  }
  section#maincontent .closemenu .col-lg-2 {
    opacity: 0;
    z-index: -1;
    transition: opacity 1s ease-in;
  }
  section#maincontent .closemenu .col-lg-10 {
    opacity: 1;
    transition: opacity 1s ease-in;
  }
  section#maincontent .menu ul li {
    border-bottom: 1px solid #fff;
    background: url("../images/fleched.png") 95% no-repeat;
  }
  section#maincontent .js-swiper-produitsperso {
    margin: 20px 0 20px 10px;
  }
  section#maincontent .js-swiper-produitsperso .blueBtn {
    margin-top: 20px;
  }
  section#maincontent .col-lg-10 {
    padding: 0 0 0 20px !important;
  }
}
/*# sourceMappingURL=app.css.map */
