
/* HOME */
body{
    font-family:poppins;
}
#btnOffre{
    background-color: #2c3e50;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

#navbarCollapse a{
    color: #2c3e50;
    font-family:Poppins, sans-serif;
    
}

.flag img{
    position: relative;
    animation: rotate 4s linear infinite;
}

/* PHILOSOPHIE */

#philosophie{
      margin-top: 2em;
      display: flex;
      justify-content: space-around;
      font-size: 20px;
      margin-left: 50px;
      margin-right: 50px;
   
  }

  .fonction3middle{
    margin-left: 50px;
    margin-right: 50px;
  }

  .borderPhilosophie{
    background-color: #f8f9fc;    
    line-height: 35px;
    padding: 1.6em;
    border:2px solid #2c3e50;
    
  }

  #titlePhilosophie{
      color:#2c3e50;
      font-size: 65px;
      font-weight: 600;
  }

  #fondPhilosophie{    
      background-attachment: fixed;
      padding-bottom: 5em;
  }

  .imgFixed{
    background: no-repeat;
    background-attachment:fixed;
  }

  .titleBanniere{
      text-align: center;
      font-size: 60px;
      color:#2c3e50;
      padding: 150px;
      font-weight: 600;

  }

  @keyframes rotate{
    0%{
        transform: perspective(50px) rotateY(0deg);
    }
    100%{
      transform: perspective(50px) rotateY(360deg);
    }
  }

.colorTextHeader{
    text-shadow: -1px 0 black, 0 1px black,
    1px 0 black, 0 -1px black
}

.title{
    color: #2c3e50;
    font-family:raleway;
}

.color-2c3e50{background-color:#2c3e50;}

/* caroussel */
.feedback-text .author{
    font-size: 17px;
    font-style: italic;
  }

  #container-carousel{
    height: 200px;
  }

  @media only screen and (max-width: 990px){
    #container-carousel{ height: 300px; }
}

.sq-crousal4 .carousel-indicators li::before {width: 15px;height: 15px; margin-top: 10px;background: #2c3e50;border-radius: 50%;    border: solid 2px #2c3e50;
transition: all 0.3s ease 0s;box-shadow: 6px 6px 8px #2c3e50 inset;}
.sq-crousal4 .carousel-indicators li.active::before {background: #020f22;box-shadow: 2px 3px 2px #2c3e50 inset;border-color: #2c3e50;}
.sq-crousal4 .carousel-indicators {bottom: -40px;}
.sq-crousal4 li {width: 20px;}
.sq-crousal4 .fa-angle-left {font-size: 45px;color: #444;left: -30px;position: relative;top: -17px;}
.sq-crousal4 .fa-angle-right {font-size: 45px;color: #444;right: -30px;position: relative;top: -17px;}

/* Chiffres */
.progress{
    width: 150px;
    height: 150px;
    line-height: 150px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}
.progress:after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 12px solid rgb(242, 243, 245);
    position: absolute;
    top: 0;
    left: 0;
}
.progress > span{
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}
.progress .progress-left{
    left: 0;
}
.progress .progress-bar{
    width: 100%;
    height: 100%;
    background: none;
    border-width: 12px;
    border-style: solid;
    position: absolute;
    top: 0;
}
.progress .progress-left .progress-bar{
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}
.progress .progress-right{
    right: 0;
}
.progress .progress-right .progress-bar{
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 1.8s linear forwards;
}
.progress .progress-value{
    width: 90%;
    height: 90%;
    border-radius: 50%;
    font-size: 24px;
    color: #2a3058;
    line-height: 135px;
    text-align: center;
    position: absolute;
    top: 5%;
    left: 5%;
}
.progress.blue .progress-bar{
    border-color: #c1e1fc;
}
.progress.blue .progress-left .progress-bar{
    animation: loading-2 1.5s linear forwards 1.8s;
}
.progress.yellow .progress-bar{
    border-color: #f6f8bb;
}
.progress.yellow .progress-left .progress-bar{
    animation: loading-3 1s linear forwards 1.8s;
}
.progress.pink .progress-bar{
    border-color: #f8aeb9;
}
.progress.pink .progress-left .progress-bar{
    animation: loading-4 0.4s linear forwards 1.8s;
}
.progress.green .progress-bar{
    border-color: #9af3e1;
}
.progress.green .progress-left .progress-bar{
    animation: loading-5 1.2s linear forwards 1.8s;
}
@keyframes loading-1{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}
@keyframes loading-2{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(144deg);
        transform: rotate(144deg);
    }
}
@keyframes loading-3{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}
@keyframes loading-4{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(36deg);
        transform: rotate(36deg);
    }
}
@keyframes loading-5{
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(138deg);
        transform: rotate(138deg);
    }
}
@media only screen and (max-width: 990px){
    .progress{ margin-bottom: 20px; }
}
/* FOOTER */

.icon{
    width: 8%;
}

.footer-custom{
    position: absolute;
    background-color: #dfeaff;
    padding-top: 25px;
    width: 100%;
}

.footer-custom li a{
    color: #2c2222;
}

/* Contact */

.box-shadow{
    box-shadow: 0 30px 30px rgb(0 0 0 / 60%);
    padding: 15px;
}

.map{
   
    height: 30vh;
    display: flex;
}

#boxContact{
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
    margin-bottom: 50px;
}

/*Mentions légales */

.fa-map-marker-alt{
    color: #2c3e50;
}
.fa-phone{
    color: #2c3e50;
}
.fa-user{
    color: #2c3e50;
}
.fa-industry{
    color: #2c3e50;
}
.fa-qrcode{
    color: #2c3e50;
}
.fa-file{
    color: #2c3e50;
}

.line-height{
    line-height: 40px;
}

.cgv{
    color:black;
}

.datadocke{
    width: 9%;
}

/* RESPONSIVE */

@media screen and (max-width:1370px){
    #philosophie{       
    flex-wrap: wrap;    
    }
    .fonction3middle{
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 50px;
        margin-bottom: 50px;
      }

}

@media screen and (max-width:800px){
    .titleBanniere{
        font-size: 45px;
    }
}