@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
*, *:before, *:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

body {
  --block-space: 70px;
}

h1 {
  text-transform: uppercase;
  color: #F29873;
  font-size: 2.7604166667vw;
  line-height: 1.25;
  font-style: italic;
  font-weight: 700;
}

h2 {
  text-transform: uppercase;
  color: #E75113;
  font-size: 2.6041666667vw;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 800;
}

h3 {
  color: #3A4F58;
  font-size: 1.40625vw;
  line-height: 1.29;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-bottom: 30px;
}

h4 {
  font-size: 0.9375vw;
  font-weight: 700;
  margin-bottom: 25px;
  color: #20343D;
}

a {
  text-decoration: underline;
  font-weight: 700;
}

blockquote {
  max-width: 87%;
  margin: 45px auto;
}
blockquote p {
  font-size: 2.6041666667vw;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-style: italic;
  text-align: center;
}

.breadcrumb {
  padding: 38px 0 93px;
  list-style-type: none;
  display: flex;
  align-items: center;
  --gap: 5px;
  gap: var(--gap);
  max-width: 85%;
  margin-inline: auto;
}
.breadcrumb .breadcrumb-item {
  color: #678795;
  font-size: 0.78125vw;
  line-height: 1.6667;
  font-weight: 500;
  position: relative;
}
.breadcrumb .breadcrumb-item:not(:last-child):after {
  content: "/";
  margin-left: var(--gap);
}
.breadcrumb .breadcrumb-item a {
  font-weight: inherit;
}
.breadcrumb .breadcrumb-item a:not(:hover) {
  text-decoration: none;
}

.btn, .frame-type-felogin_login input[type=submit] {
  background-color: #E75113;
  padding: 11px 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78125vw;
  line-height: 1;
  color: white;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-align: center;
  border: 0;
  cursor: pointer;
}
.btn:hover, .frame-type-felogin_login input[type=submit]:hover {
  background-color: white;
  color: #20343D;
}

.btn--large, .btn-link {
  font-size: 1.3020833333vw;
}
.btn--grey {
  background-color: #7D878C;
}

.btn--reset {
  background-color: transparent;
  border: 0;
}

.language--switcher {
  position: relative;
  padding: 6px 15px 6px 0;
}
.language--switcher .language-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}
.language--switcher .language-btn svg {
  width: 23px;
  height: 23px;
  fill: white;
}
.language--switcher .language-btn span {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.78125vw;
}
.language--switcher .language-list {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  padding: 10px 13px;
  background-color: #678795;
  width: 100%;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 3;
}
.language--switcher .language-list li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.language--switcher .language-list li.disabled {
  display: none;
}
.language--switcher .language-list li span {
  color: white;
  font-size: 0.78125vw;
  line-height: 1.2em;
  font-weight: 500;
}
.language--switcher .language-list li a {
  color: white;
  font-size: 0.78125vw;
  line-height: 1.2em;
  font-weight: 500;
}
.language--switcher .language-list li a:not(:hover) {
  text-decoration: none;
}
.language--switcher:not(.active) .language-list {
  display: none;
}

.banner {
  position: relative;
  overflow: hidden;
}
.banner .banner-image {
  width: 100%;
}
.banner .content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.banner .content .left {
  display: flex;
  flex-direction: column;
  --gap: 225px;
  gap: var(--gap);
  padding-bottom: 56px;
}
.banner .content .left .top p, .banner .content .left .top h1, .banner .content .left .bottom p, .banner .content .left .bottom h1 {
  padding: 3px 2vw 3px 3.5vw;
  width: fit-content;
  border-top-right-radius: 250px;
  border-bottom-right-radius: 250px;
  color: white;
  text-transform: uppercase;
  font-size: 2.7604166667vw;
  line-height: 1;
}
.banner .content .left .top h1, .banner .content .left .bottom h1 {
  font-weight: 700;
  font-style: normal;
}
.banner .content .left .top p, .banner .content .left .bottom p {
  font-weight: 300;
}
.banner .content .left .top {
  display: flex;
  flex-direction: column;
  --gap: 10px;
  gap: var(--gap);
}
.banner .content .left .top h1, .banner .content .left .top p {
  background-color: white;
  color: #E75113;
}
.banner .content .left .bottom p, .banner .content .left .bottom h1 {
  background-color: #E75113;
  color: white;
  font-weight: bold;
  font-style: italic;
}
.banner .content .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 117px;
  padding-bottom: 187px;
  --gap: 104px;
  gap: var(--gap);
}
.banner.big .content .left {
  padding-bottom: 207px;
}
.banner.small {
  max-height: 437px;
}

.banner-footer {
  width: 85.52vw;
  margin-left: auto;
  margin-top: -44px;
  z-index: 1;
  display: flex;
  --gap: 79px;
  gap: var(--gap);
  position: relative;
  background-color: white;
  padding: 27px 35px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  border-top-left-radius: 173px;
  border-bottom-left-radius: 173px;
  margin-bottom: var(--block-space);
}
.banner-footer h2 {
  font-size: 1.5625vw;
  text-transform: initial;
}
.banner-footer .description {
  display: flex;
  flex-direction: column;
  --gap: 24px;
  gap: var(--gap);
  max-width: 27%;
}
.banner-footer .description p, .banner-footer .description h2 {
  text-align: right;
}
.banner-footer .description p:not(:has(a)) {
  font-size: 1.3541666667vw;
}
.banner-footer .description p:has(a) {
  display: flex;
  justify-content: flex-end;
}
.banner-footer .description p .btn {
  border: 1px solid #E75113;
}

.stats-container .stats-list {
  display: flex;
  align-items: center;
  --gap-parent: 40px;
  gap: var(--gap-parent);
}
.stats-container .stats-list .stat-item {
  display: flex;
  flex-direction: column;
  --gap: 10px;
  gap: var(--gap);
}
.stats-container .stats-list .stat-item:not(:last-child) {
  padding-right: var(--gap-parent);
  border-right: 1px solid white;
}
.stats-container .stats-list .stat-item span {
  line-height: 1;
  text-align: center;
}
.stats-container .stats-list .stat-item span.number {
  font-family: "Montserrat", sans-serif;
  color: #E75113;
  font-size: 3.125vw;
  font-weight: 300;
}
.stats-container .stats-list .stat-item span.title {
  font-size: 0.78125vw;
  text-transform: uppercase;
  font-weight: 800;
  color: white;
}

.domaines {
  display: flex;
  align-items: center;
  --gap-parent: 50px;
  gap: var(--gap-parent);
}
.domaines .domaine {
  display: flex;
  flex-direction: column;
  align-items: center;
  --gap: 50px;
  gap: var(--gap);
}
.domaines .domaine span {
  font-size: 2.0833333333vw;
  line-height: 1;
  font-weight: 300;
  color: #E75113;
}

