@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');
@import url('other-pages.css');
:root{
    --ff-body: "Ubuntu", sans-serif;
    --ff-heading: "Ubuntu", sans-serif;

    --clr-primary-400: hsl (60 100% 50%);
    --clr-neutral-900: hsl (0 0% 0%);
    --clr-neutral-100: hsl (0 0% 100%);


    --clr-primary-1: #292a2d;
    --clr-primary: #3c3d41;
    --clr-primary: #747474;
    --clr-accent: #ed7365;
    --clr-accent-2: #fc6352;
    --clr-bg: #f4f5f0;
    --clr-neutre: #ede9e9;


    /* --fs-xl: clamp(.5rem, 3.5vw + 1rem, 3.5rem); */


    --fs-xl: clamp(.5rem, 2vw + 1rem, 3rem);




    --fs-800: clamp(.3rem, 1vw + 3.5rem, 3.8rem); 
    --fs-800-2: clamp(.2rem, 1vw + 2.5rem, 2.8rem); 
    --fs-600: clamp(.15rem, 1vw + 3rem, 3rem);
    --fs-400: clamp(1rem, calc(1rem + 1.125vw), 1.5rem); 

    --fs-200: clamp(1.2rem, calc(.6rem + 0.125vw), 1rem); 

    --fs-100: clamp(0.8rem, calc(.6rem + 0.125vw), 1rem); 

    /* --fs-heroHeading: clamp(.5rem, 2vw + 1rem, 4rem); */

    --fs-heroHeading: clamp(.5rem, 2vw + .5rem, 3.5rem);
}




html, body
{

    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
    background-color: #292a2d;
}



body{

    height: 100vh;
    box-sizing: border-box;
    
    
    font-family: var(--ff-body);
    font-size: var(--fs-400);
    line-height: 1.6;
    background-color: var(--clr-bg);


    color: var(--clr-primary);

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

}


/* Section */

section{
    padding-block: 3rem;
    min-height:70dvh;

}












h1, h2, h3 {
    text-wrap: balance;
}

h1{
    font-family: var(--ff-heading);
    font-weight: 900;
    font-size: var(--fs-xl);
    line-height: 1;
}

h2{
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: var(--fs-800);
    line-height: 1;
    padding-bottom: 3rem;
}

h3{
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: var(--fs-600);
    line-height: 1;
    padding-bottom: 3rem;
}

.heroHeading{
   
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    line-height: 1;
    padding: .5em;
}


p{
    
   margin: 16px 0;
   font-size: var(--fs-400);
    
}

.blanc{
    color: var(--clr-neutre);
}


.container-fluid{
    padding: 3% 15% ;
}


.navbar{
    min-height: 80px;
    background-color: var(--clr-neutre);
    
    color: var(--clr-primary);
}

.nav-item{
    padding: 0 10px;
}

.nav-link{
    color: #3c3d41;
    

}

.active{
    color: var(--clr-accent);
    border-bottom: #ed7365 solid 1px;
}


.navbar-toggler{
    
    background-color: var(--clr-primary);
}

.navbar-toggler-icon{
   
    

}




/* button */

.download-button{
    margin: 5% 3% 5% 0;
    transition: 0.5s;  
}

.download-button:hover{
    scale: 1.03;
}

.button.navbar.toggler{
    color: #fc6352;
}

.buttonSikma{
    color: var(--clr-neutre);
    background: var(--clr-accent);
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 12px 16px;
    width: 80%;
    transition: 0.5s;             
}



.buttonSikma:hover{
    scale: 1.03;
    background-color: var(--clr-primary);
    color: var(--clr-accent);
}


#heroSikma{
    padding-block: auto;
    background-color: var(--clr-neutre);
}

