body {
    font-size: 1.25rem;
    font-family: roboto, sans-serif;
}

body.no-scroll {
    overflow-y: hidden;
    position: relative;
    touch-action: none;
    -ms-touch-action: none;
    height: 100%;
}

html {
  scroll-behavior: smooth;
}

nav {
    padding: 1rem 0 0;
    background: white;
    z-index: 10;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

b, strong {
    font-weight: 600;
}

a {
    color: var(--primary);
    text-decoration: none;
    background-color: transparent;
}
section a:not(.btn, .link-card) {
    color: var(--secondary);
    text-decoration: underline;
    font-weight: 400;
}
section a:not(.btn, .link-card):hover {
    color: var(--primary);
}

img.logo {
    min-width: 200px;
    max-width: 240px;
}

.font-roboto {
    font-family: 'Roboto', sans-serif;
}

.sub .nav-link {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--secondary);
    text-rendering: optimizeLegibility;
    display: inline;
}

p.cta a {
    color: #1F4F54;
    text-decoration: underline;
    background-color: transparent;
}

.primary .nav-link {
    font-family: roboto-condensed, sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
}

h1 {
	font-family: aesthet-nova, serif;
    font-size: 4rem;
}

h2 {
    font-family: aesthet-nova, serif;
    font-size: 3rem;
    color: var(--secondary);
}

h3 {
    font-family: aesthet-nova, serif;
    color: var(--secondary);
    font-size: 24px;
}

h4 {
    font-family: aesthet-nova, serif;
    color: var(--secondary);
    font-size: 22px;
}

section h3:not(:first-child) {
    padding-top: 1rem;
}

a.resource-link {
    font-family: aesthet-nova, serif;
    color: var(--secondary);
    font-size: 20px;
    display: block;
    margin-bottom: 14px;
    text-decoration: underline;
}

.hero {
	background: url('../img/hero-img.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 250px 0;
    position: relative;
}

.hero svg {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
}

.footer-waves svg {
    margin-bottom: -5px;
    position: relative;
    z-index: 3;
}

p, ul li {
    font-family: roboto, sans-serif;
    color: #212121;
    font-weight: 300;
    line-height: 1.6;
}

.event-post h3 {
    font-family: aesthet-nova, serif;
    color: var(--secondary);
    font-size: 24px;
}

.event-post p {
    font-size: 15px;
    margin-top: 18px;
    line-height: 1.75;
}

.event-post p.subtitle {
    color: #7C7C7C;
    text-transform: uppercase;
    font-family: roboto-condensed, sans-serif;
    letter-spacing: 0.5px;
    font-size: 14px;
    margin-top: 32px;
    margin-bottom: 12px;
}

a.lg-link {
    font-family: aesthet-nova, serif;
    font-size: 3rem;
    color: var(--secondary);
    text-decoration: underline;
}

#container {
    position: absolute;
    top: -190%;
    right: -25%;
    z-index: -1;
}

#circle { 
    position: relative;
    width: 225px;
    height: 225px;
    overflow: hidden; 
}

#circle text {
    font-size: 0.237em !important;
    font-weight: 300;
    text-transform: uppercase;
}

#container .arrow {
    position: absolute;
    bottom: 40px;
    right: 50px;
    font-size: 0.85em !important;

}

#circle svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 300px;
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 10s;
    -moz-animation-duration: 10s;
    -ms-animation-duration: 10s;
    -o-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from { -webkit-transform: rotate(360deg); }
    to { -webkit-transform: rotate(0); }
}
@-moz-keyframes rotate {
    from { -moz-transform: rotate(360deg); }
    to { -moz-transform: rotate(0); }
}
@-ms-keyframes rotate {
    from { -ms-transform: rotate(360deg); }
    to { -ms-transform: rotate(0); }
}
@-o-keyframes rotate {
    from { -o-transform: rotate(360deg); }
    to { -o-transform: rotate(0); }
}
@keyframes rotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0); }
}

.quick-links-container {
    max-width: 85%;
    margin-left: auto;
}

.quick-links-container h2 {
    font-size: 130px;
    font-family: aesthet-nova, serif;
    color: #D3E2E3;
    margin-left: -25%;
}

@media (min-width: 576px) {

    .container.right {
        max-width: calc( 100% - (100% - 540px) / 2 );
        margin-right: 0;
    }

    .container.left {
        max-width: calc( 100% - (100% - 540px) / 2 );
        margin-left: 0;
    }
    
}

@media (min-width: 768px) {

    .container.right {
        max-width: calc( 100% - (100% - 720px) / 2 );
        margin-right: 0;
    }

    .container.left {
        max-width: calc( 100% - (100% - 720px) / 2 );
        margin-left: 0;
    }

}

