﻿@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

body {
    padding-top: 50px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
    font-family: "Open Sans",sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

/* Header Image Background - Change the URL below to your image path (example: ../images/background.jpg) */

.sosfilipijnen-header {
    height: 400px;
    background: url('../images/sos-filipijnen.jpg') center center no-repeat scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

/* Customize the text color and shadow color and to optimize text legibility. */

.tagline {
    text-shadow: 0 0 10px #000;
    color: #fff;
}

.img-center {
    margin: 0 auto;
}

footer {
    margin: 50px 0;
}

.navbar-brand img {
	margin: -12px 0 0 0;
}

/* Jumbotron style */

.jumbotron {
	background-color: #BD1A09;
	border-top: 5px solid #0A76C6;
	border-bottom: 5px solid #0A76C6;
	color: #FFFFFF;
	padding-top: 15px;
	padding-bottom: 30px;
}

.jumbotron h1, .jumbotron h2, .jumbotron h3, .jumbotron a {
	color: #FFFFFF;
}

.jumbotron h3 {
	font-size: 18px;
}

.jumbotron p {
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 200;
}


/* General styles */

.h1, h1 {
	font-size: 30px;
	color: #065086;
	font-weight: bold;
}

.h2, h2 {
	font-size: 20px;
	color: #065086;
	font-weight: bold;
}

.h3, h3 {
	font-size: 16px;
	color: #065086;
	font-weight: bold;
}


/*Bootstrap Carousel Fade Transition (for Bootstrap 3.3.x)
  CSS from:       http://codepen.io/transportedman/pen/NPWRGq
  and:            http://stackoverflow.com/questions/18548731/bootstrap-3-carousel-fading-to-new-slide-instead-of-sliding-to-new-slide
  Inspired from:  http://codepen.io/Rowno/pen/Afykb*/
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}    
.carousel-fade .carousel-inner .active {
  opacity: 1;
}    
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}    
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}    
.carousel-fade .carousel-control {
  z-index: 2;
}

/*WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  Need to override the 3.3 new styles for modern browsers & apply opacity*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}