/*
Theme Name: Liberated Texts
Theme URI: https://github.com/tidythemes/Liberated Texts
Author: Stewart Davies
Author URI: N/A
Description: N/A
Version: 2019.1
License: GNU General Public License
License URI: https://www.gnu.org/licenses/gpl.html
Tags: N/A
Text Domain: Liberated Texts
*/

@font-face {
    font-family: 'Tiempos Text';
    src: url('fonts/tiempos-text-web-regular-italic.woff2') format('woff2'),
        url('fonts/tiempos-text-web-regular-italic.woff') format('woff');
    font-weight: 400;
	font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Tiempos Text';
    src: url('fonts/tiempos-text-web-regular.woff2') format('woff2'),
        url('fonts/tiempos-text-web-regular.woff') format('woff');
    font-weight: 400;
	font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tiempos Text';
    src: url('fonts/tiempos-text-web-medium-italic.woff2') format('woff2'),
        url('fonts/tiempos-text-web-medium-italic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Tiempos Text';
    src: url('fonts/tiempos-text-web-medium.woff2') format('woff2'),
        url('fonts/tiempos-text-web-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none; /* iOS Safari */
}

html {
    height: 100%;
    box-sizing: border-box;
    font-size: 14px;
}

body {
    min-height: 100%;
    margin : 0;
    padding: 0;
    height: 100%;
	background-color: #F0F0F0!important;
    color: #4E4E4E;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
}

body, html {
  -webkit-font-smoothing: antialiased;/* apply font anti-aliasing */
  text-rendering: optimizeLegibility;/* firefox counts readability more than display speed */
  -moz-osx-font-smoothing: grayscale;
}

h1 {
	font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 3rem;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: 500;
    font-style: normal;
    color: black;
}

h1 em {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-style: italic;
    color: black;
}
 
h2 {
	font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 1.5em;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: 500;
    font-style: normal;
    color: black;
}

h4 {
	font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 1em;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
}

h5 {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-style: normal;
    font-weight: 500;
}

ul, menu, dir {
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
    padding: 0px;
}

.article-content blockquote {
    color: black;
    padding-left: 29px;
    margin-bottom: 40px!important;
    border-left: 3px solid #000;
    display: block;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.article-content blockquote p {
    margin-bottom: 40px;
    padding-bottom: 0px!important;
}

p.i {
    font-family: 'Tiempos Text', sans-serif;
    font-style: italic;
}

ul {
   margin: 0;
}

a {
    text-decoration: none;
    color: black;
    opacity: 1;
    transition: all ease-in-out;
    -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    -o-transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

a:hover  {
    opacity:0.6;
}

img {
    width: 100%;
    display: block;
}

.centre { 
	text-align: center;
}

sup.modern-footnotes-footnote:before {
    content: '['!important;
}
sup.modern-footnotes-footnote:after {
    content: ']'!important;
}

.modern-footnotes-footnote__note--tooltip {
    font-size: 13px;
    line-height: 19px;
}

.fade-in-content {
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

.margin-bottom { 
    margin-bottom: 25px; 
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

 /* Global */

.inner-wrapper {
    margin: 0 auto;
    max-width: 1400px;
    width: 90%;
}

.grey {
	color: #292929;
}

 /* Header */

header {
 	background-color: white;
    width: 100%;
    top: 0;
    position: fixed;
    min-height: 94px;
    padding-top: 18px;
    padding-bottom: 18px;
    z-index: 9;
 } 

.is-visible {
	transition: transform 0.4s, opacity 0.2s;
	top: 0; 
	transform: translate(0, 0);
}
.is-hidden {
    transition: transform 0.4s, opacity 0.2s;
    top: 0; 
    transform: translate(0, -104%);
}
/* Individual pages  */

/* .page-id-2,.page-id-91, .page-id-77 {
	background-color: #000000!important 
/*     background-color: #02081D!important  */
}

 /* Header Navy */

#header-navy {
/*     background-color: #02081D!important;  */
    background-color: #000000!important;
	border-bottom: 1px solid #1e1a2f;
 } 

 #header-navy li a {
   color: #ffffff!important;
}

#header-navy .menu-icon span {
    background-color: #fff!important; 
}

#header-navy .menu-icon span:after,#header-navy .menu-icon span:before {
    background-color: #fff!important; 
}

#header-navy .menu-icon-close span {
    background-color: #02081D!important;;
}

