/* --- Fonts --- */
@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap");
@import"https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css";

@font-face {
    font-family: "Rockwell";
    src: url("/fonts/webfont/rockwell-bold.woff2") format("woff2"), url("/fonts/webfont/rockwell-bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Rockwell";
    src: url("/fonts/webfont/rockwell.woff2") format("woff2"), url("/fonts/webfont/rockwell.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- Variables --- */
:root {
    --arimo: "Arimo", sans-serif;
    --rockwell: "Rockwell", serif;
    --font-awesome-5: "font Awesome 5 Pro";
    --white-color: #fff;
    --stone-color: #e3e1dc;
    --lightgreen-color: #d6dd93;
    --black-color: #000;
    --primary: #2b5265;
    --secondary: #da6e40;
    --hover-colo: #000;
    --hover-color: #000;
    --body-color: #393b36;
    --heading-color: #000;
    --title-color: #2b5265;
    --bgtransparent: transparent;
    --link-color: #236496;
    --red-color: #8a1e01;
    --gray-color: #efefef;
    --gray-border: #dfdfdf;
    --yellow-color: #f6a51f;
    --dark-green: #788129;
    --light-green: #AEBF43;
    --inherit-color: inherit;
    --overlay-color: #555;
    --light-gold-brand: #c9a978;
    --light-blue-brand: #cce8f6;
    --medium-blue: #395f6f;
    --darker-green: #64681e;
}

/* --- Defaults ---*/
html {
    font-size: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.wrapper-safe {
    overflow: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--arimo);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--body-color);
}

a,
button {
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

a:hover {
    opacity: 0.8;
}

a:focus,
button:focus,
.btn:focus {
    outline: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--rockwell);
    color: var(--heading-color);
    margin-top: 0px;
    font-style: normal;
    font-weight: 700;
    text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h2 {
    font-size: 2.25rem;
    color: var(--title-color);
}

@media (max-width: 767px) {
    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .mid-heading {
        font-size: 1.25rem;
    }
}

.text_red {
  color: var(--red-color);
}

.color-black {
  color: var(--black-color);
}

.title-color {
  color: var(--title-color);
}

.btn-safe a {
  background: var(--black-color);
  border: 1px solid var(--black-color);
  display: inline-block;
  padding: 13px 40px;
  text-decoration: none;
  color: var(--white-color);
  text-decoration: none;
}
.btn-safe a:hover {
  background: var(--white-color);
  color: var(--black-color);
}

.mid-heading {
    margin-top: .3rem;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--rockwell);
    color: var(--black-color);
}

.sm-heading-s {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black-color);
}

p:not(div.card-body p):not(.card *):not(.glad_ask *):not(.modal *):not(.lead) {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.7;
    color: var(--body-color);
    margin-bottom: 0.9375rem;
}

label {
    color: var(--body-color);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--secondary);
    color: var(--white-color);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--body-color);
    font-size: 1rem;
    opacity: 1;
}

*::placeholder {
    color: var(--body-color);
    font-size: 16px;
    opacity: 1;
}

ul {
    margin: 0px;
    padding: 0px;
}

/* --- Elements/Nav Bar --- */
.elements-main {
    padding-left: 1.5rem;
    padding-right: 1rem;
}
.elements-main ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    gap: 1.875rem;
}

@media (max-width: 767px) {
    .elements-main ul {
        gap: .625rem;
    }
}

.elements-main ul li {
    flex: 1;
}

.elements-main ul li img {
    width: 100%;
}

