@import url("https://fonts.googleapis.com/css?family=Comfortaa");
*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Comfortaa", cursive;
}
h1 {
  font-size: 42px;
}
h1 span {
  font-size: 42px;
}
h2 {
  font-family: "Comfortaa", cursive;
  font-size: 32px;
}
h3 {
  font-family: "Comfortaa", cursive;
  font-size: 20px;
}
p {
  font-size: 18px;
  font-family: "Comfortaa", cursive;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-white {
  color: white;
}
.text-brand {
  color: #2A7B9B;
}
.container {
  width:80%;
  margin: 0 auto;
}
.flex {
  display: flex;
}
.col {
  flex: 1;
  margin: 0 15px;
}
.col-2 {
  flex: 2;
  margin: 0 15px;
}
.col-3 {
  flex: 3;
  margin: 0 15px;
}

.header-overlay{
  height:100vh;
  top:0;
  left:0;
  width:100vw;
  z-index:1;
  background-image: linear-gradient(rgba(42, 123, 155,1), rgba(42, 123, 155,0));
  opacity:0.6;
}

/*grid */
#Grid {
  box-sizing: border-box;
  text-align: center;
  font-size: 12px;
  color :#000;
}
#Grid h1{
  text-align: center;
  font-size: 20px;
  padding:15px;
}
#Grid ul, li{
  position: relative;
  list-style-type: none;
}
#Grid li{
  margin: 25px;
  display: inline-block; 
  justify-content: center;
  align-items: center;
  vertical-align: top;
  background: rgba(255,255,255,0.6);
  /*width: 23%;*/
  width:350px;
  min-height: 600px;
  margin-bottom: 2.5%;
}
#Grid p{
  padding:15px;
}
 
#Grid a{
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 15px;
}
 
#Grid img{
  width: 100%;
 /* height: 100%;*/
}
#Grid li:hover
{
  box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.64);
  background: #eee;
  transform:scale(1.05);
}
@media screen and (max-width: 700px) {
#Grid li{
    width: 100%;
    margin: 1em 0;
  }
}

/* BG HERO */
.bg-hero {
  background-image: linear-gradient(to bottom, rgba(76, 149, 199,.7), transparent),url("../images/background_QRick.jpg"); 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  height:100vh;
}
.bg-hero .container {
  position: absolute; 
  top: 50%; left: 50%; 
  transform: translate(-50%, -50%);
}
.bg-hero .container p {
  font-size: 1.5em;
  text-shadow: 1px 1px 1px black;
}
.bg-hero .container img {
	max-width: 100%;
	height: auto;
}
/* background des sections */
.bg-dark {
  background-color: #212121  ; 
  z-index: 1;
}
.bg-white {
  background-color: white;
}
.bg-white .container {
  position: inherit;
}
.bg-light {
  background-color: #D5D6D2;
  z-index: 1;
}
.bg-light .container {
  position: inherit;
  z-index: 1;
}

.bg-brand {
  background-color: #F3F3F3;
}
.bg-brand .container {
  position: inherit;
  z-index: 2;
}

.angle-right-top:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  bottom: 0;
  transform-origin: left bottom;
  transform: skewY(-5deg);
}

.angle-right-bottom:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  bottom: 0;
  transform-origin: left bottom;
  transform: skewY(5deg);
}

.angle-left-top:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: inherit;
  z-index: -1;
  bottom: 0;
  transform-origin: right top;
  transform: skewY(5deg);
}

/* LES SECTIONS */	
section {
  position: relative;
}

/* RESPONSIVE */	
@media screen and (max-width: 900px) {
	.flex {
	flex-direction: column;
	}

	.order-1 {
	order: 1;
	}

	.order-2 {
	order: 2;
	}
}

@media (max-width: 480px) {
	.container {
	width:100%;
	}	
	h1 {
	font-size: 28px;
	}
	h1 span {
	font-size: 24px;
	}
	h2 {
	font-size: 20px;
	}	
	h3 {
	font-family: "Comfortaa", cursive;
	font-size: 18px;
	}
	p {
	font-size: 12px;
	}
	#photos img {
    width:200px;
    }

}

/* bulle discussion */
#blurb-box-1 {
  position: relative;
  background-color: #D5D6D2;
  color: #212121  ;
  padding: 30px;
  border-radius: 20px;
  max-width: 400px;
  margin-top: 80px;
  margin-bottom: -100px;
}
#blurb-box-1:after {
  top: 100%;
  left: 30%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(232, 244, 247, 0);
  border-top-color: #D5D6D2;
  border-width: 30px;
  margin-left: -30px;
}
#blurb-box-1 img {
  -webkit-box-shadow: 0px 0px 20px -5px #212121  ;
  -moz-box-shadow: 0px 0px 20px -5px #212121  ;
  box-shadow: 0px 0px 20px -5px #212121  ;
  position: absolute;
  top: -120px;
  left: 7%;
  transform: rotateZ(-6deg);
  z-index: -1;
}
#blurb-box-1 a {
  position: absolute;
  top: -80px;
  right: 0;
  transform: rotateZ(6deg);
}

