﻿@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@700&display=swap');

/*
font-family: 'Karla', sans-serif;
font-family: 'Playfair Display', serif;
*/

*{
	box-sizing: border-box;
}

.clear-rows{
	clear: both;
}

.container{
	width: 90%;
	max-width: 1200px;
	margin: 0px auto;
	padding: 0px;
}

body{
	margin: 0px;
	padding: 0px;
	font-family: 'Karla', sans-serif;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}

#overlay{
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(0,0,0,0.2);
	display: none;
	z-index: 1000;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#mobile-navigation{
	position: fixed;
	top: 0px;
	bottom: 0px;
	width: 320px;
	left: -320px;
	background-color: #FFFFFF;
	z-index: 1001;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

#mobile-navigation-header{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 65px;
	border-bottom: 1px solid #E5E5E5;
}

#mobile-navigation-header p{
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	font-weight: 500;
	color: #222;
	margin: 0px;
	padding: 0px;
}

#mobile-navigation-body{
	position: absolute;
	top: 65px;
	left: 0px;
	right: 0px;
	bottom: 0px;
}

.mobile-navigation-close{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #c0c0c0;
	cursor: pointer;
}

#mobile-navigation ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px 0px;
}

#mobile-navigation ul li{
	width: 100%;
	position: relative;
	cursor: pointer;
}

#mobile-navigation ul li a{
	display: block;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 500;
	color: #222;
	text-decoration: none;
	border-bottom: 1px solid #E5E5E5;
}

#mobile-navigation ul li a i{
	position: absolute;
	right: 20px;
	top: 14px;
	color: #c0c0c0;
}

#mobile-navigation ul li a.donate{
	background-color: #FC8E44;
	color: #fff;
}

#mobile-navigation ul ul{
	display: none;
}

#mobile-navigation ul ul li a{
	padding: 12px 40px;
}

#mobile-navigation-footer{
	padding: 0px 0px;
}

#header{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100px;
	background-color: #fff;
	z-index: 999;
	padding: 0px 0px;
	box-shadow: 0px 0px 15px 0px rgba(100,100,100,0.2);
}

#header-home{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100px;
	background-color: transparent!important;
	z-index: 999;
	padding: 0px 0px;
	transition: all .2s;
}

#header-home.sticky{
	background-color: #fff!important;
	padding: 10px 0px;
	box-shadow: 0px 0px 15px 0px rgba(100,100,100,0.2);
}

.header-container{
	width: 100%;
	margin: 0px;
	padding: 0px 30px;
	box-sizing: border-box;
}

#header-left{
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	padding: 5px 30px;
	z-index: 2;
}

#header-left img{
	width: 100%;
	max-width: 300px;
}

#header-home .header-logo-white{
	display: block;
}

#header-home .header-logo{
	display: none;
}

#header .header-logo-white{
	display: none;
}

#header .header-logo{
	display: block;
}

#header-home.sticky .header-logo-white{
	display: none;
}

#header-home.sticky .header-logo{
	display: block;
}

#header-middle{
	position: absolute;
	left: 0px;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	text-align: center;
}

#header-middle ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	display: inline-block;
}

#header-middle ul li{
	float: left;
	position: relative;
}

#header-middle ul li a{
	display: block;
	padding: 20px 25px;
	font-size: 15px;
	font-weight: 700;
	color: #222222;
	text-decoration: none;
	cursor: pointer;
}

#header-middle ul li a:after{
	content: '';
	opacity: 0;
	visibility: hidden;
	position: absolute;
	bottom: 14px;
	left: 25px;
	right: 25px;
	height: 2px;
	background-color: #fc8e44;
}

#header-home #header-middle ul li a{
	color: #ffffff;
}

#header-home.sticky #header-middle ul li a{
	color: #222222;
}

#header-middle ul li:hover > ul{
	opacity: 1;
	visibility: visible;
}

#header-middle ul li a.selected, #header-middle ul li:hover > a{
	color: #fc8e44;
}

#header-middle ul li a.selected:after{
	opacity: 1;
	visibility: visible;
}