@media (min-width: 992px) {

    .container.right {
        max-width: calc( 100% - (100% - 960px) / 2 );
        margin-right: 0;
    }

    .container.left {
        max-width: calc( 100% - (100% - 960px) / 2 );
        margin-left: 0;
    }

}

@media (min-width: 1200px) {

    .container.right {
        max-width: calc( 100% - (100% - 1140px) / 2 );
        margin-right: 0;
    }

    .container.left {
        max-width: calc( 100% - (100% - 1140px) / 2 );
        margin-left: 0;
    }

}

.hp-events, .social {
    padding-bottom: 100px;
}

ul.quick-links {
    display: block;
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
    margin-top: 40px;
}

ul.quick-links li {
    margin-bottom: 16px;
    font-family: roboto-condensed, sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.5px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--primary);
}

ul.quick-links li a {
    color: #1F4F54;
}

.teal {
    color: var(--primary);
}

p.cta {
    font-size: 18px;
    font-weight: 300;
    color: #1F4F54;
}

.newsletter {
    padding:  80px 0;
}

.line-break {
    height: 1px;
    width: 100%;
    background: var(--primary);
}

.btn-outline-primary {
    color: var(--secondary);
    font-family: roboto-condensed, sans-serif;
    text-transform: uppercase;
    border-color: var(--primary);
    background: #EDF4F3;
    letter-spacing: 0.5px;
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.footer {
    background: var(--secondary);
    position: relative;
    z-index: 3;
}

.sub-dir-header {
    padding: 200px 0;
}

.dir-content-container {
    padding: 50px;
    background: #fefefe;
    margin-top: -100px;
}

.support-columns {
    padding: 80px 0 100px;
}

h2.lg-h2 {
    font-size: 80px;
    font-family: aesthet-nova, serif;
    color: #D3E2E3;
    line-height: 1;
    margin-bottom: 30px;
}

.bottom-pad {
    padding-bottom: 100px;
}

.interior-header {
    padding: 100px 0;
}

.interior-header h1 {
    font-size: 80px;
    margin-bottom: 24px;
    color: var(--secondary);
}

.grey-bg {
    background: #F5F5F5;
    padding: 100px 0;
    margin-bottom: 100px;
}

.parking-callout {
    height: 100%;
    border-left: 1px solid #C3C8CA;
    padding-left: 50px;
}

.btn {
    font-family: roboto-condensed, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
}
.btn-light {
    color: var(--secondary) !important;
}

.dir-list {
    padding-right: 70px;
    position: absolute;
    width: 100%;
}

@media only screen and (max-width: 991px) {

    .dir-list {
        padding-right: 50px;
        position: relative;
    }

}

@media only screen and (max-width: 767px) {

    .dir-list {
        padding-right: 0;
    }

}


.oasis-steps {
    border: 1px solid #C3C8CA;
    margin: 0;
    padding: 12px;
    display: flex;
    align-items: center;
    border-radius: 15px;
    margin-bottom: 20px;
}

.oasis-steps h4 {
    font-family: roboto-condensed, sans-serif;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 20px;
}

.oasis-steps p {
    font-size: 14px;
    color: var(--secondary);
}

.footer {
    padding: 50px 0;
}

.footer h3 {
    color: var(--primary);
    margin-bottom: 24px;
}

p.credits {
    color: #EEF4F3;
    font-size: 12px;
    letter-spacing: 0.25px;
    font-weight: 300;
    margin-bottom: 12px;
}

a.footer-link {
    font-family: roboto-condensed, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    display: block;
    font-weight: 300;
    margin-bottom: 18px;
}

.footer .fa-ul {
    color: #D3E2E3;
    font-family: roboto, sans-serif;
    font-weight: 300;
}

.footer .fa-ul li {
    margin-bottom: 18px;
    color: #D3E2E3;
}

.footer .fa-ul .fa-li {
    color: var(--primary);
}

ul.nav.social {
    margin-left: 2em;
    padding-bottom: unset;
}

ul.nav.social a.nav-link {
    color: #D3E2E3;
    font-size: 25px;
    padding: 0.75rem;
}

.social-icons .nav-link {
    padding: 0.5rem;
}

.hamburger .line {
    width: 35px;
    height: 2px;
    background-color: var(--secondary);
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}

/* ONE */

#hamburger-1.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}

#mobile_menu .mobile-container {
    align-items: flex-end;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

#mobile_menu .mobile-nav {
    align-items: flex-start;
    color: #121212;
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 500px;
    justify-content: flex-start;
    /* pointer-events: none; */
    position: absolute;
    top: 50px;
    left: 28px;
    z-index: 11;
}

div#mobile_menu {
    position: absolute;
    top: 0;
    height: 100vh;
    min-height: 500px;
    z-index: 9;
    width: 100%;
    pointer-events: none;
}

