/* 
        Primary colors: 
        Secondary colors: 
        Typography: 
*/

/* General CSS */
@font-face {
  font-family: NotoSans_Condensed-Regular;
  src: url(../font/NotoSans_Condensed-Regular.ttf);
}
@font-face {
  font-family: NotoSans_Condensed-Bold;
  src: url(../font/NotoSans_Condensed-Bold.ttf);
}
@font-face {
  font-family: NotoSans_Condensed-ExtraBold;
  src: url(../font/NotoSans_Condensed-ExtraBold.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 16px;
  font-family: "NotoSans_Condensed-Regular", sans-serif;
  font-weight: 100;
  scroll-behavior: smooth;
}

body {
}

a {
  color: #000000;
  text-decoration: unset;
  transition: color 1s;
  font-weight: 100;
}

p {
  margin-bottom: 15px;
  font-weight: 100;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "NotoSans_Condensed-Bold", sans-serif;
  font-weight: 100;
}

.container {
  width: 1100px;
  margin: 0 auto;
}

/* Section Title */
.title_box {
  text-align: center;
  margin-bottom: 65px;
}
.title_box h3 {
  font-size: 40px;
  color: #055599;
  margin-bottom: 20px;
}
.title_box p {
  font-size: 22px;
  color: #818181;
}

/* Buttons */
.btn {
  display: block;
  padding: 13px 0;
  width: 230px;
  text-align: center;
  border-radius: 50px;
  font-size: 19px;
  transition: background-color 1s;
  box-shadow: 1px 8px 16px 0px #00000026;
  border: none;
  cursor: pointer;
  border: 1px solid #055599;
}
.btn_blue {
  background-color: #055599;
  color: #ffffff;
}
.btn_blue:hover {
  background-color: #ffffff;
  color: #055599;
}
.btn_white {
  background-color: #ffffff;
  color: #055599;
}
.btn_white:hover {
  background-color: #055599;
  color: #ffffff;
}
.btn_white i {
  color: #055599;
  margin-right: 5px;
}
.btn_white:hover > i {
  color: #ffffff;
}
.btnc2a {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
}
.btnc2a i {
  color: #ffffff;
  font-size: 13px;
}
.btn_call2actiona {
  width: 60%;
}
.btn_call2actionb {
  width: 40%;
}
.btn_blue:hover > i {
  color: #055599;
}
.btn_form {
  width: 100%;
}

/* header */
.header {
  width: 1100px;
  margin: 0 auto;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 90px;
  background-color: #ffffff;
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
/* menu */
.logo {
  display: block;
  width: 230px;
}
.logo img {
  width: 100%;
}
.a_link {
  font-size: 19px;
  text-transform: capitalize;
}
.a_link:hover {
  color: #055599;
}
.a_link_btn {
  display: block;
  background-color: #055599;
  color: #ffffff;
  padding: 8px 0;
  width: 150px;
  text-align: center;
  border-radius: 50px;
  font-size: 18px;
  transition: background-color 1s;
}
.a_link_btn:hover {
  background-color: #0555990a;
  color: #055599;
}
.menu {
  grid-gap: 15px;
}
.h1-menu {
  display: flex;
  align-items: center;
  height: 100%;
}
.h2-menu {
  display: flex;
}
.header .h2-menu .menu {
  clear: both;
  max-height: 0;
  /* transition: max-height 0.2s ease-out; */
  display: flex;
  align-items: center;
}
/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  position: relative;
  user-select: none;
}
.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 20px;
}
.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.header .menu-icon .navicon:before {
  top: 7px;
}
.header .menu-icon .navicon:after {
  top: -7px;
}

