/*---------------------------------------------------------------------------------

  Theme Name: Davis
    Text Domain: davis
  Version: 1.09
  Description: Davis is a teeny-tiny WordPress theme that can be used a starter theme or a *really* lightweight blog theme. It consists of just three PHP files and weighs in at 60 KB, excluding screenshot.png. It features the aside post format, a Dark Mode style option, featured images and a responsive design.
  Tags: blog, one-column, custom-menu, featured-images, post-formats, threaded-comments, translation-ready
  Author: Anders Norén
  Author URI: http://www.andersnoren.se
  License: GNU General Public License version 2.0
  License URI: http://www.gnu.org/licenses/gpl-2.0.html

  All files, unless otherwise stated, are released under the GNU General Public License
  version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

-----------------------------------------------------------------------------------

  0.  CSS Reset
  1.  Document Setup
  2.  Structure
  3.  Header
  4.  Blog
  5.  Post Content
  6.  Comments
  7.  Pagination
  8.  Footer
  9.  Media Queries

----------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------- */
/*  0. CSS Reset
/* -------------------------------------------------------------------------------- */


html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100%;
}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
  margin:0;
  padding:0;
  border:0;
  font-weight:normal;
  font-style:normal;
  font-size:100%;
  line-height:1;
  text-align:left;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

ol, ul { list-style:none; }

blockquote:before,
blockquote:after { content:""; }

a { outline:none; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* Screen Reader Text */

.screen-reader-text {
  clip: rect( 1px, 1px, 1px, 1px );
  height: 1px;
  overflow: hidden;
    position: absolute !important;
    width: 1px;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}


/* -------------------------------------------------------------------------------- */
/*  1. Document Setup
/* -------------------------------------------------------------------------------- */


body {
    background: #fff;
  border: none;
    color: #111;
    font-size: 18px;
}

body.dark-mode {
  background: #111;
  color: #fff;
}

body * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
  box-sizing: border-box;
    font-family: 'PT Serif', Georgia, serif;
}

a {
  text-decoration: none;
}

a,
a:hover {
  color: #111;
}

.dark-mode a,
.dark-mode a:hover {
  color: #fff;
}

body a:hover {
  text-decoration: underline;
}

img {
  display: block;
  height: auto;
    max-width: 100%;
}

.clear { clear: both; }

::selection {
  background: #111;
  color: #FFF;
}

