* {
  /*color: var(--blue-dark);*/
  /*font-family: 'Montserrat', sans-serif;*/
}

p {
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
}

a:hover {
  text-decoration: underline;
}
.lightweight-accordion details[open] summary ~ * {
  animation: none !important;
}
/* Background */
.bg-white {
  background-color: var(--white);
}
.bg-blue {
  background-color: var(--blue);
}
.bg-blue-dark {
  background-color: var(--blue-dark);
}
.bg-grey-light {
  background-color: var(--grey-light);
}
.bg-orange {
  background-color: var(--orange);
}
.bg-purple {
  background-color: var(--purple);
}
.bg-purple-light {
  background-color: var(--purple-light);
}
.bg-green {
  background-color: var(--green);
}
.bg-yellow {
  background-color: var(--yellow);
}
.bg-pink-light {
  background-color: var(--pink-light);
}
.hover\:bg-purple:hover {
  background-color: var(--purple);
}
.bg-transparent {
  background-color: transparent;
}

/* Border color */
.border-t-grey-light {
  border-top-color: var(--grey-light);
}
.border-b-grey-light {
  border-bottom-color: var(--grey-light);
}
.border-b-blue-dark {
  border-bottom-color: var(--blue-dark);
}
.border-b-purple-light {
  border-bottom-color: var(--purple-light);
}
.border-purple-light {
  border-color: var(--purple-light);
}
.border-purple {
  border-color: var(--purple);
}
.border-l-blue {
  border-left-color: var(--blue);
}

