/*
color beige : #77785F
new :         #A0A177 ??
*/
/***** LOADING PAGE *****/

.fadeIn, .loading-window {
  animation: fadeIn 2s both;
}
.btn_admin{
  position: relative;
  float: right;
  width: 42px;
  font-size: .7rem;
}
.loading-window {
  background: #232629;
  border-radius: 50%;
  border: 1px solid #ffe4e1;
  color: #ffe4e1;
  width: 300px;
  height: 300px;
  left: 50%;
  margin-left: -150px;
  margin-top: -140px;
  position: fixed;
  top: 45%;
  z-index: 99;
}
.loading-window .text {
  font-size: 25px;
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  width: auto;
  top: 60%;
  left: 26%;
  margin: 0 auto;
}
.loading-window .dots {
  /* animation des points de suspentions*/
  display: inline-block;
  width: 5px;
  overflow: hidden;
  vertical-align: bottom;
  animation: dots 2s linear infinite;
  transition: 1;
}
.car {
  position: absolute;
  width: 117px;
  height: 42px;
  left: 92px;
  top: 110px;
}
.car .road{
  position: absolute;
  width: 302px;
  height: 2px;
  background-color: #ffe4e1;
  top: 105%;
  left: -93px;
}
.car .strike {
  /* animation des ligne de vitesse*/
  position: absolute;
  width: 11px;
  height: 1px;
  background: #ffe4e1;
  animation: strikes 0.5s linear infinite;
}
.car .strike2 {
  top: 11px;
  animation-delay: 0.05s;
}
.car .strike3 {
  top: 22px;
  animation-delay: 0.15s;
}
.car .strike4 {
  top: 33px;
  animation-delay: 0.20s;
}
.car .strike5 {
  top: 44px;
  animation-delay: 0.25s;
}
.car-detail {
  position: absolute;
  display: block;
  background: #ffe4e1;
  animation: speed 5s linear infinite;
}
.car-detail.spoiler {
  width: 0;
  height: 0;
  top: 7px;
  background: none;
  border: 20px solid transparent;
  border-bottom: 8px solid #ffe4e1;
  border-left: 20px solid #ffe4e1;
}
.car-detail.back {
  height: 20px;
  width: 92px;
  top: 15px;
  left: 0px;
}
.car-detail.center {
  height: 35px;
  width: 75px;
  left: 12px;
  border-top-left-radius: 30px;
  border-top-right-radius: 45px 40px;
  border: 2px solid #ffe4e1;
  background: none;
  box-sizing: border-box;
}
.car-detail.center1 {
  height: 35px;
  width: 35px;
  left: 12px;
  border-top-left-radius: 30px;
}
.car-detail.front {
  height: 20px;
  width: 50px;
  top: 15px;
  left: 67px;
  border-top-right-radius: 50px 40px;
  border-bottom-right-radius: 10px;
}
.car-detail.wheel {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  top: 20px;
  left: 12px;
  border: 3px solid #232629;
  background: linear-gradient(45deg, transparent 45%, #ffe4e1 46%, #ffe4e1 54%, transparent 55%), linear-gradient(-45deg, transparent 45%, #ffe4e1 46%, #ffe4e1 54%, transparent 55%), linear-gradient(90deg, transparent 45%, #ffe4e1 46%, #ffe4e1 54%, transparent 55%), linear-gradient(0deg, transparent 45%, #ffe4e1 46%, #ffe4e1 54%, transparent 55%), radial-gradient(#ffe4e1 29%, transparent 30%, transparent 50%, #ffe4e1 51%), #333;
  animation-name: spin;
}
.car-detail.wheel2 {
  left: 82px;
}

@keyframes spin {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(36deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(72deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(108deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(144deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(180deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(216deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(252deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(288deg);
  }
  90% {
    transform: translate(2px, 1px) rotate(324deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(360deg);
  }
}
@keyframes speed {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(-1deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(-1deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
@keyframes strikes {
  from {
    left: 25px;
  }
  to {
    left: -80px;
    opacity: 0;
  }
}
@keyframes dots {
  from {
    width: 0px;
  }
  to {
    width: 15px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/***** /LOADING PAGE *****/

.center_margin{
  position: relative;
  margin: 0 auto;

}
.center_translate{
  position: relative;
  left: 50%;
  transform: translate(-50%);

}
.actions-btn{
  list-style-type: none;
}
@font-face {
  font-family: "ave-fedan";
  src: url("../webfonts/ave-fedan.ttf");
  font-weight:400;
}
#main article{
  position: relative;
  width: 50vw;
  height: auto;
}
@media (max-width: 80rem) {

  #main article{
    position: relative;
    width: 80vw;
    height: auto;
  }
}
@media (max-width: 62rem) {

  #main article{
    position: relative;
    width: 80vw;
    height: auto;
  }
}

.titre_h1{
  position: relative;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 1.2rem;
}
.titre_h2{
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
  text-align: justify;
  margin: 0 auto;
  color: #a0a189;
  /*  font-family: "ave-fedan"; */
}
.citation_content{
  position: relative;
  width: 100%;
  height: auto;
  margin: 25px auto 0 auto;
}
.citation{
  font-size: 1.4rem;
  font-weight: 600;
  color: #a0a189;
  margin: 50px auto 0 auto;
  text-align: center;
}
.citation:before {
  content: '’’';
  position: absolute;
  left: -125px;
  top: -110px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  font-size: 8em;
  text-align: left;
  font-family: Arial;
  letter-spacing: -16px;
  font-style: normal;
  font-weight: bold;
  color: #d3d3d3;
}
/*************************/
/******** SERVICES *******/
/*************************/
#work p{
  position: relative;
  padding: 0 0 0 50px;
}
.icon_services_content{
  position: absolute;
  width: 120px;
  height: auto;
  left: calc(-120px / 2);
}
#icon_entretient{
  margin-top: 50px;
}
#icon_mecanique{
  margin-top: 90px;
}
#icon_carrosserie{
  margin-top: 50px;
}
#icon_banc{
  margin-top: 50px;
}
#icon_airco{
  margin-top: 50px;
}
#icon_electro{
  margin-top: 100px;
}
#icon_co{
  margin-top: 50px;
}
.icon_services_content img{
  position: relative;

}
/*************************/
/******* /SERVICES *******/
/*************************/

/*************************/
/********* GALLERY *******/
/*************************/
.gallery_content{
  position: relative;
}
.gallery_content .container_gall {
  margin: auto;
  max-width: 71.25rem;
  width: 100%;
}
.gallery_content .grid {
  display: flex;
  flex-direction: column;
  flex-flow: row wrap;
}
.gallery_content .grid > [class*=column-] {
  display: block;
}
.gallery_content .column-md-4 {
  grid-column-start: span 4;
  grid-column-end: span 4;
}
.gallery_content .column-md-6 {
  grid-column-start: span 6;
  grid-column-end: span 6;
}
.gallery_content .column-xs-12 {
  flex-basis: 100%;
  /*  max-width: 100%; */
  padding: 5px;
}

.gallery_content .gallery {
  padding: 0 0 4rem 0;
}

.gallery_content .img-container {
  width: 100%;
  height: 500px;
  cursor: pointer;
  overflow: hidden;
}
.gallery_content .img-container:hover .img-content-hover {
  display: block;
}

.gallery_content img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.gallery_content img:hover {
  transform: scale(1.05);
}

.gallery_content .img-content-hover {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  display: none;
  padding: 1rem;
  background: #fff;
  font-weight: 400;
  margin-top: -27.5rem;
  margin-left: -29.5rem;
}

.gallery_content .title {
  color: #2e2e2e;
  font-size: 1.5rem;
  font-weight: 700;
}

.gallery_content .category {
  font-size: 1rem;
  color: #787878;
}

.gallery_content .img-content {
  display: none;
}

@media (min-width: 62rem) {
  .column-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
/*************************/
/******** /GALLERY *******/
/*************************/





.horaire_content{

}
.horaire_content h2{
  position: relative;
  text-align: center;
  color: #a0a189;
}

.infos_contact{
  position: relative;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: auto;
}
.infos_contact img{
  position: relative;
  width: 40px;
  height: auto;
}
.infos_contact .info{
  position: relative;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: auto;
  margin: 15px auto;
}
.infos_contact .info_content{
  position: relative;
  width: 50%;
  height: auto;
}
.infos_contact p,
.infos_contact a{
  position: relative;
  width: 90%;
  height: auto;
  margin: 4px auto 0 auto;
}
.infos_contact .marg_tel{
  position: relative;
  margin-top: 50px;
}

.RamchLogo{
  position: relative;
  float: left;
  width: 100px;
  height: auto;
  margin: 0 10px 0px 0;
  border: 2px white solid;
  border-radius: 50%;
}

/********* BTN ENVOIE ********/
.send_mail{
  color: #212326 !important;
  font-weight: 600 !important;
  width: 100% !important;
  border: none !important;
}
.btn_send_mail {
  position: relative;
  display: block;
  width: 230px;
  font-size: 19px;
  border-radius: 3px;
  padding-right: 30px;
  color: #212326;
  cursor: pointer;
  transition: .3s;
}
.btn_send_mail:hover svg {
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -o-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
  -webkit-transition: -webkit-transform 0.15s;
  -moz-transition: -moz-transform 0.15s;
  -o-transition: -o-transform 0.15s;
  -ms-transition: -ms-transform 0.15s;
  transition: transform 0.15s;
}
.btn_send_mail svg {
  position: absolute;
  top: 13px;
  right: 43px;
  height: 30px;
  width: auto;
  -webkit-transition: -webkit-transform 0.15s;
  -moz-transition: -moz-transform 0.15s;
  -o-transition: -o-transform 0.15s;
  -ms-transition: -ms-transform 0.15s;
  transition: transform 0.15s;
}
.btn_send_mail svg path {
  fill: #212326;
}
.btn_send_mail.clicked {
  /*  background-color: #cff5b3;
  border: 2px solid #cff5b3;
  color: #6aaa3b; */
  padding-right: 6px;
  -webkit-animation: bounce-in 0.3s;
  -moz-animation: bounce-in 0.3s;
  -o-animation: bounce-in 0.3s;
  -ms-animation: bounce-in 0.3s;
  animation: bounce-in 0.3s;
  cursor: default;
}
.btn_send_mail.clicked svg {
  -webkit-animation: flyaway 1.3s linear;
  -moz-animation: flyaway 1.3s linear;
  -o-animation: flyaway 1.3s linear;
  -ms-animation: flyaway 1.3s linear;
  animation: flyaway 1.3s linear;
  top: -80px;
  right: -1000px;
}
.btn_send_mail.clicked svg path {
  fill: #a0a189;
}
@-moz-keyframes flyaway {
  0% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: 13px;
    right: 25px;
    height: 30px;
  }
  5% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: 13px;
    right: 0px;
    height: 30px;
  }
  20% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
    top: 13px;
    right: -130px;
    height: 45px;
  }
  40% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: -40px;
    right: -280px;
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    top: -200px;
    right: -1000px;
    height: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-webkit-keyframes flyaway {
  0% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: 13px;
    right: 25px;
    height: 30px;
  }
  5% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: 13px;
    right: 0px;
    height: 30px;
  }
  20% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
    top: 13px;
    right: -130px;
    height: 45px;
  }
  40% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: -40px;
    right: -280px;
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    top: -200px;
    right: -1000px;
    height: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-o-keyframes flyaway {
  0% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: 13px;
    right: 25px;
    height: 30px;
  }
  5% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: 13px;
    right: 0px;
    height: 30px;
  }
  20% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
    top: 13px;
    right: -130px;
    height: 45px;
  }
  40% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: -40px;
    right: -280px;
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    top: -200px;
    right: -1000px;
    height: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@keyframes flyaway {
  0% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: 13px;
    right: 25px;
    height: 30px;
  }
  5% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: 13px;
    right: 0px;
    height: 30px;
  }
  20% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
    top: 13px;
    right: -130px;
    height: 45px;
  }
  40% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    top: -40px;
    right: -280px;
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  100% {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    top: -200px;
    right: -1000px;
    height: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
}
@-moz-keyframes bounce-in {
  0% {
    padding-right: 30px;
  }
  40% {
    padding-right: 6px;
  }
  50% {
    padding-left: 30px;
  }
  100% {
    padding-left: 6px;
  }
}
@-webkit-keyframes bounce-in {
  0% {
    padding-right: 30px;
  }
  40% {
    padding-right: 6px;
  }
  50% {
    padding-left: 30px;
  }
  100% {
    padding-left: 6px;
  }
}
@-o-keyframes bounce-in {
  0% {
    padding-right: 30px;
  }
  40% {
    padding-right: 6px;
  }
  50% {
    padding-left: 30px;
  }
  100% {
    padding-left: 6px;
  }
}
@keyframes bounce-in {
  0% {
    padding-right: 30px;
  }
  40% {
    padding-right: 6px;
  }
  50% {
    padding-left: 30px;
  }
  100% {
    padding-left: 6px;
  }
}
/******** /BTN ENVOIE ********/

#footer .copyright {
  position: relative;
  font-size: 0.5rem;
  top: 80px;
}

/****** CARTE *******/
#map{
  position: relative;
  width: 100%;
  height:400px;
}

/****** /CARTE *******/
