@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

section[id],
div[id] {
  scroll-margin-top: 75px;
}

#page,
#page-wrapper,
#content,
#main {
  scroll-margin-top: 0;
}

body {
  color: #000;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 2.3rem;
  font-weight: 400;
  overflow-x: hidden;
}

h1 {
  width: 100%;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 150%; /* 7.2rem */
  letter-spacing: 0%;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  margin: 0rem auto 2rem auto !important;
  font-family: Shippori Antique, sans-serif;
  font-size: 3.2rem;
}

h2, h3 {
  font-family: Shippori Antique, sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 2.6rem;
  line-height: 4.5rem;
  letter-spacing: 4%;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 2rem !important;
}

h3 {
  font-family: Shippori Antique, sans-serif;
  font-size: 2.4rem !important;
  margin-bottom: 2.4rem !important;
  text-align: left;
}

p {
  max-width: 892px;
  box-sizing: border-box;
  font-size: 1.6rem;
  margin: 0 auto 4.4rem auto !important;
}
p.no-bottom-margin {
  margin-bottom: 0 !important;
}
p.no-top-margin {
  margin-top: 0 !important;
}
p.p-times {
  color: #000 !important;
  font-family: Times New Roman, serif !important;
  font-weight: 400;
  line-height: 2.8rem;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

ul {
  list-style: disc;
  padding-left: 20px;
  margin: 2.4rem 0;
}

/*
br{
  display: block;
  margin:0.75rem 0;
}*/
.container {
  width: 100%;
  max-width: 1400px;
  box-sizing: border-box;
  margin: 0 auto;
}

.nav-wrapper {
  position: sticky;
  top: 0;
  background: #000;
  width: 100%;
  max-width: 100%;
  color: #FFF;
  box-sizing: border-box;
  z-index: 100;
}
.nav-wrapper #main-nav {
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 130px;
  max-width: 1400px;
  margin: 0 auto;
  transition: height 0.3s ease;
}
.nav-wrapper #main-nav .menu-toggle {
  display: none;
}
.nav-wrapper #main-nav .menu-button {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}
.nav-wrapper #main-nav .menu-button .burger-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFF;
  position: relative;
  transition: background 0.2s ease-in-out;
}
.nav-wrapper #main-nav .menu-button .burger-icon::before, .nav-wrapper #main-nav .menu-button .burger-icon::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #FFF;
  position: absolute;
  left: 0;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
}
.nav-wrapper #main-nav .menu-button .burger-icon::before {
  top: -8px;
}
.nav-wrapper #main-nav .menu-button .burger-icon::after {
  top: 8px;
}
.nav-wrapper #main-nav .menu-toggle:checked ~ .menu-button .burger-icon {
  background: transparent;
}
.nav-wrapper #main-nav .menu-toggle:checked ~ .menu-button .burger-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-wrapper #main-nav .menu-toggle:checked ~ .menu-button .burger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}
.nav-wrapper #main-nav div.logo img {
  height: 43px;
  width: auto;
  transition: height 0.3s ease-in-out;
}
.nav-wrapper #main-nav div.menu {
  font-family: Shippori Antique, sans-serif;
  font-size: 1.2rem;
}
.nav-wrapper #main-nav div.menu ul {
  display: flex;
  gap: 3.4rem;
  list-style: none;
}
.nav-wrapper #main-nav div.menu ul li a {
  color: #FFF;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.nav-wrapper #main-nav div.menu ul li a:hover {
  text-decoration: underline;
}
.nav-wrapper #main-nav div.menu ul li {
  /*TODO FONT etc.*/
}
.nav-wrapper.scrolled #main-nav {
  height: 100px;
}
.nav-wrapper.scrolled #main-nav div.logo img {
  height: 35px;
}
@media (max-width: 899px) {
  .nav-wrapper #main-nav {
    height: 80px;
    position: relative;
  }
  .nav-wrapper #main-nav .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-wrapper #main-nav div.menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFF;
    border-top: 0 solid #EDEDED;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-top-width 0.5s ease;
  }
  .nav-wrapper #main-nav div.menu ul {
    flex-direction: column;
    gap: 0;
    margin: 0;
  }
  .nav-wrapper #main-nav div.menu ul li {
    width: 100%;
  }
  .nav-wrapper #main-nav div.menu ul li a {
    display: block;
    color: #000;
    font-family: Shippori Antique, sans-serif;
    font-size: 1.8rem;
    border-bottom: 1px solid #F0F0F0;
    padding: 1rem 40px;
  }
  .nav-wrapper #main-nav div.menu ul li a:hover {
    text-decoration: none;
    color: #64787B;
  }
  .nav-wrapper #main-nav div.menu ul li:last-child a {
    border-bottom: none;
  }
  .nav-wrapper #main-nav .menu-toggle:checked ~ div.menu {
    max-height: 500px;
    border-top-width: 1px;
  }
  .nav-wrapper.scrolled #main-nav {
    height: 80px;
  }
}

