:root {
  --red: rgb(255, 0, 51);
  --red-link: rgb(227, 6, 19);
  --light-red: rgb(214, 69, 65);
  --dark-red: rgb(112, 24, 29);
  --blue: rgb(10, 34, 57);
  --dark-blue: rgb(8, 29, 48);
  --button-hover: rgb(166, 40, 40);
  --green: rgb(59, 147, 118);
  --yellow: rgb(255, 165, 0);
  --grey: rgb(157, 167, 176);
  --dark-grey: rgb(108, 122, 136);
  --light-grey: rgb(206, 211, 215);
  --lighter-grey: rgb(241, 243, 241);
  --cream: rgb(250, 248, 244);
  --white: rgb(255, 255, 255);
  --black: rgb(0, 0, 0);
  --color: var(--dark-grey);
  --light-color: (--light-grey);
  --main-color: var(--red);
  --main-shade-color: #a62828;
  --main-tint-color: mix(var(--white), var(--main-color), 15%);
  --secondary-color: var(--blue);
  --secondary-shade-color: mix(var(--black), var(--secondary-color), 25%);
  --secondary-tint-color: mix(var(--white), var(--secondary-color), 15%);
  --border: var(--light-grey);
  --shadow: rgb(206, 211, 215);
  --default-text-color: #262626;
  --sec-light-grey: rgb(220, 221, 222);
  --sec-grey: rgb(138, 140, 142);
  --sec-dark-grey: rgb(99, 100, 102);
  --sec-cream: rgb(138, 140, 142);
  --sec-shade-cream: mix(var(--black), var(--sec-cream), 25%);
  --sec-orange: rgb(255, 132, 0) --sec-shade-orange: mix(var(--black), var(--sec-orange), 25%);
  --sec-yellow: rgb(255, 198, 0) --sec-shade-yellow: mix(var(--black), var(--sec-yellow), 25%);
  --sec-blue: rgb(35, 96, 147) --sec-shade-blue: mix(var(--black), var(--sec-blue), 25%);
  --sec-violet: rgb(133, 51, 118) --sec-shade-violet: mix(var(--black), var(--sec-violet), 25%);
  --sec-green: rgb(66, 172, 130) --sec-shade-green: mix(var(--black), var(--sec-green), 25%);
}

:root {
  --be-red: #ed002f;
  --be-dark-red: #930722;
  --be-light-grey: #f4f4f4;
  --be-dark-grey: #707070;
  --be-white: #FFFFFF;

}

.title-h2 {
  padding: 40px 0;
}

.br_mobile {
  display: none;
}

.br_desktop {
  display: inline;
}

.bg-darkred {
  background-color: var(--be-dark-red) !important;
}

.bg-lightgrey {
  background-color: var(--be-light-grey) !important;
}

.bg-darkgrey {
  background-color: var(--be-dark-grey) !important;
}

.bg-v-redgradient {
  background: transparent linear-gradient(180deg, var(--be-red) 0%, var(--be-dark-red) 100%) 0% 0% no-repeat padding-box !important;
}

.bg-h-redgradient {
  background: transparent linear-gradient(90deg, var(--be-red) 0%, var(--be-dark-red) 100%) 0% 0% no-repeat padding-box !important;
}

.bg-top-shadow {
  box-shadow: 0px -5px 36px #00000014 !important;

}

.bg-bottom-shadow {
  box-shadow: 0px 3px 15px #00000014 !important;
}

.bg-shadow {
  box-shadow: 0px 0px 36px #00000014 !important;

}