.heroSikma{

    width: 80%; margin-inline: auto; 
    position: relative; 
    vertical-align: middle; 
    margin-bottom: 20px;
    isolation: isolate;



    .back{
        background-color: #ed7365;
        
        background-size: cover;
        background-blend-mode: multiply;
        width: 50%; 
        z-index: 2; 
        position: absolute; 
        left: 50%; right: 50px; top: 0; bottom: 0;
    }

    .middle{
        width: 70%; 
        z-index: 3; 
        position: relative; 
        bottom: 0; top: 60px;

    }

    .miidle-top{
        background-color: rgb(252, 177, 108);
        background-image: url(../img/background_bf_nf.png);
        background-size: cover;
        background: position 50% 50%;
        background-repeat: no-repeat;
        max-width: 100%;
        display: block;
        border-width: .3em;
        border-color: var(--clr-neutre);
        border-style: solid;
    }

    .middle-butt{
        display: block;
    }

    .front{

        z-index: 4; 
        position: absolute; 
        left: 50%; right: 10%; top: 25%; bottom: 30%;
        
        
    }

    .front-heading{
        background-color: #fee362; 
        border-radius: 3%;
        padding:3%;
        margin: 10;

        border-color: var(--clr-neutre);
        border-style: solid;
        border-width: .3em;



        box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
    }
    .front-butt{

        display: none;
        width: 100%;

    }

    

}




/* image Hero */

.heroImg{
    width: 90%;
}


/* A propos section  */

#apropoSikma{
    background-color: var(--clr-accent);
    color: var(--clr-neutre);
    padding: 0;

}

.apropoSikma >*{
    padding-block: 5rem;
}

.apropoSikma-one{
    background-color:var(--clr-accent);
    padding-left: 15%;
}
.apropoSikma-two{
    background-color: gray;  padding-right: 15%; padding-left: 3%;

    ul{
        list-style: none;
    }
}

.apropos-img{
    width: 70%;
}

.apropos_heading{
    color: var(--clr-neutre);
    margin-top: 1.5rem;
    margin-left: 1.5rem;
}



/* Pourquoi section  */



#pourquoiSikma{
    background-image: url(../img/pkSikma_bg_1600x800.jpg);

}
.pourquoiSikma__img{
    max-width: 100%;
    height: auto;
}







#serviceSikma{
    background-image: url(../img/serviceSikma_bg.png);
    background-repeat: no-repeat;


    background-size: contain;
    background-color:#eff9fe;
    
}


.serviceSikma__img{
    max-width: 100%;
    height: auto;
    border-radius: 20px;
       
}

.serviceSikma__item{
    gap: 3rem;
    margin-top: 3rem;
}

.imgCol{
    flex: 1 1 50%;
}

.serviceSikma_content{
    display: flex;
    flex-direction: column;
    gap: 6rem;
    flex-wrap: wrap;
}

.serviceSikma__item___{
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}




#ctaSikma{
    background-color: rgb(46, 46, 46);
    min-height: 50dvh;
}



footer{
    min-height: 20dvh;
    background-color: rgb(31, 30, 30);
    font-size: 0.7em;
    
}



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

.text-right{
    text-align: right;
}

.text-accent-color{
    color: var(--clr-accent);
}




.glassmorphServices
{
    background-color: rgba(252, 99, 82, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    border-radius: 20px;
    padding: 30px 30px 0 50px;

    display: flex;

    color: var(--clr-neutre);


    img{
        width: 100%;
        height: auto;
    }
    
}




/* Pages section  */

#pageSection{
padding-top: 0;

h3{
    font-weight: 400;
}



}

/* Pages heading  */
.pageHeading{
background-color: #ed7365; color: #fff; min-height: 200px; 
text-align: center;
h2{
    font-weight: 400;
    font-size: var(--fs-800-2);
}
}

.pageHeadingtxt{
    h2{
        font-family: var(--ff-heading);
        font-weight: 800;
        font-size: var(--fs-800);
        line-height: 1;
        padding-bottom: 3rem;
    }
}




/* Contact Page contact section  */


.contact-info{
    font-size: .7em;
};

#contactSikma{

    padding: 0;

}

