:root {
  --darkgrey-color-1: rgb(197, 206, 211);
  --grey-color-1: rgb(219, 221, 223);
  --lightgrey-color-1: rgb(255, 255, 255);
  --lightgrey-color-1-opake: rgb(255, 255, 255, 0.5);
  --custom-blue: rgb(4, 13, 51);
  --custom-light-blue: hsl(216, 20%, 95%);
  --custom-old-blue: rgb(86, 135, 149);
  --custom-turquoise: rgb(49, 242, 202);
  --custom-turquoise-dark: rgb(44, 214, 180);
  --custom-pink: hsl(332, 87%, 61%);
  --custom-turquoise-darker: rgb(125, 196, 182);
  --custom-blue-opake: rgba(111, 145, 184, 0.534);
  --ember-yellow: rgb(255, 217, 0);
  --ember-orange: rgb(255, 174, 0);
  --ember-orange-selection: rgba(255, 174, 0, 0.486);
  --ember-red: rgb(248, 83, 6);
  --ember-deep-red: rgb(248, 54, 6);
  --deep-blue: rgb(3, 3, 141);
  --skye-blue:rgb(0, 162, 255);

  --text-color-1: var(--custom-blue);
  --hover-color-1: var(--ember-orange);
  /* --box-shadow-color-1: var(--grey-color-1); */
  --box-shadow-color-1: var(--custom-blue-opake);
  --background-color-2: var(--lightgrey-color-1);
  --background-color-1: var(--custom-light-blue);
  /* --background-color-1: var(--lightgrey-color-1); */
  /* --background-color-2: var(--custom-light-blue); */
  --background-color-3: var(--custom-blue);
  --background-color-4: var(--lightgrey-color-1-opake);
  --background-header-color-1: var(--grey-color-1);
  --border-color-1: var(--custom-light-blue);
  --element-selection-color: rgba(49, 242, 202, 0.5);
  --button-color-1: var(--custom-blue);
  --button-background-color-1: var(--custom-light-blue);
  --button-form-background-color-1: var(--custom-turquoise-dark);
  --drop-down-button-color: var(--custom-blue);

  --header-z-index: 999;
  --box-shadow-1: 0px 0px 10px var(--box-shadow-color-1);
  --box-shadow-2: 5px 5px 10px var(--box-shadow-color-1);
  --box-shadow-3: 7px 7px 12px var(--box-shadow-color-1);
  --box-shadow-ember: 5px 5px 10px var(--ember-orange);
  /* --box-shadow-amount-1: 20px; */
  --border-radius-circle: 50px;
  --border-radius-odd: 20px 0px 20px 0px;

  --header-height: 5rem;
  --footer-height: 10em;
  --index-main-margin-top: 0rem;
  --index-main-margin-bottom: 0rem;
  --brand-size: 2em;
  --rounded-corners: 7px;

  --max-width-text-block: 1280px;
}

@font-face {
  font-family: Nuntio;
  src: url(fonts/Nunito-VariableFont_wght.ttf);
  font-display: swap;
}

@font-face {
  font-family: Lexend;
  src: url(fonts/Lexend-VariableFont_wght.ttf);
  font-display: swap;
}

@keyframes animateDown {
  0% {
    border-top: 0rem solid transparent;
    border-bottom: 0.32em solid var(--drop-down-button-color);
  }
  50% {
    border-bottom: 0em solid transparent;
    border-top: 0em solid transparent;
  }
  100% {
    border-top: 0.32em solid var(--drop-down-button-color);
  }
}

@keyframes animateUp {
  0% {
    border-top: 0.32em solid var(--drop-down-button-color);
    border-bottom: 0em solid transparent;
  }
  50% {
    border-top: 0em solid transparent;
    border-bottom: 0em solid transparent;
  }
  100% {
    border-top: 0em solid transparent;
    border-bottom: 0.32em solid var(--drop-down-button-color);
  }
}

*,
::before,
::after {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  box-sizing: border-box; /* Opera/IE 8+ */
}

::selection{
  background: var(--ember-orange-selection);
}

