:root {
  --elevated: #FFFFFF;
}

[data-theme=dark] {
  --elevated: #202020;
  --on-elevated: #FFFFFF;
  --text-color: #FFFFFF;
  --background: #121212;
  --primary: #2F4092;
  --on-primary: #FFFFFF;
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  background-color: var(--background);
  line-height: 1.3;
  overflow-x: hidden;
  text-align: center;
}
body.noscroll {
  overflow: hidden;
}

a, a:visited, a:hover {
  text-decoration: none;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

h1 {
  font-weight: 500;
  font-size: 3.5rem;
}
@media (max-width: 49.9375em) {
  h1 {
    font-size: 2.2rem;
  }
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 74em) {
  h2 {
    font-size: 2rem;
  }
}

strong {
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
}
@media (min-width: 74em) {
  h3 {
    font-size: 2.25rem;
  }
}

h4 {
  font-size: 1.125rem;
  font-weight: 400;
}
@media (min-width: 74em) {
  h4 {
    font-size: 1.5rem;
  }
}

.container {
  padding: 2rem;
}
@media (min-width: 50em) {
  .container {
    padding: 3.75rem;
  }
}

.button {
  background-color: rgb(208, 220, 228);
  padding: 0.8rem 1.2rem 0.8rem 1rem;
  font-size: 1rem;
  border-radius: 1rem;
  font-family: "Montserrat";
  font-weight: 700;
  color: black;
  border: none;
  margin: 1rem 0;
}

.cta-icon {
  padding-right: 0.625rem;
  max-height: 1.5rem;
}

.cta-icon-big {
  padding-right: 0.625rem;
  max-height: 1.8125rem;
}

.hero-icon {
  position: relative;
  top: 0.375rem;
}

.inline-vamos-plus {
  max-height: 1.5rem;
  width: auto;
}

.padding {
  padding: 2rem;
}

.chip_row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  padding: 0.3rem 0.6rem;
  margin: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  background-color: yellow;
  color: black;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 49.9375em) {
  .chip {
    font-size: 0.7rem;
  }
}
.chip img {
  height: 1rem;
  width: auto;
  margin-right: 0.3rem;
}
@media (max-width: 49.9375em) {
  .chip img {
    height: 0.7rem;
  }
}

