
/*  FIXED HEADER SETUP  */

body{
  padding-top: 93px;
}

/*  CARDS  */

.card{
  margin: 5% 0%;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.card-body{
  margin: 0% 0% 0% 3%;
  padding: 6%;
}

/*  JUMBOTRON  */

.jumbotron video {
  position: absolute;
  z-index: 1;
  top: 0;
  width:100%;
  height:100%;
  /*  object-fit is not supported on IE  */
  object-fit: cover;
  opacity:0.5;
}
.jumbotron .container {
  z-index: 2;
  position: relative;
}

/*  LOGO LIST  */

.logo-list {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
.logo-list img {
    display: inline-block;
    max-width: 85%;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    -webkit-filter: grayscale(100);
    -moz-filter: grayscale(100);
    filter: grayscale(100);
}
.logo-list img:hover {
    filter: none;
    transform: scale(1.2);
    -webkit-filter: none;
    -moz-filter: none;
}

/*  FA ICONS  */

.fab{
  color: darkslategray;
  font-size: x-large;
}

.fab:hover{
  color: gray;
}

/*  Footer responsive  */

@media screen and (max-width: 600px) {
  #desktop_footer {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  #mob_footer {
    display: none;
  }
}