#header-middle ul ul{
	position: absolute;
    top: 100%;
    left: 25px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    background-color: #fff;
    padding: 10px 0px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    white-space: nowrap;
    width: 200px;
    -webkit-box-shadow: 1.169px 3.825px 15.66px 2.34px rgba(0,0,0,.09);
    box-shadow: 1.169px 3.825px 15.66px 2.34px rgba(0,0,0,.09);
}

#header-middle ul ul li{
	width: 100%;
}

#header-middle ul ul li a{
	display: block;
	padding: 10px 25px;
	text-align: left;
	color: #222222!important;
}

#header-right{
	position: absolute;
	right: 20px;
	top: 0px;
	bottom: 0px;
	padding: 29px 30px;
	z-index: 2;
}

#header-right ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#header-right ul li{
	float: left;
}

#header-right ul li a{
	display: block;
}

.button{
	display: block;
	padding: 11px 24px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.button-orange{
	border: 1px solid #FC8E44;
	background-color: #FC8E44;
	color: #fff;
}

.button-orange:hover{
	background-color: #fff;
	color: #222!important;
	border: 1px solid #222!important;
}

.button-white{
	border: 1px solid #222;
	background-color: #fff;
	color: #333;
}

.button-white:hover{
	background-color: #FC8E44;
	color: #fff!important;
	border: 1px solid #FC8E44!important;
}


.flex-box-container{
	display: flex;
  	flex-wrap: wrap;
}

.flex-box-space-around{
	justify-content: space-around;
}

.flex-box-col{
	padding: 0px 0px;
	text-align: center;
	font-size: 28px;
	color: #fff;
	margin: 0px;
}

.flex-box-col-image{
	width: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 240px;
}

.flex-box-col-padding{
	padding: 50px 20px;
}

.flex-box-col-shadow{
	box-shadow: 0px 0px 40px 0px rgba(15,15,43,3%);
}

.flex-box-col-100{
	width: 98%;
}

.flex-box-col-75{
	width: 73%;
}

.flex-box-col-33{
	width: 33.3333%;
}

.flex-box-col-25{
	width: 25%;
}

.flex-box-col-23{
	width: 23%;
}

.flex-box-col-30{
	width: 30%;
}

.flex-box-opacity{
	opacity: 0.95;
}

.flex-box-col-white{
	background-color: #fff;
}

.flex-box-col-light-green{
	background-color: #486747;
}

.flex-box-col-dark-green{
	background-color: #2A4727;
}

.flex-box-col-white-border{
	border-left: 1px solid #f0f0f0;
	border-right: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
	border-top: 1px solid #f0f0f0;
}

.flex-box-col-body{
	width: 100%;
	padding: 30px 20px;
}

.flex-box-col-body h5{
	font-size: 16px;
	font-family: 'EB Garamond', serif;
	font-weight: 500;
	color: #3e3e3e;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}

.flex-box-col-body h3{
	font-size: 28px;
	font-family: 'EB Garamond', serif;
	font-weight: 500;
	color: #3e3e3e;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}

.flex-box-col-white p{
	font-size: 16px;
	font-weight: 400;
	color: #686868;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	line-height: 26px;
}

.flex-box-col-light-green p, .flex-box-col-dark-green p{
	font-family: 'EB Garamond', serif;
	font-size: 32px;
	font-weight: 500;
	color: #fff;
	margin: 0px 0px 0px 0px;
	padding: 0px;
}


.flex-box-col-body ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	display: inline-block;
}

.flex-box-col-body ul li{
	display: inline-block;
}

.flex-box-col-body ul li a{
	display: block;
	padding: 10px 10px;
	font-size: 16px;
	color: #FC8E44;
}




.news-article-image{
	width: 100%;
	margin: 0px;
	padding: 0px;
	position: relative;
}

.news-article-date{
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 15px 20px;
	color: #fff;
	font-size: 16px;
	background-color: #FC8E44;
}

.news-article-date i{
	padding: 0px 5px 0px 0px;
}

.news-article-body{
	width: 100%;
	margin: 0px;
	padding: 20px 20px;
	box-sizing: border-box;
	text-align: left;
}

.news-article-body h5{
	font-size: 16px;
	font-family: 'EB Garamond', serif;
	font-weight: 500;
	color: #3e3e3e;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}

.news-article-body h3{
	font-size: 28px;
	font-family: 'EB Garamond', serif;
	font-weight: 500;
	color: #3e3e3e;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}

.news-article-body p{
	font-size: 16px;
	font-weight: 400;
	color: #686868;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	line-height: 26px;
}

.news-article-social-icons{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.news-article-social-icons li{
	display: inline-block;
	margin: 0px 5px 0px 0px;
}

.news-article-social-icons li a{
	display: block;
    line-height: 30px;
    width: 30px;
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
}

.news-article-social-icons li a i{
	font-size: 18px;
	line-height: 30px;
    color: #fff;
}

.news-article-social-icons li a.facebook{
   background-color: #3b5a99;
}

.news-article-social-icons li a.twitter{
    background-color: #5fa9dd;
}

.news-article-social-icons li a.instagram{
	background: #f09433;
	background: -webkit-linear-gradient(bottom left, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	background: -o-linear-gradient(bottom left, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	background: linear-gradient(to top right, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

.news-article-social-icons li a.pinterest{
   background-color: #cd2129;
}

.news-article-social-icons li a.linkedin{
    background-color: #127bb7;
}

.news-article-social-icons li a.googleplus{
    background-color: #d44b38;
}

.news-article-social-icons li a.tumblr{
    background-color: #d44b38;
}

.news-article-social-icons li a.email{
    background-color: #f16625;
}


a.anchor{
    display: block;
    position: relative;
    top: -170px;
    visibility: hidden;
}


#contact-container{
	max-width: 800px;
	margin: 0px auto;
}

.contact-col{
    width: 50%;
    float: left;
    box-sizing: border-box;
}

.contact-col-right-padding{
    padding: 0px 10px 10px 0px;
}

.contact-col-left-padding{
    padding: 0px 0px 10px 10px;
}

.contact-icon{
    width: 100%;
    padding-right: 20px;
    box-sizing: border-box;
    max-width: 100px;
}


#mobile-menu-button{
	position: absolute;
	top: 50%;
	right: 5%;
	width: 35px;
	z-index: 999;
	cursor: pointer;
	transform: translateY(-50%);
	display: none;
}

#hamburger-box{
    position: relative;
    display: inline-block;
    width: 35px;
    height: 24px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before{
    position: absolute;
    width: 35px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #FC8E44;
}

.hamburger-inner{
    top: 2px;
}

.hamburger-inner:before{
    top: 10px;
    content: '';
}

.hamburger-inner:after{
    top: 20px;
    content: '';
}

.hamburger-box.is-active .hamburger-inner{
	bottom: -10px;
	transform: translate3d(0,10px,0) rotate(45deg);
}

.hamburger-box.is-active .hamburger-inner:before{
	top: 10px;
    transform: rotate(-45deg) translate3d(-5.71429px,-6px,0);
    opacity: 0;
}

.hamburger-box.is-active .hamburger-inner:after{
	top: 20px;
    transform: translate3d(0,-20px,0) rotate(-90deg);
}





.section{
	width: 100%;
	margin: 0px;
	padding: 40px 0px;
}

.section-padding-top{
	padding-top: 140px;
}

.section-grey{
	background-color: #F2F2F2;
}

.section-align-center{
	text-align: center;
}

.section h2{
	font-family: 'Playfair Display', serif;
	font-size: 50px;
	font-weight: 500;
	color: #222222;
	margin: 0px 0px 30px 0px;
	padding: 0px 0px 15px 0px;
	position: relative;
}

.section.section-align-center h2:after{
	position: absolute;
	content: '';
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	height: 2px;
	border-top: 2px solid #FC8E44;
	width: 60px;
}

.section.section-align-left h2:after{
	position: absolute;
	content: '';
	bottom: 0px;
	left: 30px;
	transform: translateX(-50%);
	height: 2px;
	border-top: 2px solid #FC8E44;
	width: 60px;
}

.section ul{
	margin-top: 0px;
	padding-top: 0px;
}

.section ul li{
	font-size: 16px;
	font-weight: 400;
	color: #686868;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	line-height: 26px;
}

.section p{
	font-size: 16px;
	font-weight: 400;
	color: #686868;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	line-height: 26px;
}


#footer{
	width: 100%;
	margin: 0px;
	padding: 0px;
	background-color: #404751;
}

#footer-top{
	width: 100%;
	margin: 0px;
	padding: 0px 0px;
}

#footer-top .flex-box-col{
	text-align: left!important;
}

#footer-top ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#footer-top ul li{
	width: 100%;
	padding: 0px!important;
	margin: 0px!important;
	line-height: 22px;
}

#footer-top a{
	color: #fff;
}

#footer-bottom{
	padding: 0px 0px 20px 0px;
}

#footer-bottom-left{
	float: left;
}

