/*---- General ----*/
body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}
nav {
    background-color: #000000;
    position: -webkit-sticky;
    position: sticky;
  	top: 0;
  	z-index: 9999;
}
p {
    color: #797979;
}

h1{
	font-size: 2.5rem;
}
h3{
    font-size: 2em;
}
.centre{
    text-align: center;
}
.main {
	flex: 1 0 auto;
}
section{
    padding-top: 35px;
    padding-bottom: 25px;
}
.section__globale{
    margin-top: 30px;
    margin-bottom: 0px;
    font-family: 'Open Sans', sans-serif;
}
.img__globale{
    width: 100%;
}

/*---- Caroussel----*/
.text-accueil{
	position: absolute;
    top: 50%;
    color: white;
    left: 50%;
    transform: translate(-50%, -50%);
}
.carousel .carousel-item>img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.text-accueil__size{
	font-size: 1.3rem;
}
@media (max-width: 768px){
	.text-accueil__size{
	    font-size: 1.1rem;
    }
    .btn-floating.btn-large {
        width: 40px;
        height: 40px;
    }
    .btn-floating.btn-large i {
        line-height: 40px;
    }
    .btn-large i {
        font-size: 1.8rem;
    }
    .fixed-action-btn {
        right: 10px;
        bottom: 10px;
    }
}

/*------button special accueil ---------*/
.wrapper {
  display: flex;
  justify-content: center;
}
.cta {
    display: flex;
    padding: 10px 45px;
    text-decoration: none;
    color: white;
    background: #ef711d ;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
}

.cta:focus {
   outline: none; 
}

.cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #3075f4;
}

.cta span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}

.cta:hover  span:nth-child(2) {
    transition: 0.5s;
    margin-right: 10px;
}

  span {
    transform: skewX(15deg) 
  }

  span:nth-child(2) {
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 12%;
  }
  
/**************SVG****************/

path.one {
    transition: 0.4s;
    transform: translateX(-60%);
}

path.two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.cta:hover path.three {
    animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@keyframes color_anim {
    0% {
        fill: white;
    }
    50% {
        fill: #000000;
    }
    100% {
        fill: white;
    }
}
/*------ fin de button special accueil ----------*/

/*---- Sections savoir----*/
#services{
    padding-top:64px;
    margin-top:-64px;
}
.section__page{
	width: 100%;
    height: auto;
    padding: 35px 0;
}
.section__color{
	background: #161616;
}
.circle {
    color: #8A8A8A;
    height: 80px;
    width: 80px;
    border-radius: 90px;
    background: #252525;
    padding: 23px;
}
.promo-caption{
	color: #ffffff;
	font-size: 1.5rem;
}

/*---- Section a propos ---*/
#apropos{
    padding-top:64px;
    margin-top:-64px;
}
.apropos__titre{
    font-size: 30px; 
    margin-top:15px;
}
#map{
    width: 100%;
    height: 300px; 
}
/*---- section language ----*/
.thumbnail{
    text-align: center;
    margin-top: 5px;
    margin-bottom: 20px;
    display: block;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border .2s ease-in-out;
}
/*---- formulaire ---*/
.formulaire__center{
    text-align: center;
}
.formulaire__titre{
    font-size: 2rem;
    color: #ffffff;
}
.formulaire__text{
    color: #ffffff;
}
.formulaire__textarea {
    height: 20rem;
    background-color: rgba(245, 242, 237, 0.2);
    margin-top: 10px;
    margin-bottom: 10px;
}
.waves-button-input{
    color: #ffffff;
}
#contactUs{
    padding-bottom: 0;
}
@media (max-width: 768px){
    .g-recaptcha{
        text-align: left;
    }
    .formulaire__send-button{
        margin-top: 15px;
    }
}
   
/*---- Footer ----*/
.page-footer {
    border-top: 1px solid #303030;
    background: #161616;
}
.social a {
    font-size: 32px;
    margin: 0 10px;
    color: #FF5200;
}
.social__center{
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}
    