@import url("https://fonts.googleapis.com/css?family=Quicksand:400,700&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 100px;
  background: rgb(0, 0, 0, 0.6);
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
}

header .logo {
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  float: left;
}

header .logo a{
  color: #fff !important;
}


header nav {
  float: right;
}

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}

header nav ul li {
  list-style: none;
}

header nav ul li a {
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 18px;
}

header nav ul li a.active,
header nav ul li a:hover {
  color: #fff;
  background: #7c657c;
}

.menu-toggle {
  color: #fff;
  float: right;
  line-height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.line-1 {
  position: relative;
  top: 50%;
  width: 21em;
  margin: 0 auto;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  font-size: 180%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(-50%);
}

/* Animación */
.anim-typewriter {
  animation: typewriter 5s steps(44) 1s 1 normal both,
    blinkTextCursor 500ms steps(24) infinite normal;
  top: 25px;
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 12em;
  }
}
@keyframes blinkTextCursor {
  from {
    border-right-color: rgba(255, 255, 255, 0.75);
  }
  to {
    border-right-color: transparent;
  }
}
@media (max-width: 991px) {
  header {
    padding: 0 20px;
    position: fixed;
    background: rgb(0, 0, 0, 0.9);
  }
  .menu-toggle {
    display: block;
  }
  header nav {
    position: absolute;
    width: 50%;
    height: calc(100vh - 50px);
    background: #333;
    top: 50px;
    left: -100%;
    transition: 0.5s;
    text-align: center;
  }
  header nav.active {
    left: 0;
  }
  header nav ul {
    display: block;
  }
  header nav ul li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
}

