.header {
  display: flex;
  margin-bottom: 10px;
  justify-content: space-between;
}
.header_logo {
  width: 150px;
  padding: 10px 40px;
}
.header_menu {
  display: flex;
  gap: 42px;
  padding: 30px 70px 0 0;
  justify-content: end;
}
.header_menu__list {
  list-style-type: none;
  display: flex;
  gap: 60px;
  margin: 0;
}
.header .burger-menu {
  display: none;
}

.menu-item > a {
  text-decoration: none;
  color: #0D1317;
  font-family: "Monthoers";
  font-size: 20px;
  position: relative;
  transition: 0.5s;
}
.menu-item > a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 100%;
  left: 0;
  background: #30485F;
  transition: transform 0.5s;
  transform: scaleX(0);
  transform-origin: right;
}
.menu-item > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 900px) {
  .header_menu {
    display: none;
  }
  .header_logo {
    width: 100px;
    padding: 10px;
  }
  .burger-menu {
    display: block !important;
    padding: 21px;
  }
  .burger-icon {
    width: 30px;
    height: 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  .burger-icon span {
    width: 100%;
    height: 4px;
    position: relative;
    z-index: 100000000;
    border-radius: 100px;
    background-color: #94AEA9;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  }
  .burger-icon.active {
    position: fixed;
    top: 21px;
    right: 21px;
    z-index: 1000000000;
  }
  .burger-icon.active span:first-child {
    transform: translateY(10px) rotate(45deg);
    background-color: white;
  }
  .burger-icon.active span:nth-child(2) {
    opacity: 0;
  }
  .burger-icon.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
    background-color: white;
  }
  .burger-nav {
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    right: -100%;
    transition: right 0.5s ease, background-color 0.5s ease;
  }
  .burger-nav.active {
    right: 0;
    background-color: #94AEA9;
    z-index: 100000000;
  }
  .burger-nav .header_menu__list {
    flex-direction: column;
    gap: 10px;
    padding: 100px 30px;
    align-items: center;
  }
  .burger-nav .header_menu__list a {
    font-size: 25px;
  }
  .burger-nav li {
    padding: 15px 0;
  }
  .burger-nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
  }
}
.footer {
  display: flex;
  margin-top: 70px;
  background-color: #94AEA9;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  justify-content: space-between;
}
.footer_nav {
  display: flex;
  align-items: center;
}
.footer_nav_social {
  width: 54px;
}
.footer_list {
  list-style-type: none;
  align-items: center;
  display: flex;
  gap: 35px;
  padding: 0;
  margin: 22px 32px;
}
.footer_list > li > a {
  color: #0D1317;
  font-family: "Cormorant regular";
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer {
    display: none;
  }
}
.single .img img {
  width: 100%;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single .text {
  margin-left: 217px;
}
.single .info {
  margin-bottom: 10px;
  display: flex;
  height: 20px;
  align-items: center;
  gap: 13px;
}
.single .content .event {
  margin-top: 80px;
  width: 100%;
  background-color: #94AEA9;
  padding: 20px 110px 40px;
}
.single .content .event_header {
  display: flex;
  align-items: center;
  gap: 40px;
}
.single .content .event_header h2 {
  color: #E9E8DC;
}
.single .content .event_header svg {
  width: 61%;
  margin: 42px 0 28px 0;
}
.single .content .event_info {
  display: flex;
  gap: 70px;
}
.single .content .event_info div {
  max-width: 250px;
}
.single .content .event_info div h3 {
  margin-left: 0 !important;
  color: #30485F;
  margin-top: 20px !important;
}
.single .content .event_info div img {
  width: 250px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .single .text {
    padding: 0 30px;
    margin-left: 0;
  }
  .single .info {
    flex-direction: column;
    height: auto;
    align-items: start;
    margin-bottom: 30px;
    gap: 8px;
  }
  .single .content .event {
    padding: 20px 30px 40px;
  }
  .single .content .event_info {
    flex-direction: column;
    gap: 30px;
  }
}
.contact h1 {
  margin-left: 110px;
  margin-bottom: 0;
}
.contact .wpcf7 {
  padding-left: 110px;
}
.contact .wpcf7-form {
  display: grid;
  grid-template-columns: 250px 300px;
  grid-template-rows: 70px 70px 70px 1fr 50px 100px 50px 40px;
}
.contact .wpcf7-response-output {
  grid-row: 8;
  grid-column: 1/span 2;
  margin: 10px 0 0 0 !important;
  width: 400px;
  border: none !important;
  padding: 0 !important;
  color: #dc3232;
  font-family: "Cormorant regular";
}
.contact .wpcf7 .sent .wpcf7-response-output {
  color: #30485F;
}
.contact .wpcf7-not-valid-tip {
  display: none;
}
.contact .wpcf7 p:nth-of-type(7) {
  grid-row: 6;
  grid-column: 1/span 2;
}
.contact .wpcf7 p:nth-of-type(7) a {
  color: #30485F;
}
.contact .wpcf7 p:nth-of-type(7) a:hover {
  color: #30485F;
}
.contact .wpcf7 p:last-of-type {
  grid-row: 7;
  grid-column: 1/span 2;
}
.contact .wpcf7 p:last-of-type br {
  display: none;
}
.contact .wpcf7 p:nth-of-type(6) {
  grid-row: 5;
}
.contact .wpcf7 p:nth-of-type(3) {
  grid-row: 2;
}
.contact .wpcf7 p:nth-of-type(4) {
  grid-row: 3;
}
.contact .wpcf7 p:nth-of-type(5) {
  grid-row: 4;
}
.contact #pgc-8-0-1 .so-panel.widget.widget_block.panel-last-child {
  width: 100%;
  height: 290px;
  background: #94AEA9;
}
.contact_info {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}
.contact_separator {
  width: 75px;
}
.contact_list_mail, .contact_list_social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact_list_mail h2, .contact_list_social h2 {
  font-size: 20px;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .contact h1 {
    margin-left: 0;
    padding: 0 30px;
  }
  .contact .wpcf7 {
    padding: 0 30px;
  }
  .contact .wpcf7-form {
    gap: 10px;
    display: flex;
    flex-direction: column;
  }
  .contact .wpcf7 p:last-of-type {
    margin: 20px auto 10px;
  }
  .contact .wpcf7 p:last-of-type input {
    display: block;
    margin: auto;
  }
  .contact #pgc-8-0-1 .so-panel.widget.widget_block.panel-last-child, .contact #panel-8-0-1-0 > .panel-widget-style {
    display: none;
  }
  .contact_info {
    display: flex;
    margin-bottom: 0;
    flex-direction: column;
  }
}
.wpcf7 button, input[type=submit], .ow-button-base a {
  background-color: #E47919 !important;
  border: 2px solid transparent !important;
  width: 100px;
  cursor: pointer;
  border-radius: 40px;
  font-family: "Monthoers";
  font-size: 16px;
  height: 34px;
  padding: 1px 10px !important;
  color: #E9E8DC !important;
  font-weight: normal;
  transition-property: background-color, color, border-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.wpcf7 button:hover, input[type=submit]:hover, .ow-button-base a:hover {
  background-color: #E9E8DC !important;
  color: #E47919 !important;
  border-color: #E47919 !important;
}

.ow-button-base a {
  margin-left: 110px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.grid {
  padding: 40px 120px 60px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 66px;
}

@media (max-width: 900px) {
  .grid {
    padding: 40px 30px 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.lassociation-ornans-vehicules-historiques-et-miniatures .so-panel, .home .so-panel {
  margin-bottom: 0 !important;
}
.lassociation-ornans-vehicules-historiques-et-miniatures p, .lassociation-ornans-vehicules-historiques-et-miniatures h1, .lassociation-ornans-vehicules-historiques-et-miniatures h2, .home p, .home h1, .home h2 {
  margin-left: 110px;
}
.lassociation-ornans-vehicules-historiques-et-miniatures .featured-image img, .home .featured-image img {
  width: 100%;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
}
.lassociation-ornans-vehicules-historiques-et-miniatures .ow-button-base, .home .ow-button-base {
  margin: 30px 0;
}

.lassociation-ornans-vehicules-historiques-et-miniatures {
  margin-bottom: 40px;
}
.lassociation-ornans-vehicules-historiques-et-miniatures h3 {
  margin-left: 0 !important;
}
.lassociation-ornans-vehicules-historiques-et-miniatures #panel-20-2-0-0 h3 {
  position: relative;
  margin-left: 110px !important;
  width: 100%;
}
.lassociation-ornans-vehicules-historiques-et-miniatures #panel-20-2-0-0 h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 240px;
  width: 100%;
  height: 2px;
  background-color: #94AEA9;
}
.lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-3, .lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-4 {
  gap: 70px;
  justify-content: center;
}
.lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-3 #pgc-20-4-0, .lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-4 #pgc-20-4-0 {
  display: none;
}
.lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-3 .panel-grid-cell, .lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-4 .panel-grid-cell {
  width: 204px;
}
.lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-3 .panel-grid-cell .widget_sow-image, .lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-4 .panel-grid-cell .widget_sow-image {
  margin-bottom: 0;
}
.lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-3 .panel-grid-cell .widget_sow-image h3, .lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-4 .panel-grid-cell .widget_sow-image h3 {
  margin: 15px 0 0 0 !important;
  text-align: center;
  font-size: 25px;
}
.lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-3 .panel-grid-cell .widget_sow-image img, .lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-4 .panel-grid-cell .widget_sow-image img {
  width: 204px;
  height: 204px;
}
.lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-3 p, .lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-4 p {
  margin-left: 0;
  text-align: center;
}

.home .card__caption > p {
  margin-left: 0;
}
.home #pg-16-3 img {
  width: 1200px;
}
.home #pg-16-4 {
  background: #94AEA9;
  margin-top: -190px;
  height: 445px;
  padding: 0 0 60px 220px;
  display: flex;
  align-items: end !important;
}
.home #pg-16-4 h2 {
  color: #30485F;
}
.home #pg-16-2 {
  margin-top: 50px;
}
.home #pg-16-2 svg {
  width: 71%;
}
.home #pg-16-2 .grid {
  padding-top: 15px !important;
}
.home #pg-16-5 {
  margin-top: 50px;
}
.home #pg-16-5 svg {
  width: 80%;
}
.home .grid {
  display: block;
}
.home .grid .track {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 66px;
}