.text-h-redgradient {
  background: -webkit-linear-gradient(90deg, var(--be-dark-red) 0%, var(--be-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mb-32-px {
  margin-bottom: 32px !important;
}

.mb-16-px {
  margin-bottom: 16px !important;
}

.mt-32-px {
  margin-top: 32px !important;
}

.mt-16-px {
  margin-top: 16px !important;
}

.list-style-disc {
  list-style: disc;
  padding-left: 20px;
}

.be-btn {
  padding: 10px 30px;
  font-weight: 600;
  line-height: normal;
  border-radius: 1000px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

.button-red {
  background-color: var(--be-red);
  color: var(--be-white);
}

.button-red:hover {
  background-color: var(--be-dark-red);
  color: var(--be-white);
}

.button-dark-red {
  background-color: var(--be-dark-red);
  color: var(--be-white);
}

.button-dark-red:hover {
  background-color: var(--be-red);
  color: var(--be-white);
}

.button-white-red {
  background-color: var(--be-white);
  color: var(--be-red);
  border: solid 1px var(--be-red);
}

.button-white-red:hover {
  background-color: var(--be-red);
  color: var(--be-white);
}

.button-white-dark-red {
  background-color: var(--be-white);
  color: var(--be-dark-red);
  border: solid 1px var(--be-dark-red);
}

.button-white-dark-red:hover {
  background-color: var(--be-dark-red);
  color: var(--be-white);
}

@media all and (max-width: 768px) {
  .br_mobile {
    display: block;
  }

  .br_desktop {
    display: none;
  }
}

.carousel-scrollable {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.carousel-scrollable::-webkit-scrollbar {
  display: none;
}

.carousel-scrollable-container {
  display: flex;
  gap: 16px;
}

.carousel-scrollable-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 300%;
}

.carousel-scrollable-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.carousel-scrollable-card {
  background: #F4F4F4;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  width: 50%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.carousel-scrollable-card-image {
  width: 40%;
  object-fit: contain;
  max-width: 300px;
  height: auto;
}

.carousel-scrollable-card-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  flex: 1;
}

.card-content-title {
  font-size: 21px;
  line-height: 26px;
  font-weight: 500;
}

.card-content-text {
  flex: 1;
  font-size: 14px;
  line-height: 17px;
}

.card-content-button a:hover, .card-content-button a:focus, .card-content-button a:focus-visible{
  color:#707070 !important;
  text-decoration: none !important;
}

.card-content-button a {
  border: 1px solid #707070;
  border-radius: 1000px;
  padding: 5px 15px;
  text-align: center;
  color: #707070;
  background: transparent;
}

.carousel-indicator {
  display: flex;
  justify-content: end;
  margin-top: 20px;
}

.carousel-pagination {
  display: flex;
  background: #F4F4F4;
  border-radius: 35px;
  padding: 5px 10px;
}

.carousel-btn {
  border: none;
  background: transparent;
  cursor: pointer;
}

.carousel-btn:focus {
  outline: none !important;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 20px;
  align-items: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background .3s ease;
  border: none;
  padding: 0;
}

.carousel-dot:focus {
  outline: none !important;
}


.carousel-dot.active {
  background: #333;
}

.preamble {
    font-size: 21px;
    line-height: 28px;
}


@font-face {
  font-family: "Fira sans";
  src: url("./fonts/FiraSans-Regular.woff") format("woff");
  src: url("./fonts/FiraSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira sans";
  src: url("./fonts/FiraSans-Light.woff") format("woff");
  src: url("./fonts/FiraSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira sans";
  src: url("./FiraSans-Medium.woff") format("woff");
  src: url("./FiraSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html,
body {
  font-family: 'Fira Sans', sans-serif !important;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0;
}

.btn {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
  margin-top: 20px !important;
  padding: 10px 20px !important;
  vertical-align: middle !important;
  line-height: 1 !important;
  border: 1px solid transparent !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  text-align: center !important;
  transition: 0.2s all ease-in !important;
  border-radius: 20px !important;
  justify-content: center !important;
}

.btn:hover,
.btn:hover,
.btn:focus,
.btn:focus-visible,
.btn:focus-within,
.btn:active {
  background-color: var(--dark-red) !important;
  border-color: var(--dark-red) !important;
  color: var(--white) !important;
}

.logo-header-lp {
  height: 100%;
  margin: auto;
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover,
a:focus,
a:focus-visible,
a:focus-within {
  color: var(--red);
}



.promotion_main {
  margin-top: 10px;
}

.subtitlePromotion {
  line-height: 14px;
  color: #DCDDDE;
}

.promotionManager_dateLimite_main {
  font-size: 14px;
  line-height: normal;
}


#homePageBE {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}

.promotionContainer {
  width: 100%;
  height: 73px;
  padding: 10px 30px;
  font-size: 20px;
  line-height: 20px;
  position: relative;
  background: #ED002F;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  cursor: pointer;
  font-style: italic;
  font-weight: bold;
}

.hp-error-message {
  color: red;
  margin-top: 10px !important;
  font-size: 14px;
  display: none;
}

.carouselContainer {
  position: relative;
}

.carouselContainer,
.carousel,
.carousel-inner,
.carouselContainer .carousel-inner .carousel-item,
.carouselContainer .carousel-inner .carousel-item img {
  height: 400px;
  min-height: auto;
  border-radius: 20px;
}



.carouselContainer .carousel-inner .carousel-item img {
  border-radius: 20px;
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 10px;
}

.promotionContainerAction {
  width: 100%;
  padding: 10px 39px;
  background: lightgray;
  border-radius: 20px;
  height: 352px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ctaTitle {
  font-size: 40px;
  line-height: 34px;
}

.ctaSubtitle {
  font-size: 40px;
  line-height: 34px;
  font-weight: bold;
}

.ctaHeader {
  width: 100%;
  height: 50px;
  border-radius: 40px !important;
  font-size: 19px !important;
  font-weight: 450 !important;
  line-height: 18px !important;
  display: flex;
  align-items: center;
  box-shadow: 0px 3px 15px #4332327B !important;
}

.freeContact {
  font-size: 14px;
  margin-top: 10px !important;
}

.container-box-cta {
  width: 100%;
  border: solid 1px #707070;
  border-radius: 46px;
  display: flex;
  align-items: center;
}

.input-cta-box {
  height: 100%;
  border-radius: inherit;
  background-color: transparent;
  border: none;
  margin-left: 10px;
  width: inherit;
}

.input-cta-box:focus,
.input-cta-box:active {
  outline: none;
  background: transparent;
}

.button-cta-box {
  height: 100%;
  margin: 0 !important;
  border-radius: inherit !important;
  /*font-size: 14px !important;*/
}

.legal-text-cta {
  font-size: 10px;
  line-height: 14px;
  margin-top: 10px !important;
}

.other-choice-cta {
  font-size: 14px;
  margin-top: 5px !important;
  margin-bottom: 10px !important;
}

.tel-cta-number {
  font-size: 22px !important;
  line-height: 18px !important;
  margin: 0 !important;
  min-width: 194px;
  box-shadow: 0px 3px 15px #4332327B !important;
}

.imgClickHand {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: none;
}

.returnLineDesktop {
  display: none;
}

.returnLineDesktop::after {
  content: " ";
}

.customStar {
  color: white;
}

.containerAbsoluteCarousel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(24, 25, 26, .7);
}

.containerMoreThanAlarm {
  font-size: 25px;
  text-align: center;
  flex-wrap: wrap;
  display: flex;
  color: white;
  font-style: italic;
  font-weight: bold;
  margin-top: 20px !important;
  margin-bottom: 40px !important;
  line-height: 25px;
  text-transform: uppercase;
}

.my-2024 {
  position: absolute;
  width: 70px;
  z-index: 1;
  right: 20px;
  top: 20px;
  display: none;
}

.custom-cards {
  border: solid 1px #dee2e6;
  padding: 1rem 20px;
  border-radius: 20px;
  margin: 0 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.shadowFullPage>div {
  padding: 0 !important;
}

.title-h2 {
  padding: 40px 0;
}

.carousel-img {
  object-fit: contain;
  height: 250px;
  margin: auto;
  margin-bottom: 30px;
}

.carousel-inner {
  height: fit-content;
}

.carousel-item {
  height: 100%;
}

.carousel-control-prev-product,
.carousel-control-next-product {
  width: 5%;
}

.custom-row {
  height: 100%;
  margin: 0 5%;
}

.custom-li {
  height: auto !important;
  width: 100px !important;
  opacity: 1 !important;
  display: flex;
  flex-direction: column;
  text-indent: 0 !important;
  text-align: center;
}

.custom-li img:hover {
  filter: drop-shadow(0 0 0.8rem grey);
  transition: filter .2s linear
}

.carousel-products-indicators .active img {
  filter: drop-shadow(0 0 0.8rem grey) !important;
}

.carousel-products-indicators {
  position: relative;
  height: auto;
  align-items: flex-start;
}

.thumbnail-title {
  font-size: 1vh;
  text-wrap: wrap;
  text-align: center;
}

.col-picture {
  display: flex;
  justify-content: center;
}

.col-carousel-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
}

.carousel-control-prev-product-icon,
.carousel-control-next-product-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-product-icon {
  background-image: url('../pictures/back.webp');
}

.carousel-control-next-product-icon {
  background-image: url('../pictures/next.webp');
}

.floatingIcon {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.floatingText {
  width: 100%;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.diyTitle {
  font-size: 30px;
  line-height: 36px;
  font-style: "Fira sans";
  width: 70%;
}

.diyTitleMobile {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}

.diyTablev2,
.diyTablev2Mobile,
.diyTablev2 tbody,
.diyTablev2Mobile tbody,
.diyTablev2 tr,
.diyTablev2Mobile tr,
.diyTablev2 td,
.diyTablev2Mobile td {
  border: none;
  box-shadow: none;
  position: relative;
}

.diyV2TableBody {
  height: 48px;
}



.diyTablev2 .diyV2TableBody td:nth-child(1),
.diyTablev2Mobile .diyV2TableBody td:nth-child(1) {
  width: 60%;
}

.diyTablev2 .diyV2TableBody td:nth-child(2),
.diyTablev2 .diyV2TableBody td:nth-child(3),
.diyTablev2Mobile .diyV2TableBody td:nth-child(2),
.diyTablev2Mobile .diyV2TableBody td:nth-child(3) {
  width: 15%;
  text-align: center;
}

.diyTablev2 .diyV2TableBody td:nth-child(2):after {
  background-color: #F7F7F7;
  content: " ";
  width: 30px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 100%;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  height: 100%;
  z-index: 2;
}


.diyTablev2 .diyV2TableBody td:nth-child(3):after {
  background-color: transparent;
  content: " ";
  width: calc(50% + 26px);
  position: absolute;
  top: 0;
  left: 0;
  border-top: solid 1px #707070;
  border-right: solid 1px #707070;
  border-bottom: solid 1px #707070;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  height: 100%;
}


.diyTablev2:before {
  content: " ";
  position: absolute;
  border: solid 1px red;
  border-radius: 66px;
  top: -25px;
  bottom: 0;
  right: 19%;
  width: 12%;
  height: calc(100% + (25px*2));
  z-index: 3;
}

.diyTablev2Mobile:before {
  content: " ";
  position: absolute;
  border: solid 1px red;
  border-radius: 66px;
  top: -5%;
  bottom: 0;
  right: 16.5%;
  width: 17%;
  z-index: 2;
  height: 110%;
}

.border-left-radiused-26 {
  border-radius: 26px 0 0 26px;
}

.border-right-radiused-26 {
  border-radius: 0 26px 26px 0;
}

.font-light-grey {
  background-color: #F7F7F7;
}

.diyTablev2 tbody tr:hover {
  background-color: transparent;
}

.diyTableLogo {
  width: 23.5px;
  height: 23.5px;
  margin: auto;
}

.diy-11-px {
  font-size: 11px;
  line-height: 13px;
  font-weight: bold;
}

.diy-10-px {
  font-size: 10px;
  line-height: 12px;
  font-weight: bold;
}

.p-left-32 {
  padding-left: 32px;
}

.p-x-13 {
  padding-left: 13px;
  padding-right: 13px;
}

.text-centred {
  text-align: center;
}

#promotion {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

.articleQuestion {
  padding-bottom: 100px;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-left: 20px;
}

/*.articleQuestion:first-child {
  padding-top: 100px;
}*/
.funnel-integrated:not(.full-page) .articleQuestion:first-child {
    padding-top: 50px;
}
.full-page .articleQuestion:first-child {
    padding-top: 50px;
}

.articleQuestion.showed {
  opacity: 1;
}

.articleQuestion.showed.answered {
  padding-bottom: 30px !important;
}

h2.questionTitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  margin-bottom: 20px;
}

/*.containerFunnel{
		width: 100%;
		height: 500px;
		position: relative;
		overflow-y: auto;
		transition: height 0.5s ease;

	}*/
.containerFunnel {
  width: 100%;
  height: 500px;
  position: relative;
  overflow-y: auto;
  transition: height 0.5s ease;
  display: flex;
}

.containerFunnel.deployed {
  height: 700px;
  /*padding-bottom: 300px;*/
}

.shadowFullPage {
  position: relative;
}

.shadowFullPage:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  top: 0px;
  left: 0px;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 8px 0px inset;
}

.shadowFullPage:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 0px;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.1) 0px -8px 8px 0px inset;
}

/*.containerBar{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 20px;
		position: sticky;
		top: 0;
		gap: 10px;
		background-color: var(--white);
		z-index: 1;
	}*/

.containerBar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: sticky;
  top: 0;
  gap: 10px;
  background-color: var(--white);
  z-index: 1;
  width: 35%;
}

/*.segmentBar{
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 10px;
		justify-content: center;
		align-items: center;
    position: relative;
    width: 100%;
	}*/

.segmentBar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: end;
  position: relative;
  width: 100%;
}

.segmentBar:not(:last-child)::after {
  background-color: white;
  bottom: -5px;
  content: "";
  position: absolute;
  right: -18px;
  width: 10px;
  height: 10px;
}

.containerLabels {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  height: 100%;
}

/*.bar{
		width: 100%;
		height: 6px;
		background-color: rgba(255, 0, 51, 0.1);
		border-radius: 30px;
	}*/
.bar {
  width: 8px;
  height: 100%;
  background-color: rgba(255, 0, 51, 0.1);
  border-radius: 30px;
}

/*.bar_fill{
		width: 0%;
		max-width: 100%;
		height: 100%;
		background-color: var(--red);
		transition: width 0.5s ease-in-out;
		border-radius: inherit;
	}*/

.bar_fill {
  width: 100%;
  max-width: 100%;
  height: 0%;
  background-color: var(--red);
  transition: height 0.5s ease-in-out;
  border-radius: inherit;
}

.time-bar-count {
  position: absolute;
  bottom: 20px;
  right: 38px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.questions-wrapper {
  overflow-y: auto;
  padding: 0 10px;
  flex: 1
}

/*.funnel-question-main{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}*/

.funnel-question-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px;
}

.funnel-question-main form {
  max-width: 400px;
  width: 100%;
}

.label-radio {
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  margin: 0;
  text-transform: unset;
  font-weight: 600;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 5px 45px 5px 20px;
  color: #333333;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, .25);
  border-radius: 16px;
  position: relative;
  max-width: 400px;
}

.label-radio:before {
  content: '';
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 2px solid #313131;
}

.label-radio.selected:before {
  border-color: var(--main-color);
  background: var(--white);
}

.label-radio.selected:after {
  opacity: 1;
}

.label-radio:after {
  content: '';
  position: absolute;
  right: 25px;
  top: calc(50% - 5px);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: none;
  background-color: var(--main-color);
  opacity: 0;
}

.funnel-question-tips {
  opacity: 0;
  transition: all .5s ease;
}

/*.funnel-question-tips-content{
		max-width: 400px;
		margin: auto;
		margin-top: 10px;
		background-color: var(--success);
		color: white;
		padding: 10px;
		border-radius: 16px;
		font-weight: 500;
	}*/

.funnel-question-tips-content {
  max-width: 400px;
  margin-top: 10px;
  background-color: var(--success);
  color: white;
  padding: 10px;
  border-radius: 16px;
  font-weight: 500;
}

.tips-visible {
  opacity: 1;
}

.containerSubmitForm {
  border: solid 1px var(--black);
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  height: 40px;
}

.input-inline {
  width: 100%;
  padding: 0 15px;
  border-radius: inherit;
  border: none;
  height: 100%;
}

.input-inline:focus,
.input-inline:active {
  outline: none;
  background: transparent;
}

.btn-inline {
  margin: 0 !important;
  height: 100%;
  padding: 0 15px !important;
}

.legal-conf {
  max-width: 400px;
  font-size: 12px;
}

.errorMessage {
  max-width: 400px;
  color: var(--red);
  display: none;
}

.site-footer {
  color: white;
  background: var(--sec-dark-grey);
}

.site-footer a {
  font-size: 17px;
  color: white;
  cursor: pointer;
}

.site-footer p {
  font-size: 12px;
}

.img-number {
  width: 100%;
  max-width: 150px;
  margin: auto;
  display: block;
}

.containerFormWrapper {
  margin-top: 20px;

}

.messageUpdateEmailLead {
  display: none;
  font-weight: bold;
  font-size: 14px;
  margin: 0px auto;
  text-align: center;
  margin-bottom: 10px;
  color: white;
}

.white-container-input-btn {
  background-color: white;
  padding: 5px;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  line-height: normal;
  width: 75%;
  margin: auto;
}

.white-container-input-btn>.field {
  flex: 1;
  border: none;
  border-radius: inherit;
  padding: 5px 10px;
  min-width: 0px;
}

.white-container-input-btn>.field:focus,
.white-container-input-btn>.field:focus-visible,
.white-container-input-btn>.field:active {
  outline: none;
}

.white-container-input-btn>.submit {
  border-radius: inherit;
  border: none;
  background-color: var(--red);
  text-transform: uppercase;
  color: white;
  padding: 10px 20px;
  font-weight: 600;
}

input#popupPhone::placeholder {
  color: white;
}

input#popupPhone:focus,
input#popupPhone:focus-visible,
input#popupPhone:active {
  outline: none;
}

.errorMessagePopupPhone {
  display: none;
}

@media (min-width: 992px) {
  .site-footer a {
    font-size: 12px;
  }
}

@media (max-width: 992px) {

  .carousel-scrollable-column {
    flex-direction: row;
    gap: 16px;
    width: 100%;
    flex: 0;
  }

  .carousel-scrollable-row {
    display: contents;
  }

  .carousel-scrollable-card {
    min-width: 100%;
    flex-direction: column;
  }

  .carousel-scrollable-card {}

  .carousel-scrollable-card-image {
    width: 60%;
    margin: 0 auto 10px;
  }

  .carousel-scrollable-card-content {
    width: 100%;
  }

  .carousel-indicator {
    justify-content: center;
  }
}

@media all and (min-width: 767px) {

  .container-fluid-home-page {
    min-height: 650px;
  }

  .my-2024 {
    position: absolute;
    width: 100px;
    z-index: 1;
    right: 50px;
    top: 30px;
    display: none;
  }

  #homePageBE {
    width: 100%;
    display: block;
    position: relative;
    height: 100%;
    margin: 0;
    min-height: 650px;
  }

  .promotionContainer {
    height: 150px;
    width: 35%;
    position: absolute;
    right: 0;
    font-size: 30px;
    line-height: 30px;
    padding: 10px;
  }

  .carouselContainer {
    width: 65%;
    position: absolute;
    left: 0;
    padding-right: 20px;
  }

  .carouselContainer,
  .carousel,
  .carousel-inner,
  .carouselContainer .carousel-inner .carousel-item,
  .carouselContainer .carousel-inner .carousel-item img {
    height: 590px;
    border-radius: 30px;
  }

  .carouselContainer .carousel-inner .carousel-item img {
    border-radius: 30px;
    width: 100%;
    object-fit: cover;
  }

  .promotionContainerAction {
    position: absolute;
    height: 420px;
    width: 35%;
    right: 0;
    padding: 20px 24px;
    min-height: 410px;
    top: 170px;
  }

  .returnLineDesktop {
    display: block;
  }

  .returnLineDesktop::after {
    content: "";
  }

  .customStar {
    color: white;
    font-size: 44px;
  }

  .ctaTitle {
    font-size: 36px;
    line-height: 36px;
  }

  .ctaSubtitle {
    font-size: 36px;
    line-height: 36px;
    font-weight: bold;
  }



  .ctaHeader {
    height: auto;
    border-radius: 40px !important;
    line-height: 100% !important;
  }

  .freeContact {
    font-size: 20px;
    margin-top: 20px !important;
  }

  .container-box-cta {
    width: 100%;
    height: 40px;
    border: solid 1px #707070;
    border-radius: 46px;
    display: flex;
  }

  .legal-text-cta {
    font-size: 10px;
    line-height: 10px;
  }

  .other-choice-cta {
    font-size: 20px;
    margin-top: 10px !important;
  }

  .containerAbsoluteCarousel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 20px);
    height: fit-content;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(24, 25, 26, .7);
  }

  .containerMoreThanAlarm {
    font-size: 50px;
    text-align: center;
    flex-wrap: wrap;
    display: flex;
    color: white;
    font-style: italic;
    font-weight: bold;
    margin-top: 20px !important;
    margin-bottom: 40px !important;
    line-height: 45px;
    text-transform: uppercase;
  }

  .promotion_main {
    margin-top: -20px;
  }

  .carousel-img {
    height: 250px;
    margin-bottom: auto;
  }

  .col-carousel-text {
    margin-top: 30px;
  }

  .custom-row {
    margin: 0 10%;
  }

  .segmentBar p {
    position: relative;
  }

  .segmentBar p.step-completed:before {
    content: " ";
    background: var(--main-color);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    order: 1;
    margin-right: 10px;
    top: 2px;
    position: relative;
  }

  .segmentBar p.step-completed:after {
    content: " ";
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    width: 10px;
    height: 5px;
    display: inline-block;
    position: absolute;
    left: 3px;
    top: 7px;
    z-index: 1;
    transform: rotate(315deg);
  }





}

