* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

body,
input::placeholder,
textarea::placeholder {
  font-family: "Afacad Flux", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

body {
  background-color: #f5f5f7;
  color: #181818;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 1rem;
  z-index: 2;
  background-color: #f5f5f7;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
header img {
  height: 4rem;
}

@media screen and (max-width: 480px) {
  main {
    padding: 80px 1rem 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  main {
    padding: 80px 3rem 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  main {
    padding: 80px 5rem 0;
  }
}
@media screen and (min-width: 1280px) {
  main {
    padding: 80px 7rem 0;
  }
}

h2 {
  font-size: 2rem;
  color: #0e81a9;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

em {
  text-decoration: underline;
  text-decoration-color: #0e81a9;
  text-underline-offset: 3px;
}

@media screen and (min-width: 638px) {
  br.mobile-only {
    display: none;
  }
}

section#intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 525px;
  min-height: fit-content;
}
section#intro h1 {
  font-size: 2.5rem;
}
section#intro p {
  font-size: 1.25rem;
}
@media screen and (max-width: 480px) {
  section#intro {
    height: calc(100dvh - 80px - 0.8 * (80vw - 2rem));
    max-height: calc(70dvh - 80px);
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#intro {
    height: calc(100dvh - 80px - 0.8 * (80vw - 2rem));
    max-height: calc(70dvh - 80px);
    margin: 0 auto;
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#intro {
    height: calc(100dvh - 80px - 0.8 * (80vw - 2rem));
    max-height: calc(70dvh - 80px);
    width: 525px;
    margin: 0 auto;
    padding: 4rem 0 6rem;
  }
}
@media screen and (min-width: 1280px) {
  section#intro {
    height: calc(100dvh - 80px - 0.8 * (80vw - 2rem));
    max-height: calc(70dvh - 80px);
    width: 630px;
    margin: 0 auto;
    padding: 4rem 0 6rem;
    max-width: none;
  }
  section#intro h1 {
    font-size: 3rem;
  }
  section#intro p {
    font-size: 1.85rem;
  }
}
section#intro .image-miniature {
  position: relative;
  top: -2.5rem;
  margin-left: auto;
  height: 2.5rem;
  overflow: hidden;
  border-radius: 1.25rem;
  width: calc(100% - 14rem);
  margin-bottom: -2rem;
  background-image: url("/images/miniature.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 638px) {
  section#intro .image-miniature {
    position: static;
    margin: 0 auto 1rem;
  }
}
@media screen and (min-width: 1280px) {
  section#intro .image-miniature {
    height: 3rem;
    width: calc(100% - 15rem);
    border-radius: 1.5rem;
    top: -7rem;
  }
}

@media screen and (max-width: 480px) {
  section#slider {
    margin: 0 -1rem 3rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#slider {
    margin: 0 -3rem 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#slider {
    margin: 0 -5rem 5rem;
  }
}
@media screen and (min-width: 1280px) {
  section#slider {
    margin: 0 -7rem 5rem;
  }
}
section#slider ul.slider-container {
  display: flex;
  height: 75dvh;
  gap: 1rem;
  align-items: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
section#slider ul.slider-container.no-transition {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
section#slider ul.slider-container:not(.dragging) {
  transition: 100ms;
}
section#slider ul.slider-container.dragging .slider-picture {
  cursor: grab;
  user-select: none;
}
section#slider ul.slider-container::-webkit-scrollbar {
  display: none;
}
section#slider ul.slider-container .slider-picture {
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: center;
  list-style: none;
  overflow: hidden;
  min-width: calc(60vw - 2rem);
  height: 100%;
}
section#slider ul.slider-container .slider-picture img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

