.alert {
    margin-bottom: 0;
    border-radius: 0;
    text-align:center;
    font-weight:bold;
    font-size:125%;
    color: #000;
  }

/* HOME PAGE CAROUSEL
======================== */

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  @media (min-width: 1280px) {
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      width: 100% !important;
      /* height: 700px !important; */
      }
  }
  .carousel-images .carousel-caption {
    padding: 0 0 50px 0;
  }
  @media (min-width:660px){
    .home-page-news {
      display:none!important;
    }
    .carousel-images .carousel-caption {
      background: none;
      font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    .carousel-caption a {
      color: white;
      text-decoration: underline;
    }
    .carousel-caption h1 {
      animation-duration:3s;
      text-align: center;
      color: white;
    }
    .carousel-caption .bannertext2 {
      animation-duration:3s;
      animation-delay:1s;
      font-size: 24px;
      text-align: center;
      color:  white;
      padding: 10px 10px 5px 10px;
      background-color: #404040;
    }
    .carousel-caption .bannertext3 {
      animation-duration:3s;
      animation-delay:2s;
      font-size: 24px;
      text-align: center;
      color: #f24b27;
      font-weight: 600;
    }
    .carousel-caption .btn {
      animation-duration:3s;
      animation-delay:2s;
      text-decoration: none;
    }
  }
  @media (max-width:659px){
    .carousel-caption {
      display: none!important;
    }
    .home-page-news {
      background-color: #444;
    }
    .home-page-news h1 {
      color: white;
      font-size: 40px;
    }
    .home-page-news p {
      font-size: 20px;
      color: white;
    }
    .home-page-news a {
      font-size: 20px;
      color: white;
      text-decoration: underline;
    }
    .home-page-news .btn {
      text-decoration: none;
    }
    .home-page-news .bannertext3 {
      font-weight: 600;
      color: #f24b27;
      font-size: 20px;
    }
  }
  #news li {
    margin-bottom: 10px;
  }
  #news li:last-child {
    margin-bottom: 0;
  }

/* CARDS
======================== */

	.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .card {
    border: 1px solid #ccc;
    width: 300px;
    flex: 0 1 auto;
    margin: 0 auto 20px auto;
    padding-bottom: 15px;
    text-align: center;
  }
  @media screen and (min-width: 625px) {
    .card {
      width: 47%;
    }
  }
  .card img {
    width: 100%;
  }
  .card span {
    color: black;
    margin-left: 15px;
    margin-right: 15px;
    display: block;
  }
  .cardtitle {
    font-size: 40px;
    font-weight: 400;
  }
  .card:hover {
    text-decoration: none;
    box-shadow: 8px 8px 10px #ccc;
    background-color: #f1f1f1;
  }
  .margin-top-0 {
    margin-top: 0;
  }