@charset "UTF-8";
/* Schriftarten */
@font-face {
  font-family: "Source Code Pro";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../../fonts/SourceCodePro-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../../fonts/Jost-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Jost";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(../../fonts/Jost-Italic-VariableFont_wght.ttf);
}
/** 1920px oder schmaler */
/** 1280px oder schmaler */
/** 1200px oder schmaler */
/** 992px oder schmaler */
/** 768px oder schmaler */
/** 576px oder schmaler */
/** 400px oder schmaler */
/** Breakpoints */
:root {
  --company-color-secondary: black;
}

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

html {
  font-size: 100%;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.0726125em;
  /** @media (min-width: 100em) {
      font-size: 133%;
  }

  @media (min-width: 150em) {
      font-size: 166%;
  }

  @media (min-width: 200em) {
      font-size: 200%;
  }
  */
}
@media (max-width: 25em) {
  html {
    font-size: 75%;
  }
}

input, select {
  font-family: inherit;
}

p {
  font-size: 1rem; /* Basis */
  line-height: 1.9375rem;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  font-weight: 300;
}

h3 {
  font-size: 1.618rem; /* Goldenes Verhältnis, erste Stufe */
  font-weight: 344;
  line-height: 3.13675rem;
}
@media (max-width: 36em) {
  h3 {
    font-size: 1.4rem;
  }
}

h2 {
  font-size: 2.618rem; /* Goldenes Verhältnis, zweite Stufe */
  font-weight: 557;
  line-height: 5.0739375rem;
}
@media (max-width: 36em) {
  h2 {
    font-size: 2.2rem;
  }
}

h1 {
  font-size: 4.236rem; /* Goldenes Verhältnis, dritte Stufe */
  font-weight: 900;
  line-height: 8.2108125rem;
}

h1, h2, h3, h4, h4, h6 {
  font-family: "Source Code Pro", monospace;
  letter-spacing: 0.0726125em;
  text-align: center;
}

.container {
  max-width: 75rem;
  margin: 0 1rem;
  padding: 2rem 2rem;
}
.container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 36em) {
  .container {
    padding: 0 1rem;
  }
}

.background-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5em;
  padding-bottom: 5em;
  width: 100%;
}

/* Grid für Bootstrap Icons */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  width: 100%;
  justify-items: center;
  align-items: center;
}

.grid-item {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.grid-item svg {
  width: 50px;
  height: 50px;
}

.grid-item p {
  font-size: 14px;
}

/*Scrollbares Accordion */
.accordion-scroll {
  max-height: 500px;
  overflow-y: auto;
}

.hero {
  position: relative;
  height: 100vh;
}

.hero__canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1; /* Das Canvas hinter den anderen Inhalten positionieren */
}

#canvasBackground {
  width: 100%;
  height: 100%;
}

.hero__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 4em);
}

.hero__content-logo-container {
  width: 0%;
  height: auto;
  text-align: center;
  opacity: 0;
  animation-name: logo-animation;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 5s;
}
@media (max-width: 62em) {
  .hero__content-logo-container {
    width: 0%;
    height: auto;
    animation: logo-animation-md 2s ease-in-out forwards;
    animation-delay: 5s;
  }
}

@keyframes logo-animation {
  0% {
    opacity: 0;
    width: 0%;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    width: 50%;
    filter: blur(0);
  }
}
@keyframes logo-animation-md {
  0% {
    opacity: 0;
    width: 0%;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    width: 66%;
    filter: blur(0);
  }
}
.hero__content-logo {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
}

.hero__content-title-container {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
}
@media (max-width: 62em) {
  .hero__content-title-container {
    font-size: 1.2em;
  }
}
@media (max-width: 36em) {
  .hero__content-title-container {
    font-size: 0.9em;
  }
}

