/* Estilos generales */

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #00394d;
  text-align: justify;
}

a {
  color: #ffe6f2;
  text-decoration: none;
}

a:hover {
  color: #ff80bf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
}

strong {
  color: #c06;
  font-weight: bold;
}


/* Header */

#header {
  z-index: 997;
  transition: all 0.5s;
  height: 80px;
  background: rgba(25, 28, 31, 0.8);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  height: 60px;
  background: rgba(25, 28, 31, 0.8);
}



/* Barra de navegacion - Tamanyos grandes (desktop) */

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-projs: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-projs: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #ffe6f2;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #c06;
}

.navbar .btn-lang {
  font-size: 1rem;
  font-family: "Oswald", sans-serif;
  color: #ffe6f2;
  border-color: #ffe6f2;
  background-color: #cc006680;
}

/* Barra de navegacion - Tamanyos pequenyos (dispositivos moviles) */

.mobile-nav-toggle {
  color: #ffe6f2;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(36, 41, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #ffe6f2;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 14px;
  color: #3b434a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #c06;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


/* Seccion Hero */
#hero {
  width: 100%;
  height: 100vh;
  background: url("../images/hero-img-fall.png") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(12, 0, 7, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
  padding: 0 120px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 60px;
  font-family: "Permanent Marker", cursive;
  color: #ffccdc;
  text-transform: uppercase;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 44px;
  font-family: 'Caveat', cursive;
  letter-spacing: 1px;
}

#hero h3 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 22px;
  opacity: 0.6;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#hero .btn-scroll {
  transition: 0.4s;
  color: rgba(255, 204, 220, 0.5);
  text-align: center;
  margin-top: 100px;
}

#hero .btn-scroll i {
  font-size: 48px;
}

#hero .btn-scroll:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 575px) {
  #hero h1 {
    text-align: center;
    font-size: 40px;
  }

  #hero h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}


/* Estilos generales secciones */
section {
  padding: 60px 0;
}

.section-bg {
  background-color: white;
}

.section-head {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-head h1 {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #cc0066;
  position: relative;
  z-index: 2;
}

.section-head h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 0;
  color: #0086b3;
  position: relative;
  z-index: 2;
}

.section-head p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-head h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-head h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

}

/* Seccion sobre mi */

/* Subseccion contacto - iconos */
.contact-icons a {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px;
	margin: 20px;
	border: 2px solid rgb(0, 134, 179);
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.contact-icons i {
	color: rgb(0, 134, 179);
	font-size: 1.75rem;
	transition: all 0.3s ease-in-out;
}

.contact-icons a:hover{
	background-color: rgb(204, 0, 102);
	border: 2px solid rgb(204, 0, 102);
}

.contact-icons a:hover i {
	color: rgb(255, 204, 230);
}

.sobremi .btn-contact {
  font-size: 1.5rem;
  margin: 40px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  background-color: #c06;
}


/* Seccion my-work */

.my-work {
  background-color: #e0ebe5;
  padding-bottom: 70px;
  text-align: center;
}

.my-work h1 {
	color: #405953;
}

.my-work .row {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #f1f4f3;
}

.my-work .row h1 {
  font-size: 32px;
  font-family: 'Raleway', sans-serif;
  color: #c06;
  margin-bottom: 0;
  padding-bottom: 10px;
  /* padding-left: 30px;*/
}

.my-work .row p {
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  text-align: justify;
  color: #005e80;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 40px;
  padding-bottom: 20px;
}

.my-work .row a {
  color: #00384d;
  font-weight: bold;
}

.my-work .row a:hover {
  color: #c06;
  font-weight: bold;
}

.my-work .row i {
  font-size: 5em;
  color: #c06;
}



/* Seccion contacto */

.contacto .row .card {
	border-color: rgba(0, 134, 179, 0.6);
}

.contacto .row .card:hover {
	background-color: #cc0066;
	border-color: rgba(204, 0, 102, 0.4);
	transition: 0.3s all ease;
	color: #ffcce6;
}

.contacto .row .card-body .card-icono i {
	font-size: 6em;
	color: #0086b3;
}

.contacto .row .card:hover .card-body .card-icono i {
	font-size: 6em;
	color: #ffcce6;
}

.contacto .row .card .card-body {
	text-align: center;
	color: #0086b3;
}

.contacto .row .card .card-text {
	font-size: 16px;
}

.contacto .row .card:hover .card-body {
	color: #ffcce6;
}

.contacto .row .card .card-body h5 {
	font-size: 1em;
}

.contacto .row .card-body i {
	font-size: 2em;
	color: #ffcce6;
}

.contacto .row .card-body i:hover {
	color: #ffffff80;
}

.contacto .row .card .contacto-wrap {
	visibility: hidden;
	color: #fff;
}

.contacto .row .card:hover .contacto-wrap {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}


/* Footer */

#footer {
  color: #d8ddde;
  background-color: #00394d;
  font-size: 14px;
  padding: 50px 0;
  position: relative;
}

#footer .container {
  position: relative;
}

#footer h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer .footer-head h1 {
  font-size: 32px;
  font-family: "Permanent Marker", cursive;
  text-transform: uppercase;
  color: #ff4d85aa;
}

#footer .footer-head h2 {
  font-size: 28px;
  font-family: 'Caveat', cursive;
  letter-spacing: 1px;
}

#footer .footer-head h3 {
  margin: 0 0 50px 0;
  font-size: 14px;
  opacity: 0.6;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer a {
  color: #d8ddde;
}

#footer .social-links {
  display: flex;
}

#footer .social-links i {
  font-size: 22px;
  margin: 0 10px 15px 0;
  display: flex;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  padding: 2px 0;
  margin-right: 4px;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

