/*
    Theme Name: Sperling Starter
    Theme URI: https://www.sperlinginteractive.com
    Description: Sperling Interactive WordPress Starter Theme
    Version: 1.0
    Author: Sperling Interactive
  Theme URI: https://www.sperlinginteractive.com
*/




:root {
    --white: #fff;      

    --blue: #002F61;
    --blue-hover: #00264E;
    --secondary-cta: #06937E;
    --secondary-cta-hover:#036E5A;

    /* --yellow: #E8A12D; */
    /* --violet: #8F1A95; */

    --black: #121212;
}

/* global box-sizing */
*,
*:after,
*:before {
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

.icon {
    display:none;
}

body {
    color: var(--white);
    font: 300 1.6rem/1.4 Helvetica, Arial, sans-serif;
    font-family: helvetica-lt-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
}
p strong,
ul li strong,
ul li b,
p b {
      font-family: helvetica-lt-pro, sans-serif;
    font-style: normal;
      font-weight:500;
}

/* clear */
.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

/* Lightspeed Lazy load fade in */
img[data-lazyloaded] {
    opacity: 0;
}

img.litespeed-loaded {
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}

a {
    text-decoration: none;
    font-weight: 400;
}

a:hover {}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

input:focus {
    border: 1px solid #04A4CC;
    outline: 0;
}

p,
ul,
ol {
    font-size: 1.6rem;
     font-family: helvetica-lt-pro, sans-serif;
    font-style: normal;
    font-weight: 400;
}

h1 {
    font-size: 3.6rem;
    font-family: georgia, sans-serif;
    font-weight: 700;
    font-style: normal;
}

h2 {
    font-size: 3.2rem;
    font-family: georgia, sans-serif;
    font-weight: 700;
    font-style: normal;
}

h3 {
    font-size: 2.5rem;
    font-family: georgia, sans-serif;
    font-weight: 700;
    font-style: normal;
}

h4 {
    font-size: 2.4rem;
    font-family: georgia, sans-serif;
    font-weight: 700;
    font-style: normal;
}

h5 {
    font-size: 2.0rem;
    font-family: georgia, sans-serif;
    font-weight: 700;
    font-style: normal;
}

h6 {
    font-size: 1.6rem;
    font-family: georgia, sans-serif;
    font-weight: 700;
    font-style: normal;
}

blockquote {
    margin: 25px 0;
    padding: 25px 0 25px 5vw;
    font-style: italic;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-weight: 700;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 2560px;
}

.container {
    max-width:1280px; 
    align-self: center;
    flex: 1 auto;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

/* header */
.header {}

.logo-img {
    backface-visibility: hidden;
    height: 80px;
}

/* nav */
.nav {}

/* sidebar */
.sidebar {}

/* footer */
.footer {
    background: var(--blue);
    padding: 20px;
}

.pagination {
    font-size: 1.6rem;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
/*------------------------------------*\
    IMAGES
\*------------------------------------*/


/*------------------------------------*\
    ACF GOOGLE MAP
\*------------------------------------*/

.acf-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    border: #ccc solid 1px;
    margin: 20px 0;
  }

   /* Fixes potential theme css conflict. */
  .acf-map img {
   max-width: inherit !important;
  }



  /* FLEX CONTENT */
.header-section {
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    position:relative;
    height:500px;
    display:flex;
    align-items:center;
}

.header-section:before{
    content:'';
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
    background:rgba(0,0,0,0.4);
    z-index:0;
}

.header-section .content-box p,
.header-section .content-box p span {
    font-family: helvetica-lt-pro, sans-serif;
    font-style: normal;
    font-weight:500 !important;
}

.header-section .container {
    position: relative;
    z-index:1;
    height:unset;
}

a.button {
    background-color: var(--blue);
    padding: 7px 15px 7px 15px;
    color:white;
    border-radius: 10px;
    transition: 0.3s ease;
    border:2px solid var(--blue);
    display:inline-block;
    font-family: helvetica-lt-pro, sans-serif;
    font-style: normal;
    font-weight:500;
}

a.button:hover{
    background-color:var(--blue-hover);
    color: white;
}

a.button.secondary-cta {
    background-color: var(--secondary-cta);
    border:2px solid var(--secondary-cta);
}
a.button.secondary-cta:hover{
    background-color: var(--secondary-cta-hover);
}

.text-black p,
.text-black h2,
.text-black h3,
.text-black ul {
    color: var(--black);
}
.text-black ul li {
    margin-bottom: 15px;
    margin-top:15px;
}
.text-black ul li::marker {
    color: var(--blue);
}

.center-align {
    text-align:center;
}
.two_columns .box h3 {
    margin-top: 0px;
}
/* .two_columns .box a {
    display: block; 
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    padding: 15px;
}

.two_columns .box a:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    transform: translateY(-4px);
} */
.two_columns .box p,
.two_columns .box span {
      font-family: helvetica-lt-pro, sans-serif;
    font-style: normal;
      font-weight:300 !important;
}

.two_columns .column {
    margin-bottom: 25px;
}

.gallery .columns {
    justify-content: center;
}

.gallery .columns .image-box {
    overflow:hidden;
}

.gallery .columns .image-box a img {
    transition: 0.3s ease;
    transform: scale(1.0);
}
.gallery .columns .image-box a:hover img {
        transform: scale(1.05);
}

footer p a {
    color:white;
}
footer p {
    text-align:center;
}

.credit-box p {
    color: var(--blue);
    margin-bottom: 0px;
    margin-top:5px;
    text-align:right;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width:320px) {}

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

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

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

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

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

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-webkit-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-moz-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #FFF;
    border: 1px solid #F0F0F0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: #000 !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " ("attr(href) ")";
    }

    abbr[title]:after {
        content: " ("attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .nav,
    .sidebar,
    .home-slider,
    #respond {
        display: none;
    }

    @page {
        margin: 2cm;
    }
}

.notification-banner {
    padding: 10px 0;
    font-size: 16px;
    text-align: center;
}

.notification-banner p {
    margin: 0;
}
