@charset "UTF-8";
/* SCSS HEX */
section.book-select {
  padding: 4em 0;
  text-align: center;
  background: #222222;
}
section.book-select .half-container .half {
  margin-bottom: 2em;
}
section.book-select .half-container .half img {
  max-width: 100%;
  height: auto;
  display: block;
}
section.book-select .half-container .half .half-content {
  margin-top: 4em;
  box-sizing: border-box;
}
section.book-select .half-container .half .half-content a {
  font-size: 15px;
  position: relative;
  display: inline-block;
  color: #9c5451;
}
section.book-select .half-container .half .half-content a:after {
  content: " »";
}
@media (min-width: 991px) {
  section.book-select {
    padding: 6em 0;
  }
  section.book-select .half-container {
    display: flex;
  }
  section.book-select .half-container .half {
    width: 50%;
    margin: 0;
  }
  section.book-select .half-container .half img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  section.book-select .half-container .half:first-of-type .half-content {
    border-right: 1px solid #191919;
  }
  section.book-select .half-container .half .half-content {
    margin-top: 4em;
    padding: 0 4em;
  }
  section.book-select .half-container .half .half-content a {
    margin-top: 2em;
  }
  section.book-select .half-container .half .half-content a:hover {
    color: #bc807e;
  }
}

section.blog-section {
  margin: 4em 0;
}
section.blog-section .blog-list {
  margin: 0 -2%;
}
section.blog-section .blog-list article {
  margin: 2em 0 4em 0;
  padding: 0 2%;
  box-sizing: border-box;
  position: relative;
}
section.blog-section .blog-list article .image {
  overflow: hidden;
}
section.blog-section .blog-list article .image img {
  width: 100%;
  height: auto;
  display: block;
}
section.blog-section .blog-list article .categories {
  margin: 0.5em 0 0.5em 0;
}
section.blog-section .blog-list article .categories .category {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #414042;
}
section.blog-section .blog-list article .overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 991px) {
  section.blog-section {
    margin: 6em 0;
  }
  section.blog-section.is-blog {
    margin: 2em 0;
  }
  section.blog-section .blog-list {
    display: flex;
    flex-wrap: wrap;
  }
  section.blog-section .blog-list article {
    width: 33.33%;
    margin: 2em 0;
  }
  section.blog-section .blog-list article .image img {
    transition: all 600ms;
  }
  section.blog-section .blog-list article:hover h4 {
    color: #9c5451;
  }
  section.blog-section .blog-list article:hover .image img {
    transform: scale(1.1);
  }
}

ul.pagination {
  text-align: center;
}
ul.pagination li {
  display: inline-block;
  margin: 0 0.5em;
}
ul.pagination li.active {
  color: white;
}
ul.pagination li:hover {
  color: #9c5451;
}

footer {
  color: #979797;
}
footer .container {
  padding: 4em 0;
  border-top: 1px solid #222222;
  text-align: center;
  color: #414042;
  font-size: 14px;
}
footer .container .social {
  margin: 2em auto 0 auto;
}
footer .container .social li {
  display: inline-block;
  margin: 0 1em;
}
footer .container .social li a {
  display: block;
  width: 22px;
  height: 22px;
}
footer .container .social li a svg {
  width: 100%;
  height: auto;
  display: block;
}
footer .container .social li a svg path, footer .container .social li a svg circle {
  fill: #979797;
  transition: all 300ms;
}
@media (min-width: 991px) {
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    text-align: left;
  }
  footer .container .social {
    display: flex;
    margin: 0;
  }
  footer .container .social li {
    display: block;
    margin: 0 0 0 1.5em;
  }
  footer .container .social li a:hover svg path, footer .container .social li a:hover svg circle {
    fill: #9c5451;
  }
}

section.single article blockquote {
  margin: 3em auto;
  padding: 1.2em 30px 1.2em 50px;
  border-left: 4px solid #414042;
  line-height: 1.6;
  position: relative;
  background: #222222;
}
section.single article blockquote p:last-of-type {
  margin-bottom: 0;
}
section.single article blockquote h2, section.single article blockquote h3 {
  margin-top: 0;
}
section.single article blockquote::before {
  font-family: Arial;
  content: "“";
  color: #414042;
  font-size: 4em;
  position: absolute;
  left: 13px;
  top: -10px;
}
section.single article figure {
  margin-bottom: 1em;
}
section.single article img {
  width: 100%;
  height: auto;
  display: block;
}
section.single article ul {
  margin-bottom: 1em;
}
section.single article ul li {
  position: relative;
  padding-left: 1.5em;
}
section.single article ul li:before {
  position: absolute;
  content: "•";
  left: 0;
  top: 0;
  color: #9c5451;
}
section.single article ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  margin-bottom: 1em;
}
section.single article ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 0.7em;
}
section.single article ol li::before {
  content: counter(my-awesome-counter) ". ";
  color: #9c5451;
  font-weight: bold;
}
section.single article .embed-youtube {
  margin: 3em 0;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
section.single article .embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 991px) {
  section.single article a {
    font-weight: 400;
    border-bottom: 1px solid #999999;
    transition: color 300ms;
  }
  section.single article a:hover {
    color: #9c5451;
  }
}

aside {
  margin: 6em auto;
  border-top: 1px solid #222222;
}
aside .widget {
  border-bottom: 1px solid #222222;
  padding: 2em 0;
}
aside .widget:last-of-type {
  border: none;
}
aside .widget h6 {
  color: #9c5451;
  margin-bottom: 2em;
  font-weight: 700;
}
aside .widget.latest-posts .latest-post {
  display: flex;
  align-items: center;
  margin: 1em 0;
}
aside .widget.latest-posts .latest-post .date {
  color: #414042;
}
aside .widget.latest-posts .latest-post h6 {
  margin: 0;
  color: #999999;
}
aside .widget.latest-posts .latest-post .post-thumb-sm {
  width: 75px;
  flex-shrink: 0;
  margin-right: 1em;
}
aside .widget.tags ul li, aside .widget.categories ul li {
  display: inline-block;
  margin: 5px 5px 5px 0;
}
aside .widget.tags ul li a, aside .widget.categories ul li a {
  background: #222222;
  padding: 4px 7px;
  font-weight: 400;
  font-size: 16px;
}

section.newsletter {
  padding: 6em 0;
  text-align: center;
  background: #222222;
}
section.newsletter .rs-newsletter {
  margin: 2em 0 0 0;
}
section.newsletter .rs-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
section.newsletter .rs-newsletter form input[type=email] {
  border: none;
  background: #fff;
  border-radius: 9px;
  padding: 16px 20px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}
section.newsletter .rs-newsletter form input[type=submit], section.newsletter .rs-newsletter form button {
  border: none;
  margin-top: 1em;
}
section.newsletter .rs-newsletter form button {
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  margin: 0;
  padding: 16px 40px;
  font-size: 1.4rem;
  line-height: 16px;
  text-decoration: none;
  position: relative;
  text-align: center;
  background: #9c5451;
  color: #fff;
  border-radius: 9px;
  text-transform: uppercase;
  font-weight: 700;
}
section.newsletter .rs-newsletter .rs-newsletter__success {
  font-weight: 700;
}
section.newsletter .rs-newsletter .rs-newsletter__error {
  margin-top: 1rem;
  color: darkred;
}
@media (min-width: 991px) {
  section.newsletter .rs-newsletter form {
    flex-direction: row;
  }
  section.newsletter .rs-newsletter form input[type=email] {
    max-width: 300px;
  }
}

/*# sourceMappingURL=main.css.map */
