/* 
    Note 1: Those classes probably will be decoupled in differente files
    Note 2: Looking for a way to minify the CSS files
*/

/* Begin Global Style */

:root {
  /* Main Colors */
  --purple: #725bc2;
  --primary-pure: #582db4;
  --highlight-light: #fff5fb;
  --highlight-medium: #f86dc0;
  --highlight-pure: #f43eab;
  --white: #ffffff;
  --high-light: #f7f7f8;
  --high-medium: #ececee;
  --high-dark: #e1e1e5;
  --low-light: #bdbcc2;
  --low-pure: #141316;
  --low-dark: #56545e;
  --low-medium: #898792;

  /* Other colors */
  --dark-gray: #a5a5a5;
  --dark: #333333;
  --videos-section: rgba(20, 19, 22, 0.9);
  --overlay-background: rgba(20, 19, 22, 0.7);

  /* Border */
  --border-default: 4px;
}

body {
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  background: var(--primary-beige) !important;
}

table,
input,
button {
  font-family: "Inter", sans-serif !important;
  font-weight: var(--font-weight-medium) !important;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif !important;
}

::-moz-selection {
  background: var(--purple) !important;
  color: #fff;
}

::selection {
  background: var(--purple) !important;
  color: #fff;
}

.style-svg,
.style-svg:hover {
  transition: ease-in 0.3s;
}

.bg-high-light {
  background-color: var(--high-light);
}

.bg-low-pure {
  background-color: var(--low-pure);
}

.bg-primary-pure {
  background-color: var(--primary-pure);
}

/* End Global Style */

/* Begin Button */
.button {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 48px;
  background-color: var(--primary-black);
  color: var(--primary-beige) !important;
  font-weight: 700;
}

.button:hover {
  opacity: 0.9;
}

.button a {
  text-decoration: none !important;
}
/* End Button */

/* Begin Header */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: var(--primary-black);
  transition: all linear 0.1s;
  min-width: 0%;
  margin-bottom: -4px;
}
/* End Header */

/* Begin Body */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--overlay-background);
  z-index: -200;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.overlay--show {
  height: 100vh;
  z-index: 20;
  opacity: 1;
  overscroll-behavior: contain;
}

.disable-scroll {
  overflow: hidden;
}
/* End Body */

/* Begin Navbar Mobile */
@media screen and (max-width: 992px) {
  .progress-bar {
    display: none;
  }
}
/* End Navbar Mobile */

/* Begin Categories */

.post-categories-wrapper {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-card-block {
  padding-top: 9px;
}

.post-card-block a {
  font-size: 20px;
  line-height: 36px;
  color: var(--low-pure);
}

.post-categories .category-link {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-black);
  text-transform: uppercase;
  line-height: 160%;
  width: fit-content;
  padding: 4px 8px;
  background-color: #d5e91e;
  display: flex;
}

.post-categories .category-link:hover {
  color: var(--low-pure);
}

.after-post-tags {
  margin-bottom: 30px;
}

.after-post-tags .post-categories .category-link {
  font-size: 15px;
}
/* End Categories */

/* Begin Homepage */

.default-carousel .card.post.height262 .thumbimage {
  min-height: 214px;
}

/* End Homepage */

/* Begin Footer */

footer {
  padding-top: 94px;
  padding-bottom: 90px;
  background-color: var(--primary-black);

  @media (max-width: 600px) {
    padding: 60px 0;
  }
}

.footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;

  @media (max-width: 600px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

.footer__main .list-socials {
  width: fit-content;
  margin: 0 !important;
}

.footer__main .list-socials .box-social {
  background-color: var(--primary-beige);

  &:last-child {
    margin-right: 0;
  }

  @media (max-width: 600px) {
    &:not(&:last-child) {
      margin-right: 12px;
    }
  }
}

.inner-footer {
  padding: 72px 0px;
}

.links-group {
  display: flex;
  justify-content: space-between;
}

.toggle-infos {
  pointer-events: none;
  text-decoration: none !important;
  color: rgba(226, 221, 207, 0.5) !important;
  font-size: 17px;
  line-height: 27px;
}

.toggle-icon {
  margin: 0 !important;
  min-width: 32px;
}

.icon-more,
.icon-less {
  display: none;
}

.page-list {
  list-style: none;
  padding: 0;
  height: auto;
  max-height: 1000;
  transition: all 0.8s cubic-bezier(0, 1, 0, 1);
  overflow: hidden;
}

.icon-less {
  display: none;
}

.holder-list .page_link {
  display: block;
  padding-bottom: 15px;
  font-size: 15px;
  line-height: 160%;
  text-decoration-line: underline;
  font-weight: 400;
  color: var(--primary-beige);
  transition: all 0.3s ease;
}

.holder-list .page_link:hover {
  opacity: 0.7;
}

.page-list {
  margin-top: 20px;
}

.footer-desc span {
  color: var(--primary-beige);
  font-size: 15px;
  font-weight: 400;
}

.social-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.social-container p {
  display: inline-block;
}

.app {
  min-width: 310px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.app img {
  max-width: 157px;
  max-height: 57px;
}

/* End Footer */

/* Begin Post */

.author-link,
.author-post-date span {
  font-size: 15px;
  color: var(--low-medium);
}

.author-post-date {
  margin-left: 5px;
}

.article-post {
  font-family: "Inter", sans-serif !important;
  color: var(--low-dark) !important;
}

.article-post a {
  text-decoration: underline;
  text-underline-position: under;
  color: var(--primary-black) !important;
  transition: all 0.3s ease;
}
.article-post a:hover {
  color: var(--primary-Purple) !important;
}
.article-post p {
  color: var(--primary-black) !important;
}
.article-post ul li,
.article-post ol li {
  color: var(--primary-black) !important;
}

.article-post ul li a::before {
  background-color: var(--primary-black) !important;
}

#ez-toc-container {
  background: var(--primary-beige);
  border: none;
  box-shadow: none;
}

#ez-toc-container li {
  margin-bottom: 10px !important;
  font-size: inherit !important;
}

#ez-toc-container a,
#ez-toc-container a:visited {
  color: var(--purple);
  font-weight: 500;
}

#ez-toc-container a:hover {
  text-decoration: none;
}

#ez-toc-container a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: var(--purple);
  display: inline-block;
  margin-right: 15px;
  vertical-align: 10%;
}

#ez-toc-container .ez-toc-link {
  align-items: center;
}

.article-post figure {
  border-radius: var(--border-default);
}

#related-posts .single-post .listrelated .card {
  width: 209px;
}

#related-posts .card.post.height262 .thumbimage {
  height: 130px;
}

.related-posts h3,
.share-block h3 {
  margin-bottom: 35px;
}

.like-block h3 {
  margin-bottom: 25px;
}

.share {
  position: sticky;
  top: 30%;
  transition: opacity ease-in 0.5s;
}

.like-and-share {
  display: flex;
  flex-direction: row;
}

.share-icon {
  color: var(--highlight-medium) !important;
}

.divider {
  border: 2px solid var(--high-light);
  /* max-width: 650px; */
  background-color: var(--high-light);
  margin-top: 50px;
  margin-bottom: 90px;
}

/* End Post */

/* Begin Social */

.list-socials {
  width: 100%;
}
.box-social {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 40px;
  height: 40px;
  margin-right: 20px;
  border-radius: 100%;
  background: var(--high-light);
}

.box-social:hover {
  background: var(--high-dark);
  transition: ease-in 0.3s;
}

.box-social._side {
  width: 48px;
  height: 48px;
  margin-right: 0;
  margin-bottom: 16px;
}

.shareitnow .box-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.like-and-share {
  justify-content: space-between;
}

.like-and-share h3 {
  font-size: 25px;
}

.like-and-share .share {
  display: block;
}

.like-and-share .pt-claps-applause {
  margin-top: 0px;
  display: inline-flex;
  flex-direction: row;
}

.like-and-share .claps-button {
  margin-right: 12px;
}