.frame-type-form_formframework .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.frame-type-form_formframework .col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.frame-type-form_formframework h2 {
  color: #E75113;
  font-size: 2.6041666667vw;
  font-weight: bolder;
  margin-bottom: 100px;
  text-transform: uppercase;
}
.frame-type-form_formframework form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-right: 2px;
}
.frame-type-form_formframework form > div:first-child, .frame-type-form_formframework form > div:last-child {
  display: none;
}
.frame-type-form_formframework form .row > .col-6:first-child {
  width: 100%;
}
.frame-type-form_formframework form .row > .col-6:first-child span {
  color: #20343D;
  font-size: 0.6770833333vw;
}
.frame-type-form_formframework form .row > .col-6 {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.frame-type-form_formframework form .form-label {
  letter-spacing: 1px;
  color: #20343D;
  margin-bottom: 5px;
  font-size: 0.78125vw;
}
.frame-type-form_formframework form .input {
  position: relative;
}
.frame-type-form_formframework form .input input[type=text],
.frame-type-form_formframework form .input select,
.frame-type-form_formframework form .input textarea {
  width: 100%;
  padding: 10px;
}
.frame-type-form_formframework form .input input[type=text] {
  border: none;
  border-bottom: solid 1px #4E6A76;
  height: 30px;
}
.frame-type-form_formframework form .input select {
  background-color: #F0F3F4;
  border: none;
  padding: 16px 20px;
}
.frame-type-form_formframework form .input textarea {
  resize: none;
  height: 200px;
  width: 100%;
}
.frame-type-form_formframework form nav.form-navigation button[type=submit].hidden {
  display: none;
}
.frame-type-form_formframework .btn {
  width: 100%;
  border: 1px solid #E75113;
  padding: 12px 54px;
}
.frame-type-form_formframework select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.frame-type-form_formframework svg.carret-select {
  width: 14px;
  height: 20px;
  fill: #E75113;
  transform: translate(-30px, 2px);
  pointer-events: none;
  position: absolute;
  top: 25%;
}

.slider-container {
  max-width: 85%;
  margin-inline: auto;
  gap: 50px;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--block-space);
}
.slider-container .header {
  text-align: center;
  color: #E75113;
  font-size: 2.6041666667vw;
  font-weight: 700 !important;
}
.slider-container .header h2 {
  color: #E75113;
}
.slider-container .content {
  margin: auto 0;
}
.slider-container .content .splide.slider .splide__track {
  height: fit-content;
}
.slider-container .content .splide.slider.layout_0 {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}
.slider-container .content .splide.slider.layout_0 .splide__list {
  display: flex;
  align-items: center;
}
.slider-container .content .splide.slider.layout_0 .splide__slide {
  margin-right: 16px;
}
.slider-container .content .splide.slider.layout_0 .splide__slide:last-child {
  margin-right: 0;
}
.slider-container .content .splide.slider.layout_0 .splide__slide.is-active {
  z-index: 2;
  width: 40% !important;
  border: none;
}
.slider-container .content .splide.slider.layout_0 .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.slider-container .content .splide.slider.layout_0 .splide__pagination {
  bottom: -31px;
}
.slider-container .content .splide.slider.layout_0 .splide__pagination .splide__pagination__page {
  background-color: #4E6A76;
}
.slider-container .content .splide.slider.layout_0 .splide__pagination .splide__pagination__page.is-active {
  background-color: #E75113;
}
.slider-container .content .splide.slider.layout_1 {
  margin-top: 15px;
}
.slider-container .content .splide.slider.layout_1 .splide__list {
  justify-content: center;
  align-items: flex-start;
}
.slider-container .content .splide.slider.layout_1 .splide__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.slider-container .content .splide.slider.layout_1 .splide__slide {
  border: none;
  opacity: 0.6;
  height: fit-content !important;
}
.slider-container .content .splide.slider.layout_1 .splide__slide.is-active {
  opacity: 1;
}
.slider-container .content #main-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-list {
  width: fit-content;
  color: #20343D !important;
}
.page-list span {
  color: #20343D !important;
}
.page-list li {
  width: 100%;
}
.page-list .page-link {
  font-size: 1.3020833333vw;
  position: relative;
  text-transform: uppercase;
  width: 100%;
  display: block;
  border-top: 1px solid #E75113;
  padding-top: 23px;
  font-weight: normal;
  line-height: 1;
}
.page-list .page-link.active {
  font-weight: 800;
  letter-spacing: 1px;
}
.page-list .page-link:hover {
  text-decoration: underline;
}
.page-list .section-list {
  margin-left: 20px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page-list .section-list .section-item:last-child {
  margin-bottom: 30px;
}
.page-list .section-list .section-link {
  font-size: 0.9375vw;
  font-weight: 600;
}
.page-list .section-list .section-link.active span {
  color: #E75113 !important;
  font-weight: 700;
}
.page-list .section-list .section-link:hover {
  text-decoration: underline;
}
.page-list .section-list .section-link:empty {
  display: none;
}

.frame-type-menu_section,
.frame-type-menu_section_pages {
  position: sticky;
  top: 105px;
  z-index: 1;
  width: fit-content;
  display: flex;
}
.frame-type-menu_section ul,
.frame-type-menu_section_pages ul {
  margin: 0;
}

.frame-type-menu_section .page-list > li {
  width: 265px;
}
.frame-type-menu_section .page-list .page-link {
  padding: 23px 0 23px 34px;
}

@media screen and (max-width: 1024px) {
  .frame-type-menu_section,
  .frame-type-menu_section_pages {
    top: 20px;
    margin-left: 0;
    background-color: white;
  }
  .frame-type-menu_section .page-list,
  .frame-type-menu_section_pages .page-list {
    display: flex;
    gap: 20px;
    margin-left: 20px;
    position: sticky;
    top: 0;
    flex-wrap: wrap;
  }
  .frame-type-menu_section .page-list .page-link,
  .frame-type-menu_section_pages .page-list .page-link {
    font-size: 16px;
  }
  .frame-type-menu_section .page-list .section-link,
  .frame-type-menu_section_pages .page-list .section-link {
    display: none;
  }
  .frame-type-menu_section .page-list li ul,
  .frame-type-menu_section_pages .page-list li ul {
    display: none;
  }
}
.image-shadowed {
  display: flex !important;
  flex-direction: column;
  --gap: 44px;
  gap: var(--gap);
  border-radius: 65px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  background-color: white;
  position: relative;
  padding: 43px 25px 57px;
}
.image-shadowed:has(a) > a {
  max-width: 75%;
}
.image-shadowed:has(a):hover {
  box-shadow: 0 0 5px rgba(231, 81, 19, 0.75);
}
.image-shadowed img {
  width: auto;
}
.image-shadowed figcaption {
  text-align: center;
  text-transform: uppercase;
  color: #E75113;
  font-weight: 800;
  font-size: 1.3541666667vw;
  line-height: 1;
  display: block;
}

.image-description-left {
  display: flex !important;
  align-items: center;
  gap: 16px;
}
.image-description-left .description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.image-description-left .description figcaption {
  width: 100%;
  color: #E75113;
  font-size: 0.9375vw;
  font-weight: bold;
}
.image-description-left .description .img-title {
  font-size: 1.40625vw;
  font-weight: bolder;
  color: black;
}
.image-description-left img {
  object-fit: cover;
  max-width: 220px;
  aspect-ratio: 220/293;
}

.accordion-content header {
  display: flex;
  gap: 65px;
  align-items: center;
  background-color: #D6E4EA;
  color: #20343D;
  font-size: 1.8229166667vw;
  padding: 15px 35px;
  text-transform: uppercase;
  cursor: pointer;
}
.accordion-content header h2 {
  margin: 0;
}
.accordion-content header h3 {
  font-size: 1.8229166667vw;
  color: #E75113;
  margin: 0;
  font-weight: bolder;
}
.accordion-content header h4 {
  letter-spacing: 3px;
  font-weight: 300;
  color: #20343D;
  font-size: 1.8229166667vw;
  text-transform: uppercase;
  margin-bottom: 0;
}
.accordion-content header .dropdown-toggle {
  margin-left: auto;
}
.accordion-content header .dropdown-toggle svg {
  width: 35px;
  height: 35px;
  fill: #E75113;
}
.accordion-content header .dropdown-toggle svg.plus-circle {
  display: block;
}
.accordion-content header .dropdown-toggle svg.minus-circle {
  display: none;
}
.accordion-content > div {
  max-height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  background-color: #f0f3f4;
}
.accordion-content.open header {
  background-color: #20343D;
  color: white;
}
.accordion-content.open header h4 {
  color: white;
}
.accordion-content.open header .dropdown-toggle svg.minus-circle {
  display: block;
}
.accordion-content.open header .dropdown-toggle svg.plus-circle {
  display: none;
}
.accordion-content.open > div {
  padding: 55px 45px;
  max-height: 1000px;
  display: flex;
  --gap: 40px;
  gap: var(--gap);
  align-items: center;
}
.accordion-content.open > div .ce-bodytext {
  flex: 1;
}
.accordion-content.open > div .ce-bodytext p:last-child {
  margin-bottom: 0;
}

.frame-type-indexedsearch_pi2 .tx-indexedsearch-res a {
  color: inherit;
  text-decoration: none;
}
.frame-type-indexedsearch_pi2 .tx-indexedsearch-res a:hover {
  text-decoration: underline;
}
.frame-type-indexedsearch_pi2 .tx-indexedsearch-searchbox {
  margin-bottom: 6.5%;
}
.frame-type-indexedsearch_pi2 .tx-indexedsearch-searchbox #tx_indexedsearch .search-form-inputs {
  display: flex;
  width: 80%;
  margin: auto;
  height: 50px;
}
.frame-type-indexedsearch_pi2 .tx-indexedsearch-searchbox #tx_indexedsearch .search-form-inputs input {
  border: none;
}
.frame-type-indexedsearch_pi2 .tx-indexedsearch-searchbox #tx_indexedsearch .search-form-inputs input.tx-indexedsearch-searchbox-sword {
  width: 90%;
  background-color: #f0f3f4;
  font-size: 1.3020833333vw;
  padding-left: 1%;
}
.frame-type-indexedsearch_pi2 .tx-indexedsearch-searchbox #tx_indexedsearch .search-form-inputs .tx-indexedsearch-searchbox-button {
  cursor: pointer;
  width: fit-content;
  padding: 5px 15px;
  background-color: #20343D;
  border: none;
}
.frame-type-indexedsearch_pi2 .tx-indexedsearch-searchbox #tx_indexedsearch .search-form-inputs .tx-indexedsearch-searchbox-button svg.svg-search {
  width: 30px;
  height: 30px;
  fill: white;
}
.frame-type-indexedsearch_pi2 .tx-indexedsearch-searchbox #tx_indexedsearch .search-form-inputs .tx-indexedsearch-searchbox-button:hover {
  background-color: #E75113;
}
.frame-type-indexedsearch_pi2 .tx-indexedsearch-info-sword, .frame-type-indexedsearch_pi2 .tx-indexedsearch-browsebox {
  display: none;
}