/* Navigation  */

header ul {
	list-style: none;
	float: right;
	margin-top: 10px;
}

header li {
    position: relative;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    margin-left: 14px;
}

header li.current-menu-item {
	border-bottom: 2px solid #000000;
	padding-bottom: 10px;
}

a#logo { 
	transition: all ease-in-out;
    -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
       -moz-transition: all .3s cubic-bezier(.4, 0, .2, 1);
         -o-transition: all .3s cubic-bezier(.4, 0, .2, 1);      
}
#logo svg {
    max-width: 160px;
    margin-top: 6px;
}
a#logo:hover { 
	opacity:0.8;
}

#logo img {
    max-width: 240px;
	padding-top: 10px;
}

/*--------- Footer ---------*/

footer {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 40px;
    background: #000!important;
}

#logo-footer { 
    text-align: left;
}

#logo-footer img {
    max-width: 240px;
	margin-bottom: 100px;
}

footer.margin {
    margin-top: 60px;
}

footer.margin-overlap {
    margin-top: -60px;
}

footer.nomargin {
    margin-top: 0px!important;
}

.footer-links-right {
  font-size: 1.286rem;
  text-align: right;
}

.footer-links-right a {
  padding-left: 13px;
}
.footer-link {
  margin-bottom: 80px;
  text-align: center;

}

footer a {
    color: white;
}

footer a:hover,.footer-contact a:hover {
  color: #ffffff!important;
  opacity: 0.8;
}

.footer-contact {
    color: white;
    font-size: 1.1rem;
}

a#logo-footer svg {
    max-width: 160px;
    margin-bottom: 100px;
}

.top-border {
    border-top: 1px solid #1e1a2f;
}

.copyright {
	font-size: 11px;
	color:#333;
	margin-top: 19px;
}

.copyright a {
	font-size: 11px;
	color:#333;
	text-decoration: underline;
}

/*--------- Side Navigation ---------*/

