@import "https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,400;0,600;0,700;0,800;0,900;1,400&display=swap');
:root{
    --light-grey: #78797A;
    --dark: #282D31;
    --green: #02CC89;
    --primary-color: #EF7744;
    --primary-color-dark: #c24b18;
    --secondary-blue: #4DC4FA;
    --secondary-purple:#836DF1;
    --secondary-yellow:#FFC800;
    --secondary-pink:#FF70B0;
    --shadow: 0px 8px 36px 0px #00000026;

}

@media(max-width: 767px) { /* <== You can change this break point as per your  needs */
    .reverse-columns {
      flex-direction: column-reverse;
      display: flex;
    }
}
@media(max-width: 1023px) {
    .nav-logo{
        /* margin-left: 1rem; */
        height: 32px!important;
     }
     
    .navbar-item.has-dropdown .navbar-dropdown {
        display: none;
        /* background-color: #F2F2F2; */
    }
     .navbar-item.has-dropdown.is-active .navbar-dropdown {
         display: block;
         width: 100%;
    }
    .navbar-item .navbar-dropdown .navbar-item{
        background-color: #fafafa;
        border-radius: 8px;
        margin-bottom: .5rem;
        padding: 0;
    }
    .navbar-dropdown > .navbar-item{
        padding: 1rem !important;
        width: 100%;
    }
    
    .navbar-item .buttons .button{
        margin-bottom: 1rem;
        width: 100%;
    } 
    .buttons .button:not(:last-child):not(.is-fullwidth) {
        margin-right: 0;
    }
    .navbar-end .navbar-item{
        padding: 1rem;
        font-weight: 700;
    }
    .navbar-end .navbar-item .navbar-link {
        padding-left: 0;
    }
    /* 
    .navbar-dropdown{
        padding-top: 1.5rem !important;
        padding-bottom: 0;
    }

     */
}

@media(min-width: 1024px){
    .my-navbar{
         height: 95px;
         background-color: rgba(255, 255, 255, 0);
         transition: all 0.2s ease-in;
         /* max-width: 1500px;
         margin: auto; */
     }
     .has-navbar-fixed-top{
        padding-top: 95px !important;
    }
}

@media(min-width: 768px){
    .cta-card{
        background-image: url(../img/logo-icon.svg);
        background-position: left;
        background-size: 180px;
        padding-left: 148px !important;
        padding-right: 3rem !important;
        background-repeat: no-repeat;
        background-position-x: -65px !important;
        /* transform: translate(0px, -50%); */
        padding: 3rem;
    }
}
html, body{
    height: 100%;
    margin: 0;
}

body, button, input, optgroup, select, textarea {
    font-family: 'Poppins';
}

body{
    font-family: 'Poppins';
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.75;
}
h1{
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    color: var(--dark);
}
h2{
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    color: var(--dark);
}


h3{
    font-weight: 700 !important;
    /* font-size: 28px !important; */
    line-height: 36px;
    color: var(--dark);
}


/* Overlays*/
.overlay{
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background-color: white;    
}
.overlay > img{
    width: 90px;
}


/* Overide */
    /* buttons */
button.button {
    padding-bottom: 1.5em;
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 1.5em;
}
.button {
    border-radius: 8px;
}

a:hover {
    color: #363636;
}
a {
    color: var(--secondary-blue);
    cursor: pointer;
    text-decoration: none;
}

    /* cards */
