* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;

  font-family: Montserrat, FontAwesome;
}

::selection {
  background-color: white;
  color: #333;
}

/* Fonts */
nav a {
  font-family: Montserrat;
  font-weight: 800;
  color: #333;
  margin: 0 5px 0 5px;
  font-size: 1.2rem;
}

/* List */
  ul {
    max-height: 450px;
    height: auto;
    overflow: auto;
  }

/* Scroll */
  /* width */
  ::-webkit-scrollbar {
    width: 10px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

/* Card */
.card h3 {text-transform: capitalize; font-weight: 600;}

/* Hero */
.img-hero {
  background: url(../assets/img/hero.jpg) center / cover;
  width: 100%;
  height: 230px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.text-hero {
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
}

/* Search */
/* .search {
  border: none;
  border-bottom: 1px solid #FFF;
  width: 90%;
  background: none;
  outline: 0;
  color: white;
} */

.search {
  width: 90%;
  border: 1px solid white;
  border-radius: 20px;

  background: none;
  outline: 0;
  color: white;

  padding: 5px 20px;
}

input.search::placeholder {
  color: white;
}

i {padding-right: 10px;}

.collapsing {
  transition: none !important;
}

@media (min-width: 768px) {
  .col-md-2 {
    flex: 0 0 20% !important;
    max-width: 20% !important;
  }
}

@media (max-width: 600px) {
  .navbar-brand img {
    width: 70vw !important;
  }
}

@media (max-width: 400px) {
  .navbar-brand img {
    width: 60vw !important;
  }
}