@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2,
h3,
h4,
h5 {
  font-family: "Figtree", sans-serif;
}

a {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  background-color: #3C4433;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
}

.btn-clean {
  display: inline-block;
  background-color: #E8E8E1;
  color: #1A1C18;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
}

.button-wapp {
  display: block;
  width: 40px;
  height: 40px;
  color: #fff;
  position: fixed;
  right: 35px;
  bottom: 35px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  z-index: 999;
}

.hero {
  padding: 40px;
  display: block;
}
.hero__content {
  width: 90%;
  margin: 0 auto;
}
.hero h1 {
  font-size: 40px;
  font-weight: 300;
  color: white;
  font-family: "Archivo", sans-serif;
}
.hero p {
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 300;
}

.footer-container {
  background-color: #1A1C18;
  width: 100%;
  display: inline-block;
  height: 500px;
  padding: 20px;
  text-align: center;
}
.footer-container article {
  margin-bottom: 40px;
}
.footer-container__logo img {
  width: 100px;
}
.footer-container__logo p {
  color: white;
  width: 60%;
  margin: 0 auto;
  padding: 20px;
}
.footer-container__nav {
  margin: 0 auto;
}
.footer-container__nav li {
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.footer-container__nav li a {
  color: white;
}
.footer-container__contact p {
  color: white;
}

nav.nav-primary {
  z-index: 99;
}
nav.nav-primary ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
nav.nav-primary ul a {
  font-weight: 300;
  font-size: 14px;
  color: #3C4433;
  text-decoration: none;
}
nav.nav-primary ul a:hover {
  text-decoration: underline;
}

header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  height: 50px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  background-color: #F2F2EF;
  margin-top: 0px;
}
header img {
  width: 50px;
  display: block;
}
header .header__login ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.container {
  max-width: 390px;
  height: auto;
  display: block;
  background-color: #F2F2EF;
  margin-left: auto;
  margin-right: auto;
  font-family: "Figtree", sans-serif;
  position: relative;
  padding-top: 30px;
  z-index: 1;
}
@media (max-width: 767px) and (min-width: 320px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 1920px) and (min-width: 1441px) {
  .container {
    max-width: 100%;
  }
}
.container::before {
  content: "";
  width: 100%;
  margin-right: 0;
  height: 100%;
  background-image: url(/img/pexels-noratopicals-7038148.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.maps iframe {
  max-width: 100%;
  height: 200px;
}

.card {
  width: 100%;
  background-color: #F2F2EF;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.card .card-article {
  width: 280px;
  height: auto;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}
.card .card-article h3 {
  font-size: 18px;
  padding-bottom: 10px;
  margin-top: 10px;
}
.card .card-article p {
  font-size: 15px;
  color: rgba(26, 28, 24, 0.4431372549);
}

.sobre-mi {
  width: 100%;
  background-color: #F2F2EF;
  padding-top: 50px;
  padding-bottom: 30px;
  padding-left: 5%;
  padding-right: 5%;
  display: grid;
  gap: 30px;
  justify-items: center;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .sobre-mi {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (max-width: 1920px) and (min-width: 1441px) {
  .sobre-mi {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.sobre-mi img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .sobre-mi img {
    max-width: 90%;
  }
}
@media (max-width: 1920px) and (min-width: 1441px) {
  .sobre-mi img {
    max-width: 80%;
  }
}
.sobre-mi__card {
  width: 100%;
  background-color: white;
  padding: 40px;
  border-radius: 20px;
}
@media (max-width: 1440px) and (min-width: 1025px) {
  .sobre-mi__card {
    max-width: 600px;
    max-height: 420px;
  }
}
@media (max-width: 1920px) and (min-width: 1441px) {
  .sobre-mi__card {
    max-width: 600px;
    max-height: 420px;
  }
}
@media (max-width: 1920px) and (min-width: 1441px) {
  .sobre-mi__card {
    max-width: 600px;
  }
}
.sobre-mi__card p {
  padding-bottom: 20px;
}
.sobre-mi__card h2 {
  padding-bottom: 20px;
}
.sobre-mi__card svg {
  margin-right: 5px;
}
.sobre-mi .call-to-action {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
}
.sobre-mi .call-to-action__article {
  width: 75%;
  background-image: url(/img/pexels-karola-g-6629565.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  border-radius: 20px;
  padding: 30px;
}
.sobre-mi .call-to-action__article h3 {
  margin-bottom: 20px;
  color: white;
  font-size: 23px;
}
.sobre-mi .call-to-action__article h4 {
  margin-bottom: 20px;
  color: white;
}

.destacados {
  width: 100%;
  background-color: #F2F2EF;
  padding-left: 5%;
  padding-right: 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.destacados .btn-clean {
  border-radius: 20px;
  border: 1px solid orange;
  background-color: rgba(255, 68, 0, 0.097);
  color: rgb(255, 145, 0);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.destacados-cont {
  justify-items: left;
  padding: 20px;
}
.destacados-cont__title {
  font-size: 32px;
  margin-bottom: 20px;
}
.destacados-cont__p {
  color: rgba(26, 28, 24, 0.4431372549);
}
.destacados-cont img {
  margin-top: 30px;
}/*# sourceMappingURL=app.css.map */