/* Applying theme colors */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
body[data-theme=light] {
  --color-default: #ffffff;
  --color-50: #f9fafb;
  --color-100: #f3f4f6;
  --color-200: #e5e7eb;
  --color-300: #d1d5db;
  --color-400: #9ca3af;
  --color-500: #6b7280;
  --color-600: #4b5563;
  --color-700: #374151;
  --color-800: #1f2937;
  --color-900: #111827;
  --color-950: #030712;
}

body[data-theme=dark] {
  --color-default: #030712;
  --color-50: #111827;
  --color-100: #1f2937;
  --color-200: #374151;
  --color-300: #4b5563;
  --color-400: #6b7280;
  --color-500: #9ca3af;
  --color-600: #d1d5db;
  --color-700: #e5e7eb;
  --color-800: #f3f4f6;
  --color-900: #f9fafb;
  --color-950: #ffffff;
}

/* Importing Fonts */
/* Importing Partials */
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
/* Reset */
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", serif;
  scroll-behavior: smooth;
}

/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
/* Typography */
.section-title {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: var(--color-600);
  text-align: center;
  background-color: var(--color-200);
  border-radius: 12px;
  padding: 0.25rem 1.25rem;
  width: fit-content;
  margin: 0 auto;
}

.section-description {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: var(--color-600);
  text-align: center;
  margin: 1.5rem 0 3rem 0;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  display: none;
}

.backdrop.open {
  display: block;
}

/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
::selection {
  color: var(--color-950);
}

/* Importing Components */
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */
/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
.site-header-container {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100dvw;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.site-header .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.site-header .title a {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-decoration: none;
  color: var(--color-900);
}

.navigation {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.navigation .head {
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  color: var(--color-600);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--color-900);
}
.nav-links::after {
  content: "";
  display: block;
  height: 1.5rem;
  width: 2px;
  background-color: var(--color-100);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 0.5rem;
}
.nav-actions .theme-toggle, .nav-actions #language-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  border-radius: 8px;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.nav-actions .theme-toggle:hover, .nav-actions #language-toggle:hover {
  background-color: var(--color-100);
}
.nav-actions .download-cv {
  background-color: var(--color-900);
  color: var(--color-50);
  padding: 0.375rem 1rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-decoration: none;
  text-wrap: nowrap;
  width: 100%;
  text-align: center;
}
.nav-actions .download-cv:hover {
  background-color: var(--color-700);
}

#menu-burger-icon, #close-button-icon {
  cursor: pointer;
}
#menu-burger-icon #close-button-icon, #close-button-icon #close-button-icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .navigation {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 300px;
    background-color: var(--color-default);
    z-index: 1001;
    transform: translateX(100%);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    box-shadow: 0 25px 25px 0 rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  .navigation.open {
    display: flex;
    transform: translateX(0);
  }
  .navigation .head {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 1rem 0;
  }
  .navigation .head h3 {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 2.25rem;
    color: var(--color-900);
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links::before {
    content: "";
    display: block;
    height: 2px;
    width: 100vw;
    background-color: var(--color-100);
  }
  .nav-links::after {
    height: 2px;
    width: 100vw;
  }
  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1.5rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .theme-toggle::before {
    content: "Switch Theme";
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-600);
  }
}
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
.hero {
  width: 100%;
  padding: 6rem 2rem;
  background-color: var(--color-default);
}
.hero .hero-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.hero .hero-content .left-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 65%;
}
.hero .hero-content .left-side h1 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.5rem;
  color: var(--color-600);
}
.hero .hero-content .left-side p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: var(--color-600);
}
.hero .hero-content .infos {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 2rem 0;
  color: var(--color-600);
}
.hero .hero-content .location img {
  margin-right: 5px;
}
.hero .status-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  vertical-align: middle;
}
.hero .status-container .status-icon {
  display: inline-block;
  width: 12.5px;
  height: 12.5px;
  background-color: #10b981;
  border-radius: 50%;
}
.hero .status-container .status-bubble {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #10b981;
  background-color: #10b981;
  border-radius: 50%;
  opacity: 0;
  animation: bubble 1.5s infinite;
}
.hero .social-links {
  display: flex;
  gap: 0.375rem;
}
.hero .social-links a {
  display: inline-block;
  text-decoration: none;
}
.hero .social-links a img {
  display: block;
  height: auto;
  padding: 0.375rem;
  border-radius: 8px;
  transition: background-color 0.3s;
}
.hero .social-links a img:hover {
  background-color: var(--color-100);
}
.hero .right-side {
  margin-right: 40px;
}
.hero .right-side .img-container {
  position: relative;
}
.hero .right-side .img-container img {
  display: block;
  position: relative;
  width: 17.5rem;
  max-width: 100%;
  height: auto;
  border: solid 0.5rem var(--color-default);
  z-index: 2;
}
.hero .right-side .img-container::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -40px;
  bottom: -40px;
  width: 100%;
  background-color: var(--color-200);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero .hero-content {
    gap: 2rem;
  }
  .hero .hero-content .left-side h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3rem;
  }
  .hero .hero-content .right-side .img-container::before {
    top: 20px;
    right: -20px;
    bottom: -20px;
  }
}
@media screen and (max-width: 768px) {
  .hero .hero-content {
    flex-direction: column;
    gap: 2rem;
  }
  .hero .hero-content .left-side {
    order: 2 !important;
    max-width: 100%;
  }
  .hero .hero-content .left-side h1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.25rem;
  }
  .hero .hero-content .left-side p {
    font-weight: 400;
    line-height: 1.5rem;
  }
  .hero .hero-content .right-side {
    order: 1 !important;
    margin-right: 0;
    margin-bottom: 3rem;
    align-self: center;
  }
  .hero .hero-content .right-side .img-container {
    max-width: max-content;
  }
  .hero .hero-content .right-side .img-container img {
    min-width: 15rem;
    height: auto;
  }
  .hero .hero-content .right-side .img-container::before {
    top: 40px;
    left: -10px;
    bottom: -10px;
  }
  .hero .hero-content .right-side .img-container::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -10px;
    bottom: -10px;
    width: 100%;
    background-color: var(--color-200);
  }
}
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
.about {
  background-color: var(--color-50);
  width: 100%;
  padding: 6rem 2rem;
}
.about .about-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}
.about .about-content .left-side {
  position: relative;
}
.about .about-content .left-side .img-container {
  position: relative;
}
.about .about-content .left-side .img-container img {
  display: block;
  position: relative;
  width: 25rem;
  max-width: 100%;
  height: auto;
  border: solid 0.5rem var(--color-50);
  z-index: 2;
}
.about .about-content .left-side .img-container::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -40px;
  bottom: -40px;
  width: 100%;
  background-color: var(--color-200);
}
.about .about-content .right-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 50%;
}
.about .about-content .right-side h1 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.25rem;
  color: var(--color-600);
}
.about .about-content .right-side p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-600);
}
.about .about-content .right-side li {
  color: var(--color-600);
}