.header {
  background-color: var(--elevated);
  position: sticky;
  padding: 1rem 1rem 1rem 4.125rem;
}
@media (max-width: 49.9375em) {
  .header {
    padding: 1rem;
    display: flex;
    align-items: center;
    background-color: transparent;
  }
}
.header a {
  color: #DDDDDD;
  transition: color 200ms ease-in-out;
  display: flex;
  align-items: center;
}
.header a:hover {
  color: #FFFFFF;
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 73.9375em) {
  .header__logo {
    font-size: 1.25rem;
  }
}
.header__logo img {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
}
@media (max-width: 73.9375em) {
  .header__logo img {
    width: 2rem;
    height: 2rem;
  }
}
.header__links {
  display: flex;
}
.header__links a {
  padding-left: 1rem;
  padding-right: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 170%;
}
@media (max-width: 73.9375em) {
  .header__links a {
    font-size: 1rem;
  }
}
@media (max-width: 49.9375em) {
  .header__links {
    display: none;
  }
}
.header__toggle {
  margin-top: auto;
  margin-bottom: auto;
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--on-elevated);
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header nav {
  max-width: 110rem;
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-direction: row;
  padding: 5rem;
  animation: appearPageLoad 3s cubic-bezier(0.33, 1, 0.68, 1);
  max-width: 120rem;
  margin: auto;
}
@media (max-width: 73.9375em) {
  .hero {
    max-width: 100%;
  }
}
@media (max-width: 49.9375em) {
  .hero {
    flex-direction: column;
    padding: 2rem;
    padding-top: 1rem;
    max-width: 90vw;
  }
}
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  margin: auto 0;
  width: 100%;
  flex: 5;
}
@media (min-width: 50em) {
  .hero__text {
    min-width: 30rem;
  }
}
@media (max-width: 49.9375em) {
  .hero__text {
    padding: 1rem;
    align-items: center;
    order: 1;
  }
}
.hero__text__hey {
  font-size: 3rem;
  font-weight: 400;
  text-align: start;
}
@media (max-width: 73.9375em) {
  .hero__text__hey {
    font-size: 2.25rem;
  }
}
@media (max-width: 49.9375em) {
  .hero__text__hey {
    font-size: 1.5rem;
    text-align: center;
  }
}
.hero__text__name {
  font-size: 6rem;
  font-weight: 700;
  padding-top: 2rem;
  padding-bottom: 1rem;
  text-align: start;
}
@media (max-width: 73.9375em) {
  .hero__text__name {
    font-size: 4.5rem;
  }
}
@media (max-width: 49.9375em) {
  .hero__text__name {
    font-size: 2.8rem;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }
}
.hero__text__subtitle {
  font-size: 2.25rem;
  font-weight: 400;
  margin: 1.2rem 0;
  text-align: start;
}
@media (min-width: 50em) {
  .hero__text__subtitle {
    max-width: 45vw;
  }
}
@media (max-width: 73.9375em) {
  .hero__text__subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 49.9375em) {
  .hero__text__subtitle {
    font-size: 1.8rem;
    text-align: center;
  }
}
.hero__image {
  display: flex;
  align-items: center;
  width: 100%;
  flex: 3;
}
@media (max-width: 49.9375em) {
  .hero__image {
    margin-bottom: 2rem;
    order: 0;
  }
}
.hero__image img {
  border-radius: 5rem;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
@media (max-width: 49.9375em) {
  .hero__image img {
    height: 70vw;
    width: 70vw;
    border-radius: 3rem;
    max-width: 30rem;
    max-height: 25rem;
  }
}
.hero .button {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(7.5px);
  }
  50% {
    transform: translatey(-7.5px);
  }
  100% {
    transform: translatey(7.5px);
  }
}
@keyframes appearPageLoad {
  0% {
    transform: scale(95%) translateZ(-2rem);
    opacity: 0;
  }
  100% {
    transform: scale(100%) translateZ(0);
    opacity: 1;
  }
}
.work {
  padding: 2rem;
  background-color: #1A1A1A;
  margin: 0 5rem;
  border-radius: 2rem;
  margin-bottom: 5rem;
  max-width: 80rem;
  animation: appearPageLoad 3s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (max-width: 73.9375em) {
  .work {
    width: 90%;
    margin: 1rem;
    padding: 1rem;
    max-width: 90vw;
  }
}
.work__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 2rem 0;
  row-gap: 2rem;
}
.work__list__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem;
  min-width: 22rem;
  max-width: 25rem;
  background-color: #1F1F1F;
  border-radius: 2rem;
  border: 1px solid rgb(60, 60, 60);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
@media (max-width: 49.9375em) {
  .work__list__card {
    min-width: 85%;
    margin: 0;
  }
}
.work__list__card:hover {
  border: 1px solid rgb(100, 100, 100);
  scale: 105%;
  box-shadow: 0 0 1rem rgb(37, 37, 37);
}
.work__list__card__image_wrap {
  min-height: 10rem;
  max-height: 10rem;
  width: 100%;
  background-color: #1A1A1A;
  border-radius: 2rem 2rem 0 0;
}
.work__list__card__image_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 1rem;
}
.work__list__card__image_wrap #drone_image {
  -o-object-fit: cover;
     object-fit: cover;
}
.work__list__card .chip_row {
  margin-top: 1rem;
}
@media (max-width: 49.9375em) {
  .work__list__card .chip_row {
    margin: 1rem;
  }
}
.work__list__card h2 {
  height: 100%;
  margin-top: 0.5rem;
  margin-right: 2rem;
  margin-left: 2rem;
}
.work__list__card .button {
  margin-top: auto;
  margin-bottom: 2rem;
}

.work_section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__copyright {
  padding: 1rem;
}
@media (max-width: 49.9375em) {
  .footer__copyright {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=style.css.map */