@charset "UTF-8";
/* BREAKPOINTS */
/* COMPONENT GENERAL VARIABLES */
/* COMPONENT SPECIFIC VARIABLES */
/* TEXT VARIABLES */
/* ROOT VARIABLES */
:root {
  /* BREAKPOINTS */
  --bp-medium: 700px;
  --bp-large: 900px;
  --bp-huge: 1200px;
  --navbar-height: 80px;
}
@media screen and (min-width: 900px) {
  :root {
    --navbar-height: 100px;
  }
}

@keyframes FOUTKiller {
  0% {
    visibility: hidden;
    height: 0;
    flex-wrap: nowrap;
  }
  100% {
    visibility: visible;
    height: auto;
    flex-wrap: wrap;
  }
}
@keyframes slide-in {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* SLIDE */
.loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #61BD6F;
  z-index: 1000000;
  transform: translateX(-100%);
  padding-right: 50%;
}

.loading-screen-child {
  height: 100%;
  width: 100%;
  background-color: #24243A;
}

.slide-leave-active,
.slide-enter-active,
.slide-leave-active .loading-screen,
.slide-enter-active .loading-screen {
  transition: transform 0.7s ease-in-out, padding 0.7s ease-in-out;
  -webkit-transition: transform 0.7s ease-in-out, padding 0.7s ease-in-out;
}

.slide-leave .loading-screen {
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}

.slide-leave-to .loading-screen {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  padding: 0;
}

.slide-enter .loading-screen {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  padding-right: 0;
}

.slide-enter-to .loading-screen {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  padding-left: 50%;
}

.slide-enter-active main {
  transition: transform 0.7s ease-out;
  -webkit-transition: transform 0.7s ease-out;
}

.slide-leave-active main {
  transition: transform 0.8s ease-in;
  -webkit-transition: transform 0.8s ease-in;
}