/*------------------ Contact Page -----------------*/
h3.contact-page {
    margin-left: 3%;
    font-weight: bold;
    color: #18304c;
    border-bottom: solid 4px #d3da36;
    display: table;
    margin-bottom: 4%;
  }
  .contac_form {
    padding: 15px;
    border: 1px solid #ddd;
  }
  .contac_form input[type='text'],
  .contac_form input[type='email'],
  .contac_form input[type='url'],
  .contac_form input[type='password'],
  .contac_form input[type='search'],
  .contac_form input[type='number'],
  .contac_form input[type='tel'],
  .contac_form input[type='range'],
  .contac_form input[type='date'],
  .contac_form input[type='month'],
  .contac_form input[type='week'],
  .contac_form input[type='time'],
  .contac_form input[type='datetime'],
  .contac_form input[type='datetime-local'],
  .contac_form input[type='color'],
  .contac_form select,
  .contac_form textarea,
  .contac_form .wpcf7 .wpcf7-form-control-wrap[class*="file-"] {
    width: 100%;
    background-color: var(--white);
    border-color: #ccc;
    color: #2f3357;
    border-radius: 0px;
    box-shadow: none;
    background-color: #f2f2f2;
    border: 2px solid #f2f2f2;
  }
  .contact-box .wpcf7 input[type="text"], .contact-box .wpcf7 input[type="email"] {
    width: 100% !important;
    font-size: 16px;
    padding: 10px 10px;
    margin: 0 12px 23px 0;
    height: auto;
    float: left;
  }
  .contac_form.col-md-12 {
    margin-top: 20px;
  }
  section#contact-box{
    padding:0;
    margin:0;
  }
  .contact-info {
    font-size: 14px;
    line-height: 26px;
    padding: 0;
    width: 100%;
  }
  .inner-cont {
    padding: 10px 0px;
    /* background: var(--white); */
  }
  .contac_form h3 {
    text-align: center;
  }
  .contact-email i, .contact-address i, .contact-phone i {
    font-size: 25px;
    color: var(--firstcolor);
    margin-right: 16px;
  }
  .contact-info .head{
    color:var(--black);
  }
  .contact-address, .contact-email, .contact-phone {
    margin: 20px 0;
  }
  .c_content span {
    font-size: 18px;
  }
  .c_content p{
    font-size: 16px;
  }
  .contac_form form {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .contac_form .fancy-title {
      width: 250px;
      margin: 0 auto;
  }
  .contac_form label{
    width: 100%;
  }
  p.subtitle {
    margin-top: 20px;
  }



  













/* Responsive */

@media screen and (max-width: 991px){

    .container-fluid{
        padding: 3% 8% ;
    }

    #heroSikma{
        text-align: center;

        button{
            margin-right: 0;
        }

    }

    .order-mobile{
        flex-direction: column-reverse;
    }
}





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

    .order-mobile{
        flex-direction: column-reverse;
    }


    footer, #confidentialité{
        text-align: center;
    }


    #heroSikma{
        min-height: 80dvh;
    }
    .heroSikma{

        width: 90%; margin-inline: auto; 
        position: relative; 
        vertical-align: middle; 
        margin-bottom: 0px;
        isolation: isolate;
    
    
    
        .back{
            background-color: #ed7365; 
            z-index: 2; 
            width: 100%;
            position: absolute; 
            left: 0; right: 0; top: 50%; bottom: -10%;
        }
    
        .middle{
            width: 90%; 
            z-index: 3; 
            position: relative; 
            bottom: 0; top: 0; right: 20px; left: 20px;
        }

        .middle-butt{
            display: none;
        }
    
        .front{

            left: 15%; right: 15%; top: 85%; bottom: 0;
            
        }
        .front-butt{
            display: block;
        }
    
    }

    .footer{
        flex-direction: column-reverse;
        gap: 30px;
    }




}






@media screen and (max-width: 442px){



    .pageHeadingtxt{
        h2{
            font-family: var(--ff-heading);
            font-weight: 600;
            font-size: var(--fs-600);
            line-height: 1;
            padding-bottom: 3rem;
        }
    }
    

}









/* Reduce motion*/

@media (prefers-reduced-motion: no-preference) {
    #serviceSikma > 
    .serviceSikma__item,
    .serviceSikma__item,
    .glassmorphServices {
        scale: .8; opacity: 0;
        animation: fade-in linear forwards;
        /* animation-timeline: view(100px 500px); */
        animation-timeline: view();
        /* animation-range: 250px 500px; */
        animation-range: entry;

    }
    
    @keyframes fade-in {
        to {scale: 1; opacity: 1;}
    
    }
        
}