div#mobile_menu.active::after {
    background: #fff;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: all;
    z-index: 10;
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.mobile-nav a {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #08314e;
    text-decoration: none !important;
    pointer-events: none;
    opacity: 0;
}

.mobile-side-nav li a {
    font-size: 1rem;
    border: 0 !important;
    margin-bottom: 0.5rem;
}
.mobile-side-nav h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.mobile-nav p {
    font-size: 1em;
    color: #08314e;
    text-decoration: none !important;
    pointer-events: none;
    opacity: 0;
}

.work .mobile-nav a, .work .mobile-nav p  {
    color: #fefefe;
}

div#mobile_menu.active.work::after {
    background: #08314e;
}

.mobile-nav.work a, .mobile-nav.work p  {
    color: #fefefe;
}

.dir-item {
    margin-bottom: 30px;
}

div#mobile_menu.active .mobile-nav a {
    -webkit-animation: fade-in-top 0.6s ease-in-out 0.6s both;
                animation: fade-in-top 0.6s ease-in-out 0.6s both;
    pointer-events: all;
}

div#mobile_menu a.ex-small {
    font-size: 1em;
    margin-top: 2em;
}

div#mobile_menu a.small {
    font-size: 1.5em;
}

div#mobile_menu a.nav-link {
    font-size: 1.5em;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@media only screen and (min-width: 1062px) {

    div#mobile_menu.active::after {
        display: none;
    }

    .mobile-nav a {
        opacity: 0;
    }

    div#mobile_menu.active .mobile-nav a {
        display: none;
        pointer-events: none;
    }
}

.menu-hide {
    display: inline-block;
}

.menu-show {
    display: none;
}

@media only screen and (max-width: 1060px) {

    .menu-hide, .nav.sub {
        display: none;
    }

    .menu-show {
        display: inline-block;
    }

    .primary .nav-link {
        padding-right: 0;
    }

}

@media only screen and (max-width: 680px) {
    img.logo {
        min-width: 185px;
        max-width: 190px;
        padding-bottom: 10px;
    }
}

.dir-content-container h1 {
    color: var(--secondary);
    font-size: 3rem;
}

.map-fpo {
    background: url('../img/map-fpo.png');
    background-position: center;
    background-size: cover;
    height: 600px;
    width: 100%;
}

.dir .dir-list {
    height: 600px;
    overflow: scroll;
}

@media only screen and (max-width: 991px) {

    section.explore {
        margin-top: 0;
    }

    .explore-h2 h2 {
        margin-top: 48px;
        margin-left: -24px;
        font-size: 16px;
    }

    .oasis-container {
        height: 300px;
        margin-bottom: 18px;
    }

    .dt-parking-container {
        margin-top: 0;
        margin-right: 9px;
    }

    .biz-dir-container {
        margin-left: 9px;
    }

    .explore-h1 {
        font-size: 110px;
    }

    section.quick-links {
        background: #F5F5F5;
        padding: 100px 0;
        margin-bottom: 100px;
    }

    .quick-links-container h2 {
        font-size: 80px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .quick-links-container {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .map-fpo {
        height: 300px;
    }

    .dir .dir-list {
        height: auto;
        overflow: hidden;
    }

}


@media only screen and (max-width: 767px) {

    .hero {
        padding: 150px 0;
    }

    h2 {
        font-size: 40px;
    }

    .interior-header h1 {
        font-size: 50px;
        margin-bottom: 24px;
    }

    .explore-heading {
        display: block;
    }
    .dt-parking-container {
        margin-right: 0;
    }

    .biz-dir-container {
        margin-left: 0;
        margin-bottom: 18px;
    }

    .container {
        max-width: 735px;
    }

    .explore-h1 {
        font-size: 80px;
    }

    .explore-h2 h2 {
        margin-top: 0px;
        margin-left: 15px;
        font-size: 16px;
    }

    a.lg-link {
        font-size: 32px;
    }

    .dir-content-container h1 {
        font-size: 40px;
    }

    p, ul li {
        font-size: 16px;
    }

}

#mobile_menu .mobile-container {
    align-items: flex-end;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

#mobile_menu .mobile-nav {
    color: #121212;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 123px);
    min-height: 500px;
    justify-content: flex-start;
    position: absolute;
    top: 124px;
    left: 0;
    z-index: 11;
    right: 0;
    max-height: 100vh;
    padding-left: 28px;
    padding-right: 28px;
}

div#mobile_menu {
    position: fixed;
    top: 100px;
    height: 100vh;
    min-height: 500px;
    z-index: 9;
    width: 100%;
    pointer-events: none;
}