@media screen and (max-width: 1024px) {
  .about .about-content {
    flex-direction: column;
    align-items: center;
  }
  .about .about-content .left-side {
    order: 1 !important;
    margin-bottom: 3rem;
  }
  .about .about-content .left-side .img-container {
    max-width: max-content;
  }
  .about .about-content .left-side .img-container::before {
    top: 40px;
    left: -10px;
    bottom: -10px;
  }
  .about .about-content .left-side .img-container::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -10px;
    bottom: -10px;
    width: 100%;
    background-color: var(--color-200);
  }
  .about .about-content .right-side {
    order: 2 !important;
    max-width: 100%;
  }
  .about .about-content .right-side h1 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .about .about-content .right-side p {
    font-size: 1rem;
    font-weight: 400;
  }
}
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
.skills {
  width: 100%;
  padding: 6rem 2rem;
  background-color: var(--color-default);
}
.skills .technologies-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.skills .technologies-container .technology {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.skills .technologies-container .technology img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.skills .technologies-container .technology span {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: var(--color-600);
}

@media screen and (max-width: 768px) {
  .skills {
    padding: 4rem 2rem;
  }
  .skills .technologies-container {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 2rem;
  }
  .skills .technology img {
    width: 40px;
    height: 40px;
  }
  .skills .technology span {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
.experience {
  background-color: var(--color-50);
  width: 100%;
  padding: 6rem 2rem;
}
.experience .experiences {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.experience .experiences .experience-container {
  display: flex;
  justify-content: space-between;
  margin: 0 5rem;
  padding: 3rem;
  background-color: var(--color-default);
  border-radius: 12px;
  box-shadow: 0 4px 3px 0 rgba(0, 0, 0, 0.07);
}
.experience .experiences .experience-container .logo img {
  width: 100px;
}
.experience .experiences .experience-container .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 50%;
}
.experience .experiences .experience-container .content h1 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  color: var(--color-900);
}
.experience .experiences .experience-container .content ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.experience .experiences .experience-container .content ul li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: var(--color-600);
}
.experience .experiences .experience-container .periode {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: var(--color-700);
  width: 200px;
  text-align: right;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .experience .experiences .experience-container {
    margin: 0 2rem;
  }
  .experience .experiences .experience-container .content h1 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
  }
  .experience .experiences .experience-container .periode {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .experience .experiences .experience-container {
    flex-direction: column;
    margin: 0;
    padding: 2rem;
  }
  .experience .experiences .experience-container .logo {
    order: 1 !important;
  }
  .experience .experiences .experience-container .content {
    max-width: 100%;
    order: 3 !important;
  }
  .experience .experiences .experience-container .periode {
    margin: 1rem 0;
    order: 2 !important;
    text-align: left;
  }
}
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
.work {
  width: 100%;
  padding: 6rem 2rem;
  background-color: var(--color-default);
}
.work .works {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.work .works .work-container {
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 3px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.work .works .work-container .left-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  padding: 3rem;
  background-color: var(--color-200);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.work .works .work-container .left-side img {
  display: block;
  max-height: 360px;
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 12px;
}
.work .works .work-container .left-side img:hover {
  transform: scale(1.05);
}
.work .works .work-container .right-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  gap: 1.5rem;
  padding: 3rem;
  background-color: var(--color-50);
}
.work .works .work-container .right-side img {
  display: block;
  height: auto;
  padding: 0.375rem;
  border-radius: 8px;
  transition: background-color 0.3s;
}
.work .works .work-container .right-side img:hover {
  background-color: var(--color-100);
}
.work .works .work-container h1 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  color: var(--color-900);
}
.work .works .work-container p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: var(--color-600);
}
.work .works .work-container .technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.work .works .work-container .technologies span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-600);
  background-color: var(--color-200);
  padding: 0.25rem 1.25rem;
  border-radius: 12px;
}
.work .works .work-container:nth-child(2) .left-side {
  order: 2;
  border-radius: 0 12px 12px 0;
}
.work .works .work-container:nth-child(2) .right-side {
  order: 1;
  padding: 3rem;
}