#footer-bottom-right{
	float: right;
}

#footer-bottom ul{
	display: inline-block;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#footer-bottom ul li{
	float: left;
}

#footer-bottom ul li a{
	display: block;
	padding: 0px 0px 0px 20px;
	font-size: 18px;
	color: #fff;
}

#footer h3{
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	margin: 0px 0px 30px 0px;
	padding: 0px 0px 15px 0px;
	position: relative;
}

#footer h3:after{
	position: absolute;
	content: '';
	bottom: 0px;
	left: 20px;
	transform: translateX(-50%);
	height: 2px;
	border-top: 2px solid #fff;
	width: 40px;
}

#footer p{
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	line-height: 26px;
}

#map{
	width: 100%;
	margin: 0px;
	padding: 0px 0px;
	height: 550px;
}




/* pagination styles ------------------------------------------------------------------------------------------------------------------------------------------------- */

.pagination {
  display: -ms-flexbox;
  display: flex;
  padding: 15px 20px 0px 0px;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: var(--blue);
  background-color: #fff;
  border: 1px solid #dee2e6;
  text-decoration: none;
}

.page-link:hover {
  z-index: 2;
  color: #FC8E44;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link{
  z-index: 3;
  color: #fff;
  background-color: #FC8E44;
  border-color: #FC8E44;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

/* pagination styles ------------------------------------------------------------------------------------------------------------------------------------------------- */





input, button, select, textarea{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	outline: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.form-control{
	display: block;
	width: 100%;
	padding: 0.90rem 0.75rem;
	font-size: 14px;
	font-weight: 400;
	line-height: inherit;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, padding 0.2s ease-out;
}

select.form-control{
	padding: 0.75rem 0.75rem 0.75rem 0.5rem;
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control.is-invalid{
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-group{
  margin-bottom: 1rem;
}

.form-text{
  display: block;
  margin-top: 0.25rem;
}

.form-row{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col, .form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-control-wrapper{
	position: relative;
	text-align: left;
}

textarea{
	height: 250px!important;
	resize: none;
}

.form-control-label{
	font-size: 12px;
    font-weight: normal;
    position: absolute;
    top: 0;
    width: 100%;
    margin-top: 8px;
    margin-left: 1px;
    padding: 0px 0.75rem;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
	transition: all 0.2s ease-out;
}

.form-control-label.active{
	opacity: 1;
	-webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.form-control.active{
	padding: 1.30rem 0.75rem 0.50rem 0.75rem;
}

select.form-control.active{
	padding: 1.30rem 0.75rem 0.20rem 0.5rem;
}

.form-control-validation-message{
	font-size: 14px;
	width: 100%;
	margin: 0px;
	padding: 0.5rem 0px 0px 0px;
	color: #dc3545;
	opacity: 0;
	visibility: hidden;
	display: none;
}

.form-control-validation-message.active{
	opacity: 1;
	visibility: visible;
	display: block;
}



.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem auto;
  pointer-events: none;
  max-width: 500px;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: none;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
  display: block;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
  outline: none;
  border: 0px;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.modal-title {
  line-height: 1.5;
  font-size: 18px;
  margin: 0px;
  font-weight: 500;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  font-size: 14px;
  color: #333333;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}


.news-article-icons td{
	padding: 0px 0px 10px 0px;
}

.news-article-icons i{
	font-size: 16px;
	color: #333;
	padding: 0px 10px 0px 0px;

}




.iframe-container{
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
}

.responsive-iframe{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: 0px;
	outline: none;
}


/* slide show ----------------------------------------------------------------------------------------------------------------------------------- */

.mySlides{
	display: none;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 2;
}

.mySlides:after{
	content: '';
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(0,0,0,0.1);
	z-index: 3;
}

img{
	vertical-align: middle;
}

.banner{
	width: 100%;
	position: relative;
	top: 0px;
	height: 90vh;
	min-height: 800px;
	left: 0px;
	right: 0px;
	margin: 0px;
	z-index: 1;
}

.banner-small{
	width: 100%;
	position: relative;
	top: 0px;
	height: 60vh;
	min-height: 500px;
	left: 0px;
	right: 0px;
	margin: 0px;
	z-index: 1;
	background-size: cover;
}

.prev, .next{
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 4;
}

.next{
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover{
  background-color: rgba(0,0,0,0.8);
}

.text{
  color: #ffffff;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  max-width: 1200px;
  z-index: 4;
}

.text h2{
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 62px;
	padding: 0px 20px 20px 20px;
	margin: 0px;
	color: #fff;
	text-shadow: 0px 0px 2px rgba(100,100,100,0.2);
}

.text p{
	font-size: 22px;
	padding: 8px 12px;
	margin: 0px;
	color: #fff;
	text-shadow: 0px 0px 2px rgba(100,100,100,0.2);
}


.numbertext{
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dots{
	text-align:center;
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
}

.dot{
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active-dot, .dot:hover {
  background-color: #FC8E44;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media only screen and (max-width: 1400px)
{
	#header-middle{
		padding-left: 150px;
	}
}

@media only screen and (max-width: 1200px)
{
	#header{
		height: 80px;
	}
	#header-home{
		height: 80px;
	}
	#header-middle{
		display: none;
	}
	#header-left{
		right: auto;
		text-align: left;
		padding: 3px 0px;
		left: 5%;
	}
	#header-left img{
		max-width: 250px;
	}
	#header-right{
		padding: 20px 80px 20px 30px;
		right: 5%;
	}
	#mobile-menu-button{
		display: block;
	}
}

@media only screen and (max-width: 1000px)
{
	.flex-box-col-25{
		width: 50%;
		margin: 0px 0px 15px 0px;
	}
	.flex-box-col-23-1{
		width: 48%;
		margin: 0px 0px 15px 0px;
	}
	.flex-box-col-75-1{
		width: 100%;
		margin: 0px 0px 15px 0px;
	}
	.flex-box-col-23-3{
		width: 100%;
	}
	#footer{
		padding: 30px 0px 30px 0px;
	}
	.footer-col{
		width: 100%;
		margin: 0px 0px 0px 0px;
		padding: 20px 10px 0px 10px;
	}
	#footer-bottom-left{
		width: 100%;
		padding: 0px 0px 20px 10px;
	}
	#footer-bottom-right{
		width: 100%;
	}
	#footer-bottom ul li a {
	    padding: 0px 10px 0px 10px;
	}
}

@media only screen and (max-width: 700px)
{
	.flex-box-col-25{
		width: 100%;
		margin: 0px 0px 15px 0px;
	}
	.flex-box-col-33{
		width: 100%;
		margin: 0px 0px 5px 0px;
	}
	.flex-box-col-33 p{
		font-size: 24px;
	}
 	.flex-box-col-30{
		width: 100%;
		margin: 0px 0px 15px 0px;
	}
}

@media only screen and (max-width: 550px) {
	.contact-col{
		width: 100%;
	}
	.contact-col-left-padding{
		padding: 0px;
	}
	.contact-col-right-padding{
		padding: 0px;
	}
	.flex-box-col-23-1{
		width: 100%;
		margin: 0px 0px 15px 0px;
	}
	#header-right{
		display: none;
	}
}

@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
