* {
  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;
}

#banner {
  height: 60rem;
  width: 100%;
  position: relative;
  background: url("/images/banner.jpeg") no-repeat center/cover;
}
#banner .text {
  position: absolute;
  bottom: 4rem;
  right: 26%;
  text-shadow: 1px 1px #000;
}
#banner h1, #banner p {
  color: #666666;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  padding-top: 0.5rem;
}
#banner p {
  font-size: 3rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #banner .text {
    right: 0;
    width: 100%;
    padding-left: 2rem;
  }
  #banner h1, #banner p {
    font-size: 3.2rem;
    word-wrap: break-word;
  }
  #banner p {
    font-size: 2.2rem;
  }
}

#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);
}

section#services {
  background-color: #d9e8f3;
  min-width: 100%;
}
section#services .services {
  gap: 3rem;
  margin: auto;
  display: flex;
  max-width: 1142px;
  justify-content: center;
}
section#services .service {
  flex: 1;
  flex-basis: 36rem;
}
section#services .service img {
  object-fit: cover;
  width: 100%;
  height: 24rem;
  margin-bottom: 1rem;
}
section#services .service span {
  height: 5.5rem;
  width: 100%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem 0;
  color: #565656;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  section#services .services {
    flex-direction: column;
  }
  section#services .service {
    flex-basis: unset;
  }
}

#is .text,
#is .cards .top {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #is .text,
  #is .cards .top {
    grid-template-columns: 1fr;
  }
}
#is .text p:last-of-type {
  text-align: left;
}
#is p {
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: justify;
  color: #666666;
}
#is .card {
  display: block;
  position: relative;
  height: 20.5rem;
  padding: 3.5rem;
  overflow: hidden;
  background-color: #d9e8f3;
}
#is .card img {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.3s;
  position: absolute;
}
#is .card h3 {
  position: absolute;
  font-size: 2.6rem;
  bottom: 3.5rem;
  line-height: 1;
  font-weight: 400;
  margin-left: 0rem;
  color: #565656;
  transition: 0.3s;
}
#is .card h3 span {
  font-size: 3.5rem;
  display: block;
  font-weight: 700;
}
#is .card:hover h3 {
  margin-left: -1.2rem;
}
#is .card:hover h3 span {
  margin-left: 0.2rem;
}
#is .card:hover img {
  transform: scale(1.15);
}

#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=home.css.map */