.elements-main .text-content {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.elements-main h2 {
    margin-top: .5rem;
}

.elements-area {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: solid 1px var(--gray-border);
}

@media (max-width: 767px) {
    .elements-area {
        margin-top: 1.25rem;
    }

    .elements-main h2 {
        font-size: 1.75rem;
    }
}

/* --- Forms --- */

.formBlock {
    margin-bottom: 1rem;
    margin-left: .5rem;
}

.umbraco-forms-hidden, .umbraco-forms-field.hidden {
    display: none;
}

.umbraco-forms-field {
    padding-bottom: 1rem;
}

.umbraco-forms-container .umbraco-forms-label {
    font-weight: 600;
}

.umbraco-forms-field-wrapper .help-block {
    font-style: italic;
    font-size: smaller !important;
    padding: 0rem !important;
    margin: 0rem !important;
}

/* --- End Forms --- */

/* --- Header --- */
.header {
    padding: 1.25rem 0rem;
    /*margin-bottom: 1.5rem;*/
}

@media (max-width: 767.98px) {
    .header {
        padding: 1.25rem 0rem;
        background: linear-gradient(to right, #fff 20%, transparent);
    }     
}
@media screen and (max-width: 1199.98px) {
    .header {
        padding: 1.25rem 0rem;
        background: linear-gradient(to right, #fff 40%, transparent);
    } 
}
.header .header-bar button {
    border: 0;
    background: transparent;
}

.header .header-bar .fa-bars {
    font-size: 2.125rem;
    color: #395e6f;
}

.header-logo img {
    max-width: 25.125rem;
}

@media screen and (max-width: 767px) {
    .header-logo img {
        max-width: 11.5625rem;
    }
}

@media screen and (max-width: 319px) {
    .header-logo img {
        max-width: 10.3125rem;
    }
}

.header-search {
    max-width: 13.4375rem;
    width: 100%;
    position: relative;
}

@media (min-width: 992px) {
    .header-search.startactive input {
        opacity: 1;
        width: 17.5rem;
    }
}

.header-search.active input {
    opacity: 1;
    width: 17.5rem;
}

@media (max-width: 991px) {
    .header-search.active input {
        width: 12.8rem;
    }
}

.header-search.active button {
    color: #fff;
    background-color: #395e6f;
}

.header-search.active button .search-close {
    opacity: 0;
    display: none;
}

.header-search.active button .search-main {
    display: block;
    opacity: 1;
}

.header-search input {
    height: 100%;
    width: 0%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 1.125rem;
    border-radius: 50px;
    padding: 0 3.75rem 0 1.25rem;
    outline: none;
    height: 2.8125rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(-51%);
    top: 50%;
    position: absolute;
    right: -3px;
    opacity: 0;
}

.header-search button {
    position: relative;
    color: #395e6f;
    background-color: transparent;
    font-size: 1rem;
    cursor: pointer;
    height: 2.5rem;
    width: 2.5rem;
    line-height: 3.125rem;
    text-align: center;
    border-radius: 50%;
    border: none;
    padding: 0px;
    line-height: 2.5rem;
}

.header-search button .search-close {
    opacity: 0;
    display: none;
}

.header-search button .search-main {
    opacity: 1;
    display: block;
    background: #395e6f;
    color: #fff;
    border-radius: 50%;
}

.header-menu {
    flex: 0 0 auto;
}

@media (max-width: 480px) {
    .header-menu {
        gap: 0 !important;
    }
}

.header-bar span {
    cursor: pointer;
    font-size: 1.875rem;
    display: inline-block;
    color: #395e6f;
}

.home .header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}
  
.header-content {
    background-color: var(--gray-color);
    border-bottom: 2px var(--gray-border) solid;
}

.header-carousel {
    margin-top: 0;
    margin-bottom: 0;
}

/* --- Skip to Content --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.sr-only-focusable:active,.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal
}

/* --- Alert --- */
.safe-alert {
    margin-bottom: 0;
    background: var(--red-color);
    color: #edeee9;
    border: 0;
    border-radius: 0;
    padding-top: 7px;
    padding-bottom: 7px;
}

@media (max-width: 767px) {
    .safe-alert .alert-text {
        font-size: 0.75rem;
    }
}

.safe-alert a {
    color: #ffcc33;
    text-decoration: none;
}

.safe-alert a:hover {
    opacity: 0.8;
}

/* --- Modal --- */
.modalContainer {
    display: none;
}

.modalControls {
    font-size: 3em;
}

.modalControls i {
    cursor: pointer;
}

/* Custom Card Styles */
/*.card img.horizontal-card-rounded {*/
/*    border-radius: .375rem 0 0 0;*/
/*}*/


/* Info Panel Styles */
.info-panel-container {
    background-color: transparent;
}
.info-panel-container .info-panel {
    background-color: #000;
    padding: 2rem 0 .5rem 0;
    color: var(--white-color);
    font-size: .875rem;
}
.info-panel-container .info-panel h3 {
    color: var(--white-color);
    font-weight: 300;
}
.info-panel-container .info-panel h4 {
    color: var(--white-color) !important;
    margin-top: .5rem;
    margin-bottom: 0;
    font-weight: 300;
}
.info-panel-container .info-panel p {
    font-size: 1rem;
    padding: .2em 1em;
    color: var(--white-color) !important;
}
.info-panel-container .info-panel p a,
.info-panel-container .info-panel p i a {
    color: #7ca7df;
    text-decoration: none;
    transition: .3s;
}
.info-panel-container .info-panel p a:hover,
.info-panel-container .info-panel p i a:hover
{
    color: #7ca7df;
    text-decoration: none;
    opacity: .7;
}

.info-panel-container .info-panel p a:focus-visible,
.info-panel-container .info-panel p i a:focus-visible {
    color: #7ca7df;
    border: dotted 1px gold;
    text-decoration: none;
}

.info-panel-container .info-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-panel-container .info-panel li {
    padding: 0.625em 0;
    display: flex;
    align-items: left;
    text-decoration: none;
}
.info-panel-container .info-panel li:first-child {
    padding-top: 0;
}
.info-panel-container .info-panel li i {
    padding-right: 0.375em;
    color: #7794a2;
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 0.1875em;
}
.info-panel-container .info-panel li a {
    color: #fff;
    transition: .3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}
.info-panel-container .info-panel li a:hover {
    opacity: .7;
    text-decoration: none;
}

/* Content */

.intro-text-area {
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
.intro-text-area p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* End Info Panel Styles */

/* Owl Slider CSS*/

@media (min-width: 576px) {
  .banner-slider .owl-dots, .banner-slider .owl-nav {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .banner-slider .owl-dots, .banner-slider .owl-nav {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .banner-slider .owl-dots, .banner-slider .owl-nav {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .banner-slider .owl-dots, .banner-slider .owl-nav {
    max-width: 100%;
  }
}
@media (max-width: 1299.98) {
    .banner-slider {
        margin-top: 3rem;
    }   
}
@media (min-width: 1400px) {
  .banner-slider .owl-dots, .banner-slider .owl-nav {
    max-width: 100%;
  }
}

/* End Owl Slider CSS*/

/* Navigation Widget */

.navigation-widget {
    margin-top: 1em;
    padding-right: 2em;
}

.navigation-widget .navigation-title {
    word-break: break-word;
}

/* Footer */
footer {
    background: #262d36;
    padding: 0 0 .875rem 0;
    color: var(--white-color);
    font-size: .875rem;
    width: 100vw;
}

/* footer newsletter */
footer .footer-newsletter {
    padding: 3.125rem 0;
    background: #404244;
}
footer .footer-newsletter h4 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
}
footer .footer-newsletter p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: "Open Sans", sans-serif;
    color: var(--white-color);
}
footer .footer-newsletter form {
    margin-top: 1.875rem;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}
footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 100px);
}
footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -3px;
    right: -4px;
    bottom: -3px;
    border: 0;
    background: none;
    font-size: 1rem;
    padding: 0 20px 0 20px;
    margin: 3px;
    background: #688898;
    color: var(--white-color) !important;
    transition: .3s;
    border-radius: 0 4px 4px 0;
}
footer .footer-newsletter form input[type=submit]:hover {
    background: #536d7a;
}

footer .footer-main {
    background: #2a323c;
    border-top: 1px solid #303945;
    border-bottom: 1px solid #303945;
    padding: 3.75rem 0 1.875rem 0;
    color: var(--white-color) !important;
}
footer .footer-main .footer-links {
    margin-bottom: 1.875rem;
}
footer .footer-main .footer-links h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white-color) !important;
    text-transform: uppercase;
    position: relative;
    padding-bottom: .75rem;
}
footer .footer-main .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer .footer-main .footer-links li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}
footer .footer-main .footer-links li:first-child {
    padding-top: 0;
}
footer .footer-main .footer-links li i {
    padding-right: 6px;
    color: #7794a2;
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 3px;
}
footer .footer-main .footer-links li a {
    color: #fff;
    transition: .3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}
