/* Font */
/* Colors  */
/* General classes  */
.hide {
  display: none;
}

.show {
  display: flex !important;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 0.9;
  z-index: 11;
}

#unitedStates {
  cursor: pointer;
}

#mexico {
  cursor: pointer;
}

/* Navbar */
body {
  font-family: "Poppins", sans-serif;
  padding-top: 130px;
}

nav {
  background-color: #FAFAF7;
  display: flex;
  font-size: 21px;
  padding: 20px;
}
nav .nav__name {
  color: #28AFB0;
  font-size: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 30px;
  width: 190px;
}
nav .position {
  color: #5762D5;
  line-height: 25px;
  font-size: 18px;
  font-weight: 500;
}
nav #menu_icon {
  display: none;
}
nav #close_icon {
  display: none;
}
nav #menu__container {
  display: flex;
  align-items: center;
  width: 92%;
  justify-content: space-around;
}
nav #menu__container .navbar__menu {
  display: flex;
  width: 85%;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
  margin-left: 40px;
}
nav #menu__container .navbar__menu a {
  color: #080357;
  font-weight: 500;
  cursor: pointer;
}
nav #menu__container .navbar__menu a :hover {
  color: #F4D35E;
  transform: scale(1.1);
  transition: 300ms;
}
nav #menu__container .navbar__menu div {
  align-items: center;
  display: flex;
  justify-content: center;
}
nav #menu__container .navbar__menu div span {
  margin-left: 10px;
}

#about {
  background-color: #080357;
}
#about .hero {
  background-image: url("/images/hero-bg.png");
  background-size: cover;
  height: 380px;
}
#about .hero .hero__content {
  background-color: rgba(4, 3, 18, 0.71);
  color: white;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: space-around;
}
#about .hero .hero__content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  line-height: 70px;
  font-weight: 400;
}
#about .hero .hero__content h1 .blue-rectangle {
  background-color: #5762D5;
  padding-left: 5px;
  padding-right: 5px;
}
#about .hero .hero__content h1 .red-rectangle {
  background-color: #EC4067;
  padding-left: 5px;
  padding-right: 5px;
}

.hero__description {
  margin: 0 auto;
  width: 90%;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero__description h2 {
  color: #FAFAF7;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 45px;
}
.hero__description p {
  font-size: 20px;
  line-height: 34px;
  color: #FAFAF7;
  margin-bottom: 20px;
  font-weight: 400;
}
.hero__description .focus {
  font-weight: 600;
}
.hero__description .focus span {
  color: #F4D35E;
}

#projects {
  background-color: #5762D5;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#projects h2 {
  color: #FAFAF7;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}
#projects .instructions {
  align-self: flex-start;
  margin-left: 170px;
  color: #FAFAF7;
  font-size: 20px;
  margin-top: 30px;
}
#projects .project-line {
  display: flex;
  width: 85%;
  margin: 30px 0;
  justify-content: space-around;
}
#projects .project-line .project__card {
  width: 538px;
  height: 370px;
  background-color: #FAFAF7;
  padding: 15px;
  border-radius: 7px;
}
#projects .project-line .project__card .card__image {
  height: 271px;
  position: relative;
  cursor: pointer;
}
#projects .project-line .project__card .card__image .decription__background {
  align-items: center;
  background-color: rgba(4, 3, 18, 0.71);
  color: #FAFAF7;
  font-size: 18px;
  line-height: 28px;
  display: none;
  height: 271px;
  justify-content: center;
  padding: 0px 20px;
  position: absolute;
  top: 0px;
}
#projects .project-line .project__card .card__image .decription__background p {
  margin-top: 0px;
  font-weight: 400;
}
#projects .project-line .project__card h3 {
  font-size: 20px;
  margin-top: 10px;
  font-weight: 600;
  color: #28AFB0;
}
#projects .project-line .project__card p {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 500;
}
#projects .project-line .project__card .buttons {
  display: flex;
  width: 60%;
  margin: 0 auto;
  margin-top: 15px;
  justify-content: space-around;
}
#projects .project-line .project__card .buttons .github {
  padding: 5px;
  text-align: center;
  width: 120px;
  border-radius: 5px;
  color: #020402;
  background-color: #F4D35E;
}
#projects .project-line .project__card .buttons .deployment {
  padding: 5px;
  text-align: center;
  width: 120px;
  border-radius: 5px;
  color: #FAFAF7;
  background-color: #28AFB0;
}

.github:hover {
  background-color: #080357 !important;
  color: #FAFAF7 !important;
  transition: 0.4s;
}

.deployment:hover {
  background-color: #080357 !important;
  color: #FAFAF7 !important;
  transition: 0.4s;
}

#Skills {
  padding: 40px;
}
#Skills h2 {
  color: #080357;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
#Skills h3 {
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 30px;
  margin-left: 130px;
}
#Skills .skills__container {
  width: 80%;
  margin: 0 auto;
  padding: 25px;
  box-shadow: 3px 3px 30px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  border-radius: 11px;
}
#Skills .skills__container .line {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px 0px;
}

#Contact {
  animation: slowshow;
  animation-duration: 2s;
  animation-timing-function: ease;
  background-color: #020402;
  padding: 40px 0;
}
#Contact h2 {
  color: #FAFAF7;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}