section#carousel {
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  section#carousel {
    margin: 0 -1rem;
    background: linear-gradient(to bottom, #f5f5f7 125px, #e3e4e2 125px);
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#carousel {
    margin: 0 -3rem;
    background: linear-gradient(to bottom, #f5f5f7 125px, #e3e4e2 125px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#carousel {
    margin: 0 -5rem;
    background: linear-gradient(to bottom, #f5f5f7 125px, #e3e4e2 125px);
  }
}
@media screen and (min-width: 1280px) {
  section#carousel {
    margin: 0 -7rem;
    background: linear-gradient(to bottom, #f5f5f7 125px, #e3e4e2 125px);
  }
}
section#carousel .carousel-container {
  display: flex;
}
@media screen and (max-width: 1193px) {
  section#carousel .carousel-container {
    overflow-x: auto;
    cursor: grab;
    user-select: none;
  }
}
@media screen and (min-width: 1194px) {
  section#carousel .carousel-container {
    justify-content: center;
  }
}
section#carousel .carousel-container::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 480px) {
  section#carousel .carousel-container {
    gap: 1rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#carousel .carousel-container {
    gap: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#carousel .carousel-container {
    gap: 2rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1280px) {
  section#carousel .carousel-container {
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
section#carousel .carousel-container .carousel-slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 250px;
}
@media screen and (max-width: 480px) {
  section#carousel .carousel-container .carousel-slide:first-of-type {
    margin-left: 1rem;
  }
  section#carousel .carousel-container .carousel-slide:last-of-type {
    margin-right: 1rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#carousel .carousel-container .carousel-slide:first-of-type {
    margin-left: 3rem;
  }
  section#carousel .carousel-container .carousel-slide:last-of-type {
    margin-right: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#carousel .carousel-container .carousel-slide:first-of-type {
    margin-left: 5rem;
  }
  section#carousel .carousel-container .carousel-slide:last-of-type {
    margin-right: 5rem;
  }
}
section#carousel .carousel-container .carousel-slide .carousel-picture {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  scroll-snap-align: center;
  flex-shrink: 0;
  width: calc(80vw - 2rem);
  height: calc(80vw - 2rem);
  max-width: 250px;
  max-height: 250px;
  border-radius: 1rem;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  overflow: hidden;
  background-image: url("/images/carousel/image-01.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
section#carousel .carousel-container .carousel-slide .description {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  margin-top: -1rem;
  padding: 1.5rem 1rem 1rem;
  background-color: #f5f5f7;
  border-radius: 0 0 1rem 1rem;
}
section#carousel .carousel-container .carousel-slide .description h3 {
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

section#about {
  background-color: #e3e4e2;
}
section#about .section-content {
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  section#about .section-content {
    max-width: 1096px;
  }
}
section#about em {
  font-size: 1.5rem;
}
section#about p {
  font-size: 1.25rem;
  margin-top: 1rem;
}
@media screen and (max-width: 480px) {
  section#about {
    margin: 0 -1rem;
    padding: 2rem 1rem 4rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#about {
    margin: 0 -3rem;
    padding: 2rem 3rem 4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#about {
    margin: 0 -5rem;
    padding: 2rem 5rem 4rem;
  }
  section#about .section-content {
    width: 532px;
  }
}
@media screen and (min-width: 1280px) {
  section#about {
    margin: 0 -7rem;
    padding: 2rem 7rem 4rem;
  }
  section#about .section-content {
    width: 532px;
  }
  section#about em {
    font-size: 1.75rem;
  }
  section#about p {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

