/* Styles */

@import "fonts/inter/inter.css";

* {
  font-family: 'Inter';
}

html {
  font-size: 16px;
}

body {
  margin: 0;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
}

.header-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.main-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.main-menu span {
  color: #ed2224;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 0%;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  background: url(img/hero.png);
  background-size: cover;
  flex: 1;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

h1 {
  margin: 0 0 2rem 0;
  color: #ed2224;
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 1.1;
}

h2 {
  margin: 0;
  width: 65rem;
  color: #444444;
  font-size: 2.25rem;
  font-weight: 600;
  font-style: italic;
}

.accent {
  color: #858585;
  font-size: 1.5rem;
  letter-spacing: 0%;
  font-weight: 500;
}


.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ed2224;
  height: 5rem;
  width: 100%;
}

.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap:0.5rem;
  padding: 0.5rem 0;
}

.company-name {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 300;
}

.copyright {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 300;
}

.social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 300px) {
  html {
    font-size: 13px;
  }
  .header-wrapper {
    width: 90%;
    flex-direction: column;
  }
  .hero {
    background-position: center;
  }
  .hero-feature {
    width: 90%;
  }
  h2 {
    width: 30rem;
  }
  .footer-wrapper {
    width: 90%;
    flex-direction: column;
  }
}


@media (min-width: 576px) {
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
  h2 {
    width: 40rem;
  }
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}

@media (min-width: 1440px) {
  .header {
    height: 6.25rem;
  }
  .header-wrapper {
    width: 80rem;
    flex-direction: row;
    gap: 5rem;
    padding: 0;
  }
  .hero {
    background-position: top;
  }
  .hero-feature {
    width: 80rem;
  }
  h2 {
    width: 40rem;
  }
  .footer-wrapper {
    width: 80rem;
    flex-direction: row;
    gap:0.5rem;
    padding:0;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 16px;
  }
  .header-wrapper {
    width: 90rem;
  }
  .hero-feature {
    width: 90rem;
  }
  h2 {
    width: 50rem;
  }
  .footer-wrapper {
    width: 90rem;
  }
}

@media (min-width: 2000px) {
}
