
body,
html {
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'Open Sans', arial, sans-serif;
    color: #000;
}

/*-- colors --*/

.mauve { color: #C301B3}
.violet { color: #8000FF}
.white { color: #ffffff}
.black { color: #000}
.orange { color: #BF8E87}

/*----*/

.top { 
	margin-top: 60px;
}

h1 { 
	font-weight: 400;
	font-size: 2em;
}

h2 {
	font-size: 1.6em;
    font-weight: 400;
}

h3 { 
	font-size: 1.5em 
}

p { 
	font-size: 1em
}

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

a { color: #C301B3;
    transition: all 0.5s;
	outline:0;
}

a:hover,
a:focus {
	color: #8000FF;
    text-decoration: underline;
	outline:0;
}

/*-- Back to top --*/

#toTop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #8000FF;
  color: white;
  cursor: pointer;
  padding: 6px 11px;
  border-radius: 4px;
}

/*-- Preloader --*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #006F00;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*-- Bg --*/

.bg-01 { 
	background: url(../img/bkg_hp.jpg) no-repeat;
	background-size: cover;
	height:100%;
	background-position: center;
    background-attachment: fixed;
}

.bg-02 { 
	background: #BF8E87;
}

.wrapper { 
	color:#000;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius:5px;
	padding: 5px;
	margin: 0 auto;	
}

/*-- Home --*/

.img-home {
   width:200px;
   height:200px;
   margin:-80px auto 20px auto; 
   border:2px solid #fff;
   box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.5);
}

.btn-link {
    background: #8000FF;
	position:relative;
	bottom:10px;
	border-color:#000;
	color:#fff;
}

.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    background: #C301B3;
	border-color:#000;
	color:#fff;
	text-decoration:none;
	outline:0!important;
	box-shadow: none !important;
}

.card {
    background-color: rgba(255, 255, 255, 0.7);
}

.card img {
	width:200px;
	height:200px;
	margin-top:-50px;
	border: 2px solid #fff;
	box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.5);
}

@media (min-width: 992px) { 

.card {
	height:470px;
}

.card img {
	width:250px;
	height:250px;
}

.h2 {
    font-size: 1.5em;
	font-weight:bold;
	padding-top:5px;
}
}

@media (max-width: 576px) { 

h1 { 
	font-size: 1.5em;
}

.h2 {
    font-size: 1.4em;
	font-weight:bold;
	padding-top:5px;
}

.card {
    min-height:420px;
}

.list-group-item img {
	width:100%;
}
}

/*-- ateliers -- */

.head {
    width:150px;
	height:150px;
	border:2px solid #C301B3;
	margin-top:-50px;
	background:#F0EDEC;
}

.h2 {
	color:#8000FF;
	margin-top:55px;
}

.list-group-item {
	background:transparent;
	border:none;
}

.list-group-item img {
	width:70%;
	border:2px solid #fff;
}

/*-- projets -- */

/*-- form -- */

.help-block.with-errors {
    color: #ff5050;
    margin-top: 5px;
}

.btn-dark {
   background: green;
}

/*-- footer -- */

.footer {
    padding:1em 0 ;
    background-color: #ccc;
    color: #000;
}

.footer p {
    margin-bottom:0;
	text-align:center;
}

.footer a {
	text-decoration:none;
}