main > header {
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: #20343D;
}
main > header .logo-home img {
  transition: max-height 0.5s ease;
  width: auto;
}
main > header .navbar-first {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 100%;
  margin-inline: auto;
  --gap: 16px;
  gap: var(--gap);
}
main > header .navbar-first .language--switcher {
  margin-left: 0;
}
main > header .navbar-second {
  display: flex;
  align-items: flex-end;
  padding: 12px 92px 12px 105px;
}
main > header .menu-container {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  --gap: 5.2vw;
  gap: var(--gap);
  padding: 43px 0 21px 15px;
}
main > header .menu-container .menu {
  position: relative;
}
main > header .menu-container .menu a {
  color: white;
  font-weight: 300;
  text-decoration: none;
  line-height: 1;
  font-size: 1.5625vw;
  letter-spacing: 0.05em;
  transition: font-size 0.5s ease;
}
main > header .menu-container .menu a svg {
  display: none;
}
main > header .menu-container .menu .links {
  position: absolute;
  display: none;
  background-color: white;
  flex-direction: column;
  width: 100%;
  align-items: end;
  gap: 30px;
  color: #3a4f58;
  z-index: 2;
  padding: 15px 0 26px 0;
  bottom: 0;
  transform: translateY(calc(100% + 15px));
}
main > header .menu-container .menu .links a {
  font-size: 1.3541666667vw;
  text-decoration: none;
  color: #3a4f58;
  padding-right: 15px;
}
main > header .menu-container .menu .links a:hover {
  text-decoration: underline;
}
main > header .menu-container .menu .links::before {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background-color: #7D878C;
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
main > header .menu-container .menu.active .links, main > header .menu-container .menu:focus .links, main > header .menu-container .menu:focus-within .links {
  display: flex;
}
main > header.sticky {
  box-shadow: 0 0 30px rgba(32, 52, 61, 0.16);
}
main > header.sticky .logo-home img {
  max-height: 60px;
  width: auto;
}
main > header.sticky .menu-container {
  padding: 0 0 5px 15px;
}
main > header.sticky .menu-container .menu a {
  font-size: 1.3020833333vw;
}
main > header.sticky .menu-container .menu .links a {
  font-size: 1.09375vw;
}

.frame-layout-1 {
  margin-top: 70px;
  max-width: 71%;
  margin-inline: auto;
}
.frame-layout-1 h2 {
  margin-bottom: 90px;
}
.frame-layout-1 .ce-bodytext > * {
  margin-bottom: 20px;
}
.frame-layout-1 .ce-bodytext ul {
  padding-left: 20px;
}

.frame-layout-4 {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  padding: 3% 0 3% 36%;
  flex-direction: column;
  justify-content: center;
}
.frame-layout-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36%;
  width: 65%;
  height: 100%;
  border-radius: 205px 0 0 205px;
  background: #678795;
  z-index: 2;
}
.frame-layout-4 .ce-gallery {
  margin-top: 0;
  width: 60%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.frame-layout-4 .ce-gallery figure {
  width: 100%;
  height: 100%;
  display: flex;
}
.frame-layout-4 .ce-gallery figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.frame-layout-4 header,
.frame-layout-4 .ce-bodytext {
  margin-right: 23%;
  z-index: 2;
  position: relative;
  padding-left: 15%;
  padding-right: 0;
}
.frame-layout-4 header {
  padding-bottom: 20px;
}
.frame-layout-4 header h2 {
  color: #20343d;
  font-size: 2.6041666667vw;
  font-weight: 900;
  margin-bottom: 60px;
  position: relative;
}
.frame-layout-4 header h2::after {
  content: "";
  border-bottom: solid white 2px;
  position: absolute;
  width: 84px;
  bottom: -30px;
  left: 0;
}
.frame-layout-4 header h3 {
  font-size: 1.40625vw;
  font-weight: bold;
  color: white;
  letter-spacing: 1.5px;
  margin-bottom: 0;
}
.frame-layout-4 header .svg {
  position: absolute;
  right: 30px;
  top: -30px;
  transform: translateX(100%);
}
.frame-layout-4 .ce-bodytext {
  color: white;
  font-size: 1.0416666667vw;
}
.frame-layout-4 .ce-bodytext p {
  font-weight: 500;
  letter-spacing: 1px;
}
.frame-layout-4:nth-child(even)::before {
  left: 0;
  border-radius: 0 205px 205px 0;
}
.frame-layout-4:nth-child(even) header,
.frame-layout-4:nth-child(even) .ce-bodytext {
  margin-left: 20%;
  margin-right: 0;
  padding-right: 11%;
  padding-left: 0;
}
.frame-layout-4:nth-child(even) .ce-gallery {
  left: 50%;
}
.frame-layout-4:nth-child(even) {
  padding-left: 0;
  padding-right: 36%;
}
.frame-layout-4:nth-child(even) .text {
  margin-left: 0;
}
.frame-layout-4:nth-child(even) header .svg {
  right: auto;
  left: -30px;
  transform: translateX(-100%);
}

@media screen and (max-width: 1024px) {
  .frame-layout-4 {
    flex-direction: column;
    padding: 0;
    overflow: hidden;
  }
  .frame-layout-4::before {
    display: none;
  }
  .frame-layout-4 .ce-gallery {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    z-index: 1;
  }
  .frame-layout-4 .ce-gallery figure {
    width: 100%;
    height: auto;
  }
  .frame-layout-4 .ce-gallery figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .frame-layout-4 header,
  .frame-layout-4 .ce-bodytext {
    position: relative;
    z-index: 2;
    padding: 20px;
    margin: 0 !important;
    text-align: center;
    background: #678795;
  }
  .frame-layout-4 header h2 {
    font-size: 1.4583333333vw;
    margin-bottom: 20px;
  }
  .frame-layout-4 header h2::after {
    display: none;
  }
  .frame-layout-4 header h3 {
    font-size: 1.0416666667vw;
    color: white;
  }
  .frame-layout-4 header .svg {
    left: 5% !important;
    right: unset !important;
  }
  .frame-layout-4 header .svg img {
    scale: 0.7;
  }
  .frame-layout-4 .ce-bodytext {
    font-size: 16px;
    color: white;
  }
  .frame-layout-4:nth-child(even) {
    padding: 0;
  }
  .frame-layout-4:nth-child(even) .ce-gallery {
    left: 0;
  }
  .frame-layout-4:nth-child(even) header,
  .frame-layout-4:nth-child(even) .ce-bodytext {
    padding: 20px;
    text-align: center;
  }
}
.frame-layout-5 {
  max-width: 71%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  position: relative;
}
.frame-layout-5 .carousel-files {
  background-color: white;
  width: 100%;
  max-width: 45.3%;
  margin: 0 auto 20px auto;
}
.frame-layout-5 .carousel-files img {
  object-fit: contain;
  width: 100%;
}
.frame-layout-5 .content {
  flex: 1;
  margin-left: -25px;
}
.frame-layout-5 .content .bodytext {
  position: relative;
  padding: 10% 9% 8% 6%;
  font-size: 2rem;
  background-color: #20343D;
  color: white;
  font-weight: 700;
}
.frame-layout-5 .content .bodytext p {
  font-size: 1.5625vw;
}
.frame-layout-5 .content .bodytext .logo {
  position: absolute;
  top: -70px;
  max-width: 22vw;
}
.frame-layout-5 .content .bodytext .button {
  position: absolute;
  bottom: -20px;
  right: 20px;
  padding: 11px 0;
}
.frame-layout-5 .content .bodytext .btn {
  font-size: 1.3020833333vw;
  letter-spacing: 1px;
  font-weight: bold;
}

.frame-layout-6 {
  background-color: #f0f3f4;
  padding: 43px 25px;
  color: #20343D;
  margin-top: 30px;
}
.frame-layout-6 .content {
  display: flex;
  flex-direction: column;
  --gap: 45px;
}
.frame-layout-6 .content .frame:not(:last-child) {
  padding-bottom: var(--gap);
  position: relative;
}
.frame-layout-6 .content .frame:not(:last-child):after {
  content: "";
  width: 83px;
  height: 2px;
  background-color: #20343D;
  position: absolute;
  left: 10px;
  bottom: 0;
}
.frame-layout-6 h2 {
  font-weight: 900;
  margin-left: 90px;
  font-size: 2.6041666667vw;
  color: #20343D;
}
.frame-layout-6 .ce-intext.ce-left ul {
  margin-left: 0;
  padding-left: 20px;
  margin-top: 11px;
}
.frame-layout-6 .frame-layout-0 .ce-bodytext {
  padding: 0;
}
.frame-layout-6 .ce-textpic {
  position: relative;
  padding-top: 15px;
}
.frame-layout-6 .ce-textpic .ce-gallery {
  margin: 0;
  position: absolute;
  top: 7px;
  left: 0;
  width: 60px;
  height: 60px;
}

.frame-layout-7 {
  background-color: #20343D;
  color: white;
  padding: 51px 25px 80px;
}
.frame-layout-7 header h2 {
  color: white !important;
}
.frame-layout-7 .frame p {
  color: white !important;
}
.frame-layout-7 .frame p strong {
  color: white !important;
}

.frame-layout-8 {
  width: 85.52vw;
  margin-left: auto;
  z-index: 1;
  position: relative;
  background-color: white;
  padding: 27px 35px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  border-top-left-radius: 173px;
  border-bottom-left-radius: 173px;
  margin-bottom: var(--block-space);
}
.frame-layout-8 .ce-textpic {
  display: flex;
  --gap: 79px;
  gap: var(--gap);
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
}
.frame-layout-8 .ce-gallery {
  margin: 0 !important;
}
.frame-layout-8 h2 {
  font-size: 1.5625vw;
  text-transform: initial;
}
.frame-layout-8 > .ce-textpic > .ce-bodytext {
  display: flex;
  flex-direction: column;
  --gap: 24px;
  gap: var(--gap);
  max-width: 27%;
}
.frame-layout-8 > .ce-textpic > .ce-bodytext p, .frame-layout-8 > .ce-textpic > .ce-bodytext h2 {
  text-align: right;
}
.frame-layout-8 > .ce-textpic > .ce-bodytext p:not(:has(a)) {
  font-size: 1.3541666667vw;
}
.frame-layout-8 > .ce-textpic > .ce-bodytext p:has(a) {
  display: flex;
  justify-content: flex-end;
}
.frame-layout-8 > .ce-textpic > .ce-bodytext p .btn {
  border: 1px solid #E75113;
}
.frame-layout-8 .ce-row {
  display: flex;
  align-items: center;
  --gap-parent: 50px;
  gap: var(--gap-parent);
}
.frame-layout-8 .ce-row .ce-column {
  margin-right: 0;
}
.frame-layout-8 .ce-row .ce-column figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  --gap: 50px;
  gap: var(--gap);
}
.frame-layout-8 .ce-row .ce-column figure .description {
  font-size: 2.0833333333vw;
  line-height: 1;
  font-weight: 300;
  color: #E75113;
}