div#mobile_menu.active::after {
    background: linear-gradient(to left, #E0EBEB, #fefefe);;
    content: '';
    position: fixed;
    top: 40px;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: all;
    z-index: 10;
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.mobile-nav a {
    font-size: 1.75em;
    margin-bottom: 10px;
    font-weight: 300;
    color: #08314e;
    text-decoration: none !important;
    pointer-events: none;
    opacity: 0;
    border-top: 1px solid var(--primary);
    width: 100%;
    padding-bottom: 12px;
}

.mobile-nav a:last-of-type {
    border-bottom: 1px solid var(--primary);
}

.mobile-nav p {
    font-size: 1em;
    color: #08314e;
    text-decoration: none !important;
    pointer-events: none;
    opacity: 0;
}

.work .mobile-nav a, .work .mobile-nav p  {
    color: #fefefe;
}

div#mobile_menu.active.work::after {
    background: #08314e;
}

.mobile-nav.work a, .mobile-nav.work p  {
    color: #fefefe;
}

div#mobile_menu.active .mobile-nav a, div#mobile_menu.active .mobile-search {
    -webkit-animation: fade-in-top 0.6s ease-in-out 0.6s both;
    animation: fade-in-top 0.6s ease-in-out 0.6s both;
    pointer-events: all;
    font-family: aesthet-nova, serif;
    color: var(--secondary);
}

div#mobile_menu a.ex-small {
    font-size: 1em;
    margin-top: 2em;
}

div#mobile_menu a.small {
    font-size: 1.5em;
}

div#mobile_menu a.nav-link {
    font-size: 1.5em;
}

.mobile-nav a:last-child {
    margin-bottom: 25px;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@media only screen and (min-width: 1061px) {

    div#mobile_menu.active::after {
        display: none;
    }

    .mobile-nav a, .mobile-nav .mobile-search {
        opacity: 0;
    }

    div#mobile_menu.active .mobile-nav a {
        display: none;
        pointer-events: none;
    }

    body.no-scroll {
        overflow-y: scroll;
        touch-action: unset;
        -ms-touch-action: unset;
        height: unset;
    }
}


.mobile-search {
    position: absolute;
    bottom: 20px;
    z-index: 12;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    padding-top: 20px;
    background: white;
}

.mobile-side {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 90px;
    left: 100%;
    z-index: 10;
    pointer-events: unset;
    transition: ease-in-out 0.25s all;
    width: 100%;
    background: transparent;
}

.mobile-side.active {
    opacity: 1;
    pointer-events: all;
    z-index: 12;
    left: 0;
    background: linear-gradient(to left, #E0EBEB, #fefefe);
    overflow: scroll;
}

#mobile_menu .mobile-side-nav {
    color: #121212;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 12;
    right: 0;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: flex-start;
    padding-left: 28px;
    padding-right: 28px;
}

.mobile-nav a.lead {
    font-weight: 400;
    padding-left: 30px;
}

.mobile-nav a i {
    position: absolute;
    right: 23px;
    top: calc( 50% - 7px);
    font-size: 28px;
    color: #6A7F96;
}

@media screen and (max-width: 767px) {
    _::-webkit-full-page-media, _:future, :root .safari_only.mobile-search {
        bottom: 105px;
    }

    _::-webkit-full-page-media, _:future, :root .safari_only.mobile-side {
        bottom: 155px;
    }

}

.annual-events ul li {
    font-family: aesthet-nova, serif;
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.annual-events ul li i {
    color: var(--primary);
}

h4.ann-events {
    color: var(--secondary);
    font-family: roboto-condensed, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 16px;
    border-bottom: 1px solid #969696;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

@media (min-width: 1350px) {
    
    .container {
        max-width: 1200px;
    }

    .container.right {
        max-width: calc( 100% - (100% - 1200px) / 2 );
        margin-right: 0;
    }

    .container.left {
        max-width: calc( 100% - (100% - 1200px) / 2 );
        margin-left: 0;
    }

}

@media (min-width: 1500px) {
    
    .container {
        max-width: 1400px;
    }

    .container.right {
        max-width: calc( 100% - (100% - 1400px) / 2 );
        margin-right: 0;
    }

    .container.left {
        max-width: calc( 100% - (100% - 1400px) / 2 );
        margin-left: 0;
    }

}

.form-control {
    height: calc(1.5em + 1.25rem + 2px);
    border-radius: 0;
}

.img-decoration {
    background: #F2EDE7;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 15%;
    left: 20%;
    z-index: -1;
}

.biz-img-accent {
    background: #E0EBEB;
    position: absolute;
    z-index: -1;
    top: -65px;
    bottom: -65px;
    left: 20%;
    right: 0;
    border-top-left-radius: 75px;
}

.resp-pad {
    padding-top: 65px;;
}

a.resource-link i {
    color: #D3E2E3 !important;
    text-decoration: none !important;
}

@media (max-width: 991px) {

    h2.lg-h2 {
        font-size: 50px;
        line-height: 1.25;
    }

    .resp-pad {
        padding-top: 0;;
    }

    .biz-img-accent {
        display: none;
    }

    a.resource-link {
        font-size: 20px;
        text-decoration: underline;
    }
}

@media (max-width: 767px) {


    h2.lg-h2 {
        font-size: 42px;
        line-height: 1.25;
    }

}

.contact .fa-ul li {
    margin-bottom: 14px;
}

.contact .fa-ul .fa-li {
    color: var(--secondary);
}

.contact ul.nav.social a.nav-link {
    color: var(--primary);
}

.filter {
    border-bottom: 1px solid #969696;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-right: 20px;
}

@media (max-width: 991px) {
    .filter {
        margin-right: 0;
    }
}


.filter h3 {
    color: var(--secondary);
    font-family: roboto-condensed, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 16px;
}

.nav-pills .nav-link {
    color: var(--secondary);
    font-family: roboto-condensed, sans-serif;
    text-transform: uppercase;
    border-color: var(--primary);
    background: #EDF4F3;
    letter-spacing: 0.5px;
    font-size: 14px;
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--primary);
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--primary);
}