.hero__content-title-1 {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  animation: typing 2s steps(25, end) 1;
  animation-fill-mode: forwards;
}
@media (max-width: 62em) {
  .hero__content-title-1 {
    font-size: 2.4em;
    line-height: 3em;
  }
}
@media (max-width: 36em) {
  .hero__content-title-1 {
    font-size: 2.3em;
    line-height: 2em;
  }
}
@media (max-width: 25em) {
  .hero__content-title-1 {
    font-size: 1.6em;
    line-height: 2em;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.hero__content-title-2 {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  animation: typing-timed 2s steps(25, end) 1;
  animation-fill-mode: forwards;
  animation-delay: 2.5s;
}
@media (max-width: 62em) {
  .hero__content-title-2 {
    font-size: 2.35em;
    line-height: 3em;
  }
}
@media (max-width: 36em) {
  .hero__content-title-2 {
    font-size: 2.3em;
    line-height: 2em;
  }
}
@media (max-width: 25em) {
  .hero__content-title-2 {
    font-size: 1.6em;
    line-height: 2em;
  }
}

@keyframes typing-timed {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.intro__background-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5em;
  padding-bottom: 5em;
  width: 100%;
  background-image: url("../images/circle-750-halfleft.svg"), url("../images/circle-750-half.svg");
  background-position: top left, bottom right;
  background-repeat: no-repeat, no-repeat;
  background-size: 50%, 50%;
}
@media (max-width: 75em) {
  .intro__background-container {
    background-size: 50%, 50%;
  }
}
@media (max-width: 62em) {
  .intro__background-container {
    background-size: 60%, 60%;
  }
}
@media (max-width: 48em) {
  .intro__background-container {
    background-size: 80%, 80%;
  }
}
@media (max-width: 36em) {
  .intro__background-container {
    background-size: 100%, 100%;
  }
}

.intro__heading {
  text-align: center;
}
@media (max-width: 25em) {
  .intro__heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 25em) {
  .intro__sub-heading {
    font-size: 1.25rem;
    text-align: center;
  }
}

.intro__content-container {
  max-width: 75rem;
  margin: 0 1rem;
  padding: 2rem 2rem;
  margin-top: 1em;
  background-color: white;
  border-radius: 0.25em;
  border-width: 0.1875em;
  border-style: solid;
  border-color: rgb(196, 200, 203);
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  -moz-column-rule: 0.1875em solid rgb(196, 200, 203);
       column-rule: 0.1875em solid rgb(196, 200, 203);
}
.intro__content-container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 36em) {
  .intro__content-container {
    padding: 0 1rem;
  }
}
@media (max-width: 48em) {
  .intro__content-container {
    -moz-column-count: 1;
         column-count: 1;
    text-align: left;
  }
}

.intro__list {
  padding-left: 2em;
}

.intro__list-item {
  padding-bottom: 1em;
  font-size: 1rem; /* Basis */
  line-height: 1.9375rem;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  font-weight: 300;
}

.services {
  position: relative;
}

.services__heading {
  text-align: center;
}
@media (max-width: 25em) {
  .services__heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 25em) {
  .services__sub-heading {
    font-size: 1.25rem;
    text-align: center;
  }
}

.services__background-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5em;
  padding-bottom: 5em;
  width: 100%;
}

.services__container {
  position: relative;
  max-width: 75em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 80em) {
  .services__container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.services__grid-container {
  margin-top: 1em;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(33.3333333333%, 1fr));
  gap: 0;
  border-radius: 0.25em;
  border-width: 0.1875em;
  border-style: solid;
  border-color: rgb(196, 200, 203);
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../../../images/hexagons-3143432_1920.webp);
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  filter: grayscale(1);
  will-change: filter;
  transition: filter 1s;
  /*@media (max-width: $breakpoint-lg) {
      grid-template-columns: repeat(4, minmax(math.div(100%, 4), 1fr));
  }*/
}
.services__grid-container:hover {
  filter: grayscale(0.5);
}
@media (max-width: 62em) {
  .services__grid-container {
    grid-template-columns: repeat(2, minmax(50%, 1fr));
  }
}
@media (max-width: 36em) {
  .services__grid-container {
    grid-template-columns: repeat(1, minmax(100%, 1fr));
  }
}

.services__grid-sheet {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  padding: 1.5em 0.25em;
  border: 0.1875em solid transparent;
}
.services__grid-sheet:hover {
  -webkit-backdrop-filter: blur(0.5em);
          backdrop-filter: blur(0.5em);
  border: 0.1875em solid white;
}
.services__grid-sheet:hover .services__grid-sheet-icon-container {
  transform: scale(1.15);
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.3);
  border-color: black;
  border-width: 0.3125em;
}
.services__grid-sheet:hover .services__grid-sheet-description {
  opacity: 1;
}
.services__grid-sheet:hover .services__grid-sheet-button {
  opacity: 1;
  pointer-events: auto;
}

.services__grid-sheet-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  width: 75px;
  -webkit-backdrop-filter: blur(1em);
          backdrop-filter: blur(1em);
  border-radius: 50%;
  border: 0.1875em solid rgb(196, 200, 203);
  margin: 0px auto 0.75rem auto;
  text-align: center;
  will-change: transform;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out, border-width 0.3s ease-in-out;
}

