@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora/Lora-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora/Lora-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora/Lora-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora/Lora-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Simple Line Icons";
  src: url("../fonts/Simple-Line-Icons.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ========= Container =========== */
header {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(68, 68, 68, 0.1);
}
header > .wp-block-group {
  transition: ease height 300ms;
}
header.sticky-active {
  background-color: #fff;
  border-bottom: none;
}
header.sticky-active > .wp-block-group {
  height: 70px;
}
header.sticky-active nav > ul > li > a {
  padding: 30px 0;
}
header.sticky-active nav > ul > li > .wp-block-navigation-submenu {
  top: 70px !important;
}
header nav > ul > li > a {
  padding: 50px 0;
  text-transform: uppercase;
  color: var(--wp--preset--color--custom-grey) !important;
  transition: all 0.15s ease-in-out;
}
header nav > ul > li > a:hover {
  color: #04989E !important;
}
header nav > ul > li > .wp-block-navigation-submenu {
  min-width: 211px !important;
  top: 110px !important;
  border-top: 3px solid #04989E !important;
}
header nav > ul > li > .wp-block-navigation-submenu li {
  transition: all 0.15s ease-in-out;
}
header nav > ul > li > .wp-block-navigation-submenu li:hover {
  background-color: #F8F9FA;
}
header nav > ul > li > .wp-block-navigation-submenu ul {
  min-width: 300px !important;
  top: -3px !important;
  border-top: 3px solid #04989E !important;
}
header nav > ul > li > .wp-block-navigation-submenu a {
  font-size: 14px;
  font-weight: 400;
  color: #777 !important;
  letter-spacing: -0.5px;
  border-bottom: 1px solid rgb(247, 247, 247);
  padding: 8px 13px;
  text-decoration: none;
}
header .socials > div:first-child a svg {
  width: 8px;
}
header .socials > div:nth-child(2) a svg {
  width: 16px;
}
header .socials > div:last-child svg {
  width: 16px;
}

.wp-btn-menu {
  display: none;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border: none;
  background: #04989E;
  padding: 0.533rem 0.933rem;
  border-radius: 0.375rem;
  color: inherit;
  cursor: pointer;
  transition: 0.3s ease;
}
.wp-btn-menu:focus {
  outline: none;
}
.wp-btn-menu__text {
  margin-left: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.wp-btn-menu .visually-hidden {
  display: none;
}
.wp-btn-menu__bars {
  display: block;
  position: relative;
  width: 37px;
  height: 2px;
  background-color: #fff;
  border-radius: 40px;
  transition: 0.3s;
}
.wp-btn-menu__bars:before, .wp-btn-menu__bars:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background-color: #fff;
  transition: 0.3s;
}
.wp-btn-menu__bars:before {
  transform: translate(0, -5px);
}
.wp-btn-menu__bars:after {
  transform: translate(0, 5px);
}
.menu-open .wp-btn-menu .wp-btn-menu__bars {
  background-color: transparent;
}
.menu-open .wp-btn-menu .wp-btn-menu__bars::before, .menu-open .wp-btn-menu .wp-btn-menu__bars::after {
  width: 100%;
}
.menu-open .wp-btn-menu .wp-btn-menu__bars:before {
  transform: rotate(45deg);
}
.menu-open .wp-btn-menu .wp-btn-menu__bars:after {
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {
  header.sticky-active nav.wp-block-navigation {
    padding-top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
  }
  header nav.wp-block-navigation {
    display: none;
    position: absolute;
    top: 70px;
    left: calc(var(--wp--style--root--padding-right) * -1);
    right: calc(var(--wp--style--root--padding-right) * -1);
    width: 100vw;
    padding: 25px var(--wp--preset--spacing--60);
    z-index: 20;
  }
  header nav.wp-block-navigation ul {
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
  }
  header nav.wp-block-navigation > ul {
    padding: 20px;
    gap: 0 !important;
  }
  header nav.wp-block-navigation > ul > li {
    width: 100%;
    font-size: 13px !important;
    justify-content: space-between;
    font-weight: 700;
    border-bottom: 1px solid #e8e8e8;
  }
  header nav.wp-block-navigation > ul > li:last-child {
    border-bottom: none;
  }
  header nav.wp-block-navigation > ul > li > a {
    padding: 7px 8px;
    color: #04989E !important;
  }
  header nav.wp-block-navigation > ul > li .wp-block-navigation__submenu-container {
    border-top: 0 !important;
  }
  header nav.wp-block-navigation > ul > li > .wp-block-navigation__submenu-container {
    margin-left: 20px !important;
  }
  header nav.wp-block-navigation > ul > li > .wp-block-navigation__submenu-container a {
    padding: 7px 8px !important;
    color: #212529 !important;
  }
  header nav.wp-block-navigation > ul > li > .wp-block-navigation__submenu-container li > ul {
    padding-left: 20px !important;
  }
  header nav.wp-block-navigation > ul > li .has-child button {
    flex-grow: initial !important;
  }
  header nav.wp-block-navigation > ul > li .has-child .wp-block-navigation__submenu-icon {
    color: var(--wp--preset--color--custom-pollen) !important;
  }
  header nav.wp-block-navigation .has-child {
    flex-wrap: wrap;
  }
  header nav.wp-block-navigation .has-child > button[aria-expanded=true] {
    font-weight: 700;
  }
  header nav.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
    position: static;
    flex: 1 1 100%;
    padding: 0;
    border: none;
  }
  header nav.wp-block-navigation .wp-block-buttons {
    flex-direction: column;
    align-items: flex-start;
    margin: 15px 0;
  }
  .wp-btn-menu {
    display: flex;
  }
}
footer .socials svg {
  color: #fff !important;
}

.strong-900 strong {
  font-weight: 900;
}

.size-full {
  width: auto;
  height: auto;
}

.wp-block-image img {
  vertical-align: baseline;
}

.wp-block-post-author__content {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wp-block-post-author__content > p {
  width: auto;
}

.full-img img {
  height: 100%;
}

.pl-page-x {
  padding-left: calc((100% - 1200px) / 2) !important;
}

.pr-page-x {
  padding-right: calc((100% - 1200px) / 2) !important;
}

.no-underline a {
  text-decoration: inherit;
}
.no-underline a:hover {
  text-decoration: underline;
}

.simple-icon {
  font-size: 32px;
  color: #04989E;
}

.wp-block-mfb-meta-field-block a {
  text-decoration: none;
}

.row-title strong {
  font-family: "Lora", sans-serif;
  text-transform: none;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -1px;
  line-height: 42px;
}

.timeline-row:hover .timeline-circle {
  background-color: #04989E;
  color: #fff;
}
.timeline-row .timeline-group-circle {
  position: relative;
}
.timeline-row .timeline-circle {
  transition: all 0.2s ease;
}

.wp-block-separator.is-vertical {
  height: 35px;
  width: 3px;
  margin-left: 40px;
  background-color: #EDEDED;
  border: none;
}

.query-cat .wp-block-post .wp-block-post-featured-image img {
  object-fit: cover !important;
}

.overlay {
  position: relative;
}
.overlay > .wp-block-group {
  position: relative;
}
.overlay::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #212529;
  opacity: 0.2;
  pointer-events: none;
}

#googlemaps {
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
#googlemaps iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.google-map {
  background: #E5E3DF;
  height: 400px;
  margin: -35px 0 30px 0;
  width: 100%;
}

