@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html {
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-weight: 500;
  font-size: 2rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.index header {
  min-height: 95vh;
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}
.index header .header-top a {
  display: inline-block;
  width: 100%;
  min-height: 10vh;
  background-image: url(../img/logo-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.index header .header-main {
  height: 15vh;
  min-height: 150px;
  width: 100%;
  background-image: url(../img/home-desktop.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.index header .nav-btn {
  display: none;
}
.index header .header-nav {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index header .header-nav .nav-list {
  flex: 1 1 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.index header .header-nav .nav-list__item {
  position: relative;
}
.index header .header-nav .nav-list__item::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 3px;
  border-bottom: 3px dotted #dc2626;
  transition: width 250ms ease-out, height 250ms ease-out;
}
.index header .header-nav .nav-list__item:hover::after {
  width: 0;
}
.index header .header-nav .nav-list__link {
  color: #0e0e0e;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}
.index header .header-nav .nav-list__link:hover {
  color: #dc2626;
  transition: color 250ms ease-in;
}

@media screen and (min-width: 768px) {
  .index header .header-top a {
    min-height: 23vh;
  }
  .index header .header-main {
    background-image: url(../img/home-desktop-2.jpeg);
    height: 55vh;
    align-self: center;
    background-position: center top;
    background-size: cover;
  }
  .index header .header-nav .nav-list {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  .index header .header-nav .nav-list__item::after {
    bottom: 0;
    left: 110%;
    transform: translateX(0);
    width: 3px;
    height: 120%;
    border-bottom: none;
    border-right: 3px dotted #dc2626;
    transition: width 250ms ease-out, height 250ms ease-out;
  }
  .index header .header-nav .nav-list__item:hover::after {
    transform-origin: top;
    height: 0;
  }
  .index header .header-nav .nav-list__link {
    font-size: 1.5rem;
  }
}
.index {
  width: 100%;
  margin: 0 auto;
  padding: 1rem 1rem 0 1rem;
  display: flex;
  flex-direction: column;
}
.index footer {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}
.index footer .social-icons > * {
  font-size: 0.8rem;
  margin: 1rem;
  color: #0e0e0e;
  transition: color 250ms ease-in;
}
.index footer .social-icons > *:hover {
  color: #dc2626;
}

@media screen and (min-width: 768px) {
  .index {
    padding: 0;
  }
}/*# sourceMappingURL=index.css.map */