
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Hypatia Sans Pro", "Gill Sans", Calibri, "Trebuchet MS", Helvetica, Arial, Verdana, sans-serif;
    
    /* Makes sure the footer stays at the very bottom of the page, no matter how short the content is */
    min-height: 100vh;
    padding-bottom: 5em;
    position: relative;
}


h1, h2, h3 { margin-bottom: 0.5em; }

p, ul {
    margin-bottom: 1.5em;
    line-height: 140%; 
}

a { text-decoration: none;  }

.hidden { display: none !important; }

:focus {
    outline: 2px solid #FF0087;
}

#main-content {
    margin: 2.5em auto 10em;
    padding: 0 1em;
    max-width: 45.25em;
}

.main-text {
    font-size: 1.2em;
}

.main-text hr {
    border: none;
    border-bottom: 1px solid #9e1f63;
    width: 60%;
    margin: 1.75em auto;
}

.main-text h2 {
    font-size: 1.25em;
}

/*.main-text {
    margin: 1.5em 10%;
    max-width: 600px; 
}*/

.main-text ul, .main-text ol {     
    padding-inline-start: 1em;
}


.main-text li {
    text-align: left;
    font-size: 1em;
    /*line-height: 140%;*/
    margin-top: 0.3em;
}

/*.main-text ul {
    column-count: 2;
}*/

.main-text a:not(.action-button) {
    color: #9e1f63;
    
}

#page-nav ul {
    list-style: none;
    padding: 0;
}

#page-nav li {
    text-align: center;
}

#page-nav a br {
    display: none;
}

.action-button {
    display: block;
    margin: 0 auto;
    padding: .75em;
    text-align: center;
    background-color: #9e1f63;
    color: #fff;
    /*border: 3px solid #9e1f63;*/
    width: 7em;
    font-size: 1.25em;
    font-weight: 600;
    -webkit-transition: background-color .25s;
    transition: background-color .25s;
}

.action-button:hover {
    background-color: #000;
    /*background-color: #fff;
    color: #9e1f63;*/
}

.main-text sub {
    position: relative;
    right: 1px;
}

.main-text img#contact-info {
    margin-bottom: 1em;
}



.callout {
    padding: 0 2em;
    border-width: 0 4px;
    border-style: solid;
    border-color: transparent #9e1f63;
    font-style: italic;
}




#logo-group {
    text-align: center;
    margin: 0 auto;
    max-width: 28em;
}

#logo-group img {
    height: 4.875em;
    width: auto;
    margin: 0.5em;
}

#back-to-top {
    position: fixed;
    font-size: 0.75em;
    right: 0.6em;
    bottom: 7em;
    z-index: 1000;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    width: 4.5em;
    height: 4.5em;
    padding-top: 1.2em;
    transition: all .1s;
}

#back-to-top #up-arrow {
    font-size: 3.4em;
    display: block;
    font-weight: bold;
    line-height: 0;
    margin-bottom: -0.1em;
}

#back-to-top p {
    line-height: 1;
    margin: 0;
}


footer {
    background-color: #000;
    color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: .75em;
    padding: .9em;
    border-top: 8px solid #9e1f63;
}

#footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#footer-text,
#footer-social {
    width: 100%;
    text-align: center;
}

#footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .75em;
}


#footer-social .linkedin {
    width: 21px;
    height: 21px;
}

#footer-social .linkedin img {
    max-width: 100%;
    height: auto;
}

#footer-social .hashtag {
    font-weight: 700;
    margin-left: 0.75em;
    font-size: 1.2em;
    height: 1em;
}

/*
   * Media Queries
   *
   *
   * 
   * 
   * 
   * 
   */
/* Main layout media query */

@media only screen and (min-width: 400px) {
    #back-to-top {
        bottom: 5em;
    }

    #footer-text,
    #footer-social {
        width: auto;
    }

    #footer-social {
        margin-top: 0;
    }
}

@media only screen and (min-width: 768px) {
    
    body::after {
      content: "";
          background: url(/assets/erf-logo-only.png) center / 40% no-repeat fixed;
        opacity: 0.035;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      position: absolute;
      z-index: -1;   
    }

    #back-to-top {
        font-size: 1.25em;
        bottom: 3.2em;
    }
}

@media only screen and (min-width: 992px) {
    .columns-2 {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
        -webkit-column-gap: 2em;
           -moz-column-gap: 2em;
                column-gap: 2em;
    }

    .columns-2 li:first-of-type {
        margin-top: 0;
    }
}