/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

:root {
  --white: #f9f9f9;
  --black: #36383f;
  --gray: #85888c;
  --orange: #f8884d;
  --blue: #2594a3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* background-color: var(--white); */
  font-family: "Poppins", sans-serif;
  /* margin-top: 10%; */
  color: #292929;
}

a {
  text-decoration: none;
  color: #e8b210;
}

ul {
  list-style: none;
}


h2,
h3,
h4 {
  /* color: #ffffff; */
  margin-bottom: 0.5em;
}

h1 {
  margin: 20px 0;
  font-size: 1.8em;
  line-height: 36px;
  color: #292929;
}

/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 1px 1px 5px 0px var(--gray);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

/* Logo */
.logo {
  margin-left: 10px;
}

/* Nav menu */
.nav {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 54px;
  background-color: #333;
  overflow: hidden;
}

.menu a {
  display: block;
  padding: 9px;
  color: #e8b210;
  margin-top: 2px;
  font-weight: bold;
  text-align: center;
  font-size: 1em;
}

.menu a:hover {
  background-color: var(--gray);
}

.nav {
  /* padding: 0 5%; */
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

/* Menu Icon */
.hamb {
  cursor: pointer;
  float: right;
  padding: 14px 8px;
}

/* Style label tag */

.hamb-line {
  background: #e8b210;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
}

/* Style span tag */

.hamb-line::before,
.hamb-line::after {
  background: #e8b210;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.hamb-line::before {
  top: 7px;
}

.hamb-line::after {
  top: -7px;
}

.side-menu {
  display: none;
}

/* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked~nav {
  max-height: 100%;
}

.side-menu:checked~.hamb .hamb-line {
  background: transparent;
}

.side-menu:checked~.hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}

.side-menu:checked~.hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}

/* Responsiveness */
@media (min-width: 768px) {
  .nav {
    max-height: none;
    top: 0;
    position: relative;
    float: right;
    width: fit-content;
    background-color: transparent;
  }

  .menu li {
    float: left;
  }

  .menu a:hover {
    background-color: transparent;
    color: var(--gray);
  }

  .hamb {
    display: none;
  }
}

/* --------------------------------------------------------- */

.bold {
  font-weight: bold;
}

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

.muted {
  color: #777;
}

/* --------------------------------------------------------- */

#search-wrapper {
  /* margin: 0 auto; */
  max-width: 400px;
  margin: 30px auto;
  margin-top: 60px;
}

.ariane {
  font-size: 0.9em;
  margin-bottom: 2%;
  font-style: italic;
  /* color: #e8b210; */
  font-weight: bolder;
  padding: 10px 0;
}

.ariane a {
  color: #e8b210;
  /* font-weight: bolder; */
}

form #garage div {
  padding: 10px;
}

form #garage div label {
  width: 150px;
  display: inline-block;
  text-align: right;
  padding-right: 10px;
}

form #garage div input[type="text"] {
  display: inline-block;
  height: 30px;
  /* margin-bottom: 10px; */
  padding: 3px;
  width: 300px;
}

form #garage+button.btn {
  display: inline-block;
  margin-bottom: 10px;
  margin-left: 150px;
  margin-top: 30px;
  padding: 10px;
  width: 200px;
  font-size: 1em;
}

form #garage div textarea {
  height: 100px;
  /* margin-bottom: 10px; */
  padding: 3px;
  width: 600px;
}

.dep-card {
  padding: 10px;
  box-shadow: 0 0 15px #3333333d;
  margin: 10px 0;
  margin-bottom: 20px;
  border-radius: 4px;
  background: #e8b210;
}

.home-count {
  color: #666;
  font-style: italic;
}

.dep-card h2 {
  color: #fff;
  text-shadow: 2px 2px 0 #00000061;
}

.dep-card a {
  color: #fff;
  ;
}

svg#map-garages {
  height: 400px;
  width: 400px;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

svg#map-garages path:hover {
  cursor: pointer;
}

header#garage-header {
  padding-top: 100px;
  /* background-color: #e8b210; */
  padding-bottom: 50px;
}

header#garage-header h1 {
  color: #292929;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

header#garage-header input[type="text"] {
  border-radius: 100px;
  padding: 8px;
  padding-right: 86px;
  padding-right: 87px;
  padding-left: 12px;
  border: none;
  width: 300px;
  height: 34px;
}

header#garage-header input[type="submit"] {
  height: 26px;
  border-radius: 100px;
  border: none;
  padding: 2px 8px;
  background-color: var(--orange);
  color: #fff;
  margin-left: -88px;
}

header#garage-header input[type="submit"]:hover {
  cursor: pointer;
  background-color: #df6e32;
}

.container-g {
  /* text-align: center; */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3% 0;
  /* display: grid;
    grid-gap: 10px;
    grid-template-columns: 2fr 1fr; */
}