footer .footer-main .footer-links li a:hover {
    opacity: .7;
    text-decoration: none;
}
footer .footer-main .footer-links li a:focus,
footer .footer-main .footer-links li a:focus-visible {
    border: 2px dashed white;
    border-radius: 2px;
    outline: none !important;
}
footer .footer-main .footer-contact {
    margin-bottom: 1.875rem;
    color: var(--white-color) !important;
}
footer .footer-main .footer-contact h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white-color) !important;
    text-transform: uppercase;
    position: relative;
    padding-bottom: .75rem;
}
footer .footer-main .footer-contact p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
    padding-right: 1rem;    
    font-family: "Open Sans", sans-serif;
    color: var(--white-color) !important;
    text-decoration: none;
}
footer .footer-main .footer-contact p a {
    color: var(--white-color) !important;
    transition: .3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}
footer .footer-main .footer-contact p a:hover {
    opacity: .7;
    text-decoration: none;
}
footer .footer-main .footer-contact p a:focus,
footer .footer-main .footer-contact p a:focus-visible {
    border: dashed 2px var(--white-color) !important;
    outline: none !important;
}
footer .footer-main .footer-social {
    margin-bottom: 1.875rem;
}
footer .footer-main .footer-social h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white-color) !important;
    text-transform: uppercase;
    position: relative;
    padding-bottom: .75rem;

}
footer .footer-main .footer-social p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0;
    margin-right: 1rem;
    padding-right: 1rem;
    font-family: "Open Sans", sans-serif;
    color: var(--white-color) !important;
}
footer .footer-main .footer-social p a:focus,
footer .footer-main .footer-social p a:focus-visible {
    border: dashed 2px var(--white-color) !important;
}
footer .footer-main .footer-social a.btn:focus,
footer .footer-main .footer-social a.btn:focus-visible {
    border: dashed 2px var(--white-color) !important;
    outline: none !important;
}
footer .footer-main .footer-social .social-links .fab {
    text-align: center;
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.3rem;
    margin-right: 10px;
    width: 2.875rem;
    height: 2.875rem;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    line-height: 2.3;
}
footer .footer-main .footer-social .social-links .fab:hover {
    opacity: .7;
}
footer .footer-main .footer-social .social-links .fa-facebook-f {
    color: var(--white-color);
    background-color: #3b5998;
}
footer .footer-main .footer-social .social-links .fa-facebook {
    color: var(--white-color);
    background: #3b5998;
}
footer .footer-main .footer-social .social-links .fa-youtube {
    color: var(--white-color);
    background: red;
}
footer .footer-main .footer-social .social-links .fa-twitter {
    color: var(--white-color);
    background: #55acee;
}
footer .footer-main .copyright {
    text-align: center;
    padding-top: 1.875rem;
    color: var(--white-color) !important;
}
footer .footer-main .copyright p {
    text-align: center;
    color: var(--white-color) !important;
    font-family: "Open Sans", sans-serif;
}
footer .copyright p a,
footer .copyright a {
    color: #fff;
    transition: .3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}
