/***** BANNER *****/
.homeBanner {
	position: relative;
	text-align: center;
	color: white;
}

.homeBannerText {
  display: none;
}

.homeBannerBackground {
  width: 100%;
}
  /*
.homeBannerText {
	position: absolute;
	font-size: 5em;
	color: white;
	top: 5%;
	bottom: 5%;
	left: 5%;
	right: 5%;
}

.homeBannerBackground {
  filter: brightness(50%);
	width: 100%;
}*/

/***** FORMATIONS THEMES BUTTONS *****/
.formationsThemesButtons img
{
	width: 30px;
	height: 30px;
}

/***** HOME CATEGORIES *****/
.prestationsIllustration {
  width: 560;
  height: 315;
  border: 1px solid black;
}


.descriptionCategories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.descriptionCategories > div {
  display: flex;
  margin-left: 10%;
  margin-right: 10%;
  vertical-align: middle;
  gap: 16px;
}

.descriptionCategoryDescription {
  align-self: center;
  height: min-content;
  font-size: 1.2em;
}

.descriptionCategories>div:nth-child(odd) {
  flex-direction: row;
}

.descriptionCategories>div:nth-child(even) {
  flex-direction: row-reverse;
}

.descriptionCategories> div > .descriptionCategoryIllustration {
  vertical-align: middle;
}

.descriptionCategories> div > .descriptionCategoryDescription {
  vertical-align: middle;
}

body {
  padding-bottom: 50px;
}

/* Loader */
body {
  --stripes-color-1: rgba(119, 119, 119, 0.749);
  --stripes-color-2: rgb(73, 96, 77);
  --stripes-width: 25px;
  background: repeating-linear-gradient(
  45deg,
  var(--stripes-color-1),
  var(--stripes-color-1) var(--stripes-width),
  var(--stripes-color-2) var(--stripes-width),
  var(--stripes-color-2) calc(var(--stripes-width) *2)
);
}

#websiteBuildingLoader { 
  text-align: center;
  align-self: center;
  justify-content: center;
  justify-items: center;
  margin: auto;
  display: grid;
}

#websiteBuildingLoader { 
  margin: 0;
  padding: 30px;
  --color-1: green;
  --color-2: rgb(0, 73, 0);
}

#websiteBuildingLoader h1,h2 {
  color: white;
  margin-top: 0;
}

.loader {
  padding: 5px;
  color: rgb(0, 73, 0);
  border-radius: 50%;
  border-top: 16px solid var(--color-1);
  border-left: 16px solid var(--color-2);
  border-right: 16px solid var(--color-2);
  border-bottom: 16px solid var(--color-1);
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}