/* menu btn */
.header .menu-btn {
  display: none;
}
.header .menu-btn:checked ~ .h2-menu .menu {
  max-height: 340px;
  padding: 20px;
  background-color: #ffffff;
}
.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* Hero */
#hero {
  width: 100%;
  height: 100vh;
}
.hero_hcont {
  width: 100%;
  height: 100%;
}
.hero_vcont {
  width: 100%;
  height: 100%;
  position: relative;
}
.owl-stage-outer,
.owl-stage,
.owl-item,
.item {
  width: 100%;
  height: 100%;
}
.hero_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero_overlay {
  width: 100%;
  height: 100%;
  background-color: #055599;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  opacity: 0.3;
}
.hero_item {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero_info {
  display: block;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(0%, -50%);
  z-index: 999;
}
.hero_info h2 {
  font-size: 50px;
  color: #ffffff;
  text-transform: capitalize;
  font-family: "NotoSans_Condensed-Bold", sans-serif;
  margin-bottom: 20px;
  line-height: 1;
}
.hero_info h3 {
  font-size: 25px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 30px;
  line-height: 1;
  font-family: "NotoSans_Condensed-Regular", sans-serif;
}
.btn_box {
  display: flex;
  grid-gap: 20px;
}

/* Boutique */
#kit {
  padding: 100px 0;
  background-color: #f9fafb;
}
.boutique_article {
  width: 900px;
  margin: 0 auto;
}
.boutique_item {
  display: flex;
  width: 100%;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;

  position: relative;
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 17%);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.bi_box {
  flex: 1;
  width: 100%;
  height: 100%;
}
.barticle_img {
  width: 100%;
  height: 100%;
}
.barticle_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.temoignage_carousel {
  position: relative;
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 17%);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border-radius: 20px;
}
.temoignage_carousel .owl-prev {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translate(0%, -50%);
}
.temoignage_carousel .owl-next {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(0%, -50%);
}
.temoignage_carousel .owl-nav [class*="owl-"] {
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: #055599;
  font-size: 18px;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  background: #ffffff;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  transition: color 1s, background-color 1s;
  box-shadow: 1px 8px 16px 0px #00000026;
}
.temoignage_carousel .owl-prev i,
.temoignage_carousel .owl-next i {
  color: #055599;
  font-size: 20px;
}
.temoignage_carousel .owl-nav [class*="owl-"]:hover {
  background: #055599;
}
.temoignage_carousel .owl-nav [class*="owl-"]:hover > i {
  color: #ffffff;
}
.temoignage_carousel .owl-dots {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.temoignage_carousel .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  background: #055599;
  border-radius: 30px;
}
.temoignage_carousel .owl-dots .owl-dot.active span,
.temoignage_carousel .owl-dots .owl-dot:hover span {
  background: #6793b8;
}

.barticle_rating {
  display: flex;
  grid-gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.barticle_rating ul {
  display: flex;
  list-style: none;
  text-decoration: none;
}
.barticle_rating ul li i {
  color: #ffc107;
  font-size: 13px;
}
.barticle_rating p {
  margin: 0;
}
.barticle_info {
  position: relative;
  padding: 30px;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}
.barticle_info h4 {
  font-size: 31px;
  margin-right: 50px;
  margin-bottom: 10px;
}
.barticle_prix {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
.bap_1 {
  font-size: 32px;
  color: #055599;
  font-family: "NotoSans_Condensed-Bold", sans-serif;
}
.bap_2 {
  font-size: 20px;
  color: #05559963;
  text-decoration: line-through;
}
.bap_3 {
  font-size: 15px;
  background-color: #05559936;
  color: #061255;
  padding: 5px;
  border-radius: 7px;
}
.bar_cara {
  list-style: none;
  padding-left: 5px;
  margin: 20px 50px 20px 0;
}
.bar_cara li {
  margin-bottom: 5px;
  font-size: 18px;
}
.bar_cara li i {
  font-size: 18px;
  color: #4caf50;
  margin-right: 10px;
}
.bar_btn {
  display: flex;
  grid-gap: 10px;
}

/* Temoignage */
#temoignages {
  padding: 100px 0 200px 0;
  background-color: #ffffff;
}
.temoignage_article {
  width: 1100px;
  margin: 0 auto;
}
.temoignage_item {
  display: flex;
  width: 100%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block !important;
}

.tem_info {
  display: flex;
  align-items: center;
  grid-gap: 15px;
}
.ti_img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
}
.ti_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ti_name h5 {
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.ti_name p {
  margin: 0;
  font-size: 17px;
  text-transform: capitalize;
  color: #787878;
}
.tem_p {
  font-size: 20px;
  color: #767676;
}
.quote_i i {
  font-size: 40px;
  color: #6793b8;
}
.barticle_info_tem {
  display: grid;
  align-items: center;
  padding: 30px 90px;

  background: #eff6ff;
  background: linear-gradient(
    29deg,
    rgba(239, 246, 255, 1) 0%,
    rgba(255, 247, 237, 1) 100%
  );
}

/* Tutoriels */
#tutoriels {
  padding: 100px 0;
  background: #055599;
  background: linear-gradient(
    360deg,
    rgba(3, 59, 92, 0.35) 0%,
    rgba(255, 255, 255, 1) 29%,
    rgba(255, 255, 255, 1) 62%,
    rgba(3, 59, 92, 0.27) 100%
  );
}
.tuto_type {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
}
.tuto_type i {
  font-size: 22px;
}
.tt_red {
  background-color: #fee2e2;
}
.tt_red i {
  color: #f44336;
}
.tt_blue {
  background-color: #b6e8ff;
}
.tt_blue i {
  color: #3f51b5;
}
.video_tuto {
  width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}
