
body {
    font-family: ‘Source Sans Pro’, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #333;
    line-height: 1.6em;
    text-align: center;
}
.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}
.h4, .h5, .h6, h4, h5, h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.h4, h4 {
    font-size: 1.2rem;
}
strong { font-weight: 500; }

a, a:hover, a:focus {
	color: black;
	text-decoration: none;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}

a:hover { text-decoration: underline; }

h1, h2 {
	margin-top: 10px;
	font-size: 38px;
    font-weight: 100;
    color: #333;
    line-height: 50px;
}

h3 {
	font-size: 21px;
    font-weight: 400;
    color: #ddb039;
    line-height: 27px;
}

img { max-width: 100%; }

.doc-thumb {
	width: 275px;
	height: 150px;
}

.medium-paragraph {
	font-size: 18px;
	line-height: 32px;
}

.blue { color: #01349f; }


/***** Loader *****/

.loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	overflow: hidden !important;
	z-index: 99999;
}

.loader-img {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -30px 0 0 -30px;
	width: 60px;
	height: 60px;
	opacity: .25;
	background: url(../images/loading.gif) center center no-repeat;
}

.owl-buttons { margin: 10px 0 0 0; }

.owl-buttons > div {
	display: block;
	float: left;
	width: 40px;
	height: 40px;
	margin-right: 8px;
	opacity: 1;
	background-color: #fff;
	text-indent: -9999px;
	cursor: pointer;
	background-size: 80% auto;
	background-position: center center;
	background-repeat: no-repeat;
	transition: all .25s ease-in-out;
}

.owl-buttons > div:nth-of-type(1) { background-image: url('../images/ios7-arrow-left.png'); }
.owl-buttons > div:nth-of-type(2) { background-image: url('../images/ios7-arrow-right.png'); }

.owl-buttons > div:hover { opacity: .9; }


/***** General style, all sections *****/

.section-container {
    margin: 0 auto;
    padding-bottom: 80px;
}

