@import '../../node_modules/reset-css/reset.css'; /*** FONTS ***/
@font-face {
  font-family: "Approach";
  src: url("../../../assets/fonts/Approach/Approach-Regular.otf");
}
@font-face {
  font-family: "ApproachItalic";
  src: url("../../assets/fonts/Approach/Approach-RegularItalic.otf");
}
@font-face {
  font-family: "Approach-Light";
  src: url("../../assets/fonts/Approach/Approach-Light.otf");
}
@font-face {
  font-family: "Approach-LightItalic";
  src: url("../../assets/fonts/Approach/Approach-LightItalic.otf");
}
@font-face {
  font-family: "Approach-Bold";
  src: url("../../assets/fonts/Approach/Approach-Bold.otf");
}
@font-face {
  font-family: "Approach-BoldItalic";
  src: url("../../assets/fonts/Approach/Approach-BoldItalic.otf");
}
/***LIGHT MODE VARIABLES***/
/***DARK MODE VARIABLES***/
html {
  transition: all 0.3s ease-in;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 8px;
  }
}
html body {
  padding: 0;
  margin: 0;
  overscroll-behavior-y: none;
  transition: 0.5s ease-in-out;
  background-color: white;
  font-family: "Approach";
}
html body input, html body button {
  cursor: pointer;
}
html body .wrapper {
  height: 100%;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 4rem 2.5rem 0.5rem 2.5rem;
  position: relative;
  box-sizing: border-box;
}
html body .wrapper .background {
  width: 110%;
  height: 110%;
  position: absolute;
  background-image: url("../../assets/images/background.png");
  background-size: cover;
  left: -10%;
  top: -10%;
  transform-origin: center;
  animation: circle 30s ease-in infinite;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .background {
    width: 150%;
    height: 100%;
    top: 0;
    left: 0;
    animation: circle 30s linear infinite;
  }
}
@keyframes circle-mobile {
  0% {
    background-position: left;
  }
  25% {
    background-position: top;
  }
  50% {
    background-position: right;
  }
  75% {
    background-position: bottom;
  }
  100% {
    background-position: left;
  }
}
@keyframes circle {
  0% {
    background-position: 15% 50%;
  }
  25% {
    background-position: 50% 15%;
  }
  50% {
    background-position: 85% 50%;
  }
  75% {
    background-position: 50% 85%;
  }
  100% {
    background-position: 15% 50%;
  }
}
html body .wrapper .cookies-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(128, 128, 128, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Approach";
}
html body .wrapper .cookies-overlay .cookies-section {
  width: 40vh;
  height: 55vh;
  background-color: white;
  border-radius: 2vh;
  display: flex;
  padding: 2vh 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
html body .wrapper .cookies-overlay .cookies-section .cookie-settings {
  width: 90%;
  height: 80%;
}
html body .wrapper .cookies-overlay .cookies-section .cookie-settings p {
  font-size: 2.5rem;
  font-family: "Approach";
  font-style: normal;
}
html body .wrapper .cookies-overlay .cookies-section .cookie-buttons {
  width: 80%;
  height: 15%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 1%;
}
html body .wrapper .cookies-overlay .cookies-section .cookie-buttons button {
  height: 4.5vh;
  width: 10vh;
  background-color: white;
  color: black;
  border: 2px solid black;
  border-radius: 15px;
  font-size: 2rem;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .cookies-overlay .cookies-section {
    width: 70%;
    height: 70%;
  }
  html body .wrapper .cookies-overlay .cookies-section .cookie-settings {
    width: 85%;
    height: auto;
  }
  html body .wrapper .cookies-overlay .cookies-section .cookie-settings p {
    font-size: 2rem;
    font-family: "Approach";
    font-style: normal;
    font-weight: lighter;
  }
  html body .wrapper .cookies-overlay .cookies-section .cookie-buttons {
    gap: 2%;
  }
  html body .wrapper .cookies-overlay .cookies-section .cookie-buttons button {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 2rem;
  }
  html body .wrapper .cookies-overlay .cookies-section .cookie-buttons button:hover {
    background-color: black;
    border: 2px solid white;
    color: white;
  }
}
html body .wrapper .closed {
  display: none;
}
html body .wrapper .desktop-contact-form {
  display: none;
  transition-duration: 1s;
}
html body .wrapper .desktop-contact-form.opened {
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: rgba(128, 128, 128, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Approach";
}
html body .wrapper .desktop-contact-form.opened h2 {
  font-family: "Approach-Bold";
  font-size: 2rem;
  margin-bottom: 1rem;
}
html body .wrapper .desktop-contact-form.opened .contact-form {
  width: 50%;
  height: 90%;
  background-color: white;
  border-radius: 2vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 2rem;
}
html body .wrapper .desktop-contact-form.opened .contact-form .mailIframe {
  width: 100%;
  height: 100%;
}
html body .wrapper .desktop-contact-form.opened .contact-form .name-lastname {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 3vh;
}
html body .wrapper .desktop-contact-form.opened .contact-form .name-lastname .form-container {
  width: 49%;
}
html body .wrapper .desktop-contact-form.opened .contact-form .form-container {
  width: 100%;
  height: 2rem;
  border: solid 2px;
  border-radius: 5vh;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.8);
  background-color: rgba(128, 128, 128, 0.2);
  padding-left: 1rem;
  font-family: "Approach";
  font-style: normal;
  font-weight: 300;
  font-size: 1.2rem;
  resize: none;
  overflow: hidden;
  margin: 0vh;
  text-align: left;
}
html body .wrapper .desktop-contact-form.opened .contact-form .form-container.message {
  height: 20vh;
  border-radius: 1.5rem;
  overflow: scroll;
}
html body .wrapper .desktop-contact-form.opened .contact-form .form-container:focus {
  outline: 0px none transparent;
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 2%;
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container .privacy-box {
  position: relative;
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container .privacy-box .privacy-check {
  position: absolute;
  width: 1rem;
  height: 1rem;
  opacity: 0;
  z-index: 10;
  top: 2.7px;
  left: -0.9px;
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container .privacy-box .privacy-check + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin-right: 1vh;
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container .privacy-box .privacy-check + label:before {
  content: "";
  display: inline-block;
  border-radius: 5px;
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 2px solid black;
  border-radius: 5px;
  margin-right: 0.5vh;
  margin-top: 0.2rem;
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container .privacy-box .privacy-check:hover + label:before {
  background: white;
  width: 1rem;
  height: 1rem;
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container .privacy-box .privacy-check:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  background: transparent;
  border-radius: 5px;
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container .privacy-box .privacy-check:checked + label:before {
  width: 1rem;
  height: 1rem;
  background: rgba(0, 0, 255, 0.4);
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container .privacy-box .privacy-check:disabled + label {
  background: transparent;
  border: 10px solid;
  border-radius: 5px;
  cursor: auto;
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container .privacy-box .privacy-check:disabled + label:before {
  background: transparent;
  border: 10px solid;
  border-radius: 5px;
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container .privacy-box .privacy-check:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: black;
  transform: rotate(45deg);
}
html body .wrapper .desktop-contact-form.opened .contact-form .box-container .privacy-box .privacy-text {
  font-size: 1rem;
  font-weight: lighter;
}
html body .wrapper .desktop-contact-form.opened .contact-form .buttons-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 4vh;
  margin-top: 3vh;
}
html body .wrapper .desktop-contact-form.opened .contact-form .buttons-container .submit-desktop {
  height: 4.5vh;
  width: -moz-fit-content;
  width: fit-content;
  background-color: white;
  color: black;
  border: 2px solid black;
  border-radius: 2vw;
  transition: all 0.3s;
  padding: 0 2.5vw;
}
html body .wrapper .desktop-contact-form.opened .contact-form .buttons-container .submit-desktop:hover {
  background-color: black;
  color: white;
}
html body .wrapper .desktop-contact-form.opened .contact-form .buttons-container .submit-desktop a:hover {
  color: black;
}
html body .wrapper .desktop-contact-form.opened .contact-form .buttons-container .submit-desktop a:link {
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  html body .wrapper .desktop-contact-form.opened .contact-form {
    height: 50%;
    width: 70%;
  }
  html body .wrapper .desktop-contact-form.opened .contact-form .buttons-container .submit-desktop {
    height: 3vh;
    width: -moz-fit-content;
    width: fit-content;
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 3vw;
    transition: all 0.3s;
    padding: 0 5vw;
  }
}
html body .wrapper .content-container {
  mix-blend-mode: difference;
  color: white;
  position: relative;
}
html body .wrapper .content-container .header-desktop {
  display: none;
  margin-top: -2vh;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .header-desktop {
    mix-blend-mode: difference;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20vh;
    position: fixed;
    top: 3vh;
    width: calc(100% - 5rem);
  }
  html body .wrapper .content-container .header-desktop .logo-desktop-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  html body .wrapper .content-container .header-desktop .logo-desktop-container .logo-wrapper {
    width: 90%;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 10vw;
    top: 10vh;
    transition: all 3s ease;
  }
  html body .wrapper .content-container .header-desktop .logo-desktop-container .logo-wrapper .logo-desktop {
    width: 85%;
    height: auto;
  }
  html body .wrapper .content-container .header-desktop .logo-desktop-container .logo-wrapper .logo-subtext-desktop {
    width: 85%;
    height: auto;
  }
  html body .wrapper .content-container .header-desktop .logo-desktop-container .logo-wrapper.scrolled {
    left: 0;
    top: 0;
    width: 10%;
    transition: all 3s ease;
  }
  html body .wrapper .content-container .header-desktop .logo-desktop-container .logo-wrapper.scrolled .logo-subtext-desktop {
    opacity: 0;
  }
  html body .wrapper .content-container .header-desktop .options-desktop {
    height: 5vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 2vh;
  }
  html body .wrapper .content-container .header-desktop .options-desktop .contact-us {
    height: 4.5vh;
    width: -moz-fit-content;
    width: fit-content;
    background-color: black;
    color: white;
    border: 2px solid white;
    border-radius: 2vw;
    transition: all 0.3s;
    padding: 0 2vw;
    font-size: 1rem;
  }
  html body .wrapper .content-container .header-desktop .options-desktop .contact-us:hover {
    background-color: white;
    color: black;
  }
  html body .wrapper .content-container .header-desktop .options-desktop .lang-desktop {
    font-family: "Approach";
    font-size: 4.5vh;
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    cursor: pointer;
  }
  html body .wrapper .content-container .header-desktop .options-desktop h2:after {
    mix-blend-mode: difference;
    display: block;
    content: "";
    border-bottom: solid 3px;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
  }
  html body .wrapper .content-container .header-desktop .options-desktop h2:hover:after {
    transform: scaleX(1);
  }
  html body .wrapper .content-container .header-desktop .options-desktop h2.lang-desktop:after {
    transform-origin: 0% 50%;
  }
  html body .wrapper .content-container .header-desktop .options-desktop .switch-dark-desktop {
    height: 2.5vh;
    cursor: pointer;
  }
}
html body .wrapper .content-container .contact-button-mobile {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 3vh;
  gap: 33.3333333333%;
}
html body .wrapper .content-container .contact-button-mobile .contact-us {
  height: 3.2vh;
  width: -moz-fit-content;
  width: fit-content;
  background-color: black;
  color: white;
  border: 2px solid white;
  border-radius: 3vw;
  transition: all 0.3s;
  padding: 0 3vw;
  font-size: 1rem;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  html body .wrapper .content-container .contact-button-mobile .contact-us {
    height: 4.5vw;
    padding: 0 2vw;
    font-size: 1.2rem;
  }
}
html body .wrapper .content-container .contact-button-mobile .switch-dark-mobile {
  width: 3vw;
}
@media screen and (min-width: 768px) {
  html body .wrapper .content-container .contact-button-mobile .switch-dark-mobile {
    width: 3vw;
  }
}
@media screen and (min-width: 768px) {
  html body .wrapper .content-container .contact-button-mobile {
    gap: 25%;
  }
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .contact-button-mobile {
    display: none;
  }
}
html body .wrapper .content-container .header-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
html body .wrapper .content-container .header-mobile .logo-mobile {
  height: 9vh;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  html body .wrapper .content-container .header-mobile .logo-mobile {
    height: 15vh;
  }
}
html body .wrapper .content-container .header-mobile .logo-subtext-mobile {
  margin-top: 1vh;
  width: 100%;
  font-family: "Approach";
  font-style: normal;
  font-size: 3.8rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  html body .wrapper .content-container .header-mobile .logo-subtext-mobile {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .header-mobile {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .navbar-wrapper {
    width: 100%;
    height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 10vh;
  }
}
html body .wrapper .content-container .navbar-wrapper .navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 10vh;
  margin-bottom: 5vh;
  font-family: "Approach-Bold";
  font-style: normal;
  font-size: 5rem;
}
@media screen and (min-width: 768px) {
  html body .wrapper .content-container .navbar-wrapper .navbar {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1440px) {
  html body .wrapper .content-container .navbar-wrapper .navbar {
    margin-bottom: 15vh;
    flex-direction: row;
    justify-content: space-around;
    font-size: 4.5rem;
    font-weight: 400;
  }
}
html body .wrapper .content-container .navbar-wrapper .navbar h2 {
  margin: 0;
}
html body .wrapper .content-container .navbar-wrapper .navbar h2 a {
  cursor: default;
}
html body .wrapper .content-container .navbar-wrapper .navbar h2 a:active, html body .wrapper .content-container .navbar-wrapper .navbar h2 a:link, html body .wrapper .content-container .navbar-wrapper .navbar h2 a:visited {
  color: white;
  text-decoration: none;
}
html body .wrapper .content-container .options-mobile {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 10vh;
  margin-bottom: 10vh;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .options-mobile {
    display: none;
  }
}
html body .wrapper .content-container .options-mobile .lang-mobile {
  font-family: "Approach-Bold";
  font-size: 2.5rem;
  font-style: normal;
}
html body .wrapper .content-container .options-mobile .switch-dark-mobile {
  height: 2.5rem;
}
html body .wrapper .content-container .dot-section {
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 3rem;
}
html body .wrapper .content-container .dot-section .moving-dot {
  width: 1.5rem;
  height: auto;
  animation: mover-mobile 1.5s infinite alternate ease-in-out;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .dot-section .moving-dot {
    width: 2vh;
    height: auto;
    animation: mover-desktop 2.5s infinite alternate ease-in-out;
  }
}
@keyframes mover-mobile {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5vh);
  }
}
@keyframes mover-desktop {
  0% {
    transform: translateY(2vh);
  }
  100% {
    transform: translateY(-8vh);
  }
}
html body .wrapper .content-container .text-container .textbox {
  margin-bottom: 10vh;
  font-family: "Approach-Bold";
  font-size: 5rem;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .text-container {
    display: none;
  }
}
html body .wrapper .content-container .text-container-desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .text-container-desktop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
  html body .wrapper .content-container .text-container-desktop .textbox {
    margin-bottom: 10vh;
    font-family: "Approach-Bold";
    font-size: 5rem;
    font-style: normal;
  }
}
html body .wrapper .content-container .section-container {
  margin-bottom: 20vh;
  font-family: "Approach";
}
html body .wrapper .content-container .section-container .title {
  margin-bottom: 3rem;
  font-size: 5.5rem;
  font-family: "Approach-Bold";
}
html body .wrapper .content-container .section-container .caption {
  margin-bottom: 3rem;
  font-size: 4rem;
  font-family: "ApproachItalic";
}
html body .wrapper .content-container .section-container .section {
  margin-top: 2rem;
  font-size: 4rem;
}
html body .wrapper .content-container .section-container .bar {
  display: none;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .section-container .title {
    font-size: 8rem;
  }
  html body .wrapper .content-container .section-container .bar {
    margin-top: 1.5rem;
    display: block;
  }
  html body .wrapper .content-container .section-container .desktop-division {
    display: grid;
    grid-template-columns: 40% 55%;
    -moz-column-gap: 5%;
         column-gap: 5%;
  }
  html body .wrapper .content-container .section-container .desktop-division .caption {
    font-size: 2.5rem;
    font-family: "Approach";
    font-style: italic;
    font-weight: 100;
    margin-top: 2rem;
  }
  html body .wrapper .content-container .section-container .desktop-division .right-division .section {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0;
  }
}
html body .wrapper .content-container .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 5rem;
}
html body .wrapper .content-container .contact-form .title {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-family: "Approach";
  font-weight: bolder;
}
html body .wrapper .content-container .contact-form a:active, html body .wrapper .content-container .contact-form a:link, html body .wrapper .content-container .contact-form a:visited {
  cursor: pointer;
  color: white;
  text-decoration: none;
}
html body .wrapper .content-container .contact-form .form-container {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border-color: white;
  border-radius: 5vh;
  box-sizing: border-box;
  margin: 1vw 0;
  padding-left: 1.5rem;
  font-family: "Approach";
  font-style: normal;
  font-weight: 200;
  font-size: 3rem;
  text-align: left;
  resize: none;
  overflow: hidden;
}
html body .wrapper .content-container .contact-form .form-container.message {
  display: flex;
  height: 25rem;
  border-radius: 3vh;
}
html body .wrapper .content-container .contact-form .form-container:focus {
  outline: 0px none transparent;
}
html body .wrapper .content-container .contact-form .privacy-box {
  margin-top: 1.5rem;
  margin-bottom: 7rem;
  position: relative;
  font-family: "Approach";
}
html body .wrapper .content-container .contact-form .privacy-box .privacy-check {
  width: 2rem;
  height: 2rem;
  position: absolute;
  opacity: 0;
  z-index: 10;
  top: 1.5vh;
  left: 0.5vh;
}
html body .wrapper .content-container .contact-form .privacy-box .privacy-check + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
html body .wrapper .content-container .contact-form .privacy-box .privacy-check + label:before {
  content: "";
  margin-right: 1rem;
  margin-top: 1rem;
  display: inline-block;
  border-radius: 5px;
  background: transparent;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: 5px solid white;
  border-radius: 5px;
}
html body .wrapper .content-container .contact-form .privacy-box .privacy-check:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  background: transparent;
  border: 5px solid white;
  border-radius: 5px;
}
html body .wrapper .content-container .contact-form .privacy-box .privacy-check:checked + label:before {
  background: white;
}
html body .wrapper .content-container .contact-form .privacy-box .privacy-check:disabled + label {
  background: transparent;
  border: 5px solid white;
  border-radius: 5px;
  cursor: auto;
}
html body .wrapper .content-container .contact-form .privacy-box .privacy-check:disabled + label:before {
  background: transparent;
  border: 5px solid white;
  border-radius: 5px;
}
html body .wrapper .content-container .contact-form .privacy-box .privacy-check:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
html body .wrapper .content-container .contact-form .privacy-box .privacy-text {
  font-size: 3rem;
  font-weight: lighter;
  margin-bottom: 3rem;
}
html body .wrapper .content-container .contact-form .submit-mobile {
  font-family: "Approach-Bold";
  margin-bottom: 1rem;
  font-size: 5rem;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .contact-form {
    display: none;
  }
}
html body .wrapper .content-container .or {
  font-family: "Approach";
  font-size: 3rem;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .or {
    display: none;
  }
}
html body .wrapper .content-container .contact-icons {
  margin-top: 7rem;
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  font-family: "Approach";
}
html body .wrapper .content-container .contact-icons a {
  text-decoration: none;
  color: white;
}
html body .wrapper .content-container .contact-icons .social-box {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
html body .wrapper .content-container .contact-icons .social-box .social-logo {
  width: auto;
  height: 4rem;
}
html body .wrapper .content-container .contact-icons .social-box .social {
  font-size: 4rem;
  font-weight: 900;
  margin-left: 2.5rem;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .contact-icons {
    margin-top: 30rem;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
  html body .wrapper .content-container .contact-icons .social-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
  }
  html body .wrapper .content-container .contact-icons .social-box .social-logo {
    width: auto;
    height: 6rem;
  }
  html body .wrapper .content-container .contact-icons .social-box .social {
    font-family: "Approach";
    font-size: 2rem;
    font-weight: 700;
    margin-left: 0;
  }
  html body .wrapper .content-container .contact-icons .social-box h2:after {
    mix-blend-mode: difference;
    display: block;
    content: "";
    border-bottom: solid 3px;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
  }
  html body .wrapper .content-container .contact-icons .social-box h2:hover:after {
    transform: scaleX(1);
  }
  html body .wrapper .content-container .contact-icons .social-box h2.social:after {
    transform-origin: 0% 50%;
  }
}
html body .wrapper .content-container .footer-mobile {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: "Approach";
  position: relative;
  bottom: 2vh;
  left: 0;
  right: 0;
}
html body .wrapper .content-container .footer-mobile .address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .footer-mobile {
    display: none;
  }
}
html body .wrapper .content-container .footer-desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  html body .wrapper .content-container .footer-desktop {
    margin-top: -2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    font-size: 16px;
  }
}
html.dark-theme {
  transition: all 0.3s ease-in;
  background-color: black;
  filter: invert(1);
}/*# sourceMappingURL=main.css.map */