<style>

/* ===== GENERAL ===== */
body {
  font: 400 15px 'Lato', sans-serif;
  line-height: 1.8;
  color: #555;
  background-color: #f8fbfd;
}

h2 {
  font-size: 26px;
  text-transform: uppercase;
  color: #2a7fba;
  font-weight: 700;
  margin-bottom: 30px;
}

h4 {
  font-size: 18px;
  line-height: 1.5em;
  color: #444;
  margin-bottom: 20px;
}

/* ===== HERO SECTION ===== */
.jumbotron {
  background: linear-gradient(rgba(42,127,186,0.9), rgba(42,127,186,0.9)),
              url('cover.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 25px;
  font-family: 'Montserrat', sans-serif;
}

.jumbotron h1 {
  font-size: 42px;
  font-weight: 700;
}

/* ===== LAYOUT ===== */
.container-fluid {
  padding: 70px 60px;
}

.bg-grey {
  background-color: #eef6fb;
}

/* ===== ICONS ===== */
.logo-small {
  color: #b08d57; /* bronze */
  font-size: 50px;
}

.logo {
  color: #2a7fba;
  font-size: 180px;
}

/* ===== CARDS / PANELS ===== */
.panel {
  border: none;
  border-radius: 10px !important;
  transition: 0.3s;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.panel:hover {
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.panel-heading {
  background-color: #2a7fba !important;
  color: #fff !important;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
}

.panel-footer {
  background-color: #fff !important;
  padding: 20px;
}

.panel-footer .btn {
  background-color: #2a7fba;
  color: #fff;
  border-radius: 25px;
  padding: 10px 25px;
  border: none;
}

.panel-footer .btn:hover {
  background-color: #b08d57;
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  margin-bottom: 0;
  background-color: #2a7fba;
  border: none;
  font-size: 13px !important;
  letter-spacing: 2px;
  border-radius: 0;
}

.navbar .navbar-brand {
  color: #fff !important;
  font-weight: bold;
}

.navbar li a {
  color: #fff !important;
}

.navbar-nav li a:hover,
.navbar-nav li.active a {
  color: #2a7fba !important;
  background-color: #fff !important;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background-color: #2a7fba;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
}

.btn-primary:hover {
  background-color: #b08d57;
}

/* ===== CAROUSEL ===== */
.carousel-control.right,
.carousel-control.left {
  background-image: none;
  color: #2a7fba;
}

.carousel-indicators li {
  border-color: #b08d57;
}

.carousel-indicators li.active {
  background-color: #2a7fba;
}

/* ===== FOOTER ===== */
footer {
  background-color: #2a7fba;
  color: #fff;
  padding: 30px 0;
}

footer .glyphicon {
  color: #b08d57;
  font-size: 20px;
}

/* ===== ANIMATION ===== */
.slideanim { visibility:hidden; }

.slide {
  animation: slide 1s forwards;
}

@keyframes slide {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
  .col-sm-4 {
    text-align: center;
    margin: 25px 0;
  }

  .jumbotron h1 {
    font-size: 28px;
  }
}

</style>