
@font-face {
    font-family: 'Tex Gyre Schola';
    src: url('fonts/texgyreschola-regular-webfont.woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Tex Gyre Schola';
    src: url('fonts/texgyreschola-italic-webfont.woff');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Tex Gyre Schola';
    src: url('fonts/texgyreschola-bold-webfont.woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Tex Gyre Schola';
    src: url('fonts/texgyreschola-bolditalic-webfont.woff');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Tex Gyre Bonum';
    src: url('fonts/texgyrebonum-bold-webfont.woff');
    font-weight: 700;
    font-style: bold;
}


@font-face {
    font-family: 'C059';
    src: url('fonts/C059-Roman.woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'C059';
    src: url('fonts/C059-Italic.woff2');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'C059';
    src: url('fonts/C059-Bold.woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'C059';
    src: url('fonts/C059-BdIta.woff2');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Valencia Serial Heavy';
    src: url('fonts/valencia_serial-heavy-webfont.woff2');
    src: url('fonts/valencia_serial-heavy-webfont.woff2') format('woff2'),
            url('fonts/valencia_serial-heavy-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}


body, html {
    height: 100%;
    margin: 0px;
}

body {
    background: #FFFDFF;
    color: #202020;
}

#page{

}

#page-onecol{
    display: flex;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
}

h1, h2, h3 {
    font-family: 'Valencia Serial Heavy'
}

h1.page-title{
    margin-top: 50px;
}

#header {
    text-align: center;
    width: 64px;

}

#header-logo-container {
    padding-top: 10px;
}

#header-logo {
    max-width: 64px;
    min-width: 52px;
    width: 100%;
}

@media only screen and (max-width: 1000px) {
    #header-logo-container {
        margin-left: 30px;
    }
} 

#vertical-separator{
    position: fixed;
    bottom: 0px;
    left: 12%;
    width: 0.25px;
    height: 100%;
    background-color: #ACACAC;
}

nav {   
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-flex;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

nav ul li a {
    color: #202020;
    text-decoration: inherit; 
    font-family: 'Tex Gyre Schola';
    font-style: italic;
    font-size: 16px;
}

nav ul li a:hover {
    color: #cc3a3a;
}

#container-main {
    display: flex;
    flex-direction: row;
    max-width: 1100px;
}


#container-left {
    flex: 12%;
    min-width: 12%;
    display: flex;
    justify-content: right;
}

#container-right {
    flex: calc(100% - 12%);
}

#container-right-onecol {
    flex: calc(100% - 12%);
    padding-left: 20px;
    padding-right: 20px;
}

#msgbox{
    width: 100%;
}

#msgbox .success{
    display: block;
    margin: 20px;
    background: #f2f8f4 ;
    border: 2px solid #E5F1EA;
    padding: 20px;
    width: fit-content;
}


#footer {
    font-size: xx-small;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 10px;
}

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


.helptext{
    font-size: xx-small;
    margin-top: 0px;
    margin-left: 6px;
    margin-bottom: 5px;
    color: gray;
}


/* Tabs */


button[role="tab"]{
    width: 45%;
    border: 2px solid black;
    border-bottom: 5px transparent solid;
    border-radius: 5px 5px 0px 0px;
}

button[role="tab"][aria-selected="true"]{
    background: #841b2d;
    color: #fffdff;
    opacity: 80%;
}

button[role="tab"][aria-selected="false"]:hover{
    background: #841b2d;
    color: #fffdff;
    opacity: 30%;
    transition: opacity 0s;
}

div[role="tablist"]{
    display: flex;
    text-align: left; 
    justify-content: space-evenly;
}

div[role="tabpanel"]{
    padding: 15px;
    border: 2px solid black;
    border-radius: 5px 5px 0px 0px;
    z-index: -100;

}

div.terms pre,
div.privacy pre {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}


/* Landing and Browse */

.hero-section {
    display: flex;
    flex-direction: row;

    /*! width: 80%; */
    /*! margin-left: 3rem; */

    margin-top: 60px;
}

.hero-text-right {
    flex: 50%;    
    padding-left: 5%;
    float: right;
    text-align: left;
}

.hero-text-left {
    flex: 50%;    
    /*! padding-right: 5%; */
    /*! float: left; */
    text-align: center;
}

.hero-pic-left {
    flex: 50%;   
    text-align: right; 
    float: left;
}

.hero-pic-left img {
    width: 50%;
}

.hero-pic-right {
    flex: 50%;   
    text-align: center; 
    /*! float: right; */
}

.hero-pic-right img {
    width: 50%;
}


div.featured-center-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
}

div.featured-center-heading{
    font-family: 'Tex Gyre Schola';
    font-size: x-large;
    text-align: center;
}

div.featured-center-images{
    width: 80%;   
    display: flex;
    align-content: center;
    font-size: 0;
}

img.collection-img{
    width:100%;
    object-fit:cover;
    max-height:512px;
}


@media only screen and (max-width: 600px) {
    
    div.featured-center-images{
        width: 80%;   
        display: block;
        align-content: center;
        font-size: 0;
    }

    .hero-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        justify-content: center;
        align-items: center;
    }
    
    .hero-pic-div{
        text-align: center;
    }
    
    .hero-section img {
        float: none;
        width: 50%;
    }


} 


.alphabet li {
    display: inline-block;
}
