*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #444;
  z-index: 0;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
.header-banner {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-size: cover;
  opacity: 0.15;
}
.header-banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.pagination-wrapper .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px auto 60px auto;
  height: 128px;
}
.pagination-wrapper .pagination a {
  height: 64px;
  width: 64px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 32px 16px 32px;
  color: white;
}
.pagination-wrapper .pagination a.arrow {
  position: relative;
  top: 8px;
}
.pagination-wrapper .pagination a.arrow:hover {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
}
.pagination-wrapper .pagination a.page-counter {
  transition: all .3s;
  background-color: #f45145;
  border: 2px solid #f45145;
  border-radius: 50%;
  font-weight: bold;
  margin: 0 16px;
}
.pagination-wrapper .pagination a.page-counter:hover,
.pagination-wrapper .pagination a.page-counter.page-current {
  color: #f45145;
  background-color: white;
  box-shadow: 2px 2px 20px #aaa;
}
.empty {
  display: none !important;
}
.empty-page {
  min-height: 80vh;
}
.error-page h1 {
  text-align: center;
  margin: 20px auto;
}
a {
  text-decoration: none;
  color: #f45145;
}
a:hover {
  transition: color .3s;
}
p {
  font-size: 18px;
  line-height: 24px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}
.error-404,
.error-502 {
  text-align: center;
}
.error-404 h1,
.error-502 h1,
.error-404 h2,
.error-502 h2 {
  font-size: 96px;
  font-family: 'Poppins', sans-serif;
  color: #f45145;
}
.error-404 h2,
.error-502 h2 {
  font-size: 48px;
  text-transform: uppercase;
}
p.error-page-hint {
  font-size: 24px;
  text-align: center;
}
.img-wrapper,
.posts .popular-wrapper .popular-posts .popular-post .img-wrapper,
.single > .posts > .post .featured-image-wrapper .img-wrapper,
.inline-posts .post .featured-image-wrapper .img-wrapper,
.posts .recent-posts .post .featured-image-wrapper .img-wrapper,
.posts .latest-post .post .featured-image-wrapper .img-wrapper {
  position: relative;
}
.img-wrapper .pin-btn,
.posts .popular-wrapper .popular-posts .popular-post .img-wrapper .pin-btn,
.single > .posts > .post .featured-image-wrapper .img-wrapper .pin-btn,
.inline-posts .post .featured-image-wrapper .img-wrapper .pin-btn,
.posts .recent-posts .post .featured-image-wrapper .img-wrapper .pin-btn,
.posts .latest-post .post .featured-image-wrapper .img-wrapper .pin-btn {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 5px;
  cursor: pointer;
}
.img-wrapper .pin-btn img,
.posts .popular-wrapper .popular-posts .popular-post .img-wrapper .pin-btn img,
.single > .posts > .post .featured-image-wrapper .img-wrapper .pin-btn img,
.inline-posts .post .featured-image-wrapper .img-wrapper .pin-btn img,
.posts .recent-posts .post .featured-image-wrapper .img-wrapper .pin-btn img,
.posts .latest-post .post .featured-image-wrapper .img-wrapper .pin-btn img,
.img-wrapper .pin-btn img.featured,
.posts .popular-wrapper .popular-posts .popular-post .img-wrapper .pin-btn img.featured,
.single > .posts > .post .featured-image-wrapper .img-wrapper .pin-btn img.featured,
.inline-posts .post .featured-image-wrapper .img-wrapper .pin-btn img.featured,
.posts .recent-posts .post .featured-image-wrapper .img-wrapper .pin-btn img.featured,
.posts .latest-post .post .featured-image-wrapper .img-wrapper .pin-btn img.featured {
  opacity: 0.75;
  min-width: 50px;
  min-height: 50px;
  width: 50px;
  height: 50px;
  object-fit: initial;
  object-position: initial;
  border-radius: 50%;
}
.img-wrapper .pin-btn:hover img,
.posts .popular-wrapper .popular-posts .popular-post .img-wrapper .pin-btn:hover img,
.single > .posts > .post .featured-image-wrapper .img-wrapper .pin-btn:hover img,
.inline-posts .post .featured-image-wrapper .img-wrapper .pin-btn:hover img,
.posts .recent-posts .post .featured-image-wrapper .img-wrapper .pin-btn:hover img,
.posts .latest-post .post .featured-image-wrapper .img-wrapper .pin-btn:hover img {
  opacity: 1;
}
.single > .posts > .post .post-content .content .img-wrapper {
  margin: auto;
  max-width: min(100%, 1200px);
}
.posts .post {
  overflow: initial;
  transition: box-shadow 0.3s;
}
.posts .post .thumbs {
  margin: 10px auto;
  height: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.posts .post .thumbs a {
  display: block;
  height: 200px;
  object-fit: cover;
}
.posts .post .thumbs a img {
  object-fit: cover;
  height: 200px;
  width: 100%;
}
.posts .latest-post,
.posts .recent-posts {
  max-width: min(100%, 1200px);
  margin: auto;
}
.posts .recent-posts .post .post-content {
  padding: 0px 0px 40px 0px;
}
.posts .latest-post {
  margin-bottom: 5vh;
}
.posts .latest-post .post {
  box-shadow: 0px 0px 10px #e0e0e0;
  min-height: 600px;
}
.posts .latest-post .post .featured-image-wrapper {
  height: 600px;
  overflow: hidden;
}
.posts .latest-post .post .featured-image-wrapper img {
  min-height: 600px;
  max-height: 600px;
  object-fit: cover;
  object-position: center 65%;
}
.posts .latest-post .post .post-content {
  padding: 0px 20px 40px 20px;
}
.posts .latest-post .post h2 {
  font-size: 36px;
}
.posts .latest-post .post p {
  font-size: 20px;
  line-height: 28px;
}
.posts .latest-post .post .thumbs a {
  width: 24%;
  width: 24.5%;
}
.posts .latest-post .post .thumbs a:last-child {
  position: relative;
  background-color: black;
}
.posts .latest-post .post .thumbs a:last-child img {
  opacity: 15%;
}
.posts .latest-post .post .thumbs a:last-child::after {
  content: '+ de photos';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 90%;
  height: 90%;
  color: white;
  font-size: 32px;
  font-weight: bold;
}
.posts .popular-wrapper {
  max-width: min(100%, 1200px);
  margin: auto;
  content-visibility: auto;
  contain-intrinsic-size: auto 350px;
}
.posts .popular-wrapper .popular-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.posts .popular-wrapper .popular-posts .popular-post {
  transition: transform 0.3s, box-shadow 0.3s;
  width: 250px;
  height: 270px;
  padding: 10px;
  margin: 10px;
  background-color: white;
  overflow: hidden;
}
.posts .popular-wrapper .popular-posts .popular-post img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.posts .popular-wrapper .popular-posts .popular-post h3 {
  text-align: center;
  color: #f45145;
  margin: 10px 5px 5px 5px;
}
.posts .popular-wrapper .popular-posts .popular-post:hover {
  transform: rotate(4deg) scale(1.3);
  box-shadow: 4px 4px 16px #e0e0e0;
}
.recent-posts,
.inline-posts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.recent-posts .post,
.inline-posts .post {
  flex-basis: 50%;
  max-width: 580px;
  margin: 20px;
  min-height: 400px;
}
.recent-posts .post .featured-image-wrapper,
.inline-posts .post .featured-image-wrapper {
  height: 400px;
  overflow: hidden;
}
.recent-posts .post .featured-image-wrapper img,
.inline-posts .post .featured-image-wrapper img {
  min-height: 400px;
  max-height: 400px;
  object-fit: cover;
  object-position: center 65%;
}
.recent-posts .post .thumbs a,
.inline-posts .post .thumbs a {
  width: 49%;
}
.recent-posts .post .post-footer .sharing img,
.inline-posts .post .post-footer .sharing img {
  width: 40px;
  height: 40px;
}
.recent-posts .post .post-footer .read-more,
.inline-posts .post .post-footer .read-more {
  font-size: 16px;
  line-height: 22px;
}
.recent-posts .post:first-child,
.inline-posts .post:first-child {
  margin-left: 0;
}
.recent-posts .post:last-child,
.inline-posts .post:last-child {
  margin-right: 0;
}
.inline-posts .inline-post {
  flex-basis: 50%;
  margin-left: auto;
  margin-right: auto;
}
.inline-posts .inline-post .post h2 {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inline-posts .post {
  min-height: 400px;
  max-width: 580px;
  margin: 20px 10px;
}
.inline-posts .post:first-child {
  margin-left: 10px;
}
.inline-posts .post .featured-image-wrapper {
  position: relative;
  height: 400px;
}
.inline-posts .post .featured-image-wrapper a {
  display: grid;
}
.inline-posts .post .featured-image-wrapper img {
  transition: transform .3s;
  min-height: 400px;
  max-height: 400px;
  width: 100%;
}
.inline-posts .post .featured-image-wrapper:hover img.featured {
  transform: scale(1.1);
}
.inline-posts .post .featured-image-wrapper:hover h2 {
  opacity: 1;
}
.inline-posts .post h2 {
  position: relative;
  padding: 20px 5px;
  font-size: 18px;
}
.inner-content {
  max-width: min(100%, 1200px);
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}
.inner-content h3 {
  text-align: center;
  margin: 40px 10px 0px 10px;
  padding: 5px;
  color: white;
  background-color: #f45145;
  font-variant: small-caps;
  box-shadow: 5px 15px 0px -5px #e0e0e0;
}
.banner {
  margin: 40px auto 40px auto;
  padding: 40px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}
.banner.no-bg {
  background-color: transparent;
  padding: 0;
}
.banner:last-child {
  margin-bottom: 0;
}
.banner h2 {
  text-align: center;
  color: #f45145;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.social-networks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  content-visibility: auto;
  contain-intrinsic-size: auto 200px;
}
.social-networks > div,
.social-networks > a {
  display: flex;
  flex-direction: column;
  height: 200px;
  flex: 1;
  cursor: pointer;
  transition: transform .3s;
}
.social-networks > div > .social-data,
.social-networks > a > .social-data {
  display: flex;
  flex: 6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.social-networks > div > .social-data h3,
.social-networks > a > .social-data h3 {
  font-size: 24px;
}
.social-networks > div:hover,
.social-networks > a:hover {
  transform: scale(0.9);
}
.social-networks .pinterest {
  background-color: #bd081c;
}
.social-networks .flipboard {
  background-color: #e12828;
}
.social-networks .facebook {
  background-color: #3b5999;
}
.social-networks .twitter {
  background-color: #55acee;
}
.social-networks .instagram {
  background-color: #e4405f;
}
.social-networks .bloglovin {
  background-color: #000;
}
.surprise-me {
  background: white;
  font-size: 24px;
}
.ad-wrapper {
  width: 100%;
  max-width: min(100%, 1200px);
  margin: 20px auto;
}
.ad-wrapper.taboola {
  padding: 5px;
  background-color: white;
}
.ad-wrapper .ads-custom,
.ad-wrapper .ad-placeholder.adp-auto,
.ad-wrapper.ezoic-custom {
  min-width: 250px;
  max-width: min(100%, 1200px);
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 280px;
}
.ad-wrapper.adsense-rspv,
.ad-wrapper.adsense-mcrspv {
  min-height: 320px;
}
.ad-wrapper .ad-placeholder {
  display: flex;
  align-items: center;
  flex-direction: row;
  background-color: #ffffdd;
}
.ad-wrapper .ad-placeholder .adp-img-wrapper {
  z-index: 1;
}
.ad-wrapper .ad-placeholder .adp-img-wrapper img {
  background-color: #dadce0;
}
.ad-wrapper .ad-placeholder .adp-content-wrapper {
  padding: 10px;
}
.ad-wrapper .ad-placeholder .adp-content-wrapper h2 {
  color: #f45145;
  text-align: center;
}
.ad-wrapper .ad-placeholder.adp-auto .adp-img-wrapper {
  flex: 2;
}
.ad-wrapper .ad-placeholder.adp-auto .adp-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 280px;
}
.ad-wrapper .ad-placeholder.adp-auto .adp-content-wrapper {
  flex: 8;
  padding: 10px;
}
.ad-wrapper .ad-placeholder.adp-auto .adp-content-wrapper h2 {
  margin-bottom: 10px;
}
.ad-wrapper .ad-placeholder.adp-fluid .adp-img-wrapper {
  flex: 4;
}
.ad-wrapper .ad-placeholder.adp-fluid .adp-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 80vh;
}
.ad-wrapper .ad-placeholder.adp-fluid .adp-content-wrapper {
  flex: 6;
  padding: 10px;
}
.ad-wrapper .ad-placeholder.adp-fluid .adp-content-wrapper h2 {
  margin-bottom: 10px;
}
.ad-wrapper .ad-placeholder.adp-relaxed {
  flex-wrap: wrap;
  position: relative;
  padding: 10px;
}
.ad-wrapper .ad-placeholder.adp-relaxed .adp-img-wrapper {
  flex: auto;
  width: 25%;
}
.ad-wrapper .ad-placeholder.adp-relaxed .adp-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  border: 1px solid black;
}
.ad-wrapper .ad-placeholder.adp-relaxed .adp-content-wrapper {
  position: absolute;
  z-index: 1;
  width: 60%;
  max-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffdd;
  margin: auto;
  padding: 10px;
  border: 2px solid #f45145;
}
.ad-wrapper .ad-placeholder.adp-relaxed .adp-content-wrapper h2 {
  margin-bottom: 10px;
}
.ad-wrapper.left-sided,
.ad-wrapper.right-sided {
  position: fixed;
  width: auto;
  top: 50px;
}
.ad-wrapper.left-sided.left-sided,
.ad-wrapper.right-sided.left-sided {
  left: 20px;
}
.ad-wrapper.left-sided.right-sided,
.ad-wrapper.right-sided.right-sided {
  right: 20px;
}
.ad-wrapper.left-sided .ad-placeholder,
.ad-wrapper.right-sided .ad-placeholder {
  width: 200px;
}
.ad-wrapper.left-sided .ad-placeholder.adp-relaxed,
.ad-wrapper.right-sided .ad-placeholder.adp-relaxed {
  padding: 0px;
}
.ad-wrapper.left-sided .ad-placeholder.adp-relaxed .adp-img-wrapper,
.ad-wrapper.right-sided .ad-placeholder.adp-relaxed .adp-img-wrapper {
  width: 100%;
}
.ad-wrapper.left-sided .ad-placeholder.adp-relaxed .adp-content-wrapper,
.ad-wrapper.right-sided .ad-placeholder.adp-relaxed .adp-content-wrapper {
  position: absolute;
  z-index: 1;
  width: 80%;
  max-height: max-content;
  top: 40px;
  left: 0;
  right: 0;
}
.ad-wrapper .adsbygoogle,
.ad-wrapper amp-ad {
  background-color: #f0f0f0;
}
.ad-wrapper.taboola .ad-placeholder {
  background-color: #ddddff;
}
.ad-wrapper.taboola .ad-placeholder.adp-relaxed .adp-content-wrapper {
  background-color: #ddddff;
  border-color: #bbbbff;
}
.ez-sidebar-wall {
  z-index: 2;
}
@media (max-width: 1680px) {
  .ad-wrapper.left-sided,
  .ad-wrapper.right-sided {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .ad-wrapper.left-sided .ad-placeholder,
  .ad-wrapper.right-sided .ad-placeholder {
    max-width: 200px;
  }
  .ad-wrapper.left-sided .ad-placeholder.adp-relaxed,
  .ad-wrapper.right-sided .ad-placeholder.adp-relaxed {
    padding: 10px;
  }
  .ad-wrapper.left-sided .ad-placeholder.adp-relaxed .adp-content-wrapper,
  .ad-wrapper.right-sided .ad-placeholder.adp-relaxed .adp-content-wrapper {
    position: absolute;
    z-index: 1;
    width: 80%;
    max-height: max-content;
    top: 40px;
    left: 0;
    right: 0;
  }
}
@media (max-width: 400px) {
  .ad-wrapper .ads-custom,
  .ad-wrapper .ad-placeholder.adp-auto,
  .ad-wrapper.ezoic-custom {
    min-width: 250px;
    max-width: min(100%, 400px);
    width: 100%;
    height: 100%;
    min-height: 90vw;
    max-height: 90vw;
  }
  .ad-wrapper .ad-placeholder.adp-relaxed .adp-content-wrapper {
    max-height: 100px;
    padding: 5px;
  }
  .ad-wrapper .ad-placeholder.adp-relaxed .adp-content-wrapper h2 {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .ad-wrapper .ad-placeholder.adp-relaxed .adp-content-wrapper p {
    margin: 5px auto;
    font-size: 14px;
    line-height: 18px;
  }
}
.btn {
  background-color: #f45145;
  border: 2px solid #f45145;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
}
.btn.btn-action,
.btn a.btn.btn-action {
  transition: all .3s;
  background-color: white;
  color: #f45145;
  box-shadow: 1px 1px 8px #bbb;
}
.btn.btn-action:hover,
.btn a.btn.btn-action:hover {
  background-color: white;
  box-shadow: 2px 2px 20px #aaa;
}
#comments {
  margin-bottom: 65px;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}
.comment-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.4;
  animation: toast-slide-in 0.4s ease-out;
}
.comment-toast .comment-toast-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.comment-toast .comment-toast-text {
  flex: 1;
}
.comment-toast .comment-toast-close {
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  opacity: 0.7;
  flex-shrink: 0;
}
.comment-toast .comment-toast-close:hover {
  opacity: 1;
}
.comment-toast.comment-toast-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.comment-toast.comment-toast-error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}
@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.comments #more-comments {
  display: none;
}
.comments #more-comments.show {
  display: block;
}
.comments .comment-anchor {
  visibility: hidden;
  position: relative;
  top: -100px;
}
.comments h3 {
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
}
.comments .new-comment-create {
  border-radius: 10px;
  background: #242d36;
  color: white;
  padding: 10px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  display: block;
  width: 300px;
  margin: 0px auto 20px auto;
  text-align: center;
}
.comments .show-all-comments-btn {
  border-radius: 10px;
  background: #242d36;
  color: white;
  padding: 10px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  display: block;
  width: 300px;
  margin: 0px auto 20px auto;
  text-align: center;
}
.comments .new-comment-reply {
  cursor: pointer;
  text-align: right;
  margin-top: 5px;
  margin-bottom: 30px;
}
.comments .new-comment-inputs {
  margin-top: 10px;
  margin-bottom: 40px;
  padding: 0 10px;
}
.comments .new-comment-inputs.show-new-comment {
  display: block;
}
.comments .new-comment-inputs .new-comment-fields {
  display: flex;
  flex-direction: row;
}
.comments .new-comment-inputs .new-comment-fields .new-comment-main {
  width: 50%;
}
.comments .new-comment-inputs .new-comment-fields .new-comment-main .new-comment-content {
  resize: none;
  width: 85%;
  height: 88px;
  border: 2px solid #f45145;
  border-radius: 10px;
  padding: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}
