@charset "UTF-8";

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: #fafafb;
  color: #021930;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 17px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 7500;
  display: flex;
  width: 280px;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border-radius: 0 0 35px 35px;
  background: #fff;
  box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.brand {
  display: block;
  width: 100%;
}

.burger {
  display: none;
  width: 44px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px auto;
  border-radius: 999px;
  background: #021930;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  z-index: 0;
  height: 100vh;
  min-height: 610px;
  margin-bottom: 40px;
  background-image: url("../uploads/photos/sliders/pages/slider_138_fr.jpg");
  background-position: center center;
  background-size: cover;
}

.hero::after {
  content: none;
}

.hero__text {
  position: absolute;
  top: 25vh;
  left: 50%;
  z-index: 1;
  width: min(50%, 920px);
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

h1,
.activities h2 {
  margin: 0;
  color: #fff;
  font-family: "GothamHTF-Medium", sans-serif;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

h1 {
  font-size: 40px;
  line-height: 48px;
}

.activities {
  position: relative;
  z-index: 2;
  margin-top: -60vh;
}

.activities__inner {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 12px;
}

.activities h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 30px;
}

.activities h2 span {
  display: block;
  margin-bottom: 50px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cards {
  display: flex;
  justify-content: space-between;
}

.card {
  position: relative;
  display: block;
  width: calc(33.3333333333% - 10px);
  min-height: 647.625px;
  overflow: visible;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.reveal-ready .card {
  opacity: 0;
  transform: translate3d(0, 52px, 0);
  transition:
    opacity .75s cubic-bezier(.22, 1, .36, 1),
    transform .75s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.reveal-ready .card:nth-child(2) {
  --reveal-delay: 140ms;
}

.reveal-ready .card:nth-child(3) {
  --reveal-delay: 280ms;
}

.reveal-ready .card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: var(--reveal-delay, 0ms);
}

.card__logo {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: center;
  padding: 30px 25px;
  background: transparent;
  box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.card__logo img {
  width: 190px;
  height: 50px;
  margin: auto;
  object-fit: contain;
}

.card__body {
  position: static;
  display: block;
  padding: 45px 45px 90px;
}

.card h3 {
  margin: 0;
  color: #021930;
  font-family: "GothamHTF-Medium", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
}

.card h3 span {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 20px;
  text-transform: uppercase;
}

.card p,
.card li,
.domain-title {
  color: #021930;
  font-size: 12px;
  line-height: 17px;
}

.card p {
  margin: 0;
}

.card .lead {
  margin-bottom: 25px;
  font-weight: 600;
  font-style: italic;
  line-height: 16px;
  opacity: .5;
}

.card .lead--brand {
  margin-top: 10px;
  margin-bottom: 12px;
  opacity: .5;
}

.card__sublogo {
  width: 152px;
  height: auto;
  margin-bottom: 18px;
}

.domain-title {
  display: block;
  margin-top: 20px;
  margin-bottom: 4px;
  font-weight: 700;
}

.card ul {
  margin: 0 0 20px 20px;
  padding: 0;
}

.card li {
  list-style: disc;
}

.btn {
  position: absolute;
  right: 45px;
  bottom: 30px;
  left: 45px;
  display: block;
  padding: 5px 30px;
  border: 1px solid #0a7287;
  border-radius: 8px;
  background: #0a7287;
  color: #fff;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease;
}

.card:hover .btn {
  border-color: #015768;
  background: #015768;
}

.line-back {
  width: 100%;
  margin-top: 0;
  opacity: 1;
}

.line-back img {
  width: 100%;
  height: auto;
}

footer {
  width: 100%;
  padding: 24px 0 0;
  background: #fff;
  box-shadow: 0 0 45px rgba(0, 0, 0, .1);
  text-align: center;
}

.footer {
  display: flex;
  width: min(800px, 90%);
  margin: 20px auto 40px;
  justify-content: space-between;
}

.footer__brand {
  width: 230px;
  margin-right: 20px;
}

.footer__addresses {
  display: flex;
  column-gap: 25px;
  text-align: left;
}

address {
  margin: 0;
  color: #021930;
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 0;
  color: inherit;
  font-size: 12px;
  line-height: 17px;
}

address span {
  display: block;
  font-size: 12px;
  line-height: 17px;
}

.legal {
  display: block;
  padding-bottom: 10px;
  color: #212121;
  font-size: 12px;
  line-height: 17px;
}

.legal a,
.legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #212121;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.legal a:hover,
.legal button:hover {
  color: rgba(33, 33, 33, .71);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 10000;
  display: flex;
  max-width: 980px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 20px 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 45px rgba(0, 0, 0, .18);
  color: #021930;
}

.cookie-banner[hidden],
.cookie-overlay[hidden] {
  display: none;
}

.cookie-banner h2,
.cookie-modal h2 {
  margin: 0 0 8px;
  color: #021930;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
}

.cookie-banner p,
.cookie-modal p {
  margin: 0;
  color: #021930;
  font-size: 13px;
  line-height: 18px;
}

.cookie-banner__actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-banner button,
.cookie-modal button {
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid #0a7287;
  border-radius: 6px;
  background: #0a7287;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner .cookie-refuse,
.cookie-banner .cookie-customize,
.cookie-modal .cookie-modal__close {
  background: #fff;
  color: #0a7287;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 25, 48, .48);
}

.cookie-modal {
  width: min(560px, 100%);
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.cookie-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-modal .cookie-modal__close {
  min-width: 38px;
  padding: 4px 10px;
  font-size: 24px;
  line-height: 28px;
}

.cookie-choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0;
  color: #021930;
  font-size: 13px;
  line-height: 18px;
}

.cookie-choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0a7287;
}

.cookie-choice strong {
  display: block;
  margin-bottom: 2px;
  color: #021930;
}

.cookie-choice--disabled {
  opacity: .7;
}

.simple-page {
  background: #fff;
}

.simple-page .header {
  position: relative;
  top: auto;
  left: auto;
  margin: 0 auto;
  transform: none;
}

.simple-main {
  width: min(1127px, calc(100% - 80px));
  min-height: 920px;
  margin: 0 auto;
  padding: 110px 0 130px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 42px;
  color: #a6a6a6;
  font-size: 13px;
}

.breadcrumb a {
  color: #a6a6a6;
}

.breadcrumb a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 13px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #a6a6a6;
  vertical-align: -1px;
}

.legal-content {
  color: #021930;
  font-size: 13px;
  line-height: 1.35;
}

.legal-content h1,
.legal-content h2 {
  margin: 0 0 24px;
  color: #021930;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  text-transform: uppercase;
}

.legal-content h1 {
  margin-bottom: 26px;
}

.legal-content h3 {
  margin: 0 0 18px;
  color: #7f8b96;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  line-height: 18px;
}

.legal-content p {
  margin: 0 0 28px;
  color: #021930;
  font-size: 13px;
  line-height: 1.35;
}

.legal-content a {
  text-decoration: underline;
}

.legal-content h2:not(:first-child) {
  margin-top: 66px;
}

.mentions-grid {
  display: grid;
  max-width: 520px;
  grid-template-columns: 1fr;
}

.mentions-grid p {
  margin-bottom: 22px;
}

.contact-lines {
  font-size: 18px !important;
  line-height: 1.15 !important;
}

.legal-content .center-link {
  text-align: center;
}

.legal-content--mentions h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .card,
  .reveal-ready .card.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1750px) {
  h1 {
    font-size: 24px;
    line-height: 31px;
  }

  .activities h2 {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 1150px) {
  .hero__text {
    top: 200px;
  }

  .activities {
    margin-top: -300px;
  }
}

@media (max-width: 960px) {
  .header {
    width: 200px;
    min-height: 70px;
    padding: 14px;
  }

  .brand {
    width: 125px;
    height: 42px;
  }

  .burger {
    display: none;
    position: absolute;
    right: -56px;
    top: 16px;
  }

  .hero {
    min-height: 700px;
  }

  .hero__text {
    top: 140px;
    width: 80%;
  }

  .activities {
    margin-top: -430px;
  }

  .activities__inner {
    width: 90%;
  }

  .cards {
    flex-direction: column;
  }

  .card {
    width: 100%;
    min-height: auto;
    margin-bottom: 20px;
  }

  .card__logo {
    min-height: 130px;
    padding: 15px;
  }

  .card__body {
    padding: 25px 25px 80px;
  }

  .card h3 span {
    font-size: 11px;
    line-height: 16px;
  }

  .footer {
    flex-wrap: wrap;
    justify-content: center;
  }

  .simple-main {
    width: calc(100% - 80px);
    padding-top: 70px;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 17px;
    line-height: 23px;
    letter-spacing: 1px;
  }

  .activities h2 {
    font-size: 14px;
    line-height: 20px;
  }

  .activities h2 span {
    font-size: 12px;
    line-height: 16px;
  }

  .card h3 {
    font-size: 14px;
    line-height: 20px;
  }

  .card .lead {
    margin-bottom: 10px;
  }

  .domain-title {
    margin-top: 34px;
    margin-bottom: 0;
  }

  .footer__brand {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .footer__addresses {
    flex-wrap: wrap;
  }

  address {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px auto;
    text-align: center;
  }

  .legal {
    flex-wrap: wrap;
    padding-inline: 0;
    font-size: 12px;
  }

  .simple-main {
    width: calc(100% - 32px);
    padding: 56px 0 80px;
  }

  .legal-content h1,
  .legal-content h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .cookie-banner__actions,
  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-banner button,
  .cookie-modal button {
    flex: 1;
  }

  .cookie-modal {
    padding: 20px;
  }
}