#menu-reveal {
    display: none;
    z-index: 2
}
.menu-icon {
	cursor: pointer;
    z-index: 2;
    position: absolute;
    display: inline-block;
    width: 60px;
    top: 14px;
    height: 60px;
    right: 8px;
    transition: all ease-in-out;
}
.menu-icon:hover {
	opacity: 0.9;
}
.menu-icon-reverse span, .menu-icon-reverse span:after, .menu-icon-reverse span:before {
    background-color: #000!important
}
.menu-icon span {
    margin: 0 auto;
    position: relative;
    top: 26px;
    width: 25px;
    height: 2px;
    background-color: #000;
    display: block
}
.menu-icon span:after, .menu-icon span:before {
    position: absolute;
    content: '';
    width: 25px;
    height: 2px;
    background-color: #000;
    display: block
}
.nav-white.menu-icon span {
    margin: 0 auto;
    position: relative;
    top: 15px;
    width: 25px;
    height: 2px;
    background-color: #000000;
    display: block
}
.nav-white.menu-icon span:after, .nav-white.menu-icon span:before {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background-color: #000000;
    display: block
}
.menu-icon span:before {
    margin-top: -8px
}
.menu-icon span:after {
    margin-top: 8px
}
.menu-icon-hover span {
    transition-property: width;
    transition-duration: .2s;
    -webkit-transition-delay: .2s, 0;
    transition-delay: .2s, 0
}
.menu-icon-hover:hover span {
    width: 25px;
    -webkit-transition-delay: 0s, .2s;
    transition-delay: 0s, .2s
}
.menu-icon-hover span:before {
    transition-property: width;
    transition-duration: .2s;
    -webkit-transition-delay: .2s, 0;
    transition-delay: .2s, 0
}
.menu-icon-hover:hover span:before {
    width: 25px;
    -webkit-transition-delay: 0s, .2s;
    transition-delay: 0s, .2s
}
.menu-icon-hover span:after {
    -webkit-transition-property: width;
    transition-property: width;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-delay: .2s, 0;
    transition-delay: .2s, 0
}
.menu-icon-hover:hover span:after {
    width: 25px;
    -webkit-transition-delay: 0s, .2s;
    transition-delay: 0s, .2s
}
.menu-icon-white span, .menu-icon-white span:after,.menu-icon-white span:before {
    background-color: #000000;
}
.menu-close {
    z-index: 999999;
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px
}
.menu-icon-close span {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: .2s;
    transition-delay: .2s
}
.menu-icon-close span:before {
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    background-color: #ffffff;
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0s, .2s;
    transition-delay: 0s, .2s
}
.menu-icon-close span:after {
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    background-color: #ffffff;
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0s, .2s;
    transition-delay: 0s, .2s
}
#side-nav {
    position: fixed;
    height: 100vh;
    width: 100%;
    background:#000000!important;
    right: -100%;   
    top: 0;
    z-index: 4000;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    transform: translateZ(0)
}
#side-nav.visible {
    transition-delay: 0;
    left: 100%; 
    transform: translate(-100%, 0);
    opacity: 1
}
li#menu-item-17 { 
	color: white;
	background-color: none;
	padding: 0px;
}
#side-nav ul.nav li a {
    font-size: 2rem;
    font-family: 'Tiempos Text', sans-serif;
	font-style: normal;
    color: white;
}
#side-nav ul {
    line-height: 3.75rem;
    font-size: 2.286rem;
    list-style: none;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0;
    font-family: 'Tiempos Text', sans-serif;
	font-style: normal;
    letter-spacing: 0.5px;
    width: 100%;
}
#side-nav li a {
	margin: 0;
    display: block;
    padding: 19px 0px 10px 0;
    color: #fff;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-delay: 0s, 0;
    transition-delay: 0s, 0
}
.menu-wrapper {
    width: 92%;
    margin: 0 auto;
}
#side-nav li a:hover {
    color: #B0894F;
}
#side-nav .nav {
	text-align: left;
}
#side-nav .nav {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 90vh
}
#content .btn-close {
    height: 45px;
    width: 45px;
    background: 0;
    color: #000;
    border: 0
}

body.is-nav-open {
    overflow: hidden;
}

#side-nav::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
#side-nav::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
#side-nav:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
#side-nav:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}

/* Articles */
.posts {
 	position: relative;
 	margin-top: 140px;
}
.post-hover {

}
.vert-post {
    position: relative;
    background-color: #ffffff;
    margin-bottom: 2.4rem;
    min-height: 690px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,6%);
       -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,6%);
            box-shadow: 0px 0px 5px 0px rgba(0,0,0,6%);
}
.vert-post-book-cover {
    position: relative;
    display: block;
    top: 0px;
    width: 100%;
    padding-bottom: 220px;
}
.book-cover {
	text-align: center;
	display: flex;
    justify-content: center;
}	
.book-cover img {
    max-width: 244px;
    max-height: 244px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
}
.posts a{
    opacity: 1;
}
.posts a:hover{
    opacity: 1;
}
.vert-post-image { 
    background-size: cover;
    position: relative;
    background-position: center;
    display: block;
    top: 0px;
    width: 100%;
    padding-bottom: 220px;
}
.vert-post-image-large { 
	background-size: cover;
	position: relative;
	display: block;
	top: 0px;
	width: 100%;
    padding-bottom: 68%;
}
.vert-post-title-large {
	min-height: 15%;
    max-width: 550px;
}
.vert-post-title {
    min-height: 142px;
    /*max-height: 180px;*/
    margin-bottom: 20px;
    /*overflow: hidden;*/
}
.vert-post-title h2 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vert-post-information {
    height: 58%;
    padding: 40px 20px 20px 20px;
    position: relative;
    display: block;
}
.vert-post-meta {
    text-transform: uppercase;
    padding-bottom: 12px;
    padding-top: 11px;
    margin-bottom: 20px;
    border-bottom: 2px solid #000;
    border-top: 2px solid #000;
}
.vert-post-meta ul {
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 11px;
}
.vert-post-meta li {
	display: inline;
}
.vert-post-meta li:nth-child(1){
	padding-right: 10px;
	border-right: 1px solid #d7d7d7;
	margin-right: 10px;
}
.vert-post-blurb {
    font-size: 15px;
    line-height: 21px;
    font-family: 'Tiempos Text', sans-serif;
	font-style: normal;
} 
.vert-post-blurb p {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
} 
a.vert-post{
    cursor: pointer;
}
.author-thumb {
	font-weight:500;
	color:#cb1517;
}