section#services {
  padding: 2rem 0 2rem;
}
section#services strong {
  display: block;
  font-size: 1.5rem;
}
@media screen and (max-width: 480px) {
  section#services strong {
    margin-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#services strong {
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#services strong {
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 1280px) {
  section#services strong {
    margin-bottom: 0.5rem;
  }
}
section#services ol {
  display: grid;
  row-gap: 2rem;
  column-gap: 2rem;
  margin: 0 auto;
}
section#services ol + * {
  margin-top: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#services ol {
    grid-template-columns: 1fr 1fr;
    align-content: stretch;
    max-width: 715px;
  }
}
@media screen and (min-width: 1280px) {
  section#services ol {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-content: stretch;
  }
}
section#services li {
  font-size: 1.25rem;
  list-style-type: none;
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#services li {
    padding-bottom: 1.5rem;
  }
  section#services li p {
    background-color: #e3e4e2;
    border-radius: 1rem;
    padding: 1.5rem 1rem 1rem;
    margin-top: -1.5rem;
    height: 100%;
  }
}
@media screen and (min-width: 1280px) {
  section#services li {
    padding-bottom: 1.5rem;
  }
  section#services li p {
    background-color: #e3e4e2;
    border-radius: 1rem;
    padding: 1.5rem 1rem 1rem;
    margin-top: -1.5rem;
    height: 100%;
  }
}
section#services li .item-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#services li .item-header {
    margin-left: 1rem;
  }
}
@media screen and (min-width: 1280px) {
  section#services li .item-header {
    margin-left: 1rem;
  }
}
section#services li .item-header .separator {
  flex: 1;
  height: 2px;
  background-color: #0e81a9;
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#services li .item-header .separator {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  section#services li .item-header .separator {
    display: none;
  }
}
section#services li .marker {
  font-weight: bold;
  background-color: #0e81a9;
  color: #f0f0f0;
  border-radius: 1.25rem;
  padding: 0 1rem;
}

section#portfolio {
  padding-bottom: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  section#portfolio {
    margin: 0 -1rem;
  }
  section#portfolio h2 {
    margin-left: 1rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#portfolio {
    margin: 0 -3rem;
  }
  section#portfolio h2 {
    margin-left: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#portfolio {
    margin: 0 -5rem;
  }
  section#portfolio h2 {
    margin-left: 5rem;
  }
}
@media screen and (min-width: 1280px) {
  section#portfolio {
    margin: 0 -7rem;
  }
  section#portfolio h2 {
    margin-left: 7rem;
  }
}
section#portfolio .portfolio-container {
  display: flex;
  overflow-x: auto;
  cursor: grab;
  user-select: none;
}
section#portfolio .portfolio-container::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 480px) {
  section#portfolio .portfolio-container {
    gap: 1rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#portfolio .portfolio-container {
    gap: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#portfolio .portfolio-container {
    gap: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  section#portfolio .portfolio-container {
    gap: 2rem;
  }
}
section#portfolio .portfolio-container .portfolio-picture {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background-image: url("/images/portfolio/image-01.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: calc(80vw - 2rem);
  height: calc(80vw - 2rem);
  max-width: 250px;
  max-height: 250px;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  section#portfolio .portfolio-container .portfolio-picture:first-of-type {
    margin-left: 1rem;
  }
  section#portfolio .portfolio-container .portfolio-picture:last-of-type {
    margin-right: 1rem;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#portfolio .portfolio-container .portfolio-picture:first-of-type {
    margin-left: 3rem;
  }
  section#portfolio .portfolio-container .portfolio-picture:last-of-type {
    margin-right: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#portfolio .portfolio-container .portfolio-picture:first-of-type {
    margin-left: 5rem;
  }
  section#portfolio .portfolio-container .portfolio-picture:last-of-type {
    margin-right: 5rem;
  }
}
section#portfolio .portfolio-container .portfolio-picture > img {
  max-height: 100%;
  object-fit: contain;
}
section#portfolio .portfolio-container .portfolio-picture .zoom-icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem;
  padding: 0.5rem;
  background-color: rgba(14, 129, 169, 0.9);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 2.5rem;
  cursor: pointer;
}
section#portfolio .portfolio-container .portfolio-picture .zoom-icon img {
  width: 2rem;
  height: 2rem;
}

section#reviews {
  padding-bottom: 2rem;
}
section#reviews .reviews-container {
  max-width: 1193px;
  margin: 0 auto;
}
section#reviews .customer-review {
  padding: 1rem;
  background-color: #e3e4e2;
  border-radius: 1rem;
  font-size: 1.25rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
