/* mirrordev.io configurations*/
:root {
  --mode-light: #ffffff;
  --mode-dark: #000000;
  --theme-primary: #1a73e8;
  --theme-secondary: #ff9800;
  --theme-gold: #9b9b86;
  --theme-silver: #c0c0c0;
  --theme-teal: #4fd1c5;
  --nvheight: 75px;
  --nvpadding: 100px;
  --ptheight: 51.189px;
  --ftheight: 75px;
  --mode-primary: #ffffff;
  --mode-primary-rgb: 255, 255, 255;
  --mode-secondary: #000000;
  --mode-secondary-rgb: 0, 0, 0;
  --app-mode: var(--mode-primary);
  --bg-primary: var(--mode-primary);
  --bg-secondary: var(--mode-secondary);
  --bg-gold: var(--theme-gold);
  --bg-silver: var(--theme-silver);
  --bg-teal: var(--theme-teal);
  --text-primary: var(--mode-primary);
  --svg-primary: var(--mode-primary);
  --shadow-primary: var(--mode-secondary);
  --shadow-primary-rgb: var(--mode-secondary-rgb);
  --text-secondary: var(--mode-secondary);
  --svg-secondary: var(--mode-secondary);
  --shadow-secondary: var(--mode-primary);
  --shadow-secondary-rgb: var(--mode-primary-rgb);
  --text-gold: var(--theme-gold);
  --shadow-teal: var(--bg-teal);
}

.footer {
  z-index: 9998;
  box-shadow: 0 -3px 2px rgba(0, 0, 0, 0.4);
}

.footer-container {
  position: fixed;
  display: flex;
  bottom: 0px;
  height: 75px;
  width: 100%;
  padding: 0%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 75%;
  background-blend-mode: hard-light;
  background-color: #5b6994;
}

.footer-content {
  display: flex;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  margin-left: 0%;
  margin-right: 0%;
  text-shadow: var(--shadow-teal) 0px 2px 10px;
}

.hauto {
  height: auto;
}

.mhauto {
  min-height: auto;
}

.hfit {
  height: fit-content;
}

.h100 {
  height: 100%;
}

.h100vh {
  height: 100vh;
}

.h50 {
  height: 50%;
}

.h33 {
  height: 33%;
}

.mh100 {
  min-height: 100%;
}

.mh100app {
  min-height: calc(100vh - var(--nvheight) - var(--ptheight) - var(--ftheight));
}

.h100app {
  height: calc(100vh - var(--nvheight) - var(--ptheight) - var(--ftheight));
}

.mh100ftr {
  min-height: calc(100vh - var(--ftheight));
}

.wauto {
  width: auto;
}

.wfit {
  width: fit-content;
}

.w100 {
  width: 100%;
}

.w100vw {
  width: 100vw;
}

.w15 {
  width: 15%;
}

.w33 {
  width: 33%;
}

.w50 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w60 {
  width: 60%;
}

.w75 {
  width: 75%;
}

.w77 {
  width: 77%;
}

.w85 {
  width: 85%;
}

.mxw50 {
  max-width: 50%;
}

.mxw60 {
  max-width: 60%;
}

.mxw85 {
  max-width: 85%;
}

.mw100 {
  min-width: 100%;
}

.mw300px {
  min-width: 300px;
}

.bg-gold {
  background: #9b9b86;
}