.video_tuto h4 {
  font-size: 20px;
  margin-bottom: 16px;
}
.video_tuto p {
  font-size: 20px;
  margin-bottom: 0;
}
.ap_video {
  width: 350px;
  margin: 0 auto;
  display: grid;
  grid-gap: 15px;
}
.ap_video input {
  width: 100%;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #b9b7b7;
}
.video_tuto img {
  width: 500px;
  margin: 50px 0;
}
.btn_optin {
  width: 100% !important;
}
.btn_optin i {
  color: #ffffff;
  margin-right: 5px;
}
/* Accordion */
.faq-accordion {
  display: grid;
  align-content: center;
  width: 75%;
  margin: 0 auto;
}
.faq-accordion-inner {
  display: grid;
  row-gap: 1.5rem;
}
.faq-accordion-title {
  transition: 0.2s;
  font-size: 20px;
  font-family: "NotoSans_Condensed-Regular", sans-serif;
  font-weight: 100;
  display: flex;
  align-items: center;
  grid-gap: 15px;
}
.faq-accordion-header {
  display: flex;
  column-gap: 0.5rem;
  padding: 1.25rem 2.5rem 1.25rem 2.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}

.faq-accordion-desc {
  padding: 0 3rem 1.25rem 3rem;
  font-size: 18px;
}

.faq-accordion-icon {
  font-size: 1rem;
  height: max-content;
  transition: 0.3s;
  color: #9c9c9c;
}

.faq-accordion-item {
  box-shadow: 0 4px 13px rgb(38 38 38 / 12%);
  border-radius: 20px;
  position: relative;
  transition: all 0.25s ease;
}
.faq-accordion-item:hover {
  background-color: #05559914;
}
.faq-accordion-item::after {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.25rem 0 0 0.25rem;
}

.faq-accordion-content {
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}

/*Rotate icon and add font weight to titles*/
.faq-accordion-open .faq-accordion-icon {
  transform: rotate(180deg);
}
.faq-accordion-open .faq-accordion-title {
  color: #055599;
  font-size: 24px;
}
.faq_aide {
  margin: 50px 0;
  padding: 50px;
  background: #033b5c;
  border-radius: 20px;
}
.faqa_inner {
  text-align: center;
}
.faqa_inner h6 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 20px;
}
.faqa_inner p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
}
.bar_btn2 {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.faq_title {
  text-align: center;
  margin: 70px 0 50px 0;
}
.faq_title h4 {
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: capitalize;
}
/* A propos */
#apropos {
  padding: 100px 0;
  background: #055599;
  background: linear-gradient(
    360deg,
    rgba(3, 59, 92, 0.35) 0%,
    rgba(255, 255, 255, 1) 29%,
    rgba(255, 255, 255, 1) 62%,
    rgba(3, 59, 92, 0.27) 100%
  );
}
#valeur {
  background-color: #f9fafb;
  padding: 100px 0;
}
.ap_box {
  display: flex;
  width: 1100px;
}
.apb_1 {
  flex: 1.5;
  display: flex;
  align-items: center;
}
.apb_2 {
  flex: 1;
}
.apb_img {
  position: relative;
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 17%);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.apb_img img {
  width: 100%;
  height: 100%;
  display: block;
}
.apb_info h4 {
  font-size: 27px;
  margin-bottom: 20px;
}
.apb_info {
  padding: 50px;
}
.apb_info p {
  font-size: 20px;
}