footer .copyright p a:hover,
footer .copyright a:hover {
    opacity: .8;
}
footer .copyright p a:focus,
footer .copyright p a:focus-visible,
footer .copyright a:focus,
footer .copyright a:focus-visible {
    border: dashed 2px var(--white-color) !important;
    outline: none !important;
}
footer .footer-main .credits {
    padding-top: 5px;
    text-align: center;
    font-size: .8125rem;
    font-family: "Open Sans", sans-serif;
    color: var(--white-color) !important;
}
@media (max-width: 767px) {
    .footer-main .footer-links, .footer-main .footer-contact, .footer-main .footer-social {
        margin-left: 2rem;
    }
    .footer-main .footer-social p {
        margin-right: 1rem;
    }
}
/* End Footer */

/* Start Service Finder */

.autoComplete_wrapper {
    width: 100% !important;
}

/* End Service Finder */

/* Media Showcase styles */
.media-showcase {
    padding: 0;
    font-family: "Open Sans", sans-serif !important;
}
.media-showcase .media-play {
    min-height: 25rem;
    background: linear-gradient(rgba(0,  0,  0,  0.4),  rgba(0,  0,  0,  0.7)), url("/media/q0bpw303/pexels-adriaan-greyling-1920.jpg") center center;
    background-size: cover;
}
.media-showcase .content {
    background: linear-gradient(rgba(0,  0,  0,  0.5),  rgba(75,  94,  102,  0.8)), url("/media/w5lbeirr/dark-bg-lines.png") center center;
    background-size: cover;
    color: rgba(255, 255, 255, .8);
    padding: 2.5rem;
}
@media(min-width: 768px) {
    .media-showcase .content {
        padding: 5rem;
    }
}
.media-showcase .content h3 {
    font-family: "Open Sans", sans-serif !important;
    font-weight: 600;
    font-size: 2rem;
    color: #fff;
}
.media-showcase .content ul {
    list-style: none;
    padding: 0;
}
.media-showcase .content ul li {
    font-family: "Open Sans", sans-serif !important;
    padding-bottom: 0.625rem;
    list-style: none;
}
.media-showcase .content ul i {
    font-size: 1.25rem;
    padding-right: 4px;
    color: #688898;
}
.media-showcase .content p {
    font-family: "Open Sans", sans-serif !important;
    color: #fff !important;
}
.media-showcase .content p:last-child {
    margin-bottom: 0;
}
.media-showcase .content .read-more {
    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.75em 1.5em;
    border-radius: 0.3125em;
    transition: .3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #688898;
}
.media-showcase .content .read-more i {
    font-size: 1.125rem;
    margin-left: 0.3125em;
    line-height: 0;
    transition: .3s;
}
.media-showcase .content .read-more:hover {
    background: rgba(104, 136, 152, .9);
    padding-right: 1.1875rem;
}
.media-showcase .content .read-more:hover i {
    margin-left: 0.625rem;
}
.media-showcase .play-btn {
    width: 5.875rem;
    height: 5.875rem;
    background: radial-gradient(#688898 50%,  rgba(104,  136,  152,  0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 2.9375rem);
    top: calc(50% - 2.9375rem);
    overflow: hidden;
}
.media-showcase .play-btn:before {
    content: "";
    position: absolute;
    width: 7.5rem;
    height: 7.5rem;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 0.3125rem solid rgba(104, 136, 152, .7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
.media-showcase .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 0.625rem solid rgba(0, 0, 0, 0);
    border-bottom: 0.625rem solid rgba(0, 0, 0, 0);
    border-left: 0.9375rem solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55,  0.055,  0.675,  0.19);
}
.media-showcase .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 0.625rem solid rgba(0, 0, 0, 0);
    border-bottom: 0.625rem solid rgba(0, 0, 0, 0);
    border-left: 0.9375rem solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}
