*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  margin: 0;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-col-v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flex-col-v-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.flex-col-v-bot {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.flex-col-h-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.flex-col-h-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.flex-col-h-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex-row-v-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flex-row-v-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.flex-row-v-bot {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.flex-row-h-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.flex-row-h-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.flex-row-h-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
/* custom */
.space-evenly {
  justify-content: space-evenly;
}
.space-between {
  justify-content: space-between;
}
@font-face {
  font-family: "DM";
  src: url("../fonts/DMSans-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  src: url("../fonts/MaterialSymbolsOutlined.woff2") format("woffs");
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}
.shadow-level-1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.shadow-level-2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.shadow-level-3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
body {
  font-family: "DM";
}
.spacer {
  flex-grow: 1;
}
#body.removeTransitionDelay * {
  transition-delay: 0ms !important;
}
.bottom-menu {
  position: fixed;
  bottom: -1px;
  left: 0;
  width: 100%;
  background-color: #1f4457;
  padding: 0;
  justify-content: space-evenly;
  z-index: 1000;
  height: 86px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.bottom-menu .link {
  height: 100%;
  padding: 20px 20px;
  position: relative;
  text-decoration: none;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-menu .link .icon {
  display: inline-block;
  height: 40px;
  width: 40px;
}
.bottom-menu .link .g-icon {
  color: #ffffff;
  font-size: 36px;
}
.bottom-menu .link .icon-label {
  color: white;
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 0.65rem;
  text-align: center;
  text-decoration: none;
}
.bottom-menu .menu-button-spacer {
  width: calc(90px - 10px);
}
.bottom-menu .menu-button {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  background: #367696;
  position: absolute;
  bottom: calc(86px - 90px / 2 - 10px);
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.bottom-menu .menu-button .sub-menu {
  position: absolute;
  bottom: calc(90px + 20px);
  left: 0;
  transform: translateX(calc(-50% + 90px / 2));
  background: rgba(20, 44, 56, 0.8);
  padding: 30px 0;
  border-radius: 20px;
}
.bottom-menu .menu-button .sub-menu .link {
  padding: 20px 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.bottom-menu .menu-button .sub-menu .link .g-icon {
  margin-right: 20px;
}
.bottom-menu .menu-button .sub-menu .link .icon-label {
  text-align: left;
  font-size: 0.85rem;
}
.bottom-menu .menu-button .g-icon {
  color: #ffffff;
  font-size: 36px;
}
.bottom-menu .menu-button .icon-label {
  color: white;
  text-transform: uppercase;
  font-size: 0.65rem;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 1000px) {
  .bottom-menu {
    display: none;
  }
}
.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 900;
}
#body .bottom-menu {
  opacity: 0;
  transform: translateY(calc(86px + 45px));
  transition: opacity 300ms ease, transform 300ms ease;
  transition-delay: 100ms;
}
#body.animate .bottom-menu {
  opacity: 1;
  transform: translateY(0);
}
#body .bottom-menu .sub-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px) translateX(calc(-50% + 90px / 2));
  transition: opacity 250ms ease, transform 250ms ease;
}
#body .bottom-menu .sub-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) translateX(calc(-50% + 90px / 2));
}
#body .overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
#body .overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.top-menu {
  height: 130px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.top-menu .logo-link,
.top-menu .logo {
  height: 100%;
  padding: 16px;
}
.top-menu .nav {
  display: none;
  margin-right: 40px;
}
.top-menu .nav .link {
  text-decoration: none;
  margin-right: 36px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  padding: 15px 0;
  font-weight: bold;
}
.top-menu .nav .link::after {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 6px;
  background-color: #367696;
  content: "";
  border-radius: 10px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
}
.top-menu .nav .link.active::after {
  transform: translateY(0);
  opacity: 1;
  background-color: #1f4457;
}
.top-menu .nav .link:hover::after {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 1000px) {
  .top-menu .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.top-menu .social {
  padding-right: 12px;
  display: flex;
  flex-direction: row;
}
.top-menu .social .icon {
  height: 36px;
  margin-right: 24px;
}
#body .top-menu {
  transform: translateY(-130px);
  transition: transform 300ms ease;
  transition-delay: 100ms;
}
#body.animate .top-menu {
  transform: translateY(0);
}
#content {
  min-height: 100vh;
  width: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#content .background-image {
  min-height: 100vh;
  width: 100%;
  background-image: url("../img/background-2.webp");
  background-size: auto 100vh;
  background-repeat: no-repeat;
  background-position: center;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
#content .background-image .container {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 36px 36px;
  margin: 6px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
#content .background-image .g-icon {
  color: #d7bb7c;
}
#content .background-image .title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#content .background-image .title-container .title {
  text-align: center;
  display: flex;
  flex-direction: column;
}
#content .background-image .title-container .title .g-icon {
  font-size: 48px;
}
#content .background-image .title-container .title .text {
  margin: 12px 0 0 0;
}
#content .background-image .informations {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#content .background-image .informations .location {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#content .background-image .informations .location .g-icon {
  font-size: 36px;
}
#content .background-image .informations .location .link {
  text-decoration: none;
}
#content .background-image .informations .location .adress {
  margin: 0 0 0 24px;
  font-size: 24px;
  color: #ffffff;
  text-decoration: underline;
}
#content .background-image .informations .phone {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#content .background-image .informations .phone .g-icon {
  font-size: 36px;
}
#content .background-image .informations .phone .link {
  text-decoration: none;
}
#content .background-image .informations .phone .number {
  margin: 0 0 0 24px;
  font-size: 24px;
  color: #ffffff;
  text-decoration: underline;
}
#content .background-image .informations .rdv {
  margin: 36px 0 0 0;
  font-size: 24px;
  color: #ffffff;
}
#content .background-image .informations .rdv .color {
  color: #d7bb7c;
}
#content .background-image .services {
  margin-top: 36px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
#content .background-image .services #price-table .price {
  font-size: 24px;
  font-weight: bold;
}
#content .background-image .services #price-table .text {
  padding-left: 24px;
  font-size: 24px;
}
#body #content .background-image {
  opacity: 0;
  transition: opacity 1s ease;
  transition-delay: 200ms;
}
#body #content .background-image .container {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 300ms;
}
#body.animate #content .background-image {
  opacity: 1;
}
#body.animate #content .background-image .container {
  opacity: 1;
  transform: translateY(0);
}
