/* Default Styles */
* {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: 'Lato', sans-serif;
}
body, figure, ul, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
ul {
    padding: 0px;
}
a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
section {
    width: 100%;
    float: left;
}

/* Global Styles */
h1 {
    font-size: 50px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 22px;
}
p {
    font-size: 14px;
    color: #777;
    line-height: 28px;
}
p:last-of-type {
    margin-bottom: 0px;
}
p a {
    color: #0e3240;
    text-decoration: none;
}
p a:hover {
    color: #86b535;
    text-decoration: underline;

}
.perim {
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    padding: 0px 15px;
    margin: auto;
}
.left-section {
    float: left;
    display: inline-block;
}
.right-section {
    float: right;
    display: inline-block;
}
.transition {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.background-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.center-content {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50% -50%);
    -ms-transform: translate(-50% -50%);
    -o-transform: translate(-50% -50%);
    transform: translate(-50% -50%);
}
.vertical-center-content {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c2a-green-button {
    display: inline-block;
    border-radius: 4px;
    background-color: #86b535;
    color: white;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 900;
    padding: 12px 28px;
    position: relative;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.c2a-green-button:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    box-shadow: inset 0px 0px 0px rgba(0,0,0,0.2);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.c2a-green-button:hover {
    background-color: #72a024;
    box-shadow: 0px 2px 7px rgba(0,0,0,0.2);
}
.c2a-green-button:hover:before {
    box-shadow: inset 0px 5px 10px -5px rgba(0,0,0,0.2);
}

/* Header Styles */
header {
    width: 100%;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    padding: 25px 0px;
    box-sizing: border-box;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    background-color: #162127;
}
header#home_header {
    background-color: rgba(14,50,64,0.92);
}
header#home_header.top {
    background-color: transparent;
}
header .perim {
    max-width: 100%;
    padding: 0px 100px;
}
.logo img {
    height: 36px;
    width: auto;
}
header .right-section {
    padding: 6px 0px;
}
#close_menu_button {
    display: none;
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 10px;
    cursor: pointer;
    z-index: 20;
}
#close_menu_button img {
    width: 50px;
    height: 50px;
    opacity: 0.6;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
#close_menu_button:hover img {
    opacity: 1;
}
.menu-primary-menu-container {
    float: left;
    display: inline-block;
}
.menu-primary-menu-container ~ #search_button {border-left: 1px solid rgba(255,255,255,0.15);}
#menu-primary-menu li {
    list-style-type: none;
    display: inline-block;
    padding: 0px 17px;
}
#menu-primary-menu li a {
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
    padding: 5px 7px;
    display: block;
    letter-spacing: 0.5px;
    position: relative;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
#menu-primary-menu li.current-menu-item a,
#menu-primary-menu li a:hover {
    color: white;
}
#menu-primary-menu li.current-menu-item a:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 100%;
    background-color: #86b535;
    border-radius: 1px;
}
#menu_button {
    float: left;
    display: none;
}
#menu_button + #search_button {margin-left: 15px;}
#menu_button i {
    font-size: 21px;
    color: #86b535;
    padding: 3px 5px;
    cursor: pointer;
}
#search_button {
    float: right;
    display: inline-block;
    padding-left: 15px;
    padding: 3px 5px;
    font-size: 16px;
    color: white;
    cursor: pointer;
}
.header-push {
    padding-top: 89px;
}


/* Footer Styles */
footer {
    width: 100%;
    float: left;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../images/footer.jpg);
}
footer .perim {
    position: relative;
    z-index: 3;
}
.footer-logo-wrapper {
    width: 100%;
    float: left;
    padding: 110px 0px;
    position: relative;
    text-align: center;
}
.footer-logo-wrapper img {
    height: 60px;
    width: auto;
}
.footer-logo-wrapper:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    height: 1px;
    background-color: rgba(255,255,255,0.15);
    left: 0;
    right: 0;
    margin: auto;
}
footer span {
    display: block;
    width: 100%;
    float: left;
    text-align: center;
    padding: 30px 0px;
    font-size: 12px;
    font-weight: 400;
    color: #426f81;
}
footer span a {
    color: #658fa0;
}
footer span a:hover {
    color: white;
}

/* Search Popup */
.popup-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(14,50,64,0.75);
}
#search_popup {
    display: none;
}
#search_popup .vertical-center-content {
    box-sizing: border-box;
    padding: 0px 15px;
}
.search-form-wrapper {
    top: 30px;
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: auto;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.search-form-wrapper.in {
    top: 0px;
}
#search_form {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
    width: 100%;
    float: left;
    position: relative;
    margin-top: 30px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.search-form-wrapper.in #search_form {
    margin-top: 0px;
}
#search_form input {
    background-color: white;
    height: 50px;
    padding: 0px 15px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    float: left;
    width: calc(100% - 150px);
    border: none;
    outline: 0;
    border-radius: 0px;
    -webkit-border-radius:0px;
    -webkit-appearance: none;
}
#search_form input[type="submit"] {
    color: white;
    background-color: #86b535;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    will-chnange: background-color;
    will-chnage: box-shadow;
    width: 150px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: inset 0px 0px 0px rgba(0,0,0,0.2);
}
#search_form input[type="submit"]:hover {
    background-color: #72a024;
    box-shadow: inset 0px 5px 10px -5px rgba(0,0,0,0.2);
}
#close_search {
    position: absolute;
    right: 0;
    top: -73px;
    padding: 10px;
    cursor: pointer;
    display: none;
}
#close_search img {
    width: 50px;
    height: 50px;
    opacity: 0.6;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -ms-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    will-change: opacity;
}
#close_search:hover img {
    opacity: 1;
}

/* Header Banner */
#home_banner {
    height: 100vh;
    position: relative;
}
#home_banner .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 3;
    background: -moz-linear-gradient(top,  rgba(14,50,64,0.66) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(14,50,64,0.66) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom,  rgba(14,50,64,0.66) 0%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a80e3240', endColorstr='#00ffffff',GradientType=0 );
}
.down-button-wrapper {
    z-index: 4;
    position: absolute;
    bottom: 75px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
#down_arrow {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-color: #0e3240;
    line-height: 50px;
    text-align: center;
    color: white;
    cursor: pointer;
    font-size: 26px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.35);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
#down_arrow:hover {
    background-color: #86b535;
    box-shadow: 0px 2px 7px rgba(0,0,0,0.35);
}

/* Text Section */
.text {
    padding: 80px 0px;
    text-align: center;
}
.text .perim {
    max-width: 1200px;
}
.text .narrow {
    max-width: 800px;
}
.text h2 {
    font-weight: 400;
    color: #0e3240;
    margin-bottom: 40px;
}
.text p:last-of-type {
    margin-bottom: 15px;
}

/* Gallery Preview */
.gallery-preview-wrapper {
    padding: 120px 0px 80px 0px;
    width: 100%;
    float: left;
    position: relative;
}
.gallery-preview-wrapper:before {
    content: 'New in our Gallery...';
    display: block;
    position: absolute;
    top: 12px;
    left: -15px;
    color: #eee;
    font-size: 72px;
    font-family: 'Bitter', serif;
}
.gallery-preview-grid {
    margin-left: -15px;
    margin-right: -15px;
}
.gallery-preview-block {
    width: 25%;
    float: left;
    padding: 0px 15px;
    box-sizing: border-box;
}
.gallery-preview-block-inner {
    height: 280px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.gallery-preview-block-inner:hover .overlay {
    background-color: rgba(14,50,64,0.5) !important;
}
.gallery-preview-block-inner:hover .background-image {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.gallery-preview-block-inner .center-content {
    text-align: center;
    z-index: 4;
}
.gallery-preview-block-inner h4 {
    color: white;
    font-weight: 700;
    position: relative;
    top: 10px;
    opacity: 0;
}
.gallery-preview-block-inner a {
    position: relative;
    top: 30px;
    opacity: 0;
    margin-top: 20px;
}
.gallery-preview-block-inner:hover h4,
.gallery-preview-block-inner:hover a {
    top: 0px;
    opacity: 1;
}

/* Album Section */
#album_section {
    padding-bottom: 100px;
}
#album_section.album-padding {
    padding-top: 80px;
}
.album-item {
    width: 25%;
    float: left;
    box-sizing: border-box;
    padding: 5px;
}
.album-image-wrapper {
    width: 100%;
    float: left;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.album-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.album-image-wrapper .overlay {
    background-color: rgba(14,50,64,0);
}
.album-image-wrapper:hover .overlay {
    background-color: rgba(14,50,64,0.5);
}
.album-image-wrapper:after {
    content: '\f00e';
    display: block;
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0);
    font-size: 28px;
    margin-top: 10px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 3;
}
.album-image-wrapper:hover:after {
    color: rgba(255,255,255,1);
    margin-top: 0px;
}


/* Thin C2A Banner */
#thin_c2a_banner {
    background-color: #0e3240;
    text-align: center;
    color: white;
    position: relative;
}
#thin_c2a_banner:after {
    content: '';
    display: block;
    width: 100%;
    max-width: 800px;
    height: 25px;
    position: absolute;
    top: 100%;
    top: calc(100% + 3px);
    background-image: url(../images/shadow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top top;
    left: 0;
    right: 0;
    margin: auto;
}
#thin_c2a_banner i {
    font-size: 48px;
    color: rgba(255,255,255,0.33);
    position: relative;
    top: 5px;
}
#thin_c2a_banner h2 {
    font-weight: 200;
    display: inline-block;
    padding: 0px 25px;
    line-height: 100px;
    position: relative;
    top: -5px;
}
#thin_c2a_banner a {
    top: -10px;
    position: relative;
}

/* Home News */
.news-blocks-wrapper {
    width: 100%;
    float: left;
    padding: 60px 0px;
    background-color: #f2f2f2;
}
.news-blocks-wrapper .perim {
    text-align: center;
}
.news-blocks-wrapper .text {
    padding: 0 0 40px;
}
.news-blocks-wrapper .c2a-green-button {
    margin-top: 20px
}
.news-grid {
    margin-left: -20px;
    margin-right: -20px;
}
.news-block {
    padding: 20px;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    text-align: left;
}
.news-block .news-block-inner {
    border-radius: 4px;
    display: block;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
    background-color: white;
    box-sizing: border-box;
    padding: 40px 40px 80px 40px;
    position: relative;
}
.news-block .news-block-inner .background-image {
    display: none;
}
.news-block .news-block-inner .overlay {
    background-color: rgba(0,0,0,0);
}
.news-block .news-block-inner .news-block-content {
    position: relative;
    z-index: 4;
}
.news-block-content .news-category {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.news-block-content .news-category span {
    color: white;
    text-transform: uppercase;
    color: white;
    font-size: 12px;
    background-color: #86b535;
    padding: 4px 7px;
    border-radius: 3px;
    font-weight: 900;
    letter-spacing: 1px;
}
.news-block-content .news-title {
    display: block;
    float: left;
    width: 100%;
    color: #0e3240;
    font-size: 28px;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 45px;
    position: relative;
    max-height: 115px;
}
.news-block-content .news-title:after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 2px;
    border-radius: 1px;
    background-color: #86b535;
    bottom: -25px;
}
.news-block-content .news-excerpt {
    float: left;
    width: 100%;
    height: 115px;
    overflow: hidden;
}
.news-block-content .news-excerpt p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 28px;
}
.news-block-inner .news-date {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 40px;
    font-size: 14px;
    font-style: italic;
    color: #bbb;
    z-index: 2;
}
.news-block-inner .news-date i {
    padding-right: 8px;
    color: #ccc;
    font-size: 18px;
    position: relative;
    top: 1px;
}

.news-block .news-block-inner.featured-image .background-image {
    display: block;
}
.news-block .news-block-inner.featured-image .overlay {
    background-color: rgba(22,33,39,0.66);
}
.news-block-inner.featured-image .news-block-content .news-title {
    color: white;
}
.news-block-inner.featured-image .news-block-content .news-excerpt p {
    color: #eee;
}

.news-nav-wrapper {
    width: 100%;
    float: left;
    background-color: white;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
}
.news-nav-wrapper ul {
    display: inline-block;
    margin-right: 60px;
}
.news-nav-wrapper ul li {
    list-style-type: none;
    display: inline-block;
    padding: 0px 10px;
}
.news-nav-wrapper ul li a {
    display: block;
    padding: 5px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    color: rgba(22,33,39,0.5);
    letter-spacing: 0.5px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.news-nav-wrapper ul li a:hover {
    color: rgba(22,33,39,1);
}

/* Page Banner */
#page_banner {
    padding: 175px 0px;
    position: relative;
    text-align: center;
}
#page_banner h1 {
    color: white;
    font-weight: 300;
    letter-spacing: 0.05em;
    z-index: 4;
    padding: 0px 15px;
    position: relative;
    top: -10px;
}


/* Breadcrumbs */
#breadcrumbs {
    position: relative;
}
.breadcrumbs-wrapper {
position: absolute;
top: -20px;
left: 15px;
z-index: 4;
height: 40px;
overflow: hidden;
background-color: white;
border-radius: 4px;
box-shadow: 0px 3px 10px rgba(0,0,0,0.15);
text-transform: uppercase;
font-weight: 400;
}
.breadcrumbs-wrapper a {
color: #aaa;
display: inline-block;
font-size: 12px;
height: 40px;
line-height: 40px;
padding: 0px 14px;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
}
.breadcrumbs-wrapper a:hover {
    color: #0e3240;
}
.breadcrumbs-wrapper i {
    color: #ccc;
    font-size: 16px;
    position: relative;
    top: 1px;
}
.breadcrumbs-wrapper a i {
    color: #0e3240;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.breadcrumbs-wrapper a i:hover {
    color: #86b535;
}
.breadcrumbs-wrapper span.breadcrumb_last {
    position: relative;
    right: -1px;
    color: white;
    background-color: #86b535;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0px 18px 0px 14px;
    font-size: 12px;
    margin-left: -5px;
}
.breadcrumbs-wrapper span.breadcrumb_last:before {
    content: '';
    display: block;
    width: 13px;
    height: 40px;
    left: -12px;
    position: absolute;
    top: 0;
    background-image: url('../images/breadcrumb-seperator.png');
    background-repeat: no-repeat;
    background-size: contain;
}

/* Image Slideshow */
#image_slideshow {
    padding-bottom: 100px;
    position: relative;
}
#image_slideshow:after {
    content: '';
    display: block;
    height: calc(50% + 50px);
    position: absolute;
    top: calc(50% - 50px);
    z-index: 0;
    left: 0;
    width: 100%;
    background-color: #f2f2f2;
}
.about-slider-wrapper {
    position: relative;
}
#about_slider {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}
#about_slider .item {
    height: 650px;
    position: relative;
}

.owl-dots {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 25px;
    left: 0;
}
.owl-dots .owl-dot {
    display: inline-block;
    padding: 2px;
}
.owl-dots .owl-dot span {
    background-color: transparent;
    border-radius: 6px;
    border: 2px solid white;
    display: block;
    height: 8px;
    width: 8px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.owl-dots .owl-dot.active span {
    background-color: white;
}

.slider-control {
    position: absolute;
    z-index: 4;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #162127;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.25);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.slider-control:hover {
    background-color: #86b535;
}
#left_control {
    left: -20px;
}
#album_left_control {
    left: -5px;
}
#right_control {
    right: -20px;
}
#album_right_control {
    right: -5px;
}

/* Text Subsection */
#text_subsection {
    padding-bottom: 100px;
}
#text_subsection .perim {
    max-width: 1200px;
}
#text_subsection.grey {
    background-color: #f2f2f2;
}

/* Map */
#map {
    height: 500px;
}

/* Gallery */
.gallery-blocks-wrapper {
    width: 100%;
    float: left;
    padding: 60px 0px;
    background-color: #f2f2f2;
}
.gallery-grid {
    margin-left: -20px;
    margin-right: -20px;
}
.gallery-block {
    padding: 20px;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
}
.gallery-block-inner {
    border-radius: 4px;
    display: block;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
    background-color: white;
    box-sizing: border-box;
    position: relative;
}
.gallery-thumb {
    width: 100%;
    height: 300px;
    float: left;
    position: relative;
}
.gallery-thumb .center-content {
    z-index: 3;
    opacity: 0;
    margin-top: 10px;
}
.gallery-block-inner:hover .gallery-thumb .overlay {
    background-color: rgba(14,50,64,0.5) !important;
}
.gallery-block-inner:hover .gallery-thumb .center-content {
    opacity: 1;
    margin-top: 0;
}
.gallery-info {
    padding: 36px 40px 40px 40px;
    width: 100%;
    float: left;
    background-color: white;
    box-sizing: border-box;
}
.gallery-title {
    color: #0e3240;
    font-size: 20px;
    font-weight: 600;
    padding-right: 15px;
    border-right: 1px solid #e5e5e5;
}
.gallery-count {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    padding-left: 15px;
    position: relative;
    top: -3px;
}

/* Album Popup */
#album_popup {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.8);
    z-index: 10;
    display: none;
}
#close_slider_button {
    position: absolute;
    top: -70px;
    right: 0;
    padding: 10px;
    cursor: pointer;
    opacity: 0.6;
}
#close_slider_button img {
    height: 50px;
    width: 50px;
}
#close_slider_button:hover {
    opacity: 1;
}
#album_popup .slider-wrapper {
    width: 100%;
    max-width: 1030px;
    box-sizing: border-box;
    padding: 0px 15px;
}
#album_slider {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.2);
}
.album-slider-item {
    max-height: calc(100vh - 140px);
    overflow: hidden;
}
.album-slider-item img {
    width: 100%;
    height: auto;
    display: block;
}


/* Contact Information */
#contact_information {
    background-color: #f6f6f6;
    padding-bottom: 50px;
    margin-top: 50px;
}
.contact-info-block {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    background-color: white;
    box-shadow: 0px 5px 30px rgba(0,0,0,0.2);
    position: relative;
    top: -50px;
    box-sizing: border-box;
    padding: 30px 0px;
    overflow: hidden;
}
.contact-info-block .third {
    width: 33.33333%;
    float: left;
    box-sizing: border-box;
    padding: 20px 50px;
    position: relative;
    height: 300px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.contact-info-block .third:nth-child(2):before {
    content: '';
    display: block;
    position: absolute;
    width: auto;
    height: 100%;
    width: 50px;
    z-index: 0;
    left: 0;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/vertical-shadow.png');
    opacity: 0.6;
}
.contact-info-block .third:nth-child(2):after {
    content: '';
    display: block;
    position: absolute;
    width: auto;
    height: 100%;
    width: 50px;
    z-index: 0;
    right: 0;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/vertical-shadow.png');
    opacity: 0.6;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.contact-info-block .center-content {
    text-align: center;
}
.contact-info-block .third i {
    color: #86b535;
    font-size: 50px;margin-bottom: 25px;
}
.contact-info-block .third h3 {
    display: block;
    color: #0e3240;
    font-size: 24px;
    margin-bottom: 5px;
}
.contact-info-block .third h4 {
    margin-bottom: 15px;
} 
.contact-info-block span {display: block;}
.contact-info-block span a {
    color: #86b535;
    font-weight: 700;
}
.contact-info-block span a:hover {text-decoration: underline;}
.contact-info-block span + span {margin-top: 10px;}
.contact-info-block span + a {margin-top: 25px;}