.frame-type-container-2col {
  margin-bottom: var(--block-space);
  max-width: 85%;
  margin-inline: auto;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  --gap: 25px;
  gap: var(--gap);
}
.frame-type-container-2col:has(.image-description-left) {
  max-width: 100%;
  padding-top: 0;
}
.frame-type-container-2col .grid_row {
  display: flex;
  --gap: 250px;
  gap: var(--gap);
}
.frame-type-container-2col .grid_row .grid_col .frame > div {
  display: flex;
  flex-direction: column;
}
.frame-type-container-2col .grid_row .grid_col.grid_left {
  width: 35%;
}
.frame-type-container-2col .grid_row .grid_col.grid_left .frame > div {
  --gap: 111px;
  gap: var(--gap);
}
.frame-type-container-2col .grid_row .grid_col.grid_left p {
  font-size: 1.3020833333vw;
  font-weight: 300;
}
.frame-type-container-2col .grid_row .grid_col.grid_right {
  width: calc(65% - var(--gap));
}
.frame-type-container-2col.frame-layout-3 .grid_row {
  --gap: 25px;
}
.frame-type-container-2col.frame-layout-3 .grid_row .grid_col {
  width: calc((100% - 1 * var(--gap)) / 2);
}

.frame-type-container-4col {
  display: flex;
  flex-direction: column;
}
.frame-type-container-4col .content {
  display: flex;
  --gap: 71px;
  gap: var(--gap);
  --spaces: 3;
  --columns: 4;
  max-width: 73%;
  margin-inline: auto;
}
.frame-type-container-4col .content .grid_col {
  width: calc((100% - var(--spaces) * var(--gap)) / var(--columns));
}
.frame-type-container-4col .content .grid_col .frame {
  margin-bottom: 0 !important;
}
.frame-type-container-4col .content .grid_col .ce-bodytext p {
  margin-bottom: 0;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.3020833333vw;
  line-height: 1.2;
}
.frame-type-container-4col .content .grid_col .ce-textpic {
  display: flex;
  flex-direction: column;
}
.frame-type-container-4col .content .grid_col .ce-textpic img {
  max-height: 100px;
  width: auto;
}

