/* GLOBAL STYLES
 * Padding below the footer and lighter body text
* -------------------------------------------------- */
body {
    padding-bottom: 40px;
    color: #00008b;
    font-family: 'nicolanormal';
    background-image: url("/images/1760693.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
  }
  
  a {
      color: #00008b;
  }
  
  a:visited {
      color: #00008b;
  }
  
  a:active {
      color: #00008b;
  }
  
  .panel-primary > .panel-heading {
      background-color: #00008b;
      border-color: #00008b;
  }
  
  .content {
      margin-top: 80px;
      margin-bottom: 40px;
  }
  
  .table-borderless > tbody > tr > td,
  .table-borderless > tbody > tr > th,
  .table-borderless > tfoot > tr > td,
  .table-borderless > tfoot > tr > th,
  .table-borderless > thead > tr > td,
  .table-borderless > thead > tr > th {
      border: none;
  }
  
  .borderless {
      border: none;
  }
  
  .map {
      height: 300px;
      width: 100%;
  }
      
  /* CUSTOMIZE THE LOGO
  -------------------------------------------------- */
  .logo {
      margin-top: 5px;
  }
  
  /* CUSTOMIZE THE NAVBAR
  -------------------------------------------------- */
  
  /* Special class on .container surrounding .navbar, used for positioning it into place. */
  .navbar-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
  }
  
  /* Flip around the padding for proper display in narrow viewports */
  .navbar-wrapper > .container {
    padding-right: 0;
    padding-left: 0;
  }
  .navbar-wrapper .navbar {
    padding-right: 15px;
    padding-left: 15px;
  }
  .navbar-wrapper .navbar .container {
    width: auto;
  }
  
  /* CUSTOMIZE THE CAROUSEL
  -------------------------------------------------- */
  
  /* Carousel base class */
  .carousel {
    height: 500px;
    margin-bottom: 60px;
  }
  .carousel-caption {
    z-index: 10; /* Since positioning the image, we need to help out the caption */
  }
  
  /* Declare heights because of positioning of img element */
  .carousel .item {
    height: 500px;
    background-color: #777;
  }
  .carousel-inner > .item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 500px;
  }
  
  
  /* RESPONSIVE CSS
  -------------------------------------------------- */
  
  @media (min-width: 768px) {
      /* Navbar positioning foo */
      .navbar-wrapper {
          margin-top: 20px;
      }
      .navbar-wrapper .container {
          padding-right: 15px;
          padding-left: 15px;
      }
      .navbar-wrapper .navbar {
          padding-right: 0;
          padding-left: 0;
          border-radius: 4px; /* The navbar becomes detached from the top, so we round the corners */
      }
      
      /* Bump up size of carousel content */
      .carousel-caption p {
          margin-bottom: 20px;
          font-size: 21px;
          line-height: 1.4;
      }
    
  }
  
  @media (max-width: 991px) {
      .content {
          margin-top: 100px;
      }
  
      .logo {
          margin-top: 10px;
          width: 60%;
      }
      
      .carousel {
          height: 300px;
      }
  
      .carousel .item {
          height: 300px;
      }
  
      .carousel-inner > .item > img {
          height: 300px;
      }
      
  }
  
  @media (max-width: 767px) {
      .content {
          margin-top: 60px;
      }
  
      .logo {
          margin-top: 10px;
          width: 80%;
      }
      
      .carousel {
          height: 150px;
          margin-top: 50px;
      }
  
      .carousel .item {
          height: 150px;
      }
  
      .carousel-inner > .item > img {
          height: 150px;
      }
      
      h1 {
          font-size: 18px;
      }
      
      h2 {
          font-size: 16px;
      }
      
      h3 {
          font-size: 14px;
      }
      
      p {
          font-size: 12px;
      }
  }
  
  
  