@media screen and (max-width: 900px) {
  #blurb-box-1 {
    margin: 0 auto;
    margin-top: 60px;
    bottom: -100px;
  }
  #blurb-box-1:after {
    left: 50%;
  }
}
@media (max-width: 480px) {
  #blurb-box-1 {
    margin-top: 0;
  }
  #blurb-box-1 img {
    /*display: none;*/
	width:80px;
	top: -60px;
  }
  #blurb-box-1 a {
    position: inherit;
    display: block;
    margin-top: -20px;
    text-align: center;
    transform: rotateZ(0deg);
  }
}



/* pavés*/
.c-btn {
  color: #fff;
  width:350px;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 9px 24px 9px 24px;
  border-style: solid;
  background: transparent;
  cursor: default;
  user-select: none;
  vertical-align: bottom;
  position: relative;
  transform: translate(0.5em -0.4em);
  transition: transform 0.2s;
  outline: none;
  margin: 1px 11px;
  color:#fff;
  text-decoration:none;
}
.c-btn:hover {
  transform: translate(0.2em, -0.1em);
}
.c-btn:hover:before {
  transform: translate(-0.5em, 0.5em);
}
.c-btn:active {
  transform: translate(0, 0);
  transition-duration: 0.1s;
}
.c-btn:active:hover {
  transition-duration: 0.1s;
  transform: translate(0, 0);
}

.u-radius:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: translate(0.4em, -0.4em);
  transition: transform 0.2s, background-color 0.2s;
}

.u-radius1 {
  margin-top: 45px;
  border-radius: 45px 15px;
}
.u-radius1:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 45px 15px;
  height: 100%;
  width: 100%;
  transform: translate(0.4em, -0.4em);
  transition: transform 0.2s, background-color 0.2s;
}

.u-radius2 {
  margin-top: 45px;
  border-radius: 15px 45px;
}
.u-radius2:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 15px 45px;
  height: 100%;
  width: 100%;
  transform: translate(0.4em, -0.4em);
  transition: transform 0.2s, background-color 0.2s;
}

.blue {
  border-color: #fff;
}
.blue:before {
  background-color: rgba(76, 147, 199, 0.4);
}
.e-ripple_animate {
  border-radius: 50%;
  background: #fff;
  position: absolute;
  animation: e-drop 0.7s linear;
}

@keyframes e-drop {
  0% {
    transform: scale(0);
  }
  25% {
    opacity: 0.4;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
  }
}
/* cerclage image */
.roundedImage{
    overflow:hidden;
    -webkit-border-radius:75px;
    -moz-border-radius:75px;
    border-radius:75px;
    width:150px;
    height:150px;
}

/* AVANTAGES */
.avantages ul,li {
  /*list-style-type: none;*/
  margin-left: 10px;
}

/* FOOTER */
footer {
  background-color: #212121  ;
  width: 100%;
  color: white;
}
footer .footer-main h3 {
  color: #76bed0;
  font-size: 22px;
}
footer .footer-main h2 a {
  color: #c2e2ea;
  text-decoration: none;
  font-size: 42px;
  padding: 10px;
}
footer .footer-main h2 a:hover {
  color: white;
}
footer .footer-copyright {
  padding: 30px 0;
  background-color: #212121;
}
footer .footer-copyright h4 {
  font-size: 18px;
  font-family: "Comfortaa", cursive;
}
footer .footer-copyright p {
  font-size: 12px;
  color: #42d4ff;
}

.contact {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px;
}
.contact input {
  background-color: #CACFD2;
  border: none;
  color: white;
  display: block;
  font-family: "Comfortaa", cursive;
  font-size: 14px;
  margin-bottom: 20px;
  padding: 20px;
  width: 100%;
}
.contact textarea {
  background-color: #CACFD2;
  color: white;
  display: block;
  font-family: "Comfortaa", cursive;
  font-size: 14px;
  margin-bottom: 20px;
  padding: 20px;
  width: 100%;
}
.contact button {
  border-radius: 2.5em;
  background-color: #2A7B9B;
  border: 2px solid #2A7B9B;
  color: #FFF;
  display: block;
  font-family: "Comfortaa", cursive;
  font-size: 18px;
  margin: auto;
  padding: 20px;
  transition: background 0.2s;
}
.contact button:hover {
  background-color: #FFF;
  border: 2px solid #2A7B9B;
  color: #2A7B9B;
  cursor: pointer;
}

/* NAV */
nav {
  color: white;
  font-family: "Comfortaa", cursive;
  font-size: 22px;
  font-weight: 500;
  position: fixed;
  transition: all 0.2s;
  width: 100%;
  z-index: 1000;
}

.nav {
  display: flex;
  padding: 0px 30px;
  justify-content: space-between;
  transition: background 0.2s;
}
.nav span {
  margin-top: 30px;
}