section#reviews .customer-review + div {
  margin-top: 1.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#reviews .customer-review {
    width: 80%;
  }
  section#reviews .customer-review:nth-of-type(even) {
    margin-left: auto;
  }
}
@media screen and (min-width: 1280px) {
  section#reviews .customer-review {
    width: 80%;
  }
  section#reviews .customer-review:nth-of-type(even) {
    margin-left: auto;
  }
}
section#reviews .customer-review strong {
  color: #0e81a9;
}

section#contact {
  display: flex;
  flex-direction: column;
  color: #f0f0f0;
  background-color: #0e81a9;
}
section#contact h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 480px) {
  section#contact h3 {
    width: 100%;
    max-width: 600px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#contact h3 {
    width: 100%;
    max-width: 600px;
  }
}
@media screen and (max-width: 480px) {
  section#contact {
    margin: 1.5rem -1rem 0;
    padding: 3rem 1rem 2rem;
    align-items: stretch;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#contact {
    margin: 1.5rem -3rem 0;
    padding: 3rem 3rem 2rem;
    align-items: stretch;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#contact {
    margin: 1.5rem -5rem 0;
    padding: 3rem 5rem 2rem;
    align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  section#contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10vw;
    margin: 1.5rem -7rem 0;
    padding: 3rem 7rem 2rem;
  }
  section#contact .subsection:first-of-type {
    margin-left: auto;
  }
}
section#contact #form-status {
  display: none;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5rem;
}
section#contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}
section#contact form input {
  width: 100%;
  height: 2.5rem;
  padding: 0 0.75rem;
  color: #f0f0f0;
  background-color: transparent;
  border: 2px solid #f0f0f0;
  border-radius: 0.9rem;
}
section#contact form input[type=submit] {
  color: #181818;
  background-color: #f0f0f0;
  padding: 0.6rem 0;
  max-width: 265px;
  margin: 0 auto;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  border: none;
  border-radius: 2.2rem;
  cursor: pointer;
}
section#contact form textarea {
  width: 100%;
  height: 10rem;
  padding: 0.7rem 0.5rem;
  color: white;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #f0f0f0;
  border-radius: 1rem;
  box-sizing: border-box;
  resize: none;
}
section#contact form input::placeholder,
section#contact form textarea::placeholder {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
}
section#contact .subsection-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-weight: bold;
  margin: 3rem 0 2rem;
  text-align: center;
  width: 100%;
  max-width: 600px;
}
section#contact .subsection-title .separator {
  flex: 1;
  height: 2px;
  background-color: #f0f0f0;
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  section#contact .subsection-title .separator {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  section#contact .informations {
    width: 100%;
    max-width: 600px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  section#contact .informations {
    width: 100%;
    max-width: 600px;
  }
}
section#contact .informations li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
section#contact .informations li + li {
  padding-top: 1rem;
}
section#contact .informations li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f0f0f0;
  text-decoration: none;
}
section#contact .icon {
  color: #0e81a9;
  background-color: #f0f0f0;
  border-radius: 50%;
  width: 2.5rem;
  padding: 0.5rem;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #0e81a9;
}
footer small {
  font-size: 1rem;
  color: #f0f0f0;
  text-align: center;
}

dialog[open] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  border: none;
  margin: auto auto;
  overflow: hidden;
  scrollbar-gutter: stable;
  background: transparent;
}
dialog[open] button {
  display: flex;
  justify-content: center;
  align-items: center;
  float: right;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
dialog[open] button img {
  width: 3rem;
  height: 3rem;
}
dialog[open] .image-container {
  overflow: scroll hidden;
  text-align: center;
  max-width: fit-content;
}
dialog[open] .image-container img {
  max-height: 80dvh;
  border-radius: 1rem;
}
dialog[open] ::-webkit-scrollbar {
  height: 0.5rem;
}
dialog[open] ::-webkit-scrollbar-thumb {
  background: #f5f5f7;
  border-radius: 0.5rem;
  margin-left: 1rem;
}
dialog[open] ::-webkit-scrollbar-track {
  padding-left: 2rem;
  background: transparent;
}

::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

a.floating-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0e81a9;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
a.floating-button img {
  width: 3rem;
}

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