.events-link {
    position: absolute;
    bottom: -20px;
    right: 60px;
    background: var(--secondary);
    height: 150px;
    width: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    text-align: center;
    font-family: aesthet-nova, serif;
    color: #F5F5F5;
    font-size: 20px;
    border: 4px solid #fefefe;
    z-index: 8;
}

.events-link:hover, .dt-parking-container:hover, .biz-dir-container:hover, .oasis-container:hover  {
    cursor: pointer;
}

@media (max-width: 767px) {
    .events-link {
        bottom: -50px;
    }
}

@media (max-width: 559px) {
    .events-link {
        display: none;
    }
}

.hp-circle-container {
    position: relative;
    margin-top: 70px;
    margin-left: -60px;
}

a.lg-link.hp {
    position: relative;
}

@media (max-width: 991px) {

    .hp-circle-container {
        margin-left: 0;
    }

}

.map-callout {
    position: absolute;
    right: -5px;
    border: 1px solid #C3C8CA;
    padding: 20px;
    border-radius: 12px;
    background: #fefefe;
    padding-right: 80px;
    margin-top: -50px;
    display: block;
}

.map-callout h3 {
    color: var(--secondary);
    font-family: roboto-condensed, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 18px;
}

.map-callout p {
    color: var(--secondary);
    font-family: roboto, sans-serif;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 300;
}

img.map-icon {
    position: absolute;
    width: 75px;
    height: 75px;
    right: -35px;
    top: -35px;
}

.oasis-marg {
    margin-bottom: 95px;
}

@media (max-width: 991px) {

    .oasis-marg {
        margin-bottom: 0;
    }

}

@media (max-width: 767px) {
    .map-callout {
        position: relative;
        right: unset;
        border: 1px solid #C3C8CA;
        padding: 20px;
        border-radius: 12px;
        background: #fefefe;
        padding-right: 20px;
        margin-top: 0;
        display: block;
        margin-bottom: 55px;
        width: 80%;
        margin-right: auto;
        margin-left: auto;
    }
}

h2.sub {
    font-family: aesthet-nova, serif;
    font-size: 30px;
    margin-bottom: 20px;
}

.img-container img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    object-position: center;
}

.img-container.event-pg img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
}

.nav.primary > .nav-item > .nav-link {
    height: 100px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.nav.primary [aria-expanded="true"] {
    position: relative;
}
.nav.primary [aria-expanded="true"]:before {
    position: absolute;
    content: '';
    height: 7px;
    background-color: var(--primary);
    bottom: 0;
    left: 1rem;
    right: 1rem;
}
nav {
    border-bottom: 1px solid #707070;
}
nav .nav-menu-section {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--secondary);
}
nav .nav-menu-section > div {
    padding: 3rem;
}
nav .nav-menu-section-links {
    column-count: 3;
    flex-grow: 1;
}
nav .nav-menu-section-links > div {
    break-inside: avoid;
}
nav .nav-menu-section h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}
nav .nav-menu-section  li a {
    font-size: 1.15rem;
}
nav .nav-menu-section, nav .nav-menu-section h3, nav .nav-menu-section a {
    color: white;
}
nav .nav-menu-section h3:only-child {
    margin-bottom: 1.5rem;
}
nav .nav-menu-section-links li {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
nav .nav-menu-section-links li:last-child {
    margin-bottom: 3rem;
}

#top-banner {
    background-color: #DBECEB;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
#top-banner a {
    text-decoration: underline;
}
#top-banner, #top-banner a {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--secondary);
    text-rendering: optimizeLegibility;
    font-family: roboto-condensed, sans-serif;
}