.frame-type-interactive-map {
  margin-bottom: var(--block-space);
}
.frame-type-interactive-map p {
  display: flex;
}
.frame-type-interactive-map .btn {
  margin-inline: auto;
  border: 1px solid #E75113;
  transform: translateY(-50%);
}

.subpage {
  margin-bottom: var(--block-space);
}
.subpage .row {
  display: flex;
  flex-wrap: wrap;
}
.subpage .row .col-side {
  position: relative;
  width: 25%;
  margin-left: 3%;
}
.subpage .row .col-side ul {
  list-style: none;
}
.subpage .row .col-side ul li a {
  text-decoration: none;
  color: black;
}
.subpage .row .col-side ul li a:hover {
  text-decoration: underline;
}
.subpage .row .col-side ul li a:active {
  color: #E75113;
}
.subpage .row .col-main > .frame-type-header:first-child h2 {
  margin-bottom: 90px;
}
.subpage .row .col-main > .frame-layout-0 {
  margin-right: 5%;
}
.subpage .row .col-main {
  width: 72%;
  overflow: hidden;
}
.subpage .row .col-full {
  width: 100%;
}
.subpage .row .col-full .frame-type-div {
  max-width: 85%;
  margin-inline: auto;
}
.subpage .frame-layout-5 {
  margin-top: 150px;
  max-width: 85%;
}
.subpage .frame-type-stats-list {
  background-color: #20343D;
  padding: 45px 98px;
}
.subpage .frame-type-stats-list .stats-list {
  justify-content: center;
}
.subpage .frame-type-header {
  max-width: 100%;
}
.subpage .frame-type-container-4col .content {
  --gap: 49px;
  max-width: 100%;
}
.subpage .ce-bodytext ul {
  padding-left: 20px;
}

.inner-content .grid_left.grid_col .frame-type-textmedia.frame-layout-0 figure img {
  width: 90%;
  margin-inline: auto;
}
.inner-content .grid_left.grid_col .frame-type-textmedia.frame-layout-0 p:has(.btn) .btn {
  margin-top: 40px;
  width: 90%;
}
.inner-content .frame-type-stats-list {
  background-color: #20343D;
  padding: 45px 98px;
  max-width: fit-content;
  margin-inline: auto;
  margin-bottom: 90px;
}
.inner-content .frame-type-stats-list .stats-list {
  justify-content: center;
}
.inner-content .frame-type-div {
  max-width: 85%;
  margin-inline: auto;
}
.inner-content .frame-type-container-2col .frame-type-header {
  max-width: 100%;
  margin-bottom: 0;
}
.inner-content .frame-type-container-2col .grid_row .grid_col .frame > div {
  --gap: 25px;
  gap: var(--gap);
}
.inner-content .frame-type-container-2col .grid_row .grid_col .frame > div p {
  font-size: 1.3020833333vw;
  font-weight: 300;
}

@media screen and (min-width: 481px) and (max-width: 1024px) {
  .subpage .row {
    flex-direction: column;
    row-gap: 50px;
  }
  .subpage .row .col {
    width: fit-content;
  }
  .subpage .row .col-side .content {
    display: none;
  }
  .subpage .row .col-main {
    margin: 0;
    width: 100%;
    padding: 0;
  }
  .subpage .row .col-main .frame {
    padding: 0 6%;
  }
}
.frame-type-div {
  margin: 90px 0;
}
.frame-type-div hr {
  border: none;
  height: 1px;
  background: repeating-linear-gradient(to right, #E75113 0, #E75113 5px, transparent 5px, transparent 10px);
}

.frame-type-image.frame-layout-3 {
  max-width: 81.7%;
  margin-inline: auto;
  margin-bottom: 172px;
}
.frame-type-image > header h2, .frame-type-image > header h3 {
  margin-bottom: 30px;
}
.frame-type-image .ce-image {
  display: flex;
}
.frame-type-image .ce-image.ce-center {
  justify-content: center;
}
.frame-type-image .ce-image .ce-gallery[data-ce-columns="1"] .ce-inner {
  gap: 140px;
}
.frame-type-image .ce-image .ce-gallery .ce-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 80px;
}
.frame-type-image .ce-image .ce-gallery .ce-inner .ce-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  --gap: 50px;
  gap: var(--gap);
  --spaces: 1;
  --columns: 2;
  width: 100%;
}
.frame-type-image .ce-image .ce-gallery .ce-inner .ce-row .ce-column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: calc((100% - var(--spaces) * var(--gap)) / var(--columns)) !important;
  margin-right: 0;
  aspect-ratio: 1;
  padding: 5px;
}
@media screen and (max-width: 1024px) {
  .frame-type-image .ce-image .ce-gallery .ce-inner .ce-row .ce-column {
    width: 100%;
  }
}
.frame-type-image .ce-image .ce-gallery .ce-inner .ce-row .ce-column figure {
  display: flex;
  height: 100%;
}
.frame-type-image .ce-image .ce-gallery .ce-inner .ce-row .ce-column figure img {
  height: auto;
  object-fit: contain;
}