#menu-mobile .search-form-wrapper {
    border-bottom: 1px solid #fff;
    padding: 6px;
}
.meta .vert-post-meta {
	display: table;
}
.meta .vert-post-meta ul {
    font-size: 13px;
	padding-top: 1px;
    padding-bottom: 1px;
}

/*-- Article --*/

.vert-post-book-cover-article {
    position: relative;
    display: block;
    top: 0px;
    width: 100%;
     padding-bottom: 92%; 
    min-height: 300px;
}

.sharing-icons {
    text-align: right;
    margin-top: -11px;
}

.author { 
    font-weight: 500;
    color:#cb1517!important;
}

.meta {
    margin-bottom:40px;
}

.sharing-icons i {
    padding: 16px;
    font-size: 16px;
    border: 1px solid #c3c3c3;
    border-radius: 60px;
    width: 49px;
    text-align: center;
}

.article-header {
	margin-top: 94px;
	background-color: #F0F0F0;
	width: 100%;
	min-height: 345px;
}
.article-header-book {
	margin-top: 120px;
	padding-top: 32px;
	background-color: #F0F0F0;
	width: 100%;
	min-height: 345px;
}
.article-content {
   margin-top: 60px;
}
.article-details {
   margin-top: 68px;
   color: black;
}
.article-details h4 {
	padding-bottom: 26px;
	letter-spacing: 1px;
    font-size: 12px;
}
.article-details a {
	text-decoration: underline;
	transition: all ease-in-out;
    -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
       -moz-transition: all .3s cubic-bezier(.4, 0, .2, 1);
         -o-transition: all .3s cubic-bezier(.4, 0, .2, 1); 
}
.article-details a:hover {
	text-decoration: underline;
	opacity:0.8;
}
.article-padding {
    padding-left: 110px;
    padding-right: 110px;
}
.article-header h1 {
	padding-top: 80px;
	padding-bottom: 70px;
}
.article-content p {
    font-size: 1.3rem;
    line-height: 30px;
    font-family: 'Tiempos Text', sans-serif;
	font-style: normal;
	padding-bottom: 40px;
}
.article-content h3 {
    color: black;
    font-size: 22px;
    padding-bottom: 30px;
	font-weight: 700;
}
.article-content a {
    text-decoration: underline;
}
.quote-block {
    padding-left: 60px;
    margin-bottom: 60px;
	border-left: 3px solid #0117B2;
}
.book-title h1 {
    font-size:52px;
}
.article-image {
	height: 570px;
	background-size: cover;
}
.book-cover-image {
	display: block;
	background-color: #F0EBD8;
}
.book-details-cover {
    position: relative;
    margin-bottom: 20px;
}

.book-details-cover img{
/*	padding: 30px;*/
}
.article-post-meta ul {
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 12px;
}
.article-post-meta li {
    display: inline;
}
.article-post-meta {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
	border-top: 4px solid black;
	border-bottom: 4px solid black;
    display: inline-block;
    padding-bottom: 9px;
	padding-top: 9px;
}
#article-details-sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 40px;
}

.vert-post-title-large {
    margin-bottom: 20px;
}

/*-- About--*/

