@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
a, a:visited {
  color: unset;
  text-decoration: unset;
}

img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

html, body {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
@media (min-width: 320px) {
  html, body {
    font-size: 15px;
  }
}
@media (min-width: 576px) {
  html, body {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  html, body {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  html, body {
    font-size: 20px;
  }
}
@media (min-width: 1280px) {
  html, body {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  html, body {
    font-size: 24px;
  }
}

body {
  background-color: #222222;
  color: #F5F5F5;
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
  font-family: "Space Grotesk";
  overflow-x: hidden;
}
body .menu {
  display: flex;
  flex-direction: row;
  border: 1px solid #F5F5F5;
  border-radius: 50ch;
  color: #F5F5F5;
  background-color: rgba(245, 245, 245, 0.2);
  padding: 0.5rem;
  padding-right: 2rem;
  width: 80vw;
  max-width: 1000px;
  position: fixed;
  top: 1rem;
  z-index: 10;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  align-items: center;
  gap: 1rem;
}
body .menu .menu-logo {
  width: 50px;
  height: 50px;
}
body .menu .menu-logo img {
  width: 50px;
  height: 50px;
}
body .menu .menu-company-name {
  font-size: 0.8rem;
  font-weight: 500;
}
body .menu .mobile-menu {
  display: flex;
}
@media (min-width: 1024px) {
  body .menu .mobile-menu {
    display: none;
  }
}
body .menu .mobile-menu .mobile-menu-icons {
  display: flex;
  justify-content: center;
  cursor: pointer;
}
body .menu .mobile-menu.open .mobile-menu-icons .list {
  display: none;
}
body .menu .mobile-menu.close .mobile-menu-icons .x {
  display: none;
}
body .menu .mobile-menu.close .mobile-menu-links {
  display: none;
}
body .menu .mobile-menu {
  flex-grow: 1;
  justify-content: right;
}
body .menu .mobile-menu .mobile-menu-links {
  position: absolute;
  top: calc(100% + 1rem);
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body .menu .mobile-menu .mobile-menu-links .mobile-menu-link {
  color: #F5F5F5;
  font-weight: 200;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  border: 1px solid #F5F5F5;
  border-radius: 50ch;
  background-color: rgba(245, 245, 245, 0.2);
  padding: 0.5rem 2rem;
  z-index: 10;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
}
body .menu .mobile-menu .mobile-menu-links .mobile-menu-link img {
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.1rem;
}
body .menu .mobile-menu .mobile-menu-links .mobile-menu-link:hover {
  text-decoration: underline;
}
body .menu .menu-links {
  display: none;
}
@media (min-width: 1024px) {
  body .menu .menu-links {
    display: flex;
  }
}
body .menu .menu-links {
  flex-grow: 1;
  flex-direction: row;
  gap: 1.2rem;
  justify-content: end;
}
body .menu .menu-links .menu-link {
  color: #F5F5F5;
  font-weight: 200;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}
body .menu .menu-links .menu-link img {
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.1rem;
}
body .menu .menu-links .menu-link:hover {
  text-decoration: underline;
}
body .hero {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  width: 100vw;
  max-width: 1000px;
  margin-top: 10rem;
}
@media (min-width: 1024px) {
  body .hero {
    flex-direction: row;
  }
}
body .hero .hero-logo {
  width: 10rem;
  height: 10rem;
}
body .hero .hero-slogan {
  font-size: 2rem;
}
body .hero .hero-slogan .hero-slogan-1 {
  padding-right: 1.5rem;
}
body .hero .hero-slogan .hero-slogan-2 {
  padding-left: 1.5rem;
}
body .accent {
  width: 100vw;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
body .accent img {
  width: 100%;
  min-width: 1000px;
  height: auto;
}
body .accent-hero {
  margin-bottom: -7rem;
}
body .services {
  padding-top: 7rem;
  margin-bottom: -7rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 80vw;
  max-width: 1200px;
}
body .services .services-header {
  font-weight: 600;
  font-size: 1.8rem;
}
body .services .services-text {
  font-weight: 200;
  font-size: 1rem;
}
body .services .services-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 3rem;
}
body .services .services-items .services-item-container {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  body .services .services-items .services-item-container {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  body .services .services-items .services-item-container {
    width: 33.3333333333%;
  }
}
body .services .services-items .services-item-container .services-item {
  font-weight: 200;
  font-size: 1rem;
  border: 1px solid #F5F5F5;
  border-radius: 50ch;
  width: fit-content;
  padding: 1rem 1.5rem;
  transition: transform 0.1s, font-weight 0.1s;
  cursor: help;
  box-shadow: 0 0 20px rgba(245, 245, 245, 0.2);
}
@media (min-width: 1024px) {
  body .services .services-items .services-item-container .services-item {
    font-size: 0.9rem;
  }
}
@media (min-width: 1280px) {
  body .services .services-items .services-item-container .services-item {
    font-size: 0.8rem;
  }
}
body .services .services-items .services-item-container .services-item:hover {
  transform: scale(1.05);
  font-weight: 400;
}
body .contact {
  padding-top: 7rem;
  margin: 15rem 0;
}
body .contact .contact-button {
  display: flex;
  gap: 0.5rem;
  border: 1px solid #F5F5F5;
  font-size: 1rem;
  border-radius: 50ch;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background-color: rgba(245, 245, 245, 0.2);
}
body .contact .contact-button .contact-text {
  font-weight: 200;
}
body .contact .contact-button .contact-email {
  text-decoration: underline;
  font-weight: 500;
}
body .footer {
  position: relative;
  display: flex;
  justify-content: center;
}
body .footer .outrun-the-competition {
  font-size: 1rem;
  position: absolute;
  bottom: 1rem;
  margin: auto 0;
  color: #B215BB;
  text-shadow: 3px 1px 0 #6215BB;
}
