* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%;
}

::selection {
  color: #fff;
  background-color: #6f95b0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

html,
body {
  font-family: "Exo", sans-serif;
}
html #top,
body #top {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  border: 0;
  height: 5rem;
  width: 5rem;
  padding: 1rem;
  color: #fff;
  background-color: #6f95b0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.3s;
}
html #top:hover,
body #top:hover {
  cursor: pointer;
  background-color: #222;
}
html #top.show,
body #top.show {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
}

section:not(#banner) {
  max-width: 117.2rem;
  width: 100%;
  padding: 0 1.5rem;
  padding-bottom: 3rem;
  margin: auto;
}
section:not(#banner) h2 {
  padding: 3rem 0;
  font-size: 3rem;
  text-align: center;
  color: #565656;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  section:not(#banner) h2 {
    font-size: 2.4rem;
  }
}

#header {
  top: 0;
  position: sticky;
  background: #fff;
  z-index: 1;
  overflow-x: hidden;
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.1);
}
#header img {
  width: 12.1rem;
  height: 5.6rem;
}
#header nav {
  display: flex;
  justify-content: space-between;
  padding: 2rem 1.5rem;
}
#header ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin: 2rem 0;
}
#header ul li.active a {
  color: #6f95b0;
}
#header ul li.active a::after {
  width: 100%;
}
#header ul a {
  display: block;
  position: relative;
  font-size: 1.6rem;
  color: #565656;
  transition: 0.3s;
}
#header ul a::after {
  content: "";
  width: 0%;
  height: 0.2rem;
  display: block;
  margin: auto;
  transition: 0.3s;
  background: #d9e8f3;
}
#header ul a:hover {
  color: #6f95b0;
}
#header ul a:hover::after {
  width: 100%;
}
#header .menu {
  display: none;
}
@media screen and (max-width: 948px) {
  #header ul {
    background-color: #fff;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 100vw;
    top: 0;
    margin-top: 0;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
    z-index: 9999;
  }
  #header .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow-x: hidden;
  }
  #header .menu .close {
    position: absolute;
    right: -10rem;
    opacity: 0;
  }
  #header .menu ion-icon {
    color: #565656;
    transition: 0.3s;
  }
  #header .menu ion-icon:hover {
    color: #6f95b0;
    cursor: pointer;
  }
  #header.open ul {
    left: 0;
  }
  #header.open .menu .close {
    right: 0;
    opacity: 1;
    z-index: 99999;
  }
}

#welcome {
  background-color: #d9e8f3;
  color: #878889;
  text-align: right;
  font-size: 1.4rem;
  padding: 0.3rem 1.5rem;
}

main {
  margin-top: 6rem;
}
main h1 {
  margin-bottom: 3rem;
  color: #303030;
  font-size: 3rem;
  line-height: 3rem;
  line-height: 3.5rem;
  font-weight: 400;
  text-transform: uppercase;
}
#products .products {
  gap: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26.25rem, 1fr));
}
#products .product {
  height: 31rem;
  overflow: hidden;
}
#products .product img {
  width: 100%;
  height: 24rem;
  margin-bottom: 1rem;
  object-fit: cover;
  transition: 0.3s;
}
#products .product span {
  height: 6rem;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #565656;
  text-transform: uppercase;
  background-color: #d9e8f3;
}
#products .product:hover img {
  transform: scale(1.1);
}

#footer {
  margin-top: auto;
  background-color: #d9e8f3;
}
#footer .container {
  padding-top: 6rem;
  padding-bottom: 0;
}
#footer .container span,
#footer .container li {
  display: block;
  color: #565656;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  padding-bottom: 0.3rem;
}
#footer .content {
  display: flex;
  margin-bottom: 3rem;
}
#footer img {
  display: block;
  max-height: 4.5rem;
  margin-bottom: 3rem;
}
#footer .col {
  color: #565656;
  flex: 1;
}
#footer .col h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
  padding-bottom: 1.5rem;
}
#footer .col ul {
  list-style: none;
}
#footer .col a {
  color: #565656;
}
#footer .copy {
  padding-top: 5.5rem;
  padding-bottom: 2.5rem;
}
#footer .copy p,
#footer .copy a {
  font-size: 1.26rem;
  color: #565656;
}
#footer .copy a:hover {
  color: #919191;
}
@media screen and (max-width: 768px) {
  #footer .container {
    text-align: center;
  }
  #footer img {
    margin-left: auto;
    margin-right: auto;
  }
  #footer .content {
    flex-direction: column;
  }
  #footer .col {
    margin-top: 3rem;
    text-align: center;
  }
}

/*# sourceMappingURL=product.css.map */
