:root {
  --font-primary: "Noto Sans", sans-serif;
  --font-secondary: "Noto Sans", sans-serif;
  --primary-color: #0b2d40;
  --primary-color-lighter: rgba(11, 45, 64, 0.2);
  --body-p-color: #fbfbfb;
  --p-font-size: 16px;
  --p-line-height: 24px;
  --body-bg-color: rgba(255, 252, 235, 0.1);
  --accent: #00a878;
  --green: #ee881b;
  --red: #ff1d4e;
  --purple: #6816cf;
  --border: #dbdce1;
  --accent-lighter: #222;
  --secondary: #ee881b;
  --wht: #fff;
  --dark: #0e394c;
  --dark2: #0f3c4c;
  --footer: #0b2d40;
  --footer-color: #9396a7;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: var(--font-secondary);
  color: var(--body-p-color);
  background-color: var(--body-bg-color);
  font-weight: 400;
  overflow-x: hidden;
}

p {
  font-size: var(--p-font-size);
  line-height: var(--p-line-height);
  font-weight: 400;
  margin-bottom: 0px;
}

#remoteContentContainer a {
  color: var(--accent);
}

.sub-pink,
.sub-pink:hover,
.sub-pink:focus {
  text-decoration: none;
}

.wht {
  color: var(--wht) !important;
}

.faq-wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px 0px;
}

.faq {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
}

.wrong-choice {
  display: none;
}

.shadow {
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 15%) !important;
}

.datepicker .table-condensed {
  width: 100% !important;
}

small {
  display: block;
}

.custom-nav {
  background-color: var(--body-bg-color);
  align-content: center;
  color: var(--primary-color);
}

.brd {
  border-bottom: solid 1px var(--border);
}

.brd-top {
  border-top: solid 1px var(--border);
}

.nav-align {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
}

.titlehead {
  margin-bottom: 0px;
  font-size: 18px;
}

.baseline {
  font-size: 19px;
  display: block;
}

.baseline b {
  font-weight: 900 !important;
}

.sub-hd {
  width: 100% !important;
}

.logo {
  height: 70px;
}

.acc {
  background: #0e2029;
  color: #fff;
  padding: 25px 0px;
}

.acc * {
  margin-top: 0px;
}

:is(h1, h2, h3, h4, h5, h6) {
  color: var(--primary-color);
  font-family: var(--font-primary);
  margin-top: 0px;
}

.hero-lst i {
  color: var(--accent);
}

.hero-lst li,
.txt {
  font-family: var(--font-primary);
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1.8em;
}

.xmark-lst i {
  color: var(--red);
}

.arrow-lst i {
  color: var(--purple);
}

.main-title {
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 900;
  font-style: normal;
  text-align: left;
}

.main-sub-title {
  line-height: 1.4em;
}

.hero-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag-wrp {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}

.tag {
  background-color: rgba(0, 168, 120, 0.08);
  border: 1px solid var(--accent);
  color: var(--primary-color);
  border-radius: 50px;
  width: fit-content;
  padding: 10px 20px;
  font-size: 17px;
  display: inline-flex;
  gap: 0px 10px;
  align-items: center;
  font-weight: 600;
}

.tag i {
  color: var(--accent);
}

.av-card {
  background-color: rgba(0, 168, 120, 0.08);
  border: 1px solid var(--accent);
  color: var(--primary-color);
  border-radius: 10px;
  width: fit-content;
  padding: 20px 20px;
}

.icon-c {
  color: var(--accent);
  margin-bottom: 10px;
}

.icon-c i {
  font-size: 25px;
}

.tag-info-wrapper {
  width: 100%;
}

.tag-info {
  border-radius: 10px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--wht);
  display: inline-flex;
  align-items: center;
  gap: 0px 10px;
  padding: 20px;
  width: 100%;
}

.tag-info i {
  font-size: 25px;
  color: var(--accent);
}

.av-wrp {
  display: flex;
  flex-direction: column;
  gap: 20px 0px;
  justify-content: center;
  align-items: center;
}

mark {
  color: var(--primary-color) !important;
}

.alt-cst {
  background-color: var(--accent);
  color: #fff;
  padding: 15px 15px;
  border-radius: 15px;
  font-size: 18px;
  text-align: center;
  width: fit-content;
}

.animated-underline {
  position: relative;
  z-index: 1;
  padding: 0;
  display: inline-block;
  background: none;
  text-decoration: none;
  color: inherit;
}

.animated-underline::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 0;
  height: 30%;
  background-color: var(--accent);
}

.animated-underline::before {
  animation: width-animation 3.5s infinite alternate;
}

