* {
    box-sizing: border-box;
}
html, body {
    margin:0;
    padding: 0;
}
:root {
    --header-height: 75px;
}
.logoimage {
    /*max-height: var(--header-height);*/
    height:175px;
    width:175px;
}
.glist {
    list-style: none;
}
main img {
    max-width: 95%;
}
.caption {
    text-align: center;
    font-size: .75rem;
    font-style:italic;
}
.glist li {
    background: url('../images/bullet_arrow.svg') no-repeat top left;
    background-position: left 1rem;
    line-height: 1.3;
    background-size: 16px;
    padding: .5rem 0 0em 20px;
}
header:before {
    content: url("../images/signature.png");
    position: absolute;
    left: 175px;
    top:0px;
}
.standout {
    color: rgb(33, 66, 123);
    font-size: 1.4rem;
    font-weight: bold;
    font-style: italic;
}
a:focus {
    outline: 3px solid #a7740b;
}
a {
    color: #21427b;
}
a:hover {
    color: #770707;
}
.skiplink {
    position: fixed;
    color:white;    
    left:0;
    top:0;  
    padding: 6px;
    margin: 6px;
    border: 3px solid #F0DEB7;
    outline:none !important;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #a7730d;
    text-decoration: none;
    transform: translateY(-120%);
    z-index: 20;
}
.skiplink:hover {
    color:white;
    text-decoration: underline;
}