.comments .new-comment-inputs .new-comment-fields .new-comment-extra {
  width: 50%;
}
.comments .new-comment-inputs .new-comment-fields .new-comment-extra input {
  border: 2px solid #f45145;
  font-size: 16px;
  width: 85%;
  max-width: 500px;
  height: 16px;
  border-radius: 10px;
  padding: 5px;
  margin: 2px auto;
}
.comments .new-comment-inputs .new-comment-publish {
  margin-top: 10px;
}
.comments .new-comment-inputs .new-comment-publish .new-comment-submit {
  border-radius: 10px;
  background: #f45145;
  color: white;
  display: block;
  padding: 10px 20px;
  border: 0;
  cursor: pointer;
  margin: auto;
  font-size: 16px;
}
.comments .comment {
  margin: 5px auto 25px 0;
}
.comments .comment .inner-comment-container {
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 5px;
  max-width: 85%;
}
.comments .comment .inner-comment-container .inner-comment {
  border-radius: 10px;
  padding: 10px;
}
.comments .comment .inner-comment-container .inner-comment .comment-header {
  border-bottom: 1px solid #f45145;
  margin-bottom: 10px;
}
.comments .comment .inner-comment-container .inner-comment .comment-header .comment-author {
  font-weight: bold;
  padding-right: 10px;
  display: inline-block;
}
.comments .comment.is-reply {
  margin: 5px 0 20px auto;
}
.comments .comment.is-reply .inner-comment-container {
  margin-left: 10%;
  margin-right: 5px;
}
.comments .comment.is-reply .inner-comment-container .inner-comment {
  background: #f0f0f0;
}
.comments .comment .inner-comment-container.redactor .inner-comment {
  color: white;
  background: #f45145;
}
.comments .comment .inner-comment-container.redactor .inner-comment .comment-header {
  border-color: white;
}
form.contact-me-form {
  max-width: 100%;
  margin: auto;
  display: block;
}
form.contact-me-form div.contact-me-fields {
  display: flex;
  flex-direction: column;
}
form.contact-me-form div.contact-me-fields label {
  font-weight: bold;
  color: #f45145;
}
form.contact-me-form div.contact-me-fields input,
form.contact-me-form div.contact-me-fields textarea {
  border: 2px solid transparent;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  background-color: #f8f8f8;
  width: 100%;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 18px;
  padding: 4px 8px;
}
form.contact-me-form div.contact-me-fields input:hover,
form.contact-me-form div.contact-me-fields textarea:hover {
  border: 2px solid #676c78;
}
form.contact-me-form div.contact-me-fields input:active,
form.contact-me-form div.contact-me-fields textarea:active {
  border: 2px solid #f45145;
}
form.contact-me-form div.contact-me-fields input {
  height: 32px;
}
form.contact-me-form div.contact-me-fields textarea {
  height: 80px;
}
form.contact-me-form div.contact-me-publish {
  margin-top: 32px;
}
footer {
  position: relative;
  z-index: 1;
  min-height: 300px;
  background-color: #242d36;
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}
footer .footer-content {
  margin: auto;
  max-width: min(100%, 1200px);
  padding: 20px;
  display: flex;
}
footer .footer-content > div {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  padding: 0 20px;
}
footer .footer-content > div h3 {
  color: white;
  border-bottom: 2px solid white;
  margin-bottom: 10px;
}
footer .footer-content > div span {
  display: block;
  padding: 5px;
}
footer .footer-content > div span a {
  text-transform: capitalize;
  text-decoration: none;
  color: white;
  border-bottom: 2px solid transparent;
}
footer .footer-content > div span a:hover {
  border-bottom: 2px solid white;
}
form.base {
  display: flex;
  flex-direction: row;
  align-items: center;
}
form.base label {
  padding-right: 8px;
}
form.base input:not([type="submit"]),
form.base textarea {
  border: 2px solid transparent;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  background-color: #f8f8f8;
  width: 100%;
  font-size: 16px;
  line-height: 18px;
  padding: 4px 8px;
}
form.base input:not([type="submit"]):hover,
form.base textarea:hover {
  border: 2px solid #676c78;
}
form.base input:not([type="submit"]):active,
form.base textarea:active {
  border: 2px solid #f45145;
}
form.base input:not([type="submit"]) {
  height: 32px;
}
form.base input.btn {
  padding: 3px 12px;
  font-size: 16px;
}
form.base textarea {
  height: 80px;
}
form.base.search input:not([type="submit"]) {
  width: 15vw;
  min-width: 200px;
}
form.base.search .btn {
  font-weight: normal;
}
.search-wrapper {
  display: flex;
  justify-content: center;
}
header {
  position: relative;
  height: 50px;
}
header .nav-background {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: #242d36;
  width: 100vw;
  height: 60px;
  opacity: 0.85;
}
header .nav-wrapper {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  display: flex;
  justify-content: center;
}
header .nav-wrapper nav {
  position: relative;
  width: 100vw;
  max-width: min(100%, 1200px);
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
}
header .nav-wrapper nav a,
header .nav-wrapper nav span,
header .nav-wrapper nav form {
  margin-right: 20px;
  font-size: 18px;
}
header .nav-wrapper nav a,
header .nav-wrapper nav form {
  text-decoration: none;
  color: white;
  text-transform: capitalize;
}
header .nav-wrapper nav .btn.search-menu {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 20px;
  padding: 8px;
  border: 2px solid white;
  text-align: center;
  margin-right: 0px;
  display: none;
}
header .nav-wrapper nav form .search-inner-controls {
  display: none;
}
header .nav-wrapper nav a.shop-link {
  background: #f1ab13;
  padding: 5px 20px;
  font-variant: small-caps;
  font-weight: bold;
  margin-right: 10px;
  margin-left: 20px;
  border: 1px solid transparent;
}
header .nav-wrapper nav a.shop-link:hover {
  transition: all .3s;
  border: 1px solid #f23628;
  background: orange;
  border-radius: 10px;
}
header .nav-wrapper nav a.support-link {
  position: relative;
  background: #f1ab13;
  padding: 5px 16px;
  font-variant: small-caps;
  font-weight: bold;
  margin-right: 0px;
  margin-left: 10px;
  border: 1px solid #f1ab13;
  border-radius: 40px 40px 40px 40px;
}
header .nav-wrapper nav a.support-link svg {
  position: absolute;
  left: 2.5px;
  bottom: 0px;
}
header .nav-wrapper nav > a:first-child {
  font-weight: bold;
  font-size: 24px;
}
header .nav-wrapper nav > a:first-child:hover {
  position: relative;
  top: 1px;
  border-bottom: 2px solid white;
}
.page-view {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  max-width: min(100%, 1200px);
  margin: auto;
}
.page-view .page {
  position: relative;
  min-height: 300px;
  margin: 20px auto 60px auto;
  padding: 20px;
  background-color: white;
  border-bottom: 8px solid #f45145;
  box-shadow: 0px 0px 5px #e0e0e0;
}
.page-view .page h1 {
  color: #f45145;
  text-align: center;
  font-size: 32px;
  line-height: 36px;
  margin: 10px auto 20px auto;
}
.page-view .comments {
  margin: 20px auto;
}
.post {
  border-bottom: 8px solid #f45145;
  margin: 10px auto;
  background: white;
  position: relative;
  z-index: 1;
}
.post h1.post-title {
  text-align: center;
  color: #242d36;
  border-top: 8px solid #f45145;
  padding: 20px 0;
  margin-top: 0;
  display: block;
}
.post h2 {
  transition: opacity .3s;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: white;
  background-color: #242d36;
  margin: 0;
  padding: 5px;
  text-align: center;
}
.post .content h2 {
  transition: opacity .3s;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #f45145;
  background-color: transparent;
  margin: 40px 0 20px 0;
  padding: 5px 40px 5px 0;
  text-align: left;
  border-bottom: 4px solid #f45145;
  display: inline-block;
}
.post .content h5 {
  color: #f45145;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  margin: 20px 0 10px 0;
}
.post .featured-image-wrapper {
  position: relative;
}
.post .featured-image-wrapper img.featured {
  transition: transform .3s;
  width: 100%;
  min-height: 400px;
  max-height: 400px;
}
.post .featured-image-wrapper h2 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
}
.post .featured-image-wrapper:hover img.featured {
  transform: scale(1.1);
}
.post .featured-image-wrapper:hover h2 {
  opacity: .25;
}
.post .thumbs {
  min-heigh: 200px;
  content-visibility: auto;
  contain-intrinsic-size: auto 200px;
}
.post .post-content {
  padding: 0px 20px 80px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
.post .post-content .meta {
  position: relative;
  text-align: left;
  margin: 10px auto;
  color: #242d36;
}
.post .post-content .meta .more-info {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
  color: white;
  background: #f45145;
  border-radius: 20px;
  border: 1px solid #f45145;
  padding: 2px 10px;
  cursor: pointer;
}
.post .post-content .meta .published-date {
  color: #676c78;
  margin-bottom: 5px;
  font-size: 18px;
}
.post .post-content .meta .published-date time {
  font-weight: bold;
}
.post .post-content .meta .categories {
  font-size: 14px;
  margin-bottom: 2px;
}
.post .post-content .meta .categories a {
  color: #f45145;
  display: inline-block;
  margin-right: 5px;
  text-decoration: underline;
}
.post .post-content .meta .categories a:last-child {
  margin-right: 0;
}
.post .post-content .meta .categories a:hover {
  color: #f23628;
}
.post p {
  font-size: 18px;
  line-height: 24px;
}
.post p.excerpt {
  margin: 20pt auto;
}
.post .tags {
  margin-top: 7px;
}
.post .tags a {
  transition: color .3s;
  font-size: 14px;
  display: inline-block;
  color: white;
  background-color: #f45145;
  border: 1px solid #f45145;
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 10px;
  margin-bottom: 2px;
}
.post .tags a:last-child {
  margin-right: 0;
}
.post .tags a:hover {
  color: #f45145;
  background-color: white;
  text-decoration: none;
}
.post .post-footer {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.post .post-footer .sharing img {
  width: 48px;
  height: 48px;
  margin-right: 16px;
  cursor: pointer;
  transition: transform .3s;
}
.post .post-footer .sharing img:hover {
  transform: translate(0px, -6px);
}
.post .post-footer .read-more {
  text-align: left;
  z-index: 1;
  font-weight: bold;
  text-transform: uppercase;
  transition: transform .3s;
  font-size: 18px;
  line-height: 26px;
}
.post .post-footer .read-more > a {
  color: black;
}
.post .post-footer .read-more > a:hover {
  color: #f45145;
}
.single {
  margin-top: 10px;
}
.single > .posts > .post {
  max-width: min(100%, 1200px);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 10px #e0e0e0;
  min-height: 600px;
}
.single > .posts > .post .featured-image-wrapper {
  position: relative;
}
.single > .posts > .post .featured-image-wrapper img,
.single > .posts > .post .featured-image-wrapper img.featured {
  min-height: 600px;
  max-height: 600px;
  object-fit: cover;
  transition: none;
  display: block;
}
.single > .posts > .post .featured-image-wrapper h2 {
  position: relative;
  padding: 20px 5px;
}
.single > .posts > .post .featured-image-wrapper:hover img.featured {
  transform: none;
}
.single > .posts > .post .featured-image-wrapper:hover h2 {
  opacity: 1;
}
.single > .posts > .post h2 {
  font-size: 24px;
}
.single > .posts > .post .post-content .content,
.single > .posts > .post .post-content .content p {
  font-size: 20px;
  line-height: 28px;
}
.single > .posts > .post .post-content .content img {
  width: 100%;
  max-width: min(100%, 1200px);
  max-height: 80vh;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}
.single > .posts > .post .post-content .content h2 {
  margin-top: 20px;
}
.single > .posts > .post .post-content .content h3,
.single > .posts > .post .post-content .content h4 {
  margin-top: 40px;
  padding: 5px;
  color: white;
  background-color: #f45145;
  font-variant: small-caps;
  box-shadow: 5px 15px 0px -5px #e0e0e0;
}
.single > .posts > .post .post-content .content h3:has(a.shopify),
.single > .posts > .post .post-content .content h4:has(a.shopify) {
  margin: 0;
  padding: 0;
  box-shadow: none;
  background-color: white;
}
.single > .posts > .post .post-content .content a {
  text-decoration: underline;
}
.single > .posts > .post .post-content .content a.pin-btn {
  text-decoration: none;
}
.single > .posts > .post .post-content .content a.pin-btn img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-width: none;
  max-height: none;
  object-fit: initial;
  display: inline;
  border-radius: 50%;
  opacity: 0.75;
}
.single > .posts > .post .post-content .content a.pin-btn:hover img {
  opacity: 1;
}
.single > .posts > .post .post-content .content video {
  max-height: 80vh;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  display: block;
  margin: auto;
}
.single > .posts > .post .post-content .content a.shopify {
  text-decoration: none;
  display: inline-block;
  width: 24%;
  max-height: 200px;
  margin-right: 1%;
  padding-bottom: 10px;
  border-bottom: 6px solid transparent;
}
.single > .posts > .post .post-content .content a.shopify:hover {
  border-bottom: 6px solid #f45145;
  box-shadow: 5px 15px 0px -5px #e0e0e0;
}
.single > .posts > .post .post-content .content a.shopify img {
  transition: transform .3s;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: contain;
}
.single > .posts > .post .post-content .content a.shopify img:hover {
  transform: scale(1.1);
}
/* Article excerpt / chapô */
.post-excerpt {
  max-width: min(100%, 1200px);
  margin: 15px 20px 20px 20px;
  padding: 16px 20px;
  background-color: #f8f8f8;
  border-left: 3px solid #f45145;
  font-size: 17px;
  line-height: 26px;
  color: #676c78;
  font-style: italic;
}
.post-excerpt p {
  margin: 0;
}
/* Author bio card */
.author-box {
  max-width: min(100%, 1200px);
  margin: 40px auto;
  background-color: #fff;
  border-left: 4px solid #f45145;
  box-shadow: 0px 0px 10px #e0e0e0;
}
.author-box .author-box-inner {
  padding: 30px 35px;
}
.author-box .author-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-variant: small-caps;
  letter-spacing: 1px;
  color: #676c78;
  margin: 0 0 4px 0;
}
.author-box .author-name {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #242d36;
  margin: 0 0 12px 0;
}
.author-box .author-bio {
  font-size: 16px;
  line-height: 24px;
  color: #676c78;
  margin: 0;
}
.single > .posts > .post.page,
.lp > .posts.page {
  min-height: auto;
}
.single > .posts > .post h1.page-title,
.lp > .posts h1.page-title,
.single > .posts > .post h2.page-title,
.lp > .posts h2.page-title {
  font-size: 24px;
  margin: 20px auto 40px auto;
  padding: 10px 5px;
  color: white;
  background-color: #f45145;
  font-variant: small-caps;
  box-shadow: 5px 15px 0px -5px #e0e0e0;
}
.simple-static-page-layout {
  max-width: min(100%, 1200px);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 10px #e0e0e0;
  min-height: 600px;
  padding: 0px 20px 80px 20px;
  margin-bottom: 20px;
}
.cta-block {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
@media (max-width: 1200px) {
  .recent-posts,
  .inline-posts {
    flex-direction: column;
  }
  .recent-posts .post,
  .inline-posts .post {
    flex-basis: 100%;
    width: 900px;
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }
  .recent-posts .post:first-child,
  .inline-posts .post:first-child {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }
  .recent-posts .post:last-child,
  .inline-posts .post:last-child {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }
  .posts .popular-wrapper .popular-posts .popular-post {
    width: min(350px, 80vw);
    height: 370px;
  }
  .posts .popular-wrapper .popular-posts .popular-post img {
    height: 300px;
  }
  footer .footer-content {
    flex-direction: column;
  }
  footer .footer-content > div {
    padding: 0 5px 20px 5px;
  }
}
@media (max-width: 900px) {
  .error-404 h1,
  .error-502 h1 {
    font-size: 72px;
  }
  .error-404 h2,
  .error-502 h2 {
    font-size: 32px;
  }
  p.error-page-hint {
    font-size: 18px;
  }
  .banner {
    min-height: 150px;
    margin: 30px auto 30px auto;
    padding: 30px 0;
  }
  .recent-posts .post,
  .inline-posts .post {
    flex-basis: 100%;
    max-width: 80vw;
  }
  .single > .posts .post .featured-image-wrapper,
  .posts .post .featured-image-wrapper,
  .posts .latest-post .post .featured-image-wrapper,
  .single > .posts > .post .featured-image-wrapper,
  .posts > .post .featured-image-wrapper,
  .posts .latest-post > .post .featured-image-wrapper {
    height: 400px;
  }
  .single > .posts .post .featured-image-wrapper a img,
  .posts .post .featured-image-wrapper a img,
  .posts .latest-post .post .featured-image-wrapper a img,
  .single > .posts > .post .featured-image-wrapper a img,
  .posts > .post .featured-image-wrapper a img,
  .posts .latest-post > .post .featured-image-wrapper a img,
  .single > .posts .post .featured-image-wrapper a img.featured,
  .posts .post .featured-image-wrapper a img.featured,
  .posts .latest-post .post .featured-image-wrapper a img.featured,
  .single > .posts > .post .featured-image-wrapper a img.featured,
  .posts > .post .featured-image-wrapper a img.featured,
  .posts .latest-post > .post .featured-image-wrapper a img.featured {
    min-height: 400px;
    max-height: 400px;
  }
  .single > .posts .post h2,
  .posts .post h2,
  .posts .latest-post .post h2,
  .single > .posts > .post h2,
  .posts > .post h2,
  .posts .latest-post > .post h2 {
    font-size: 18px;
  }
  .single > .posts .post .thumbs,
  .posts .post .thumbs,
  .posts .latest-post .post .thumbs,
  .single > .posts > .post .thumbs,
  .posts > .post .thumbs,
  .posts .latest-post > .post .thumbs {
    margin: 10px auto;
    height: 300px;
  }
  .single > .posts .post .thumbs a,
  .posts .post .thumbs a,
  .posts .latest-post .post .thumbs a,
  .single > .posts > .post .thumbs a,
  .posts > .post .thumbs a,
  .posts .latest-post > .post .thumbs a {
    width: 49%;
    height: 300px;
  }
  .single > .posts .post .thumbs a img,
  .posts .post .thumbs a img,
  .posts .latest-post .post .thumbs a img,
  .single > .posts > .post .thumbs a img,
  .posts > .post .thumbs a img,
  .posts .latest-post > .post .thumbs a img {
    height: 300px;
  }
  .single > .posts .post .thumbs a:nth-of-type(n+3),
  .posts .post .thumbs a:nth-of-type(n+3),
  .posts .latest-post .post .thumbs a:nth-of-type(n+3),
  .single > .posts > .post .thumbs a:nth-of-type(n+3),
  .posts > .post .thumbs a:nth-of-type(n+3),
  .posts .latest-post > .post .thumbs a:nth-of-type(n+3) {
    display: none;
  }
  .single > .posts .post .post-content,
  .posts .post .post-content,
  .posts .latest-post .post .post-content,
  .single > .posts > .post .post-content,
  .posts > .post .post-content,
  .posts .latest-post > .post .post-content {
    padding-bottom: 80px;
  }
  .posts .popular-wrapper .popular-posts .popular-post {
    width: min(250px, 80vw);
    height: 270px;
  }
  .posts .popular-wrapper .popular-posts .popular-post img {
    height: 200px;
  }
  .pagination-wrapper .pagination a.page-counter {
    display: none;
  }
  .pagination-wrapper .pagination a.page-counter.page-current {
    display: flex;
  }
  .inner-content h3 {
    margin: 0;
  }
  .inner-content .comments h3 {
    margin-bottom: 20px;
  }
  .social-networks > div,
  .social-networks > a {
    height: 100px;
    width: 100px;
    padding: 20px;
  }
  .social-networks > div > .social-data h3,
  .social-networks > a > .social-data h3 {
    font-size: 20px;
  }
  .author-box {
    margin: 30px 20px;
  }
}
@media (max-width: 600px) {
  header .nav-wrapper nav {
    position: relative;
    justify-content: flex-end;
  }
  header .nav-wrapper nav a,
  header .nav-wrapper nav span,
  header .nav-wrapper nav form {
    margin-right: 0px;
  }
  header .nav-wrapper nav > a:first-child {
    font-size: 22px;
    position: absolute;
    left: 8px;
    top: 18px;
    z-index: 1;
  }
  header .nav-wrapper nav > a:first-child:hover {
    position: absolute;
    top: 18px;
  }
  header .nav-wrapper nav span a.support-link,
  header .nav-wrapper nav span a.shop-link {
    margin-right: 0;
  }
  header .nav-wrapper nav span a.support-link {
    margin-left: 20px;
  }
  header .nav-wrapper nav span a.shop-link {
    margin-left: 10px;
  }
  header .nav-wrapper nav .btn.search-menu {
    display: inline;
  }
  header .nav-wrapper nav form.base.search {
    display: none;
    position: fixed;
    z-index: 2;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #242d36;
  }
  header .nav-wrapper nav form.base.search.show {
    display: flex;
  }
  header .nav-wrapper nav form.base.search .search-inner-controls {
    display: flex;
    align-self: flex-start;
    width: 90vw;
    margin: 5vw 0 5vw 5vw;
  }
  header .nav-wrapper nav form.base.search .search-inner-controls a {
    border: 0 !important;
    flex: 1;
  }
  header .nav-wrapper nav form.base.search .search-inner-controls .close-search {
    text-align: right;
    font-size: 20px;
    font-weight: bold;
  }
  header .nav-wrapper nav form.base.search input {
    width: 90vw;
    margin: 50px auto;
    height: 48px;
  }
  header .nav-wrapper nav form.base.search input[type="submit"] {
    width: 50vw;
    margin: 25px 5vw 0 5vw;
    align-self: flex-end;
  }
  .banner {
    min-height: 100px;
    margin: 20px auto 20px auto;
    padding: 20px 0;
  }
  .ad-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .recent-posts .post,
  .inline-posts .post {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
  .simple-static-page-layout {
    padding: 0px 10px 40px 10px;
  }
  .page-view .page {
    padding: 10px;
  }
  .posts .recent-posts .post .post-content {
    padding: 0px 5px 40px 5px;
  }
  .inline-posts .inline-post h3 {
    margin: 0;
  }
  .inline-posts .post {
    margin-bottom: 40px;
  }
  .single > .posts .post:last-child,
  .posts .post:last-child,
  .posts .latest-post .post:last-child,
  .single > .posts > .post:last-child,
  .posts > .post:last-child,
  .posts .latest-post > .post:last-child {
    margin-bottom: 40px;
  }
  .single > .posts .post .featured-image-wrapper a img,
  .posts .post .featured-image-wrapper a img,
  .posts .latest-post .post .featured-image-wrapper a img,
  .single > .posts > .post .featured-image-wrapper a img,
  .posts > .post .featured-image-wrapper a img,
  .posts .latest-post > .post .featured-image-wrapper a img,
  .single > .posts .post .featured-image-wrapper a img.featured,
  .posts .post .featured-image-wrapper a img.featured,
  .posts .latest-post .post .featured-image-wrapper a img.featured,
  .single > .posts > .post .featured-image-wrapper a img.featured,
  .posts > .post .featured-image-wrapper a img.featured,
  .posts .latest-post > .post .featured-image-wrapper a img.featured {
    object-position: center 100%;
  }
  .single > .posts .post .featured-image-wrapper h2,
  .posts .post .featured-image-wrapper h2,
  .posts .latest-post .post .featured-image-wrapper h2,
  .single > .posts > .post .featured-image-wrapper h2,
  .posts > .post .featured-image-wrapper h2,
  .posts .latest-post > .post .featured-image-wrapper h2 {
    font-size: 18px;
  }
  .single > .posts .post .thumbs,
  .posts .post .thumbs,
  .posts .latest-post .post .thumbs,
  .single > .posts > .post .thumbs,
  .posts > .post .thumbs,
  .posts .latest-post > .post .thumbs {
    margin: 2px auto;
    height: 200px;
  }
  .single > .posts .post .thumbs a,
  .posts .post .thumbs a,
  .posts .latest-post .post .thumbs a,
  .single > .posts > .post .thumbs a,
  .posts > .post .thumbs a,
  .posts .latest-post > .post .thumbs a {
    width: 50%;
    height: 200px;
  }
  .single > .posts .post .thumbs a img,
  .posts .post .thumbs a img,
  .posts .latest-post .post .thumbs a img,
  .single > .posts > .post .thumbs a img,
  .posts > .post .thumbs a img,
  .posts .latest-post > .post .thumbs a img {
    height: 200px;
  }
  .single > .posts .post .post-content,
  .posts .post .post-content,
  .posts .latest-post .post .post-content,
  .single > .posts > .post .post-content,
  .posts > .post .post-content,
  .posts .latest-post > .post .post-content {
    padding: 0px 5px 60px 5px;
  }
  .single > .posts .post .post-content .content a.shopify,
  .posts .post .post-content .content a.shopify,
  .posts .latest-post .post .post-content .content a.shopify,
  .single > .posts > .post .post-content .content a.shopify,
  .posts > .post .post-content .content a.shopify,
  .posts .latest-post > .post .post-content .content a.shopify {
    width: 48%;
    margin-bottom: 10px;
  }
  .single > .posts .post .post-footer .sharing a img,
  .posts .post .post-footer .sharing a img,
  .posts .latest-post .post .post-footer .sharing a img,
  .single > .posts > .post .post-footer .sharing a img,
  .posts > .post .post-footer .sharing a img,
  .posts .latest-post > .post .post-footer .sharing a img {
    width: 38px;
    height: 38px;
    margin-right: 8px;
  }
  .single > .posts .post .post-footer .read-more,
  .posts .post .post-footer .read-more,
  .posts .latest-post .post .post-footer .read-more,
  .single > .posts > .post .post-footer .read-more,
  .posts > .post .post-footer .read-more,
  .posts .latest-post > .post .post-footer .read-more {
    font-size: 16px;
    line-height: 22px;
  }
  .social-networks > div,
  .social-networks > a {
    height: 50px;
  }
  .social-networks > div > .social-data h3,
  .social-networks > a > .social-data h3 {
    font-size: 16px;
  }
  .author-box {
    margin: 20px 10px;
  }
  .author-box .author-box-inner {
    padding: 20px;
  }
  .author-box .author-name {
    font-size: 18px;
  }
  .author-box .author-bio {
    font-size: 15px;
    line-height: 22px;
  }
  .post-excerpt {
    margin: 15px 10px 15px 10px;
    padding: 12px 15px;
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 400px) {
  .error-404 h1,
  .error-502 h1 {
    font-size: 64px;
  }
  .error-404 h2,
  .error-502 h2 {
    font-size: 24px;
  }
  p.error-page-hint {
    font-size: 18px;
  }
  .inline-posts {
    min-height: 250px;
  }
  .inline-posts .post {
    min-height: 250px;
  }
  .inline-posts .post .featured-image-wrapper {
    height: 250px;
  }
  .inline-posts .post .featured-image-wrapper a img,
  .inline-posts .post .featured-image-wrapper a img.featured {
    min-height: 250px;
    max-height: 250px;
    object-position: center 100%;
  }
  .inline-posts .post:last-child {
    margin-bottom: 20px;
  }
  .single > .posts .post .post-content .meta {
    min-height: 20px;
  }
  .single > .posts .post .featured-image-wrapper,
  .posts .post .featured-image-wrapper,
  .posts .latest-post .post .featured-image-wrapper,
  .single > .posts > .post .featured-image-wrapper,
  .posts > .post .featured-image-wrapper,
  .posts .latest-post > .post .featured-image-wrapper {
    height: 250px;
  }
  .single > .posts .post .featured-image-wrapper a img,
  .posts .post .featured-image-wrapper a img,
  .posts .latest-post .post .featured-image-wrapper a img,
  .single > .posts > .post .featured-image-wrapper a img,
  .posts > .post .featured-image-wrapper a img,
  .posts .latest-post > .post .featured-image-wrapper a img,
  .single > .posts .post .featured-image-wrapper a img.featured,
  .posts .post .featured-image-wrapper a img.featured,
  .posts .latest-post .post .featured-image-wrapper a img.featured,
  .single > .posts > .post .featured-image-wrapper a img.featured,
  .posts > .post .featured-image-wrapper a img.featured,
  .posts .latest-post > .post .featured-image-wrapper a img.featured {
    min-height: 250px;
    max-height: 250px;
    object-position: center 100%;
  }
  .single > .posts .post .thumbs,
  .posts .post .thumbs,
  .posts .latest-post .post .thumbs,
  .single > .posts > .post .thumbs,
  .posts > .post .thumbs,
  .posts .latest-post > .post .thumbs {
    height: 150px;
  }
  .single > .posts .post .thumbs a,
  .posts .post .thumbs a,
  .posts .latest-post .post .thumbs a,
  .single > .posts > .post .thumbs a,
  .posts > .post .thumbs a,
  .posts .latest-post > .post .thumbs a {
    height: 150px;
  }
  .single > .posts .post .thumbs a img,
  .posts .post .thumbs a img,
  .posts .latest-post .post .thumbs a img,
  .single > .posts > .post .thumbs a img,
  .posts > .post .thumbs a img,
  .posts .latest-post > .post .thumbs a img {
    height: 150px;
  }
  .single > .posts .post .post-content,
  .posts .post .post-content,
  .posts .latest-post .post .post-content,
  .single > .posts > .post .post-content,
  .posts > .post .post-content,
  .posts .latest-post > .post .post-content {
    padding: 0px 5px 40px 5px;
  }
  .single > .posts .post .post-content .meta .more-info,
  .posts .post .post-content .meta .more-info,
  .posts .latest-post .post .post-content .meta .more-info,
  .single > .posts > .post .post-content .meta .more-info,
  .posts > .post .post-content .meta .more-info,
  .posts .latest-post > .post .post-content .meta .more-info {
    position: absolute;
    top: -4px;
    display: inline-block;
    text-align: right;
  }
  .single > .posts .post .post-content .meta .published-date,
  .posts .post .post-content .meta .published-date,
  .posts .latest-post .post .post-content .meta .published-date,
  .single > .posts > .post .post-content .meta .published-date,
  .posts > .post .post-content .meta .published-date,
  .posts .latest-post > .post .post-content .meta .published-date {
    font-size: 16px;
  }
  .single > .posts .post .post-content .content p,
  .posts .post .post-content .content p,
  .posts .latest-post .post .post-content .content p,
  .single > .posts > .post .post-content .content p,
  .posts > .post .post-content .content p,
  .posts .latest-post > .post .post-content .content p {
    font-size: 18px;
    line-height: 24px;
  }
  .single > .posts .post .post-content .content a.shopify,
  .posts .post .post-content .content a.shopify,
  .posts .latest-post .post .post-content .content a.shopify,
  .single > .posts > .post .post-content .content a.shopify,
  .posts > .post .post-content .content a.shopify,
  .posts .latest-post > .post .post-content .content a.shopify {
    height: 200px;
    width: 49%;
  }
  .single > .posts .post p,
  .posts .post p,
  .posts .latest-post .post p,
  .single > .posts > .post p,
  .posts > .post p,
  .posts .latest-post > .post p {
    font-size: 18px;
    line-height: 24px;
  }
  .single > .posts .post .post-footer .sharing a img,
  .posts .post .post-footer .sharing a img,
  .posts .latest-post .post .post-footer .sharing a img,
  .single > .posts > .post .post-footer .sharing a img,
  .posts > .post .post-footer .sharing a img,
  .posts .latest-post > .post .post-footer .sharing a img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
  .single > .posts .post .post-footer .read-more,
  .posts .post .post-footer .read-more,
  .posts .latest-post .post .post-footer .read-more,
  .single > .posts > .post .post-footer .read-more,
  .posts > .post .post-footer .read-more,
  .posts .latest-post > .post .post-footer .read-more {
    font-size: 14px;
    line-height: 20px;
  }
  .banner {
    margin: 20px auto 0px auto;
    padding: 5px;
  }
  .popular-wrapper h2 {
    margin-bottom: 10px;
  }
  .popular-wrapper .popular-posts .popular-post {
    width: min(200px, 80vw);
    height: auto;
  }
  .popular-wrapper .popular-posts .popular-post img {
    height: 150px;
  }
  .simple-static-page-layout {
    padding: 0px 5px 20px 5px;
    min-height: auto;
  }
  .page-view .page {
    padding: 5px;
    margin: 10px auto 30px auto;
  }
  .social-footer h2,
  .pagination-wrapper h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .pagination-wrapper .pagination {
    margin: 20px;
    height: auto;
  }
  .pagination-wrapper .pagination a.page-counter,
  .pagination-wrapper .pagination a.page-counter.page-current {
    display: none;
  }
}