.nav-items {
  display: flex;
}
.nav-items a {
  box-sizing: border-box;
  padding: 30px 0 5px 0;
  margin: 0 30px;
  text-decoration: none;
  color: white;
  transition: padding 0.2s;
}
.nav-items a:hover {
  border-bottom: 3px solid white;
  padding-top: 25px;
}
.nav-items a:last-child {
  display: none;
}
.nav-items a:last-child:hover {
  cursor: pointer;
  border: none;
  color: white;
  background-color: #D5D6D2;
}

/*scrolling*/
.nav-scroll {
  background: #212121  ;
  color: white;
  font-size: 14px;
  transition: all 0.5s;
}
.nav-scroll span {
  margin-top: 20px;
}
.nav-scroll .nav-items a {
  padding: 20px 0;
  color: white;
  border: none;
  border-top: 3px solid transparent;
}
.nav-scroll .nav-items a:hover {
  border-color: #2A7B9B;
}
.nav-scroll .nav-items a.active {
  color: #2A7B9B;
  border-color: #2A7B9B;
}

/*navigation overlay*/
.nav-overlay {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 10000;
  background-color: #212121  ;
  overflow-x: hidden;
  transition: all 0.2s;
  padding-top: 60px;
  text-align: center;
}
.nav-overlay a {
  padding: 10px;
  text-decoration: none;
  font-size: 22px;
  color: #D5D6D2;
  display: block;
  transition: 0.2s;
}
.nav-overlay a:hover {
  color: white;
}
.nav-overlay .toggle-nav {
  position: absolute;
  top: 0;
  right: 0;
  padding: 30px;
  font-size: 22px;
}
.nav-overlay .toggle-nav:hover {
  cursor: pointer;
  background-color: #CACFD2;
}

/*responsive*/
@media screen and (max-width: 900px) {
  .nav {
    padding-right: 0;margin-top: -10px;
  }
  .nav-items a {
    display: none;
    padding: 0;
  }
  .nav-items a:last-child {
    display: block;
    padding: 30px;
    margin: 0;
    border-bottom: none;
  }
  .nav-scroll .nav-items a:last-child {
    padding: 20px;
	
  }
  .nav div {
    font-size: 15px;
  }  
  .showcase .description {
    padding: 15px 15px;
  }
  .showcase .description.text-right {
    text-align: left;
  }  
  .bg-hero .container p {
    font-size: 0.8em;
	text-align: justify;
  }
  .bg-hero .container img {
	max-width: 100%;
	height: auto;
  }
  /* boutton */
	.btn {
	  font-size: 12px;
	  padding: 10px;
	  width:150px;
	}
	.btn-outline {
	  width: 150px;  
	}
.c-btn {
  width:250px;
  font-size: 1rem;
  line-height: 1;
  padding: 4px 12px 4px 12px;
  color:#fff;
}
.u-radius1 {
  margin-top: 15px;
}
.u-radius2 {
  margin-top: 15px;
}
}

.shape {
  position: absolute;
  z-index: 0;
}

#shape-circle-1 {
  left: -100px;
  bottom: -100px;
  background-color: #CEE0DF;
  height: 50vh;
  width: 50vh;
  border-radius: 50vh;
}

#shape-circle-2 {
  top: -150px;
  right: -150px;
  background-color: #CEE0DF;
  height: 90vh;
  width: 90vh;
  border-radius: 80vh;
}

#shape-circle-3 {
  right: -100px;
  bottom: -100px;
  background-color: #CEE0DF;
  height: 70vh;
  width: 70vh;
  border-radius: 50vh;
}

#shape-circle-4 {
  left: -150px;
  top: -150px;
  background-color: #CEE0DF;
  height: 90vh;
  width: 90vh;
  border-radius: 90vh;
}

#shape-circle-5 {
  right: -400px;
  top: 450px;
  background-color: #CEE0DF;
  height: 65vh;
  width: 65vh;
  border-radius: 90vh;
}

#shape-circle-6 {
  left: 5%;
  bottom: 30%;
  background-color: #CEE0DF;
  height: 40vh;
  width: 40vh;
  border-radius: 90vh;
}

@media (max-width: 480px) {
  .shape {
    display: none;
  }
}

/* PHOTOS */
#photos h2 {
  font-size: 63px;
}


.padding-v-md {
  padding: 60px 0px;
}

.padding-v-lg {
  padding: 120px 0px;
}

.padding-md {
  padding: 20px 0px;
}

.padding-sm {
  padding: 15px 0px;
}

.height-min-full {
  min-height: 100%;
}

.d-block {
  display: block;
}

.m-auto {
  margin: 0 auto;
}


/*other*/


.icon {
 border: 3px solid;
 height: 100px;
 width: 100px;
 -moz-border-radius:50px;
 -webkit-border-radius: 50px;
 display: table-cell;
 vertical-align:middle;
 text-align: center;
 font-size:50px;
}

.language .select {
  cursor: pointer
}
.language .select + div {
  display: none
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
    } 
body {
    top: 0px !important; 
    }
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}

#google_translate_element { display: none; }