.bg-gstgradientOld {
  background: linear-gradient(to bottom, #9b9b86 0%, #cacaca 30%, #c0c0c0 80%, #99d2cc 100%);
}

.bg-gstgradient {
  background: linear-gradient(to bottom, #9B9B86 0%, #9B9B86 5%, #c0c0c0 40%, #c0c0c0 80%, #4fd1c5 100%);
}

.bg-radial {
  background: radial-gradient(circle, rgba(var(--shadow-primary-rgb), 0.05) 0%, rgba(var(--shadow-primary-rgb), 0.3) 40%, rgba(var(--shadow-primary-rgb), 0.05) 100%);
}

.bg-tint {
  background: rgba(var(--shadow-primary-rgb), 0.13);
}

.bg-linear {
  background: linear-gradient(to top, rgba(var(--shadow-primary-rgb), 0.5) 13%, rgba(var(--shadow-primary-rgb), 0) 100%);
}

.bg-blur {
  backdrop-filter: blur(12px);
}

.bg-white {
  background: white;
}

.bg-position {
  background-position: center;
}

.bg-size {
  background-size: cover;
}

.blend-multiply {
  background-blend-mode: multiply;
}

.block {
  display: block;
}

.bx-shadow {
  box-shadow: var(--shadow-primary) 0px 0px 5px;
}

.bx-shadow-2 {
  box-shadow: var(--shadow-primary) 0px 2px 15px;
}

.display-none {
  display: none;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow-1 {
  flex-grow: 1;
}

.align-start {
  align-items: start;
}

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

.align-end {
  align-items: end;
}

.justify-left {
  justify-content: left;
}

.justify-center {
  justify-content: center;
}

.justify-right {
  justify-content: right;
}

.space-evenly {
  align-content: space-evenly;
}

.br-50px {
  border-radius: 50px;
}

.br-500px {
  border-radius: 500px;
}

.br-5000px {
  border-radius: 5000px;
}

.m-none {
  margin: 0px;
}

.ml-auto {
  margin-left: auto;
}

.ml-5 {
  margin-left: 5%;
}

.ml-10 {
  margin-left: 10%;
}

.ml-15 {
  margin-left: 15%;
}

.mr-auto {
  margin-right: auto;
}

.mr-5 {
  margin-right: 5%;
}

.mr-10 {
  margin-right: 10%;
}

.mr-15 {
  margin-right: 15%;
}

.mt-navbread {
  margin-top: calc(var(--nvheight) + var(--ptheight));
}

.mt-3 {
  margin-top: 3%;
}

.mt-50px {
  margin-top: 50px;
}

.mb-8px {
  margin-bottom: 8px;
}

.mb-25px {
  margin-bottom: 25px;
}

.mb-50px {
  margin-bottom: 50px;
}

.p-none {
  padding: 0px;
}

.p-8px {
  padding: 8px;
}

.p-5px-15px {
  padding: 5px 15px;
}

.pl-10px {
  padding-left: 10px;
}

.pr-10px {
  padding-right: 10px;
}

.pt-0px {
  padding-top: 0px;
}

.pt-10px {
  padding-top: 10px;
}

.pt-navbread {
  margin-top: calc(var(--nvheight) + var(--ptheight));
}

.pb-0px {
  padding-bottom: 0px;
}

.footer-padding {
  padding-bottom: 75px;
}

.container-padding {
  padding: 8px;
}

.container-margin {
  margin: 8px;
}

.content-padding {
  padding: 20px;
}

.content-margin {
  margin: 20px;
}

.section-padding {
  padding: 3%;
}

.section-margin {
  margin: 3%;
}

.section-padding-6 {
  padding: 6%;
}

.section-margin-6 {
  margin: 6%;
}

.app-mode {
  color: var(--app-mode);
}

.theme-primary {
  color: var(--theme-primary);
}

.theme-secondary {
  color: var(--theme-secondary);
}

.bg-primary {
  background-color: var(--bg-primary);
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

.link-primary {
  color: var(--theme-secondary);
}

.link-primary-hover {
  color: var(--mode-primary);
}

.link-primary-bg {
  background-color: var(--mode-primary);
}

.link-primary-bg-hover {
  background-color: var(--theme-secondary);
}

.text-primary {
  color: var(--text-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-gold {
  color: var(--text-gold);
}

.svg-primary {
  fill: var(--svg-primary);
}

.shadow-primary {
  color: var(--shadow-primary);
}

.shadow-secondary {
  color: var(--shadow-secondary);
}

.pointer {
  cursor: pointer;
}

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

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

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

.text-shadow-0px {
  text-shadow: var(--shadow-primary) 0px 0px 0px;
}

.text-shadow-3px {
  text-shadow: var(--shadow-primary) 0px 2px 3px;
}

.text-shadow-teal-3px {
  text-shadow: var(--shadow-teal) 0px 0px 3px;
}

.text-shadow-10px {
  text-shadow: var(--shadow-primary) 0px 2px 10px;
}

.bg-shadow-30 {
  background: rgba(var(--shadow-primary-rgb), 0.33);
}

.fs-30px {
  font-size: 30px;
}

.fs-28px {
  font-size: 28px;
}

.fs-26px {
  font-size: 26px;
}

.fs-24px {
  font-size: 24px;
}

.fs-22px {
  font-size: 22px;
}

.fs-20px {
  font-size: 20px;
}

.fs-18px {
  font-size: 18px;
}

.fs-16px {
  font-size: 16px;
}

.fs-14px {
  font-size: 14px;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.no-wrap {
  white-space: nowrap;
}

.decoration-none {
  text-decoration: none;
}

.ar-11 {
  aspect-ratio: 1;
}

.ar-169 {
  aspect-ratio: 1.7777777778;
}

.object-cover {
  object-fit: cover;
}

.header {
  display: block;
  position: fixed;
  top: 0px;
  min-height: 75px;
  width: 100%;
}

.logo-container {
  height: var(--ptheight);
  width: 187px;
  margin-left: 9px;
}

.full-page {
  min-height: calc(100vh - var(--nvheight) - var(--ptheight) - var(--ftheight));
}

.page-photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: color-burn;
  opacity: 1;
}

@media (max-width: 449px) {
  #closing-message {
    white-space: wrap;
  }
}
@media (min-width: 450px) {
  #closing-message {
    white-space: nowrap;
  }
}
@media (max-width: 699px) {
  .navbar {
    background-position: center 7%;
  }
  #navbar-horizontal {
    display: none;
  }
  #landing-services-1 {
    display: none !important;
  }
  #landing-services-2 {
    display: flex !important;
  }
  #landing-services-2.landing-section.img {
    width: 75%;
  }
  #landing-guarantee-1 {
    display: none !important;
  }
  #landing-guarantee-2 {
    display: flex !important;
  }
  #landing-guarantee-gears {
    width: 33% !important;
  }
  #landing-guarantee-documents {
    width: 33% !important;
  }
  #about-content-1 {
    display: none !important;
  }
  #about-content-2 {
    display: flex !important;
  }
  #mission-content-1 {
    display: none !important;
  }
  #mission-content-2 {
    display: flex !important;
  }
  #services-content-1 {
    display: none !important;
  }
  #services-content-2 {
    display: flex !important;
  }
}
@media (min-width: 700px) {
  .navbar {
    background-position: center 61%;
  }
  #navbar-horizontal {
    display: flex;
  }
  #landing-services-1 {
    display: flex !important;
    padding: 0px 15% !important;
  }
  #landing-services-1.landing-thirds.img {
    width: 33%;
  }
  #landing-services-2 {
    display: none !important;
  }
  #landing-guarantee-1 {
    display: flex !important;
    padding: 0px 15% !important;
  }
  #landing-guarantee-2 {
    display: none !important;
  }
  #about-content-1 {
    display: flex !important;
  }
  #about-content-2 {
    display: none !important;
  }
  #mission-content-1 {
    display: flex !important;
  }
  #mission-content-2 {
    display: none !important;
  }
  #services-content-1 {
    display: flex !important;
    padding: 0px 15% !important;
  }
  #services-content-2 {
    display: none !important;
  }
  .impression-photo {
    width: 66% !important;
  }
  .thirds-image {
    width: 55% !important;
  }
  .missionText {
    width: 33%;
  }
  .missionPhoto {
    display: none;
  }
  .missionPhotoDesktop {
    display: block;
  }
}
@media (max-width: 999px) {
  #navbar-horizontal {
    display: none;
  }
  #navbar-vertical {
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.65s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  #navbar-vertical.open {
    max-height: 296px;
    opacity: 1;
  }
  .navbar-toggler {
    display: flex;
  }
  .ImpressionPhotoDesktop {
    display: none !important;
  }
  .ImpressionPhoto {
    display: flex !important;
  }
}
@media (min-width: 1000px) {
  #navbar-horizontal {
    display: flex;
  }
  #navbar-vertical {
    display: none;
  }
  .navbar-toggler {
    display: none;
  }
  .ImpressionPhotoDesktop {
    display: flex !important;
  }
  .ImpressionPhoto {
    display: none !important;
  }
}
@media (min-width: 1500px) {
  #landing-services-1 {
    padding: 0px 20% !important;
  }
  #landing-guarantee-1 {
    padding: 0px 20% !important;
  }
  #services-content-1 {
    padding: 0px 20% !important;
  }
}
@media (min-width: 2000px) {
  #landing-services-1 {
    padding: 0px 25% !important;
  }
  #landing-guarantee-1 {
    padding: 0px 25% !important;
  }
  #services-content-1 {
    padding: 0px 25% !important;
  }
}
a {
  transition: background-color 0.4s ease;
}

