/********** Template CSS **********/

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #90aeba;
    --secondary: #bdecff;
    --light: #f0f0f0;
    --dark: #59595b;
    --yellow: #FFD814;
    --orange: #FCD200;
    --bluemagic: #061941;
}
body  {color: var(--bluemagic)}
img {    max-width: 100%;  height: auto !important;}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.text-primary {
  color: var(--primary) !important;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 400 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 400 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 400 !important;
}
@media (min-width: 1200px) {
 h1,
 .h1 {
  font-size:3rem !important;
  line-height: 1em;
 }
}

@media (min-width: 1200px) {
 h2,
 .h2 {
  font-size:2rem !important;
  margin-bottom: 30px !important
 }
}

/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--yellow), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}
.bg-bluemagic {
    background: var(--bluemagic);
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}
.bg-light {
  background-color: var(--light) !important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {color: var(--bluemagic)}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.btn.btn-dark,
.btn.btn-dark::after {
    background: var(--yellow) !important;
    color: var(--bluemagic);
    border: var(--orange) !important;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%);
    line-height: 1em;
    font-weight: 600;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}
.btn.btn-dark:hover {
    background: #F7CA00 !important;
    border-color: #F2C200 !important;}

.btn.btn-dark span {font-size: 80%; line-height: 1em;font-weight: 400;}


.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: var(--bluemagic);
}


/*** Navbar ***/

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 45px 0;
    font-family: 'Roboto Slab', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: white !important;
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--bluemagic) transparent transparent transparent;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bluemagic) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 99px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bluemagic) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    padding: 4rem 0;
    background-color: var(--white) !important;
    min-height: 80vh;
}
.hero-header  ul {list-style-type: none;}

.hero-header .bloc-header:after {
    content: ""; 
    width: 250px;
    height: 75px; 
    display: block;
    z-index: 9;
    background:  url(../img/labels-papillon.webp) no-repeat center 100%;
    background-size: 100% auto;
    margin: 20px auto 0;
    position: relative;
    max-width: 100%
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--bluemagic);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 6px;
    left: 0;
    background: url(../img/screenshot-frame.webp) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 600px;
    height: 387px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--bluemagic);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item *,