.frame-type-textmedia.frame-layout-0 {
  margin-bottom: var(--block-space);
}
.frame-type-textmedia.frame-layout-0:has(.accordion-content) {
  margin-bottom: 20px;
}
.frame-type-textmedia.frame-layout-0:has(.accordion-content):last-child {
  margin-bottom: var(--block-space);
}
.frame-type-textmedia.frame-layout-0:has(blockquote) {
  margin-bottom: 0;
}
.frame-type-textmedia.frame-layout-0 .ce-row {
  display: flex;
  align-items: center;
  --gap: 40px;
  gap: var(--gap);
}
.frame-type-textmedia.frame-layout-0 .ce-row .ce-column {
  margin-right: 0;
}
.frame-type-textmedia.frame-layout-0 p {
  margin-bottom: 20px;
}
.frame-type-textmedia.frame-layout-0 p:has(.btn) {
  margin-bottom: 0;
  display: flex;
}
.frame-type-textmedia.frame-layout-0 p:has(.btn) .btn {
  margin-inline: auto;
  margin-top: 20px;
}
.frame-type-textmedia.frame-layout-0 .ce-bodytext p:has(.btn) .btn {
  margin-top: 0;
  border: 1px solid #E75113;
}

.frame-type-header {
  max-width: 85%;
  margin-inline: auto;
  margin-bottom: calc(var(--block-space) + 10px);
}

.frame-type-container-2col-right {
  padding: 0 4% !important;
}
.frame-type-container-2col-right .grid_row {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  justify-content: space-between;
}
.frame-type-container-2col-right .grid_row .grid_col .btn {
  border: 1px solid #E75113;
}
.frame-type-container-2col-right .grid_row .grid_col .frame-type-header {
  max-width: 100%;
}
.frame-type-container-2col-right .grid_row .grid_col .frame {
  height: 100%;
}
.frame-type-container-2col-right .grid_row .grid_col {
  height: 100%;
  width: 50%;
}
.frame-type-container-2col-right .grid_row .grid_col.grid_left {
  width: 25%;
}
.frame-type-container-2col-right .grid_row .grid_col.grid_right {
  width: 72%;
}
.frame-type-container-2col-right .frame-type-stats-list {
  background-color: #20343D;
  padding: 45px 98px;
}
.frame-type-container-2col-right .frame-type-stats-list .stats-list {
  justify-content: center;
}

.tx-indexedsearch-info-noresult {
  max-width: 85%;
  margin-inline: auto;
  margin-bottom: var(--block-space);
}

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

.frame-type-felogin_login {
  max-width: 85%;
  margin-inline: auto;
  margin-bottom: var(--block-space);
}
.frame-type-felogin_login h2 {
  margin-bottom: 37px;
}
.frame-type-felogin_login form {
  margin: 25px 0 10px;
}
.frame-type-felogin_login form fieldset {
  border: none;
}
.frame-type-felogin_login form fieldset legend {
  display: none;
}
.frame-type-felogin_login form {
  position: relative;
}
.frame-type-felogin_login form input {
  width: 100%;
  border: none;
  border-bottom: solid 1px #4E6A76;
  height: 30px;
  margin-bottom: 15px;
}
.frame-type-felogin_login form input[type=submit] {
  margin-top: 25px;
  width: fit-content;
  display: block;
  margin-inline: auto;
  font-size: 1.3020833333vw;
  height: fit-content;
  border: 1px solid #E75113;
}

.intranet--pages {
  max-width: 85%;
  margin-inline: auto;
  margin-bottom: var(--block-space);
}
.intranet--pages h2 {
  margin-bottom: 37px;
}
.intranet--pages .ce-bodytext {
  display: flex;
  flex-direction: column;
  --gap: 25px;
  gap: var(--gap);
}
.intranet--pages .ce-bodytext h2, .intranet--pages .ce-bodytext h3 {
  margin-top: 12px;
}

.frame-type-indexedsearch_pi2 {
  max-width: 80%;
  margin-inline: auto;
}
.frame-type-indexedsearch_pi2 .accordion-content {
  margin-bottom: 20px;
}

footer {
  background-color: #20343D;
  padding: 38px 45px;
  display: flex;
  align-items: center;
  --gap: 267px;
  gap: var(--gap);
  color: white;
}
footer span {
  font-size: 0.78125vw;
}
footer .footer-center {
  display: flex;
  align-items: center;
  --gap: 60px;
  gap: var(--gap);
}
footer .footer-center svg {
  fill: #678795;
  width: 23px;
  height: 23px;
}
footer .footer-menu {
  display: flex;
  align-items: center;
  --gap: 10px;
  gap: var(--gap);
  list-style-type: none;
}
footer .footer-menu li:not(footer .footer-menu li:last-child) {
  padding-right: var(--gap);
  border-right: 1px solid white;
}
footer .footer-menu li a {
  font-weight: 400;
  font-size: 1.0416666667vw;
}
footer .footer-menu li a:not(:hover) {
  text-decoration: none;
}

