@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap");
body {
  background-color: #333E47;
  font-family: sans-serif;
  font-family: 'Roboto Condensed', sans-serif;
}

p {
  line-height: 1.6rem;
}

a {
  text-decoration: none;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .wrapper {
    max-width: 100%;
    padding: 0 1rem;
  }
}

.wrapper-full {
  margin: 0 auto;
}

.btn-primary {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  background-color: #617B83;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  border: 1px solid #ffffff8c;
  border-radius: 50px;
  padding: 1rem 2rem;
  margin: 1.4rem 0;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-primary:hover {
  background-color: #333E47;
}

.btn-primary:focus {
  outline: none;
}

.btn-social {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border: solid 1px #ffffff8c;
  border-radius: 50%;
  margin-right: 0.5rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-social:hover {
  background-color: #333E47;
}

.btn-social:focus {
  outline: none;
}

.btn-social .icon {
  width: 20px;
  height: 20px;
  stroke: white;
}

.navbar {
  position: fixed;
  width: 100%;
  background-color: #333E47;
  color: white;
  text-align: center;
  padding: 1rem 0;
  z-index: 999;
}

@media screen and (max-width: 500px) {
  .navbar {
    display: none;
  }
}

.navbar ul {
  margin: 0;
  padding: 0;
}

.navbar ul li {
  display: inline-block;
  margin: 0 0.6rem;
}

.navbar ul li a {
  color: #617B83;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.navbar ul li a:hover {
  color: white;
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  background: #617B83 url(../assets/hero.svg);
  background-size: 100% 100%;
  padding: 3rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.hero .logo img {
  width: 15rem;
}

.hero .content {
  color: #ffffff8c;
}

.hero .content p {
  font-size: 1.4rem;
  line-height: 1.8rem;
}

@media screen and (max-width: 500px) {
  .hero .content p {
    font-size: 1rem;
  }
}

.projects {
  background: url(../assets/proyectos.jpg);
  background-size: cover;
  color: #617B83;
  padding: 3rem 0;
}

.projects .project-carousel .carousel-cell {
  width: 33%;
  height: 700px;
  margin-right: 10px;
}

@media screen and (max-width: 500px) {
  .projects .project-carousel .carousel-cell {
    width: 100%;
  }
}

.projects .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

.services {
  background-color: #95B2BF;
  color: #ffffff8c;
  padding: 3rem 0;
}

.services h2, .services h3 {
  color: white;
}

.services .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
}

@media screen and (max-width: 500px) {
  .services .grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.services .grid .item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4rem 1fr;
      grid-template-columns: 4rem 1fr;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff8c;
  padding: 2rem;
  margin: 0.5rem;
}

.services .grid .item .icon .circle {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: white;
  color: #95B2BF;
  border-radius: 50%;
}

.services .grid .item .content h3 {
  margin-top: 0.5rem;
}

.services .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}

.contact {
  background: #617B83 url(../assets/hero.svg);
  color: #ffffff8c;
  padding: 3rem 0;
}

.contact h2, .contact h3 {
  color: white;
}

.contact .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% 40%;
      grid-template-columns: 60% 40%;
}

@media screen and (max-width: 500px) {
  .contact .grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.contact .grid > div {
  padding: 1rem;
}

@media screen and (max-width: 500px) {
  .contact .grid > div {
    padding: 1rem 0;
  }
}

.contact .grid .form input, .contact .grid .form textarea {
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff8c;
  border: solid 1px #ffffff8c;
  padding: 1rem;
  margin-bottom: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact .grid .form input::-webkit-input-placeholder, .contact .grid .form textarea::-webkit-input-placeholder {
  color: #ffffff8c;
}

.contact .grid .form input:-moz-placeholder, .contact .grid .form textarea:-moz-placeholder {
  color: #ffffff8c;
}

.contact .grid .form input::-moz-placeholder, .contact .grid .form textarea::-moz-placeholder {
  color: #ffffff8c;
}

.contact .grid .form input:-ms-input-placeholder, .contact .grid .form textarea:-ms-input-placeholder {
  color: #ffffff8c;
}

.contact .grid .form input:focus, .contact .grid .form textarea:focus {
  outline: none;
}

.contact .grid .content h3 {
  margin: 0;
}

.contact .grid .content p {
  margin: 0 0 1.4rem 0;
}

.contact .grid .content a {
  color: #ffffff8c;
}

.contact .grid .content .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5rem;
}

.alert-success {
  background-color: #6bcb77;
  color: white;
  padding: 1rem;
  margin-bottom: 1rem;
}

.alert-fails {
  background-color: #ff6b6b;
  color: white;
  padding: 1rem;
  margin-bottom: 1rem;
}

footer {
  background-color: #333E47;
  color: #617B83;
  font-size: 0.8rem;
  padding: 3rem 0;
}

footer a {
  color: #95B2BF;
}
/*# sourceMappingURL=main.css.map */