/* supposed to reduce flashing of mobile top menu while page is loading */
.no-js [data-responsive-toggle],
.no-js [data-responsive-menu] ul {
    display: none!important;}
@media screen and (max-width:39.9em) {
    .no-js .top-bar {display: none; }
    .no-js .title-bar {display: flex;}
}

/* Values to be used for media queries to match Foundation screen sizes
/* Small only
/* @media screen and (max-width: 39.9375em) {}

/* Medium and up
/* @media screen and (min-width: 40em) {}

/* Medium only
/* @media screen and (min-width: 40em) and (max-width: 63.9375em) {}

/* Large and up
/* @media screen and (min-width: 64em) {}

/* Large only
/* @media screen and (min-width: 64em) and (max-width: 74.9375em) {}/* see book "CSS Master 2nd Edition" in /home/mydocuments/SitePoint-Web Books pg. 117 */

html {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* for use of fluid typography, see https://ntgard.medium.com/accessible-fluid-typography-875c4aac8056 */
/* CSS for gradient using our brand colors: background: radial-gradient(circle at 50% 50%, #b1b1b3, #a6a6b1, #8589af, #5164b5, #294fab, #104495, #043c80, #003976); */
/* see gradient generator at https://learnui.design/tools/gradient-generator.html */
body {
    /* --fontSize: calc(12px + 0.698vw); */
    /* --fontSize: calc(12px + 0.550vw); */
    /* --fontSize: calc(1.625rem * ( (100vw - 18.75em) / (1600 - 300) )); */
    --fontSize: clamp(1rem, 0.5rem + 2vw, 1.625rem);
    --lineHeight: calc(var(--fontSize) * 1.4);
    --letterSpacing: calc(var(--fontSize) * 0.0015);
    --fontWeight: 100;
    --brandcolor: #b1b1b3;
    --brandshadow: #003976;
    --brandGradient: linear-gradient(#003976, #b1b1b3);
}

/* keep focus ring from showing when mouse is used - see https://css-tricks.com/the-focus-visible-trick/ */
:focus:not(:focus-visible) {
    outline: none
}

p, li, b, i, a, mark {
  font-size: var(--fontSize);
  line-height: var(--lineHeight);
  letter-spacing: var(--letterSpacing);
  font-feature-settings: normal;
}

p, li , mark, a, blockquote {
    font-weight: calc(var(--fontWeight) * 4);
}

h1, h1 a {
  font-size: calc(var(--fontSize) * 2);
  letter-spacing: var(--letterSpacing);
  font-weight: calc(var(--fontWeight) * 4);
}

h2 {
  font-size: calc(var(--fontSize) * 1.75);
  letter-spacing: var(--letterSpacing);
  font-weight: calc(var(--fontWeight)* 4);
}

h3 {
  font-size: calc(var(--fontSize) * 1.75);
  letter-spacing: var(--letterSpacing);
  font-weight: calc(var(--fontWeight)* 4);
}

h4 {
  font-size: calc(var(--fontSize) * 1.5);
  letter-spacing: var(--letterSpacing);
  font-weight: calc(var(--fontWeight)* 4);
}

.intro {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    color: #fff;
    padding: calc(var(--fontSize) * 1) calc(var(--fontSize) * 1) calc(var(--fontSize) * 0.5) calc(var(--fontSize) * 1);
    text-align: center;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* iOS devices tend to screw up our hero images when fixed */
@media (hover: none) {
    .intro {
        background-attachment: scroll;
    }
}

.contact h4 {
   font-size: calc(var(--fontSize) * 1); 
}

hr {
    width: 80%;
    border-bottom: 2px solid var(--brandcolor);
}

.title-text hr {
  border-bottom: 2px solid white;
  margin-top: calc(var(--fontSize) * 1);
  margin-bottom: calc(var(--fontSize) * 1);
}

.fa-solid {
  color: white;
  font-size: calc(var(--fontSize) * 1.5);
}

.fa-brands {
  color: white;
  font-size: calc(var(--fontSize) * 1.5);
}

.fa-chevron-down {
  color: var(--brandshadow);
}

.fa-circle {
    opacity: 0.75;
}

.bottom-div-image {
  margin-bottom: calc(var(--fontSize) * 1);
  position: absolute;
  left: auto;
  right: auto;
  bottom: 0;
}

.bottom-div-image:hover {
    cursor: pointer;
}

.top-logo {
    margin-top: calc(var(--fontSize) * 1);
}

.fab {
  border-radius: 25px;
}

a svg:hover {
  stroke-width: 2;
}

.fab-icon,
.fab-text {
  vertical-align: middle;
  display: inline-block;
}

.button {
    /* font-weight: bold; */
    text-transform: none;
    font-size: var(--fontSize);
    border-radius: calc(var(--fontSize)*2) calc(var(--fontSize)*2) calc(var(--fontSize)*2) calc(var(--fontSize)*2);
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.button.hollow.secondary:hover, .button.hollow.secondary:focus {
    border-color: #F78536;
    color: #fff;
}

.button.hollow {
    /* font-weight: bold; */
    color: var(--brandshadow);
    border-color: var(--brandshadow);
}
.button.hollow:hover, .button.hollow:focus {
    color: var(--brandshadow);
    background-color: white;
}

.button:hover, .button:focus {
    border-color: #E67526;
    color: #fff;
    background-color: #E67526;
}

h1, h2, h3, h4, h5, h6 {
/*     font-family: Roboto; */
}

h1.no-h2 {
    margin-top: calc(var(--fontSize) * 3);
    margin-bottom: calc(var(--fontSize) * 4);
}

h1.with-h2 {
    margin-top: calc(var(--fontSize) * 3);
    margin-bottom: calc(var(--fontSize) * 1);
}

h1.with-h4 {
    margin-top: calc(var(--fontSize) * 3);
    margin-bottom: calc(var(--fontSize) * 1);
}
h2.no-h3 {
    margin-top: calc(var(--fontSize) * 3);
    margin-bottom: calc(var(--fontSize) * 4);
}

h1 span strong {
    color: var(--brandshadow);
}

h2 span strong {
    color: var(--brandshadow);
}

h3 span strong {
    color: var(--brandshadow);
}

.title {
    /* font-weight: bold; */
    font-weight: calc(var(--fontWeight)* 7);
    list-style-type: none;
/*    margin-left: -20px; */
}

.display-table {
    display: table;
    width: 100%;
}

.va-align {
    display: table-cell;
    vertical-align: middle;
}

.http-error {
    margin-top: 30px;
    /* font-weight: bold; */
    font-weight: calc(var(--fontWeight)* 7);
}

.title-text h1,h2 {
    font-size: calc(var(--fontSize) * 1.5);
    margin-top: calc(var(--fontSize) * 1);
    margin-left: calc(var(--fontSize) * 1);
    margin-right: calc(var(--fontSize) * 1);
    font-weight: calc(var(--fontWeight) * 7);
    /* -webkit-text-stroke: 1px var(--brandshadow); */
    color: white;
    text-align: center;
    text-shadow: 1px 0 0 #003976, 0 -1px 0 #003976, 0 1px 0 #003976, -1px 0 0 #003976;
    /* text-shadow:
        1px 1px 0 var(--brandshadow),
        -1px -1px 0 var(--brandshadow),  
        1px -1px 0 var(--brandshadow),
        -1px 1px 0 var(--brandshadow),
        1px 1px 0 var(--brandshadow); */
}

.title-text h1 {
    font-size: calc(var(--fontSize) * 1.75);
}

.title-text {
    text-align: center;
    margin-left: calc(var(--fontSize) * 1);
    margin-right: calc(var(--fontSize) * 1);
}

.about {
    background-color: #fff;
    text-align: center;
    max-width: 70%;
    margin: 0 auto;
}

@media screen and (max-width:39.9em) {
    .about {
        max-width: 95%;
    }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .about {
        max-width: 80%;
    }
}

.about a {
  font-style: italic;
}

.left-image {
    float: left;
    margin: 0px 20px 20px 0px;
}

.right-image {
    float: right;
    margin: 10px 0px 20px 20px;
}

.article {
    background-color: #fff;
    text-align: left;
}

.article h1, h4 {
    text-align: center;
}

/* article */

.indent-list {
    padding-left: 20px
}

.left-text {
    text-align: left;
}

.right-text {
    text-align: right;
}

.brand-bg.button {
    border-color: var(--brandshadow);
    background-color: var(--brandcolor);
    color: var(--brandshadow);
}

.brand-bg.button:hover {
    border-color: var(--brandshadow);
    color: var(--brandshadow);
    background-color: white;
}

.brand-bg.label {
    background-color: var(--brandcolor);
    color: var(--brandshadow);
    font-weight: calc(var(--fontWeight)* 7);
    font-size: calc(var(--fontSize) * 0.75);
    width: 100%;
    margin-bottom: var(--fontSize);
}

.progress-container {
  position: fixed;
  width: 100%;
  height: 8px;
  background: var(--brandcolor);
}

@media screen and (max-width:39.9em) {
    .progress-container {
        border-top: 1px solid white;
    }
}

.progress-bar {
  height: 8px;
  background: var(--brandshadow);
  width: 0%;
}

.bottom-link {
    text-align: center;
    margin-top: 2em;
}

.team {
    background-color: #fff;
}

.team-member {
    text-align: center;
    margin-bottom :16px;
}

    .team-member img {
        margin-bottom: 30px;
    }

    .team-member h5 {
    }

    .team-member p {
        font-weight: calc(var(--fontWeight)* 4);
    }

.team-bio {
    text-align: left;
    margin-bottom: calc(var(--fontSize) * 5);
}

.info {
    /* during testing, IE 11 did not work with variables */
    background-color: #b1b1b3;
    color: #003976;
    padding: 20px;
    text-align: center;
}

/* Contact */

.contact {
    /* background-image: url('../img/hbg-skyline.jpg'); */
    background-position: center center;
    padding: calc(var(--fontSize) * 1);
    color: #fff;
    text-align: center;
    margin-top: calc(var(--fontSize) * 4);
    font-size: calc(var(--fontSize) * 0.75);
}

/* .phone-number {
    color: white;
    text-decoration: none;
}

.phone-number:hover {
    color: white;
} */

.footer-links a {
    color: white;
    text-decoration: none;
}

.delayed {
    visibility: hidden;
}

/* keep iphone from changing link color and underline */
a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
}

/* Contact */

/*Footer */

.footer {
    margin: 0 auto;
    max-width: 90%;
}

@media screen and (min-width: 40em) {
    .footer {
        max-width: 70%;
    }
}

.footer p {
    background-color: #fff;
    /* padding: 10px; */
    margin-bottom: var(--fontSize);
    text-align: left;
    font-size: calc(var(--fontSize) * 0.75);
    line-height: calc(var(--lineHeight) * 0.75);
}

.footer a {
    font-size: calc(var(--fontSize) * 0.75);
    line-height: calc(var(--lineHeight) * 0.75);
}

.footer.copyr, .footer strong {
    text-align: center;
    font-size: calc(var(--fontSize) * 0.75);
    line-height: calc(var(--lineHeight) * 0.75);
}

.footer-social i {
    color: #497285;
    margin-left: 20px;
    font-size: 22px;
}

.footer-social i:hover {
    color: #F78536;
}

.footer img {
    float: right;
    margin: 10px;
}

/*Footer */

/* .top-shadow {
    background-color: rgba(0,0,0,0.533);
    background: linear-gradient(180deg, transparent, #003976, #193f79, #3a4e82, #5b648e, #7a7e9b, #9697a7, #a9aab0, #b1b1b3);
    min-height: 100%;
    width: 100%;
} */

.contact-shadow {
    background-color: rgba(0,0,0,0.6);
    padding: 32px;
    min-height: 100%;
    width: 100%;
}

.orderedlist li {
    text-align: left;
    margin: 2em 0em 2em 2em;
}

.golf h3 {
    text-align: center;
    margin-top: 10px;
    color: white;
}

.td-img {
    vertical-align: bottom;
    float: right;
    margin-right: 20px
}

.sel-mail {
    border: 1px solid #00f;
}

/* abbr[title], acronym[title] {
  text-decoration: none;
} */

/* sizes for foundation icons */
.size-12 { font-size: 12px; }
      
.size-14 { font-size: 14px; }
      
.size-16 { font-size: 16px; }
      
.size-18 { font-size: 18px; }
      
.size-21 { font-size: 21px; }
      
.size-24 { font-size: 24px; }
      
.size-36 { font-size: 36px; }
      
.size-48 { font-size: 48px; }
      
.size-60 { font-size: 60px; }
      
.size-72 { font-size: 72px; }

@media (hover: hover) {
    /* animated underline on hover, modified from https://codepen.io/christiancroser/pen/xqrLBm */
    .textlink a {
    /* I don't know why this is needed, I just added it and it worked in IE Edge. If we remove this width, the gradient breaks in IE Edge */
        width: calc(100%);
        background-image: linear-gradient(transparent calc(100% - 2px), #1779ba 2px);
        background-repeat: no-repeat;
        background-size: 0% 100%;
        transition: background-size .5s;
        -webkit-transition: background-size .5s;
        -moz-transition: background-size .5s;
    }

    .textlink a:hover {
        background-size: 100% 100%;
    }

    .title-text.textlink a {
        background-image: linear-gradient(transparent calc(100% - 2px), #fff 2px);
    }
}

@media (hover: none) {
    .textlink a {
        text-decoration: underline #1779ba solid;
    }
    .title-text.textlink a {
        text-decoration: underline white solid;
    }
}

.printonly {
    display: none;
}

.printed-contact {
    display: none;
}

.newpage {
    min-height: 50vh;
}

@media print {

    body {
        --fontSize: 14pt;
        --lineHeight: 16pt;
        --brandcolor: #b1b1b3;
        --brandshadow: #003976;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    @page {
        margin: 0.5in;
    }
    h2.printonly {
        margin-bottom: 28pt;
    }
    img {
        max-width: 100% !important;
    }
    li,
    p {
        orphans: 2;
        widows: 2;
    }
    table {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    a {
        display: inline;
        text-decoration: none;
    }

    abbr[title]:after {
        content: none !important;
    }

    /* a[href^="http"]::after {
        content: " (" attr(href) ")";
        text-decoration: underline;
    } */

    a[href]:after {
      content: none;
    }

    .about, .article {
        max-width: 90%;
    }

    .top-bar {
        display: none;
    }
    .contact {
        display: none;
    }
    .footer {
        display: none;
    }
    .printed-contact {
        font-size: 10pt;
        display: block;
    }
    .noprint {
        display: none;
    }
    .nobreak {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    .printonly {
        display: block;
        text-align: center;
        margin-top: 0.5in;
    }
}