#home-slider .slide {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--secondary);
    color: white;
}

#home-slider h2 {
    font-size: clamp(2rem, 4.7vw, 5rem);
    line-height: clamp(2rem, 4.7vw, 5rem);
    font-weight: 400;
    color: white;
}
#home-slider p {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    color: white;
}
#home-slider a:not(.btn) {
    text-decoration: underline;
    color: white;
}

#home-slider .slide-content {
    width: 45vw;
    padding: 1.5rem 1rem;
}
#home-slider .slide-content > div {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
#home-slider .slide-img {
    width: 55vw;
    height: 80vh;
    object-fit: cover;
}

.search input {
    height: 4.5rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
}

#home-slider-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(219, 236, 235, 0.8);
    font-size: 12px;
    letter-spacing: 0.5px;
    font-family: roboto-condensed, sans-serif;
}
#home-slide-title {
    margin-left: 1rem;
    margin-right: 1rem;
}

.container-custom {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    margin-left: auto;
    margin-right: auto;
}

.v-margin {
    margin-top: 100px;
    margin-bottom: 100px;
}
.v-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

#list-of-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
#list-of-services > div {
    width: 25rem;
    flex-grow: 1;
}

.featured-service, .upcoming-event {
    background: white;
    border-radius: 1rem;
    border: 1px solid #D1D9D8;
    display: block;
    padding: 1.5rem;
    height: 100%;
}
.featured-service:hover {
    text-decoration: none;
    background-color: var(--secondary);
    color: white;
}
.featured-service {
    text-decoration: none !important;
}
.featured-service:hover h3, .featured-service:hover p {
    color: white;
}
.featured-service h3 {
    font-size: 1.75rem;
}
.featured-service p {
    font-weight: 300;
}
.service-icon {
    width: 4rem;
}
.service-icon img {
    height: 3rem;
    width: 3rem;
    object-fit: contain;
    object-position: left center;
}

.city-project h3 {
    margin-bottom: 0;
    text-align: center;
}
.city-project img {
    height: 18rem;
    width: 100%;
    object-fit: cover;
    background: darkblue;
    margin-bottom: 1rem;
}

#upcoming-events {
    position: relative;
}
#upcoming-events > * {
    position: relative;
    z-index: 2;
}
#upcoming-events:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary) 0% 0% no-repeat padding-box;
    opacity: 0.78;
    z-index: 1;
}

.upcoming-event h3 {
    min-height: 6rem;
    overflow: hidden;
}
.event-date {
    color: #50B7B4;
    text-transform: uppercase;
    font-size: 1rem;
    font-family: roboto-condensed, sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}
.upcoming-event .event-time, .upcoming-event .event-location {
    position: relative;
    font-size: 1rem;
    font-weight: 300;
    padding-left: 2rem;
    margin-bottom: 1rem;
}
.upcoming-event .event-time img, .upcoming-event .event-location img {
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.upcoming-event a:not(.btn) {
    font-size: 1rem;
    text-decoration: underline;
    color: var(--secondary);
    text-transform: uppercase;
    margin-top: 1rem;
    display: block;
}

#join-newsletter {
    border-radius: 1rem;
    overflow: hidden;
}
#join-newsletter > div {
    background-color: #DBECEB;
}
#join-newsletter h3, #join-newsletter p {
    color: var(--secondary);
}
.bg-light #join-newsletter > div,
.bg-light2 #join-newsletter > div,
.bg-light3 #join-newsletter > div {
    background-color: var(--secondary);
}
.bg-light #join-newsletter h3, .bg-light #join-newsletter p,
.bg-light2 #join-newsletter h3, .bg-light2 #join-newsletter p ,
.bg-light3 #join-newsletter h3, .bg-light3 #join-newsletter p {
    color: white;
}
section:not(.bg-light) #join-newsletter .btn-light,
section:not(.bg-light2) #join-newsletter .btn-light,
section:not(.bg-light3) #join-newsletter .btn-light {
    background-color: #EDF4F3 !important;
    border-color: #6CB5B3 !important;
}

.under-footer {
    position: relative;
    margin-bottom: -100px;
    z-index: 1;
}
.bg-light + .footer-waves {
    background-color: #E0EBEB;
}
.bg-light2 + .footer-waves {
    background-color: #DBECEB;
}
.bg-light3 + .footer-waves {
    background-color: #F1F7F8;
}

.footer a {
    color: #EEF4F3;
}
.footer a.footer-link {
    color: white;
}

.bg-light2 {
    background-color: #DBECEB;
}
.bg-light3 {
    background-color: #F1F7F8;
}