.like-and-share .shareitnow {
  display: flex;
  flex-direction: row;
}

.like-and-share .shareitnow li {
  margin-right: 16px;
}

/* End Social */

/* Begin Related Posts */

.listrelated .post-categories-wrapper {
  margin-top: 0px;
  margin-bottom: 6px;
}

.listrelated .card:nth-child(3) {
  margin-right: 0;
}

.related-section-title {
  margin-bottom: 35px;
}

/* End Related Posts */

/* Begin Owl Carousel */

.owl-carousel {
  padding: 0;
}

.owl-dots {
  position: absolute;
  top: -50px;
  right: 0;
}
.owl-nav {
  display: none;
}

/* End Owl Carousel */

/* Begin Popular Posts Plugin */
.wpp-list {
  display: flex;
}
/* End Popular Posts Plugin */

/* Begin Section CTA */
.section-cta {
  min-height: 300px;
  overflow: hidden;
  /* padding: 25px 70px; */
  margin-bottom: 110px;
  position: relative;
}

#cta-post {
  height: 100%;
}

#cta-post,
.section-cta {
  border-radius: var(--border-default);
}

#cta-post.section-cta {
  padding: 0px;
}

.content-cta {
  height: 100%;
  min-width: 50%;
}

.content-cta-text {
  padding: 65px 100px 60px 60px;
}

#cta-post .content-cta-text {
  padding: 60px 60px 50px 50px;
}

.cta-heading {
  font-size: 24px;
  line-height: 31px;
  font-weight: 600 !important;
  margin-bottom: 15px;
  color: var(--low-pure) !important;
}

#cta-post .cta-heading {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500 !important;
}

.highlight-purple {
  color: var(--purple);
}

.store-block {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 110px;
  width: 110px;
  border-radius: 50%;
  background-color: #fff;
}

#cta-post .store-block {
  width: 67px;
  height: 67px;
}

.image-cta {
  height: 100%;
  width: 100%;
  background-image: url("../img/laptop.png");
  background-repeat: no-repeat;
  background-size: 390px, 222px;
  background-position: 50% 50%;
}

#cta-post .image-cta {
  height: 100%;
  width: 100%;
  background-image: url("../img/laptop.png");
  background-repeat: no-repeat;
  background-size: 270px, 154px;
  background-position: 50% 50%;
}

/* End Section CTA */

/* Begin Article CTA (CTA inside the article block) */

.article-cta {
  border-radius: var(--border-default);
  min-height: 247px;
  height: auto;
}

.article-cta-small .article-cta {
  padding: 45px 60px 45px 45px;
  width: 100%;
}

.article-cta-large .article-cta-col-1 {
  padding: 49px 102px 49px 52px;
  width: 100%;
  align-self: stretch;
}

.article-cta-large .article-cta-col-2 {
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
  min-width: 184px;
  border-top-right-radius: var(--border-default);
  border-bottom-right-radius: var(--border-default);
}

.article-cta-small .article-cta-heading {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 26px;
  color: var(--low-pure);
}

.article-cta-small .article-cta-button,
.article-cta-large .article-cta-button {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  padding: 13px 43px;
  text-decoration: none;
  width: 212px;
}

.article-cta-large .article-cta-heading {
  font-size: 25px;
  line-height: 32px;
  font-weight: 600;
  color: var(--low-pure);
  margin-bottom: 24px;
  max-width: 394px;
}

.article-cta-large .article-cta-store-block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 143px;
  background: var(--white);
  width: 112px;
  height: 112px;
  border-radius: 50%;
}

/* End Article CTA */
#black-friday-banner {
  background: var(--low-pure);
  border-radius: var(--border-default);
  min-height: 300px;
  margin-bottom: 80px;
}

.banner-content {
  padding: 50px 70px;
  width: 50%;
}

.banner-title,
.banner-text {
  color: #fff !important;
  font-weight: 500;
}

.banner-title {
  font-size: 32px;
  line-height: 51px;
  margin-bottom: 10px;
}