a:hover {
  text-decoration: none;
}

.light-mode {
  --mode-primary: #ffffff;
  --mode-primary-rgb: 255, 255, 255;
  --mode-secondary: #000000;
  --mode-secondary-rgb: 0, 0, 0;
  --app-mode: var(--mode-primary);
}

.dark-mode {
  --mode-primary: #000000;
  --mode-primary-rgb: 0, 0, 0;
  --mode-secondary: #ffffff;
  --mode-secondary-rgb: 255, 255, 255;
  --app-mode: var(--mode-primary);
}

.siteTitle {
  font-size: 33px !important;
  text-shadow: 0px 2px 14px teal;
}

.skip-to-content a {
  padding: 10px 20px;
  position: absolute;
  top: -43px;
  left: 0px;
  color: #ffffff;
  border-radius: 2px;
  background: #742774;
  -webkit-transition: top 1s ease-out;
  transition: top 1s ease-out;
  z-index: 100;
  font-family: Segoe UI;
  font-size: 14px;
}

.skip-to-content a:focus {
  position: absolute;
  left: 0px;
  top: 0px;
  outline: none;
  color: #ffffff;
  -webkit-transition: top 0.1s ease-in;
  transition: top 0.1s ease-in;
}

.landing-page {
  min-height: calc(100vh - var(--ftheight));
  display: flex;
  flex-wrap: wrap;
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
}

