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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

h1 {
  text-transform: uppercase;
  font-family: "Paytone One", sans-serif;
  letter-spacing: 4px;
  font-size: 2.6rem;
}

h2 {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Paytone One", sans-serif;
  padding: 20px;
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #222;
}

h3 {
  text-align: center;
  padding: 10px;
  font-size: 1.3rem;
}

.container {
  margin: 0 auto;
  width: 1000px;
  max-width: 100%;
  height: 100%;
}

.info-text {
  margin-left: 10vw;
  margin-right: 10vw;
  color: #333;
  font-size: 1.4rem;
  padding: 10px;
}

section {
  padding: 1rem;
}

header {
  color: #ffffff;
}
header .hero-img {
  position: relative;
  height: 40vh;
  background-image: url("../img/hero-big.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}
header .hero-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(90, 122, 133, 0.8);
  z-index: -5;
}
header .hero-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  height: 100%;
  font-size: 1.2rem;
  z-index: 5;
  text-align: center;
}
header .hero-text a {
  margin-top: 2rem;
  text-decoration: none;
  background-color: #333;
  border-radius: 8px;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  transition: 0.2s;
}
header .hero-text a:hover {
  background-color: #666;
}

.projects {
  background-image: linear-gradient(#e5f6f5 10%, #fff);
  padding: 15px;
}

.info ul {
  list-style-position: inside;
}
.info ul li {
  padding: 5px;
  font-size: 1.1rem;
}

.offer {
  background-color: #c9dce2;
}
.offer p {
  padding: 10px;
  font-size: 1.1rem;
}

.contact ul li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact ul li a {
  font-size: 1.3rem;
  text-align: center;
  padding: 10px;
  color: #333;
  color: #333;
}
.contact ul li a i {
  margin: 5px;
  transition: 0.2s;
}
.contact ul li a:hover i {
  color: #368681;
}

footer {
  text-align: center;
  background-color: #c9dce2;
}
footer h3 {
  color: #969696;
}
footer .links {
  display: flex;
  justify-content: center;
}
footer .links a {
  font-size: 2rem;
  padding: 15px;
  margin: 5px;
  color: #222;
  transition: 0.3s;
}
footer .links a:hover {
  transform: scale(1.3);
  color: #41aca5;
}

@media (min-width: 992px) {
  html {
    scroll-padding-top: 80px;
  }
  .projects {
    background-image: linear-gradient(#e5f6f5 10%, #fff);
  }
  .projects-box {
    display: flex;
    justify-content: center;
  }
  .offer {
    background-color: #c9dce2;
  }
  .offer-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .offer .divider {
    display: block;
    width: 1px;
    height: 300px;
    border-left: 1px dashed #222;
  }
}/*# sourceMappingURL=info.css.map */