@media (max-width: 900px) {
  .lassociation-ornans-vehicules-historiques-et-miniatures p, .lassociation-ornans-vehicules-historiques-et-miniatures h1, .lassociation-ornans-vehicules-historiques-et-miniatures h2, .home p, .home h1, .home h2 {
    padding: 0 30px;
    margin-left: 0;
  }
  .lassociation-ornans-vehicules-historiques-et-miniatures #panel-20-2-0-0 {
    overflow: hidden;
  }
  .lassociation-ornans-vehicules-historiques-et-miniatures #panel-20-2-0-0 h3 {
    margin-left: 30px !important;
  }
  .lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-3, .lassociation-ornans-vehicules-historiques-et-miniatures #pg-20-4 {
    gap: 20px;
    align-items: center !important;
  }
  .home #pg-16-4 {
    margin-top: -50px;
    padding: 0 0 60px 0;
  }
  .home .grid {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 40px 30px 20px 30px;
    max-width: 800px;
  }
  .home .track {
    display: flex !important;
    grid-gap: 0 !important;
    transition: transform 0.3s ease-in-out;
    white-space: nowrap;
  }
  .home .card {
    width: 100%;
    flex: 0 0 auto;
  }
  .home .card a {
    margin: auto;
  }
  .home .card p {
    padding: 0;
  }
  .home .carousel-dot-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .home .carousel-dot-container .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(48, 72, 95, 0.5);
    margin: 0 5px;
    cursor: pointer;
  }
  .home .carousel-dot-container .dot.active {
    background-color: #30485F;
  }
}
.archive_header {
  position: relative;
  overflow: hidden;
}
.archive_header_title {
  margin-left: 110px;
  width: 100%;
  position: relative;
}
.archive_header_title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 200px;
  width: 100%;
  height: 2px;
  background-color: #94AEA9;
}