@media screen and (max-width: 1024px) {
  .work .works .work-container {
    flex-direction: column;
  }
  .work .works .work-container .left-side,
  .work .works .work-container .right-side {
    width: 100%;
    padding: 2rem;
    border-radius: 0;
  }
  .work .works .work-container .left-side {
    order: 1 !important;
  }
  .work .works .work-container .left-side img {
    max-height: 240px;
  }
  .work .works .work-container .right-side {
    order: 2 !important;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .work {
    padding: 4rem 2rem;
  }
}
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
.testimonial {
  width: 100%;
  background-color: var(--color-50);
  padding: 6rem 2rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  box-shadow: 0 4px 3px 0 rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 3rem;
  background-color: var(--color-default);
  width: 100%;
}
.testimonial-container img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}
.testimonial-container p {
  text-align: start;
  text-wrap: wrap;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: var(--color-600);
}
.testimonial-container .author {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.testimonial-container .author span:first-of-type {
  margin-bottom: 0.25rem;
  color: var(--color-900);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}
.testimonial-container .author span:last-of-type {
  color: var(--color-600);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
}

@media screen and (max-width: 768px) {
  .testimonial {
    padding: 6rem 1rem;
  }
  .testimonial .testimonials {
    grid-template-columns: 1fr;
  }
  .testimonial .testimonial-container {
    padding: 1rem;
  }
  .testimonial .testimonial-container img {
    width: 50px;
    height: 50px;
  }
}
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
.contact {
  width: 100%;
  padding: 6rem 2rem;
  text-align: center;
  background-color: var(--color-default);
}
.contact .section-description p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.contact .contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .contact-content div {
  margin-bottom: 20px;
}
.contact .contact-content .contact-infos {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact .contact-content .contact-infos a {
  font-size: 2.25rem;
  color: var(--color-900);
  font-weight: 600;
  line-height: 2.5rem;
  text-decoration: none;
}
.contact .contact-content .contact-infos a:hover {
  color: var(--color-700);
}
.contact .contact-content .contact-icons {
  margin-top: 1rem;
}
.contact .contact-content .contact-icons a {
  text-decoration: none;
}
.contact .contact-content .contact-icons img {
  padding: 0.375rem;
  border-radius: 8px;
  transition: background-color 0.3s;
}
.contact .contact-content .contact-icons img:hover {
  background-color: var(--color-100);
}
.contact .contact-content > p {
  margin-top: 2rem;
  color: var(--color-600);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact .contact-content .section-description p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  .contact .contact-content .contact-infos a {
    font-size: 1.125rem;
    font-weight: 600;
  }
  .contact .contact-content > p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 3rem 1rem;
  }
  .contact .contact-content .section-description p {
    font-size: 1rem;
  }
  .contact .contact-content .contact-infos a {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
  }
  .contact .contact-content > p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
  }
}
/* Variables */
/* Colors */
/* Fonts */
/* Font Sizes */
/* Font Weights */
/* Line Heights */
/* Letter Spacing */
/* Shadows */
/* Shadows */
.site-footer {
  width: 100%;
  padding: 1.5rem;
  background-color: var(--color-50);
  text-align: center;
}
.site-footer p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: var(--color-600);
}
.site-footer a {
  color: var(--color-900);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

@keyframes bubble {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
    opacity: 0.15;
  }
  100% {
    opacity: 0;
  }
}

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