.ap_valeurs {
  margin: 80px 0;
}
.ap_valeurs h4 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 50px;
  text-transform: capitalize;
}
.apv_inner {
  display: flex;
  grid-gap: 20px;
  width: 1050px;
  margin: 0 auto;
}
.apv_box {
  flex: 1;
}
.apvb_in i {
  background: #055599;
  color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin: 0 auto;
}
.apvb_in {
  display: grid;
  grid-gap: 20px;
  text-align: center;
}
.apvb_in h5 {
  font-size: 20px;
}
.apvb_in p {
  font-size: 18px;
}
.ap_rev {
  background: #eff6ff;
  background: linear-gradient(
    29deg,
    rgba(239, 246, 255, 1) 0%,
    rgba(255, 247, 237, 1) 100%
  );
  border-radius: 20px;
  padding: 50px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.apr_box {
  display: grid;
  grid-gap: 10px;
  text-align: center;
}
.apr_box span:first-child {
  font-size: 50px;
  font-family: "NotoSans_Condensed-Bold", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 5px;
}
.apr_box span:last-child {
  font-size: 20px;
}
.apr_box span:first-child i {
  font-size: 30px;
  color: #f97316;
}
.apr_box1 span:first-child {
  color: #2196f3;
}
.apr_box2 span:first-child {
  color: #f97316;
}
.apr_box3 span:first-child {
  color: #16a34a;
}

/* Contact */
#contact {
  padding: 70px 0;
  background-color: #ffffff;
}
.contact_box {
  display: flex;
}
.con_box {
  flex: 1;
  padding: 0 30px;
}
.con_box h5 {
  font-size: 23px;
  margin-bottom: 40px;
}
.form_row {
  display: flex;
  grid-gap: 15px;
}
.form_col {
  flex: 1;
  display: grid;
  grid-gap: 5px;
}
.form_box {
  display: grid;
  grid-gap: 20px;
}
.form_box label {
  font-size: 15px;
}
.form_box input,
.form_box textarea {
  padding: 10px 15px;
  border-radius: 7px;
  border: 1px solid #959595;
}
.form_box textarea {
  height: 150px;
}
.form_box input::placeholder,
.form_box textarea::placeholder {
  color: #d5d5d5;
}
.btn_form i {
  color: #ffffff;
  margin-right: 5px;
}
.form_case {
  display: flex;
  grid-gap: 15px;
}
.c_info h6 {
  font-family: "NotoSans_Condensed-Regular", sans-serif;
  margin-bottom: 10px;
  font-size: 18px;
}
.c_info a {
  font-size: 20px;
  margin-bottom: 4px;
  display: block;
}
.c_info p {
  font-size: 15px;
  margin: 0;
  color: #9f9f9f;
}
.form_box2 {
  display: grid;
  grid-gap: 30px;
}

/* Footer */
footer {
  background-color: #111827;
  padding: 70px 0;
}
.f_logo {
  display: block;
  width: 150px;
}
.f_logo img {
  width: 100%;
}
.footer_box p,
.footer_box a,
.footer_box h6,
.f_copyright p,
.f_pages ul li a {
  color: #fff;
}
.footer_inner {
  display: flex;
  grid-gap: 40px;
}
.footer_box_a {
  flex: 2;
}
.footer_box_b {
  flex: 1;
}
.footer_box h6 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.f_list,
.f_sm {
  list-style: none;
}
.f_list li {
  margin-bottom: 10px;
}
.f_sm {
  display: flex;
  grid-gap: 20px;
}
.f_sm li a i {
  color: #ffffff;
  transition: color 1s;
}
.f_sm li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e283b;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background-color: #1e283b;
  width: 40px;
  height: 40px;
  border-radius: 3px;
}
.f_sm li a:hover > i {
  color: #055599;
}
.footer_box p {
  margin: 20px 0;
  font-size: 17px;
}
.footer_inner2 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.f_pages ul {
  list-style: none;
  display: flex;
  grid-gap: 15px;
}
.f_hr {
  width: 100%;
  height: 1px;
  background-color: #242f45;
  margin: 50px 0;
}
.f_list li a i {
  color: #0d68ae;
  margin-right: 10px;
  font-size: 14px;
}
.f_optin {
  margin-top: 20px;
}
.f_optin label {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
.optin_box {
  display: flex;
}
.optin_box input {
  flex: 5;
  padding: 13px 12px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border: 1px solid #3f4f72;
  background-color: #263044;
  color: #ffffff;
}
.optin_box a {
  background-color: #055599;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: background-color 1s, color 1s;
}
.optin_box a i {
  color: #ffffff;
  font-size: 20px;
}
.footer_box a:hover,
.f_pages ul li a:hover {
  color: #0d68ae;
}
.optin_box a:hover {
  background-color: #ffffff;
}
.optin_box a:hover > i {
  color: #0d68ae;
}

#success_message h3 {
  color: #005b4d;
  text-align: center;
}
#error_message h3 {
  color: #f44336;
  text-align: center;
}

/* Video Debloque */
.ap_video input[type="text"],
.ap_video input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.ap_video button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.video-container {
  display: none;
  padding: 0;
  margin: 50px 0;
  border-radius: 8px;
}