.skiplink:focus  {
    transform: translateY(0%);  
}
.article-cards {
    margin: 0 auto;
    padding:0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.fright {
    float:right;
}
.article-cards > li {
    list-style: none;
    background-color:rgb(255,255,255,.5);
    margin: 1rem 0 1rem 0;
    padding:0;
    /*border: solid 1px rgb(189, 189, 189);*/
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 3px 3px 5px 2px rgba(0,0,0,0.28);
    /*text-align:center;*/
    display: grid;
    grid-template-areas: "a b"
    "a c";
    grid-template-rows: 1fr auto;  /* key rule */
    grid-template-columns: 2fr 3fr;
    
    background-image: url("../images/background-card.jpg");
    background-repeat: repeat-x;
    background-position: bottom;
    width: 100%;
}
.card-block1 {
    grid-area: a;
    padding: 1rem;
}
.card-block1 a {
    display: block;
}
.card-block2 {
    grid-area: b;
    align-self: start;
    justify-self: start;
    padding: 1rem;
}
.card-block2 > p:first-child {
    margin-top: 0;
}
.card-block3 {
    grid-area: c;
    text-align:center;
    padding: 0;
    margin:0;
}
.article-cards li div img {
    width:100%;
}
.article-cards li div img.small {
    max-width:125px;
}
.article-cards > li > p {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 1rem;
    text-align:left;
}
.rtext {
    color: #21427B;
}
.magnify {
    margin: 1rem;
}
.magnify:hover {
    cursor: zoom-in;
}
.tcenter {
    text-align: center;
}
.bookimage {
    max-width: 80%;
    width:200px;
}
.keepwidth {
    width: auto !important;
    height: auto !important;
}
.logobw {
    float:right;
    margin: 5px;
}
.card-double {
    flex: 0 1  calc((((100% - 2rem) / 3) * 2) + 1rem);
}
.card-full {
    flex: 0 1 100% !important;
    flex-direction: row !important;
}
.hamburgerimage {
    height: 45px;
    width: 45px;
    padding: 0px;
    display: none;
    position: absolute;
    border:none;
    outline:none;
    border-radius: 0;
    background-color:transparent;
    background-image: url("../images/hamburger-gold2.svg");
    background-repeat: no-repeat;
    border-radius:0%;
    box-shadow:none;
    transition: border-radius 0.1s linear, box-shadow 0.1s linear, background-image 0.5s linear;
}
.hamburgerimage:focus {
    border: 3px solid #F0DEB7;
}
.hamburgerimage:hover {
    border-radius:50%;
    transition: border-radius 0.1s linear, box-shadow 0.1s linear;
    /*box-shadow: 0 0 0 5px #f5f5f550;*/
}
.animforward {
    animation-duration: 0.125s;
    animation-name: changeimgf;
    animation-fill-mode: forwards;
}
.animbackward {
    animation-duration: 0.125s;
    animation-name: changeimgb;
    animation-fill-mode: forwards;
}
@keyframes changeimgf {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0);
        background-image: url("../images/close-gold2.svg");
    }
    100% {
        transform: scale(1);
        background-image: url("../images/close-gold2.svg");
    }
}
@keyframes changeimgb {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0);
        background-image: url("../images/hamburger-gold2.svg");
    }
    100% {
        transform: scale(1);
        background-image: url("../images/hamburger-gold2.svg");
    }
}
header {
    position: relative;
    display: flex;
    align-items: flex-end;
    /*justify-content: space-between;*/
    margin-top:10px;
    margin-bottom: 10px;
    background-color: none;
    z-index:1;
}
/*header:after {
    content: url("../images/dollar.jpg");
    position: absolute;
    right: -200px;
    z-index:-1;
}*/
nav {
    z-index: 10;
}
nav ul {
    display: flex;
    padding:0;
    margin: 0;
    position:relative;
    z-index:10;
}
nav ul li {
    list-style-type: none;
    text-align: center;
    display: flex;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size:16px; 
    padding: 4px;
    border-radius:0px;
    background-color: #a7730d;
    border: 3px solid #a7730d;
    margin-left: 1px;
    margin-right: 1px;
    position:relative;
}
.activeNavLink {
    border-color: #F0DEB7;
}
.activeNavAnchor {
    outline: none;
}
nav ul li a {
    text-decoration: none;
    color: white;
    align-self:center;
    user-select: none;
}
nav ul li a:hover {
    color: white;
}
nav ul li a:focus {
    outline: none;
}
nav ul li:hover {
    background-color: #555555;
    border: 3px solid #555555;
    color:white;
    cursor:pointer;
}
html {
    display:flex;
    justify-content: center;
    background-color: black;
    background-image: url("../images/dollar.jpg") ;
    background-repeat: no-repeat;
    background-position: right -100px top 0px;
    background-size: 571px;
}
body {
    max-width:949px;
    min-height:100vh;
    position: relative;
    /*background-color: white;
    background-image: url("../images/dollar.jpg") ;
    background-repeat: no-repeat;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center top;
}
/*body:after {
    content: ;
    background-image: ;
    position: absolute;
    right: -200px;
    z-index:-1;
}*/
main {
    max-width:942px;
    padding-top:3rem;
    padding-left:4.25rem;
    padding-right:4.25rem;
    padding-bottom:2.5rem;
    background-color: white;
    background-image: url("../images/Border-TopLeft.png"), url("../images/Border-TopRight.png"),
    url("../images/Border-BottomLeft.png"), url("../images/Border-BottomRight.png"),
    url("../images/Border-TopHorizontal.png"),
    url("../images/Border-BottomHorizontal.png"),
    url("../images/Border-LeftVertical.png"),
    url("../images/Border-RightVertical.png"),
    url("../images/pattern6.svg"),
    url("../images/pattern3.svg"),
    url("../images/background-main.jpg");
    background-size: auto, auto, auto, auto, auto, auto, auto, auto, 200px 200px, 250px 250px, auto;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-x, repeat-y, repeat-y, no-repeat, no-repeat, repeat;
    background-position: top left, top right, bottom left, bottom right, top left 125px, bottom left 125px, top left, top right, top 30px left 90px, top 30px right 90px, top left;
    outline: 5px solid #a7740b;
    border: 3px solid white;
    font-family: Arial, Helvetica, sans-serif;
    font-size:1.25rem;
    margin-bottom: 2.5rem;
}
footer {
    margin-top: auto;
    padding:1rem;
    text-align: center;
    font-size:.95rem;
    
    display:flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    max-width:650px;
    margin: 8px;
}

.navshow {
    transform: scaleY(1);
    transform-origin: top;
    transition: transform 250ms;
}

@media (max-width: 999px) {
    body {
        max-width: 98%;
    }
    html {
        background-size: 400px;
        background-position-x: right 50px;
    }
    header {
        width: 100%;
    }
    
    header:before {
        content: ' ';
        background-image: url("../images/signature.png");
        background-repeat: no-repeat;
        background-size: 75%;
        position: absolute;
        height: 175px;
        width: 200px;
        left: 95px;
        top:10px;
    }

    .logoimage {
        width:80px;
        height: 80px;
    }
    
    main {
        max-width: 690px;
    }
    .hamburgerimage {
        display:block;
        position:absolute;
        right: 0;
        cursor: pointer;
    }
    nav ul {
        flex-direction: column;
        position:absolute;
        left: 0;
        right: 0;
        top: calc(var(--header-height) + 10px);
        margin:0;
        transform: scaleY(0);
        transform-origin: top;
        overflow-y: hidden;
        transition: transform 250ms;
        background-color: #a7740b;
    }
    .article-cards > li {
        grid-template-areas: "a b"
        "a c";
        grid-template-rows: 1fr auto;  /* key rule */
        grid-template-columns: 1fr 1fr;
        font-size: 1rem;
    }
}
@media (min-width:1100px) {
    html {
        background-position: 100% 0%;
    }
}
@media (min-width:1451px) {
    html {
        background-position: 80% 0%;
    }
}
@media (min-width: 2100px) {
    html {
        background-position: 67% 0%;
    }
}
@media (max-width: 600px) {
    .hamburgerimage {
        display:block;
        cursor: pointer;
    }
    body {
        max-width: 98%;
    }
    html {
        background-size: 300px;
        background-position: right -100px top 0px;
    }
    nav ul {
        flex-direction: column;
        position:absolute;
        left: 0;
        right: 0;
        top: calc(var(--header-height) + 10px);
        margin:0;
        transform: scaleY(0);
        transform-origin: top;
        overflow-y: hidden;
        transition: transform 250ms;
    }
    main {
        padding-top:1.25rem;
        padding-left:2rem;
        padding-right:2rem;
        padding-bottom:1.25rem;
        background-size: 62.5px, 62.5px, 62.5px, 62.5px, 31.5px, 31.5px, auto 31.5px, auto 31.5px, 100px 100px, 125px 125px, auto;
        background-position: top left, top right, bottom left, bottom right, top left 125px, bottom left 125px, top left, top right, top 15px left 45px, top 15px right 45px, top left;
    }
    .splide__arrow--prev {
        width: 13px !important;
        height: 13px !important;
    }
    .splide__arrow--next {
        width: 13px !important;
        height: 13px !important;
    }
    .article-cards > li {
        flex: 0 1 calc(100%);
    }
    .article-cards > li {
        grid-template-areas: "a"
        "b"
        "c";
        /*grid-template-rows: 100%; */ /* key rule */
        grid-template-columns: auto;
    }
    blockquote {
        padding: 1em 20% 1em 1em;
    }
    blockquote p {
        font-size: .8rem;
    }
    blockquote:nth-of-type(even) {
        padding: 1em 1em 1em 20%;
    }
}

h1 {
    font-family: 'Marcellus', serif;
    text-align: center;
    font-size:2.5rem;
    color:#3c3c58;
}
h2 {
    font-family: 'Marcellus', serif;
    font-size:1.8rem;
    color: #5a3f09;
    position: relative;
    border-style: solid;
    display:inline-block;
    padding: 10px;
    border-image: url('../images/frame.svg') 25% 15% 25% 15% stretch;
    border-image-width: 20px;
}
h2.subhead {
    text-align: center;
    display:block;
    border-image: none;
    font-size:1.5rem;
    border-style: none;
}
/*h2:after {
    content: ' ';
    background-image: url("../images/subhead.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 5px;
    bottom:10px;
}*/
.testi {
    height:75px;
    border:1px solid green;
    display: block;
}
.firstletter {
    font-family: 'Rye', serif;
    font-size: 1.75em;
    color: #a02846;
}

/*.article-cards > li > a {
    display:inline-block;
    padding: 10px;
    border-radius:15px;
    margin-bottom:12px;
    background-color:#a70b70;
    color:white;
    text-decoration: none;
    font-size:1rem;
}*/
.golden-btn {
    display: inline-block;
    outline: none;
    font-family: inherit;
    font-size: .75rem !important;
    font-weight:bold;
    box-sizing: border-box;
    border: none;
    margin-bottom:12px;
    text-decoration: none;
    border-radius: 9px;
    height: 33px;
    line-height: 1;
    text-transform: uppercase;
    padding: 12px !important;
    box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(110,80,20,.2),
                inset 0 -2px 5px 1px rgba(139,66,8,1),
                inset 0 -1px 1px 3px rgba(250,227,133,1);
    background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    border: 1px solid #a55d07;
    color: black !important;
    text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
    cursor: pointer;
    transition: all .2s ease-in-out;
    background-size: 100% 100%;
    background-position:center;
    margin-top: auto;
}
.golden-btn:focus,
.golden-btn:hover {
    background-size: 150% 150%;
    box-shadow: 0 5px 5px rgba(0,0,0,0.19), 0 3px 3px rgba(0,0,0,0.23),
                    inset 0 -2px 5px 1px #b17d10,
                    inset 0 -1px 1px 3px rgba(250,227,133,1);
    border: 1px solid rgba(165,93,7,.6);
    color: rgb(82, 31, 0) !important;
}
.golden-btn:active {
    box-shadow: 0 3px 6px rgba(0,0,0,.16), 0 3px 6px rgba(110,80,20,.4),
                inset 0 -2px 5px 1px #b17d10,
                    inset 0 -1px 1px 3px rgba(250,227,133,1);
}
.splide {
    width:fit-content;
    margin-left:auto;
    margin-right:auto;
}
.splide__slide img {
    max-width: 100%;
}
.splide__arrow--prev {
    left: .5em;
    width: 20px;
    height: 20px;
}
.splide__arrow--next {
    right: .5em;
    width: 20px;
    height: 20px;
}

.splide__arrow--hide {
    display: none;
}
blockquote {
    margin: 0 auto;
    padding: 1em;
    border-left: 5px solid #999;
  }
  blockquote:before {
    display: none;
  }
  blockquote:not(:first-of-type) {
    margin-top: .5em;
  }
  blockquote p {
    color: #111;
    font-size: 1.25rem;
    line-height: 1.4;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  p.redquote {
    color: #a33a3a;
  }
  blockquote footer {
    margin-top: .5em;
    display: block;
    padding: 0;
    color: #333;
    font-size: 1rem;
    text-align: left;
    font-style: italic;
  }
  blockquote footer:before {
    content: '— ';
  }
  blockquote:nth-of-type(even) {
    text-align: right;
    border-left: none;
    border-right: 5px solid #777;
  }
  blockquote:nth-of-type(even) footer {
    text-align: right;
  }
  blockquote:nth-of-type(even) footer:before {
    content: '';
  }
  blockquote:nth-of-type(even) footer:after {
    content: ' —';
  }
  .recentarticles img {
      width:auto !important;
  }
  .slidecaption {
      position: absolute;
      bottom:0;
      right:0;
      left:0;
      background-color: rgb(55,55,55,.75);
      color: white;
      text-align: left;
      font-size:1rem;
      line-height: 1.25;
      padding: 5px 5px 25px 5px;
  }