.nav-menu-section-links div ul li [href="#"]:after, .footer-link[href="#"]:after {
    content: "\f00d";
    font-family: 'Font Awesome 5 Pro';
    margin-left: 0.5rem;
    font-size: 16px;
}
.nav-menu-section-links div ul li [target="_blank"]:after {
    content: "\f08e";
    font-family: 'Font Awesome 5 Pro';
    margin-left: 0.5rem;
    font-size: 16px;
}
.nav-menu-section-links div ul li [href$=".pdf"]:after {
    content: "\f1c1";
    font-family: 'Font Awesome 5 Pro';
    margin-left: 0.5rem;
    font-size: 16px;
}

#header-hero {
    position: relative;
    height: 20rem;
    background-size: cover;
    background-position: center;
}
#header-hero > * {
    position: absolute;
    z-index: 2;
    bottom: 5rem;
    left: 0;
}
#header-hero h1 {
    font-size: 5rem;
    color: white;
}
#header-hero:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(91deg, #1F4F51 0%, #1F4F51FB 32%, #1F4F51D1 100%) 0% 0% no-repeat padding-box;
    z-index: 1;
}

label {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.form-control {
    background-color: #F5F5F5;
    border-color: #D1D9D8;
    border-radius: 13px;
    font-weight: 300;
    font-size: 1.25rem;
}

#calendar iframe {
    width: 100%;
    min-height: 100vh;
}

#breadcrumbs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
}
#breadcrumbs a {
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: underline;
    color: white;
}
#breadcrumbs div {
    line-height: 24px;
}
#breadcrumbs div:not(:last-child):after {
    content: "\f105";
    font-family: 'Font Awesome 5 Pro';
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 0.5rem;
    color: white;
    vertical-align: middle;
}
#breadcrumbs div:last-child {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

#other-posts > div:not(:last-child) {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

#sidebar-sections {
    max-width: 33%;
}

#sidebar-sections > div:not(:last-child) {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

#sidebar-sections > div > h3 {
    text-transform: uppercase;
    font-weight: 300;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    color: rgb(33, 33, 33);
    margin-bottom: 1rem;
}

#sidebar-sections a:not(.btn) {
    color: rgb(33, 33, 33);
    text-decoration: underline;
    font-weight: 300;
}

#sidebar-sections .sidebar-content-item .sidebar-content-icon {
    text-decoration: none;
}
#sidebar-sections .sidebar-content-item .sidebar-content-icon:after {
    content: "\f08e";
    font-family: 'Font Awesome 5 Pro';
}
#sidebar-sections .sidebar-content-item .sidebar-content-icon[data-link$=".pdf"]:after {
    content: "\f1c1";
}
#sidebar-sections .sidebar-content-item .sidebar-content-icon[data-link^="/"]:after {
    content: "\f0c1";
}

.faqs-section [data-bs-toggle="collapse"], .expandable-cards-section [data-bs-toggle="collapse"] {
    color: var(--secondary);
    font-weight: 400;
    font-size: 1.75rem;
    text-decoration: none;
}

.expandable-cards-section .card:not(:last-child) {
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.expandable-cards-section .card:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.faqs-section [data-bs-toggle="collapse"] div {
    position: relative;
}
.faqs-section [data-bs-toggle="collapse"] div:before {
    position: absolute;
    color: var(--secondary);
    content: '\f068';
    font-family: "Font Awesome\ 5 Pro";
    font-weight: 600;
    font-size: 1.25rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.faqs-section [data-bs-toggle="collapse"].collapsed div:before {
    content: '\f067';
}
.faqs-section .collapse a {
    text-decoration: underline;
}
.faqs-section .collapse:not(.show) + div {
    border-bottom: 1px solid #707070;
    opacity: 0.25;
}
.faqs-section .faq-question {
    border-bottom: 1px solid var(--primary);
}

.link-card .card {
    background-color: #F5F5F5;
    border: 1px solid #D1D9D8;
    border-radius: 13px;
}
.link-card:hover {
    text-decoration: none;
}
.link-card:hover .card {
    background-color: var(--light);
    border-color: var(--secondary);
}

#how-you-know {
    background-color: #EEF4F3;
    color: #212121;
    font-family: "Roboto", sans-serif;
}
#how-you-know h3 {
    font-weight: bold;
    font-size: 1.2rem;
}
#how-you-know div {
    font-size: 1.1rem;
}

#form-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