.feature-image {
  width: 100%;
  aspect-ratio: 2.3;
  overflow: hidden;
  max-height: 613px;
}
.feature-image img, .feature-image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.inner-content {
  padding: 0 24px;
}
.inner-content h1 {
  margin-top: 100px !important;
}
.inner-content h2 {
  font-size: 2.6rem;
  text-align: left;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.inner-content h3 {
  font-size: 1.8rem !important;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.inner-content p {
  color: #000;
  margin: 2.2rem auto !important;
}

#main section, section {
  width: 100%;
  padding: 96px 16px;
  display: grid;
  grid-template-columns: 1fr min(1266px, 100%) 1fr; /* Pour avoir une colonne centrale de x px sans rajouter de d'élément interne. */
}
#main section > *, section > * {
  grid-column: 2;
  -moz-column-gap: 8rem !important;
       column-gap: 8rem !important;
}
#main section, section {
  /* HOME PRESENTATION */
}
#main section figure.av-presentation img, section figure.av-presentation img {
  width: 100%;
}
#main section.section-presentation, section.section-presentation {
  background-color: #000;
  color: #FFF;
}
#main section.section-presentation p, section.section-presentation p {
  margin: 0 auto 3rem auto;
}
#main section.section-presentation p:first-of-type, section.section-presentation p:first-of-type {
  font-family: "Times New Roman";
  font-weight: 200;
  font-size: 3.4rem;
  line-height: 100% !important;
  max-width: 620px;
}
#main section.section-presentation p:not(:first-of-type), section.section-presentation p:not(:first-of-type) {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
#main section.section-nos-services > p:first-of-type, section.section-nos-services > p:first-of-type {
  margin: 0 auto 7rem auto !important;
  color: #000 !important;
}
#main section.section-nos-autocars, section.section-nos-autocars {
  background-color: #FCF9F1;
}
#main section.section-nos-autocars p, section.section-nos-autocars p {
  margin: 0 !important;
  max-width: 760px;
}
#main section.section-nos-autocars p:first-of-type, section.section-nos-autocars p:first-of-type {
  color: #000 !important;
}
#main section.section-nos-autocars h3, section.section-nos-autocars h3 {
  font-size: 2.6rem !important;
  margin: 1.2rem 0 1rem 0 !important;
  text-align: left;
  font-family: "Times New Roman", Times, serif;
  text-transform: none;
  letter-spacing: 0%;
  font-weight: 300;
}
#main section.section-nos-autocars figure, section.section-nos-autocars figure {
  margin: 24px 0px;
}
#main section.section-nos-autocars figure.logo-mercedes img, section.section-nos-autocars figure.logo-mercedes img {
  max-width: 48px;
  height: auto;
}
#main section.section-nos-autocars figure.logo-setra img, section.section-nos-autocars figure.logo-setra img {
  max-width: 148px;
  height: auto;
}
#main section.section-notre-histoire p, section.section-notre-histoire p {
  max-width: 1070px;
  font-family: Times New Roman, serif;
  color: #000;
}
#main section.section-notre-histoire figure, section.section-notre-histoire figure {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
#main section.section-nos-agences, section.section-nos-agences {
  background: #EDEDED;
}
#main section.section-nos-agences div.agences, section.section-nos-agences div.agences {
  display: flex;
  width: 800px;
  max-width: 100%;
  justify-content: space-between;
  margin: 5rem auto 0 auto;
}
@media (max-width: 899px) {
  #main section.section-nos-agences div.agences, section.section-nos-agences div.agences {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
  }
}
#main section.section-nos-agences div.agences div.agence, section.section-nos-agences div.agences div.agence {
  text-align: center;
}
#main section.section-nos-agences div.agences div.agence span.name, section.section-nos-agences div.agences div.agence span.name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.8rem;
}
#main section.section-nos-agences div.agences div.agence a.address, section.section-nos-agences div.agences div.agence a.address {
  color: inherit;
}
#main section.section-nos-agences div.agences div.agence a.address:hover, section.section-nos-agences div.agences div.agence a.address:hover {
  text-decoration: none;
}
#main section.section-nos-agences div.agences div.agence a.tel, #main section.section-nos-agences div.agences div.agence a.email, section.section-nos-agences div.agences div.agence a.tel, section.section-nos-agences div.agences div.agence a.email {
  color: inherit;
  text-decoration: none;
}
#main section.section-nos-agences div.agences div.agence a.tel:hover, #main section.section-nos-agences div.agences div.agence a.email:hover, section.section-nos-agences div.agences div.agence a.tel:hover, section.section-nos-agences div.agences div.agence a.email:hover {
  text-decoration: underline;
}
#main section.section-nos-agences div.social-boutons, section.section-nos-agences div.social-boutons {
  -moz-column-gap: 2rem !important;
       column-gap: 2rem !important;
}
#main section.section-nos-agences div.social-boutons img, section.section-nos-agences div.social-boutons img {
  width: 48px;
  height: 48px;
  cursor: pointer;
}
#main section.section-confiance div.references, section.section-confiance div.references {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
#main section.bta-group, section.bta-group {
  padding: 0px 16px;
  background-color: #9BA691;
  text-align: center;
}
#main section.bta-group p, section.bta-group p {
  color: #FFF !important;
  font-size: 3.2rem;
  font-weight: normal;
  font-family: Helvetica, sans-serif;
  max-width: 100% !important;
  margin-top: 4.4rem !important;
}
#main section.bta-group p img, section.bta-group p img {
  display: inline-block;
  margin-right: 36px;
  height: 48px;
  vertical-align: middle;
}
#main section.bta-group p a, section.bta-group p a {
  color: #FFF !important;
}
#main section.bta-group p a:hover, section.bta-group p a:hover {
  text-decoration: none;
}

