/* Cambiar el color de las líneas */
.navbar-toggler {
  border: 2px solid #fff; /* color del borde */
  padding:10px 10px 14px 10px;
}

.navbar-toggler-icon {
  background-image: none; /* quitamos el SVG predeterminado */
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #ffffff; /* color de las líneas */
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -10px;
}

.navbar-toggler-icon::after {
  top: 10px;
}


/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
  .areaPortafolio a.proyecto{
    width:25%;
  }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
  .titleContainer .titleBack{
    font-size: 5em;
  }
  .areaPortafolio a.proyecto{
    width:33.33%;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  .slider .areaInfo h2{
    font-size: 2em !important;
  }
  .titleContainer .titleBack{
    font-size: 4em;
  }
  .areaPortafolio a.proyecto{
    width:50%;
  }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	.areaPortafolio a.proyecto{
    width:100%;
  }
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	
}


@media screen and (max-width: 830px) {

}

@media screen and (max-width: 650px) {
	
}


@media screen and (max-width: 450px) {

}

