/* Add here all your CSS customizations */

/*Remonté contact*/

div:target,
section:target {
    padding-top: 170px !important;
}

/*Sélection du texte*/

::selection {
    background-color: #062f68;
    color: white;
}

::-moz-selection {
    background-color: #062f68;
    color: white;
}

/*img-fluid afficherArticles*/
.articleTexte img {
    max-width: 100%;
}

/*Tailles badges*/
.FacebookLogo,
.MyBusinessLogo {
    max-width: 100%;
    height: 4em;
    margin:0px 10px;
}

/*Sections éditables*/
.edit p{
    font-size: 1.2em;
	line-height: 1.8;
    text-align: justify;
}

.edit h2{
    margin-bottom: 1rem !important;
}

.edit h3{
   font-weight: 700 !important;
}

.edit ul {
    list-style: none;
    font-size: 1.2em;
    line-height: 1.8;
    text-align: justify;
}

.articleTexte a{
    color: #062f68;
}

.card.card-style-5:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff !important;
    border-radius: 0rem !important;
    opacity: 1;
    z-index: 0;
    transition: ease opacity 300ms;
}

.card.card-style-5:hover .card-body {
    background: rgba(255, 255, 255, 0.6) !important;
}

/*
* Gradient animation thÃ¨me 08
*/

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.degradeCouleur {
    background: linear-gradient(-45deg, #062f68, #ee7202);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
}