.media-showcase .play-btn:hover:after {
    border-left: .9375rem solid #688898;
    transform: scale(20);
}
@keyframes pulsate-btn {
    0% {
        transform: scale(0.6,  0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1,  1);
        opacity: 0;
    }
}
/* List Block Styles */
.list-block i {
    font-size: 2rem;
    line-height: 0;
}
.list-block h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.625em 0 0 0;
    color: var(--secondary);
}
.list-block a {
    color: var(--secondary);
}
.list-block a:hover {
    color: var(--primary);
}
.list-block.active {
    transition: .3s;
    background: var(--secondary) linear-gradient(rgba(var(--primary),  0.95),  rgba(var(--primary),  0.6));
    border-color: var(--primary);
}
.list-block.active h4 {
    color: var(--white-color);
}
.list-block.active i {
    color: var(--white-color) !important;
}
.list-block h3 {
    font-weight: 600;
    font-size: 36px;
    color: var(--secondary);
}
.list-block ul {
    list-style: none;
    padding: 0;
}
.list-block ul li {
    padding-bottom: 10px;
}
.list-block ul i {
    font-size: 1.5rem;
    margin-right: 4px;
    color: var(--primary);
}
.list-block p:last-child {
    margin-bottom: 0;
}
@keyframes fadeIn {
    0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}/* End List Block Styles */

/* News Styles */
.news-block h1, .news-block h2, .news-block h3,  .news-block h4, .news-block h5, .news-block .h5, .news-block h6 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}
.news-block .flex-auto {
    flex: 0 0 auto;
}
.news-block .h-250 {
    height: 250px;
}
.news-block .bg-featured-news {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 15rem;
}
.news-block .news-header-logo {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 2.25rem;
}
.news-block .news-header-logo:hover {
    text-decoration: none;
}
.news-block .large-news-box-right {
    background-color: #395f6f;
    padding-left: 0;
}
.news-block .large-news-box-right a {
    text-decoration: underline;
    color: #fff;
}
.news-block .large-news-box-left {
    background-color: #c9a978;
    padding-right: 0;
}
.news-block .large-news-box-left p {
    margin-bottom: 1.2rem;
}
.news-block .news-pagination {
    margin-bottom: 4rem;
}
.news-block .news-post {
    margin-bottom: 4rem;
}
.news-block .news-post h2, .news-block .news-post .h2 {
    color: #395f6f !important;
}
.news-block .news-post ul {
    list-style: none;
    padding: 0;
}
.news-block .news-post ul li {
    padding-bottom: 5px;
}
.news-block .news-post ul li a {
    text-decoration: none;
    color: #395f6f;
    transition: .4s;
}
.news-block .news-post ul li a:hover {
    color: #a45248;
}
.news-block .news-post ul i.i-rust {
    font-size: 1.25rem;
    padding-right: 4px;
    color: #a45248;
    transition: .4s;
}
.news-block .news-post ul i.i-rust:hover {
    color: #395f6f;
}
.news-block .news-post ul i.i-light-blue {
    font-size: 1.25rem;
    padding-right: 4px;
    color: #688898;
}
.news-block .news-post ul i.i-primary-blue {
    color: #395f6f;
}
.news-block .news-post ol {
    padding: 0;
    margin-left: 1rem;
}
.news-block .news-post ol li {
    padding-bottom: 5px;
}
.news-block .news-post ol li a {
    text-decoration: none;
    color: #395f6f;
}
.news-block .news-post ol li a:hover {
    color: #a45248;
}
.news-block .news-post .btn-warning {
    background-color: #ffd451;
    color: #000;
}
.news-block .news-post .btn-warning:hover {
    background-color: #ffc107;
    color: #000;
}
.news-block .news-post-meta {
    margin-bottom: 1.25rem;
    color: #6c757d;
}
.news-block .card-block .card-img {
    height: 100%}