/* Colors */
.text-white {
  color: var(--white);
}
.hover\:text-white:hover {
  color: var(--white);
}
.text-blue-dark {
  color: var(--blue-dark);
}
.hover\:text-blue-dark:hover {
  color: var(--blue-dark);
}
.text-blue {
  color: var(--blue);
}
p.text-blue a {
  color: var(--blue);
}
.text-purple {
  color: var(--purple);
}
.text-purple-light {
  color: var(--purple-light);
}
.text-grey-light {
  color: var(--grey-light);
}
.text-green {
  color: var(--green);
}
.text-orange {
  color: var(--orange);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wp-block-button__link {
  transition: all 0.5s ease-in-out;
  text-decoration: none;
  background-color: var(--orange);
  color: var(--blue-dark);
  border-color: transparent;
}
.wp-block-button__link:hover {
  background-color: var(--orange-light);
  color: var(--blue-dark);
  box-shadow: 0 0 0 5px var(--orange);
  text-decoration: none;
}
.is-style-outline .wp-block-button__link:hover {
  box-shadow: 0 0 0 5px var(--purple-light);
  text-decoration: none;
  background-color: transparent;
}

.wp-block-button .wp-block-button__link:visited {
  color: var(--blue-dark);
}


.btn-white {
  background-color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
a.btn-white:hover {
  text-decoration: none;
}
.btn-blue-dark {
  background-color: var(--blue-dark);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn-grey-light {
  background-color: var(--grey-light);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn-grey-light:hover,
.btn-blue-dark:hover,
.btn-white:hover {
  background-color: var(--purple);
  color: var(--white);
}
.btn-grey-light:hover .text-blue,
.btn-blue-dark:hover .text-blue,
.btn-white:hover .text-blue,
.btn-grey-light:hover .text-purple-light,
.btn-blue-dark:hover .text-purple-light,
.btn-white:hover .text-purple-light
 {
  color: var(--grey-light);
}
.btn-white:hover .text-blue
{
  color: var(--purple-light);
}
.btn-grey-light:hover a,
.btn-grey-light:hover h3,
.btn-grey-light:hover p,
.btn-blue-dark:hover a,
.btn-blue-dark:hover h3
.btn-white:hover a,
.btn-white:hover h3,
.btn-white:hover p,
.btn-white:hover .text-purple
{
  color: var(--white);
}
.btn-grey-light:hover a.border-purple,
.btn-blue-dark:hover a.border-purple {
  border-color: var(--blue-dark);
}
.btn-grey-light:hover path,
.btn-blue-dark:hover path,
.btn-white:hover path{
  fill: var(--white);
}

.btn-orange {
  display: block;
  width: fit-content;
  text-align: center;
  background-color: var(--orange);
  color: var(--blue-dark);
  border-radius: 45px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  border-color: transparent;
}
.btn-orange:hover {
  background-color: var(--orange-light);
  text-decoration: none;
  box-shadow: 0 0 0 5px var(--orange) !important;
}

.btn-grey {
  background-color: var(--grey-light);
  color: var(--purple);
  border-radius: 25px;
  padding-top: 34px;
  padding-right: 24px;
  padding-bottom: 34px;
  padding-left: 24px;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  min-width: 260px;
  min-height: 160px;
}
.btn-grey:hover {
  background-color: var(--purple);
  color: var(--white);
  text-decoration: none;
}
.btn-grey_sub-field {
  color: var(--blue-dark);
  font-size: 0.75rem;
}
.btn-grey:hover .btn-grey_sub-field {
  color: var(--purple-light);
}

/* Bread-crumb */
.breadcrumbs {
  font-size: var(--wp--preset--font-size--small);
}

/* Contenu des articles et pages */
.entry-content .wp-block-alec-blue-dark-group, 
.entry-content .wp-block-alec-grey-block,
.entry-content .wp-block-alec-grey-floral-block {
  margin-top: 48px;
  margin-bottom: 48px;
}
.entry-content h2,.entry-content h3,.entry-content h4,
.entry-content h5,.entry-content h6,.entry-content p {
  margin-top: 24px;
  margin-bottom: 18px;
}
.entry-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 24px;
}
.entry-content h3 {
  color: var(--green);
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.entry-content h4 {
  font-size: 18px;
}
.entry-content h5 {
  font-size: 14px;
  font-weight: bold;
}
.entry-content h6 {
  color: var(--green);
  font-size: 12px;
  font-weight: bold;
}
.entry-content p, 
.entry-content ul:not(.has-background-color) li {
  font-size: 16px;
  font-weight: 300;
  line-height:26px;
  color: var(--blue-dark);
}
.entry-content ul{
  margin-bottom: 32px;
}
.entry-content li{
  margin-bottom: 8px;
}
.entry-content ul:not(.has-background-color) a {
  color: inherit;
}
.entry-content .wp-block-alec-blue-dark-group a {
  color: var(--white);
}
.entry-content a:not(.wp-block-button__link) {
  text-decoration: none;
  border-bottom: 1px solid var(--blue-dark);
  font-weight: 400;
}
.entry-content a:not(.wp-block-button__link):hover {
  text-decoration: none;
  border-bottom: 2px solid var(--blue-dark);
}
.entry-content li {
  list-style-type: disc;
}
.entry-content .wp-block-embed__wrapper{
  text-align:center;
}
.entry-content .wp-block-embed iframe,
.entry-content .wp-block-video video{
  border-radius: 40px;
  margin: 0 0 2em;
}
.entry-content .wp-block-table {
  margin: 1.8em 0;
}
.entry-content .wp-block-table td,
.entry-content .wp-block-table th{
  border: 1px solid var(--purple-light);
  padding: 0.8em;
}
.entry-content .wp-block-table th{
  border-bottom: 4px solid var(--purple-light);
}
.entry-content .size-full {
	width: 100%;
}
.entry-content .wp-block-image.aligncenter {
	margin: 0 auto;
}

/* Sidebar */
.site__sidebar {
  background-color: var(--grey-light);
  border-radius: 40px;
  align-self: baseline;
  width: 100%;
}
.site__sidebar.collapsed .site__sidebar-trigger img {
  transform: rotate(-90deg);
}
.site__sidebar .site__sidebar-trigger img {
  transition: transform 0.2s ease-in-out;
  transform: rotate(0deg);
}
.site__sidebar.collapsed .site__sidebar-content {
  max-height: 0px;
  overflow: hidden;
}
.site__sidebar-content {
  max-height: auto;
}
@media (min-width: 72rem) /* > 1152px */ {
  .site__sidebar {
    width: auto;
  }
  .site__sidebar.collapsed .site__sidebar-content,
  .site__sidebar-content {
    max-height: fit-content;
    overflow: auto;
  }
}

.site__sidebar .wp-block-tag-cloud a.tag-cloud-link {
  display: block;
}

/* Style de menu specifique a la sidebar */
.site__sidebar ul.sidebar-menu {
  padding: 0;
  font-size: var(--wp--preset--font-size--small);
}
.site__sidebar ul.sidebar-menu li{
  list-style-type: '→ ';
  margin-left:20px;
  padding: 0px 0px 12px 6px;
  line-height: 18px;
  color: var(--blue);
}
.site__sidebar ul.sidebar-menu a{
  color: var(--blue);
}
.site__sidebar ul.sidebar-menu a:hover{
  color: var(--blue-dark);
}

/* Style specifique a la sidebar de la page contact */
.site__sidebar .contact-transport-lines p.has-background {
  padding: 8px;
}
.site__sidebar .contact-transport-lines div p:first-child {
  border-radius: 12px 0 0 12px;
}
.site__sidebar .contact-transport-lines div p:last-child {
  border-radius: 0 12px 12px 0;
}
/* override lightweight-accordion  */
body .lightweight-accordion .lightweight-accordion-title {
  padding: 0px;
}
.lightweight-accordion .lightweight-accordion-title {
  cursor: pointer;
}
.widget .lightweight-accordion .lightweight-accordion-title{
  background-color: transparent;
}
.widget .lightweight-accordion .lightweight-accordion-title,
.widget .lightweight-accordion .lightweight-accordion-title span,
.widget .lightweight-accordion .lightweight-accordion-body a {
  color: var(--blue);
}
.widget .lightweight-accordion .lightweight-accordion-body a.accordion_active_link,
.site__sidebar .widget a.accordion_active_link {
  background-color: var(--blue-dark);
  color: var(--white);
  border-radius:24px;
  padding: 4px 18px;
  margin: 8px 0;
  text-decoration: none;
  display:inline-block;
  width: 100%;
  position: relative;
}

.widget .lightweight-accordion .lightweight-accordion-body a.accordion_active_link:hover,
.site__sidebar .widget a.accordion_active_link:hover {
  color: var(--white);
}

.widget .lightweight-accordion details[open] .lightweight-accordion-title,
.widget .lightweight-accordion details[open] .lightweight-accordion-title span,
.widget .lightweight-accordion .lightweight-accordion-body a:hover {
  color: var(--blue-dark);
}
.widget .lightweight-accordion .lightweight-accordion-title span {
  font-size: 1rem;
}
.widget .lightweight-accordion .lightweight-accordion-body {
  padding-top: 0;
}
.widget .lightweight-accordion .lightweight-accordion-body ul {
  margin-top: 0;
  margin-bottom: 0;
}
.widget .lightweight-accordion .lightweight-accordion-body ul li {
  padding: 6px 0px;
  line-height: 22px;
}

/* misceleneous */
.breadcrumbs a{
  color: var(--blue);
}
ul.no-style {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container-lg {
  width: 72rem; /* 1152px */
  margin-left: auto;
  margin-right: auto;
}
ul.text-blue li {
  color: var(--blue);
}
ul.text-blue li a{
  color: var(--blue);
}
.main-title-parallax {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 400px;
  width: 362px;
}
.main-title-parallax_white {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 400px;
  width: 362px;
  background-color: var(--white);
  z-index: 2;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  overflow: hidden;
}
.main-title-parallax .main-title-parallax_yellow {
  position: absolute;
  top: 50%;
  left: -120px;
  width: 200px;
  height: 160px;
  border-radius: 200px;
  background-color: var(--yellow);
  z-index: 1;
}
.main-title-parallax .main-title-parallax_orange {
  position: absolute;
  top: 50px;
  right: 0;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background-color: var(--orange);
  z-index: 3;
  transition: all 0.1s linear;
}
@media (max-width: 72rem) /* < 1152px */ {
  .main-title-parallax {
    position: absolute;
    bottom: 0;
    right: 50px;
    height: 300px;
    width: 262px;
  }
  .main-title-parallax_white {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 300px;
    width: 262px;
    background-color: var(--white);
    z-index: 2;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    overflow: hidden;
  }
  .main-title-parallax .main-title-parallax_yellow {
    position: absolute;
    top: 50%;
    left: -90px;
    width: 175px;
    height: 120px;
    border-radius: 200px;
    background-color: var(--yellow);
    z-index: 1;
  }
  .main-title-parallax .main-title-parallax_orange {
    position: absolute;
    top: 50px;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 999px;
    background-color: var(--orange);
    z-index: 3;
    transition: all 0.1s linear;
  }
}
.right-container-parallax {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 400px;
  width: 362px;
}
.right-container-parallax_white {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 310px;
  width: 250px;
  background-color: var(--white);
  z-index: 2;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  overflow: hidden;
}
.left-decoration {
  background-image: url("../images/page-left-decoration.png");
  background-size: 100%;
  background-repeat: repeat-y;
  position: absolute;
  left: 0;
  top: 400px;
  bottom: 0;
  width: 20rem;
  z-index: -1;
}
.eco-green-flag {
  position: absolute;
  top: -11px;
  left: 0;
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  background-color: var(--green);
  width: 3.5rem;
  height: 6rem;
  text-align: center;
  padding-top: 10px;
}
.eco-green-flag:before {
  content: ' ';
  position: absolute;
  top: 0;
  right: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 0 5px;
  border-color: transparent transparent transparent var(--blue);
}

/* Media queries */
@media (max-width: 72rem) /* < 1152px */ {
  .container-lg {
    width: 100%;
    padding-left: 1.875rem; /* 30px */
    padding-right: 1.875rem; /* 30px */
  }
}

@media (min-width: 1153px) /* > 1152px */ {
  .hide-desktop {
    display: none !important;
  }
  .lg\:grid-step-custom {
    grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  }
}
.wp-block-image {
  overflow: hidden;
  width: fit-content;
}
@media (max-width: 72rem) /* < 1152px */ {
  .hide-mobile {
    display: none !important;
  }
  .mobile-overflow-hidden {
    overflow: hidden;
  }
}
/* gutenberg  */
blockquote.wp-block-quote {
  position: relative;
  padding: 32px 0px 32px 184px;
  margin: 32px 0 48px 0;
  border-top: 1px solid var(--purple-light);
  border-bottom: 1px solid var(--purple-light);
}
blockquote.wp-block-quote:before {
  content: ' ';
  width: 138px;
  height: 138px;
  position: absolute;
  border-radius: 999px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--green);
  background-image: url('../images/quote.svg');
  background-repeat: no-repeat;
  background-position: center;

}
blockquote.wp-block-quote p {
  color: var(--green);
  font-size: 1.5rem;
  line-height: 2rem;
}
blockquote.wp-block-quote cite {
  color: var(--blue);
  font-size: 0.875rem;
}
@media (max-width: 72rem) /* < 1152px */ {
  blockquote.wp-block-quote {
    padding: 16px 0px 16px 64px;
    margin: 16px 0 24px 0;
  }
  blockquote.wp-block-quote:before {
    background-size: 40%;
	width: 55px;
    height: 55px;
  }
  blockquote.wp-block-quote p {
    font-size: 1.2rem;
    line-height: 1.25rem;
  }
}


.bottom-left-tree {
  bottom: 5px;
  left: 10px;
  width: 50px;
  height: 40px;
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}

.top-right-tree {
  top: 0px;
  right: 0px;
  width: 50px;
  height: 40px;
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  transform: rotate(180deg);
}
.pole-accordion{
  width: 100%;
}

.pole-accordion .pole-accordion-trigger{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
  padding: 16px 8px 20px 8px;
}
.pole-accordion .pole-accordion-trigger.py-0 {
  padding-bottom: 0px;
  padding-top: 0px;
}
.pole-accordion .pole-accordion-trigger img {
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
}
.pole-accordion .pole-accordion-trigger:hover{
  background-color: rgba(239, 210, 204, 0.4);;
}
.pole-accordion .pole-accordion-content{
  display: block;
}
.pole-accordion.collapsed .pole-accordion-content{
  display: none;
}
.pole-accordion.collapsed .pole-accordion-trigger img {
  transform: rotate(-90deg);
}