@keyframes width-animation {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

.picto-wrapper {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.picto-wrapper img {
  height: 55px;
}

.picto {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.picto font {
  font-size: 13px;
  line-height: 19px;
  font-weight: 700;
}

.assu-img-holder svg {
  width: 350px;
}

.family-img-wrapper {
  position: relative;
}

/*Table*/
/* ===============================
   CONTAINER GLOBAL
================================= */

.compare-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: inherit;
}

/* ===============================
   HEADER (bandeau haut)
================================= */

.compare-header {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.compare-header .cell {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-weight: 600;

  background-color: rgba(0, 168, 120, 0.08);
  border: 1px solid var(--accent);
  color: var(--primary-color);
  border-radius: 10px;
}

/* Case vide en haut à gauche */
.compare-header .empty {
  flex: 0 0 auto;
  width: fit-content;
  min-width: 220px;
  background: transparent;
  border: none;
}

/* ===============================
   LIGNES
================================= */

.compare-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

/* Cellules normales */
.compare-row .cell {
  flex: 1;
  padding: 16px;
  background: #f9f9f9;
  color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 15px;
}

/* ===============================
   COLONNE GAUCHE (labels)
================================= */

.compare-row .label {
  font-size: 13px;
  font-weight: 700;
  flex: 0 0 auto;
  width: fit-content;
  min-width: 220px;
  white-space: nowrap;
  font-weight: 600;
  justify-content: center;
  background-color: rgba(0, 168, 120, 0.08);
  border: 1px solid var(--accent);
  color: var(--primary-color);
  border-radius: 10px;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 992px) {
  .compare-header,
  .compare-row {
    flex-direction: column;
  }

  .compare-header .empty,
  .compare-row .label {
    width: 100%;
    min-width: unset;
    white-space: normal;
  }

  .compare-header .cell,
  .compare-row .cell {
    width: 100%;
  }
}

/* ===============================
   PETIT EFFET PREMIUM (optionnel)
================================= */

.compare-row:hover .cell:not(.label) {
  background: #f2f2f2;
  transition: 0.2s ease;
}

/*Table*/

/* TESTI */

blockquote {
  padding: 25px 20px;
  margin-bottom: 25px;
  border: none;
  background-color: var(--wht);

  border-radius: 15px;
}

blockquote p {
  margin: 0;
  font-size: 16.5px !important;
  color: var(--primary-color);
}

.testi-wrapper i {
  color: var(--accent);
}

.testi-avatar p,
.testi-avatar h3 {
  margin: 0px;
}

.testi-avatar {
  display: flex;
  align-items: center;
  gap: 10px;
}

span.quotes {
  color: var(--accent);
  font-size: 18px;
  font-weight: bold;
  padding: 0px 5px;
}

h3.name {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
}

.testi-img img {
  height: 80px;
  width: 80px !important;
}

.owl-nav {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.owl-nav i {
  font-size: 15px;
  background-color: var(--accent);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
}

/* TESTI */

.fntx {
  display: block;
}

.assu-wrapper {
  padding: 50px 10px;
  background: #ffffff;
  background-position: center bottom;
  border: 1px solid #e5e8eb;
  border-radius: 30px;
}

.assu-pastille-holder img {
  height: 220px;
}

.assu-pastille-holder {
  padding-top: 20px;
}

.list-wrapper {
  text-align: left;
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}

.bgdark {
  background-color: var(--dark);
}

.bgdark-2 {
  background-color: var(--dark2);
}

.list-wrapper i {
  margin-right: 10px;
  color: #ff7e4c;
}

.list-wrapper span {
  color: #ff7e4c;
  font-weight: 900;
}

.assu-wrapper h1 {
  margin-top: 0px;
  font-family: "DM Sans", sans-serif;
  font-size: 3rem;
  margin-bottom: 30px;
  color: #0e2029;
}

.hero {
  background: var(--body-bg-color);
}

.assu-wrapper p {
  font-size: 2rem;
  padding: 0px 20px;
}

.assu-img {
  padding: 20px 0px;
}

.pastille {
  width: 37%;
  position: absolute;
  top: 3%;
  left: -3%;
}

.txt-aligner {
  text-align: right;
}

.txt-aligner-l {
  text-align: left;
}

.big-tt {
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.2);
  font-size: 72px;
}

.sub-tt {
  font-family: "DM Sans", sans-serif;
  color: #0e2029;
  font-size: 3.9rem;
  line-height: 1.5em;
  margin-top: 0px;
}

.partner-logo {
  background: url("../img/banniere-assureur-Car.webp");
  width: 95%;
  height: 78px;
  background-repeat: no-repeat;
}

.lh12 {
  line-height: 1.2em !important;
}

.underline {
  border-bottom: 2px dotted #ff7e4c;
}

.ast {
  color: #ff7e4c;
}

* .img-responsive {
  margin: 0 auto;
}

.logo-thnk {
  margin: 0 auto;
}

.thnk-container {
  padding: 50px 0px;
}

.frame {
  background-color: #71c341;
  padding: 4.5% 50px 4.5% 50px;
  position: relative;
  color: #fff;
}

.frame p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.side-tt {
  font-size: 2.1rem;
  line-height: 1.3em;
}

.offres {
  color: #fff;
  padding: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  order: 3;
  position: absolute;
  z-index: 1;
  top: -5%;
  left: 4.7%;
}

.succ-ic {
  padding: 25px;
  border: 1px solid #eee;
  background-color: #ffffff;
}

.succ-ic img {
  width: 90px;
}

.navbar-form {
  padding: 2px 0px 0px 0px;
}

.flx-str {
  align-items: flex-start !important;
}

.elt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.elt-v {
  flex-direction: column;
  gap: 25px;
}

.a-right {
  text-align: right;
}

.b1 {
  border: 1px solid #ffffff;
}

.b2 {
  border: 1px solid red;
}

.b3 {
  border: 1px solid yellow;
}

.m-auto {
  margin: auto;
}

.bg-hero {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("../img/bg-hero.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fa-info-circle {
  font-size: 28px;
}

/* Block3 */

.mt-20 {
  margin-top: 20px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pd-15 {
  padding: 15px 0px;
}

.pd-40 {
  padding: 40px 0px;
}

.pd-50 {
  padding: 50px 0px;
}

.pd-80 {
  padding: 80px 0px;
}

.light-grey {
  background-color: #fafafa;
}

.light-crm {
  background-color: rgba(252, 244, 234, 0.5);
}

.bgp {
  background-color: #fff;
  color: #0e2029;
}

.grn-ic {
  color: #00d9a6;
}

.square-box {
  border: none;
  background-color: #fff;
  border-radius: 5px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-duration: 1.4s;
  animation-delay: 0.3s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  color: #202020;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

/*.square-box:hover {
    transform: translateY(-20px);
    box-shadow: 0px 18px 45px 0px rgba(0, 0, 0, .14);

}*/

.h-cards [class*="col-"]:not(:last-child) {
  margin-bottom: 15px;
}

.clr-bth {
  margin-bottom: 30px;
}

.ic {
  width: 20%;
}

.box-txt {
  width: 80%;
  text-align: left;
}

.box-txt p:not(.tt1) {
  margin-bottom: 0px;
}

.ic img {
  height: 70px;
}

.tt1 {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.navbar-default .navbar-form {
  border: none;
}

.clr {
  clear: both !important;
}

.lh-15 {
  line-height: 1.5em;
}

.fs-15 {
  font-size: 2.2rem;
  line-height: 1.6em;
}

.fs-14 {
  font-size: 1.7rem;
  line-height: 1.6em;
}

.fs-20 {
  font-size: 17px;
}

.custom-hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 2px solid #ff7e4c;
  width: 50px;
}

.item {
  position: relative;
}

.ts-title {
  margin-top: 0px;
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
}

.about-intro-text p {
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 1.5em;
}

.ic-l img {
  height: 100px;
}

.ic-l {
  margin-bottom: 25px;
}

@media (min-width: 1024px) {
  .box-style .row {
    position: relative;
  }

  .box-style .row .item .about-intro-text {
    padding: 50px;
    cursor: pointer !important;
  }

  .box-style .indicator {
    position: absolute;
    content: "";
    height: 100%;
    left: 33.3333333333%;
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: left 500ms cubic-bezier(0.694, 0, 0.335, 1);
    -o-transition: left 500ms cubic-bezier(0.694, 0, 0.335, 1);
    transition: left 500ms cubic-bezier(0.694, 0, 0.335, 1);
    width: 33.3333333333%;
    z-index: -1;
    -webkit-box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }

  .box-style .row .item:nth-child(1):hover ~ .indicator {
    left: 0;
  }

  .box-style .row .item:nth-child(3):hover ~ .indicator {
    left: 66.6666666%;
  }
}

::-moz-selection {
  background: #0e2029;
  color: #ffffff;
}

::selection {
  background: #0e2029;
  color: #ffffff;
}

textarea {
  resize: vertical;
}

footer {
  background-color: var(--footer);
  padding: 30px 0px;
  color: var(--body-p-color);
}

footer a {
  text-decoration: none;
  color: var(--body-p-color);
}

footer a:hover,
footer a:focus {
  text-decoration: none;
  color: var(--footer-color);
}

.tc {
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.6);
  color: #004d61;
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
  margin: 0 auto;
  width: 100%;
  word-break: break-word;
  text-align: center;
}

.tc font {
  font-size: 3rem;
}

/* Cookies */

.alflex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookies {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 22px 2rem;
  background: #0b2d40;
  transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 9999;
}

.cookies--hide {
  opacity: 0;
  bottom: -100%;
}

.cookie-button {
  box-shadow: none;
  outline: 0px;
  cursor: pointer;
  border-radius: 50px;
  padding: 10px 15px;
  margin-left: 10px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  background-color: #07beb8;
  color: #ffffff;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.cookie-button:hover,
.cookie-button:focus {
  background-color: #6816cf;
  color: #fff;
}

/* Cookies */