#cards .card{
    height: 100%;
}
.card{
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.card-title{
    font-size: 18px !important;
    line-height: 28px !important;
}
.card-header{
    box-shadow: none;
}

    /* tabs */
.tabs ul{
    border: none;
}
.tabs li.is-active a {
    border-bottom-color: var(--primary-color);
    color: var(--dark);
}
.tabs a {
    color: var(--light-grey);
    border-bottom-color: white;
    font-weight: 700;
    border-bottom-width: 4px;
}
.tabs a:hover {
    border-bottom-color: transparent;
}

    /* others */
ion-icon {
    font-size: 24px;
}

.subtitle{
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    color: var(--light-grey);
    line-height: 32px;
}
.footer{
    margin-top: 0;
    padding: 3rem 1.5rem 3rem;
    background-color: transparent;
}

/* Modifiers */
.is-stretched{
    align-items: stretch;
}
.is-height-100{
    height: 100%;
}
.has-not-bullet{
    list-style-type:none !important;
}
.is-dark{
    height: 95px;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.2s ease-in;
}
/* .has-shadow {
    box-shadow: var(--shadow);
} */
.is-primary{
    color: var(--primary-color) !important;
}
.has-background-primary{
    background-color: var(--primary-color) !important;
}
.has-text-primary{
    color: var(--primary-color) !important;
}
a.has-text-primary:hover {
    color: var(--primary-color-dark)!important;
}
.has-background-secondary{
    background-color: var(--secondary-blue) !important;
}
.has-text-secondary{
    color: var(--secondary-blue) !important;
}
.has-text-yellow{
    color: var(--secondary-yellow) !important;
}
.has-text-pink{
    color: var(--secondary-pink) !important;
}
.has-text-purple{
    color: var(--secondary-purple) !important;
}
.has-background-purple{
    background-color: var(--secondary-purple) !important;
}
.has-text-grey{
    color: var(--light-grey);
}
.has-background-green{
    background-color: var(--green);
}
.is-primary-grandient{
    /* background: linear-gradient(90deg, var(--c1, #ffb300), var(--c2, #EF7744) 51%, var(--c1, #ffb300)) var(--x, 0)/ 200%; */
    background: linear-gradient(90deg, var(--c1, #ff9900), var(--c2, #EF7744) 51%, var(--c1, #ff9900)) var(--x, 0)/ 200%;
    border: none; 
    transition: 0.5s;
    color: white;
}
.is-primary-grandient:hover{
    --x: 100%; 
    color: white;
}

.br-16{
    border-radius: 16px !important;
}
.br-8{
    border-radius: 8px !important;
}
.br-4{
    border-radius: 4px !important;
}


/*Navbar*/

.nav-logo{
    height: 48px;
}
.my-side-navbar{
    position: sticky;
    top: 150px;
}
#burger span{
    height: 2px;
    border-radius: 2px;
}
.anim-nav{
    box-shadow: 0 24px 64px rgb(38 33 74 / 10%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}
.navbar-item img {
    max-height: 3rem;
}
.navbar-link.is-active, .navbar-link:focus, .navbar-link:focus-within, .navbar-link:hover, a.navbar-item.is-active, a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover {
    background-color: transparent !important;
    color: var(--primary-color) !important;
}
.navbar-link:not(.is-arrowless)::after {
    border-color: #0a0a0a !important;
}


/* myClasses */
.subheader{
    color: var(--secondary-blue);
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;   
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.text{
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    /* line-height: 26px; */
    /* line-height: 26px; */
}
.feature{
    /* min-height: 510px; */
}
.illustration{
    max-height: 500px;
}
.feature-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.feature-illustration{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    /* padding: 3rem; */
}
.feature-illustration img{
    height: auto;
    max-height: 580px;
}

.parrainage{
    background-position: center;
    background-size: cover;
    height: 400px;
    background-image: url(../img/parrainage.webp);
}

.bottom-section{
    background-size: cover;
    background-image: url(../img/bg-footer-gradient.svg);
}
.cta-card{
    /* transform: translate(0px, -50%); */
    padding: 2rem;
}


/* Background images */
.hero-bg{
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    /* justify-content: center; */
    background-position: bottom;
    perspective: 1200px;
    position: relative;
    /* min-height: 640px; */
}
.hero-fg{
    position: relative;
}
.hero-fg::after{
    position: absolute;
    content: "azeae";
    top: -200px;
    left: 0px;
    width: 500px;
    height: 500px;
    background-color: red;
    transform: translate3d(0, 0, 160px);
    z-index: 9999;
}

.hero-bg-shape-1{
    background-image: url("../img/bg-header-shape1.svg");
}
.hero-bg-shape-2{
    background-image: url("../img/bg-header-shape2.svg");
}
.hero-bg-shape-3{
    background-image: url("../img/bg-header-shape3.svg");
}
.hero-bg-shape-4{
    background-image: url("../img/bg-header-shape4.svg");
}
.hero-bg-shape-half{
    background-image: url("../img/bg-header-shape-half.svg");
}
.bg-shape-side{
    background-image: url("../img/bg-side-shape.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    /* display: flex; */
    /* justify-content: flex-start; */
    /* background-position: bottom; */
}
.hero-bg-fidelite{
    background-image: url("../img/Nouveau%20dossier/commercant-de-quartier.jpg");
}


/* illustrations */
.hero-illustration{
    background-image: url(../img/hero-illustration.webp);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* min-height: 640px; */
}
.hero-illustration img{
    height: auto;
}



/* FAQ */
.rotate{
    -moz-transition: all .1s linear;
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.is-active .rotate{
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-section .card-content {
    display: none;
}

.is-active + .card-content {
    display: block;
}

.light-footer{
    /* position: fixed; */
    bottom: 2rem;
    left: auto;
    right: auto;
    width: 100%;
}