.banner-text {
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 40px;
  max-width: 400px;
}

#black-friday-banner .button {
  width: 212px;
}

.banner-img {
  width: 50%;
}

#black-friday-banner-article .banner-content {
  width: 100%;
}

#black-friday-banner-article .banner-img {
  display: none;
}

/* Begin Util Classes */

.display-desktop {
  display: block !important;
}

.display-mobile {
  display: none !important;
}

.post-list-section {
  margin-bottom: 100px;
}

.post-list-section .h2 {
  font-size: 25px;
  line-height: 40px;
  margin-bottom: 25px;
}

.category-articles {
  margin-bottom: 80px;
}

.category-articles .title {
  font-size: 25px;
  line-height: 33px;
  margin-bottom: 34px;
}

.tooltip {
  font-weight: 700;
  padding: 7px 9px;
}
/* End Util Classes */

/* Begin Search Page */

.search-results-label {
  color: var(--low-pure);
  font-weight: 500;
  margin-bottom: 62px;
}

.search-results span {
  margin-bottom: 15px;
}

.no-results-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--high-light);
  min-height: 335px;
  color: var(--low-pure);
  font-weight: 500;
}

.no-results-card h1 {
  font-size: 32px;
  line-height: 51px;
  margin-bottom: 15px;
}

.no-results-card p {
  font-size: 17px;
  line-height: 27px;
  text-align: center;
}

.no-results-card .query-value {
  color: var(--highlight-pure);
}

/* End Search Page */

/* Begin Archive Page */
.recent-posts {
  overflow: hidden;
}

.recent-posts p {
  color: var(--low-dark);
}

.recent-posts h1 {
  letter-spacing: -1.32px;
  text-transform: uppercase;
  color: #211c24;
  font-size: 44px;

  span {
    font: inherit;
    color: inherit;
    letter-spacing: -1.32px;
    text-transform: uppercase;
  }

  @media (max-width: 550px) {
    font-size: 30px;
  }
}

.recent-posts .card {
  background-color: var(--primary-beige);
}
.recent-posts .card .text-highlight a {
  line-height: 130%;
  color: var(--primary-black);
  display: flex;
}
/* End Archive Page */

/* Begin Not Found Page */

.page-error {
  padding: 140px 30px;
  background: #f4f6f8;
}

.page-error-block {
  min-width: 400px;
}

.page-error h1 {
  font-size: 60px;
  line-height: 55px;
  margin-bottom: 50px;
  color: var(--dark);
  letter-spacing: -2px;
  font-weight: 700 !important;
}

.page-error-text {
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  color: var(--low-medium);
  margin-bottom: 70px;
}

.page-error .button {
  max-width: 210px;
}

.page-error-image {
  padding-left: 30px;
}
/* End Not Found Page */

/* Begin Partners Page */

#page-partners {
  margin-top: -43px;
}

#page-partners .holder-intro {
  position: relative;
  height: 307px;
  padding-top: 53px;
  background-color: var(--primary-pure);
  overflow: hidden;
  margin-bottom: 47px;
}

#page-partners .holder-intro .title {
  max-width: 311px;
  font-size: 56px;
  line-height: 56px;
  font-weight: 600 !important;
  letter-spacing: -2.41px;
  color: var(--white) !important;
  margin-bottom: 16px;
}

#page-partners .holder-intro .title span {
  color: var(--highlight-pure);
}

#page-partners .holder-intro .description {
  display: block;
  max-width: 374px;
  font-size: 17px;
  line-height: 24px;
  color: var(--white);
}

#page-partners .holder-icon {
  position: absolute;
  bottom: -72px;
  right: -45px;
}

#page-partners .holder-icon svg {
  width: 235px;
  height: 235px;
  opacity: 25%;
}

#page-partners .holder-icon svg > * {
  fill: var(--white);
  color: var(--white);
}

/* End Partners Page */

/* Begin Floating CTA */

.float-cta {
  display: none;
}