.services__grid-sheet-title {
  font-size: 1.25em;
  padding-top: 0.5em;
  padding-bottom: 1.5em;
}

.services__grid-sheet-description {
  text-align: center;
  font-style: italic;
  padding-top: 0.5em;
  padding-bottom: 2em;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.services__grid-sheet-button {
  display: block;
  opacity: 0;
  background-color: white;
  font-family: "Share Tech Mono", "Courier New", Courier, monospace;
  font-size: 1.25em;
  padding: 0.25em 0.5em;
  border: 0.1875rem solid rgb(196, 200, 203);
  border-radius: 10.5em;
  cursor: pointer;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.services__grid-sheet-button:hover {
  transform: scale(1.05);
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.3);
  border-color: black;
}

.services__modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: black;
}
.services__modal:target {
  display: flex;
}
.services__modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  animation-name: services__modal--fade-in;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
@supports ((-webkit-backdrop-filter: blur(1rem)) or (backdrop-filter: blur(1rem))) {
  .services__modal::before {
    -webkit-backdrop-filter: blur(0.3rem);
            backdrop-filter: blur(0.3rem);
    background-color: rgba(0, 0, 0, 0.3);
  }
}

@keyframes services__modal--fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.services-modal__canvas {
  position: absolute;
  opacity: 0.5;
}

.services__modal-card {
  position: relative;
  width: 50%;
  height: 50%;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
  border-radius: 0.25rem;
  padding: 1em 1em;
  background-color: white;
  box-shadow: 0 0 1rem black;
  animation-name: services__modal-card--fade-in;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
@media (max-width: 62em) {
  .services__modal-card {
    height: calc(80% - 1rem);
    width: calc(80% - 1rem);
    padding-left: 1rem;
  }
}
@media (max-width: 48em) {
  .services__modal-card {
    height: calc(95% - 1rem);
    width: calc(95% - 1rem);
    padding-left: 1rem;
  }
}

@keyframes services__modal-card--fade-in {
  0% {
    transform: translate(0, calc(-50vh - 50%));
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
  }
}
.services-modal__close {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  color: transparent;
  border-radius: 100000px;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
  background-image: linear-gradient(45deg, transparent 44%, rgb(0, 0, 0) 45%, rgb(0, 0, 0) 55%, transparent 56%), linear-gradient(-45deg, transparent 44%, rgb(0, 0, 0) 45%, rgb(0, 0, 0) 55%, transparent 56%);
}
.services-modal__close:hover {
  opacity: 0.8;
}

.services-modal__close-background {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  color: transparent;
  background-color: transparent;
}

.services__modal-content {
  display: initial;
  overflow-y: auto;
}

.services__modal-header {
  padding-bottom: 1em;
}

.services__modal-body {
  padding-top: 1em;
  height: 80%;
  overflow: auto;
}

.modal-toggle {
  display: none;
}
.modal-toggle:checked + .services__modal {
  display: flex;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.projects {
  position: relative;
}

.projects__background-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5em;
  padding-bottom: 5em;
  width: 100%;
}

.projects__heading {
  text-align: center;
}
@media (max-width: 25em) {
  .projects__heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 25em) {
  .projects__sub-heading {
    font-size: 1.25rem;
    text-align: center;
  }
}

.projects__container {
  max-width: 75rem;
  margin: 0 1rem;
  padding: 2rem 2rem;
  margin-top: 1em;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
.projects__container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 36em) {
  .projects__container {
    padding: 0 1rem;
  }
}
@media (max-width: 80em) {
  .projects__container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.projects__accordion-input {
  position: absolute;
  opacity: 0;
}

.projects__accordion-label {
  display: block;
  background-color: rgb(255, 255, 255);
  padding: 0.625rem;
  cursor: pointer;
  border: 0.1875rem solid rgb(196, 200, 203);
  border-radius: 10.5em;
  will-change: transform;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.projects__accordion-label::after {
  content: "▼";
  float: right;
}
.projects__accordion-label:hover {
  transform: scale(1.01);
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.3);
  border-color: black;
}

.projects__accordion-content {
  margin-bottom: 1em;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  padding: 0 1.25em;
  background-color: transparent;
}

.projects__accordion-input:checked + .projects__accordion-label {
  transform: scale(1.01);
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.3);
  border-color: black;
}
.projects__accordion-input:checked + .projects__accordion-label::after {
  content: "▲";
}

.projects__accordion-input:checked + .projects__accordion-label + .projects__accordion-content {
  height: 40.781em;
}
@media (max-width: 120em) {
  .projects__accordion-input:checked + .projects__accordion-label + .projects__accordion-content {
    height: 40.781em;
  }
}
@media (max-width: 80em) {
  .projects__accordion-input:checked + .projects__accordion-label + .projects__accordion-content {
    height: 39.656em;
  }
}
@media (max-width: 75em) {
  .projects__accordion-input:checked + .projects__accordion-label + .projects__accordion-content {
    height: 39.656em;
  }
}
@media (max-width: 62em) {
  .projects__accordion-input:checked + .projects__accordion-label + .projects__accordion-content {
    height: 25em;
  }
}
@media (max-width: 48em) {
  .projects__accordion-input:checked + .projects__accordion-label + .projects__accordion-content {
    height: 24em;
  }
}
@media (max-width: 36em) {
  .projects__accordion-input:checked + .projects__accordion-label + .projects__accordion-content {
    height: 17em;
  }
}
@media (max-width: 25em) {
  .projects__accordion-input:checked + .projects__accordion-label + .projects__accordion-content {
    height: 15em;
  }
}

.projects__accordion-picture-container {
  position: relative;
}
.projects__accordion-picture-container:hover .projects__accordion-description {
  top: 0;
}

.projects__accordion-picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects__accordion-description {
  position: absolute;
  top: -4.5em;
  transition: top 0.5s;
}

.projects__accordion-description-text {
  margin-top: 0.5em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 1em;
  padding-bottom: 1em;
  background-color: rgba(255, 255, 255, 0.75);
  color: Black;
  text-shadow: 0 0 rgba(0, 0, 0, 0.5);
}

.aboutme {
  position: relative;
  height: 100vh;
}

.aboutme__heading {
  text-align: center;
}
@media (max-width: 25em) {
  .aboutme__heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 25em) {
  .aboutme__sub-heading {
    font-size: 1.25rem;
    text-align: center;
  }
}

.aboutme__canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1; /* Das Canvas hinter den anderen Inhalten positionieren */
}