body,
h1,
h2,
h3,
h4,
p {
  margin: 0;
  /* margin-bottom: 1em; */
}

* > p {
  max-width: 65ch;
  /* margin: 0 auto; */
  /* text-align: center; */
}

/* #A */

a {
  text-decoration:none;
  color: var(--text-color-1)
}

.align-center {
  text-align: center;
  align-items: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.max-width-text {
  max-width: var(--max-width-text-block);
}

.info-window-font-size{
  font-size: 1.1em;
}

/* #B */

.background-color-1 {
  background-color: var(--background-color-1);
}

.background-color-2 {
  background-color: var(--background-color-2);
}

.background-color-3 {
  background-color: var(--background-color-3);
}

.background-color-4 {
  background-color: var(--background-color-4);
}

.background-image-1 {
  object-fit: cover;
  box-sizing: border-box;
  max-height: clamp(45vh, 35vw, 70vh);
  /* filter: grayscale(30%); */
  filter: brightness(90%);
  /* max-height: 70vh; */
  /* TODO Fix issue with scroll-bar being part of 100vw*/
  /* min-width: 100vw; */
  /* max-width: 100%;  */
}

.about-us-color-background{
  background: #89cdc933;
}

.services-color-background{
  background: #cce2f173;
}

.info-window{
  padding: 3em;
  border-radius: 25px 0 25px 0;
}

@media (max-width: 800px) {
  .background-image-1 {
    max-height: 40vh;
    /* max-height: 100%; */
  }
  .background-image-2 {
    max-height: 30vh;
  }

  .background-color-4 {
    display: none;
  }

  section {
    margin-bottom: 50px;
    max-height: 100%;
  }
}

.background-image-2 {
  object-fit: cover;
  box-sizing: border-box;
  height: 50vh;
  width: 100vw;
}

.box-shadow-1 {
  box-shadow: var(--box-shadow-1);
}

.box-shadow-2 {
  box-shadow: var(--box-shadow-2);
}

button {
  text-decoration: none;
  color: var(--custom-blue);
  background-color: var(--button-background-color-1);
  /* font-family: sans-serif; */
  width: 100px;
  height: 2.3rem;
  font-style: 1rem;
  border-radius: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  line-height: 1;
  justify-content: center;
  padding: 0 1rem;
}

button:hover {
  background-color: var(--hover-color-1);
  transition: all 0.2s ease-out;
}

body {
  margin: auto;
  font-family: Nuntio, sans-serif;
  background-color: var(--background-color-1);
}

.border-radius-1 {
  /* border-radius: 20px 150px 20px 150px; */
  border-radius: 20px 0px 20px 0px;
}

.div-text:is(.border-radius-1 .background-color-3) {
  /* border-radius: 0px 50px 0px 50px; */
  box-sizing: border-box;
  /* border-radius: 50%; */
  /* border: 5rem solid rgb(0, 0, 255, 0.1); */
  /* box-shadow: 0px 0px 10px rgba(255, 94, 0, 0.055); */
  box-shadow: var(--box-shadow-1);
  padding: 5rem 10rem 5rem 10rem;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.border-radius-2 {
  border-radius: var(--border-radius-odd);
}

.border-radius-3 {
  border-radius: var(--border-radius-circle);
}

.border-radius-4-1 {
  border-radius: 50px 50px 50px 0px !important;
}

.border-radius-4-2 {
  border-radius: 0px 50px 0px 150px !important;
}

.border-radius-4-3 {
  border-radius: 50px 0px 50px 50px !important;
}

.border-radius-4-4 {
  border-radius: 0px 150px 0px 50px !important;
}

.brand {
  font-size: var(--brand-size);
  border-radius: 18px 0px 18px 0px;
  background-color: var(--background-color-2);
  padding: 0.2em;
  line-height: 0.7em;
  /* border: 2px solid blue; */
}

.brand-border:hover{
  animation: rotation 2s infinite linear;
}

.brand-border{
  background: linear-gradient(to right, var(--ember-orange), var(--ember-red));
  padding:3px;
  border-radius: 18px 0px 18px 0px;
}

.footer-text {
  color: var(--background-color-1);  
}

.orange-text{
  color: var(--ember-orange);
}

.blue-text{
  color: rgb(22, 113, 189);
}

.small-margin-top-bottom{
  margin-bottom: 0.1em;
  margin-top: 0;
}
/* #C */

.color-1 {
  color: var(--custom-blue);
}

.color-2 {
  color: var(--custom-blue);
}

.color-3 {
  color: var(--custom-blue);
}

/* #D */

.div-with-uneven-div-img {
  display: flex;
  box-sizing: border-box;
  /* flex-direction: column; */
  min-height: 55vh;
  max-width: 1100px;
  /* width: 100vw; */
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  flex: 1;
  margin-bottom: 10px;
  background-color: var(--background-color-2);
  /* box-shadow: 0px 0px 10px var(--grey-color-1); */
}

.div-with-uneven-div-img > div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 100%;
  width: 50%;
  padding-inline: clamp(2em, 5vw, 6em);
  padding-block: clamp(2em, 5vw, 6em);
  /* gap: 2em; */
  /* flex: 1; */
}

.div-with-uneven-div-img > div:is(.img-div) {
  display: flex;
  /* height: min(100%, 400px); */
  min-height: 100%;
  width: 50%;
}

.div-with-uneven-div-img > div:is(.img-div) > * {
  display: flex;
  min-height: 50%;
  min-width: 50%;
  max-height: 200px;
  flex-basis: 100%;
  margin: auto;
  object-fit: contain;
  justify-content: center;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.div-with-uneven-div-img > div > * {
  display: flex;
  /* flex-basis: 100%; */
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 800px) {
  .div-with-uneven-div-img {
    flex-direction: column;
  }

  .div-with-uneven-div-img:is(.reverse) {
    flex-direction: column-reverse;
  }

  .div-with-uneven-div-img > div {
    /* display: flex; */
    flex-direction: column;
    width: 100% !important;
    flex-basis: 100%;
  }

  .div-with-uneven-div-img > div:is(.img-div) {
    /* display: flex; */
    flex-direction: row;
    height: min(100%, 300px);
    max-width: 100%;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    gap: 1em;
    /* padding: 2rem; */
    /* object-position: center; */
    /* box-shadow: var(--box-shadow-1); */
    /* flex: 1; */
  }
}

.display-block {
  display: block;
}

.display-flex {
  display: flex;
}

.drop {
  display: block !important;
}

.dropdown-button:hover {
  cursor: pointer;
}

.dropdown-button {
  position: relative;
}

.dropdown-button::before {
  content: "";
  position: absolute;
  bottom: calc(1em / 2.5);
  right: -0.7em;
  border-top: 0.32em solid var(--drop-down-button-color);
  border-bottom: 0em solid transparent;
  border-left: 0.2em solid transparent;
  border-right: 0.2em solid transparent;
}

/* .dropdown-button::after {
  content: "";
  display: none;
  position: absolute;
  bottom: calc(1em / 2.35);
  right: -0.7em;
  border-left: 0.2em solid transparent;
  border-right: 0.2em solid transparent;
  border-bottom: 0.3em solid red;
  border-top: 0em solid transparent;
} */

.dropdown-button-animate-up::before {
  animation: animateUp 0.5s 1 forwards;
}

.dropdown-button-animate-down::before {
  animation: animateDown 0.5s 1 forwards;
}

.dropdown-li {
  margin-bottom: 0.25em;
  margin-top: 0.25em;
}

.dropdown-content {
  padding: 1em;
  margin-top: 1.5rem;
  display: none;
  position: absolute;
  right: 7em;
  min-width: 10em;
  background-color: var(--background-color-2);
  /* width: 200px; */
  /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
  z-index: 1000;
  border-radius: 0px 20px 0px 20px;
  /* border: 1px solid var(--border-color-1); */
  box-shadow: var(--box-shadow-1);
}

@media (max-width: 800px) {
  .dropdown-content {
    /* padding: 1em; */
    margin-top: 1.5rem;
    display: none;
    position: absolute;
    /* right: 11.5em; */
    left: -6em;
    top: 2.4em;
    min-width: 10em;
    background-color: var(--background-color-2);
    border-radius: 0px 20px 0px 20px;
    box-shadow: none;
    border: 1px solid var(--border-color-1);
  }
}

/* #F */

.footer-wrapper {
  /* width: 100%; */
  width: min(1280px, 80%);
  min-height: 200px;
  display: flex;
  align-items: center;
}

.form-button {
  text-decoration: none;
  color: var(--custom-blue);
  background-color: var(--button-form-background-color-1);
  /* font-family: sans-serif; */
  max-width: 8em;
  max-height: 2rem;
  /* font-style: 1rem; */
  /* border-radius: 10px; */
  font-weight: 700;
  border: none;
  cursor: pointer;
  line-height: 1;
  justify-content: center;
}

.kontakt {
  display: flex;
  gap: clamp(2em, 10%, 6em);
  justify-content: space-evenly;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1em;
  background-color: var(--background-color-2);
  border-radius: var(--border-radius-odd);
  padding: clamp(1.3em, 5%, 3em);
  box-shadow: var(--box-shadow-2);
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.form > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.form > div > input {
  display: flex;
  flex: 0 45%;
  padding: 0.7em;
  border-radius: 20px;
}

.form > textarea {
  display: flex;
  max-width: 91%;
  min-height: 150px;
  max-height: 50vh;
  border-radius: 20px;
  padding: 1em;
  font-family: Nunito;
}

@media (max-width: 800px) {
  .kontakt {
    flex-direction: column;
    gap: 5em;
  }

  .kontakt > * {
    flex-direction: column;
    flex-basis: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .form > * {
    flex-direction: column;
    flex-basis: 100%;
    max-width: 95%;
  }

  section {
    margin: 0 auto;
  }

  .form-buttons {
    display: flex;
    flex-direction: row;
  }
}

/* #G# */

.gap-column-1 {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.gap-column-2 {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
/* #I# */

img {
  display: block;
  max-width: 100%;
}

/* #P# */

p {
  margin-block-start: 0.75em;
  margin-block-end: 0.75em;
}

.position-fixed {
  position: fixed;
}

.position-aboslute {
  position: absolute;
}

.hover-color-1:hover {
  transition: all 0.2s ease-out;
  color: var(--hover-color-1);
  /* text-decoration-line: underline; */
}

header {
  display: flex;
  position: fixed;
  align-items: center;
  background-color: var(--background-color-1);
  width: 100%;
  max-height: var(--header-height);
  /* padding: 1.2rem 1.2rem 1.2rem 1.2rem; */
  z-index: 999;
  top: 0;
  color:#696666; 
  /* font-weight:600; */
  border-bottom: 1px solid var(--border-color-1);
}

header > div {
  display: flex;
  width: 100%;
  max-height: var(--header-height);
  justify-content: space-around;
}

.header-wrapper {
  width: min(1280px, 95%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2em;
  padding-bottom: 2em;
  margin: auto;
  /* border-bottom: 1px solid var(--border-color-1); */
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  font-family: Lexend, sans-serif;
  font-weight: 300;
}

h2 {
  font-size: 3.2rem;
  text-align: center;
  /* padding: 10px; */
  font-weight: 300;
  font-family: Lexend, sans-serif;
}

h3 {
  font-size: 1.6rem;
  font-weight: 300;
  font-family: Lexend, sans-serif;
}

h4 {
  font-size: 1.3rem;
  font-weight: 300;
  font-family: Nunito, sans-serif;
  margin: 0;
}

h5 {
  font-size: 0.85rem;
  font-weight: 100;
  text-transform: uppercase;
  font-family: Lexend;
}

.justify-right {
  justify-content: right;
}

/* #N# */

/* nav{
  width: 50%;
} */

.navbar {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  /* gap: 2em; */
}

.navbar-button {
  height: var(--header-height);
  display: flex;
  padding-left: 1em;
  padding-right: 1em;
  cursor: pointer;
}

.navbar-button-content {
  display: flex;
  align-items: center;
}

.navbar-mobile {
  display: none;
}

@media (max-width: 800px) {
  .navbar {
    display: none;
  }
  .navbar-mobile {
    display: flex;
  }
}

/* #M */

.margin-auto {
  margin: auto;
}

.margin-zero-auto {
  margin: 0 auto;
}

.margin-small {
  margin: 1em;
}

.margin-bottom-zero {
  margin-bottom: 0px;
}

.margin-bottom-small {
  margin-bottom: 3em;
}

.margin-top-zero {
  margin-top: 0px;
}

.margin-right-large-vw {
  margin-left: 16vw;
  /* margin-right: 14vw; */
}

.margin-left-right-small {
  margin-left: 1rem;
  margin-right: 1rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* gap: 1rem; */
}

nav a {
  color: var(--centio-blue);
}

nav ul {
  position: relative;
  list-style: none;
  display: flex;
  /* -moz-column-gap: 1.4rem; */
  /* column-gap: 1.4rem; */
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}

.padding-large {
  padding-block: 9% !important;
  padding-inline: 10% !important;
}

.padding-medium {
  padding: 2em;
  /* white-space: nowrap;
  overflow: hidden; */
}

.info-window-line-height{
  line-height: 1.4em;
}

.info-window-padding{
  padding: 1.6em;
  padding-top: 2em;
  padding-bottom: 0.5em;
}

.padding-small {
  padding: 1em;
}

.padding-left-right-small {
  padding-left: 0.25em;
  padding-right: 0.25em;
}

.padding-top-bottom-small {
  padding-top: 1em;
  padding-bottom: 1em;
}

main {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  box-sizing: border-box;
  /* margin: auto; */
  width: 100vw;
  margin-top: var(--header-height);
  /* margin-bottom: var(--footer-height); */
  max-width: 1900px;
}

/* #S */

.simple-text {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.simple-text p {
  margin: 0 auto;
}

.split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-inline: auto;
  gap: clamp(2em, 2em, 2em);
  justify-content: center;
}

.split-big {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  gap: clamp(1em, 100px, 10em);
  /* max-height: 600px; */
  /* align-items: center; */
}

.zigzag-stack {
  gap: 1em;
}

.split-big > div {
  display: flex;
  background-color: var(--background-color-2);
  max-height: 380px;
}

.split-big > div > img {
  object-fit: cover;
  width: 200px;
  height: 100%; 
}

@media (min-width: 800px) {
  /* .split {
    flex-direction: row;
  }

  .split > * {
    flex-basis: 100%;
  } */

  .split-big {
    flex-direction: row;
  }

  .split-big > div {
    flex-basis: 100%;
    max-width: 50%;
  }

  .split-big > div > img {
    overflow: hidden;
  }
}

.stack {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-block: 2.5em;
  padding-inline: 2.5em;
  /* min-height: 60%; */
  /* flex: 1; */
}

.business-card-text-block-outer-container{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding:2.5em;
}

.business-card-text-block{
  display: flex;
  flex-direction: column;
  width: fit-content;
  width: -moz-fit-content;
  height: 100%;
  justify-content: center;
  gap: 1em;
}

.word-break{
  word-break: break-word;
}

.stack-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-block: 1em;
  padding-inline: 1.5em;
  margin: 0 auto;
  /* align-items: center; */
  /* min-height: 60%; */
  /* flex: 1; */
}

.split-2 {
  display: flex;
  /* flex-direction: row; */
  align-items: center;
}

.split-2 > div {
  display: flex;
  flex-direction: row;
  flex-basis: 100%;
  background-color: var(--lightgrey-color-1);
}

.split-2 > div > * {
  display: flex;
  /* background-color: var(--background-color-2); */
  width: min(50%, 50%);
  /* align-items: left; */
  /* flex-basis: 100%; */
}

.split-2 > div > div {
  flex-direction: column;
  justify-content: space-between;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  padding-left: 2em;
  padding-right: 2em;
}

.split-2 img {
  object-fit: cover;
}

@media (max-width: 800px) {
  .split-2 {
    flex-direction: column;
    box-shadow: 0;
  }

  .split-2 {
    box-shadow: var(--box-shadow-1);
    border-radius: 50px;
    margin-top: 1em;
  }

  .split-2 > div > div {
    flex-basis: 100%;
    /* margin-block: 1em; */
  }

  .split-2 img {
    border-radius: 0px !important;
    flex-basis: 30%;
  }
}

.split-3{
  display: flex;
  min-height: 20em;
  max-height: 300px;
  justify-content: center;  
  background-color: var(--background-color-2);  
  overflow: hidden;
  /* margin-bottom: 3em; */
}


.split-3 > div {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  /* max-height: 400px; */
  /* min-height: 100%; */
  /* width: 50%; */
  padding: clamp(1em, 4em, 5em);
  flex-basis: 100%;
}

.split-3:is(.reverse) {
  flex-direction: row-reverse;
}


@media (max-width: 800px) {
  .split-3 {
    flex-direction: column;
    /* box-shadow: none; */
    /* max-height: 80vh; */
    width: 100% !important;
    border-radius: 0px;
    /* gap: 2em; */
    box-shadow: none !important;
  }

  .split-3 > div {
    /* box-shadow: var(--box-shadow-1); */
    display: flex;
    flex-direction: column;
    max-height: 60% !important;
    min-height: 60% !important;
    min-width: 100%;
    padding-inline: 2em;
  }

  .split-3:is(.reverse) {
    flex-direction:column;
  }

  .split-3 > img {
    border-radius: 0px 0px 0px 0px;
    min-height: 10vh;
    max-height: 30vh;
    min-width: 100%;
  }
}

.split-stack{
  display: flex;
  min-height: 20em;
  max-height: 300px;
  justify-content: center;  
  background-color: var(--background-color-2);  
  overflow: hidden;
  /* margin-bottom: 3em; */
}

.split-stack-top{
  border-radius: 25px 25px 0px 0px;
}

.split-stack-bottom{
  border-radius: 0px 0px 25px 25px;
}

.split-stack > div {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  /* max-height: 400px; */
  /* min-height: 100%; */
  /* width: 50%; */
  padding: clamp(0.5em, 1.5em, 2em);
  flex-basis: 100%;
}

.split-stack > img {
  display: flex;
  flex-basis: 100%;
  max-width: 50%;
  /* max-height: 50vh; */
  flex-basis: 100%;
  /* max-height: 100%; */
  object-fit: cover;
  object-position: center center;
  overflow: hidden;
}

.split-stack.split-stack-top> img {
  border-radius: 0px 0px 50px 0px;
}

.split-stack.split-stack-bottom> img {
  border-radius: 0px 50px 0px 0px;
}

.split-stack > img{
  border-radius: 0px 50px 50px 0px;
}

.split-stack:is(.reverse) > img{
  border-radius: 50px 0px 0px 50px;
}

@media (max-width: 800px) {
  .split-stack {
    flex-direction: column;
    /* box-shadow: none; */
    max-height: 80vh;
    width: 100%;
    border-radius: 0px;
    gap: 2em;
  }

  .split-stack > div {
    /* box-shadow: var(--box-shadow-1); */
    display: flex;
    flex-direction: column;
    max-height: 60% !important;
    min-height: 60% !important;
    min-width: 100%;
    padding-inline: 2em;
  }

  .split-stack:is(.reverse) {
    flex-direction: column-reverse;
  }

  .split-stack > img {
    border-radius: 0px 0px 0px 0px;
    min-height: 10vh;
    max-height: 30vh;
    min-width: 100%;
  }
}

section {
  width: 100%;
  max-width: 1900px;
  margin: auto;
  margin-bottom: 100px;
  /* padding-left: 20px; */
  /* padding-right: 20px; */
}

section > div {
  margin: auto;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}
.flex-around {
  display: flex;
  justify-content: space-around;
}
.flex-evenly {
  display: flex;
  justify-content: space-evenly;
}
/* #T */

/* #W */

.width-small {
  width: min(800px, 90%);
}

.width-medium {
  margin-inline: auto;
  width: min(1280px, 95%);
  /* overflow: hidden; */
  /* min-width: 90%;
  max-width: 1280px; */
}

.width-42ch{
  max-width: 42ch;
}

.react-style {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #61dafb;
}

.java-style {
  font-family: sans-serif;
  /* color: rgb(204, 0, 0); */
  color: red;
}

.c-sharp-style {
  color: purple;
}

.cpp-style {
  color: rgb(71, 80, 204);
}

.javascript-style {
  color: rgb(255, 217, 0);
}

.node-style {
  color: green;
}

.typescript-style {
  color: rgb(30, 101, 253);
}

.tech-icon-font-size {
  font-size: 5rem;
}

.tech-icon-svg-size {
  width: 5rem;
}

.tech-icon-svg-size-big {
  width: 10rem;
}

.tech-icon-svg-size-medium {
  width: 7rem;
}

.non-drag-img-style {
  width: 5rem;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  /* user-drag: none; */
}

.tech-stack-display {
  display: flex;
  flex-direction: row !important;
  max-width: 30rem;
  min-width: 50%;
  align-items: center;
  justify-content: center;
  /* grid-area: 5em; */
}

.overflow-hidden{
  overflow: hidden;
}

.flex-center{
  display: flex;
  justify-content: center;
  align-items:center;
}

.info-window-font{
  font-family: monospace !important;
  color: var(--custom-blue);
}

.wide-margin-top-and-bottom{
  margin-top: 2em;
  margin-bottom: 2em;
}

.flexbox {
  display: flex;  
}

.split .element {
  height: 100%;
}

.textcolor-background{
  color: var(--background-color-2);
  /* text-shadow: 2px 2px 4px #000000; */
}

.text-shadow-1{
  text-shadow: 2px 2px 4px #000000;
}

.text-shadow-2{
  text-shadow: 1px 1px 3px #000000;
}

.icon{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5em;
}

.nav-card{
  flex-basis: 15em;
  border-radius: 15px;
  background-color: var(--lightgrey-color-1);
  box-shadow: var(--box-shadow-2);
}

.nav-card:hover{
  box-shadow: var(--box-shadow-3);
  transform: scale(1.02);
  cursor: pointer;
}

@media (max-width: 800px) {
  .nav-card {
    flex-direction: column;
    /* box-shadow: none; */
    /* max-height: 80vh; */
    /* flex-basis:content; */
    /* height: 100%; */
    width: 15em;
    gap: 2em;
  }

  .nav-card > div {
    /* box-shadow: var(--box-shadow-1); */
    display: flex;
    flex-direction: column;
    max-height: 60% !important;
    min-height: 60% !important;
    /* min-width: 100%; */
    padding-inline: 2em;
  }
}

.split-stack-container{
  border-radius: 25px 25px 25px 25px;
}

.rotate {
  animation: rotation 2s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}


*, *::before, *::after {
	box-sizing: border-box;
}

@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

.rainbow {
  font-size: var(--brand-size);
  padding: 0.3em;
  line-height: 0.7em;
	z-index: 0;
	border-radius: 18px 0px 18px 0px;
  color: var(--custom-blue);
  position: relative;
  overflow: hidden;
}
	
.rainbow::before {
  content: '';
  position: absolute;
  z-index: -2;
  left: -15px;
  top: -50%;
  width: calc(130%);
  height: calc(220%);
  background-repeat: no-repeat;
  background: linear-gradient(to right, var(--ember-yellow), var(--ember-deep-red));
}
	
.rainbow::after {
  color: var(--custom-blue);
  content:'';
  position: absolute;
  z-index: -1;
  left: 3px;
  top: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: var(--background-color-2);
  border-radius: 18px 0px 18px 0px;
}

.rainbow:hover{
  cursor: pointer;
}

.rainbow:hover::before{
  animation: rotate 2s linear infinite;
}

.background-color-2{
  background-color: var(--background-color-2);
}

.info-window-list-style-type {
  list-style-type:none;
}