.news-block .card-block img {
    opacity: .4;
}
.news-block .card-block .card-text a {
    color: #faf25b;
    text-decoration: none;
    transition: .4s;
}
.news-block .card-block .card-text a:hover {
    color: #a3d3ec;
    text-decoration: none;
}
@media(min-width: 575.98px)and (max-width: 991.98px) {
    .card-img-overlay .card-text {
    font-size: .75rem;
}
.card-img-overlay .card-title {
    font-size: smaller;
    margin-top: -0.5rem;
}
.card-img-overlay p.card-text {
    margin-bottom: .75rem;
}
}@media(min-width: 575.98px)and (max-width: 755px) {
    .card-img-overlay .card-text {
    font-size: 1rem;
}
.card-img-overlay .card-title {
    font-size: larger;
}
.card-img-overlay p.card-text {
    margin-bottom: .5rem;
}
}@media(min-width: 576px)and (max-width: 767.98px) {
    .large-news-box-right {
    padding: 0;
}
.large-news-box-right img {
    width: 100%;
    padding: 0;
}
.large-news-box-left {
    padding: 0;
}
.large-news-box-left img {
    width: 100%;
    padding: 0;
}
}@media(max-width: 1399.98px) {
    .large-news-box-right {
    padding: 0;
}
.large-news-box-right img {
    width: 100%;
    height: 100%}
.large-news-box-right p, .large-news-box-right h2, .large-news-box-right .h2 {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
}
.large-news-box-left {
    padding: 0;
}
.large-news-box-left img {
    width: 100%;
    height: 100%}
.large-news-box-left p, .large-news-box-left h2, .large-news-box-left .h2 {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
    margin-bottom: 1.2rem;
}
}@media(min-width: 768px) {
    .h-md-250 {
    height: 250px;
}
}[data-bs-theme=dark] .news-block .news-post-meta {
    margin-bottom: 1.25rem;
    color: #989ea4;
}
[data-bs-theme=dark] .news-post {
    margin-bottom: 4rem;
}
[data-bs-theme=dark] .news-post h2, [data-bs-theme=dark] .news-post .h2 {
    color: #889fa9 !important;
}
[data-bs-theme=dark] .news-post ul {
    list-style: none;
    padding: 0;
}
[data-bs-theme=dark] .news-post ul li {
    padding-bottom: 5px;
}
[data-bs-theme=dark] .news-post ul li a {
    text-decoration: none;
    color: #889fa9;
    font-weight: 500;
    transition: .4s;
}
[data-bs-theme=dark] .news-post ul li a:hover {
    color: #c4cfd4;
}
[data-bs-theme=dark] .news-post ul i.i-rust {
    font-size: 1.25rem;
    padding-right: 4px;
    color: #a45248;
}
[data-bs-theme=dark] .news-post ul i.i-rust:hover {
    color: #688898;
}
[data-bs-theme=dark] .news-post ol {
    padding: 0;
    margin-left: 1rem;
}
[data-bs-theme=dark] .news-post ol li {
    padding-bottom: 5px;
}
[data-bs-theme=dark] .news-post ol li a {
    text-decoration: none;
    color: #889fa9;
}
[data-bs-theme=dark] .news-post ol li a:hover {
    color: #c4cfd4;
}
/* END News Styles */

/* Color Mode and HR styles */
.bi {
    vertical-align: -0.125em;
    fill: currentColor;
}
.mc-hr-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(104, 136, 152, .1);
    border: solid rgba(104, 136, 152, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(104, 136, 152, .1), inset 0 .125em .5em rgba(104, 136, 152, .15);
}
.btn-bd-primary {
    --bs-light-blue-bg:  #688898;
    --bs-light-blue-rgb:  104,  136,  152;
    --bs-btn-font-weight:  600;
    --bs-btn-color:  var(--bs-white);
    --bs-btn-bg:  var(--mc-light-blue-bg);
    --bs-btn-border-color:  var(--mc-light-blue-bg);
    --bs-btn-hover-color:  var(--bs-white);
    --bs-btn-hover-bg:  #3f7b99;
    --bs-btn-hover-border-color:  #3f7b99;
    --bs-btn-focus-shadow-rgb:  var(--mc-light-blue-rgb);
    --bs-btn-active-color:  var(--bs-btn-hover-color);
    --bs-btn-active-bg:  #255770;
    --bs-btn-active-border-color:  #255770;
}
.bd-mode-toggle {
    z-index: 1500;
}
.bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
}
#maincontent .landingContent .generalContent .content p.intro {
    color: #395f6f;
    font-weight: 500;
    font-size: 1.4rem;
}

/* START Icon Card Styles */
#maincontent .mc-icon-cards {
    margin: 3rem 0 2rem 0;
}
#maincontent .mc-icon-cards .mc-icon-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
    text-align: center;
}
#maincontent .mc-icon-cards .mc-icon-card-subtitle {
    margin-bottom: .5rem;
    text-align: center;
}
#maincontent .mc-icon-cards .card {
    align-items: center;
    vertical-align: middle;
}
#maincontent .mc-icon-cards .card .card-body {
    height: 16rem;
    width: auto;
    align-items: center;
    vertical-align: middle;
    padding-top: 2rem;
}
#maincontent .mc-icon-cards .card .card-body .card-icon {
    font-size: 4rem;
    color: #304f5e;
    transition: .3s;
}
#maincontent .mc-icon-cards .card .card-body .card-icon:hover {
    color: #688898;
}
#maincontent .mc-icon-cards .card .card-body .card-icon a {
    color: #304f5e;
    text-decoration: none;
    transition: .3s;
}
#maincontent .mc-icon-cards .card .card-body .card-icon a:hover {
    color: #688898;
    text-decoration: none;
}
#maincontent .mc-icon-cards .card .card-body .card-title {
    font-size: 1.4rem;
    font-weight: 500;
}
#maincontent .mc-icon-cards .card .card-body .card-title a {
    color: #304f5e;
    text-decoration: none;
    transition: .3s;
}
#maincontent .mc-icon-cards .card .card-body .card-title a:hover {
    color: #688898;
    text-decoration: none;
}
#maincontent .mc-icon-cards .card .card-body .card-link {
    font-size: 1.125rem;
    color: #688898;
    text-decoration: none;
    margin-top: 1.25rem;
    display: inline-block;
    transition: .3s;
}
#maincontent .mc-icon-cards .card .card-body .card-link:hover {
    color: #304f5e;
    text-decoration: none;
}