@media screen and (max-width: 992px) {
  .cta-fixed-mobile.hidden {
    display: none;
  }

  .float-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    z-index: 9;
    background: var(--primary-beige);
    padding: 22px 16px;
    width: 100%;
    box-shadow: 0px -24px 34px rgba(0, 0, 0, 0.08);
  }

  .float-cta .float-cta-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    color: var(--primary-black);
    margin: 0 14px 0 0;
  }

  .float-cta .float-cta-button {
    line-height: 24px;
    font-weight: 500;
    padding: 13px 16px;
    min-width: 112px;
  }

  .float-cta .close-cta-button {
    padding: 0.3rem;
    position: absolute;
    width: 32px;
    height: 32px;
    top: -20px;
    right: 7px;
    border-radius: 50%;
    background-color: var(--neutral-color-high-pure);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: -9px 11px 25px -4px rgba(173, 171, 173, 0.83);

    svg {
      width: 100% !important;
      height: 100% !important;
    }
  }
}

@media screen and (max-width: 600px) {
  .float-cta .float-cta-text {
    max-width: 202px;
  }
}

@media screen and (max-width: 410px) {
  .float-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .float-cta .float-cta-text {
    margin-right: 10px;
  }
}
/* End Floating CTA */

/* Begin Media Queries */

@media screen and (max-width: 1200px) {
  .section-cta .content-cta-text {
    padding: 65px 45px 60px 60px;
  }

  .cta-heading {
    font-weight: 500 !important;
  }

  #cta-post .cta-heading {
    min-width: 224px;
    max-width: 224px;
  }

  .banner-content {
    padding: 45px 35px 40px 60px;
    width: 60%;
  }

  .banner-img {
    width: 40%;
    margin-right: 60px;
  }

  .article-cta-large .article-cta-col-1 {
    padding-right: 52px;
  }
}