#aboutme_canvasBackground {
  width: 100%;
  height: 100%;
}

.aboutme__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-image: url("../../../images/flat-mountains.svg"), linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 4em);
  background-repeat: no-repeat, no-repeat; /* Falls nötig, können Sie 'repeat' oder 'repeat-x' usw. verwenden */
  background-position: center bottom, center top; /* positioniert den Gradienten von oben nach unten */
  background-size: cover, cover; /* stellt sicher, dass der Gradient das gesamte Element bedeckt */
}

.aboutme__content-container {
  max-width: 75rem;
  margin: 0 1rem;
  padding: 2rem 2rem;
  position: relative;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 0.25em;
  border-width: 0.1875em;
  border-style: solid;
  border-color: rgb(196, 200, 203);
  margin-top: 1em;
  margin-bottom: 2em;
  overflow-x: hidden;
  overflow-y: auto;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  -moz-column-rule: 0.1875em solid rgb(196, 200, 203);
       column-rule: 0.1875em solid rgb(196, 200, 203);
}
.aboutme__content-container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 36em) {
  .aboutme__content-container {
    padding: 0 1rem;
  }
}
@supports ((-webkit-backdrop-filter: blur()) or (backdrop-filter: blur())) {
  .aboutme__content-container {
    -webkit-backdrop-filter: blur(1em);
            backdrop-filter: blur(1em);
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media (max-width: 48em) {
  .aboutme__content-container {
    -moz-column-count: 1;
         column-count: 1;
    text-align: left;
  }
}

.socials {
  background: linear-gradient(rgb(0, 31, 63) 6%, rgba(8, 87, 139, 0.65));
  color: white;
}

.socials__mountain-mirrored {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100vh;
}

.socials__mountain-mirrored::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../images/flat-mountains.svg");
  background-color: darkslateblue;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  transform: scaleY(-1);
  z-index: -2; /* Damit das Pseudo-Element hinter dem Inhalt liegt */
}

.socials__mountain-mirrored::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px); /* Hier wird der Blur hinzugefügt */
  z-index: -1; /* Damit das Pseudo-Element über dem ::before-Element liegt */
}

.socials__swiss-map {
  margin-top: 5em;
  margin-bottom: 5em;
  height: 100%;
  background-image: url("../../../images/swiss-network.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 50%;
}

.socials__content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 3em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 1rem;
}

