*,
*:after,
*:before {
  box-sizing: border-box;
}

/* Color Theme Swatches in Hex */
/*FONT*/
html {
  scroll-behavior: smooth;
}
html body {
  font-family: "Source Sans Pro", sans-serif;
  background-color: #fff;
  overflow-x: hidden;
}
html body::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
html body::-webkit-scrollbar-thumb {
  background: #8baea4;
  border-radius: 4px;
}
html body::-webkit-scrollbar-thumb:active {
  background-color: #8baea4;
}
html body .header {
  width: 100%;
  min-height: 40px;
  display: flex;
  padding-top: 2em;
  justify-content: center;
}
html body .header-nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  html body .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 320px) {
  html body .header-nav {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
html body .header-nav .internos {
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  padding: 1rem 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  color: #212121;
}
html body .header-nav .internos::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  display: inline-block;
  height: 0.1rem;
  background: #8baea4;
  transition: all 0.25s cubic-bezier(1, 0.1, 0.16, 0.9);
}
html body .header-nav .internos:hover {
  color: #212121;
}
html body .header-nav .internos:hover::after {
  right: 0;
  height: 1px;
  background: #8baea4;
}
html body .main-text {
  max-width: 100%;
  min-height: 100vh;
}
@media screen and (max-width: 800px) {
  html body .main-text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 360px) {
  html body .main-text {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
html body .main-text-principal {
  padding-top: 13.2em;
  padding-left: 3em;
  margin-top: 3em;
  margin-right: 6em;
}
@media screen and (max-width: 600px) {
  html body .main-text-principal {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 360px) {
  html body .main-text-principal {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
html body .main-text-principal .img {
  margin-top: -150px;
  float: right;
}
@media screen and (max-width: 600px) {
  html body .main-text-principal .img {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  html body .main-text-principal .img {
    display: none;
  }
}
html body .main-text-principal-h1 {
  color: #212121;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 4.5rem;
  line-height: 1em;
}
html body .main-text-principal-subtitle {
  color: #8baea4;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 40px;
}
html body .main-text-principal-btn {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding: 30px 61px;
  border-radius: 4px;
  color: #8baea4;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  margin: 25px;
  filter: hue-rotate(0deg);
  border: 2px solid #d2bdff;
  transition: all 0.1s linear;
}
html body .main-text-principal-btn:hover {
  border: 1px solid transparent;
}
html body .main-text-principal-btn span {
  position: absolute;
  display: block;
}
html body .main-text-principal-btn span:nth-child(1) {
  filter: hue-rotate(0deg);
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3aff5b);
  animation: animate1 1s linear infinite;
}
@keyframes animate1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
html body .main-text-principal-btn span:nth-child(2) {
  filter: hue-rotate(60deg);
  top: -100%;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #057e3b);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}
@keyframes animate2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
html body .main-text-principal-btn span:nth-child(3) {
  filter: hue-rotate(120deg);
  bottom: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(270deg, transparent, #3ae974);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}
@keyframes animate3 {
  0% {
    right: -100%;
    height: 3px;
  }
  50%, 100% {
    height: 2px;
    right: 100%;
  }
}
html body .main-text-principal-btn span:nth-child(4) {
  filter: hue-rotate(300deg);
  bottom: -100%;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #3aff44);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}
@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}
html body .about {
  padding-top: 50px;
  color: #212121;
  min-width: 100vw;
  min-height: 100vh;
  height: 100vh;
}
html body .about .otherMe {
  float: right;
}
@media screen and (max-width: 600px) {
  html body .about .otherMe {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  html body .about .otherMe {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  html body .about {
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  html body .about {
    text-align: center;
  }
}
html body .about .quien {
  font-size: 4.3rem;
  margin: 50px 0 50px 30px;
}
@media screen and (max-width: 600px) {
  html body .about .quien {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 360px) {
  html body .about .quien {
    font-size: 2.5rem;
  }
}
html body .about-text {
  font-family: "Source Sans Pro", sans-serif;
  width: 800px;
  height: auto;
  margin-left: 30px;
}
@media screen and (max-width: 600px) {
  html body .about-text {
    max-width: 90%;
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  html body .about-text {
    max-width: 90%;
    text-align: center;
  }
}
html body .about-text .myName {
  font-size: 1.2rem;
  color: #212121;
  margin-bottom: 30px;
}
html body .about-text .btn-my {
  color: #212121;
  font-size: 20px;
  padding: 0.5em 1.2em;
  background: rgba(0, 0, 0, 0);
  border: 2px solid;
  border-color: #212121;
  transition: all 1s ease;
  position: relative;
  padding: 1rem 4.2rem;
  font-weight: 400;
  text-decoration: none;
  margin: 60px 0 20px 0;
}
html body .about-text .btn-my:hover {
  background: #8baea4;
  color: #fff;
  text-decoration: none;
  border: #8baea4;
}
html body .section {
  min-height: 100vh;
}
html body .section .title {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 4.3rem;
  color: #212121;
  padding-left: 30px;
  padding-bottom: 1em;
}
html body .section-content {
  font-family: "Source Sans Pro", sans-serif;
  max-width: 100vw;
  margin: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
html body .section-content-images {
  border: 1px solid #b7f0ca;
  width: 600px;
  margin: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
html body .section-content-images:hover {
  transform: scale(1.03);
}
html body .section-content-images img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
html body .section-content-images-opinion {
  color: #212121;
  margin: 10px;
}
html body .section-content-images-tag {
  display: inline-block;
  padding: 4px 8px;
  background-color: #b7f0ca;
  color: #212121;
  font-size: 0.8rem;
  border-radius: 12px;
  margin-right: 4px;
  margin-bottom: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
html body .section-content-images-tag:hover {
  background-color: #b8ddc4;
  cursor: pointer;
}
html body .section-content-images-title {
  font-size: 1.5rem;
  color: #212121;
  margin: 10px;
}
html .contact {
  max-width: 100vw;
  height: 400px;
  margin-top: 90px;
  margin-left: 30px;
}
html .contact .Escribime {
  font-size: 4rem;
  color: #212121;
  margin-bottom: 50px;
}
html .contact .btn-contact {
  color: #212121;
  font-size: 20px;
  background: rgba(0, 0, 0, 0);
  border: 2px solid;
  border-color: #212121;
  transition: all 1s ease;
  position: relative;
  padding: 1rem 4.2rem;
  font-weight: 400;
  text-decoration: none;
}
html .contact .btn-contact:hover {
  background: #8baea4;
  color: #fff;
  text-decoration: none;
  border: none;
}
html .footer {
  max-width: 100vw;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
html .footer-a {
  margin: 1em;
  font-size: 2em;
}
html .footer-a:hover {
  color: #8baea4;
}
html .footer-a a {
  color: #212121;
}
html .footer-a a .fab {
  transition: transform 2s all;
  color: #212121;
}
html .footer-a a .fab:hover {
  color: #8baea4;
  transform: scale(1.1);
}/*# sourceMappingURL=style.css.map */