#front-page {
  padding-top: var(--nvheight);
}

.landing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.landing-impression {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-left: 5%;
  margin-right: 5%;
}

.impression-message {
  min-width: 300px;
  width: 33%;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  flex-direction: column;
  text-align: center;
  font-weight: 300;
  padding: 8px 5%;
}

.impression-heading {
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  padding: 5px 15px;
  text-align: center;
  text-shadow: var(--shadow-primary) 0px 2px 3px;
  font-size: 30px;
  font-weight: 300;
  color: var(--text-primary);
}

.impression-subheading {
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  padding: 5px 15px;
  text-align: center;
  text-shadow: var(--shadow-primary) 0px 2px 3px;
  font-size: 22px;
  font-weight: 300;
  color: var(--text-primary);
}

.impression-description {
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  padding: 5px 15px;
  text-align: center;
  text-shadow: var(--shadow-primary) 0px 2px 3px;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-primary);
}

.impression-photo {
  height: auto;
  width: 77%;
  box-shadow: var(--shadow-primary) 0px 0px 5px;
  aspect-ratio: 1.7777777778;
}

.landing-action {
  width: 100%;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.action-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 15px;
  text-shadow: var(--shadow-primary) 0px 2px 10px;
  font-weight: 300;
  color: var(--text-primary);
  height: 85px;
}

.action-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
  text-shadow: var(--shadow-primary) 0px 2px 10px;
  fill: var(--svg-primary);
  height: 75%;
}

.landing-content {
  min-width: 300px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}

.landing-services-2.landing-section {
  padding: 6% !important;
}

.landing-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.section-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 5px 15px;
  color: var(--theme-secondary);
  background-color: var(--mode-primary);
  font-size: 14px;
  text-align: center;
}

.section-link:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 5px 15px;
  color: var(--mode-primary);
  background-color: var(--theme-secondary);
  font-size: 14px;
  text-align: center;
}

