body {
	color: var(--black);
	font-family: var(--fontnormal);
}

.navbar-custom {
    background-color: var(--black);
    color: var(--white);
}

.navbar-custom .nav-link {
    font-family: var(--fontbold);
    color: var(--as-silver);
    font-size: small;
}

.navbar-custom .nav-link:focus {
    color: var(--as-light-blue);
    background-color: var(--black);
}

.navbar-custom .nav-item {
    padding-left: 1em;
}

.navbar-custom .nav-item .dropdown-item:focus {
    background-color: var(--as-light-blue);
}

.navbar-custom .navbar-toggler {
    color: var(--white);
    border: none;
}

.navbar-custom .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    color: var(--white);
}

.navbar-custom .navbar-toggler-icon {
    color: var(--white);
}

.header-msg {
    background: var(--black);
}

.header-msg-text {
    font-family: var(--fontbold);
    color: var(--white);
}

.carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-caption h1 {
    font-family: var(--fontbold);
    color: var(--white);
    font-size: 4em;
    /*text-shadow: 1px 1px 2px var(--black);*/
    text-shadow: 
        -1px -1px 0px #000,
         0px -1px 0px #000,
         1px -1px 0px #000,
        -1px  0px 0px #000,
         1px  0px 0px #000,
        -1px  1px 0px #000,
         0px  1px 0px #000,
         1px  1px 0px #000;
}

.carousel-caption p {
    font-family: var(--fontnormal);
    color: var(--white);
    font-size: 2em;
    /*text-shadow: 3px 3px 8px var(--black);*/
    /*-webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;*/
    text-shadow: 
        -1px -1px 0px #000,
         0px -1px 0px #000,
         1px -1px 0px #000,
        -1px  0px 0px #000,
         1px  0px 0px #000,
        -1px  1px 0px #000,
         0px  1px 0px #000,
         1px  1px 0px #000;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
}

.slideshow-img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 82vh;
}

.headerimage-img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 82vh;
}

.inline-slideshow-img {
    object-fit: cover;
    object-position: center;
}

.content {
    font-family: var(--fontnormal);
    color: var(--black);
}

.content h1 {
    font-size: 62px;
    padding-bottom: 20px;
}

.content h2 {
    font-size: 36px;
    line-height: 1.2;
}

.content h3 {
    font-size: 28px;
    line-height: 1.2;
}

.content h4 {
    font-size: 18px;
    line-height: 1.2;
}

.content h5 {
    font-size: 14px;
    line-height: 1.2;
}

h2 a, h3 a, h4 a {
    text-decoration: none;
    color: var(--black);
}

h2 a:hover, h3 a:hover, h4 a:hover {
    text-decoration: underline;
    color: var(--as-light-blue);
}

.bullets ul {
    /*display: inline-block;*/
    /*list-style-type: none;*/
    padding: 0;
    margin: 0;
    text-align: center;
    /*width: 97%;*/
}

.bullets li {
    list-style-position: inside;
    margin-left: -32px;
}

.img-overlay h1 {
    font-family: var(--fontbold);
    color: var(--white);
    font-size: 62px;
    text-shadow: 1px 1px 2px var(--black);
}

.img-overlay h2 {
    font-family: var(--fontbold);
    color: var(--white);
    font-size: 26px;
    text-shadow: 1px 1px 2px var(--black);
}

.img-overlay a {
    font-family: var(--fontbold);
    color: var(--white);
    font-size: 26px;
    text-shadow: 1px 1px 2px var(--black);
    text-decoration: none;
}

.img-overlay a:hover {
    color: #CCC;
}

.overlay-bg {
    background-color: #666666;
}

.content-footer {
    background-color: var(--black);
}

.footer-text {
    color: var(--white);  
    font-size: large; 
}

.footer-text a, .footer-text a:active, .footer-text a:visited {
	color: #EEE;
	text-decoration: none;
}

.footer-text a:hover {
	color: #AAA;
}

.pt-6 { padding-top:5rem!important; }
.pb-6 { padding-bottom:5rem!important; }
.pt-7 { padding-top:7rem!important; }
.pb-7 { padding-bottom:7rem!important; }

.google-map {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
}

.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.consent-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    background-color: var(--white);
    color: var(--black);
    font-size: smaller;
}

.consent-banner-buffer {
    min-height: 100px;
}

@media screen and (max-width: 767.98px) {
    .content h1 {
        font-size: 32px;
    }

    .content h2 {
        font-size: 28px;   
    }

    .content h3 {
        font-size: 24px;   
    }

    .carousel-caption h1 {
        font-size: 1.2em;
    }
    
    .carousel-caption p {
        font-size: 1em;
    }

    .img-overlay h1 {
        font-size: 32px;
    }

    .img-overlay h2 {
        font-size: 18px;
    }

    .img-overlay a {
        font-size: 18px;
    }

    .slideshow-img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 66vh;
    }

    .headerimage-img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 66vh;
    }

    .inline-slideshow-img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 75vh;
    }

    .bullets li {
        list-style-position: inside;
        margin-left: -20px;
    }

    .google-map {
        height: 55vh;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .inline-slideshow-img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100vh;
    }

    .carousel-caption h1 {
        font-size: 2em;
    }
    
    .carousel-caption p {
        font-size: 1.5em;
    } 
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .inline-slideshow-img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100vh;
    }   

    .carousel-caption h1 {
        font-size: 3em;
    }
    
    .carousel-caption p {
        font-size: 2em;
    } 
}
