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

/*---General---*/
html, body {
  height: 100%;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  color: #222;
}


/*---Navbar---*/
.navbar .padding{
  padding.bottom: 2rem;
}

.navbar{
  padding: 0.8rem
}

.navbar-nav li {
  padding-right: 20px;
}

.nav-link {
  font-size: 1.1em !important;
}

/*---Carousel---*/
.carousel-inner img{
  width: 100%;
  height: 100%;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-caption h1 {
  text-shadow: 1px 1px 1px #57342d;
}

/*--Search section--*/
.jumbotron h1 {
  text-shadow: 2px 2px 2px #200b0a;
}
.jumbotron h3 {
  text-decoration: underline;
}

.jumbotron button {
  padding-rigth: 10rem;
  font-size: 40px;
}

/*---Associations entrance---*/
.welcome {
  width: 75%
  margin:0 auto;
  padding-top: 2rem;
}

.welcome hr {
  border-top: 2px solid #57342d
  width:95%;
  margin-top: .3rem;
  margin-bottom: 1rem;
}


/*-- Association cards--*/
.card img{
  height:150px;
  width:100%;
}

.card div [class^="col-"]{
  padding-left:5px;
  padding-right:5px;
}

.card{
  transition:0.5s;
  cursor:pointer;
}
.card-title{
  font-size:15px;
  transition:1s;
  cursor:pointer;
}
.card-title i{
  font-size:15px;
  transition:1s;
  cursor:pointer;
  color:#ffa710
}
.card-title i:hover{
  transform: scale(1.25) rotate(100deg);
  color:#18d4ca;

}
.card:hover{
  transform: scale(1.05);
  box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
}
.card-text{
  height:80px;
}

.card::before, .card::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale3d(0, 0, 1);
  transition: transform .3s ease-out 0s;
  background: rgba(255, 255, 255, 0.1);
  content: '';
  pointer-events: none;
}
.card::before {
  transform-origin: left top;
}
.card::after {
  transform-origin: right bottom;
}
.card:hover::before, .card:hover::after, .card:focus::before, .card:focus::after {
  transform: scale3d(1, 1, 1);
}

/*---Media Queries --*/
@media (max-width: 992px) {

  }
@media (max-width: 768px) {

}
@media (max-width: 576px) {

}





/*
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) { ... }
*/
