/* global styles */
* {
    box-sizing: border-box;
}
img {
    max-width: 100%
}
a {
    color: #ffffff;
}

iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    width: 100%;
}

.center {
  text-align: center;
}

a:hover, a:focus, a.active {
    color: #99cc00;
    text-decoration: underline;

}
p {
    max-width: 940px;
}
.mb10 {
    margin-bottom: 10px;
}
h1,h2,h3,h4,h5,h6 {
    color: #ffffff;
    padding-top: 4px;
    font-family: 'futura', sans-serif;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}

ul {
    padding-left: 20px;
}
ul li::marker {
    color: #99cc00;
}

/* core site layout */
html {
    background-color: #000;
    font-size: 14px;
    padding: 0px;
    margin: 0px;
}
body {
    background-color: #000;
    color: #fff;
    font-family: 'futura', sans-serif;
    padding: 0px;
    margin-top: 10px;
    min-height: 100vh;
}

.size-constrain {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
}

.page-wrap {
    padding: 0 10px;
}

.splash {
    margin-top: 5px;
}

/* top nav */
.top-nav {
    background-color: #000;
    padding: 0 5px;
}
.top-nav-content {
    flex: 0 0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    border-bottom: 1px dotted #bcb5ae;
}
.top-nav-logo {
    flex: 0 0 150px;
    padding: 0 5px 0 0;
    align-items: center;
}

/* site navigation menu */
.nav-menu {
    flex: 0 1 auto;
    display: flex;
}
.nav-menu ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    flex-flow: row wrap;
    color: #bcb5ae;
}
.nav-menu ul a {
    padding: 5px 10px;
}
.nav-menu ul a:hover, .nav-menu ul a:focus, .nav-menu ul a.active {
    text-decoration: none;
}

/* footer */
.footer {
    background-color: #000;
    padding: 0 10px;
}

.footer-content {
    flex-flow: row wrap;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content h3 {
    flex: 0 0 100%;
    text-align: center;
}

.footer-address-title {
    color: #ffffff;
    text-decoration: underline;
}
.footer-copy {
    color: #ffffff;
    padding-top: 20px;
}

.footer-content h3 .cta-msg {
    display: inline-block;
    font-size: 16px;
    color: #bcb5ae;
    padding: 5px 10px;
    background-color: #2d2b29;
}

.footer-icon, .footer-contact {
    flex: 0 0 33%;
}

.footer-icon {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-icon:last-child {
    text-align: right;
    justify-content: flex-end;
}

.footer-icon-img {
    padding-right: 5px;
}

.footer-icon:last-child .footer-icon-img {
    padding-left: 5px;
}

.footer-contact {
    text-align: center;
}

.footer-links {
    text-align: right;
}

/* page content */
.page-content {
    flex: 1 1 auto;
    padding: 0 10px 20px;
}
.page-title h1 {
    flex: 1 1 auto;
    padding: 1vw 0;
    font-weight: 100;
    margin: 0;
}

.page-body {
    padding: 0 0 20px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.pdf-banner {
    padding-top: 30px;
}

.page-bg-img {
    background-repeat: no-repeat;
    background-position: 100% 0%;
    position: relative;
}

.page-bg-img p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.page-bg-img:before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.7;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 1;
}


@media screen and (max-width:750px) {
    .page-bg-img:before {
        display: block;
    }
}

.content-area {
    flex: 1 1 600px;
    max-width: 100%;
    z-index: 2;
}

ul.wide-list {
    display: flex;
    flex-flow: row wrap;
}
ul.wide-list li {
    flex: 1 1 470px;
}


.portfolio a img {
    transition: 0.1s all ease-in-out;
}
.portfolio a:hover img {
    transform: scale(1.01);
}
.row-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-bottom: 5px;
}
.row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-bottom: 5px;
}
.row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-bottom: 5px;
}
.row-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-bottom: 5px;
}

.contact-location {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 4px;
    padding-top: 4px;
}
.contact-address {
    margin-bottom: 4px;
}
.contact-map {
    flex: 0 1 600px;
}

.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}
.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-callout {
    background-color: #6ecaae;
    color: #000;
    padding: 15px 55px;
    transition: 0.2s all ease-in-out;
}
.service-callout-title {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
    margin-bottom: 10px;
}
.service-callout-desc {
    line-height: 1.1em;
    margin-bottom: 10px;
}
.service-section {
    margin-bottom: 50px;
}
.service-section .wide-list, .service-section p {
    margin: 15px 55px;
}
.service-section ul.wide-list li {
    flex: 1 1 415px;
}

@media screen and (max-width:900px) {
    .top-nav-content {
        flex-flow: column nowrap;
    }
    .top-nav-logo {
        flex: 0 0 auto;
    }
    .nav-menu ul {
        justify-content: center;
        padding: 10px 0;
    }
}

@media screen and (max-width:600px) {
    .footer-content {
        flex-flow: column nowrap;
        align-items: center;
    }
    .footer-chunk {
        text-align: center;
        margin-bottom: 15px;
    }
    .footer-address div {
        display: inline-block;
        margin: 0 5px;
    }
    .footer-address .footer-address-title {
        display: block;
    }
    .row-break-600 {
        display: block;
    }
}


@media (min-width: 1024px) {
    .mega-text {
        font-size: 8rem;
        line-height: 1;
    }
}

@media (min-width: 768px) {
    .mega-text {
        font-size: 6rem;
        line-height: 1;
    }
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 500;
}

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

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mega-text {
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.025em;
}