.section-container-gray-bg {
	background: #f8f8f8;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.section-container-image-bg, 
.section-container-image-bg h2, 
.section-container-image-bg h3 {
	color: #fff;
}

.section-container-image-bg .divider-1 span {
	background: #fff;
}

.section-description {
	margin-top: 60px;
    padding-bottom: 10px;
}

.section-description p {
    margin-top: 20px;
	padding: 0 120px;
}
.section-container-image-bg .section-description p {
	opacity: 0.8;
}

.section-bottom-button {
	padding-top: 60px;
}

.btn-link-1 {
	position: relative;
	display: inline-block;
	height: 50px;
	margin: 0 5px;
	padding: 16px 20px 0 20px;
	background: #01349f;
	font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    color: #fff;
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
}
.btn-link-1:hover, .btn-link-1:focus, .btn-link-1:active { outline: 0; opacity: 0.6; color: #fff; }

.btn-link-1:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 50%;
	background: rgba(0, 0, 0, 0.1);
}

.btn-link-2 {
	display: inline-block;
	height: 50px;
	margin: 0 5px;
	padding: 15px 20px 0 20px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid #fff;
	font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    color: #fff;
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
}
.btn-link-2:hover, .btn-link-2:focus, 
.btn-link-2:active, .btn-link-2:active:focus { outline: 0; opacity: 0.6; background: rgba(0, 0, 0, 0.3); color: #fff; }


/***** Divider *****/

.divider-1 span {
	display: inline-block;
	width: 200px;
	height: 1px;
	background: #ddd;
}


/***** Modal *****/

.modal-content {
	-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
	text-align: left;
}

.modal-body {
	padding: 0 25px 15px 25px;
}

.modal-body img {
	margin-bottom: 15px;
}

.modal-header {
	padding: 25px 25px 15px 25px;
}

.modal-footer {
	padding: 15px 25px 25px 25px;
}

.modal-header, .modal-footer { border: 0; }

.modal-header .close {
	font-size: 36px;
	color: #888;
	font-weight: 300;
	text-shadow: none;
	opacity: 1;
}

.modal-footer button {
	height: 50px;
	margin: 0;
    padding: 0 20px;
	background: none;
	border: 1px solid #888;
	font-size: 16px;
    font-weight: 300;
    color: #888;
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
    text-shadow: none;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}
.modal-footer button:hover { outline: 0; opacity: 0.6; background: none; border: 1px solid #888; color: #888; }

.modal-footer button:focus, .modal-footer button:active:focus, .modal-footer button.active:focus { 
	outline: 0; opacity: 0.6; background: none; border: 1px solid #888; color: #888; 
	-moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
}

.modal-footer button:before {
	background: none;
}


/***** Top menu *****/

.navbar {
	margin-bottom: 0;
	background: #fff;
	border: 0;
	min-height: 100px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
	 padding: 0 1rem;
}
.navbar.navbar-no-bg { background: none; }

.navbar-header { margin: 0 !important; }

.navbar-toggle {
	padding: 12px;
	margin: 18px 0 0 0;
}


ul.navbar-nav .fas {
	font-size: 24px;
}

.navbar-brand {
	height: auto;
	padding: 0 !important;
	margin: 0 !important;
}

.navbar-brand img {
	width: auto;
    height: 102px;
	margin: 15px 0;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #ddb039;
}
/***** Top content *****/

.inner-bg {
    background: url(../images/bg.jpg) center no-repeat;
    background-size: cover;
	padding: 30px 0 80px 0;
	
}

.top-content { background-color: #fff !important; }

.top-content .text {
	padding-top: 50px;
	color: #fff;
	line-height: 1.8em;
	text-align: left;
	padding-right: 0;
}

.top-content p {     
    color: white;
    font-size: 16px;
    font-weight: 400;
}

.top-content .text h1 { font-weight: 400; color: #b11e28; font-size: 31px;}

.top-content .text h3 { font-weight: 400; color: #ddb039; font-size: 21px;}

.top-content .description {
	margin: 20px 0 10px 0;
}

.top-content .description p { opacity: 0.8; }

.top-content .top-big-link {
	margin-top: 35px;
}

blockquote {
	color: #b11e28;
	border-left: 3px solid #b11e28;
}

blockquote a {
	color: #b11e28;
	font-style: italic;
}

/* Change background image visibility */
.top-content .backstretch img { opacity: .8; }

.form-box {
    margin-top: 50px;
    margin-left: 50px;
}

.form-wrap {
	background: #fff;
}

.form-wrap .nav-tabs>li {
	width: 50%;
	border: none;
}

.nav-tabs>li>a {
	border-radius: 0;
	background: #aaa;
	margin: 0;
	color: #fff;
	border: none !important;
	box-shadow: inset 0px -5px 18px -5px rgba(0,0,0,.3);
}

.nav-tabs>li.active>a { box-shadow: none !important; color: #01349f; }

.nav-tabs>li>a:hover { background-color: #888; }

.form-top {
	overflow: hidden;
	padding: 0 25px 15px 25px;
	border-bottom: 1px solid #ddd;
	text-align: left;
}

.form-top-left {
	float: left;
	width: 75%;
	padding-top: 25px;
}

.form-top-left h3 { margin-top: 0; }

.form-top-right {
	float: left;
	width: 25%;
	padding-top: 5px;
	font-size: 70px;
	color: #eee;
	line-height: 100px;
	text-align: right;
}

.form-bottom {
	padding: 25px 25px 30px 25px;
	background: #eee;
	text-align: left;
}

.form-bottom form textarea {
	height: 100px;
}

.form-bottom form .form-links {
	display: inline-block;
	width: 275px;
	text-align: right;
	vertical-align: top;
}

.form-bottom form .form-links a { color: #888; }
.form-bottom form .form-links a:hover, 
.form-bottom form .form-links a:focus { color: #888; border-bottom: 1px dotted #888; }

.inner-bg .videoWrap {
	margin: 2.6em 0 .6em 0;
	max-width: 600px;
}

.inner-bg .videoWrap h4 {
	color: #fff;
	text-align: left;
}


/***** Owl Carousel Videos Full Width ******/

.videoWrap.full-width {
	padding: 0;
}

.videoWrap.full-width .owl-carousel {
	padding-bottom: 1em;
	border-bottom: 1px solid #ddd;
}

.videoWrap.full-width .item {
	border: 10px solid #fff;
}

.videoWrap.full-width .item h4 {
	font-size: .9em;
	text-align: left;
}

.videoWrap.full-width .owl-carousel .owl-controls .owl-pagination .owl-page {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 2px;
  border-radius: 50%;
  background: #ccc;
}

.videoWrap.full-width .owl-carousel .owl-controls .owl-pagination .owl-page.active {
  background: #888;
}

.video-wrap a.fancybox-media,
.video-wrap iframe {
	position: relative;
	display: block;
	box-shadow: 0px 3px 15px rgba(0,0,0,.1);
	transition: all .25s ease-in-out;
}

.video-wrap a.fancybox-media:hover,
.video-wrap iframe:hover { transform: translateY(-4px); box-shadow: 0px 6px 15px rgba(0,0,0,.1); }

.video-wrap span.play {
	display: block;
	width: 70px;
	height: 70px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -35px 0 0 -35px;
	border-radius: 50%;
	background: #af282f url('../images/icon-play-white.png') no-repeat 55% center;
	background-size: 30% auto;
	opacity: .6;
	transition: all .25s ease-in-out;
}

.video-wrap a.fancybox-media:hover span.play { opacity: .8; }

.video-wrap img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 4px 0;
}

.video-wrap .inner h5 {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    margin: 0.6rem 0 0.2em;
    text-align: center;
}

.video-wrap .inner p { margin: 0; }
.video-wrap .inner p a { color: #29ABE2; }
.video-wrap .inner p a:hover { text-decoration: underline; }

.owl-carousel {
	text-align: center;
}

.video-wrap {
	display: inline-block;
}


/***** Contact Details *****/

#contact-details {
	padding: 3em 0;
	text-align: center;
	background-color: #d5b146;
}

.contact-details h4 { margin: 2em 0 1em 0; }


/***** Footer *****/

footer {
	padding: 40px 0 35px 0;
	background: #262626;
}

.footer-social {
	font-size: 50px;
    line-height: 50px;
}

.footer-social a { color: #ddd; }
.footer-social a:hover, .footer-social a:focus { color: #01349f; }

.footer-copyright {
	font-size: 16px;
    color: white;
}

.footer-copyright a { color: #888; }



/***** Form Elements *****/
input[type="text"], 
input[type="password"],
textarea, 
textarea.form-control {
	height: 50px;
    margin: 0;
    padding: 0 20px;
    vertical-align: middle;
    background: #f8f8f8;
    border: 1px solid #ddd;
    font-size: 16px;	
	color: #333;
    font-weight: 400;	
    line-height: 50px;
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
    -moz-box-shadow: 0 1px 0 0 #fff; -webkit-box-shadow: 0 1px 0 0 #fff; box-shadow: 0 1px 0 0 #fff;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}

textarea, 
textarea.form-control {
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 30px;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus, 
textarea.form-control:focus {
	outline: 0;
	background: #fff;
    border: 1px solid #bbb;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
}

input[type="text"]:-moz-placeholder, textarea:-moz-placeholder, textarea.form-control:-moz-placeholder { color: #888; }
input[type="text"]:-ms-input-placeholder, textarea:-ms-input-placeholder, textarea.form-control:-ms-input-placeholder { color: #888; }
input[type="text"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, textarea.form-control::-webkit-input-placeholder { color: #888; }



button.btn {
	position: relative;
	height: 50px;
    margin: 0;
    padding: 0 20px;
    vertical-align: middle;
    background: #ceb44d;
    border: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    color: #fff;
    -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
    text-shadow: none;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}

.email-btn a {
	position: relative;
	display: inline-block;
	height: 30px;
    padding: 0 20px;
    vertical-align: middle;
    background: #b11e28;
    border: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: #fff;
    -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
    text-shadow: none;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}

button.btn:hover,
.email-btn a:hover { opacity: 0.6; color: #fff; text-decoration: none; }

button.btn:active,
.email-btn a:active { outline: 0; opacity: 0.6; color: #fff; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }

button.btn:focus,
.email-btn a:focus { outline: 0; opacity: 0.6; background: #831d32; color: #fff; }

button.btn:active:focus, button.btn.active:focus { outline: 0; opacity: 0.6; background: #831d32; color: #fff; }

button.btn:before,
.email-btn a:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 50%;
	background: rgba(0, 0, 0, 0.1);
}
p {
    margin-top: 0;
    margin-bottom:0;
    color: black;
}
b, strong {
    font-weight: bold;
    font-size: 23px;
}