.video-container video {
  width: 350px;
  border-radius: 4px;
}

.ap_video .error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}
.ap_video button {
  border: 1px solid #cccccc;
}
#unlockForm {
  margin: 30px 0;
}

/* Kit Popup */
/* Styles for dialog window */
#small-dialog {
  background: white;
  padding: 20px 30px;
  text-align: left;
  width: 1000px;
  margin: 40px auto;
  position: relative;
  border-radius: 5px;
}

/**
 * Fade-zoom animation for first dialog
 */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;

  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;

  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);

  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;

  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;

  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;

  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Pop Up */
.contenu_kit {
  display: flex;
  flex-wrap: wrap;
}
.kit_each {
  display: flex;
  grid-gap: 10px;
  width: 50%;
  margin-bottom: 20px;
}
.kit_each span {
  background-color: #055599;
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kit_info p {
  color: #797878;
  margin: 0;
}
#small-dialog h1 {
  font-size: 23px;
  margin-bottom: 20px;
}
.mfp-close-btn-in .mfp-close {
  color: #ffffff !important;
  background-color: #055599 !important;
  border-radius: 50% !important;
}
.mfp-close {
  right: -23px !important;
  top: -23px !important;
  opacity: 1 !important;
}

.qarlyne-marque img {
  width: 150px;
}
.qarlyne-marque {
  position: absolute;
  bottom: 5%;
  left: 5%;
  z-index: 99;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  background-color: #ccc;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.main {
  grid-column: span 2;
  grid-row: span 2;
}
.kit_img_number {
  position: absolute;
  bottom: 0;
  right: 0px;
  background-color: #055599;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.kit_title {
  position: absolute;
  bottom: 0;
  left: 0px;
  background-color: #055599a8;
  color: #fff;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.image_kit {
  margin-bottom: 30px;
}

/* Avant Apres */
#av-ap {
  padding: 70px 0;
  background-color: #ffffff;
}
.cas_inner {
  display: flex;
  width: 83%;
  margin: 0 auto;
  grid-gap: 1%;
}
.cas_a {
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
}
.cas_img {
  width: 450px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 17%);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.cas_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#kit .title_box p {
  font-size: 25px;
}
.cas_info {
  background-color: #055599;
  width: 380px;
  height: 70px;
  padding: 0 20px;
  margin: 0 auto;
  position: absolute;
  bottom: -18%;
  left: 50%;
  transform: translate(-50%, -28%);
  border-radius: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cas_avant {
  background-color: #0555999e;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cas_apres {
  background-color: #0555999e;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cas_avant span,
.cas_apres span {
  font-family: "NotoSans_Condensed-Bold", sans-serif;
  font-size: 20px;
  color: #ffffff;
}
.cas_info span {
  color: #ffffff;
  font-size: 19px;
}
.cas_box {
  margin-bottom: 100px;
}
.cas_box h5 {
  font-size: 30px;
  text-transform: capitalize;
  background-color: #055599;
  color: #ffffff;
  width: 100px;
  border-radius: 10px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
}

/* pourquoi restaurer vos phares */

#benefits {
  padding: 70px 0;
  background-color: #f9fafb;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 6rem 0;
}

.benefit-item {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  box-shadow: 10px 10px 28px 0px rgb(0 0 0 / 20%);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.benefit-item h4,
.technical-note h5 {
  font-size: 20px;
  color: #055599;
  margin-bottom: 10px;
}
.benefit-item h5,
.technical-note p {
  font-size: 16px;
  font-family: "NotoSans_Condensed-Regular", sans-serif;
  color: #055599;
}
.technical-note {
  margin-bottom: 3rem;
  border-left: 7px solid #055599;
  background: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  box-shadow: 10px 10px 28px 0px rgb(0 0 0 / 20%);
  text-align: center;
  transition: transform 0.3s ease;
}
.cta-section {
  text-align: center;
  margin: 100px 0 50px 0;
}
.cta-section h6 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}
.cta-section p {
  font-size: 24px;
  margin-bottom: 30px;
  color: #fff;
}
.cta-section {
  text-align: center;
  margin: 100px 0 50px 0;
  background-color: #055599;
  padding: 50px;

  border-radius: 15px;
  box-shadow: 10px 10px 28px 0px rgb(0 0 0 / 20%);
  text-align: center;
  transition: transform 0.3s ease;
}
.btn_cta_section {
  width: 350px;
  margin: 0 auto;
}
