/*--Generales--*/
body {
    font-family: "Open Sans", sans-serif;
    color: #272829;
  }

  a {
    color: #0563bb;
    text-decoration: none;
  }

  a:hover {
    color: #067ded;
    text-decoration: none;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
  }

  /* precarga */
  /* #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }

  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #0563bb;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }

  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } */
/*-- boton al inicio --*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0563bb;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #0678e3;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*-- Header --*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}
@media (max-width: 992px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 992px) {
  #main {
    margin-left: 100px;
  }
}

/* MENU NAVEGACION */

.nav-menu {
  padding: 0;
  display: block;
  /* background: red; */
}
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style:none;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}
.nav-menu a, .nav-menu:focus {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background-color: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i, .nav-menu a:focus i {
  font-size: 20px;
}
.nav-menu a span, .nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}
@media (min-width: 992px) {
  .nav-menu a, .nav-menu a:focus {
    width: 56px;
  }
  .nav-menu a span, .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}
.nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover > a {
  color: #fff;
  background: #0563bb;
  /* background-color: red; */
}
.nav-menu a:hover span, .nav-menu .active span, .nav-menu .active:focus span, .nav-menu li:hover > a span {
  color: #fff;
}
.nav-menu a:hover, .nav-menu li:hover > a {
  width: 100%;
  color: #fff;
}
.nav-menu a:hover span, .nav-menu li:hover > a span {
  display: block;
}

/* --- Mobile Navigation --*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: #0563bb;
  color: #ddd;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}
.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active #header {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #0563bb;
}
/* -- Fin nav menu -- */


/* -- Hero -- */

.parrafo{
  font-size: 1.5rem;
}
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg2.jpg") top right no-repeat;
  background-size: cover;
  position: relative;
}
@media (min-width: 992px) {
  #hero {
    padding-left: 160px;
  }
}
#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #45505b;
}
#hero span {
  color: #0563bb;
  letter-spacing: 1px;
  font-weight: 700;
}
#hero .social-links {
  margin-top: 30px;
}
#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #45505b;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}
#hero .social-links a:hover {
  color: #0563bb;
}
@media (max-width: 992px) {
  #hero {
    text-align: center;
  }
  #hero h1 {
    font-size: 45px;
    line-height: 36px;
  }
  #hero p {
    margin-top: 10px;
    font-size: 25px;
    line-height: 24px;
  }
}


/*--- Seccion General ---*/
section,
.section {
  padding: 50px 0 20px;
  overflow: hidden;
  /* background-color: red; */
}

.section-titulo {
  text-align: center;
  padding-bottom: 30px;
}
.section-titulo h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}
.section-titulo h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-titulo h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0563bb;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-titulo p {
  margin-bottom: 0;
}

/* Sobre mi  */
.sobremi .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #728394;

}

.sobremi ul {
  list-style: none;
  padding: 0px;
}

.sobremi .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.sobremi .content ul strong {
  margin-right: 10px;
}

.sobremi i {
  color:#0563bb;
  font-size: 20px;
}
.sobremi p{
  padding-bottom: 0;
  margin-bottom: 0;
}
.sobremi .image {

  max-width: 80%;
  height: auto;
  border-radius: 50%;
  -webkit-box-shadow: 10px 5px 54px -37px rgba(5,99,187,0.95);
  -moz-box-shadow: 10px 5px 54px -37px rgba(5,99,187,0.95);
  box-shadow: 10px 5px 54px -37px rgba(5,99,187,0.95);

}
/*--- Hechos ---*/

.hechos i {

  font-size: 40px;
  color: #0563bb;

}

.hechos .contador span{
    font-size: 36px;
    display: block;
    font-weight: 700;
    color: #011426;

}

/* Habilidades  */

/* .fondoh{
  background:#45505b;
  border: solid 2px rgb(10, 12, 129);
  color: #ddd;
} */

/* .fondoh2{
  background:#64f007;
  border: solid 2px rgb(238, 7, 7);
  color: black;
} */
.habilidades img{

  max-width: 80%;
  height: auto;
  border-radius: 50%;
  -webkit-box-shadow: 10px 5px 54px -37px rgba(5,99,187,0.95);
  -moz-box-shadow: 10px 5px 54px -37px rgba(5,99,187,0.95);
  box-shadow: 10px 5px 54px -37px rgba(5,99,187,0.95);
}
.habilidades  p {
  /* padding: 0 0 0 60px; */
  margin-bottom: 10px;
  font-size: 14px;
  color: #728394;
}
.habilidades  h4 {
  padding-bottom: 1rem;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #45505b;

}
.habilidades i {
  display: flex;
  flex-direction: column;
  font-size: 40px;
  color: #0563bb;
  text-align: center;
}

.habilidades .contador span{
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #011426;
  text-align: center;
}

/* skill */
.habilidades2 .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.habilidades2 .progress i {

  font-size: 15px;
  color: #0563bb;
}
.habilidades2 .progress .habilidad {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #45505b;
}
.habilidades2 .progress .habilidad .val {
  float: right;
  font-style: normal;
}
.habilidades2 .progress-bar-wrap {
  background: #ccd5e0;
  height: 10px;

}
.habilidades2 .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  
}

/* resume */

.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}
.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #0563bb;
  position: relative;
}
.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}
.resume .resume-item ul {
  padding-left: 20px;
}
.resume .resume-item ul li {
  padding-bottom: 10px;
}
.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #0563bb;
}

/* Carrusel  */
/* .swiper {
  width: 900px;
  height: 00px;
} */
/* .swiper img{
  border-radius: 50%;
  border: solid 1px #fff;
  margin: auto;
} */


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
}
.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #90c8fc;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0563bb;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/* Contacto  */
.contacto .info {
  width: 100%;
  background-color: #fff;

}

.contacto .info i {
  font-size: 32px;
  color: #0563bb;
  float: left;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contacto .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}

.contacto .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
}

.contacto, .correo, .celular{
  margin-top: 40px; 
}

/* .contact .info, .correo:hover i,
.contact .info, .direccion:hover i,
.contact .info, .celular:hover i {

  background: #0563bb;
  color: #fff;
} */

/*--- Formulario correo --- */

.email_form {
  width: 100%;
  background: #fff;
}

.email_form input[type=submit] {
  margin: 10px;
  background: #0563bb;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  border: 1px solid #fff;
}

.email_form input[type=submit]:hover {

  background: white;
  color: #0563bb;
  border: 1px solid #0563bb;
}

/* footer */
#footer {
  background: #f7f8f9;
  color: #45505b;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}
#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  /* font-family: "Poppins", sans-serif; */
  padding: 0;
  margin: 0 0 15px 0;
}
#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  /* margin: 0 0 40px 0; */
}


/* #footer .social-links {
  margin: 0 0 40px 0;
} */
#footer .social-links a {
  font-size: 2rem;
  display: inline-block;
  /* background: #0563bb; */
  /* color: #fff; */
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .copyright {
  margin: 0 0 5px 0;
}
#footer .credits {
  font-size: 13px;
}