.socials__heading {
  text-shadow: 0px 0px 1px black;
  text-align: center;
}
@media (max-width: 25em) {
  .socials__heading {
    font-size: 2.1rem;
  }
}

.socials__sub-heading {
  text-shadow: 0px 0px 1px black;
  text-align: center;
}
@media (max-width: 25em) {
  .socials__sub-heading {
    font-size: 1.25rem;
  }
}

.socials__content-container {
  max-width: 75rem;
  margin: 0 1rem;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin-top: 1em;
  margin-bottom: 2em;
}
.socials__content-container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 36em) {
  .socials__content-container {
    padding: 0 1rem;
  }
}
@media (max-width: 75em) {
  .socials__content-container {
    flex-direction: column;
  }
}

.socials__content-container-left {
  width: 50%;
  margin-bottom: 1em;
}
@media (max-width: 75em) {
  .socials__content-container-left {
    width: 100%;
  }
}

.socials__content-container-right {
  width: 50%;
}
@media (max-width: 75em) {
  .socials__content-container-right {
    width: 100%;
  }
}

.socials__content-container-left-image {
  width: 21rem;
  height: 21rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10.5rem;
  shape-outside: circle(50% at 50% 50%);
  float: left;
  margin-right: 2rem;
}
@media (max-width: 48em) {
  .socials__content-container-left-image {
    width: 12.7rem;
    height: 12.7rem;
    margin-right: 1.5rem;
  }
}

.socials__content-container-left-social-link-wrapper {
  display: inline-block;
  margin-bottom: 0.5em;
}

.socials__content-container-left-social-link {
  display: flex;
  align-items: center;
  color: currentColor;
  text-decoration: none;
}
.socials__content-container-left-social-link:hover .socials__text-shown {
  opacity: 0;
}
.socials__content-container-left-social-link:hover .socials__text-hidden {
  opacity: 1;
  transform: scale(1.2);
}

.socials__content-container-left-social-link-textbox {
  position: relative;
  display: flex;
  width: 9rem;
}

.socials__text-shown, .socials__text-hidden {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  will-change: opacity, transform;
  transition: opacity 0.5s, transform 0.5s;
}

.socials__text-shown {
  opacity: 1;
}

.socials__text-hidden {
  position: absolute;
  opacity: 0;
  transform: scale(1);
}

.socials__content-container-left-social-link-icon {
  margin-right: 1em;
  width: 3rem;
  height: 3rem;
  padding: 0.1875rem;
  border: 0.1875rem solid white;
  border-radius: 50%;
}
@media (max-width: 48em) {
  .socials__content-container-left-social-link-icon {
    width: 2rem;
    height: 2rem;
  }
}

.socials__text-shown, .socials__text-hidden {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  will-change: opacity, transform;
  transition: opacity 0.5s, transform 0, 5s;
}

.socials__text-shown {
  opacity: 1;
}

.socials__text-hidden {
  position: absolute;
  opacity: 0;
  transform: scale(1);
}

.socials__contact-form-label {
  display: block;
  width: 50%;
  margin-bottom: 0.5em;
  background-color: transparent;
}
.socials__contact-form-input {
  caret-color: white;
  color: white;
  display: block;
  width: 50%;
  margin-bottom: 1em;
  background-color: transparent;
  border: none;
  border-bottom: 0.1875em solid white;
  outline: none;
}
.socials__contact-form-input:focus {
  border-bottom: 0.1875em solid white;
}
@media (max-width: 48em) {
  .socials__contact-form-input {
    width: 100%;
  }
}

.socials__contact-form-textarea {
  color: white;
  caret-color: white;
  background-color: rgba(255, 255, 255, 0.25);
  display: block;
  resize: none;
  overflow: auto;
  border: none;
  border-left: 0.1875em solid white;
  outline: none;
  width: 100%;
  height: 15em;
  margin-bottom: 1em;
}
@media (max-width: 36em) {
  .socials__contact-form-textarea {
    height: 10em;
  }
}

.socials__send-button {
  color: white;
  display: block;
  background-color: transparent;
  font-family: "Jost", sans-serif;
  font-size: 1.25em;
  padding: 0.25em 0.5em;
  border: 0.1875rem solid rgb(196, 200, 203);
  border-radius: 10.5em;
  cursor: pointer;
  will-change: transform, box-shadow, border-color, background-color;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.socials__send-button:hover {
  transform: scale(1.05);
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.3);
  border-color: white;
  background-color: white;
  color: black;
}/*# sourceMappingURL=index.css.map */