.slide-leave main {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.slide-leave-to main {
  transform: translateX(80%);
  -webkit-transform: translateX(80%);
}

.slide-enter main {
  transform: translateX(-2%);
  -webkit-transform: translateX(-2%);
}

.slide-enter-to main {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.gradient {
  position: relative;
  z-index: 1;
}
.gradient:hover::before {
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
}
.gradient::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  content: "";
  background: radial-gradient(200px circle at var(--mouse-x) var(--mouse-y), rgba(97, 189, 111, 0.3), #1D1D2F);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.gradient.g-big::before {
  background: radial-gradient(500px circle at var(--mouse-x) var(--mouse-y), rgba(97, 189, 111, 0.3), #1D1D2F);
  transition: opacity 0.4s ease-in-out;
}
@media screen and (min-width: 900px) {
  .gradient.g-big::before {
    background: radial-gradient(700px circle at var(--mouse-x) var(--mouse-y), rgba(97, 189, 111, 0.3), #1D1D2F);
  }
}
.gradient.g-blue::before {
  background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(199, 199, 250, 0.3), #1D1D2F);
}
.gradient.g-white:hover::before {
  opacity: 1;
}
.gradient.g-white::before {
  background: radial-gradient(160px circle at var(--mouse-x) var(--mouse-y), #FFFFFF, #ECECFC, rgba(199, 199, 250, 0.3));
}
.gradient.g-whiteongreen::before {
  background: radial-gradient(300px circle at var(--mouse-x) var(--mouse-y), #FFFFFF, #61BD6F);
}

.shadow {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
}

.light {
  font-weight: 400;
}

.line {
  border-top: solid 2px rgba(97, 189, 111, 0.3);
  border-bottom: solid 2px rgba(97, 189, 111, 0.3);
}
.line-top {
  border-top: solid 2px rgba(97, 189, 111, 0.3);
}
.line-bottom {
  border-bottom: solid 2px rgba(97, 189, 111, 0.3);
}

.solo-photo {
  border-radius: 10px;
}

.headline {
  font-size: 2.828rem;
  line-height: 3.2rem;
  font-weight: 500;
  letter-spacing: -0.08rem;
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/*
  10. Remove built-in button styles
*/
button {
  background: none;
  border: none;
}

/*
  11. Remove default list styles.
*/
ul.display, li.display {
  padding: 0;
  list-style: none;
}

/*! Typebase.less v0.1.0 | MIT License */
/* Setup */
html {
  /* Change default typefaces here */
  font-family: "Poppins", "Inter", helvetica, arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 700px) {
  html {
    font-size: 16px;
  }
}
/* Copy & Lists */
* + p {
  margin-top: 10px;
}
* + h3, * + h4, * + h5, * + h6 {
  margin-top: 20px;
}
* + h1, * + h2 {
  margin-top: 3rem;
}

p {
  line-height: 20px;
  margin-bottom: 0;
}

ul,
ol {
  margin-top: 20px;
}

ul li,
ol li {
  line-height: 20px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* Change heading typefaces here */
  font-family: "Poppins", "Inter", helvetica, arial, sans-serif;
  margin-bottom: 0;
  line-height: 20px;
}

h1 {
  font-family: "Poppins", "Inter", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 2.4rem;
  letter-spacing: -0.1rem;
  /*@include break($bp-medium){
    font-size: 4.242rem;
    line-height: 4rem;
  }*/
}

h2 {
  font-size: 2.828rem;
  line-height: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.08rem;
  /*@include break($bp-medium){
    font-size: 2.828rem;
    line-height: 3rem;
  }*/
}

h3 {
  font-size: 24px;
  line-height: 2rem;
  font-weight: 400;
}

h4 {
  font-size: 0.707rem;
}

h5 {
  font-size: 0.4713333333rem;
}

h6 {
  font-size: 0.3535rem;
}

strong {
  font-weight: 600;
}

/* Tables */
table {
  margin-top: 20px;
  border-spacing: 0px;
  border-collapse: collapse;
}

table td,
table th {
  padding: 0;
  line-height: 33px;
}

/* Code blocks */
code {
  vertical-align: bottom;
}

/* Leading paragraph text */
.lead {
  font-size: 1.414rem;
}

/* Hug the block above you */
.hug {
  margin-top: 0;
}

/* Accent fonts */
.accent {
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.6;
}

/* 
CUSTOM TEXT STYLES BELOW
*/
p {
  line-height: 1.6rem;
}
p a {
  color: #61BD6F;
  text-decoration: underline;
}
p a:hover {
  background-color: #61BD6F;
  color: #1D1D2F;
  text-decoration: none;
}

enc-bp {
  display: none;
}
enc-bp::after {
  content: "small";
}
@media screen and (min-width: 700px) {
  enc-bp::after {
    content: "medium";
  }
}
@media screen and (min-width: 900px) {
  enc-bp::after {
    content: "large";
  }
}
@media screen and (min-width: 1200px) {
  enc-bp::after {
    content: "huge";
  }
}

html {
  color: #61BD6F;
}

.a11y-link {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 10;
  top: 0;
  transition: transform 0.2s ease;
  height: 80px;
  padding: 10px;
  transform: translateY(-100%);
  /*
  &--container {
    width: 100%;
    padding: 0;
    margin: 0;
    height: 0;
    visibility: hidden;

    &:focus-within {
      visibility: visible;
      height: auto;
      padding: map-get($responsive-variables, padding-s);

      & .a11y-link:focus {
        width: 100%;
        padding: calc(map-get($responsive-variables, padding-s)/2);
        border: dashed 2px $accent-color;
        border-radius: 5px;
        text-decoration: underline;

        &:hover {
          color: $accent-color;
        }
      }
    }
  }*/
}
.a11y-link:focus-within {
  transform: translateY(0);
  transition: transform 0.2s ease;
}
.a11y-link a {
  position: relative;
  width: 100%;
  background-color: #1D1D2F;
  padding: 5px 10px;
}
.a11y-link a:hover {
  color: #61BD6F;
}

/* TEXT */
/*
h3 {
  color: $mid-color;
}


::-webkit-scrollbar{
  opacity: 0;
  width: $border-width;
}

::-webkit-scrollbar-track {
 background-color: $secondary-color;
}

::-webkit-scrollbar-thumb {
  background-color: $mid-color;
  height: 200px;
}

body {
  //width: 100%;
  //display: flex;
  //flex-direction: column;


  @include break($bp-medium){ 
   // flex-direction: row;
  }

  @include break($bp-large){ 
    // flex-direction: row;
   }
}

main {
  min-height: 100%;
  width: 100%;
  background-color: $secondary-color;

  &:focus {
    outline: none;
  }

  @include break($bp-medium){ 
    //width: 72vw;
    width: calc(100vw - $navbar-height);
    min-height: 100%;
  }

  @include break($bp-large){ 
    margin-left: 25vw;
    width: 75vw;
  }

  @include break($bp-huge){
    border-top: $border-width solid $secondary-color;
    border-left: $border-width solid $secondary-color;
    background-color: $primary-color;
  }
}

.title-container{
  position: relative;
  padding: map-get($responsive-variables, padding-m) map-get($responsive-variables, padding-s) 0 map-get($responsive-variables, padding-s);
  margin: $border-width;

  background-image: url("../../assets/img/building-xl.svg");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center center;

  @include break($bp-medium){
    height: 100%;
    margin: 0;
    margin-top: $border-width;
    background-color: $primary-color;
    display: flex;
    flex-direction: column;
    background-image: none;
  }

  @include break($bp-huge){
   margin-top: 0;
  }

  h1 {
    z-index: 2;
    padding-bottom: map-get($responsive-variables, padding-s);

    @include break($bp-medium){
      font-size: 3.9vw;
    }

    @include break($bp-medium){
      white-space: nowrap;
      line-height: clamp(2.4rem, 3.4vw, 4rem);
      font-size: clamp(2.4rem, 3.4vw, 4rem);
    }
  }


}

.info {
  padding: 0 $border-width;
  margin-bottom: $border-width;

  @include break($bp-medium){
    width: 33%;
    padding: 0;
    margin: 0;
    margin-top: $border-width;
  }

  @include break($bp-huge){
    margin-top: 0;
  }

  &--title {
    background-color: $primary-color;
    padding: map-get($responsive-variables, padding-s);
    margin-bottom: $border-width;
  }

  &--content {
    background-color: $primary-color;
    padding: map-get($responsive-variables, padding-s);
    padding-bottom: 0;

    &:last-child {
      padding-bottom: map-get($responsive-variables, padding-m);
    }
  }

  &--list {
    margin-top: map-get($responsive-variables, padding-xs);
    padding: 0;

    li {
      list-style: none;

      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;

      + li {
        margin-top: map-get($responsive-variables, padding-xs);
      }

      p {
       margin-top: 0;
       background-color: $primary-color;
       z-index: 1;

       &:first-child {
        padding-right: map-get($responsive-variables, padding-xs);
       }

       &:last-child {
        padding-left: map-get($responsive-variables, padding-xs);
       }
      }

      &::before {
        content: '';
        align-self: center;
        width: calc(100% - map-get($responsive-variables, padding-m)*2);
        margin-left: 10px;
        position: absolute;
        background-color: $mid-color;
        height: 2px;
        z-index: 0;

        @include break($bp-medium){
          width: calc(30% - map-get($responsive-variables, padding-m)*2);
        }
        @include break($bp-large){
          width: calc(25% - map-get($responsive-variables, padding-m)*2);
        }
      }
    }
  }


}

*/
/* UTILS? */
.js-nojs {
  animation: FOUTKiller;
  animation-duration: 0ms;
  animation-delay: 800ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.container--padding {
  padding: 20px;
}

#js-debugger {
  position: fixed;
  min-height: 200px;
  width: 200px;
  left: 5px;
  bottom: 5px;
  background-color: #1D1D2F;
  border: solid 2px rgba(97, 189, 111, 0.3);
  border-radius: 10px;
  z-index: 10000000000000002000000;
  padding: 10px;
  color: #FFFFFF;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  z-index: 11;
  padding: 0 20px;
  backdrop-filter: blur(20px) saturate(90%) brightness(90%);
  border-bottom: solid 2px rgba(97, 189, 111, 0.3);
}
@media screen and (min-width: 700px) {
  header {
    padding: 0 40px;
  }
}
@media screen and (min-width: 900px) {
  header {
    padding: 0 80px;
  }
}

.nav--top {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  width: 100%;
  padding: 20px 0;
}
.nav--logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  height: 50px;
  z-index: 1000 !important;
  /*& img {
    height: calc($navbar-height - map-get($responsive-variables, padding-s)*1.5);
  }*/
  /*
  span {
    color: $primary-color;
    font-size: 2.2rem;
    font-family: $font-primary;
    font-weight: 400;
    letter-spacing: -0.02rem;
  }*/
}
@media screen and (min-width: 900px) {
  .nav--logo {
    position: absolute;
    z-index: 100000000;
  }
}
.nav--logo a {
  transition: opacity 0.2s ease-in-out;
  z-index: 1000000000000000;
}
.nav--logo a:hover {
  opacity: 0.8;
  transition: opacity 0.1s ease-in-out;
}
.nav--logo a picture {
  height: 40px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .nav--logo a picture {
    height: 60px;
  }
}
.nav--logo a picture img {
  height: 100%;
  width: 100%;
}
.nav--logo:hover {
  cursor: pointer;
}

.nav--menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  min-width: 300px;
  width: 100%;
  height: 100vh;
  background-color: #24243A;
  transform: translateX(100%);
  transition: transform 0.2s ease, visibility 0s ease 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  font-size: 2.828rem;
  color: #FFFFFF;
  visibility: hidden;
  /*
  @include break($bp-large){
    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    //position: relative;
    border: none;

    height: 100%;
    width: auto;

    min-width: none;
    min-height: none;

    transform: translateX(0);

    visibility: visible;

    background: none;
  }*/
}
@media screen and (min-width: 900px) {
  .nav--menu {
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    transform: translateX(0);
    visibility: visible;
    height: auto;
    width: 100%;
    max-width: none;
    flex-direction: row;
    justify-content: flex-end;
    gap: 40px;
  }
}
.nav--menu.js-nojs {
  border-top: solid 2px #1D1D2F;
  width: 100%;
  position: relative;
  min-width: none;
  min-height: auto;
  transform: translateX(0);
  border-left: none;
  background-color: none;
  visibility: hidden;
  height: 0;
}
.nav--menu.active {
  /*animation: slide-in;
  animation-duration: 200ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;*/
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.2s ease, visibility 0s ease;
}
.nav--menu ul {
  position: relative;
  padding-left: 0;
}
@media screen and (min-width: 900px) {
  .nav--menu ul {
    margin: 0;
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}
.nav--menu ul li {
  width: 100%;
  list-style: none;
}
@media screen and (min-width: 900px) {
  .nav--menu ul li {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
  }
}
.nav--menu ul li + li {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .nav--menu ul li + li {
    margin-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .nav--menu ul li:hover a {
    position: relative;
    color: #FFFFFF;
    transition: color 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 900px) {
  .nav--menu ul li:hover a:hover {
    transition: color 0.1s ease-in-out;
  }
  .nav--menu ul li:hover a:hover::after {
    position: absolute;
    transform: translateY(1.6rem);
    content: "";
    width: 100%;
    height: 2px;
    background-color: rgba(97, 189, 111, 0.3);
  }
  .nav--menu ul li:hover a:hover * {
    color: #61BD6F;
  }
}
.nav--menu ul li:hover a p {
  position: relative;
  transform: translateX(2rem);
  transition: transform 0.2s ease;
}
@media screen and (min-width: 900px) {
  .nav--menu ul li:hover a p {
    color: #FFFFFF;
    transition: color 0.1s ease-in-out;
    transform: none;
  }
}
.nav--menu ul li:hover a p::before {
  opacity: 1;
  transition: opacity 0.2s ease 0.1s;
}
.nav--menu ul li a {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.nav--menu ul li a p {
  transition: transform 0.2s ease;
}
@media screen and (min-width: 900px) {
  .nav--menu ul li a p {
    transition: color 0.2s ease-in-out;
  }
}
.nav--menu ul li a p::before {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease;
  content: ">";
  color: #61BD6F;
  height: 1rem;
  width: 2rem;
  font-weight: 100;
  margin-left: -2.7rem;
  z-index: 10000;
}
@media screen and (min-width: 900px) {
  .nav--menu ul li a p::before {
    width: 1.8rem;
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .nav--menu ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    width: auto;
  }
}
@media screen and (min-width: 900px) {
  .nav--menu ul {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    /*
          height: auto;
          width: auto;
          margin-top: 0;
          padding-top: 0;
          padding-left: 0;*/
  }
}
.nav--menu::before {
  height: 80px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  content: "";
  position: absolute;
  border-bottom: solid 2px #1D1D2F;
}
@media screen and (min-width: 900px) {
  .nav--menu::before {
    display: none;
  }
}
.nav--menu .container--padding {
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media screen and (min-width: 900px) {
  .nav--menu .container--padding {
    width: auto;
    position: relative;
    padding: 0;
    font-size: 16px;
  }
}

.nav--button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 3;
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.nav--button:hover {
  transform: scaleY(125%);
}
.nav--button:hover *, .nav--button:hover *::before, .nav--button:hover *::after {
  transition: transform 0.2s ease-in-out;
  background-color: #FFFFFF;
}
.nav--button.js-nojs {
  display: none;
}
@media screen and (min-width: 900px) {
  .nav--button {
    display: none;
  }
}

.hamburger {
  position: absolute;
  height: 2px;
  width: 30px;
  left: 0;
  background-color: #61BD6F;
  content: "";
  z-index: 3;
}
.hamburger::before {
  position: absolute;
  height: 2px;
  width: 30px;
  left: 0;
  top: -9px;
  background-color: #61BD6F;
  content: "";
}
.hamburger::after {
  position: absolute;
  height: 2px;
  width: 30px;
  left: 0;
  top: 9px;
  background-color: #61BD6F;
  content: "";
}

body {
  background-color: #1D1D2F;
}

section.normal {
  padding-top: var(--navbar-height);
}

footer {
  width: 100%;
  height: auto;
}
footer .footer-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
footer .footer-logo {
  height: 50px;
  width: auto;
  transition: opacity 0.2s ease-in-out;
}
footer .footer-logo:hover {
  opacity: 0.8;
  transition: opacity 0.1s ease-in-out;
}
footer .footer-logo img {
  height: 100%;
  width: auto;
}
footer nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer nav > ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  footer nav > ul {
    text-align: left;
    align-items: flex-start;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
footer nav > ul > li {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  width: auto;
  color: #FFFFFF;
}
footer nav > ul > li > a {
  color: #FFFFFF;
  transition: opacity 0.2s ease-in-out;
}
footer nav > ul > li > a:hover {
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}
footer nav > ul > li > ul {
  padding: 0;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer nav > ul > li > ul > li {
  margin: 0;
  padding: 0;
  text-transform: none;
  font-weight: 400;
  list-style: none;
  color: #FFFFFF;
  opacity: 0.8;
  transition: color 0.2s ease-in-out;
}
footer nav > ul > li > ul > li:hover {
  color: #FFFFFF;
  opacity: 1;
  transition: color 0.1s ease-in-out;
}
footer .kicker {
  padding: 0 20px;
}
footer .kicker-container {
  color: #FFFFFF;
  height: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 900px) {
  footer .kicker-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    justify-content: space-between;
  }
  footer .kicker-container p {
    margin-top: 0;
  }
  footer .kicker-container p:first-child {
    text-align: left;
  }
  footer .kicker-container a {
    margin-top: 0 !important;
    text-align: right;
  }
}
footer .kicker-container p {
  text-align: center;
}
footer .kicker-container a {
  margin-top: 10px;
  color: #FFFFFF;
  text-decoration: underline;
  text-align: center;
}
@media screen and (min-width: 900px) {
  footer .kicker-item {
    width: 100%;
    line-height: 1.2rem;
  }
  footer .kicker-item:first-child {
    text-align: left;
  }
  footer .kicker-item:last-child {
    text-align: right;
  }
}

@media screen and (min-width: 900px) {
  .service-hero {
    min-height: 500px;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-end;
  }
  .service-hero::before {
    background: radial-gradient(500px circle at var(--mouse-x) var(--mouse-y), rgba(97, 189, 111, 0.3), #1D1D2F);
    transition: opacity 3s ease-in-out;
  }
}
@media screen and (min-width: 900px) and (min-width: 900px) {
  .service-hero::before {
    background: radial-gradient(700px circle at var(--mouse-x) var(--mouse-y), rgba(97, 189, 111, 0.3), #1D1D2F);
  }
}
@media screen and (min-width: 900px) {
  .service-hero-text {
    max-width: 50ch;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .service-hero-text {
    max-width: 80ch;
  }
}
.service-hero-text h1 {
  line-height: 3rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .service-hero-text h1 {
    font-size: 4.242rem;
    line-height: 4.6rem;
  }
}
.service-hero-text-breadcrumb a:hover {
  text-decoration: none;
}
.service-hero-text-breadcrumb a:first-of-type {
  color: #FFFFFF;
}
.service-hero-image {
  margin-top: -160px;
  transform: translateY(160px);
  display: flex;
  align-items: center;
  flex-direction: column;
  max-height: 400px;
}
@media screen and (min-width: 700px) {
  .service-hero-image {
    /*margin-top: calc(0px - calc($spacing-xl + calc($spacing-l + $spacing-s)));

    //transform: translateY(calc($spacing-xl + $spacing-l));
    transform: translateY(calc(50% + $spacing-l));*/
  }
}
@media screen and (min-width: 900px) {
  .service-hero-image {
    position: absolute;
    width: 40%;
    right: 80px;
    bottom: 0;
    transform: translateY(40%);
  }
}
.service-hero-image picture {
  max-width: 550px;
  max-height: 300px;
}
@media screen and (min-width: 900px) {
  .service-hero-image picture {
    max-width: none;
    max-height: none;
  }
}
.service-hero-image picture img {
  max-height: 300px;
}
@media screen and (min-width: 900px) {
  .service-hero-image picture img {
    max-width: 100%;
    max-height: 600px;
  }
}
.service-hero + * > *:first-child {
  margin-top: 120px;
}
@media screen and (min-width: 900px) {
  .service-hero + * > *:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .service-details {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-text-heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 2.2rem;
  margin-bottom: 20px;
}
.service-text-body p {
  line-height: 2rem;
}
@media screen and (min-width: 900px) {
  .service-detail-list {
    position: relative;
  }
}
.service-body {
  background-color: #24243A;
  border-radius: 10px;
  border: solid 2px rgba(97, 189, 111, 0.3);
}
@media screen and (min-width: 900px) {
  .service-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
.service-body-image {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 700px) {
  .service-body-image {
    height: 600px;
  }
}
@media screen and (min-width: 900px) {
  .service-body-image {
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 10px 0 0 10px;
  }
}
.service-body-image picture {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 900px) {
  .service-body-image picture {
    height: 100%;
    border-radius: 10px 0 0 10px;
  }
}
.service-body-image picture img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 900px) {
  .service-body-image picture img {
    height: 100%;
    border-radius: 10px 0 0 10px;
  }
}
.service-body-points {
  padding: 20px;
  border-top: solid 2px rgba(97, 189, 111, 0.3);
}
@media screen and (min-width: 700px) {
  .service-body-points {
    padding: 40px;
  }
}
@media screen and (min-width: 900px) {
  .service-body-points {
    height: 100%;
    border-top: none;
    border-left: solid 2px rgba(97, 189, 111, 0.3);
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .service-body-points {
    padding: 80px;
  }
}
.service-body-list {
  margin-top: 0;
  padding-left: 20px;
}
.service-body-listitem {
  list-style-type: none;
  position: relative;
  transition: transform 0.2s ease-in-out;
}
@media screen and (min-width: 700px) {
  .service-body-listitem {
    font-size: 24px;
    line-height: 1.8rem;
  }
}
.service-body-listitem::before {
  position: absolute;
  content: ">";
  color: #61BD6F;
  font-weight: 600;
  margin-left: -20px;
}
.service-body-listitem:hover {
  transform: translateX(10px);
  transition: transform 0.1s ease-in-out;
}
.service-body-listitem + * {
  margin-top: 10px;
}
@media screen and (min-width: 700px) {
  .service-body-listitem + * {
    margin-top: 20px;
  }
}

/*div:has(+ .block > .service-body) > *:last-child {
  margin-bottom: calc($spacing-xl + $spacing-s);

  @include break($bp-large) {
    margin-bottom: 0;
    margin-top: 0;
  }
}*/
.methods-hero {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .methods-hero {
    padding-bottom: 160px !important;
  }
}
.methods-hero::before {
  background: radial-gradient(500px circle at var(--mouse-x) var(--mouse-y), rgba(97, 189, 111, 0.3), #1D1D2F);
  transition: opacity 3s ease-in-out;
}
@media screen and (min-width: 900px) {
  .methods-hero::before {
    background: radial-gradient(700px circle at var(--mouse-x) var(--mouse-y), rgba(97, 189, 111, 0.3), #1D1D2F);
  }
}
.methods-hero-title {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .methods-hero-title h1 {
    font-size: 4.242rem;
  }
}
@media screen and (min-width: 900px) {
  .methods-hero-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
  }
}
.methods-hero-listbox {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .methods-hero-listbox {
    align-items: flex-end;
  }
}
.methods-hero-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-left: 0;
  gap: 40px;
  margin-top: 0;
}
@media screen and (min-width: 700px) {
  .methods-hero-list {
    gap: 80px;
  }
}
@media screen and (min-width: 900px) {
  .methods-hero-list {
    align-items: flex-end;
    gap: 80px;
  }
}
.methods-hero-listitem {
  list-style: none;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .methods-hero-listitem {
    text-align: right;
  }
}
.methods-hero-listitem::after {
  content: "";
  margin-top: 10px;
  z-index: -1;
  background-color: #61BD6F;
  position: absolute;
  height: 100%;
  width: 2px;
}
@media screen and (min-width: 700px) {
  .methods-hero-listitem::after {
    height: 66px;
  }
}
@media screen and (min-width: 900px) {
  .methods-hero-listitem::after {
    margin-left: -10px;
  }
}
.methods-hero-listitem:last-of-type::after {
  content: none;
}
.methods-hero-listitem a {
  z-index: 1;
  font-size: 24px;
  text-decoration: underline;
  color: #FFFFFF;
}
@media screen and (min-width: 1200px) {
  .methods-hero-listitem a {
    font-size: 2rem;
  }
}
.methods-hero-image {
  border-radius: 10px;
  height: auto;
  width: 100%;
  margin-top: 80px;
}
@media screen and (min-width: 900px) {
  .methods-hero-image {
    margin-top: 0;
    align-items: flex-end;
  }
}
.methods-hero-image picture {
  border-radius: 10px;
  height: auto;
  max-width: 400px;
}
.methods-hero-image picture img {
  max-height: 600px;
  border-radius: 10px;
}
@media screen and (min-width: 900px) {
  .methods-body {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    height: auto;
    align-items: center;
  }
}
.methods-body-image {
  display: none;
}
@media screen and (min-width: 900px) {
  .methods-body-image {
    align-self: start;
    justify-self: start;
    position: sticky !important;
    z-index: 2;
    max-width: 100%;
    height: calc(100vh - 240px);
    display: flex;
    align-items: center;
    top: 160px;
    border-radius: 10px;
  }
}
.methods-body-image picture {
  position: relative;
  width: auto;
  height: auto;
  background-color: #24243A;
  border-radius: 10px;
  border: solid 2px #61BD6F;
}
.methods-body-image picture img {
  position: relative;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  max-height: calc(100vh - 240px);
}
.methods-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 160px !important;
}
@media screen and (min-width: 900px) {
  .methods-container {
    gap: 500px !important;
  }
}
.methods-box {
  text-align: center;
  margin-bottom: 20px;
  max-width: 50ch;
  scroll-margin: 160px;
}
.methods-box::after {
  margin-top: 10px;
  content: "";
  z-index: 0;
  background-color: #61BD6F;
  position: absolute;
  height: 160px;
  width: 2px;
}
@media screen and (min-width: 900px) {
  .methods-box::after {
    height: 500px;
  }
}
.methods-box:last-of-type::after {
  content: none;
}
@media screen and (min-width: 900px) {
  .methods-box:last-of-type {
    margin-bottom: 160px;
  }
}

.home {
  /*
  background-color: $secondary-color;

  @include break($bp-medium){
    height: 100%;
    min-height: 700px;
    display: flex; 
    flex-direction: column;
    justify-content: space-between;
  }

  @include break($bp-large){
    height: 100%;
    min-height: 700px;
    display: flex; 
    flex-direction: column;
    justify-content: space-between;
  }

  @include break($bp-huge){
    margin-left: map-get($responsive-variables, padding-s);
  }


  .home-container {
    @include break($bp-medium){
      padding: 0 $border-width;
      width: 100%;
      display: flex;
      gap: $border-width;
    }

    @include break($bp-huge){
      padding-right: 0;
    }
  }

  .hero-container{
    @include break($bp-medium){
      height: 100%;
      width: 33%;

      display: flex;
      flex-direction: column;
      order: 3;
    }

  }

  .title-container{
    position: relative;
    padding: map-get($responsive-variables, padding-m) map-get($responsive-variables, padding-s) 0 map-get($responsive-variables, padding-s);
    margin: $border-width;

    background-image: url("../../assets/img/building-xl.svg");
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center center;

    @include break($bp-medium){
      height: auto;
      margin: 0;
      margin-top: $border-width;
      background-color: $primary-color;
      display: flex;
      flex-direction: column;
      background-image: none;
    }

    @include break($bp-huge){
     margin-top: 0;
    }

    h1 {
      z-index: 2;
      padding-bottom: map-get($responsive-variables, padding-s);

      @include break($bp-medium){
        font-size: 3.9vw;
      }

      @include break($bp-medium){
        white-space: nowrap;
        line-height: clamp(2.4rem, 3.4vw, 4rem);
        font-size: clamp(2.4rem, 3.4vw, 4rem);
      }
    }


  }

  &--button {

    @include break($bp-medium){
      background-color: $primary-color;
      border-top: $border-width solid $secondary-color;
    }
  }

  .info {
    padding: 0 $border-width;
    margin-bottom: $border-width;

    @include break($bp-medium){
      width: 33%;
      padding: 0;
      margin: 0;
      margin-top: $border-width;
    }

    @include break($bp-huge){
      margin-top: 0;
    }

    &--title {
      background-color: $primary-color;
      padding: map-get($responsive-variables, padding-s);
      margin-bottom: $border-width;
    }

    &--content {
      background-color: $primary-color;
      padding: map-get($responsive-variables, padding-s);
      padding-bottom: 0;

      &:last-child {
        padding-bottom: map-get($responsive-variables, padding-m);
      }
    }

    &--list {
      margin-top: map-get($responsive-variables, padding-xs);
      padding: 0;

      li {
        list-style: none;

        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        + li {
          margin-top: map-get($responsive-variables, padding-xs);
        }

        p {
         margin-top: 0;
         background-color: $primary-color;
         z-index: 1;

         &:first-child {
          padding-right: map-get($responsive-variables, padding-xs);
         }

         &:last-child {
          padding-left: map-get($responsive-variables, padding-xs);
         }
        }

        &::before {
          content: '';
          align-self: center;
          width: calc(100% - map-get($responsive-variables, padding-m)*2);
          margin-left: 10px;
          position: absolute;
          background-color: $mid-color;
          height: 2px;
          z-index: 0;

          @include break($bp-medium){
            width: calc(30% - map-get($responsive-variables, padding-m)*2);
          }
          @include break($bp-large){
            width: calc(25% - map-get($responsive-variables, padding-m)*2);
          }
        }
      }
    }


  }

  &--img {
    display: none;

    @include break($bp-medium){
      margin: map-get($responsive-variables, padding-s);
      margin-bottom: 0;
      margin-top: -30px;

      height: 100%;
      display: block;
      position: relative;
      background-image: url("../../assets/img/building-xl-blue.svg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center;
      user-select: none;
      pointer-events: none;
      z-index: 0;

      @include break($bp-large){
        margin-top: map-get($responsive-variables, padding-s);
        background-position: left center;
      }
    }

    img {
    max-height: 100%;
    }
  }

  &--contact {

  }*/
}
.home .hero {
  z-index: 9;
  min-height: 460px;
  height: calc(50vh + 160px);
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .home .hero {
    height: 100vh;
  }
}
.home .hero:hover::before {
  transition: opacity 0.2s ease-in-out;
}
.home .hero::before {
  background: radial-gradient(500px circle at var(--mouse-x) var(--mouse-y), rgba(97, 189, 111, 0.3), #1D1D2F);
  transition: opacity 3s ease-in-out;
}
@media screen and (min-width: 900px) {
  .home .hero::before {
    background: radial-gradient(700px circle at var(--mouse-x) var(--mouse-y), rgba(97, 189, 111, 0.3), #1D1D2F);
  }
}
.home .hero .block-title {
  margin-top: 30vh;
}
@media screen and (min-width: 700px) {
  .home-about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.error404 div {
  height: 50vh;
  padding-top: 80px;
}
.error404 div div .headline {
  font-size: 8rem;
  line-height: 8rem;
}
@media screen and (min-width: 700px) {
  .error404 div div .headline {
    font-size: 10rem;
    line-height: 10rem;
  }
}
@media screen and (min-width: 900px) {
  .error404 div div .headline {
    font-size: 12rem;
    line-height: 12rem;
  }
}

.testDiv {
  width: 100%;
  height: 100px;
  background-color: antiquewhite;
}

.block {
  background-color: #1D1D2F;
  color: #FFFFFF;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 700px) {
  .block {
    padding: 80px 40px;
    gap: 80px;
  }
}
@media screen and (min-width: 900px) {
  .block {
    padding: 80px;
  }
}
.block.light-contrast {
  background-color: #24243A;
}
.block.contrast {
  background-color: #61BD6F;
}
.block.contrast .subline {
  color: #1D1D2F;
}
.block.spacer {
  padding: 0;
  height: 40px;
}
@media screen and (min-width: 700px) {
  .block.spacer {
    height: 80px;
  }
}
.block-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
@media screen and (min-width: 700px) {
  .block-title {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
}
@media screen and (min-width: 900px) {
  .block-title {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 80px;
    grid-row-gap: 0px;
  }
}
.block-title .headline {
  font-size: 2.828rem;
  line-height: 3.2rem;
  font-weight: 500;
  letter-spacing: -0.08rem;
}
@media screen and (min-width: 700px) {
  .block-title .headline {
    text-align: right;
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .block-title .headline {
    font-size: calc((2.828rem + 1.7vw) * 1.01);
    line-height: 5rem;
  }
}
.block-title .subline {
  font-size: 16px;
  margin-top: 0;
  max-width: 50ch;
}
@media screen and (min-width: 700px) {
  .block-title .subline {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .block-title .subline {
    font-size: 24px;
    line-height: 2rem;
  }
}
@media screen and (min-width: 900px) {
  .block-title-button {
    display: flex;
    align-items: center;
    flex-direction: column;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .block-title-button button {
    max-width: 250px;
  }
}
.block-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.block-text .headline {
  font-size: 1.414rem;
  line-height: 2rem;
}
@media screen and (min-width: 900px) {
  .block-text .headline {
    max-width: 40ch;
  }
}
@media screen and (min-width: 900px) {
  .block-text .subline {
    max-width: 60ch;
  }
}
.block-photo {
  width: 100%;
  height: auto;
  margin-bottom: -80px;
  border-radius: 10px;
}
@media screen and (min-width: 700px) {
  .block-photo {
    margin-bottom: -160px;
  }
}
.block-photo picture {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
}
.block-photo picture img {
  height: auto;
  border-radius: 10px;
  max-width: 600px;
}
.block.link {
  padding: 0;
}
.block.link a {
  height: 100%;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 700px) {
  .block.link a {
    padding: 80px 40px;
  }
}
@media screen and (min-width: 900px) {
  .block.link a {
    padding: 80px;
  }
}
.block.link a .subline {
  position: relative;
  transition: transform 0.1s ease-in-out;
}
.block.link a .subline::after {
  position: absolute;
  content: "→";
  font-size: 1.2rem;
  transform: translateX(10px);
}
.block.link a:hover .subline {
  transition: transform 0.2s ease-in-out;
  transform: translateX(10px);
}

.button {
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  height: auto;
  width: 100%;
  border: 2px solid #61BD6F;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  /*
  &--icon {
    background-color: $primary-color;
    height: 100%;
    position: absolute;
    right: 0;
    width: calc(calc(1rem - 6px) + map-get($responsive-variables, padding-s )*2);

    //padding: map-get($responsive-variables, padding-xs );

    display: flex;
    align-items: center;

    img {
      width: 100%;
      height: auto;
    }
  }

  &--bg {
    width: 100%;
    height: 100%;
    background-color: $accent-color;

    transition: transform 0.2s ease;

    mask: url("../../assets/img/arrow.svg") no-repeat center;
    mask-size: calc(100% - calc(map-get($responsive-variables, padding-s)));

    -webkit-mask: url("../../assets/img/arrow.svg") no-repeat center;
    -webkit-mask-size: calc(100% - calc(map-get($responsive-variables, padding-s)));


  }*/
}
.button a {
  height: 100%;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .button a {
    padding: 10px;
  }
}
.button a p {
  display: inline-block;
  transition: transform 0.2s ease;
}
.button--submit {
  height: 100%;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .button--submit {
    padding: 10px;
  }
}
.button--submit p {
  display: inline-block;
  transition: transform 0.2s ease;
}
.button:hover {
  border-radius: 50px;
}
.button:hover .button--icon {
  height: 80%;
  border-left: 1.5px solid #1D1D2F;
  background-color: #61BD6F;
}
.button:hover .button--bg {
  background-color: #1D1D2F;
}
.button.contrast {
  background-color: #1D1D2F;
}

.inverse {
  background-color: #1D1D2F;
  border: rgba(97, 189, 111, 0.3);
  color: #61BD6F;
}
.inverse .button--bg {
  background-color: #1D1D2F;
}
.inverse :hover .button--bg {
  background-color: #61BD6F;
}

.small {
  width: auto;
}
.small a p {
  padding: 5px inherit 5px 5px;
}

@media screen and (min-width: 700px) {
  .contact-form--wrapper {
    padding: 0;
  }
}
.contact-form__input-wrapper {
  overflow: auto;
  padding: 5px;
  width: 100%;
  color: #FFFFFF;
  /*display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: $spacing-s;*/
}
.contact-form__input-wrapper input, .contact-form__input-wrapper textarea {
  color: #FFFFFF;
  background-color: #24243A;
}
.contact-form__input-wrapper input::placeholder, .contact-form__input-wrapper textarea::placeholder {
  color: #FFFFFF;
  transition: opacity 0.2s ease-in-out;
}
.contact-form__input-wrapper input:focus, .contact-form__input-wrapper textarea:focus {
  outline: none;
}
@media screen and (min-width: 900px) {
  .contact-form__input-wrapper textarea {
    height: 8rem;
  }
}
.contact-form__input-wrapper:focus-within .contact-form__form__wrapper__input {
  border: solid 2px #61BD6F;
}
.contact-form__input-wrapper:focus-within input::placeholder, .contact-form__input-wrapper:focus-within textarea::placeholder {
  transition: opacity 0.2s ease-in-out;
  opacity: 0.4;
}
.contact-form__input-wrapper + .contact-form__input-wrapper {
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .contact-form__input-wrapper + .contact-form__input-wrapper {
    margin-top: 0;
  }
}
.contact-form__input-wrapper.checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contact-form__form__wrapper__input {
  padding: 10px;
  width: 100%;
  border: solid 2px rgba(97, 189, 111, 0.3);
  background-color: #1D1D2F;
}
.contact-form input[type=checkbox] {
  appearance: none;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background-color: #24243A;
  color: #61BD6F;
  display: grid;
  place-content: center;
}
.contact-form input[type=checkbox]::before {
  content: "√";
  font-weight: 600;
  font-size: 2rem;
  color: #FFFFFF;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.1s ease-in-out, opacity 0.1s ease-in-out;
}
.contact-form input[type=checkbox]:checked::before {
  opacity: 1;
  transform: scale(1);
  transition: transform 0.1s ease-in-out, opacity 0.1s ease-in-out;
}

@media screen and (min-width: 900px) {
  .contact__form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
}
.contact-info-container {
  height: auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .contact-info-container {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.contact-info-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .contact-info-box {
    text-align: left;
    align-items: flex-start;
  }
}
.contact-info-box h3 {
  font-size: 2.828rem;
  font-weight: 500;
  color: #FFFFFF;
}
.contact-info-box p {
  margin: 0;
  color: #C7C7FA;
}
.contact-info-map {
  background-color: #C7C7FA;
  width: 100%;
  height: 300px;
  border-top: solid 2px rgba(97, 189, 111, 0.3);
  border-bottom: solid 2px rgba(97, 189, 111, 0.3);
}

.title-container {
  position: relative;
  padding: 40px 20px 0 20px;
  margin: 2px;
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center center;
}
@media screen and (min-width: 700px) {
  .title-container {
    height: 100%;
    margin: 0;
    margin-top: 2px;
    background-color: #1D1D2F;
    display: flex;
    flex-direction: column;
    background-image: none;
  }
}
@media screen and (min-width: 1200px) {
  .title-container {
    margin-top: 0;
  }
}
.title-container h1 {
  z-index: 2;
  padding-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .title-container h1 {
    font-size: 3.9vw;
  }
}
@media screen and (min-width: 700px) {
  .title-container h1 {
    white-space: nowrap;
    line-height: clamp(2.4rem, 3.4vw, 4rem);
    font-size: clamp(2.4rem, 3.4vw, 4rem);
  }
}

.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1;
  gap: 20px;
}
@media screen and (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.services-card {
  width: 100%;
  cursor: pointer;
  border: solid 2px rgba(97, 189, 111, 0.3);
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}
.services-card:hover {
  border: solid 2px #61BD6F;
}
.services-card a {
  height: 100%;
  max-width: 750%;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.services-card a:hover img {
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}
.services-card a img {
  width: 140px;
  height: 140px;
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
}
.services-method {
  width: 100%;
  padding: 40px 20px;
  cursor: pointer;
  background: #24243A;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px #24243A;
  border-radius: 10px;
  font-weight: 600;
}
.services-method a {
  height: 100%;
  width: 100%;
}
.shrinknuke {
  align-items: center;
}

/*
.what {
  display: table;;
  width: 1%;
  padding: 10px;
  background-color: green;
}

.cube {
  height: 100px;
  width: 100px;
  background-color: blue;
}*/
.testimonials {
  border-radius: 10px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1D1D2F;
  border: solid 2px rgba(97, 189, 111, 0.3);
}
@media screen and (min-width: 900px) {
  .testimonials {
    display: flex;
    flex-direction: row;
    gap: 80px;
    width: auto;
    align-items: normal;
    justify-content: normal;
  }
}
.testimonials-photo {
  height: 160px;
  width: 100%;
  border-radius: 10px 10px 0 0;
  background-color: #f2f4f6;
}
@media screen and (min-width: 900px) {
  .testimonials-photo {
    height: auto;
    flex-grow: 2;
    max-width: 500px;
    border-radius: 10px 0 0 10px;
  }
}
.testimonials-photo picture {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  padding: 20px;
}
.testimonials-photo picture img {
  height: inherit;
  width: inherit;
  border-radius: inherit;
}
.testimonials-text {
  width: auto;
  padding: 40px 20px;
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 900px) {
  .testimonials-text {
    flex-shrink: 1;
    padding: 40px 80px 40px 0;
  }
}
.testimonials-text h3 {
  font-size: 16px;
  margin-bottom: 20px;
}
.testimonials-text-body {
  max-width: 60ch;
  margin-bottom: 40px;
}
.testimonials-text-name {
  font-size: 16px;
}
.testimonials-text-role {
  margin-top: 0;
  font-size: 16px;
  color: #C7C7FA;
}

.certificates {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .certificates {
    flex-direction: row;
    align-items: flex-start;
    text-align: right;
    gap: 80px;
  }
}
.certificates h2 {
  margin-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .certificates h2 {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 900px) {
  .certificates h2 {
    flex-basis: 50%;
    flex-grow: 1;
    font-size: 4.242rem;
  }
}
.certificates-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .certificates-container {
    width: auto;
    flex-grow: 0;
    flex-basis: 50%;
  }
}
.certificates-cert {
  height: auto;
  background-color: #24243A;
  border-radius: 10px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .certificates-cert {
    width: 200px;
  }
}
.certificates-cert picture {
  height: 160px;
  width: 100%;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  background-color: rgb(236, 236, 252);
}
.certificates-cert picture img {
  height: 100%;
  width: 100%;
}
.certificates-link {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.certificates-text {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.certificates-title {
  font-size: 24px;
  font-weight: 500;
}
.certificates-caption {
  margin-top: 0;
  line-height: 1.2rem;
}

*:has(.canvas-container) {
  position: relative;
}

.canvas-container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

canvas {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
canvas.loaded {
  opacity: 0.6;
}

/* Default Imports */
/*******************/

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