.section-image {
  box-shadow: var(--shadow-primary) 0px 0px 5px;
  border-radius: 500px;
  aspect-ratio: 1;
  object-fit: cover;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 26px;
  text-align: center;
  text-shadow: var(--shadow-primary) 0px 2px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

.section-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 20px;
  text-shadow: var(--shadow-primary) 0px 2px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

.section-description {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 18px;
  text-shadow: var(--shadow-primary) 0px 2px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

.landing-thirds {
  display: flex;
  flex-direction: column;
  width: 33%;
  align-items: center;
  justify-content: center;
  padding: 3%;
  text-align: center;
}

.thirds-image {
  width: 55%;
  display: flex;
  box-shadow: var(--shadow-primary) 0px 0px 5px;
  border-radius: 500px;
  object-fit: cover;
  aspect-ratio: 1;
}

.thirds-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 20px;
  text-align: center;
  text-shadow: var(--shadow-primary) 0px 2px 10px;
  color: var(--text-primary);
  font-weight: 300;
}

.thirds-description {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 16px;
  text-align: center;
  text-shadow: var(--shadow-primary) 0px 2px 10px;
  color: var(--text-primary);
  font-weight: 300;
}

.landing-subsection {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}

.main-page {
  min-height: calc(100vh - var(--ftheight));
  display: flex;
  flex-wrap: wrap;
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
}

.main-container {
  height: 100vh;
  min-height: auto;
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(to bottom, #9B9B86 0%, #9B9B86 5%, #c0c0c0 40%, #c0c0c0 80%, #4fd1c5 100%);
  margin: 0px;
  padding: 0px;
}

.main-impression {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-left: 5%;
  margin-right: 5%;
}

.main-action {
  width: 100%;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-content {
  min-width: 300px;
  height: calc(100vh - var(--nvheight) - var(--ptheight) - var(--ftheight));
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  margin-top: calc(var(--nvheight) + var(--ptheight));
}

.main-services-2.main-section {
  padding: 6% !important;
}

.main-section {
  display: flex;
  flex-direction: column;
  min-height: auto;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 26px;
  text-align: center;
  text-shadow: var(--shadow-teal) 0px 0px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

.main-section-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 20px;
  text-shadow: var(--shadow-teal) 0px 0px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

.main-section-description {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 18px;
  text-align: center;
  text-shadow: var(--shadow-teal) 0px 0px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

.main-thirds-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 26px;
  text-align: center;
  text-shadow: var(--shadow-teal) 0px 0px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

.main-thirds-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 18px;
  text-align: center;
  text-shadow: var(--shadow-teal) 0px 0px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

.main-thirds-description {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 18px;
  text-align: center;
  text-shadow: var(--shadow-teal) 0px 0px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

.services-page {
  min-height: calc(100vh - var(--nvheight) - var(--ptheight) - var(--ftheight));
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(to bottom, #9B9B86 0%, #9B9B86 5%, #c0c0c0 40%, #c0c0c0 80%, #4fd1c5 100%);
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
}

.services-container {
  min-height: auto;
  display: flex;
  flex-wrap: wrap;
  margin: 0px;
  padding: 0px;
}

.services-impression {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-left: 5%;
  margin-right: 5%;
}

.services-action {
  width: 100%;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services-content {
  min-width: 300px;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  margin-top: calc(var(--nvheight) + var(--ptheight));
}

.services-services-2.services-section {
  padding: 6% !important;
}

.services-section {
  display: flex;
  flex-direction: column;
  min-height: auto;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-section-description {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 18px;
  text-align: center;
  text-shadow: var(--shadow-primary) 0px 0px 0px;
  color: var(--text-secondary);
  font-weight: 300;
}

.services-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 26px;
  text-align: center;
  text-shadow: var(--shadow-primary) 0px 2px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

.services-section-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 20px;
  text-shadow: var(--shadow-primary) 0px 2px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

.services-section-description {
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  font-size: 18px;
  text-shadow: var(--shadow-primary) 0px 2px 3px;
  color: var(--text-primary);
  font-weight: 300;
}

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