* {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-family: Helvetica, Arial, sans-serif;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: clamp(2rem, 5vh, 4rem);
  width: 100%;
  position: fixed;
  top: 0;
  font-weight: bold;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  color: white;
  background-color: #00f0c4;
}

.content {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  box-sizing: border-box;
}
.content h2 {
  width: 100%;
  font-size: 2rem;
  text-align: center;
}

#hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 85vh;
  max-height: 30rem;
  padding-top: min(1rem, 2vh);
  padding-bottom: min(0.33rem, 4vh);
  box-sizing: border-box;
  margin-top: clamp(2rem, 5vh, 4rem);
  background-color: rgb(86, 86, 86);
}
#hero .content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
  width: 100%;
  max-width: 1500px;
  color: white;
}
#hero .content .text {
  display: flex;
  flex-direction: column;
  justify-content: unset;
  align-items: center;
  min-width: 270px;
  width: 90%;
  max-width: 27.5rem;
}
#hero .content .text .hero_main_text {
  font-size: clamp(1.75rem, 7vh, 2.5rem);
  animation: heroTextAppear;
  animation-duration: 2s;
}
#hero .content .text .hero_main_text em {
  font-size: inherit;
  font-style: inherit;
  font-weight: bolder;
  color: #00f0c4;
}
#hero .content .text .hero_sub_text {
  display: inline;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin-top: min(2.5vh, 1rem);
  margin-bottom: min(5vh, 2rem);
  max-width: 35rem;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
#hero .content .text .hero_sub_text em {
  display: inline;
  text-decoration: underline;
  font-size: inherit;
  color: #00f0c4;
}
#hero .content .text a {
  padding: 1rem;
  padding-left: 2em;
  padding-right: 2rem;
  box-sizing: border-box;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: bold;
  color: white;
  background-color: #00f0c4;
}
#hero .content .text a:hover {
  background-color: #2fae96;
}
#hero .content .text a:active {
  box-shadow: 0px 0px 5px 0px black inset;
}
@keyframes ensoSpin_init {
  0% {
    rotate: -140deg;
    opacity: 0%;
    filter: invert(0%);
  }
  33% {
    rotate: -20deg;
    opacity: 15%;
    filter: invert(100%);
  }
  100% {
    rotate: 220deg;
    opacity: 100%;
  }
}
@keyframes ensoSpin_cont {
  0% {
    rotate: -140deg;
  }
  100% {
    rotate: 220deg;
  }
}
#hero .content img {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 300px;
  rotate: -140deg;
  transform: scaleX(-100%);
  filter: invert(100%);
  margin-left: min(3vw, 3rem);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  animation-name: ensoSpin_init, ensoSpin_cont;
  animation-duration: 1s, 12.5s;
  animation-delay: 0s, 1s;
  animation-iteration-count: 1, infinite;
  animation-timing-function: linear, linear;
}
@media screen and (min-width: 800px) {
  #hero .content .text {
    align-items: start;
    width: 50%;
  }
  #hero .content img {
    display: flex;
  }
}

#services {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#services .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 3.5rem;
  max-width: 2000px;
}
#services .content .services {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 2rem;
  width: 100%;
}
#services .content .services .service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 25rem;
  margin: 1rem;
  padding: 1.5rem;
  box-sizing: border-box;
  border-radius: 12.5px;
  overflow: hidden;
  text-align: center;
  line-height: 1.5rem;
  box-shadow: 0px 0px 10px 0px lightgray;
  transition: transform 0.25s;
  background-color: white;
}
#services .content .services .service img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -o-object-fit: contain;
     object-fit: contain;
  font-size: 1.5rem;
  font-weight: bold;
  width: 100%;
  height: 10rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#services .content .services .service:hover {
  transform: translateY(-5px);
  transition: transform 0.25s;
}

#contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#contact .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3.5rem;
  margin-bottom: 4rem;
}
#contact .content h2 {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
#contact .content form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 22.5rem;
  padding: min(7.5vw, 2rem);
  padding-top: min(10vw, 2rem);
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px lightgray;
  color: rgb(75, 75, 75);
  background-color: white;
}
#contact .content form .label_and_input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  margin-bottom: 1.25rem;
}
#contact .content form .label_and_input input,
#contact .content form .label_and_input textarea {
  padding: 0.4rem;
  box-sizing: border-box;
  margin-top: 0.2rem;
  border: 2px solid rgb(226, 226, 226);
  border-radius: 0.25rem;
  width: 100%;
}
#contact .content form .label_and_input input:focus {
  border-color: #00f0c4;
  border-style: solid;
}
#contact .content form .label_and_input #message {
  min-height: 8rem;
  height: auto;
}
#contact .content form .submit {
  margin-top: 1rem;
  padding: 4rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border: 2px solid #00f0c4;
  border-radius: 0.5rem;
  color: white;
  background-color: #00f0c4;
}
#contact .content form .submit:hover {
  box-shadow: 0px 0px 5px 0px #2fae96;
  cursor: pointer;
}
#contact .content form .submit:active {
  border-color: rgba(255, 0, 0, 0);
  box-shadow: none;
  background-color: #2fae96;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: calc(2 * clamp(2rem, 5vh, 4rem));
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  color: white;
  background-color: rgb(86, 86, 86);
}
@media screen and (min-width: 25rem) {
  footer br {
    display: none;
  }
}/*# sourceMappingURL=index.css.map */