input::-webkit-input-placeholder { color: #999; }
input:-ms-input-placeholder { color: #999; }
input::-moz-placeholder { color: #999; }


/* -------------------------------------------------------------------------------- */
/*  2.  Structure
/* -------------------------------------------------------------------------------- */


.wrapper {
    margin: 0 auto;
    max-width: 90%;
  width: 620px;
}


/* -------------------------------------------------------------------------------- */
/*  3.  Header
/* -------------------------------------------------------------------------------- */


header {
    /*margin: 0 auto 100px auto;*/
    margin: 0 auto;
    width: 90%;
}

.menu {
  margin: 30px 0 30px 0;
  text-align: center;
}

@media ( min-width: 620px ) {

    .toggle-menu { display: none; }

    .menu li { position: relative; }
    .menu > li { display: inline-block; }
    .menu > li + li { margin-left: 30px; }

    .menu .page_item_has_children > a:after,
    .menu .menu-item-has-children > a:after {
        /*content: " ↓";*/
        font-family: 'Lato', 'Avant Garde', sans-serif;
    }

    .menu ul {
        position: absolute;
            left: -10000px;
            top: 15px;
        width: 200px;
        z-index: 999;
    }

    .menu > li > ul {
        font-size: 0.9em;
        padding-top: 20px;
        z-index: 999;
    }

    .menu li ul:before {
        border: 6px solid transparent;
        border-bottom-color: #111;
        content: "";
        display: block;
        margin-left: -6px;
        position: absolute;
            left: 50%;
            top: 8px;
    }

  .dark-mode .menu li ul:before {
        border-bottom-color: #fff;
    }

    .menu ul a {
        background: #111;
        color: #fff;
        display: block;
        padding: 15px;
        text-align: center;
    }

  .dark-mode .menu ul a {
    background: #fff;
    color: #111;
  }

    .menu ul li:first-child > a { border-radius: 3px 3px 0 0; }
    .menu ul li:last-child > a { border-radius: 0 0 3px 3px; }
    .menu ul li:last-child:first-child > a { border-radius: 3px 3px 3px 3px; }

    .menu ul a:hover { color: #fff; }
  .dark-mode .menu ul a:hover { color: #111; }

    .menu > li:hover > ul {
        left: 50%;
        margin-left: -100px;
    }

    .menu ul li ul {
        margin: 0;
        padding-left: 20px;
        top: 0;
        width: 220px;
    }

    .menu ul li ul:before {
        border-color: transparent;
        border-right-color: #111;
        left: 14px;
        top: 18px;
    }

  .dark-mode .menu ul li ul:before {
    border-color: transparent;
        border-right-color: #fff;
  }

    .menu ul li:hover > ul {
        left: 200px;
    }

}

header h2 {
    font-size: 1.5em;
  font-weight: 700;
    margin-top: 80px;
  text-align: center;
}

header p {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}


/* -------------------------------------------------------------------------------- */
/*  4.  Blog
/* -------------------------------------------------------------------------------- */


.post:before,
.comments:before,
.comment-respond:before,
.comments .comment-respond:after,
.pagination:before,
footer:before {
    /*background: url( assets/images/sep.png ) no-repeat center;*/
    background-size: auto 100%;
  content: "";
  display: block;
  height: 0px;
  margin: 0px auto;
}

.dark-mode .post:before,
.dark-mode .comments:before,
.dark-mode .comment-respond:before,
.dark-mode .comments .comment-respond:after,
.dark-mode .pagination:before,
.dark-mode footer:before {
    background-image: url( assets/images/dark-sep.png );
}

.title {
    line-height: 1.4;
  text-align: center;
}

.featured-image {
    display: block;
    margin: 0 auto 30px auto;
}

.meta {
    color: #999;
  margin-top: 30px;
}

.post .meta p {
  line-height: 1.55;
    margin-bottom: 0;
    text-align: center;
}

span.sep { margin: 0 15px; }

.meta p:first-child + p { margin-top: 15px; }

.meta a,
.meta a:hover { color: #999; }

.sticky {}


/* -------------------------------------------------------------------------------- */
/*  5.  Post Content
/* -------------------------------------------------------------------------------- */


.content * { max-width: 100%; }

.content a { border-bottom: 1px solid #111; }

.content a:hover {
    border-color: #666;
    color: #666;
    text-decoration: none;
}

.dark-mode .content a { border-bottom-color: #fff; }

.dark-mode .content a:hover {
    border-color: #999;
  color: #999;
}

em {
    font-style: italic;
}

.post p {
  line-height: 1.55;
  margin-bottom: 30px;
}

.post p:last-child { margin-bottom: 0; }

.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
    font-weight: 700;
  margin-bottom: 30px;
}

.post hr {
  border: none;
  /*margin: 40px 0;*/
  text-align: center;
}

/*.post hr:before { content: "***"; }*/

.content > ol,
.content > ul {
    margin-bottom: 30px;
}

.post ol,
.post ul {
    margin-left: 1.5rem;
}

.post ul { list-style: disc; }
.post ul ul { list-style: circle; }
.post ul ul ul { list-style: square; }

.post ol { list-style: decimal; }
.post ol ol { list-style: lower-alpha; }
.post ol ol ol { list-style: lower-roman; }

.post li {
    line-height: 1.5;
  margin-top: 0.5em;
}

dd,
dt {
  line-height: 1.5;
}

dd + dt { margin-top: 15px; }

/* Quotes ----------------------------- */

blockquote {
  border-left: 1px solid #ccc;
    margin: 0 0 30px 0;
    padding: 0 0 0 30px;
}

.dark-mode blockquote { border-left-color: #444; }

/*blockquote p { font-style: italic; }*/

blockquote cite:before { content: "— "; }

/* Media ------------------------------ */

div.wp-caption {
  display: block;
  margin-bottom: 30px;
}

.alignleft,
.alignright {
  margin-bottom: 20px;
    max-width: 50%;
}

.alignleft {
  float: left;
  margin-right: 20px;
}

.alignright {
  float: right;
  margin-left: 30px;
}

.aligncenter,
.alignnone { margin: 0 auto; }

.gallery-caption,
.wp-caption-text {
    font-size: 0.9em;
    font-style: italic;
  margin-top: 10px;
}

.aligncenter .wp-caption-text { text-align: center; }
.alignright .wp-caption-text { text-align: right; }

/* Inputs ----------------------------- */

fieldset {
    border: 1px solid #ddd;
  padding: 25px;
}

.dark-mode fieldset {
    border-color: #444;
}

fieldset legend {
    font-size: 0.9em;
    font-style: italic;
  padding: 0 15px;
}

label {
  font-size: 0.9em;
    font-style: italic;
    margin-bottom: 10px;
}

textarea,
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="text"],
input[type="url"] {
    border: 1px solid #ddd;
    color: #111;
  display: block;
  font-size: 0.9em;
    margin: 0 0 15px 0;
    padding: 15px;
    width: 100%;
}

.dark-mode textarea,
.dark-mode input[type="email"],
.dark-mode input[type="password"],
.dark-mode input[type="tel"],
.dark-mode input[type="text"],
.dark-mode input[type="url"] {
  background: #111;
    border-color: #444;
    color: #fff;
}

textarea {
    line-height: 1.5;
  height: 200px;
}

input[type="button"],
input.button,
input[type="submit"] {
  background: #111;
    border: none;
    color: #fff;
    display: inline-block;
  font-size: 14px;
    padding: 14px 24px;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.dark-mode input[type="button"],
.dark-mode input.button,
.dark-mode input[type="submit"] {
  background: #fff;
  color: #111;
}

input[type="button"]:hover,
input.button:hover,
input[type="submit"]:hover {
  background: #333;
  cursor: pointer;
}

.dark-mode input[type="button"]:hover,
.dark-mode input.button:hover,
.dark-mode input[type="submit"]:hover {
  background: #ddd;
  cursor: pointer;
}

/* Tables ----------------------------- */

table {
  border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 0.9em;
    margin-bottom: 30px;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

th,
td {
    line-height: 1.4;
  margin: 0;
  overflow: visible;
    padding: 2.5%;
}

caption {
    border-bottom: 1px solid #ddd;
  font-size: 13px;
  font-weight: 700;
    padding-bottom: 2.5%;
  text-align: center;
  text-transform: uppercase;
}

thead {
  vertical-align: bottom;
  white-space: nowrap;
}

th {
  border-bottom: 1px solid #ddd;
  font-weight: 700;
}

tbody > tr:nth-child(even) { background-color: #f6f6f6; }
.dark-mode tbody > tr:nth-child(even) { background-color: #222; }

.dark-mode caption,
.dark-mode th {
    border-bottom-color: #444;
}


/* -------------------------------------------------------------------------------- */
/*  6.  Comments
/* -------------------------------------------------------------------------------- */


.comment { margin-top: 40px; }

.comment a { text-decoration: underline; }

.commentlist > .comment:first-child { margin-top: 0; }

.comment .comment { margin: 40px 0 0 30px; }

.comment-author a,
.comment-meta a,
.comment .reply a {
    text-decoration: none;
}

.comment-author {
    padding-left: 50px;
    position: relative;
}

.bypostauthor .comment-author cite { font-weight: 700; }

.comment-author .says { display: none; }

.comment-author .avatar {
    position: absolute;
        left: 0;
        top: 1px;
    width: 40px;
}

.comment-awaiting-moderation {
    font-size: 14px;
    font-style: italic;
    padding-left: 50px;
}

.comment-meta {
    font-size: 14px;
    margin: 2px 0 20px 0;
    padding-left: 50px;
}

.comment-meta a,
.comment-meta a:hover { color: #999; }

.comment .reply {
    font-size: 14px;
    font-style: italic;
    margin-top: 15px;
    text-align: right;
}

.comment .reply a { color: #999; }
.comment .reply a:hover { text-decoration: underline; }

/* Respond ---------------------------- */

.comment-respond p + p { margin-top: 20px; }

.post .comment-reply-title { text-align: center; }

.logged-in-as {
    margin: -10px 0 30px;
    text-align: center;
}

.comment-respond label { display: block; }


/* -------------------------------------------------------------------------------- */
/*  7.  Pagination
/* -------------------------------------------------------------------------------- */


.pagination { text-align: center; }
.pagination * + * { margin-left: 30px; }


/* -------------------------------------------------------------------------------- */
/*  8.  Footer
/* -------------------------------------------------------------------------------- */


footer {
  padding: 0 0 80px;
  text-align: center;
}

footer p {
    line-height: 1;
  text-align: center;
}

footer p + p {
    font-style: italic;
    margin-top: 15px;
}


/* -------------------------------------------------------------------------------- */
/*  9.  Media Queries
/* -------------------------------------------------------------------------------- */


@media ( max-width: 620px ) {

    body { font-size: 16px; }

    .toggle-menu {
        font-size: 100%;
        /*letter-spacing: 1px;*/
        text-transform: uppercase;
    }

    .show-menu .toggle-menu { text-decoration: none; }

    .menu {
        display: none;
        margin: 30px 0 30px 0;
    }

    .menu li {
        line-height: 1.5;
        text-align: center;
    }

    .menu li li { font-style: italic; }

    .show-menu .menu { display: block; }

    header { margin-bottom: 0px; }

    header h2 { margin-top: 40px; }

    .post:before,
    .comments:before,
    .comment-respond:before,
    .comments .comment-respond:after,
    .pagination:before,
    footer:before {
        margin: 0px auto;
    }

    .featured-image {
        margin-left: -50vw;
        position: relative;
            left: 50%;
        width: 100vw;
    }

    span.sep { margin: 0 10px; }

    .pagination a + a { margin-left: 20px; }

    footer { padding-bottom: 50px; }

}

@media ( max-width: 500px ) {

    .post:before,
    .comments:before,
    .comment-respond:before,
    .comments .comment-respond:after,
    .pagination:before,
    footer:before {
        margin: 0px auto;
    }

}


/* -------------------------------------------------------------------------------- */
/*  10.  Custom CSS
/* -------------------------------------------------------------------------------- */

.book-title {
  color: #AAA;
  font-size: 300%;
  text-align: center;
  font-family: 'Lato', 'Avant Garde', sans-serif;
  font-weight: 300;
  margin-top: 70px;
}

img.cover {
  border: 1px solid #444;
}

.chapter-number {
  color: #DDD;
  font-size: 200%;
  text-align: center;
  font-family: 'Lato', 'Avant Garde', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 70px;
}

.chapter-title {
  font-size: 250%;
  text-align: center;
  font-weight: 400;
}

h1.chapter-title {
  font-weight: 400;
}

.chapter-title::after {
  background: url( assets/images/sep.png ) no-repeat center;
  background-size: auto 100%;
  content: "";
  display: block;
  height: 16px;
  margin: 75px auto;
}

.title-rule {
  background: url( assets/images/sep.png ) no-repeat center;
  background-size: auto 100%;
  content: "";
  display: block;
  height: 16px;
  margin: 50px auto;
}

.section-title {
  margin-top: 75px;
  color: #AAA;
  font-weight: 700 !important;
  font-size: 150%;
  text-align: left;
  font-family: 'Lato', serif;
  /*text-transform: uppercase;*/
}

.dialogue {
  font-weight: bold;
  font-size: 80%;
  text-transform: uppercase;
}

.footnotes {
  margin-bottom: 100px;
  padding: 0;
  border: 0;
  font-style: normal;
  font-size: 80%;
  line-height: 1;
  text-align: center;
}

.footnotes::before {
    background: url( assets/images/sep.png ) no-repeat center;
    background-size: auto 100%;
  content: "";
  display: block;
  height: 16px;
  margin: 50px auto 50px auto;
}

.footnotes::after {
  content: "";
  display: block;
  height: 16px;
  margin: 50px auto 50px auto;
}

.chapter-nav {
    height: 75px;
    margin-top: 20px;
    border-top: 2px solid #444;
    border-top-width: 0.2rem;
    border-top-style: solid;
    border-top-color: rgb(68, 68, 68);
    background-color: rgba(255, 255, 255, 0.9);
}

a.footnumber {
  font-size: 80%;
  color: #999;
  text-decoration: none;
  border-bottom: 0px;
}

a.footback {
  color: #999;
  text-decoration: none;
  border-bottom: 0px;
}

.chapter-nav-inner {
    padding: 15px;
    float: left;
    width: 40%;
    text-align: center;
}

.chapter-nav-inner a {
    text-decoration: none;
    border-bottom: 0px;
    color: #AAA;
}

.chapter-nav-inner a:hover {
    text-decoration: none;
    border-bottom: 0px;
    color: #444;
}

.chapter-nav-center {
    border-right: 1px solid #444;
    border-left: 1px solid #444;
    width: 20%;
    height: 75px;
}

.chapter-nav-center a {
    text-decoration: none;
    border-bottom: 0px;
    color: #AAA;
}

.chapter-nav-center a:hover {
    text-decoration: none;
    border-bottom: 0px;
    color: #111;
}

#chapter-nav-bottom {
    /*position: fixed;*/
    bottom: 0;
}

#top-btn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgba(0, 0, 0, 0.3); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 3px; /* Rounded corners */
}

#top-btn-arrow {
  color: rgba(255, 255, 255, 0.8);
}

#top-btn-arrow:hover {
  color: rgba(255, 255, 255, 1);
}

#top-btn:hover {
    background-color: rgba(0, 0, 0, 0.45); /* Add a dark-grey background on hover */
}

div.dialogue-section {
    margin: 0 0 30px 0;
    padding: 0 0 0 30px;
}


@media ( max-width: 690px ) {
  .chapter-nav-inner a {
      font-size: 75%;
  }
  .footnotes::after {
    margin: 25px auto 25px auto;
  }
  #top-btn {
    visibility: hidden;
  }
}

@media ( max-width: 500px ) {
  .chapter-nav-inner a {
      font-size: 60%;
  }
  .footnotes {
    font-size: 70%;
  }
  .footnotes::after {
    margin: 10px auto 10px auto;
  }

}

.menu li a:hover {
  color: #AAA;
  text-decoration: none;
  border-bottom: 0px;
}

a.unstyled {
  text-decoration: none;
  border: 0;
}


/* -------------------------------------------------------------------------------- */
/*  11.  Custom CSS for Landing Page
/* -------------------------------------------------------------------------------- */


/*Setup*/
.home-container {
  margin: 0 auto;
/*  max-width: 100%;*/
/*  width: 900px;*/
}

.section-hero{
  position: absolute;
  top: 30;
  min-height: 100px;
}

.bg-white{
  background: #FFF;
  min-height: 100px;
}

.bg-grey{
  background: rgb(240, 240, 240);
}

.bg-green{
  background: rgb(14, 73, 53);
}

.section-footer{
  background: #FFF;
  min-height: 100px;
}

.section-inner{
  text-align: center;
  max-width: 90%;
  width: 900px;
  margin: 0 auto;
  padding: 75px 0px;
  min-height: 150px;
  overflow: visible;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.ineq-home{
  background: #AAA;
  padding: 50px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.home-header {
    margin: 0 auto;
    width: 90%;
}

.div-center {
  margin: 0 auto;
  width: 650px;
  text-align: center;
  justify-content: center;
}

/*button styles*/

.btn {
  font-weight: 300 !important;
  font-size: 80%;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Lato', serif;
  text-transform: uppercase;
}

.btn-topper {
  margin-top: 20px;
}

.btn-right {
  margin-right: 20px;
}

.red-btn {
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgba(196, 22, 28, 1); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 5px; /* Rounded corners */
}

.red-btn:hover {
    background-color: rgba(196, 22, 28, 0.65); /* Add a dark-grey background on hover */
    color: rgba(255, 255, 255, 0.65); /* Change text color */
}

.red-line-btn {
  outline: none;
  background: none;
  border-color: rgba(196, 22, 28, 1); /* Outline color */
  border-style: solid;
  border-width: 1px;
  color: rgba(196, 22, 28, 1); /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 14px; /* Some padding */
  border-radius: 5px; /* Rounded corners */
}

.red-line-btn:hover {
    border-color: rgba(196, 22, 28, 0.65); /* Outline color */
    color: rgba(196, 22, 28, 0.65); /* Change text color */
}

.green-btn {
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgba(14, 73, 53, 1); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 5px; /* Rounded corners */
}

.green-btn:hover {
    background-color: rgba(14, 73, 53, 0.65); /* Add a dark-grey background on hover */
    color: rgba(255, 255, 255, 0.65); /* Change text color */
}

.green-line-btn {
  outline: none;
  background: none;
  border-color: rgba(14, 73, 53, 1); /* Outline color */
  border-style: solid;
  border-width: 1px;
  color: rgba(14, 73, 53, 1); /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 14px; /* Some padding */
  border-radius: 5px; /* Rounded corners */
}

.green-line-btn:hover {
    border-color: rgba(14, 73, 53, 0.65); /* Outline color */
    color: rgba(14, 73, 53, 0.65); /* Change text color */
}

.black-btn {
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgba(0, 0, 0, 1); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 5px; /* Rounded corners */
}

.black-btn:hover {
    background-color: rgba(0, 0, 0, 0.65); /* Add a dark-grey background on hover */
    color: rgba(255, 255, 255, 0.65); /* Change text color */
}

.black-line-btn {
  outline: none;
  background: none;
  border-color: rgba(0, 0, 0, 1); /* Outline color */
  border-style: solid;
  border-width: 1px;
  color: rgba(0, 0, 0, 1); /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 14px; /* Some padding */
  border-radius: 5px; /* Rounded corners */
}

.black-line-btn:hover {
    border-color: rgba(0, 0, 0, 0.65); /* Outline color */
    color: rgba(0, 0, 0, 0.65); /* Change text color */
}

.white-btn {
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgba(255, 255, 255, 1); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 5px; /* Rounded corners */
}

.white-btn:hover {
    background-color: rgba(255, 255, 255, 0.65); /* fade background */
    color: rgba(255, 255, 255, 0.65); /* Change text color */
}



.white-line-btn {
  outline: none;
  background: none;
  border-color: rgba(255, 255, 255, 1); /* Outline color */
  border-style: solid;
  border-width: 1px;
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 14px; /* Some padding */
  border-radius: 5px; /* Rounded corners */
}

.white-line-btn:hover {
    border-color: rgba(255, 255, 255, 0.65); /* Outline color */
    color: rgba(255, 255, 255, 0.65); /* Change text color */
}

/*hero main lead in*/


.hero-bg {
  /*background: url(https://equilibriabook.com/wp-content/uploads/CoverGrey.jpg) no-repeat center center fixed;*/
  background-size: 100% cover;
}


.hero-column-left{
  display: inline-block;
  vertical-align: middle;
  width: 450px;
  margin: 0 auto;
  padding: 25px;
}

.hero-column-right{
  display: inline-block;
  vertical-align: middle;
  width: 350px;
  margin: 0 auto;
  padding: 25px;
}

.book-cover{
  min-width: 130%;
  max-width: 130%;
}

.hero{
}

p.hero {
  font-size: 100%;
  color: rgb(90, 90, 90);
}

h1.hero {
  font-size: 200%;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 90%;
  color: rgb(90, 90, 90);
}

h2.hero {
  font-size: 120%;
  font-weight: normal;
  color: rgb(120, 120, 120);
}


.book-cover-alt{
  min-width: 130%;
  max-width: 130%;
}

.hero-alt{
  font-family: 'Lato';
}

h1.hero-alt {
  font-size: 250%;
  line-height: 100%;
  font-weight: 700;
  color: rgb(90, 90, 90);
}

h2.hero-alt {
  font-style: italic;
  font-size: 150%;
  font-weight: 300;
  line-height: 125%;
  color: rgb(120, 120, 120);
}

p.hero-alt {
  font-family: 'PT Serif';
  font-size: 100%;
  color: rgb(90, 90, 90);
}


hr.red-left {
  display: block;
  text-align: left;
  margin-top: -1em;
  margin-bottom: 1em;
  margin-right: auto;
  margin-left: 0;
  border-style: solid;
  width: 70px;
  color: rgb(196, 22, 28);
}

hr.vspace {
  margin-top: 2em;
  margin-bottom: 2em;
}

hr.red-right {
  display: block;
  text-align: right;
  margin-top: -1em;
  margin-bottom: 1em;
  margin-right: 0;
  margin-left: auto;
  border-style: solid;
  width: 70px;
  color: rgb(196, 22, 28);
}

hr.red-center {
  display: block;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 2em;
  margin-right: auto;
  margin-left: auto;
  border-style: solid;
  width: 70px;
  color: rgb(196, 22, 28);
}


/* About Section */

.home-section-title {
  margin-top: 30px;
  color: #AAA;
  font-weight: 300 !important;
  font-size: 180%;
  text-align: center;
  font-family: 'Lato', 'Avant Garde', sans-serif;
  text-transform: uppercase;
}

.column-two {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  padding: 25px;
  column-count: 2;
  column-gap: 20px;
}

/*buy section*/
.shadowed {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border: 1px #AAA;
}

.buy-left {
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  margin: 0 auto;
}

.buy-right {
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 0 auto;
}

.div-container {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.upper-row {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  width: 100%;
  padding: 30px;
}

.lower-row {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
}

p.big-par {
  text-align: center;
  font-size: 150%;
  font-style: italic;
}

/* Praise Section */

.praise-left {
  display: inline-block;
  vertical-align: top;
  width: 200px;
  margin: 0 auto;
}

.praise-right {
  display: inline-block;
  vertical-align: top;
  width: 600px;
  margin: 0 auto;
}

p.side-quote {
  text-align: right;
  line-height: 120%;
  font-size: 170%;
  font-style: italic;
  color: #DDD;
}

p.praise {
  text-align: right;
}

.quote-box {
  float: left;
  width: 80%;
}

.quote-title {
  font-weight: 300;
  font-size: 90%;
  text-align: right;
  font-family: 'Lato', serif;
}

.praise-bio {
  width: 15%;
  float: right;
  vertical-align: top;
  margin: 0 0 0 20px;
}

/* email signup section*/

.email-signup {
  color: white;
}

.email-form {
  width: 60%;
  margin: 0 auto;
}

.form-center {
  margin-bottom: 30px;
}

.form-left {
  width: 50%;
  float: left;
  padding-right: 15px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.form-right {
  width: 50%;
  float: right;
  padding-left: 15px;
  margin-bottom: 15px;
  box-sizing: border-box;
}

p.email-par {
  text-align: center;
  font-size: 120%;
  color: #FFF;
  width: 60%;
  margin: 0 auto;
}

a.email-par {
  color: #FFF;
  border-bottom: 1px solid #FFF;
}

/* Copyright section */

.copyright{
  width: 80%;
  text-align: center;
  margin: 0 auto;
}


/*poup box*/

.popup {
  display: none;
  position: fixed;
  text-align: center;
  padding: 25px;
  width: 500px;
  max-width: 90%;
  left: 50%;
  border-radius: 5px;
  margin-left: -250px;
  top: 50%;
  margin-top: -100px;
  background: #FFF;
  z-index: 20;
}

.popup-container {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-par {
  text-align: center !important;
  margin-bottom: 30px;
}

#popup1 {
  -webkit-appearance: none;
  -webkit-box-shadow:  0px 0px 0px 9999px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 0px 9999px rgba(0, 0, 0, 0.5);
  box-shadow:  0px 0px 2000px 2000px rgba(0, 0, 0, 0.5);
}

.popup-alt {
  position: fixed;
  text-align: center;
  padding: 25px;
  width: 500px;
  max-width: 90%;
  left: 50%;
  border-radius: 5px;
  margin-left: -250px;
  top: 50%;
  margin-top: -100px;
  background: #FFF;
  z-index: 20;
}

.overlay {
  background: rgb(0, 0, 0, 0.5);
}

.overlay-2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

#popup-2 {
  display: none;
  width:      100%;
  height:     100%;
  z-index:    10;
  top:        0;
  left:       0;
  position:   fixed;
}


@media ( max-width: 560px ) {
  .popup {
    width: 450px;
    margin-left: -45%;
  }

  .popup-alt {
    width: 450px;
    margin-left: -45%;
  }
}

@media ( max-width: 690px ) {
  .quote-box {
    width: 100%;
    margin: 0 auto 0 auto;
  }
  .praise-bio {
    width: 25%;
    float: none;
    vertical-align: top;
    margin: 0 auto 30px auto;
  }

  p.email-par {
    width: 85%;
  }

  .email-form {
    width: 85%;
  }
}
