@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

/*Cambiar formato a bonito*/
html, body {
  height: 100%;
  width: 100%;
  font-familiar: 'Poppins', sans-serif;
  color: #222
}
.navbar {
  padding: 8rem; /*Espacio entre el contenido del elemento y su borde*/
}
.navbar-nav li {
  padding-right: 20px;
}
.nav-link {
  font-size: 1.1em !important;
}

.nav-link:hover {
  color: #c0a8a1 !important;
}

.carousel-inner img{
  width: 100%;
  height: 100%;
}
.jumbotron {
  padding: 1rem;
  border-radius: 0;
}
.padding {
  padding-bottom: 2rem;
} /*all padding class that we have defined along the html*/
.welcome{
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
}
.welcome hr{
  border-top: 2px solid #C99383;
  width: 95%;
  margin-top: .3rem ;
  margin-bottom: 1rem;
}
/*.fun {
  width: 100%;
  margin-bottom: 2rem;
}*/
/* Formato y colores emojis redes sociales*/
.social a {
  font-size: 4.5em;
  padding: 3em;
}
.fa-facebook {
  color: #3b599a
}
.fa-twitter {
  color:#00aced;
}
.fa-google-plus-g {
  color: #dd4b39
}
.fa-instagram {
  color: #517fa4
}
.fa-youtube {
  color: #bb0000
}
/*to change the color to grey of the emojis*/
.fa-facebook:hover,
.fa-twitter:hover,
.fa-google-plus-g:hover,
.fa-instagram:hover,
.fa-youtube:hover {
  color: #C99383;
} 
.rounded-circle{
-webkit-box-shadow: 0 30px 60px 0 rgba(70, 47, 36, 0.3);
box-shadow: 0 30px 60px 0 rgba(71, 47, 36, 0.3);
}

.btn-outline-secondary:hover {
  background-color: #c0a8a1 !important;
}


/*---Media Queries --*/
/*se ao final poño carrusel facerrr*/
/* Resize some stuffs */
@media (max-width: 992px) { /*only social*/
  .social a {
    font-size: 4em;
    padding: 2rem
  }
  }
@media (max-width: 768px) {
  .display-4 {      /**/
    font-size: 200%;
  }
  .social a {
    font-size: 2.5em;
    padding: 1.2rem
  }
}
@media (max-width: 576px) {
  .display-4 {
    font-size: 160%;
  }
  .social a {
    font-size: 2em;
    padding: .7rem
  }
}


/*---Firefox Bug Fix --*/
/*NON SEI QUE E*/
.carousel-item {
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
/*--- Fixed Background Image --*/
figure {
  position: relative;
  width: 100%;
  height: 60%;
  margin: 0!important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#fixed {
  background-image: url('img/lab_back.jpg');
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}





/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/