.list-garages li {
  margin-left: 20px;
  margin-bottom: 20px;
  line-height: 16px;
}

iframe#garage-mini-map {
  border: 1px solid lightgrey;
  padding: 3px;
  width: 100%;
  border-radius: 20px;
}

header.header {
  padding: 15px;
}

header.header .logo img {
  vertical-align: middle;
  height: 40px;
  transition-duration: 0.5s;
}

/* nav li a {
  color: var(--orange);
} */

.garage-card h1 {
  margin-top: 0.4em;
  /* color: #e8b210; */
  text-align: center;
}

span.day {
  display: inline-block;
  margin-bottom: 4px;
}

span.day span {
  width: 40px;
  display: inline-block;
}

.garage-card #description {
  margin: 10px 0;
  font-style: italic;
  color: #000;
}

.garage-card #open-time {
  font-style: italic;
  /* box-shadow: 0 0 20px #0000004d; */
  padding: 15px;
  margin-top: 30px;
  border-left: 10px solid #e8b210;
}

/* --------------------------------------------------------- */

/* Responsiveness */
@media (max-width: 767px) {
  header.header .logo img {
    height: 30px;
    transition-duration: 0.5s;
  }

  .container-g {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr;
  }


  #phone {
    text-align: center;
    margin-bottom: 1em;
  }


  #phone a {
    color: #e8b210;
  }

  #address {
    text-align: center;
  }

  header#garage-header {
    padding-bottom: 10%;
    padding-top: 0;
  }

  header#garage-header h1 {
    font-size: 1.6em;
  }

  .garage-card #phone {
    font-size: 16px;
  }

  .garage-card #address {
    font-size: 16px;
  }



  .garage-card #description {
    margin: 10px 0;
    font-style: italic;
  }

  .garage-card #open-time {
    font-style: italic;
  }

  iframe#garage-mini-map {
    width: 100%;
    height: 200px;
  }

  header.header {
    padding: 12px;
  }

  header.header img {
    vertical-align: middle;
  }
}

.home-intro {
  text-align: left;
  padding: 15px;
  background-color: #e8b210;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px #00000026;
  font-size: 15px;
  margin-bottom: 30px;
}

.fff {
  color: #fff;
}


#main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 10%;
}

.center {
  text-align: center;
}

.bb-yellow {
  text-decoration: underline;
  text-decoration-color: #e8b210;
}

.alert {
  position: relative;
  width: auto;
  height: auto;
  padding: 10px;
  margin: 30px 0;
  line-height: 1.8;
  border-radius: 5px;
  cursor: pointer;
  font-family: sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}

.alertCheckbox {
  display: none;
}

:checked+.alert {
  display: none;
}

.alertText {
  display: table;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
}

.alertClose {
  float: right;
  padding-top: 5px;
  font-size: 10px;
}

.clear {
  clear: both;
}

.info {
  background-color: #EEE;
  border: 1px solid #DDD;
  color: #999;
}

.success {
  background-color: #EFE;
  border: 1px solid #DED;
  color: #9A9;
}

.notice {
  background-color: #EFF;
  border: 1px solid #DEE;
  color: #9AA;
}

.warning {
  background-color: #FDF7DF;
  border: 1px solid #FEEC6F;
  color: #C9971C;
}

.error {
  background-color: #FEE;
  border: 1px solid #EDD;
  color: #A66;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  /* z-index: -1; */
}


.img-fluid {
  max-width: 100%;
}



.accordion article label {
  font-size: 1.1em;
  font-weight: bold;
  text-shadow: 2px 2px 0 #0000004a;
}

.accordion article label+div {
  margin-top: 10px;
}

.accordion {
  /* max-width: 420px; */
  text-align: left;
}

article {
  border-radius: 4px;
  padding: 15px;
  margin: 1em 0;
  background-color: #e8b210;
  color: #fff;
}

input[type="radio"] {
  appearance: none;
  position: fixed;
  top: -100vh;
  left: -100vh;

  &~div {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
  }

  &:checked~div {
    max-height: 200px;
  }
}













.contact-container {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 400px;
}

.contact-container input[type=text],
.contact-container textarea,
.contact-container input[type=email] {
  font-size: 20px;
  line-height: 20px;
  /* border-radius: 4px; */
  padding: 10px;
  margin-right: 0px;
  width: 100%;
  /* height: 100% !important; */
  margin: 10px !important;
  margin-bottom: 0 !important;
  width: 100%;
}

.contact-container input[type=submit] {
  background-color: #e8b210;
  color: white;
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
  margin-left: 10px;
}

.contact-container input[type=submit]:hover {
  background-color: #97750e;
}

.contact-container h1 {
  color: #e8b210;
  text-align: center;
  width: 100%;
}








.logo2 {
  -webkit-animation: rotation 35s infinite linear;
  -moz-animation: rotation 35s infinite linear;
  -o-animation: rotation 35s infinite linear;
  animation: rotation 35s infinite linear;
}