@media screen and (max-width: 992px) {
  #cta-post .content-cta:nth-child(3) {
    min-width: 45%;
  }

  #cta-post .store-block {
    display: none !important;
  }

  #cta-post .content-cta:nth-child(1) {
    min-width: 55%;
  }

  .display-desktop {
    display: none !important;
  }

  .display-mobile {
    display: block !important;
  }

  .navbar-mobile .button {
    display: block;
  }

  #black-friday-banner {
    min-height: unset;
  }

  .banner-content {
    width: 100%;
    padding-right: 45px;
  }

  .banner-title {
    font-size: 25px;
    line-height: 40px;
  }

  .banner-text {
    font-size: 15px;
    line-height: 22px;
    max-width: 350px;
  }

  .banner-img {
    display: none;
  }

  .content-cta {
    width: 100%;
  }

  .cta-heading {
    font-weight: 500 !important;
    max-width: 390px;
  }

  #cta-post .cta-heading {
    min-width: unset;
  }

  .content-cta-text {
    padding: 50px 60px;
  }

  .article-cta-small .article-cta {
    width: 100%;
  }

  .article-cta-small .article-cta-heading {
    max-width: 260px;
  }

  .article-cta-large .article-cta-heading {
    font-size: 20px;
    line-height: 26px;
    max-width: 320px;
  }
}
@media screen and (max-width: 992px) {
  .search-button-toggler {
    display: none !important;
  }

  .submit-button {
    display: block !important;
  }

  .inner-footer {
    padding-top: 40px;
  }

  .holder-list {
    margin-top: 15px;
  }

  .holder-list .page_link {
    padding: 13px 20px 18px 72px;
    font-size: 17px;
    line-height: 27px;
  }
  .links-group {
    flex-direction: column;
  }

  .page-list {
    margin-top: 0px;
    max-height: 0;
  }

  .opened ~ .page-list {
    height: auto;
    max-height: 1000px;
    transition: max-height 0.8s;
    margin-top: 20px;
  }

  .opened .icon-more {
    display: none;
  }

  .opened .icon-less {
    display: block;
  }

  .toggle-infos {
    display: flex;
    align-items: center;
    pointer-events: initial;
  }

  .toggle-infos span {
    font-size: 20px;
    margin-left: 40px;
    font-weight: 400;
  }

  .icon-more {
    display: block;
  }

  .footer-desc {
    padding: 0px 0px 80px 0px;
  }

  .social-container {
    flex-direction: column;
  }

  .social-container p {
    display: inline-block;
    width: 100%;
    max-width: 500px;
  }

  .list-socials {
    margin-bottom: 35px;
  }

  .list-socials + .box-social {
    margin-left: 20px;
  }

  .app {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .post-list-section {
    margin-bottom: 80px;
  }

  .default-carousel .card.post.height262 .thumbimage {
    height: 180px;
    min-height: 180px;
  }
}

@media screen and (max-width: 768px) {
  #ez-toc-container li {
    margin-bottom: 15px !important;
  }

  #ez-toc-container a::before {
    vertical-align: 5%;
  }

  .like-and-share h3,
  .related-posts h3 {
    font-size: 20px;
    line-height: 32px;
  }

  .like-block {
    margin-bottom: 35px;
  }

  .like-block h3 {
    margin-bottom: 10px;
  }

  .share-block h3 {
    margin-bottom: 25px;
  }

  .section-cta {
    margin-bottom: 60px;
    min-height: unset;
  }

  #cta-post .content-cta,
  .section-cta .content-cta-text,
  .banner-content {
    padding: 40px 35px 50px;
  }

  #cta-post .content-cta {
    padding: 40px 35px 50px;
  }

  #cta-post .content-cta:nth-child(3) {
    min-width: 50;
  }

  #cta-post .content-cta:nth-child(1) {
    min-width: 50%;
  }

  .store-block {
    left: 0;
  }

  .content-cta-text {
    padding: 0;
  }

  .text-highlight {
    font-size: 20px;
    line-height: 36px;
  }

  .article-cta-large,
  .article-cta-small {
    display: none;
  }

  .post-list-section .h2 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .post-list-section .owl-dots {
    top: -45px;
  }

  .category-articles {
    margin-bottom: 40px;
  }

  .search-results-label {
    margin: 35px 0px;
  }

  .search-results h1 {
    font-size: 20px;
    line-height: 32px;
  }

  .search-results span {
    margin-bottom: 15px;
  }

  .no-results-card h1 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 12px;
  }

  .no-results-card p {
    font-size: 15px;
    line-height: 22px;
    max-width: 245px;
  }

  .page-error {
    padding: 75px 30px;
  }

  .page-error-block {
    min-width: auto;
  }

  .page-error-block br {
    display: none;
  }

  .page-error h1 {
    font-size: 43px;
    line-height: 38px;
    margin-bottom: 35px;
  }

  .page-error-text {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 30px;
  }

  .page-error-image {
    margin-top: 60px;
    text-align: right;
  }

  .page-error-image img {
    max-width: 320px;
  }

  #page-partners {
    margin-top: -15px;
  }

  #page-partners .holder-intro {
    height: 260px;
  }

  #page-partners .holder-intro .title {
    max-width: 230px;
    font-size: 36px;
    line-height: 38px;
  }

  #page-partners .holder-intro .description {
    max-width: 245px;
  }

  #page-partners .holder-icon {
    right: -29px;
    bottom: -50px;
  }

  #page-partners .holder-icon svg {
    width: 160px;
    height: 160px;
  }

  .nf-response-msg {
    top: -15px !important;
  }

  #latest-youtube-videos {
    padding: 50px 0px 65px;
  }

  #related-posts .single-post .listrelated .card {
    width: 300px;
    max-width: 300px;
    min-width: 300px !important;
  }

  #related-posts .card.post.height262 .thumbimage {
    height: 180px;
  }
}

@media screen and (max-width: 688px) {
  #cta-post .store-block,
  #cta-post .content-cta:nth-child(3) {
    display: none !important;
  }
}

@media screen and (max-width: 360px) {
  #black-friday .h2 {
    max-width: 200px;
  }

  .logo-yampi {
    display: inline-block;
    padding-right: 10px;
  }
}
/* End Media Queries */