#form-lists, .two-columns {
    column-count: 2;
    gap: 1rem;
}
#form-lists > div, .two-columns > * {
    break-inside: avoid-column;
}
#form-lists ul {
    margin-top: 1rem;
    padding-left: 1rem;
}
#form-lists li {
    margin-bottom: 1rem;
}
#form-lists .attachment i.fa {
    display: none;
}
#form-lists li a {
    color: var(--dark) !important;
    text-decoration: underline;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
}
.gallery-item {
    height: 350px;
    /*flex-grow: 1;*/
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expandable-cards-section h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
.expandable-cards-section .card {
    border-color: var(--primary);
}
.expandable-cards-section .card-header {
    background-color: #EEF4F3;
}

#senior-shopper-tab-content table {
    /*table-layout: fixed;*/
    margin-bottom: 0;
}
#senior-shopper-tab-content th, #senior-shopper-tab-content td {
    text-align: center;
    min-width: 12rem;
}
#senior-shopper-tab-content td:empty {
    background-color: black;
    color: white;
}
#senior-shopper-tab-content td:empty:after {
    content: '—';
}

#main-content .container-custom {
    padding-left: 0;
    padding-right: 0;
}

#issue-form {
    position: relative;
}
#issue-form #dte, #issue-form #abandoned-vehicle, #issue-form #rec-center {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
#issue-form.show-dte-section #dte {
    transform: translateX(0);
}
#issue-form.show-vehicle-section #abandoned-vehicle {
    transform: translateX(0);
}
#issue-form.show-rec-section #rec-center {
    transform: translateX(0);
}

.card-links > div {
    flex: 0 0 25%;
    max-width: 25%;
}
#main-content .card-links > div {
    flex: 0 0 33%;
    max-width: 33%;
}
#main-content .card-links > div:first-child:nth-last-child(4), #main-content .card-links > div:first-child:nth-last-child(4) ~ div {
    flex: 0 0 50%;
    max-width: 50%;
}

#news-announcements a h3, #news-announcements a p, #results a h3, #results a p {
    color: var(--secondary) !important;
}
#news-announcements a, #results a {
    text-decoration: none;
}
#news-announcements a:hover, #results a:hover {
    color: var(--secondary) !important;
    text-decoration: underline;
}

#home-slide-title {
    min-height: 42px;
    display: flex;
    align-items: center;
}

/* select old site css */
div.body > article {
    margin-bottom: 3rem;
}

div.image {
    margin-bottom: 1rem;
    max-width: 100%;
}
div.image img {
    max-width: 100%;
}

.B_LIST .index.horizontal {
    display: block;
    margin: 0 0 1rem;
    padding: 0;
}
.B_LIST .index.horizontal li {
    display: inline-block;
    margin: 0.3ex 0;
    padding: 0 1ex 0 0;
    border-right: 1px solid #aaa;
    border-right-color: rgb(170, 170, 170);
    border-color: rgba(0, 0, 0, 0.3);
}
.mainContent br {
    display: none;
}
/* */

.alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}

@media (max-width: 991px) {

    .img-container img, .img-container.event-pg img {
        height: 400px;
    }

    #form-lists, .two-columns {
        column-count: 1;
    }

    .dir .dir-list {
        height: auto;
        overflow: hidden;
    }
    .dir-list {
        padding-right: 50px;
        position: relative;
    }

    #sidebar-sections {
        max-width: 100%;
    }

}


@media (max-width: 767px) {
    .img-container img, .img-container.event-pg img {
        height: 300px;
    }

    #home-slider .slide {
        flex-direction: column;
    }

    #home-slider h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    #home-slider p {
        font-size: 1.1rem;
    }
    #home-slider .slide-content {
        width: 100%;
    }
    #home-slider .slide-content > div {
        width: 100%;;
    }
    #home-slider .slide-img {
        width: 100%;
        height: 40vh;
        object-fit: cover;
    }

    .search input {
        height: 3rem;
        font-size: 1rem;
        border-radius: 0.5rem;
    }

    #home-slider-nav {
        left: 0;
        font-size: 18px;
    }

    .v-margin {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .v-padding {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .under-footer {
        margin-bottom: 0;
    }

    #header-hero {
        height: 10rem;
    }
    #header-hero h1 {
        font-size: 2.5rem;
    }
    #header-hero > * {
        bottom: 2rem;
    }
    #breadcrumbs div:not(:last-child)::after {
        font-size: 0.6rem;
    }
    #breadcrumbs a, #breadcrumbs span {
        font-size: 0.8rem;
    }

    .gallery-item {
        height: 100px;
    }

    .faqs-section [data-bs-toggle="collapse"], #commissions-section [data-bs-toggle="collapse"] {
        font-size: 1.25rem;
    }
    .faqs-section [data-bs-toggle="collapse"] div:before {
        font-size: 1.1rem;
    }

    .card-links > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .dir-list {
        padding-right: 0;
    }

    .B_LIST .index.horizontal li {
        border: 0;
        font-size: 1rem;
    }
}