.about-text h3 {
    font-family: 'Tiempos Text', sans-serif;
    font-style: normal;
    color: black;
    line-height: 31px;
    font-size: 1.857rem;
	font-weight:normal;
	font-weight:500;
    padding-bottom: 40px;
}

.about-text blockquote p{ 
    font-family: 'Tiempos Text', sans-serif;
	font-style: normal;
    color: white;
    line-height: 31px;
    font-size: 1.857rem;
    color: #000000;
    font-style: italic;
    padding-left: 0px!important;
    margin-bottom: 40px!important;
    border-left: none!important;
    display: block;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.about-text a {
    text-decoration: underline;
    opacity: 0.6;
}

.about-text  {
    font-family: 'Tiempos Text', sans-serif;
	font-weight: 500;
	font-style: normal;
}

.small-title {
    color: black;
    line-height: 1.3rem;
}

.small-title h5 {
	color:#000000;
}


.about-text h5 {
    color: black;
    line-height: 1.3rem;
    padding-bottom: 32px;
}

.about-text h5 a {
    color: black;
    text-decoration: underline;
}

.about-text ol {
    margin-left: 16px;
	font-weight: 400;
}

.about-text p, .about-text li {
    font-size: 16px;
	line-height: 24px;
    padding-bottom: 20px;
}
 
.about-text .contact-sidebar a {
     text-decoration: none;
}

.about-us-padding {
    position: relative;
    margin-top: 160px;
}

.contact-sidebar {
    color: black;
    line-height: 1.6rem;
}

.contact-sidebar a h3 {
    color: black;
    font-family: 'Tiempos Text', sans-serif;
    font-weight: normal;
    font-weight: 500;
    opacity: 1;
    transition: all ease-in-out;
    -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: all .3s cubic-bezier(.4, 0, .2, 1);
    -o-transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.contact-sidebar a:hover h3 {
    opacity:0.6;
}

.sidebar-link {
     font-family: 'Tiempos Text', sans-serif;
     color: white;
}

/*-- Book page --*/

li.p1 {
    padding-bottom: 20px;
    padding-left: 10px;
    margin-left: 14px;
}

.large-body-text {
	margin-top: 16px;
    font-size: 20px;
}

.CTA-btn {
	color: #fff;
    background-color: #000;
    border-color: #fff;
	padding: 20px 30px 20px 30px;
    display: inline-block;
}

.article-padding-book {
    padding-top:30px;
	margin-bottom:30px
}

.article-title-book {
	padding-top: 100px;
	padding-bottom:30px;
}

.book-title-header h1{
	font-size: 52px;
	line-height: 56px!important;
}

.book-authors {
	padding-bottom:30px;
}

details:last-child {
    border-bottom: 1px solid #000;
}

.detail-accord {
	margin-top: 40px;
}

summary h1 { 
	display:inline-block!important;
	font-size: 24px;
}

summary {
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px solid #000000;
  cursor: pointer;
  outline: none;
  font-weight: bold;

  &:hover {
    background: rgb(255 200 5);
  }
}

details summary::-webkit-details-marker,
details summary::marker {
 display: none; 
 content: "";
}

details > summary:after {
    content: "+";
    float: right;
    display: absolute;
    right: 0px;
    font-weight: 200;
    margin-top: -9px;
    font-size: 42px;
}

details[open] > summary:after {
   content: "–";
    float: right;
    display: absolute;
    right: 0px;
    font-weight: 200;
    margin-top: -9px;
    font-size: 42px;
}

::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}

details[open] summary ~ * {
  animation: open 0.5s ease-in-out;
}

@keyframes open {
  from {
    opacity: 0;
    margin-top: -10px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

.content {
	font-size: 1rem;
    line-height: 1.5rem;
    font-family: 'Tiempos Text', sans-serif;
    font-style: normal;
    padding-bottom: 40px;
	max-width: 100%;
	padding-top: 16px;
    margin-bottom: 2em;
}

.price-links h2 {
    padding-top: 29px;
    font-size: 24px;
    margin-bottom: 30px;
	display: block;
}


.price-links a {
    font-size: 18px;
    display: block;
    padding-top: 15px;
    padding-bottom: 0;
    border-top: 1px dotted #000000;
    font-weight: 400;
}

.price-links a:last-child {
    border-bottom: 1px dotted #000000;
	padding-bottom: 16px;
}

.price-links-mobile h2 {
    padding-top: 29px;
    font-size: 24px;
    margin-bottom: 30px;
	display: block;
}


.price-links-mobile a {
    font-size: 18px;
    display: block;
    padding-top: 15px;
    padding-bottom: 0;
    border-top: 1px dotted #000000;
    font-weight: 400;
}

.price-links-mobile a:last-child {
    border-bottom: 1px dotted #000000;
	padding-bottom: 16px;
}

img.image2 {
    display: none;
}

.price-links-mobile{
   display: none;
	}

/*-- Search --*/

#header input.search-icon {
	 background: url(img/search-icon.svg) no-repeat 0 0;
	 width:0px;
	 height:0px;
	 padding: 8px;
	 margin-left: -6px;
}

span.screen-reader-text {
    display: none;
}
input[type="image"] {
    width: 16px;
    padding-top: 5px;
}
input {
    line-height: 0;
}
input.search-field {
    padding-bottom: 4px;
    background-color: transparent;
}
.search-form-wrapper {
    border-bottom: 2px solid #000000;
    padding: 2px;
	margin-left: 12px;
}

input:focus {
    outline: -webkit-focus-ring-color auto 0px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #333;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #333;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #333;
}
:-moz-placeholder { /* Firefox 18- */
  color: #333;
}

/*-- Search Bar Navy --*/


#header-navy input.search-icon {
	 background: url(img/search-icon-white.svg) no-repeat 0 0!important;
	 width:0px;
	 height:0px;
	 padding: 10px;
	 margin-left: -6px;
}

#header-navy span.screen-reader-text {
    display: none;
}
#header-navy input[type="image"] {
    width: 16px;
    padding-top: 5px;
}
#header-navy input {
    line-height: 0;
}
#header-navy input.search-field {
    padding-bottom: 4px;
    background-color: transparent;
	color: #ffffff;
}
#header-navy .search-form-wrapper {
    border-bottom: 1px solid #fff;
    padding: 6px;
}