#Contact .information__container {
  display: flex;
  justify-content: space-around;
  width: 85%;
  margin: 0 auto;
}
#Contact .information__container div {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
#Contact .information__container img {
  margin-right: 20px;
}
#Contact .information__container p {
  color: #FAFAF7;
  font-size: 24px;
}
#Contact .socialmedia {
  width: 72%;
  margin: 0 auto;
  margin-top: 40px;
}
#Contact .socialmedia a {
  margin-left: 30px;
}

/* Animations */
@keyframes showElement {
  from {
    opacity: 0.1;
    transform: translateY(-15%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes showElement2 {
  from {
    opacity: 0.1;
    transform: translateY(-15%);
  }
  25% {
    display: block;
    transform: translateY(0%);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.showOnScroll {
  animation: showElement 900ms linear;
}

.showOnScroll2 {
  animation: showElement2 1400ms linear;
}

/* Media queries */
@media (max-width: 1370px) {
  nav #menu__container .navbar__menu {
    width: 100%;
  }

  #projects .project-line {
    width: 95%;
  }

  #Skills h3 {
    margin-left: 0px;
  }
  #Skills .skills__container {
    width: 95%;
  }
}
@media (max-width: 1212px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  nav .nav__name {
    width: 600px;
    text-align: center;
    margin-bottom: 10px;
  }
  nav #menu__container .navbar__menu {
    margin-left: 0;
  }

  #projects .instructions {
    margin-bottom: 30px;
  }
  #projects .project-line {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
  #projects .project-line .project__card:nth-child(2n) {
    margin-top: 30px;
  }
}
@media (max-width: 1150px) {
  #Skills .skills__container {
    width: 95%;
  }
  #Skills .skills__container .line {
    flex-direction: column;
    padding: 0px 20px;
  }
  #Skills .skills__container .line img {
    margin-bottom: 30px;
  }
  #Skills .skills__container .line img:first-child {
    margin-top: 30px;
  }
  #Skills .skills__container .line:first-child {
    margin-bottom: 0px;
  }
  #Skills .skills__container .line:nth-child(2n) {
    margin-top: 0px;
  }
}
@media (max-width: 1050px) {
  #about .hero {
    height: 450px;
  }
  #about .hero .hero__content {
    flex-direction: column-reverse;
  }
  #about .hero .hero__content img {
    margin-top: 40px;
  }
  #about .hero .hero__content h1 {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  #Contact .information__container {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
  #Contact .information__container div {
    justify-content: center;
  }
  #Contact .socialmedia {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 850px) {
  nav .language {
    margin-top: 15px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  nav .lang {
    display: none;
  }
  nav #menu_icon {
    display: block;
  }
  nav #menu__container {
    display: none;
  }
  nav #menu__container .navbar__menu {
    flex-direction: column;
    width: 150px;
    align-items: flex-start;
  }
  nav #menu__container .navbar__menu a {
    margin-top: 20px;
  }

  #about .hero {
    height: 500px;
  }
  #about .hero .hero__content h1 {
    font-size: 27px;
  }
  #about .hero__description h2 {
    font-size: 24px;
  }
  #about .hero__description p {
    font-size: 18px;
    line-height: 34px;
  }

  #projects .instructions {
    margin-left: 80px;
  }
}
@media (max-width: 600px) {
  .wrapper {
    width: 100vw;
  }

  nav .nav__name {
    width: 100%;
  }

  #about .hero {
    height: 650px;
  }
  #about .hero .hero__content h1 {
    margin: 20px;
  }
  #about .hero .hero__content img {
    margin-top: 40px;
  }

  #projects .project-line .project__card {
    width: 350px;
    height: auto;
  }
  #projects .project-line .project__card .card__image {
    height: auto;
  }
  #projects .project-line .project__card .card__image img {
    width: 350px;
  }
  #projects .project-line .project__card .card__image .decription__background {
    height: 180px;
  }
  #projects .project-line .project__card .card__image .decription__background p {
    font-size: 16px;
  }
  #projects .project-line .project__card .buttons {
    width: 100%;
  }

  #Skills h3 {
    margin-top: 30px;
  }
  #Skills .skills__container {
    margin: 0 auto;
    width: auto;
    overflow: hidden;
  }

  #Contact h2 {
    margin-bottom: 40px;
    font-size: 30px;
  }
  #Contact .information__container {
    margin: 0 auto;
    width: 100%;
  }
  #Contact .information__container div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 300px;
    margin: 0 auto;
  }
  #Contact .information__container div p {
    margin-top: 20px;
    margin-bottom: 30px;
    width: auto;
    font-size: 14px;
  }
  #Contact .socialmedia {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .sticky {
    width: 92%;
  }

  #about .hero {
    height: 450px;
  }
  #about .hero .hero__content h1 {
    line-height: 40px;
    font-size: 20px;
    margin: 20px;
  }
  #about .hero .hero__content img {
    margin-top: 40px;
  }
  #about .hero__description h2 {
    font-size: 18px;
    line-height: 30px;
  }
  #about .hero__description p {
    font-size: 16px;
    line-height: 26px;
  }

  #projects .instructions {
    margin-left: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */
