/* GENERAL */

.grecaptcha-badge { display: none!important; }

.text-shadow {
  text-shadow: 0px 0px 10px rgba(0,0,0,.25);
}

.text-shadow-dark {
  text-shadow: 0px 0px 10px rgba(0,0,0,1);
}

.box-shadow {
	box-shadow: 0px 10px 20px rgba(0,0,0,.08);
}

.box-shadow-dark {
	box-shadow: 0px 10px 20px rgba(0,0,0,.15);
}

.svg-shadow {
    -webkit-filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
}

.image-overlay-25 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.25);
}

.image-overlay-50 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
}

.image-overlay-75 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.75);
}

.image-overlay-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
    padding: 1rem 1.5rem;
    color: #FFF;
}

.lazyload {
	opacity: 0;
}

.lazyloading {
	opacity: 1;
	transition: opacity 300ms;
}

img.lazyload:not([src]) {
	visibility: hidden;
}

.no-hover {
	color: inherit;
}

.no-hover:hover {
	text-decoration: none;
	color: inherit;
}

.bg-cover {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.bg-column {
    min-height: 540px;
}

@media (max-width: 991.98px) {
    .bg-column {
        min-height: 540px;
    }
}

@media (max-width: 767.98px) {
    .bg-column {
        min-height: 405px;
    }
}

@media (max-width: 575.98px) {
    .bg-column {
        min-height: 270px;
    }
}

.bg-banner {
    padding: 7rem 0;
}

@media (max-width: 1199.98px) {
    .bg-banner {
        padding: 6rem 0;
    }
}

@media (max-width: 991.98px) {
    .bg-banner {
        padding: 5rem 0;
    }
}

@media (max-width: 767.98px) {
    .bg-banner {
        padding: 4rem 0;
    }
}

@media (max-width: 575.98px) {
    .bg-banner {
        padding: 3rem 0;
    }
}

.badge {
    border-radius: 0;
    text-transform: uppercase;
}

.rounded-xl {
    border-radius: 30px !important;
}

blockquote {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: .5rem solid #607849;
}

@media (max-width: 1199.98px) {
    .tooltip {
        display: none;
    }
}

.divided-text {
    overflow: hidden;
    text-align: center;
}

.divided-text:before,
.divided-text:after {
    background-color: #F0F0D8;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.divided-text:before {
    right: 0.5rem;
    margin-left: -50%;
}

.divided-text:after {
    left: 0.5rem;
    margin-right: -50%;
}

.divided-text-lgrey {
    overflow: hidden;
    text-align: center;
}

.divided-text-lgrey:before,
.divided-text-lgrey:after {
    background-color: #DEE2E6;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.divided-text-lgrey:before {
    right: 0.5rem;
    margin-left: -50%;
}

.divided-text-lgrey:after {
    left: 0.5rem;
    margin-right: -50%;
}

.divided-text-white {
    overflow: hidden;
    text-align: center;
}

.divided-text-white:before,
.divided-text-white:after {
    background-color: #FFF;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.divided-text-white:before {
    right: 0.5rem;
    margin-left: -50%;
}

.divided-text-white:after {
    left: 0.5rem;
    margin-right: -50%;
}


/* PADDING/MARGIN */

.px-75 {
    padding-left: .75rem;
    padding-right: .75rem;
}

.px-5px {
    padding-left: 10px;
    padding-right: 10px;
}

.mt-n375 {
    margin-top: -.375rem;
}

.mt-n4 {
    margin-top: -1.5rem;
}

.mt-n5 {
    margin-top: -3rem;
}

.mt-n10 {
    margin-top: -6rem;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-18 {
    margin-bottom: 18px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-38 {
    margin-bottom: 38px;
}

.pb-18 {
    padding-bottom: 18px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-38 {
    padding-bottom: 38px;
}


/* COLORS

Green: #607849;
Light Green: #83A065;
Cream: #F0F0D8;
Grey: #444;

*/

.bg-cream {
    background: #F0F0D8;
}

.text-cream {
    color: #F0F0D8;
}

.border-cream {
    border: 1px solid #F0F0D8;
}

.bg-lgreen {
    background: #83A065;
}

.text-lgreen {
    color: #83A065;
}

.bg-green {
    background: #607849;
}

.text-green {
    color: #607849;
}

a.text-green:hover,
a.text-green:focus,
a.text-green:target,
a.text-green:active {
    color: #83A065;
}

.border-green {
    border: 1px solid #607849;
}

.border-left-green {
    border-left: 5px solid #607849 !important;
}

.bg-grey {
    background: #444;
}

.text-grey {
    color: #444;
}

.bg-trans {
    background: transparent;
}

.text-black {
    color: #000;
}

.bg-black {
    background-color: #000;
}


/* TYPOGRAPHY */

@media (max-width: 1199.98px) {
    h1, .h1 {
        font-size: calc(1.5rem + 1vw);
    }

    h2, .h2 {
        font-size: calc(1.4rem + 0.75vw);
    }

    h3, .h3 {
        font-size: calc(1.3rem + 0.6vw);
    }

    h4, .h4 {
        font-size: calc(1.25rem + 0.5vw);
    }

    .display-1 {
        font-size: calc(1.8rem + 4vw);
    }

    .display-2 {
        font-size: calc(1.7rem + 3.5vw);
    }

    .display-3 {
        font-size: calc(1.6rem + 3vw);
    }

    .display-4 {
        font-size: calc(1.5rem + 2.5vw);
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #444;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Bebas Neue', sans-serif;
    color: #607849;
}

a {
    color: #607849;
}

a:hover,
a:focus,
a:target,
a:active {
    color: #83A065;
}

hr {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

p {
    line-height: 1.35;
}

.medium {
    font-size: 15px;
}

@media (max-width: 1199.98px) {
    .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .lead {
        font-size: 1.1rem;
    }
}

.top-title {
    letter-spacing: 1px;
    margin-bottom: .5rem;
}

hr.white {
    border-top: 1px solid #FFF;
}

.spaced-list li {
    line-height: 1.35;
    padding: .25rem 0;
}

.small.spaced-list li {
    line-height: 1.2;
    padding: .25rem 0;
}


/* BUTTONS */

.btn-rounded {
    border-radius: 30px;
}

.btn-reg {
    padding: .5rem 1.75rem;
    border-radius: 30px;
}

.btn-green {
    background-color: #607849;
    color: #FFF;
}

.btn-green:hover,
.btn-green:focus,
.btn-green:target,
.btn-green:active {
    background-color: #83A065;
    color: #FFF;
}

.btn-green:focus,
.btn-green:target,
.btn-green:active {
    box-shadow: 0 0 0 0.2rem rgba(70,135,25,.25);
}

.btn-light {
    color: #607849;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:target,
.btn-light:active {
    color: #607849 !important;
}


/* NAVIGATION */

.navbar {
    padding-top: .5rem;
    padding-bottom: .5rem;
    background: #607849;
    box-shadow: 0px 10px 20px rgba(0,0,0,.08);
}

a.navbar-brand {
    padding: 0;
    margin: 0;
}

a.navbar-brand:hover,
a.navbar-brand:focus {
    opacity: .85;
}

.navbar-nav .nav-item .nav-link {
    font-size: 22px;
    font-family: 'Bebas Neue', sans-serif;
    color: #FFF;
    letter-spacing: .5px;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
    background-color: #FFF;
    color: #607849;
}

.dropdown .fa-caret-down {
    margin-bottom: 3px;
    margin-left: 3px;
    font-size: 12px;
}

.dropdown-menu {
    border-radius: 0;
    background-clip: border-box;
    background-color: #FFF;
    border: 0;
    padding: .5rem 0;
}

.dropdown-header {
    letter-spacing: 2px;
    font-size: .75rem;
    text-transform: uppercase;
    padding: .25rem .75rem;
}

.dropdown-item {
    font-size: 20px;
    font-family: 'Bebas Neue', sans-serif;
    padding: .5rem 1rem;
    color: #607849;
    line-height: 1.25;
    letter-spacing: .5px;
    white-space: normal;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #607849;
    color: #FFF !important;
}

@media (min-width: 1200px) {
    .navbar-brand img {
        width: 77px;
        height: 55px;
    }

    .navbar-nav {
        margin-left: 5rem;
        margin-right: 0;
        justify-content: space-between;
        width: 100%;
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        text-align: center;
    	padding: .5rem 1rem;
        position: relative;
    }

    .dropdown:hover .dropdown-toggle {
        background-color: #FFF;
        color: #607849;
    }

    .dropdown:hover a.nav-link {
        background-color: #FFF;
        color: #607849;
    }

    .dropdown:hover .dropdown-menu {
    	display: block;
    	margin-top: 0;
    }

    .dropdown:hover .fa-caret-down {
    	transform: rotate(-180deg);
    	transition: all .1s ease-in-out;
    }

    .dropdown>.dropdown-toggle:active {
        pointer-events: none;
    }

    .dropdown-menu {
        margin: 0;
        min-width: 200px;
        box-shadow: 0px 10px 20px rgba(0,0,0,.08);
    }

    .dropdown:last-of-type > .dropdown-menu {
	    left: auto;
	    right: 0;
	}
}

@media (max-width: 1199.98px) {
    .navbar {
        padding: 0;
    }

    a.navbar-brand {
        margin: 0 0 0 15px;
        padding: 7.5px 0;
    }

    .navbar-brand img {
        width: 63px;
        height: 45px;
    }

    .brand-white {
        display: none !important;
    }

    .navbar-nav .nav-item .nav-link {
    	padding: .25rem .5rem;
        margin-top: .25rem;
        margin-bottom: .25rem;
        text-align: center;
    }

    .navbar-collapse {
        max-height: calc(80vh - 60px);
        overflow-y: auto;
    }

    .navbar-collapse::-webkit-scrollbar {
        display: none;
    }

    .navbar-collapse {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .navbar-nav {
        padding: 0 15px 15px 15px;
    }

    .dropdown.show .nav-link {
        border: 1px solid #DEE2E6;
    	color: #607849;
        background-color: #F8F9FA;
        outline: none;
    }

    .dropdown.show .fa-caret-down {
    	transform: rotate(-180deg);
    	transition: all .1s ease-in-out;
    }

    .dropdown-menu {
        margin: .25rem 0 .5rem 0;
    }

    .dropdown-header {
        text-align: center;
    }

    .dropdown-item {
        padding: .25rem .75rem;
        text-align: center;
    }
}

.nav-link-active a {
    color: #607849 !important;
    background-color: #FFF;
}

.dropdown-toggle::after {
    display: none !important;
}


/* MOBILE MENU */

.navbar-toggler {
    margin: 0 15px 0 1rem;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 100%;
}

.navbar-toggler:focus {
    outline: none;
    background: transparent !important;
}

.navbar-toggler .icon-bar {
    background-color: #FFF;
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}

.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:hover>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:active>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    transition: ease all .2s;
}


/* CARDS */

.card {
    border-radius: 0;
    transition: all .3s ease;
}

.card.rounded-xl img {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.card-header:first-child {
    border-radius: 0;
}

.card-body p:last-child {
    margin-bottom: 0;
}

.card-footer:last-child {
    border-radius: 0;
}

.card-body {
    padding: 1rem;
}

.card-zoom {
    position: relative;
    overflow: hidden;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0),rgba(0,0,0,.5));
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.card-img-overlay.rounded-overlay {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.card-img-overlay p {
    color: #FFF;
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    margin-bottom: 0;
    padding: 0;
    text-shadow: 0px 10px 20px rgba(0,0,0,.25);
}

.card-img-overlay p {
    color: #FFF;
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    margin-bottom: 0;
    padding: 0;
    text-shadow: 0px 10px 20px rgba(0,0,0,.25);
}

.zoom-wrapper {
	position: relative;
	overflow: hidden !important;
}

.zoom-wrapper img {
	max-width: 100% !important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.card-zoom:hover .card-img-overlay {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.card-zoom:hover .zoom-wrapper img,
.card-zoom:focus .zoom-wrapper img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}


/* HOME PAGE */

.bg-hero {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    padding: 7rem 0;
    text-align: center;
}

.bg-hero img {
    width: 350px;
    margin-bottom: 2rem;
}

.bg-hero h2 {
    color: #FFF;
    text-shadow: 0px 0px 10px rgba(0,0,0,.25);
}

.bg-hero .h1 {
    color: #FFF;
    text-shadow: 0px 0px 10px rgba(0,0,0,.25);
    margin-bottom: 0;
}

@media (max-width: 1199.98px) {
    .bg-hero {
        padding: 6rem 0;
    }

    .bg-hero img {
        width: 325px;
    }
}

@media (max-width: 991.98px) {
    .bg-hero {
        padding: 5rem 0;
    }

    .bg-hero img {
        width: 300px;
    }
}

@media (max-width: 767.98px) {
    .bg-hero {
        padding: 4rem 0;
    }

    .bg-hero img {
        width: 275px;
    }
}

@media (max-width: 575.98px) {
    .bg-hero {
        padding: 3rem 0;
    }

    .bg-hero img {
        width: 250px;
    }
}


/* SUB PAGE */

.subpage-container {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
}

.subpage-container h1 {
    color: #FFF;
    text-shadow: 0px 0px 10px rgba(0,0,0,.25);
    margin-bottom: 0;
}


/* COLLAPSE */

.expand-btn {
    font-size: 1rem;
    text-align: left;
    padding: .5rem 2.5rem .5rem 1rem;
    white-space: normal;
    position: relative;
}

.expand-btn.collapsed {
    font-size: 1rem;
    text-align: left;
    padding: .5rem 2.5rem .5rem 1rem;
    white-space: normal;
    position: relative;
}

.expand-btn::after {
    font-size: 1rem;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: .75rem;
    top: .5rem;
    position: absolute;
    color: inherit;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    transform: rotate(-180deg);
    -webkit-font-smoothing: antialiased;
    transition: all .2s ease;
}

.expand-btn.collapsed::after {
    font-size: 1rem;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: .75rem;
    top: .5rem;
    position: absolute;
    color: inherit;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transform: rotate(0deg);
    transition: all .2s ease;
}

ul.link-list {
    padding: 0;
    margin: 0;
}

.link-list li {
    list-style-type: none;
    padding: .25rem 0;
}

.link-list li:last-child {
    border-bottom: none;
}

.link-list li a {
    display: block;
    width: 100%;
}


/* MODALS */

.modal-body p:last-child {
	margin-bottom: 0;
}

.modal-content {
    border: 0;
    border-radius: 0;
}

.modal-header {
    border-radius: 0;
    padding: 1rem;
}

.modal-footer {
    border-radius: 0;
}

.modal .close {
    border-radius: 0;
    font-size: 1rem;
    padding: .5rem;
    margin-top: -.25rem;
    margin-right: -.25rem;
}


/* FORMS */

label {
    font-weight: bold;
    font-size: 14px;
}

legend {
    font-weight: bold;
    text-transform: uppercase;
}

.form-control {
    background-color: #F8F9FA;
    border-radius: 0;
    border: 1px solid #DEE2E6;
}

.custom-select {
    background-color: #F8F9FA;
    border-radius: 0;
    border: 1px solid #DEE2E6;
}

.form-control.flush {
    border: 1px solid #FFF;
}

.input-group-text {
    border-radius: 0;
    background-color: #FFF;
}

.modal-header .close {
    opacity: 1 !important;
    transition: all .3s ease;
}

.modal-header .close:hover,
.modal-header .close:focus {
    opacity: .75 !important;
    transition: all .3s ease;
}

@media (min-width: 992px) {
    .border-lg-left {
        border-left: 1px solid #DEE2E6;
    }
}


/* ALERTS */

#alertBar {
    z-index: 2;
}

.alert {
    border: 0;
    border-radius: 0;
    padding: .5rem 0;
    font-size: 14px;
    margin-bottom: 0;
}

.alert p {
    margin-bottom: 0;
}

.alert a {
    display: inline-block;
}

.alert .close {
    font-size: 1rem;
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
}


/* TO TOP */

.scroll-top {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    z-index: 9;
    background-color: #FFF;
    color: #607849;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    line-height: 40px;
    right: 15px;
    bottom: 15px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0,0,0,.08);
}

.scroll-top.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
    box-shadow: 0px 10px 20px rgba(0,0,0,.08);
}

.scroll-top.show:hover,
.scroll-top.show:focus {
    color: #83A065;
    background-color: #FFF;
    box-shadow: 0px 10px 20px rgba(0,0,0,.15);
}


/* FOOTER */

ul.sm-nav-footer {
    padding: 0;
    margin: 0;
    display: inline-block;
}

.sm-nav-footer li {
	list-style-type: none;
	display: inline-block;
}

.sm-nav-footer li a {
    font-size: 1.75rem;
    padding: .5rem;
    color: #FFF;
    transition: all .3s ease;
}

.sm-nav-footer li a:hover,
.sm-nav-footer li a:focus {
    color: rgba(255,255,255,.75);
    transition: all .3s ease;
}


/* calendar */
.calendar-head th { background: #607849; color: #FFF; text-transform: uppercase; padding: 5px; font-weight: normal; font-size: 16px; }
.calendar-table td, calendar-table th { padding: 5px; }
.calendar-header { background: #DDD; }
.calendar-row { border-bottom: 1px solid #DDD; border-left: 1px solid #DDD; background: #FFF; }
.calendar-sunday-row { border-left: 10px solid #F1F3DA; }

.ui-state-highlight a { background: #607849!important; color: #FFF!important; }

/* USED FOR HIDING BODY UNTIL JS LOADS - LEAVE AT THE END */

body {
    opacity: 0;
}