@media (max-width: 576px) {
    #maincontent .mc-icon-cards .card .card-body .card-title {
        font-size: 1.1rem;
        font-weight: 700;
    }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
   #maincontent .mc-icon-cards .card .card-body .card-title {
        font-size: 1.3rem;
        font-weight: 500;
    }
}
@media only screen and (min-width: 991.98px) and (max-width: 1199.98px) {
    #maincontent .mc-icon-cards .card .card-body .card-title {
        font-size: 1.3rem;
        font-weight: 500;
    }
   #maincontent .mc-icon-cards .card .card-body {
        height: 16rem;
        width: auto;
        align-items: center;
        vertical-align: middle;
        padding-top: 1rem;
    }
}
/* END Icon Card Styles */

/* START Event Feature Block Styles */
#maincontent .event-feature-container {
    width: 100vw;
    height: auto;
}
#maincontent .event-feature {
    font-family: "Roboto Condensed", sans-serif;
    margin: 3rem 0 0 0; 
}
#maincontent .event-feature .event-feature-title {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    margin-left: 2rem;
}
#maincontent .event-feature .event-feature-title h2 {
    margin-bottom: 0;
    border-left: solid 3px #3c6275;
    padding-left: .5rem;
}
#maincontent .event-feature .event-feature-card {
    position: relative;
}
#maincontent .event-feature .event-feature-card .event-feature-card-image {
    width: 100%;
}
#maincontent .event-feature .event-feature-card .event-feature-card-details {
    color: #fff !important;
    padding: 2.5rem 0 2.5rem 2.5rem;
    background-color: rgba(0, 0, 0, .6);
    max-width: 100%;
}
#maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-text {
    color: #fff !important;
    font-weight: 100;
    font-size: 1.7rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
#maincontent .event-feature .event-feature-card .event-feature-card-details h3 {
    color: #fff !important;
    border-bottom: 3px solid #688898;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.5rem;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    #maincontent .event-feature .event-feature-card .event-feature-card-details h3 {
        border-bottom: 0 solid #688898;
    }
}
#maincontent .event-feature .event-feature-card .event-feature-card-details h3 a {
    text-decoration: none;
}
#maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-text p {
    color: #fff !important;
}
#maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-text a,
#maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-text p a {
    transition: .3s;
}
#maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-text a:hover,
#maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-text a:focus,
#maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-text p a:hover,
#maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-text p a:focus {
    color: #bde4f5;
    text-decoration: none;
}
#maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-text [scfieldtype="multi-line text"] {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
#maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-date {
    color: #fff !important;
    font-size: 1rem;
    text-transform: uppercase;
}
@media(min-width: 992px) {
    #maincontent .event-feature .event-feature-card .event-feature-card-details {
        position: absolute;
        left: 0rem;
        bottom: 0rem;
        max-width: 50%;
        left: 5rem;
        bottom: 2.5rem;
    }
}
@media(max-width: 575.98px) {
    #maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-text {
        font-size: .8125rem;
	}
}
@media(min-width: 576px) {
    #maincontent .event-feature .event-feature-card .event-feature-card-details .event-feature-card-date {
        font-size: 1.3125rem;
    }
}
/* END Event Feature Block Styles */

/* BEGIN Page Banner Styles */
#maincontent .mid-page-banner {
    color: #fff;
    margin: 2rem 0rem 3rem 0;
    background-color: #304f5e;
}
#maincontent .mid-page-banner a {
    color: #fff;
}
#maincontent .mid-page-banner a:hover {
    color: #688a98;
    text-decoration: none;
}
#maincontent .mid-page-banner .mid-page-banner-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.3rem;
    color: #fff;
    padding-right: 1.3rem;
    padding-top: .4rem;
}
#maincontent .mid-page-banner .mid-page-banner-title a {
    color: #fff;
    text-decoration: underline;
    transition: .3s;
}
#maincontent .mid-page-banner .mid-page-banner-title a:hover {
    color: #bde4f5;
    text-decoration: none;
}
#maincontent .mid-page-banner .mid-page-banner-text {
    color: #fff;
    border-left: solid 1px #fff;
    padding: .4rem 1rem .3rem 1rem;
}
#maincontent .mid-page-banner .mid-page-banner-text p {
    color: #fff !important;
    padding-top: 1rem;
}
#maincontent .mid-page-banner .mid-page-banner-text a,
#maincontent .mid-page-banner .mid-page-banner-text p a {
    color: #fff !important;
    text-decoration: underline;
    transition: .3s;
}
#maincontent .mid-page-banner .mid-page-banner-text a:hover,
#maincontent .mid-page-banner .mid-page-banner-text a:focus,
#maincontent .mid-page-banner .mid-page-banner-text p a:hover,
#maincontent .mid-page-banner .mid-page-banner-text p a:focus{
    color: #bde4f5;
    text-decoration: none;
}
#maincontent .mid-page-banner .mid-page-banner-title {
    text-align: right;
}
#maincontent .mid-page-banner .mid-page-banner-text {
    color: #fff;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}
