@font-face {
  font-family: ad-font;
  src: url(assets/fonts/quicksand-regular-webfont.woff2);
}

body {
	font-family: ad-font;
}

h1 {
	font-family: "Gill Sans", sans-serif;
}

h2 {
	font-family: sans-serif;
	font-size: 1.5rem;
}

h3 {
  font-family: "Gill Sans", sans-serif;
  color: #333333;
  margin: 20px auto 0 auto;
  font-size: 2rem;
}

a, a:link, a:visited, a:hover, a:active, .nav-link:focus {
  text-decoration: none;
}

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

.home-wrapper {
	background: linear-gradient(-45deg, #2bbbb6, #e73c7e, #2bbbb6, #2bbbb6);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
	padding: 0 10%;
}

.navbar-brand {
	display: flex;
	height: 70px;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  color: #FFFFFF;
}

.nav-link, .navbar-nav .nav-link.active, .nav-link:focus {
	color: #FFFFFF;
	font-weight: bold;
}

.nav-link:hover {
	color: #EEEEEE;
}

.home-title {
	text-align: center;
	display: flex;
	justify-content: center;
	height: calc(100% - 90px);
	flex-direction: column;
	color: #FFFFFF
}

.ad-button, .contact-button {
	padding-top: 16px;
  cursor: pointer;
}

.ad-button span {
	border: 1px solid #FFFFFF;
	padding: 8px 16px;
  color: #FFFFFF;
  font-style: none;
}

.contact-button span {
  border: 1px solid #333333;
	padding: 8px 16px;
  color: #333333;
  font-style: none;
}

.no-side-padding {
	padding-left: 0;
	padding-right: 0;
}

.services-section {
  padding: 0;
  text-align: center;
}

.separator-service {
  font-family: "Gill Sans", sans-serif;
  color: #333333;
  margin: 0 auto 40px auto;
  font-size: 2rem;
}

.services-section h4 {
  font-family: "Gill Sans", sans-serif;
  color: #666666;
  margin: 60px auto 20px;
}

.img-services {
  max-height: 80px;
  margin-bottom: 20px;
}

.col-sm {
  margin-bottom: 40px;
}

.service {
  width: 100%;
  display: flex;
}

.text-side, .picture-side {
  width: 50%;
}

.text-side {
  padding: 60px;
  text-align: left;
}

.parallax {
  background-attachment: fixed; /* Fixe l'image pendant le scroll */
  background-size: cover; /* L'image prendra 100% de l'espace, quitte à la crop */
  background-position: center; /* Centre la position de l'image */
  background-repeat: no-repeat; /* Empêche l'image de se répéter en fonction de la taille d'écran */
  background-image: url(assets/images/mockup-ad.jpg);
  height: 500px;
}

.map-title {
  position: absolute;
  margin: 0 auto;
  text-align: center;
  color: #FFFFFF;
  padding: 100px 50px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (min-width: 992px) {
	.navbar-expand-lg .navbar-collapse {
	    justify-content: flex-end;
	}
}

@media (max-width: 1200px) {
  h3 {
    font-size: 1.5rem;
  }
  p {
    font-size: 12px;
  }
  .separator-service {
    margin: 0 auto 20px auto;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .service {
    width: 100%;
    display: block;
  }

  .text-side, .picture-side {
    width: 100%;
  }
}