#header-navy input:focus {
    outline: -webkit-focus-ring-color auto 0px;
}

#header-navy ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
#header-navy ::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
#header-navy :-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
#header-navy :-moz-placeholder { /* Firefox 18- */
  color: #fff;
}

/*-- Menu-mobile Navy --*/


#menu-mobile input.search-icon {
	 background: url(img/search-icon-white.svg) no-repeat 0 0!important;
	 width:0px;
	 height:0px;
	 padding: 10px;
	 margin-left: -6px;
}

#menu-mobile span.screen-reader-text {
    display: none;
}
#menu-mobile input[type="image"] {
    width:26px;
	height:26px;
    padding-top: 0px;
	margin-right: 10px;
}
#menu-mobile input {
    line-height: 0;
}
#menu-mobile input.search-field {
    padding-bottom: 4px;
    background-color: transparent;
	color: #ffffff;
	font-size: 2rem;
}
#menu-mobile li.ht_menu_search_bar {
    margin-top: 40px;
}
#menu-mobile .search-form-wrapper {
    border-bottom: 2px solid #fff;
	margin-left: 0px;
}

#menu-mobile input:focus {
    outline: -webkit-focus-ring-color auto 0px;
}

#menu-mobile ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
#menu-mobile ::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
#menu-mobile :-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
#menu-mobile :-moz-placeholder { /* Firefox 18- */
  color: #fff;
}

.no-results {
    min-height: 60vh;
}

.no-results .search-form-wrapper {
	max-width:200px;
}

/*-- Responsive --*/