.card_duotone {
  background: #94AEA9;
  width: 266px;
  padding-bottom: 30px;
  padding-top: 205px;
  grid-row: 1/span 2;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card__img {
  z-index: 1;
}
.card__img img {
  height: 226px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__titleLink {
  display: grid;
  width: 286px;
  text-decoration: none;
  grid-template-rows: 1fr 90px;
  grid-template-columns: 20px 1fr;
}
.card__title {
  margin: 0 !important;
  font-size: 30px;
  color: #30485F;
  padding-left: 18px;
  line-height: 1.1;
  padding-right: 5px;
}
.card__caption {
  display: flex;
  height: 17px;
  margin-left: 18px;
  align-items: center;
  gap: 11px;
}

.post-type-archive-actualite .archive_header_title::before {
  left: 170px;
}

.home .event.archive_header_title::before {
  left: 280px;
}

.home .actu.archive_header_title::before {
  left: 160px;
}

input {
  background: none;
  border: none;
  border: 2px solid #30485F;
  border-radius: 40px;
  width: 300px;
  height: 35px;
  padding-left: 10px;
}
input[type=text] {
  width: 200px;
}

textarea {
  background: none;
  border: none;
  padding: 20px;
  border: 2px solid #30485F;
  border-radius: 40px;
  width: 400px;
}

p > label {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #E9E8DC;
  z-index: 1;
  padding: 0 8px;
}

@media (max-width: 900px) {
  input {
    height: 45px;
  }
  input[type=text] {
    width: 300px;
  }
  textarea {
    width: 272px;
  }
}
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background-color: #E9E8DC;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

main {
  padding-bottom: 120px;
}

.page-id-8 main {
  padding-bottom: 60px !important;
}

/* Importation des polices */
@font-face {
  font-family: "Monthoers";
  src: url("../font/Monthoers");
}
@font-face {
  font-family: "Cormorant regular";
  src: url("../font/Cormorant-Regular.ttf");
}
p, a {
  font-family: "Cormorant-Regular";
  font-size: 16px;
  color: #0D1317;
  position: relative;
  margin: 0;
  line-height: 24px;
  max-width: 800px;
}

a {
  word-wrap: break-word;
}

a:hover {
  color: #30485F;
}

h1, h2, h3 {
  font-family: "Monthoers";
  color: #E47919;
  font-weight: normal;
}

h1 {
  font-size: 45px;
  margin: 52px 0 36px 0;
}

h2 {
  font-size: 35px;
  margin: 42px 0 28px 0;
}

h3 {
  font-size: 30px;
  margin: 42px 0 18px 110px !important;
}

.error {
  text-align: center;
}
.error h1 {
  font-size: 100px;
  margin: 52px 0 5px 0;
}
.error h2 {
  margin: 0 0 10px 0;
}
.error p {
  max-width: 100%;
}

.page-id-50 h1, .page-id-50 #pg-44-0, .page-id-44 h1, .page-id-44 #pg-44-0 {
  margin-bottom: 0 !important;
}

.page-id-50 p, .page-id-50 ul, .page-id-50 h2, .page-id-50 h1, .page-id-50 h4, .page-id-46 p, .page-id-46 ul, .page-id-46 h2, .page-id-46 h1, .page-id-46 h4, .page-id-44 p, .page-id-44 ul, .page-id-44 h2, .page-id-44 h1, .page-id-44 h4 {
  margin-left: 110px;
}

@media (max-width: 900px) {
  main {
    padding-bottom: 60px;
  }
  .page-id-50 p, .page-id-50 ul, .page-id-50 h2, .page-id-50 h1, .page-id-50 h4, .page-id-46 p, .page-id-46 ul, .page-id-46 h2, .page-id-46 h1, .page-id-46 h4, .page-id-44 p, .page-id-44 ul, .page-id-44 h2, .page-id-44 h1, .page-id-44 h4 {
    margin-left: 0;
    padding: 0 30px;
  }
  h3 {
    font-size: 30px;
    margin: 42px 30px 18px 30px !important;
  }
}/*# sourceMappingURL=main.css.map */