.examples-carousel .owl-item .testimonial-item,
.examples-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item{
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p, {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav,.testimonial-carousel .owl-nav,.examples-carousel .owl-nav,.examples-carousel .owl-nav  {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    /*! position: absolute; */
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next,
.examples-carousel .owl-nav .owl-prev,
.examples-carousel .owl-nav .owl-next{
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--bluemagic);
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover,
.examples-carousel .owl-nav .owl-prev:hover,
.examples-carousel .owl-nav .owl-next:hover {
    background: var(--bluemagic);
}


.examples-carousel .owl-nav .owl-prev,.testimonial-carousel .owl-nav .owl-prev {position:absolute; left: -50px; top: 50%}
.examples-carousel .owl-nav .owl-next,.testimonial-carousel .owl-nav .owl-next {position:absolute; right: -50px; top: 50%}

.examples-carousel li {list-style-type: none; padding: 10px 0 0; border-top: 1px solid rgba(0,0,0,0.1); margin-bottom: 30px}
.examples-carousel ul {padding: 0}
.examples-carousel li span {width: 50%; float: left}
.examples-carousel li span.align-content-end {float: right; text-align: right;font-weight:500;}

#featurestep .examples-carousel li {border: none; margin: 0}
#feature .examples-carousel li {min-height: 40px; display: block}
#feature .examples-carousel li p {display: block; float: left}

/*** FAQ ***/

details.rounded {border-radius: 10px 10px 0px 0px !important}
details:last-child {border-radius: 0px 0px 10px 10px !important}
details summary:marker {display: none !important;}
details p {font-size: 0.9rem; margin-top: 10px; margin-bottom:0; text-align: justify}
details summary {font-weight: 500}
details {border-bottom: 1px solid rgba(0,0,0,0.1) !important;}
.product-selection details {border-top: 1px solid rgba(0,0,0,0.1) !important;}

/*** ABOUT ***/

#about ul {padding: 0}
#about li {padding-left: 0; list-style-type: none}

#contact {width: 100%; overflow: hidden;position: relative}
#contact form div {transition: ease-in-out 0.5s all; -webkit-transition: ease-in-out 0.5s all;}
.hide_block_form {margin-left: -200%; width: 100%;opacity: 0;}
.show_block_form {left: auto; opacity: 1;  }
.hide_block_form2 {margin-left: 100%; width: 100%;opacity: 0; margin-top: -285px }
.show_block_form2 {left: auto;  opacity: 1; margin-top: -285px }
.form-control {margin: 10px auto}
textarea#message {height: 100px;}
.bi.h1 {font-size: 3rem !important}

/*** Footer ***/

.footer {
    padding-top: 4rem;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    color: var(--bluemagic);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f285";
    font-family: "bootstrap-icons" !important;
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(0,0,0, .1);
}

.footer .copyright a {
    color: var(--bluemagic);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer a {color: var(--bluemagic);}

#magic-form .clearfix > div {display: contents}

.table h4 {padding: 30px 30px 0; min-height: 90px}
.table .content {  background: #fff;  color: var(--bluemagic);  border-radius: 15px; text-align: center; border: 3px solid var(--light);box-shadow: 0 0 20px rgba(0,0,0,0.1);}
.table h3 {padding: 15px;border-top: 1px solid rgba(0,0,0,0.1) !important;}
.hero-header h3 {border: none !important;padding-top: 0;padding-bottom: 15px !important}
.table i {font-size: 30px}
.table img {padding: 0; border-bottom: 1px solid rgba(0,0,0,0.1) !important;width: 100%}
.table p {padding: 5px 10px;margin: 0}
.table .col-md-3:nth-child(3) .content {background: var(--secondary)}
.standart-selection-item {text-align: center}
.product-selection.row.table {margin: 0px}
.product-selection-item {margin-bottom: 30px}
.product .btn.btn-dark {margin: 0 auto; text-align: center}

table td:nth-child(2) {padding: 0 !important}
table {  border-collapse: collapse;  margin: 0;  padding: 0;  width: 100%;  table-layout: fixed;    background: #fff;    border-radius: 15px;    }
table caption {  font-size: 1.5em;  margin: .5em 0 .75em;}
table tr {border-top: 1px solid rgba(0,0,0,0.1)}
table i {font-size: 30px}
table tr:nth-child(3) {background: var(--secondary)}
table th,table td { padding: .625em;  text-align: center;}
table td:first-child {font-weight: 600}
table th {  font-size: .8em;    font-weight: 400}
table td img {width: 100% !important;}

blockquote {background: #fff; padding: 20px 30px; border-radius: 0 20px 20px 0; border-left: 5px solid var(--primary);}

h1 {color:white; text-align: center; }
h1 span {color: white}
h1 img {display: block; margin: 0 auto}
h1 .extrasmall {font-size: 40%; display: block; line-height: 1em}
.smalltext {font-size: 70% }

/* MODAL */

.modal-content {display: block;padding: 30px;}
.modal-body {width: 100%;display: block;padding: 0;/* max-height: 80vh; *//* overflow-y: auto; */}
.modal-dialog.modal-dialog-centered {min-width: 50%;/* max-height: 80vh; *//* overflow: auto; */}
.modal-content { border: none;    border-radius: 1.5rem;}
.modal-content .btn-close {display: block;float: right;right: 0px;padding: 20px;position: absolute;top: 0;z-index: 99;}
.modal-header {flex-direction: column;align-items: start;margin: 30px;padding: 0;}
.modal-header.text-center {align-items: center}
.papillon-selection { display: flex; flex-wrap: wrap; gap: 20px;}
.papillon-selection-item { flex: 1; max-width: calc(33.33% - 20px);  box-sizing: border-box;  text-align: center;}
.papillon-selection-item img {max-width: 100%;height: auto; min-width: 50px;}
.papillon-selection-item p {margin-top: 10px;}
.selected-img {border: 2px solid rgb(58, 58, 58); }
.product_name { font-size: 9px;}
.modal-content .papillon-selection.choose-papillons-content  { display: block;  padding: 0 30px;  text-align: center; width: 100%;float: left;position: relative;}
.modal-content .papillon-selection.choose-papillons-content .papillon-selection-item {float: left;max-width: 16.6%;}
.modal-content .papillon-selection.choose-papillons-content .papillon-selection-item img {max-width: 100%;min-width: auto;}
.modal-body #validateSelectionBtn, .modal-body #closeBtnChooseMaquetteModal, .modal-body #closeBtncreateAccountModal, 
.modal-body #closeBtnChooseQuantityModal, .modal-body #closeBtncreatePaymentModal, .modal-body #btn_qty_valider {margin: 0 auto;margin-left: -100px;width: 200px;left: 50%;position: relative}
.modal-content #closeBtncreatePaymentModal {background: #59595b !important; color: #fff; font-weight: 400; font-size:12px }
.papillon-selection-item .selected-img {border-radius: 10px}
.maquette-selection, #account, .standart-selection, .reassurance  {margin: 0 auto; text-align: center;margin: 30px;padding: 0;}
.reassurance img {max-width: 550px;width: 100%;}
.maquette-selection-item {display: inline-block}
.modal-body .form-control, .ElementsApp input.InputElement {border: none;box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%);color: var(--dark);padding: 15px;}
.modal-body #choose_qty .form-control {max-width: 200px}
.modal-footer {align-items: stretch; justify-content: space-between;}

#payment-form {    width: 500px;    max-width: 80%;    margin: 0 auto;   }
#payment-button {    display: none;  }
#btn_pay{    margin-top:15px;  }
.loader {background: url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/images/loading.gif') no-repeat center center;
height: 100px;width: 100px;position: absolute;top: 50%;left: 50%;margin: -50px 0 0 -50px;}
#card-element {padding: 10px;box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%) ;border-radius: 5px}
#cgv2 {    position: absolute;  margin-top: 5px;}
.label-cgv {margin-left: 30px; text-align: left;}

#createPaymentModal .recapitulatif {  margin: 0px;  padding: 10px;  background: #e9e9e9;}
#createPaymentModal .recapitulatif .img-fluid {margin: 15px 0;    border-radius: 10px;    box-shadow: 0 0 10px rgb(0 0 0 / 10%);}
#createPaymentModal .modal-header.text-center {margin-bottom: 0}
#createPaymentModal .recapitulatif details {padding: 10px 20px;background: #fff;border-radius: 10px !important;line-height: 1em;}
#createPaymentModal .recapitulatif details p {padding: 0}
#createPaymentModal .recapitulatif p {font-size: 13px;line-height: 1.2em;margin-bottom: 10px;}
#createPaymentModal #payment_form {margin-top: 15px}
#createPaymentModal .recapitulatif .col-sm-8 {margin: 15px 0}
.product-selection details summary { background: var(--light);     box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%);max-width: 200px; margin: 5px auto; padding: 5px; border-radius: 5px}

.hero-header .bloc-text-header {max-width: 50%; margin: 0 auto; text-align: center}

.menu { display: flex;     flex-direction: column;     padding-left: 0;    margin-bottom: 0; flex-direction: row;    list-style: none;}
.menu a {  position: relative;    margin-right: 25px;    padding: 20px 0;    font-family: 'Roboto Slab', sans-serif;    font-size: 18px;
    font-weight: 500;    color: var(--bluemagic) !important;    outline: none;    transition: .5s;}
.menu a:before {  position: absolute;    content: "";    width: 0;    height: 0;    top: -20px;    left: 50%;    transform: translateX(-50%);
    border: 10px solid;    border-color: var(--bluemagic) transparent transparent transparent;    transition: .5s;}
.menu a:hover::before, .menu a.active::before {top: -10px;}

/* |||||||||||||||||||||||| AJOUTS 19/03/2024 */

video  {width: 100vw; top: 0; position: absolute; z-index: 0}
.hero-header figure {width: 100vw; overflow: hidden; position: absolute; top: 0; height: 100vh; max-width: 100%}
.product-selection-item {z-index: 9;}
.navbar-light .navbar-brand{z-index: 9; margin: auto}
#home:before {content: ""; display: block; position: fixed; right:0; top: 80px;
     background: url(../img/Wedding-Awards-2023-Mariages.net-2.webp);background-size: cover; width: 80px; height: 80px; z-index: 10}
.product-selection h3 {margin: 0;    padding-bottom: 0;}

/*** media queries ***/


@media (min-width: 992px) {
  .hero-header .col-lg-8.text-center.text-lg-start {margin-top: 100px}
  .hide_block_form2 {margin-top: -350px;}
    .show_block_form2 {margin-top: -450px;}
}

@media (max-width: 992px){
  table {    border: 0;  }
  table caption {    font-size: 1.3em;  }
  table thead {    border: none;    clip: rect(0 0 0 0);    height: 1px;    margin: -1px;    overflow: hidden;    padding: 0;    position: absolute;   width: 1px;  }
  table tr {    display: block;    margin-bottom: .625em  }
  table tr:first-child {border: none}
  table td {    display: block;    font-size: .8em;   text-align: right;  }  
  table td::before {    content: attr(data-label);    float: left;    font-weight: bold;    text-transform: uppercase;    color:  var(--bluemagic);     }  
  table td:nth-child(2):before {display: none}
  table td:last-child {    border-bottom: 0;  }
  table td:first-child {text-align: center; font-size: 1.3rem}
    .hero-header h1:after {display: none}
  .product .btn.btn-dark {margin: 0 auto; text-align: center}
    .desktop-only {display: none}
    .product-selection.table h4 {    padding: 15px 30px 0; min-height: 50px;}
    #home:before { width: 50px; height: 50px;top: 20px;}
    video  {width: 200vw !important;margin-left: -50%; top: 0; position: absolute; z-index: 0}
    .hide_block_form2 {margin-top: -650px;}
    .show_block_form2 {margin-top: -450px;min-width: 300px}
}



@media (max-width: 767px) {
    
    h1, .h1 {  font-size: calc(1.375rem + 3vw);}
    .btn {font-size: 1.2rem;display: inline-block;margin-right: 0 !important}
    .hero-header, .footer {padding: 0rem 0 9rem 0;background-size: cover;min-height: 60vh;padding-bottom: 1rem;background-position: 80% center;}
    html {overflow-x: hidden; max-width: 100vw}    
  .footer {    background:  var(--light);}
  .hero-header .bloc-text-header {max-width: 90%;}  

}

@media (max-width: 630px) {
    .examples-carousel .owl-nav,.testimonial-carousel .owl-nav,.testimonial-carousel .owl-nav,.examples-carousel .owl-nav,.examples-carousel .owl-nav {display: none }
}