#footer {
  color: #FFF;
  padding: 20px 16px;
  background: #000;
  text-align: center;
  font-size: 1.2rem;
}
#footer p.promo {
  color: #9A9A9A;
  font-weight: 400;
  font-style: Regular;
  line-height: 16px;
  letter-spacing: 0%;
  vertical-align: middle;
  max-width: 365px;
  font-size: inherit;
  margin-top: 3.4rem !important;
}
#footer div.menu-1 ul {
  display: flex;
  list-style: none;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  justify-content: space-between;
  font-family: Shippori Antique, sans-serif;
}
#footer div.menu-1 ul li a {
  color: #FFF !important;
  text-decoration: none;
  text-transform: uppercase;
}
#footer div.menu-1 ul li a:hover {
  text-decoration: underline;
}
#footer div.menu-2 ul {
  display: flex;
  list-style: none;
  margin: 3rem auto;
  width: 100%;
  max-width: 875px;
  justify-content: center;
  gap: 40px;
  vertical-align: middle;
}
#footer div.menu-2 ul li {
  vertical-align: middle;
}
#footer div.menu-2 ul li:not(:first-of-type):before {
  vertical-align: middle;
  content: "";
  display: inline-block;
  width: 1px;
  background-color: #FFF;
  height: 100%;
  translate: -20px 0px;
}
#footer div.menu-2 ul li a {
  color: #FFF !important;
  text-decoration: none;
}
#footer div.menu-2 ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1200px) {
  section.section-confiance div.references {
    transform: translateX(-20px);
    display: grid;
    grid-column: 0;
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
    -moz-column-gap: 20px !important;
         column-gap: 20px !important;
    align-items: center;
  }
  section.section-confiance div.references div.image-wrapper {
    width: 100%;
    text-align: center;
  }
  section.section-nos-services .wp-block-columns:nth-of-type(2) .wp-block-column:first-of-type {
    order: 1;
  }
  section.section-nos-services .wp-block-columns:nth-of-type(2) .wp-block-column:nth-of-type(2) {
    order: 0;
    margin-top: 44px;
  }
}
@media screen and (max-width: 800px) {
  h1 {
    font-size: 3rem;
    line-height: 100%;
  }
  .inner-content h2 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .inner-content h3 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  section.section-confiance div.references {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
  }
  section.bta-group p {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
  section.bta-group p img {
    display: block;
    margin: 0 auto 24px auto;
    height: 36px;
  }
  section.bta-group p a {
    display: block;
  }
  #footer p.promo {
    max-width: calc(100% - 20px);
  }
  #footer div.menu-1 ul, #footer div.menu-2 ul {
    padding-left: 12px;
    flex-direction: column;
    justify-content: unset;
    width: unset;
    justify-content: start;
    align-items: start;
    gap: 4px;
  }
}/*# sourceMappingURL=custom.css.map */