h2 {
  font-family: "Quicksand";
  font-weight: bold;
  font-size: 35px !important;
  color: #6d6f71 !important;
}
/* Sección Hero */
.hero-section.text {
  width: 100%;
  height: 100vh;
  background: #161415
    url(../imagenes/portada2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-section.text h1 {
  color: white;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  font-size: xxx-large;
}
.hero-section.text h3 {
  color: white;
  display: flex;
  justify-content: center;
  font-family: sans-serif;
  font-size: 18px;
  padding-top: 20px;
}
.hero-section .links {
  display: flex;
  justify-content: center;
  justify-content: space-evenly;
  padding-top: 30px;
  position: relative;
  top: 38px;
}


.hero-section.text .fa-chevron-circle-down {
  color: white;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  font-size: larger;
  top: 80px;
  position: relative;
  animation: fa-chevron-circle-down 2s steps(30) infinite;
}
@keyframes fa-chevron-circle-down {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}


/* Sección Acerca de */
#about {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.boton{
  background: #7c657c !important;
  border-color: #7c657c !important;
}

.boton:hover{
  background: #393e46 !important;
  border-color: #7c657c !important;
}

.contain {
  padding: 64px;
  background-color: #f1f1f1;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.large-font {
  font-size: 52px;
}

.info {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 25px;
}
.para {
  font-size: 20px;
  font-weight: normal;
}

.bout h2 {
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

.skill {
  padding: 5px auto 10px;
  font-size: 40px;
  font-weight: bold;
  margin: 10px auto 20px;
}

.progress-bar {
  background-color: #393e46 !important;
}

.progress {
  margin-bottom: 10px;
  height: 30px;
  text-align: right; 
  color: white; 
}

/*Porcentajes Progress Bar*/
.a1 {
  width: 95%;
  font-weight: bold;
  font-size: 15px;
}
.a2 {
  width: 85%;
  font-weight: bold;
  font-size: 15px;
}
.a3 {
  width: 75%;
  font-weight: bold;
  font-size: 15px;
}
.a4 {
  width: 75%;
  font-weight: bold;
  font-size: 15px;
}
.a5 {
  width: 60%;
  font-weight: bold;
  font-size: 15px;
}

.a6 {
  width: 85%;
  font-weight: bold;
  font-size: 15px;
}

.a7 {
  width: 85%;
  font-weight: bold;
  font-size: 15px;
}

.a8 {
  width: 80%;
  font-weight: bold;
  font-size: 15px;
}

.tex {
  font-size: 20px;
  margin-bottom: 0px;
}

.texto{
  font-weight: bold;
  color: #393e46 !important;
}

.contact-container .left {
  padding-left: 90px;
  display: flex;
  align-items: center;
  text-align: center;
}

.contact-container .left img{
  margin-right: 20px;
  width: 250px ;
  height: 250px;
  border-radius:125px;
   }

.contact-container p{
  margin-top: 10px;
  color: #6d6f71;
  font-size: 16px;
  font-weight: 600;
}

/* Sección Proyecto */

.dev-card{
    height: 580px;
  
}
.dev-card .card:hover {
  box-shadow: 0px 6px 6px #00000029;
  transition: 0.8s;
}
.dev-card .card {
  transition: 0.8s;
}
.dev-card .card p {
  font-size: 16px;
  color: black;
  text-decoration: none;
}
.dev-card img {
  height: 80%;
}

@import url(https://fonts.googleapis.com/css?family=Montserrat);

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  font-size: calc(10px + 0.25vw);
}

a {
  text-decoration: none;
  color: #fff;
}

h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

footer {
  background: #393e46;
  padding-bottom: 20px;
  padding-top: 10px;
 
}

.nav-container {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: -3%;
}

.up-nav {
  background-color: #ccc;
  border: 1px solid #ccc;
  border-radius: 100%;
  padding: 13.7px 20px;
  color: #000;
  font-size: 24px;
  transition: 0.3s linear;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap-reverse;
  color: white;
  font-size: 17px;
}

.logo {
  width: 180px;
}

.right-col h1 {
  font-size: 26px;
}

.border {
  width: 100px;
  height: 4px;
  background: #fff;
  margin: 10px 0;
}


/*RESPONSIVE*/
@media screen and (max-width: 960px) {
  /* .up-nav{
    position: relative;
    bottom: 120px;
    left: 650px;
  } */

  .footer-container {
    max-width: 600px;
  }
  .right-col {
    width: 100%;
    margin-bottom: 60px;
  }

  .left-col {
    width: 100%;
    text-align: center;
  }

  .dev-card{
    height: 100%;
  
}

.contact-container img {
  margin-right: 90px !important;
  margin-top: 50px !important;
}

}

@media screen and (max-width: 700px) {
  /* .up-nav{
    position: relative;
    bottom: 120px;
    left: 650px;
    right: 0;
  } */
  
  .nav-container {
    margin-top: -10%;
  }
  .button_news {
    margin: 0;
    width: 100%;
    margin-top: 20px;
  }

  .dev-card{
    height: 100%;
  
}

.contact-container img {
  margin-right: 90px !important;
  margin-top: 50px !important;
}

}

@media screen and (max-width: 880px) {
  .contact-container .content-box {
    grid-template-columns: 1fr;
  }
  .contact-container .left {
    height: 300px;
  }
  .contact-container .right {
    padding: 20px 20px;
  }

  .contact-container {
    padding: 20px 0px;
  }

  .dev-card{
    height: 100%;
  
}

.contact-container img {
  margin-right: 90px !important;
  margin-top: 50px !important;
}

}

.contact-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 100px;
  margin-top: 75px;
}

.contact-container:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
  filter: blur(50px);
}

.content-box {
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;

  align-items: center;
  text-align: center;
  background: #fff;
  box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.2);
}

.contact-container .left {
  background-size: cover;
  height: 100%;
}

.contact-container .right {
  padding: 20px 40px;
}

.contact-container h2 {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.contact-container h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 50px;
  border-radius: 2px;
  background-color: #393e46;
}

.contact-container .field {
  padding: 0.5rem 1rem;
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0);
  background: rgba(230, 230, 230, 0.6);
  font-size: 1.1rem;
  margin-bottom: 22px;
  transition: 0.3s;
  margin: 15px 0 0 0 !important;
}

.contact-container .field:hover {
  background: rgba(0, 0, 0, 0.1);
  outline: none;
}

.contact-container .field:focus {
  background-color: #fff;
  border: 2px solid rgba(30, 85, 250, 0.47);
}

.contact-container .area {
  min-height: 150px;
}

.contact-container .btn,
.contact-container .btn:hover {
  width: 100%;
  height: 50px;
  background-color: #393e46;
  border: none;
  outline: none;
  color: #fff;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
}