.google-map.small {
  height: 250px;
  border-radius: 6px;
  margin: 0;
  clear: both;
}

.google-map img {
  max-width: 9999px;
}

.google-map-borders {
  border: 1px solid #DDD;
  padding: 4px;
  border-radius: 4px;
}

.list-infos li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.list-infos li img {
  max-width: 23px;
}
.list-infos li a {
  color: #212529;
  text-decoration: none;
  transition: opacity 300ms;
}
.list-infos li a:hover {
  opacity: 0.85;
}

.wp-grid-builder .wpgb-card {
  transition: all 0.2s ease !important;
}
.wp-grid-builder .wpgb-card-4 svg[data-ratio][style] {
  display: none;
}
.wp-grid-builder .wpgb-card-4 .wpgb-card-media-thumbnail > a {
  width: 60px;
  height: 60px;
  display: block;
}
.wp-grid-builder .wpgb-card-4 .wpgb-card-media-thumbnail div {
  width: 60px;
  height: 60px;
  position: relative !important;
  z-index: 10;
}
.wp-grid-builder .wpgb-card:hover {
  transform: scale(1.03);
}
.wp-grid-builder .wpgb-card .wpgb-block-1 a:hover {
  color: #04989E;
}
.wp-grid-builder .wpgb-card .wpgb-block-4 {
  color: #04989E;
}
.wp-grid-builder .wpgb-card .wpgb-block-4::after {
  content: "";
  display: block;
  width: 17px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg class='ms-2' version='1.1' viewBox='0 0 15.698 8.706' width='17' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpolygon stroke='%2304989E' stroke-width='0.1' fill='%2304989E' points='11.354,0 10.646,0.706 13.786,3.853 0,3.853 0,4.853 13.786,4.853 10.646,8 11.354,8.706 15.698,4.353 '%3E%3C/polygon%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.breadcrumb {
  text-align: center;
  font-size: 15px !important;
}
.breadcrumb li::after {
  content: ">" !important;
}
.breadcrumb a {
  text-decoration: none;
}

.socials.v2 {
  gap: 4px;
}
.socials.v2 > div a {
  width: 48px;
  height: 48px;
  border: 1px solid #e7e7e7;
  border-radius: 50px;
}
.socials > div:first-child a:hover {
  background-color: #3b5a9a;
}
.socials > div:nth-child(2) a:hover {
  background-color: #7c4a3a;
}
.socials > div:last-child a:hover {
  background-color: #0073b2;
}
.socials > div a:hover svg path {
  fill: #fff;
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  line-height: 28px;
  width: 28px;
  border-radius: 100%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.block-team .wp-block-post-featured-image {
  width: 100%;
}
.block-team .wp-block-post-featured-image img {
  width: 100%;
  height: 268px;
  object-position: top;
  object-fit: cover;
}

.block-contact .simple-icon {
  font-size: 23px;
  color: #fff;
}
.block-contact a {
  text-decoration: none;
}

.splide__pagination {
  position: static !important;
  margin-top: 35px !important;
}
.splide__pagination__page {
  width: 6px !important;
  height: 6px !important;
  margin: 0 7px !important;
}
.splide__pagination__page.is-active {
  opacity: 1;
  transition: ease all 300ms;
  transform: scale(2) !important;
  background-color: #037b80 !important;
}

.wp-block-details[open] summary::before {
  transform: translate3d(0, -50%, 0) rotate(45deg);
}
.wp-block-details.full-details summary {
  font-size: 16px;
  text-transform: uppercase;
}
.wp-block-details summary {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1.1;
  padding: 23px 40px 23px 30px;
  margin-bottom: 10px;
  background-image: none;
  -webkit-appearance: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.05em;
  line-height: 27px;
  gap: 8px;
  background-color: #f4f4f4;
  color: #212529;
  transition: ease background-color 300ms, ease color 300ms;
}
.wp-block-details summary::-webkit-details-marker {
  display: none;
}
.wp-block-details summary:hover {
  color: #04989E;
}
.wp-block-details summary::before {
  content: "+";
  position: absolute;
  top: 50%;
  right: 25px;
  font-size: inherit;
  font-weight: inherit;
  transform: translate3d(0, -50%, 0) rotate(0deg);
  transform-origin: 50% 50%;
  transition: ease transform 300ms;
}

@media (max-width: 1023px) {
  .list-infos {
    width: 100%;
  }
  .list-infos li {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .wp-grid-builder .wpgb-card-1 {
    transition: all 0.2s ease !important;
  }
  .wp-grid-builder .wpgb-card-1 .wpgb-card-media {
    height: 235px !important;
  }
  .float-element {
    height: 125px !important;
  }
}
html {
  margin-top: 0 !important;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:not(.home) .entry-content {
  padding-top: 101px;
}

section {
  padding-left: calc(var(--spacing) * 6) !important;
  padding-right: calc(var(--spacing) * 6) !important;
}

.wp-singular .wp-block-columns .wp-block-column:first-child p a {
  text-decoration: none;
  color: #038085;
}
.wp-singular .wp-block-columns .wp-block-column:first-child p a:hover {
  text-decoration: underline;
}

.partners .size-full {
  width: 100%;
  height: 100%;
}
.partners .size-full picture {
  display: block;
}

:root :where(.is-layout-flow) > * {
  margin-block-start: 0;
}

* {
  box-sizing: border-box;
}

:where(.wp-site-blocks) > *,
:where(body .is-layout-constrained) > * {
  margin-top: 0;
}

:where(body .is-layout-flow) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

mark {
  background-color: transparent;
}

/*# sourceMappingURL=style.css.map */