@media(min-width: 576px) {
    #maincontent .mid-page-banner {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    #maincontent .mid-page-banner .mid-page-banner-title {
        text-align: right;
    }

    #maincontent .mid-page-banner .mid-page-banner-text {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }
}
@media(max-width: 576px) {
    #maincontent .mid-page-banner {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    #maincontent .mid-page-banner .mid-page-banner-title {
        text-align: left;
        margin-left: 1rem;
        padding-left: 1.25rem;
    }
    #maincontent .mid-page-banner .mid-page-banner-text {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
        border-left: none;
        margin-left: 1rem;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
    #maincontent .mid-page-banner {
        margin: 2rem 0rem;
        background-color: #304f5e;
    }
}
/* END Page Banner Styles */

/* START Icon Grid Styles */
#maincontent .icon-grid {
    border-bottom: 5px solid #acb55c;
    background-color: var(--gray-color);
    width: 100vw;
}
#maincontent .icon-grid span.icon-light-blue {
    padding-top: 0;
    min-width: 3rem;
}
#maincontent .icon-grid span.icon-light-blue i {
    color: #395f6f;
    font-size: 1.95em;
    padding: 0;
    margin: 0;
    transition: all .3s ease-in-out;
}
#maincontent .icon-grid span.icon-light-blue i:hover {
    opacity: .8;
    text-decoration: none;
}
#maincontent .icon-grid a {
    text-decoration: none;
    color: #395f6f;
    padding: 0;
    margin: 0;
    transition: all .3s ease-in-out;
}
#maincontent .icon-grid a:hover, .icon-grid a:focus {
    text-decoration: none;
    opacity: .8;
}
@media(max-width: 575.98px) {
    #maincontent .icon-grid {
	    margin-left: 0;
	}
}
@media(min-width: 0)and (max-width: 575.98px) {
	#maincontent .icon-grid {
	    margin-right: 0;
	    padding-right: 0;
	}
	#maincontent .icon-grid div {
    	margin-right: 1rem;
	}
}
/*END Icon Grid Styles */

/* BEGIN Column Overlay Card Styles */
#maincontent .col-overlay-cards .card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
#maincontent .col-overlay-cards .card .col-card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, .4);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 1rem;
}
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-text {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 1rem 0;
}
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-title a, 
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-text a {
    text-decoration: none;
    color: #fff;
    transition: color .3s ease-in-out;
}
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-title a:hover, 
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-title a:focus, 
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-title a:active, 
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-title a:focus-visible, 
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-text a:hover, 
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-text a:focus, 
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-text a:active, 
#maincontent .col-overlay-cards .card .col-card-img-overlay .card-text a:focus-visible {
    color: #64c4f4;
    text-decoration: none;
}

@media(min-width: 767.98px)and (max-width: 991.98px) {
    #maincontent .col-overlay-cards {
        margin-left: 2rem;
    }
    #maincontent .col-overlay-cards .card .col-card-img-overlay {
        padding: 1rem;
    }
    #maincontent .col-overlay-cards .card .col-card-img-overlay .card-title {
        font-size: 1.1rem;
        font-weight: 500;
        margin: .5rem 0;
    }
    #maincontent .col-overlay-cards .card .col-card-img-overlay .card-text {
        font-size: .885rem;
        font-weight: 400;
        margin: .5rem 0;
    }
}
/* END Column Overlay Card Styles */

/* Breadcrumb */

.breadcrumb {
  padding-left: 1.875rem;
  padding-bottom: .5rem !important;
  padding-top: .5rem !important;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding-left: 0.625rem;
  }
  
  .breadcrumb li.menu-offcanvas {
    margin-right: 1.25rem;
  }
  
  .breadcrumb .active {
      display: none;
  }
}
.breadcrumb-inner {
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
  color: #000;
}
@media screen and (max-width: 767px) {
  .breadcrumb-inner {
    left: 0;
  }
}
.breadcrumb-item {
  color: #727272;
  text-decoration: none;
}
.breadcrumb-item a {
  color: #727272;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb-item::before {
  color: #727272;
}
.breadcrumb-item.active {
  /*color: #da6e40;*/
  color: #b85d36;
  font-weight: 500;
}

/* End Breadcrumb */

.pagination-controls {
    font-size: 0.875rem;
}

.ginlined-content {
    margin: 2rem;
}