@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }

  to {
    -o-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}




















.pagination span {

  border: 1px solid #c7b260;
  padding: 4px 8px;
  margin-right: 10px;
  border-radius: 4px;
  background: #fff;

}

.pagination {
  display: block;
  padding: 10px;
  list-style: none;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 50px;

}

.tags-list {
  /* background-color: #fff; */
  /* width: 80%; */
  /* margin: 0 auto; */
  /* margin-top: 0px; */
  /* padding: 10px; */
  /* box-shadow: 0 0 20px #66666663; */
  /* border-radius: 4px; */
  /* margin-top: 30px; */
}





/* ------------------ BLOG -------------------------------------- */

.page-timeline {
  margin: 30px auto 0 auto;
  position: relative;
  /* max-width: 1000px; */
}

.page-timeline:before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 200px;
  right: auto;
  height: 100%;
  width: 3px;
  background: #e8b210;
  z-index: 0;

  /*! -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3); */
  /*! box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3); */
}

.page-timeline:after {
  position: absolute;
  content: '';
  /* width: 3px; */
  height: 40px;
  /* background: #3498db; */
  /* background: -webkit-linear-gradient(top, #4782d3, rgba(52, 152, 219, 0)); */
  background: linear-gradient(to bottom, #e8b210, rgba(255, 255, 255, 0));
  top: 100%;
  left: 303px;
  /* -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3); */
  /* box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3); */
}

.vtimeline-content {
  margin-left: 250px;
  background: #fff;
  padding: 20px 20px;
  border-radius: 3px;
  text-align: left;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.vtimeline-content h3 {
  font-size: 1.5em;
  font-weight: 600;
  display: inline-block;
  margin: 0;
}

.vtimeline-content p {
  font-size: 0.9em;
  margin: 0;
}

.vtimeline-point {
  position: relative;
  display: block;
  vertical-align: top;
  margin-bottom: 30px;
}

.vtimeline-icon {
  position: relative;
  color: #fff;
  width: 50px;
  height: 50px;
  background: #e8b210;
  border-radius: 50%;
  float: left;
  text-align: center;
  line-height: 50px;
  z-index: 99;
  margin-left: 177px;
  border: 4px solid #ffffff;
}

.vtimeline-icon i {
  display: block;
  font-size: 1.5em;
  line-height: 50px;

}

.vtimeline-date {
  width: 160px;
  padding-top: 4px;
  text-align: right;
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: bold;
  color: #000000bf;
}

.post-meta {
  padding-top: 15px;
  margin-bottom: 20px;
}

.post-meta li:not(:last-child) {
  margin-right: 10px;
}

h3 {
  color: #252525;
  font-weight: 700;
  font-variant-ligatures: common-ligatures;
  margin-top: 0;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.mb20 {
  margin-bottom: 20px !important;
}

.activite-item img {
  background-color: #c7b260;
  padding: 10px;
  border-radius: 1000px;
  width: 100px;
  margin-bottom: 15px;
}

.activite-item h2 {
  display: inline-block;
  margin-left: 15px;
}

#apropos img {
  float: left;
  padding-right: 30px;
}

.post-tags {
  margin: 1em 0;
  font-size: .8em;
}

#contact-msg {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 15px;
  padding-left: 20px;
  outline: none;
  color: #101010;
  background: #eeeeee;
  height: 152px;
  padding-top: 20px;
}





.tags-list strong,
.post-meta a {}

.hidden {
  display: none;
}

#post_content {
  height: 600px;
}

.post-content {
  white-space: pre-line;
}





@media (max-width: 992px) {
  .vtimeline-content {
    margin-left: 0;
    padding: 20px 20px;
  }

  .vtimeline-icon,
  .vtimeline-date,
  .page-timeline:before {
    display: none;
  }


  .hero_area {
    min-height: auto;
  }

  .slider_section .detail-box {
    margin-bottom: 45px;
    margin-top: 100px;
    height: 350px;
  }

  .custom_nav-container .navbar-nav {
    padding-top: 15px;
    align-items: center;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 5px 25px;
    margin: 5px 0;
  }

  .footer_section .footer_bg_box img {
    -o-object-position: 10% top;
    object-position: 10% top;
  }
}

@media (max-width: 767px) {


  #apropos img {
    padding-right: 0;
  }


  .about_section .img-box {
    margin-bottom: 30px;
  }

  .contact_section .form_container {
    margin-bottom: 45px;
  }

  .client_section .box {
    margin: 45px 0;
  }

  .hero_area .hero_bg_box img {
    -o-object-position: center top;
    object-position: center top;
  }
}

@media (max-width: 576px) {}

@media (max-width: 480px) {
  .slider_section .detail-box h1 {
    font-size: 2rem;
  }

  .about_section {
    border-radius: 90px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 420px) {}

@media (max-width: 376px) {}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.vtimeline-content img {
  max-width: 100%;
}