@media only screen and (max-width: 1300px) {
	.article-padding {
		padding-left: 60px;
		padding-right: 60px;
}

@media only screen and (max-width: 1199px) {
	.vert-post-title {
		min-height: auto;
	}
	.sharing-icons {
        text-align: center;
        margin-top: 10px; 
    }
}

@media only screen and (max-width: 992px) {
    .vert-post { 
   		margin-bottom: 20px;
   }
    .contact-sidebar {
        display: none;
    }
	.vert-post-title {
		min-height: auto;
	}
	.article-padding {
		padding-left: 0px;
		padding-right: 0px;
	}
	.sharing-icons {
        text-align: center;
        margin-top: 10px; 
    }
	.meta .vert-post-meta {
		margin: 0 auto;
	}
} 

@media only screen and (max-width: 882px) {
    .menu-list {
    	display: none
    }
     #menu-reveal {
        display: block;
        z-index: 99999
    }
    .vert-post { 
   		margin-bottom: 20px;
   }
   .vert-post-title {
        min-height: auto;
    }
	.article-padding {
		padding-left: 0px;
		padding-right: 0px;
	}
	.sharing-icons {
        text-align: center;
        margin-top: 10px; 
    }
	.meta .vert-post-meta {
		margin: 0 auto;
	}
	.vert-post {
		min-height: auto;
	}
	.article-details {
 	   margin-top: 10px;
	}
	.book-title, .book-details {
		font-size: 18px;
	}
	img.image1{
     display: none;
	}
	img.image2{
     display: block;
	}
	.price-links{
     display: none;
	}
	.price-links-mobile{
     display: block;
	}
	.detail-accord {
    margin-bottom: 40px;
}
	.price-links-mobile h2 {
    padding-top: 29px;
    font-size: 17px;
    margin-bottom: 30px;
    display: block;
}
	img.image2{
     display: block;
	 margin-bottom:24px;
	}
} 

@media only screen and (max-width: 540px) {
  .inner-wrapper {
	    width: 85%;
   }
   header {
   	    padding-top: 20px;
   	    min-height: 84px;
   }
   h1 {
    font-size: 2.3em;
       line-height: 2.6rem;
   }
   .posts {
	    margin-top: 120px;
	}
   .vert-post { 
   		margin-bottom: 40px;
   }
   #logo svg {
	    max-width: 180px;
	    width: 150px;
	}
	#logo-footer img {
	    width: 210px;
	}
	.article-header {
		margin-top: 84px;
	}
	.article-image {
   		height: 300px; 
	}
	.article-content, .article-title {
		padding-left: 0px;
        padding-right: 0px;
	}
    .vert-post-title {
        min-height: auto;
    }
    .vert-post {
        min-height: auto;
        padding-bottom: 10px;
    }
    .contact-sidebar {
        display: none;
    }
    .about-us-padding {
        margin-top: 140px;
    }
    .footer-contact {
        margin-bottom: 20px;
    }
    .footer-links-right {
       display: inline-block;
     }
    .footer-links-right a {
        padding-left: 0px;
        padding-right: 13px;
    }
    .article-padding {
        padding-left: 0px;
        padding-right: 0px;
    }
    .sharing-icons {
        text-align: center;
        margin-top: 10px; 
    }
    .article-post-meta ul {
        text-decoration: none;
        letter-spacing: 1px;
        font-size: 12px;
        text-align: center;
    }
	.meta .vert-post-meta ul {
		font-size: 13px;
		text-align: center;
	}
	.meta .vert-post-meta {
		margin: 0 auto;
	}
	.article-details {
 	   margin-top: 10px;
	}
	.book-title, .book-details {
		font-size: 18px;
	}
	.article-header-book {
	   margin-top: 75px;
		
	}
	img.image1{
     display: none;
	}
	img.image2{
     display: block;
	 margin-bottom:24px;
	}
	.price-links{
     display: none;
	}
	.price-links-mobile{
     display: block;
	}
	.book-title-header h1 {
    	font-size: 41px;
    	line-height: 41px!important;
	}
	.detail-accord {
    margin-bottom: 40px;
}
	.price-links-mobile h2 {
    padding-top: 29px;
    font-size: 17px;
    margin-bottom: 30px;
    display: block;
}
}