@media (max-width: 480px) {
  body {
    font-size: 14px !important;
    --block-space: 30px !important;
  }
  .mobile-trigger {
    margin-left: auto;
  }
  .mobile-trigger svg {
    width: 25px;
    height: 25px;
  }
  .btn {
    font-size: 12px;
  }
  .btn--large, .btn-link {
    font-size: 14px;
  }
  h2,
  .frame-layout-4 header h2,
  .banner-footer h2, .banner .content .left .top p, .banner .content .left .top h1, .banner .content .left .bottom p,
  .banner .content .left .bottom h1,
  .frame-layout-6 h2 {
    font-size: 25px;
    text-align: center;
  }
  h3,
  .frame-layout-4 header h3 {
    font-size: 20px;
    text-align: center;
  }
  h4 {
    font-size: 18px;
    text-align: center;
  }
  blockquote p {
    font-size: 20px;
  }
  main > header .logo-home img {
    max-height: 50px !important;
  }
  main > header .navbar-first {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    justify-content: center;
    align-items: stretch;
    --gap: 0;
  }
  main > header .navbar-first > * {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  main > header .navbar-first .btn {
    padding: 11px 15px;
  }
  main > header .navbar-second {
    padding: 15px;
    justify-content: space-between;
  }
  main > header .navbar-second .menu-container {
    display: none;
    flex-direction: column;
    width: 100%;
    margin: 0;
    gap: 10px;
    position: absolute;
    top: 100%;
    z-index: 10;
    background-color: #20343D;
    padding: 15px;
    left: 0;
  }
  main > header .navbar-second .menu-container.open {
    display: flex;
  }
  main > header .navbar-second .menu-container .menu {
    width: 100%;
  }
  main > header .navbar-second .menu-container .menu > a {
    padding: 15px 10px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  main > header .navbar-second .menu-container .menu > a .svg-arrow-down {
    display: block;
    width: 40px;
    height: 40px;
    fill: white;
  }
  main > header .navbar-second .menu-container .menu .links {
    position: relative;
    top: 0;
    display: none;
    flex-direction: column;
    align-items: start;
    width: 100%;
    padding-left: 6%;
    background-color: #4E6A76;
    transform: translateY(0);
    bottom: unset;
  }
  main > header .navbar-second .menu-container .menu .links a {
    color: white;
    padding: 10px;
    width: 100%;
  }
  main > header .navbar-second .menu-container .menu.open > a .svg-arrow-down {
    transform: rotate(180deg);
  }
  main > header .navbar-second .menu-container .menu.open .links {
    display: flex;
  }
  .accordion-content header {
    padding: 15px 20px;
    gap: 25px;
  }
  .accordion-content.open > div {
    flex-direction: column;
    padding: 25px 15px;
    --gap: 20px;
  }
  .accordion-content.open > div .ce-bodytext p:last-child {
    margin-bottom: 0;
  }
  .frame-layout-6 {
    padding-bottom: 0;
  }
  .frame-layout-6 h2 {
    text-align: left;
  }
  .frame-type-textmedia.frame-layout-0 p {
    text-align: center;
  }
  .language--switcher {
    margin: 0 !important;
    padding: 0;
    background-color: #20343D;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .language--switcher .language-btn span {
    display: none;
  }
  .language--switcher .language-list {
    transform: translateY(0);
  }
  .language--switcher .language-list li {
    justify-content: center;
    padding: 10px 0;
  }
  .language--switcher .language-list li img {
    display: none;
  }
  .language--switcher .language-list li a, .language--switcher .language-list li span {
    font-size: 12px;
  }
  .banner .content .left {
    padding-bottom: 15px;
  }
  .banner.big {
    background-color: #20343D;
  }
  .banner.big > img {
    min-height: 400px;
    object-fit: cover;
    object-position: left;
  }
  .banner.big .content {
    position: unset;
  }
  .banner.big .content .left {
    padding-bottom: 0 !important;
    width: 100%;
    --gap: 50px;
    top: 115px;
    position: absolute;
  }
  .banner.big .content .right {
    background-color: #20343D;
    padding: 40px 15px;
    width: 100%;
    --gap: 30px;
  }
  .banner.big .content .right img {
    max-height: 100px;
    width: auto;
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .frame-layout-1, .frame-type-header, .frame-layout-5, .slider-container, .breadcrumb, .frame-type-image.frame-layout-3,
  .frame-type-container-2col-right,
  .subpage .row .col-main {
    max-width: calc(100% - 40px);
  }
  .slider-container {
    padding-bottom: var(--block-space);
    gap: 30px;
  }
  .slider-container .content .splide.slider.layout_0 .splide__slide.is-active {
    width: 100% !important;
  }
  .frame-layout-1 .frame-type-header {
    max-width: 100%;
    margin-bottom: 0;
  }
  .frame-layout-1 h2 {
    margin-bottom: 30px;
  }
  .frame-layout-4 header .svg {
    display: none;
  }
  .frame-layout-5 {
    flex-direction: column;
  }
  .frame-layout-5 .carousel-files {
    max-width: 100%;
    margin: 0;
  }
  .frame-layout-5 .content {
    margin-left: 0;
    width: 100%;
  }
  .frame-layout-5 .content .bodytext .logo {
    top: 0;
    transform: translateY(-50%);
    max-width: 50%;
  }
  .frame-layout-6 .content {
    --gap: 30px;
  }
  .frame-type-textmedia.frame-layout-0 .ce-row {
    flex-direction: column;
    --gap: 10px;
  }
  .frame-type-textmedia.frame-layout-0 .ce-row .ce-column {
    width: 100%;
  }
  .frame-type-textmedia.frame-layout-0 p:has(.btn) {
    margin-top: 0;
  }
  .frame-type-interactive-map .btn {
    transform: translateY(0);
  }
  .frame-type-container-2col.frame-layout-1 .grid_row .grid_col .ce-gallery img {
    display: none;
  }
  .frame-type-container-2col {
    padding-top: 20px;
    --gap: 0;
  }
  .frame-type-container-2col .grid_row {
    --gap: 30px;
    flex-wrap: wrap;
  }
  .frame-type-container-2col .grid_row .grid_col {
    width: 100% !important;
  }
  .frame-type-container-2col .grid_row .grid_col .frame-type-textmedia.frame-layout-0 {
    margin-bottom: 0;
  }
  .frame-type-container-2col .grid_row .grid_col .frame > div {
    --gap: 30px !important;
  }
  .frame-type-container-2col .grid_row .grid_col .ce-gallery {
    margin-top: 0;
  }
  .frame-type-container-2col .grid_row .grid_col .ce-gallery img {
    max-height: 150px;
    width: auto;
  }
  .frame-type-form_formframework form .form-label,
  .frame-type-container-2col .grid_row .grid_col p,
  .frame-type-form_formframework .row span,
  .frame-layout-5 .content .bodytext p,
  .frame-layout-5 .content .bodytext .btn,
  .banner-footer .description p:not(:has(a)),
  .domaines .domaine span,
  .frame-layout-8 .ce-row .ce-column figure .description,
  .stats-container .stats-list .stat-item span.title,
  .frame-layout-8 > .ce-textpic > .ce-bodytext p:not(:has(a)),
  .breadcrumb .breadcrumb-item,
  .frame-type-container-4col .content .grid_col .ce-bodytext p,
  .image-shadowed figcaption,
  .image-description-left .description figcaption,
  .image-description-left .description .img-title,
  main > header .menu-container .menu .links a,
  .accordion-content header h4, .accordion-content header h3 {
    font-size: 14px !important;
  }
  .subpage .row .col-main > .frame-type-header:first-child h2, .frame-type-image.frame-layout-3 {
    margin-bottom: var(--block-space);
  }
  .frame-type-container-2col-right {
    padding: 0 !important;
    margin-inline: auto;
  }
  .frame-type-container-2col-right .grid_row {
    flex-wrap: wrap;
  }
  .frame-type-container-2col-right .grid_row .grid_col {
    width: 100% !important;
  }
  .frame-type-form_formframework .row {
    flex-direction: column;
  }
  .frame-type-div {
    margin: var(--block-space) auto;
  }
  .banner-footer {
    width: 100vw;
    flex-direction: column;
    border-radius: 0;
    --gap: 30px;
    padding: 15px;
    margin: var(--block-space) auto;
  }
  .banner-footer .description {
    max-width: 100%;
  }
  .banner-footer .description h2, .banner-footer .description p {
    text-align: center;
  }
  .banner-footer .description p:has(a) {
    justify-content: center;
  }
  .frame-layout-1 .ce-bodytext > * {
    text-align: center;
  }
  .frame-layout-1 .ce-bodytext ul {
    text-align: left;
  }
  .frame-layout-8 {
    width: 100vw;
    border-radius: 0;
    padding: 15px;
  }
  .frame-layout-8 .ce-textpic {
    flex-direction: column-reverse;
    --gap: 30px;
  }
  .frame-layout-8 > .ce-textpic > .ce-bodytext {
    max-width: 100%;
  }
  .frame-layout-8 > .ce-textpic > .ce-bodytext h2, .frame-layout-8 > .ce-textpic > .ce-bodytext p {
    text-align: center;
  }
  .frame-layout-8 > .ce-textpic > .ce-bodytext p:has(a) {
    justify-content: center;
  }
  .frame-layout-8 .ce-row {
    --gap-parent: 15px;
    gap: calc(var(--gap-parent) * 2) var(--gap-parent);
    flex-wrap: wrap;
    justify-content: center;
  }
  .frame-layout-8 .ce-row .ce-column {
    width: calc((100% - 1 * var(--gap-parent)) / 2);
    margin: 0;
  }
  .frame-layout-8 .ce-row .ce-column figure {
    --gap: 25px;
  }
  .breadcrumb {
    padding: 25px 0;
  }
  .domaines {
    --gap-parent: 15px;
    gap: calc(var(--gap-parent) * 2) var(--gap-parent);
    flex-wrap: wrap;
    justify-content: center;
  }
  .domaines .domaine {
    width: calc((100% - 1 * var(--gap-parent)) / 2);
    --gap: 25px;
  }
  .frame-type-container-2col-right .grid_row .grid_col .frame h2 {
    margin-bottom: 30px;
  }
  .stats-container .stats-list {
    --gap-parent: 20px;
    flex-wrap: wrap;
  }
  .stats-container .stats-list .stat-item {
    /*width: calc((100% - 1 * var(--gap-parent)) / 2);*/
    width: 100%;
    --gap: 15px;
  }
  .stats-container .stats-list .stat-item span.number {
    font-size: 25px;
  }
  .stats-container .stats-list .stat-item:not(:last-child) {
    border: 0;
    padding-right: 0;
  }
  .inner-content .frame-type-stats-list, .subpage .frame-type-stats-list {
    padding: 25px 15px !important;
    max-width: 100%;
    margin-bottom: var(--block-space);
  }
  .inner-content .frame-type-container-2col .grid_row .grid_col {
    display: flex;
    flex-direction: column;
    --gap: 30px;
    gap: var(--gap);
  }
  .inner-content .frame-type-container-2col .grid_row .grid_col .frame > div {
    --gap: 0 !important;
  }
  .inner-content .frame-type-container-2col .grid_row .grid_col .frame > div .ce-column {
    display: flex;
    justify-content: center;
  }
  .inner-content .frame-type-container-2col .grid_row .grid_col .frame > div p {
    margin-bottom: 0;
    text-align: center;
  }
  .accordion-content header h4 {
    text-align: left;
  }
  .subpage .col-side {
    display: none;
  }
  .subpage .col-main {
    margin-inline: auto;
    width: 100% !important;
  }
  .subpage .row .col-main > .frame-layout-0 {
    margin-right: 0;
  }
  .subpage .frame-type-image.frame-layout-0 .ce-image .ce-gallery .ce-inner .ce-row .ce-column figure img {
    max-height: 50px;
    width: auto;
  }
  .frame-type-container-4col {
    padding: 15px !important;
  }
  .frame-type-container-4col .content {
    --gap: 25px;
    --spaces: 1;
    --columns: 2;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .frame-type-image .ce-image .ce-gallery .ce-inner {
    gap: 30px;
  }
  .frame-type-image .ce-image .ce-gallery .ce-inner .ce-row {
    --gap: 30px;
    --columns: 2 !important;
    --spaces: 1 !important;
  }
  .image-shadowed {
    padding: 15px;
    --gap: 15px;
  }
  .image-description-left img {
    max-height: 150px;
    width: auto;
  }
  footer {
    padding: 15px 15px 70px;
    flex-direction: column;
    --gap: 25px;
  }
  footer span, footer .footer-menu li a {
    font-size: 12px;
  }
  footer .footer-center {
    flex-direction: column;
    --gap: 25px;
  }
}
@media (min-width: 481px) {
  .mobile-trigger {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  body {
    --block-space: 45px;
  }
  .frame-layout-1 h2,
  .frame-type-image.frame-layout-3, .frame-type-header,
  .subpage .row .col-main > .frame-type-header:first-child h2 {
    margin-bottom: var(--block-space);
  }
  .frame-type-container-2col .frame-type-header {
    margin-bottom: 0;
    max-width: 100%;
  }
  .frame-layout-7 {
    padding: 50px 25px;
  }
  .frame-type-container-4col .content {
    max-width: 100%;
  }
  .image-shadowed {
    --gap: 30px;
  }
  .image-shadowed img {
    max-height: 65px;
  }
  .image-shadowed:has(a) img {
    max-height: fit-content;
  }
  .frame-type-textmedia.frame-layout-0 .ce-row {
    --gap: 30px;
  }
  .frame-type-container-2col .grid_row {
    --gap: 125px;
  }
  .btn, .frame-type-felogin_login input[type=submit] {
    padding: 11px 20px;
  }
  .frame-layout-1 {
    margin-top: 30px;
  }
  main > header .logo-home img {
    max-height: 60px;
  }
  main > header .menu-container {
    padding: 15px 0 15px 15px;
  }
  main > header.sticky .menu-container {
    padding: 15px 0 0 15px;
  }
  main > header.sticky .logo-home img {
    max-height: 40px;
  }
  main > header.sticky .navbar-second {
    padding-top: 0;
  }
  .banner .content .right > img {
    max-height: 250px;
    width: auto;
  }
  .banner.big .content .left {
    --gap: 70px !important;
  }
  .stats-container .stats-list {
    --gap-parent: 30px;
  }
  .frame-type-image .ce-image .ce-gallery .ce-inner {
    gap: 20px;
  }
  .frame-type-image .ce-image .ce-gallery .ce-inner .ce-row {
    --gap: 20px;
  }
  .banner-footer, .frame-layout-8 .ce-textpic {
    --gap: 50px;
  }
  .frame-layout-8 .ce-row {
    --gap-parent: 40px;
    flex: 1;
    justify-content: space-between;
  }
  .frame-layout-8 .ce-row .ce-column figure {
    --gap: 30px;
  }
  .domaines {
    --gap-parent: 40px;
    flex: 1;
    justify-content: space-between;
  }
  .domaines .domaine {
    --gap: 30px;
  }
  .inner-content .frame-type-stats-list {
    margin-bottom: 45px;
  }
  .frame-type-container-2col {
    padding-top: 30px;
  }
  footer {
    padding: 18px 45px;
    --gap: 150px;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .accordion-content.open > div {
    padding: 25px 15px;
  }
  .image-description-left img {
    max-width: 180px;
  }
  .frame-layout-4:nth-child(even) header, .frame-layout-4:nth-child(even) .ce-bodytext {
    margin-left: 20%;
    padding-right: 11%;
  }
  .frame-layout-4 header, .frame-layout-4 .ce-bodytext {
    margin-right: 20%;
    padding-left: 9%;
  }
  .frame-layout-6 .content .frame-type-textmedia.frame-layout-0:last-child {
    margin-bottom: 0;
  }
  .banner .content .left {
    padding-bottom: 36px;
  }
  .banner .content .right {
    padding-right: 30px;
    padding-bottom: 130px;
    --gap: 34px;
  }
  .banner.big .content .left {
    padding-bottom: 146px;
    --gap: 142px;
  }
  .breadcrumb {
    padding: 38px 0 60px;
  }
  .subpage .frame-type-stats-list {
    padding: 43px 75px 33px;
  }
  .frame-type-div {
    margin: 45px 0;
  }
}
@media (min-width: 1601px) and (max-width: 1919px) {
  .banner .content .left {
    padding-bottom: 46px;
  }
  .banner .content .right {
    padding-right: 55px;
    padding-bottom: 114px;
  }
  .banner.big .content .left {
    padding-bottom: 130px;
    --gap: 127px;
  }
  .breadcrumb {
    padding: 38px 0 60px;
  }
}
body {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 0.9375vw;
  line-height: 1.39;
  color: #20343D;
  overflow-x: hidden;
  background-image: url("../Images/monde.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
}

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