@media all and (max-width: 919px) {

  .button-cta-box {
    /*font-size: 11px !important;*/
    min-width: 118px;
  }

  .freeContact,
  .other-choice-cta {
    font-size: 16px;
  }
}


@media all and (min-width: 1600px) {

  .freeContact,
  .other-choice-cta {
    font-size: 20px;
  }
}

@media all and (max-width: 1200px) {
  .container-fluid-home-page {
    max-width: 100%;
  }

  .promotionContainerAction {
    bottom: 10px;
  }

  .promotionContainer {
    font-size: 24px;
    line-height: 24px;
  }
}

@media all and (max-width: 767px) {

  .custom-cards {
    margin: 0;
  }

  .logo-header-lp {
    width: 50%;
    margin: auto;
  }

  .promotionContainer {
    font-size: 20px;
    line-height: 20px;

  }

  .carousel-control-prev-product-icon,
  .carousel-control-next-product-icon {
    width: 30px;
    height: 30px;
  }

  .carousel-control-prev-product,
  .carousel-control-next-product {
    width: 10% !important;
  }

  .carousel-products-indicators {
    display: none;
  }

  .contentToHide {
    display: none;
  }

  .promotionContainerAction {
    padding: 10px 15px !important;
  }

  .bannerToResize {
    height: 100% !important;
  }

  .floatingIcon {
    position: absolute;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    right: 7%;
    display: none;
  }

  .floatingText {
    margin: auto;
    height: 100%;
  }

  #promotion {
    margin-top: 20px !important;
  }

  .funnel-integrated h2 {
    font-size: 20px;
  }

  .funnel-integrated h4 {
    font-size: 20px;
  }

  .questionTitle {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }

  .label-radio,
  .funnel-question-tips-content,
  .questions-wrapper .message {
    font-size: 14px !important;
  }

  .containerFunnel {
    flex-direction: column;
  }

  .containerBar {
    flex-direction: column;
    width: 100%;
  }

  .containerLabels {
    flex-direction: row;
  }

  .segmentBar {
    align-items: center;
  }

  .segmentBar:not(:last-child)::after {
    bottom: -20px;
    right: -5px;
  }

  .bar {
    width: 90%;
    height: 8px;
  }

  .bar_fill {
    width: 0%;
    max-width: 100%;
    height: 100%;
    transition: width 0.5s ease-in-out;
  }

  .articleQuestion {
    margin: 0;
  }

  /*.funnel-question-main {
    align-items: center;
  }*/

  .funnel-question-tips-content {
    margin: auto;
    margin-top: 10px;
  }

  .time-bar-count {
    bottom: 15px;
    right: 3%;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
  }

}



@media all and (min-width: 1400px) {
  .promotionContainerAction {
    bottom: 10px;
  }
}

#homePageBE p {
  margin: 0;
}

@media all and (max-width: 340px) {
  .segmentBar {
    font-size: 12px;
  }
}