@import url(../css/swiper.css);
header {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #6e0ad6;
  padding-top: 140px;
  padding-bottom: 140px; }
  header .banner-container {
    height: 100%;
    position: relative;
    z-index: 10; }
    header .banner-container .banners {
      width: 100%;
      height: 100%;
      border-radius: 30px 0px;
      overflow: hidden;
      position: relative;
      background-color: #6e0ad6; }
      @media (min-width: 768px) {
        header .banner-container .banners {
          border-radius: 120px 0px; } }
      header .banner-container .banners .banner {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        opacity: 0;
        transition: all 0.6s; }
        header .banner-container .banners .banner:hover img {
          transform: scale(1.2); }
        header .banner-container .banners .banner.show {
          opacity: 1; }
          header .banner-container .banners .banner.show .content {
            bottom: 0px;
            opacity: 1; }
        header .banner-container .banners .banner:before {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 70%);
          z-index: 1; }
        header .banner-container .banners .banner img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.4s; }
        header .banner-container .banners .banner .link {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 1; }
        header .banner-container .banners .banner .content {
          position: absolute;
          bottom: 30px;
          padding: 68px 32px;
          z-index: 2;
          opacity: 0;
          transition: all 0.8s; }
          @media (min-width: 768px) {
            header .banner-container .banners .banner .content {
              padding: 65px 100px;
              max-width: 780px; } }
          header .banner-container .banners .banner .content .timestamp {
            font-family: "Montserrat-Medium", sans-serif;
            font-size: 12px;
            color: #fff;
            text-transform: capitalize; }
            @media (min-width: 768px) {
              header .banner-container .banners .banner .content .timestamp {
                font-size: 14px; } }
          header .banner-container .banners .banner .content .separator {
            width: 1px;
            height: 15px;
            background-color: #fff;
            margin: 0px 8px; }
          header .banner-container .banners .banner .content .category {
            font-family: "Montserrat-Medium", sans-serif;
            font-size: 12px;
            color: #fff; }
            @media (min-width: 768px) {
              header .banner-container .banners .banner .content .category {
                font-size: 14px; } }
          header .banner-container .banners .banner .content h2 {
            font-family: "ZonaPro-Bold", sans-serif;
            font-size: 28px;
            line-height: 30px;
            color: #fff;
            letter-spacing: -1px;
            margin-top: 12px; }
            @media (min-width: 768px) {
              header .banner-container .banners .banner .content h2 {
                font-size: 40px;
                line-height: normal; } }
    header .banner-container .slide-arrows {
      position: absolute;
      width: 160px;
      bottom: -23px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      justify-content: space-between;
      z-index: 2; }
      @media (min-width: 768px) {
        header .banner-container .slide-arrows {
          transform: none;
          left: auto;
          right: 100px;
          bottom: 75px; } }
      header .banner-container .slide-arrows .slide-arrow {
        width: calc(50% - 5px);
        cursor: pointer; }
        header .banner-container .slide-arrows .slide-arrow img {
          width: 100%; }
        header .banner-container .slide-arrows .slide-arrow path {
          transition: fill 0.4s; }
        header .banner-container .slide-arrows .slide-arrow.left {
          transform: rotate(180deg);
          margin-top: 19px; }
        header .banner-container .slide-arrows .slide-arrow.disabled {
          opacity: 0.5; }
        header .banner-container .slide-arrows .slide-arrow:not(.disabled):hover path {
          fill: #ff5e00; }
  header .slide-pagination {
    position: absolute;
    display: flex;
    left: 50%;
    bottom: 48px;
    transform: translateX(-50%); }
    header .slide-pagination .pagination {
      width: 20px;
      height: 8px;
      border-radius: 8px;
      background-color: black;
      opacity: 0.2;
      cursor: pointer; }
      header .slide-pagination .pagination:not(:last-of-type) {
        margin-right: 10px; }
      header .slide-pagination .pagination.active {
        opacity: 1;
        background-color: #fff; }
  header .stroke {
    position: absolute;
    top: 0;
    right: 0;
    height: 60%; }

nav {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100;
  padding-top: 30px;
  padding-bottom: 20px;
  transition: padding 0.4s, background-color 0.4s; }
  @media (min-width: 768px) {
    nav {
      align-items: center;
      padding-top: 32px;
      padding-bottom: 32px; } }
  nav.colorized {
    background-color: #6d09d6; }
    @media (max-width: 768px) {
      nav.colorized {
        padding-bottom: 30px !important; } }
  nav .logo {
    width: 194px;
    height: 40px;
    z-index: 2;
    position: relative; }
    nav .logo img {
      height: 100%;
      position: absolute; }
  nav .options {
    display: flex;
    align-items: center; }
    @media (min-width: 768px) {
      nav .options {
        margin-bottom: 6px; } }
    nav .options > ul {
      list-style: none;
      display: flex;
      align-items: center;
      height: 30px; }
      nav .options > ul > li {
        position: relative;
        height: 100%;
        display: flex; }
        nav .options > ul > li:not(:last-of-type) {
          margin-right: 18px; }
        nav .options > ul > li:last-of-type a::after,
        nav .options > ul > li:last-of-type span::after {
          display: none !important; }
        nav .options > ul > li:hover a,
        nav .options > ul > li:hover span {
          color: #ff5e00; }
          nav .options > ul > li:hover a:after,
          nav .options > ul > li:hover span:after {
            transform: rotate(180deg); }
        nav .options > ul > li:hover .subitems-container.menu1 {
          height: 95px; }
        nav .options > ul > li:hover .subitems-container.menu2 {
          height: 95px; }
        nav .options > ul > li:hover .subitems-container.menu3 {
          height: 95px; }
        nav .options > ul > li:hover .subitems-container.menu4 {
          height: 150px; }
        nav .options > ul > li:hover .subitems-container.menu5 {
          height: 225px; }
        nav .options > ul > li:hover .subitems-container.menu6 {
          height: 250px; }
        nav .options > ul > li > a,
        nav .options > ul > li > span {
          font-family: "ZonaPro-SemiBold";
          font-size: 14px;
          color: #fff;
          display: flex;
          align-items: center; }
          nav .options > ul > li > a:hover,
          nav .options > ul > li > span:hover {
            color: #ff5e00; }
          nav .options > ul > li > a:after,
          nav .options > ul > li > span:after {
            content: "";
            display: block;
            margin-left: 10px;
            width: 8px;
            height: 8px;
            background-image: url("/blog/wp-content/themes/blogzapemcasa/assets/images/chevron.svg");
            background-size: cover;
            background-position: center;
            transition: transform 0.4s; }
        nav .options > ul > li span {
          cursor: default; }
        nav .options > ul > li .subitems-container {
          position: absolute;
          overflow: hidden;
          width: 170px;
          height: 0;
          top: 20px;
          left: -20px;
          transition: height 0.4s;
          overflow: hidden; }
          nav .options > ul > li .subitems-container .subitems {
            margin-top: 12px;
            padding: 20px;
            width: 100%;
            height: -webkit-fill-available;
            background-color: #f9f9f9;
            border-radius: 20px 0px; }
            nav .options > ul > li .subitems-container .subitems li:not(:last-of-type) {
              margin-bottom: 8px; }
            nav .options > ul > li .subitems-container .subitems a {
              font-family: "ZonaPro-SemiBold";
              font-size: 14px;
              color: #505050; }
              nav .options > ul > li .subitems-container .subitems a:hover {
                color: #ff5e00; }
  nav > .more {
    display: flex;
    align-items: center; }
    @media (min-width: 768px) {
      nav > .more {
        margin-bottom: 6px; } }
    nav > .more a {
      font-family: "ZonaPro-Regular", sans-serif;
      color: #fff;
      font-size: 11px;
      transition: color 0.4s; }
      nav > .more a:hover {
        color: #ff5e00; }
    nav > .more .separator {
      width: 1px;
      height: 10px;
      background-color: #fff;
      margin: 0px 16px; }
    nav > .more .search-icon {
      margin-left: 24px;
      width: 15px;
      height: 15px; }
      nav > .more .search-icon path {
        fill: #ff5e00; }
  nav .menu-toggle {
    width: 26px;
    height: 26px;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-right: 24px; }
    nav .menu-toggle.opened .menu-burguer {
      transform: translateY(4px); }
      nav .menu-toggle.opened .menu-burguer span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #ff5e00;
        width: 26px !important; }
        nav .menu-toggle.opened .menu-burguer span:nth-of-type(2) {
          opacity: 0;
          transform: rotate(0deg) scale(0.2, 0.2); }
        nav .menu-toggle.opened .menu-burguer span:nth-of-type(3) {
          transform: rotate(-45deg) translate(0, -1px); }
    nav .menu-toggle.opened .menu-mobile {
      left: 0; }
    nav .menu-toggle .menu-burguer {
      position: absolute;
      z-index: 5;
      transition: all 0.6s; }
      nav .menu-toggle .menu-burguer span {
        display: block;
        width: 26px;
        height: 2px;
        position: relative;
        background: #cdcdcd;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease; }
        nav .menu-toggle .menu-burguer span:nth-of-type(1) {
          width: 26px;
          margin-bottom: 5px; }
        nav .menu-toggle .menu-burguer span:nth-of-type(2) {
          width: 24px;
          margin-bottom: 5px; }
        nav .menu-toggle .menu-burguer span:nth-of-type(3) {
          width: 20px;
          transform-origin: 0% 100%; }
    nav .menu-toggle .menu-mobile {
      position: fixed;
      width: 100vw;
      height: 100vh;
      background-color: #f5f5f5;
      top: 0;
      left: 100%;
      transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
      padding: 100px 24px 0px 24px; }
      nav .menu-toggle .menu-mobile .menu-mobile-items {
        padding-top: 45px;
        padding-bottom: 45px;
        border-top: 1px solid rgba(0, 0, 0, 0.15);
        overflow: auto;
        height: calc(100vh - 100px); }
        nav .menu-toggle .menu-mobile .menu-mobile-items .items {
          list-style: none;
          margin-left: 10px; }
          nav .menu-toggle .menu-mobile .menu-mobile-items .items > li.opened span:after {
            background-image: url("/blog/wp-content/themes/blogzapemcasa/assets/images/minus.svg"); }
          nav .menu-toggle .menu-mobile .menu-mobile-items .items > li.opened .subitems-container#subitems1 {
            height: 194px; }
          nav .menu-toggle .menu-mobile .menu-mobile-items .items > li.opened .subitems-container#subitems2 {
            height: 194px; }
          nav .menu-toggle .menu-mobile .menu-mobile-items .items > li.opened .subitems-container#subitems3 {
            height: 194px; }
          nav .menu-toggle .menu-mobile .menu-mobile-items .items > li.opened .subitems-container#subitems4 {
            height: 235px; }
          nav .menu-toggle .menu-mobile .menu-mobile-items .items > li.opened .subitems-container#subitems5 {
            height: 317px; }
          nav .menu-toggle .menu-mobile .menu-mobile-items .items > li.opened .subitems-container#subitems6 {
            height: 358px; }
          nav .menu-toggle .menu-mobile .menu-mobile-items .items > li:not(:last-of-type) {
            margin-bottom: 18px; }
          nav .menu-toggle .menu-mobile .menu-mobile-items .items > li span,
          nav .menu-toggle .menu-mobile .menu-mobile-items .items > li a {
            font-family: "ZonaPro-Regular", sans-serif;
            color: #ff5e00;
            font-size: 24px;
            position: relative;
            display: block;
            cursor: pointer; }
          nav .menu-toggle .menu-mobile .menu-mobile-items .items span:after {
            content: "";
            position: absolute;
            display: block;
            width: 18px;
            height: 18px;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            background-image: url("/blog/wp-content/themes/blogzapemcasa/assets/images/plus.svg");
            background-size: cover;
            background-position: center; }
        nav .menu-toggle .menu-mobile .menu-mobile-items .subitems-container {
          width: 100%;
          height: 0;
          overflow: hidden;
          transition: height 0.4s; }
          nav .menu-toggle .menu-mobile .menu-mobile-items .subitems-container .subitems {
            margin-top: 30px; }
            nav .menu-toggle .menu-mobile .menu-mobile-items .subitems-container .subitems a {
              display: block;
              font-family: "ZonaPro-Regular", sans-serif;
              color: #505050;
              font-size: 18px;
              margin-bottom: 20px;
              position: relative; }
              nav .menu-toggle .menu-mobile .menu-mobile-items .subitems-container .subitems a:after {
                content: "";
                position: absolute;
                display: block;
                width: 14px;
                height: 7px;
                top: 50%;
                right: 10px;
                transform: translateY(-50%) rotate(270deg);
                background-image: url("/blog/wp-content/themes/blogzapemcasa/assets/images/chevron.svg");
                background-size: cover;
                background-position: center; }
        nav .menu-toggle .menu-mobile .menu-mobile-items .more {
          margin-top: 50px; }
          nav .menu-toggle .menu-mobile .menu-mobile-items .more a {
            font-family: "ZonaPro-Regular", sans-serif;
            color: #6d09d6;
            font-size: 18px;
            display: block;
            transition: color 0.4s; }
            nav .menu-toggle .menu-mobile .menu-mobile-items .more a:not(:last-of-type) {
              margin-bottom: 20px; }
            nav .menu-toggle .menu-mobile .menu-mobile-items .more a:hover {
              color: #ff5e00; }
  nav .search-icon {
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer; }
    nav .search-icon path {
      transition: all 0.4s; }
    nav .search-icon.orange path {
      fill: #ff5e00; }
    nav .search-icon svg {
      width: 18px;
      height: 18px; }
  nav .search-container {
    position: fixed;
    top: 100px;
    left: 0px;
    width: 100vw;
    height: calc(100vh - 100px);
    background-color: rgba(249, 249, 249, 0.9);
    display: flex;
    justify-content: center;
    align-items: center; }
    @media (min-width: 768px) {
      nav .search-container {
        top: 104px;
        height: calc(100vh - 104px); } }
    nav .search-container .close {
      width: 30px;
      height: 30px;
      position: absolute;
      top: 60px;
      right: 24px;
      cursor: pointer;
      transform: rotate(45deg); }
      nav .search-container .close g {
        transition: fill 0.4s; }
      nav .search-container .close:hover g {
        fill: #ff5e00; }
      @media (min-width: 1200px) {
        nav .search-container .close {
          right: 8%; } }
      @media (min-width: 1700px) {
        nav .search-container .close {
          right: 18%; } }
    nav .search-container form {
      width: 100%;
      border-bottom: 2px solid #505050;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 4px; }
      @media (min-width: 768px) {
        nav .search-container form {
          max-width: 580px; } }
      nav .search-container form input {
        border: none;
        outline: none;
        background-color: transparent;
        font-family: "ZonaPro-Bold", sans-serif;
        color: #505050;
        font-size: 16px; }
        @media (min-width: 768px) {
          nav .search-container form input {
            font-size: 32px; } }
        nav .search-container form input::placeholder {
          font-family: "ZonaPro-Bold", sans-serif;
          color: #505050;
          font-size: 16px; }
          @media (min-width: 768px) {
            nav .search-container form input::placeholder {
              font-size: 32px; } }
      nav .search-container form button {
        border: none;
        background-color: transparent;
        width: 16px;
        height: 16px; }
        @media (min-width: 768px) {
          nav .search-container form button {
            width: 20px;
            height: 20px; } }

.guide {
  background-color: #f3f3f3;
  padding-top: 30px;
  position: relative;
  transition: height 0.4s; }
  @media (min-width: 768px) {
    .guide {
      min-height: 310px; } }
  .guide > h2 {
    text-align: center;
    font-family: "ZonaPro-Bold", sans-serif;
    font-size: 18px;
    color: #46454c;
    padding-bottom: 20px;
    border-bottom: 1px solid #00000026;
    letter-spacing: -0.5px; }
    @media (min-width: 768px) and (max-width: 1700px) {
      .guide > h2 {
        margin: 0 auto;
        width: 80%; } }
  .guide .options {
    display: flex;
    flex-direction: column;
    margin: 50px 0px;
    align-items: center;
    z-index: 2;
    position: relative; }
    @media (min-width: 768px) {
      .guide .options {
        flex-direction: row;
        margin-top: 50px;
        justify-content: center; } }
    .guide .options .option {
      display: flex;
      align-items: baseline; }
      @media (max-width: 768px) {
        .guide .options .option {
          width: 210px; }
          .guide .options .option:not(:last-of-type) {
            margin-bottom: 30px; } }
      @media (min-width: 768px) {
        .guide .options .option:not(:last-of-type) {
          margin-right: 90px; } }
      .guide .options .option img {
        height: 30px;
        margin-right: 15px; }
      .guide .options .option span {
        font-family: "ZonaPro-Bold", sans-serif;
        font-size: 32px;
        color: #ff5e00;
        letter-spacing: -1px;
        transition: color 0.4s; }
        @media (min-width: 768px) {
          .guide .options .option span {
            font-size: 42px; } }
      .guide .options .option:hover span {
        color: #505050; }
  .guide .news-letter {
    position: relative;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 100%;
    height: 60px;
    background-color: #6e0ad6;
    padding: 24px 36px;
    border-radius: 30px 30px 0px 0px;
    user-select: none;
    overflow: hidden;
    z-index: 20;
    transition: all 0.4s; }
    .guide .news-letter.opened {
      height: 360px; }
    .guide .news-letter.fixed {
      position: fixed;
      width: calc(100% - 48px); }
    @media (min-width: 768px) {
      .guide .news-letter {
        padding: 32px 78px 45px 78px;
        width: max-content;
        height: 90px; }
        .guide .news-letter.opened {
          height: 170px; }
        .guide .news-letter.fixed {
          width: max-content; } }
    .guide .news-letter h2 {
      text-align: center;
      font-family: "ZonaPro-Bold", sans-serif;
      font-size: 16px;
      color: #fff;
      letter-spacing: -0.5px; }
      @media (min-width: 768px) {
        .guide .news-letter h2 {
          font-size: 24px; } }
    .guide .news-letter svg {
      position: absolute;
      right: 24px;
      transition: all 0.4s;
      cursor: pointer;
      transform: rotate(45deg); }
    .guide .news-letter form {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 30px; }
      @media (min-width: 768px) {
        .guide .news-letter form {
          flex-direction: row;
          justify-content: space-between; }
          .guide .news-letter form > :not(:last-child) {
            margin-right: 20px; } }
      .guide .news-letter form input,
      .guide .news-letter form select {
        border: none;
        height: 35px;
        border-radius: 35px;
        padding: 0px 24px;
        font-family: "ZonaPro-SemiBold", sans-serif;
        font-size: 14px;
        color: #505050;
        outline: none;
        background-color: #fff; }
        @media (min-width: 768px) {
          .guide .news-letter form input,
          .guide .news-letter form select {
            width: 250px; } }
      .guide .news-letter form input {
        margin-bottom: 24px; }
        .guide .news-letter form input::placeholder {
          color: #505050; }
        @media (min-width: 768px) {
          .guide .news-letter form input {
            margin-bottom: 0px; } }
      .guide .news-letter form button {
        padding: 10px 30px;
        background-color: #ff5e00;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        font-family: "ZonaPro-Bold", sans-serif;
        font-size: 12px;
        color: white;
        width: fit-content;
        border-radius: 30px;
        transition: background-color 0.4s; }
        .guide .news-letter form button:disabled {
          cursor: default;
          background-color: #f9f9f9;
          color: #505050;
          opacity: 0.6; }
        .guide .news-letter form button:not(:disabled):hover {
          background-color: #f9f9f9;
          color: #ff5e00; }
    .guide .news-letter .form-message {
      text-align: center;
      font-family: "ZonaPro-SemiBold", sans-serif;
      font-size: 20px;
      color: #fff;
      margin-top: 30px; }
  .guide .stroke2 {
    position: absolute;
    top: -20px;
    left: 0;
    height: 100px; }
    @media (min-width: 768px) {
      .guide .stroke2 {
        height: 330px;
        top: -80px; } }
  .guide .stroke3 {
    position: absolute;
    bottom: 80px;
    right: 0;
    height: 280px;
    z-index: 0; }

.latest-news {
  position: relative;
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media (min-width: 768px) {
    .latest-news {
      padding-top: 100px;
      padding-bottom: 100px; } }
  .latest-news .filter-btn {
    font-family: "Montserrat-Medium", sans-serif;
    font-size: 16px;
    color: #ff5e00;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.4s; }
    .latest-news .filter-btn.opened {
      background-color: #ff5e00;
      color: #fff; }
      .latest-news .filter-btn.opened .chevron {
        transform: rotate(180deg); }
        .latest-news .filter-btn.opened .chevron path {
          stroke: #fff; }
      .latest-news .filter-btn.opened .filter-icon g {
        fill: #fff; }
    @media (min-width: 768px) {
      .latest-news .filter-btn {
        font-family: "Montserrat-Bold", sans-serif;
        padding: 14px 24px;
        border: 2px solid #ff5e00;
        border-radius: 45px; } }
    .latest-news .filter-btn .filter-icon {
      width: 20px;
      height: 20px;
      margin-right: 12px;
      transition: all 0.4s; }
      .latest-news .filter-btn .filter-icon img {
        width: 100%; }
    .latest-news .filter-btn .chevron {
      width: 16px;
      height: 16px;
      display: flex;
      margin-left: 8px;
      transition: all 0.4s; }
      @media (min-width: 768px) {
        .latest-news .filter-btn .chevron {
          margin-left: 16px; } }
      .latest-news .filter-btn .chevron img {
        width: 100%; }
  .latest-news .tags-desk {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    overflow: hidden;
    transition: all 0.4s;
    height: 0px; }
    .latest-news .tags-desk.opened {
      height: 220px;
      margin-top: 20px; }
  .latest-news .posts-grid {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2; }
    @media (min-width: 768px) {
      .latest-news .posts-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 64px;
        grid-row-gap: 32px; } }
    .latest-news .posts-grid article:hover .thumbnail img {
      transform: scale(1.2); }
    .latest-news .posts-grid article:hover .content h2 {
      color: #ff5e00; }
    .latest-news .posts-grid article:nth-of-type(3) {
      position: relative; }
      .latest-news .posts-grid article:nth-of-type(3) .link {
        display: block;
        height: 100%;
        position: absolute;
        width: 100%;
        top: 0;
        z-index: 2; }
      .latest-news .posts-grid article:nth-of-type(3) .thumbnail:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 70%);
        z-index: 1; }
      .latest-news .posts-grid article:nth-of-type(3) .content {
        z-index: 2; }
    @media (max-width: 768px) {
      .latest-news .posts-grid article:not(:first-of-type) {
        margin-bottom: 30px; } }
    @media (min-width: 768px) {
      .latest-news .posts-grid article:nth-of-type(1) {
        grid-area: 3 / 1 / 5 / 3; }
      .latest-news .posts-grid article:nth-of-type(2) {
        grid-area: 1 / 1 / 3 / 3; }
      .latest-news .posts-grid article:nth-of-type(3) {
        grid-area: 1 / 3 / 5 / 5;
        height: 100%; }
        .latest-news .posts-grid article:nth-of-type(3) .thumbnail {
          height: 100%;
          max-height: 472px;
          border-radius: 60px 0px; }
        .latest-news .posts-grid article:nth-of-type(3) .content {
          padding: 54px 40px !important; }
          .latest-news .posts-grid article:nth-of-type(3) .content h2 {
            font-size: 30px; }
      .latest-news .posts-grid article:nth-of-type(1), .latest-news .posts-grid article:nth-of-type(2) {
        display: flex;
        flex-direction: row-reverse; }
        .latest-news .posts-grid article:nth-of-type(1) .thumbnail, .latest-news .posts-grid article:nth-of-type(2) .thumbnail {
          flex: 1;
          height: 220px;
          border-radius: 60px 0px; }
        .latest-news .posts-grid article:nth-of-type(1) .content, .latest-news .posts-grid article:nth-of-type(2) .content {
          padding: 24px !important;
          flex: 1; } }
    .latest-news .posts-grid article .thumbnail {
      width: 100%;
      height: 302px;
      border-radius: 35px 0px;
      position: relative;
      overflow: hidden;
      display: block; }
      .latest-news .posts-grid article .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s; }
      .latest-news .posts-grid article .thumbnail .content {
        position: absolute;
        bottom: 0;
        padding: 32px 20px; }
        .latest-news .posts-grid article .thumbnail .content .timestamp,
        .latest-news .posts-grid article .thumbnail .content .tag,
        .latest-news .posts-grid article .thumbnail .content h2 {
          color: #fff;
          font-family: "ZonaPro-Bold", sans-serif; }
        .latest-news .posts-grid article .thumbnail .content .tag:hover {
          color: #ff5e00; }
        .latest-news .posts-grid article .thumbnail .content .separator {
          background-color: #fff; }
    .latest-news .posts-grid article .content {
      padding: 20px 8px 0px 8px; }
      .latest-news .posts-grid article .content .timestamp {
        font-family: "Montserrat-Medium", sans-serif;
        font-size: 12px;
        color: #a4a4a4;
        text-transform: capitalize; }
      .latest-news .posts-grid article .content .separator {
        width: 1px;
        height: 15px;
        background-color: #a4a4a4;
        margin: 0px 8px; }
      .latest-news .posts-grid article .content .tag {
        font-family: "Montserrat-Medium", sans-serif;
        font-size: 12px;
        color: #ff5e00; }
        .latest-news .posts-grid article .content .tag:hover {
          color: #6e0ad6; }
      .latest-news .posts-grid article .content h2 {
        font-family: "Montserrat-Medium", sans-serif;
        font-size: 20px;
        color: #505050;
        letter-spacing: -0.5px;
        margin-top: 12px;
        transition: color 0.4s; }
  .latest-news .stroke4 {
    position: absolute;
    bottom: 200px;
    right: 0;
    height: 480px;
    z-index: 1; }

.highlights {
  position: relative;
  background-color: #fff;
  padding-bottom: 50px; }
  @media (min-width: 768px) {
    .highlights {
      padding-bottom: 100px; } }
  .highlights .stroke5 {
    position: absolute;
    top: -200px;
    left: 0;
    height: 500px;
    z-index: 5; }

.posts-row {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  position: relative;
  z-index: 2; }
  @media (min-width: 768px) {
    .posts-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(1, 1fr);
      grid-column-gap: 20px;
      grid-row-gap: 50px; } }
  .posts-row article:hover .thumbnail img {
    transform: scale(1.2); }
  .posts-row article:hover .content h2 {
    color: #ff5e00; }
  @media (max-width: 768px) {
    .posts-row article:not(:last-of-type) {
      margin-bottom: 30px; } }
  .posts-row article .thumbnail {
    width: 100%;
    height: 150px;
    border-radius: 30px 0px;
    position: relative;
    overflow: hidden;
    display: block; }
    .posts-row article .thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s; }
  .posts-row article .content {
    padding: 20px 8px 0px 8px; }
    .posts-row article .content .timestamp {
      font-family: "Montserrat-Medium", sans-serif;
      font-size: 12px;
      color: #a4a4a4;
      text-transform: capitalize; }
    .posts-row article .content .separator {
      width: 1px;
      height: 15px;
      background-color: #a4a4a4;
      margin: 0px 8px; }
    .posts-row article .content .category {
      font-family: "Montserrat-Medium", sans-serif;
      font-size: 12px;
      color: #ff5e00; }
      .posts-row article .content .category:hover {
        color: #6e0ad6; }
    .posts-row article .content h2 {
      font-family: "Montserrat-Medium", sans-serif;
      font-size: 18px;
      color: #505050;
      margin-top: 12px;
      max-width: 260px;
      line-height: 24px;
      transition: color 0.4s;
      letter-spacing: -0.5px; }
      @media (min-width: 768px) {
        .posts-row article .content h2 {
          font-size: 16px; } }

@font-face {
  font-family: "ZonaPro-Bold";
  src: url("../fonts/ZonaPro-Bold.ttf"); }

@font-face {
  font-family: "ZonaPro-SemiBold";
  src: url("../fonts/ZonaPro-SemiBold.ttf"); }

@font-face {
  font-family: "ZonaPro-Regular";
  src: url("../fonts/ZonaPro-Regular.ttf"); }

@font-face {
  font-family: "ZonaPro-Light";
  src: url("../fonts/ZonaPro-Light.ttf"); }

@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat-Regular.ttf"); }

@font-face {
  font-family: "Montserrat-Medium";
  src: url("../fonts/Montserrat-Medium.ttf"); }

@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../fonts/Montserrat-SemiBold.ttf"); }

@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat-Bold.ttf"); }

@font-face {
  font-family: "Brown-Bold";
  src: url("../fonts/Brown-Bold.ttf"); }

.cities {
  position: relative;
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 110px;
  display: flex;
  flex-direction: column;
  overflow: hidden; }
  @media (min-width: 768px) {
    .cities {
      flex-direction: row;
      padding-bottom: 280px;
      padding-right: 0px !important; } }
  .cities .title {
    display: flex;
    flex-direction: column;
    position: relative; }
    @media (min-width: 768px) {
      .cities .title {
        flex-direction: row; } }
    .cities .title .icon {
      width: 70px;
      height: 100px;
      margin-bottom: 15px; }
      @media (min-width: 768px) {
        .cities .title .icon {
          margin-bottom: 0px;
          margin-right: 20px;
          width: 63px;
          height: 90px; } }
      .cities .title .icon img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .cities .title > h2 {
      font-family: "ZonaPro-Bold", sans-serif;
      font-size: 42px;
      line-height: 40px;
      color: #505050;
      letter-spacing: -0.5px; }
      @media (min-width: 768px) {
        .cities .title > h2 {
          font-size: 52px;
          line-height: 50px; } }
  .cities .cities-container {
    margin-top: 30px;
    position: relative;
    z-index: 2; }
    @media (min-width: 768px) {
      .cities .cities-container {
        margin-top: 0px;
        margin-left: 100px;
        flex: 1;
        overflow: hidden; } }
    .cities .cities-container .cities-swiper {
      height: 430px;
      position: relative;
      width: 100vw;
      left: -24px; }
      @media (min-width: 768px) {
        .cities .cities-container .cities-swiper {
          width: auto;
          left: 0;
          height: 530px; } }
      .cities .cities-container .cities-swiper .swiper-container {
        height: 100%; }
      .cities .cities-container .cities-swiper .swiper-slide {
        width: 270px; }
        @media (max-width: 768px) {
          .cities .cities-container .cities-swiper .swiper-slide:first-child {
            width: 10px !important; }
          .cities .cities-container .cities-swiper .swiper-slide:nth-child(odd) .city {
            border-radius: 60px 0px; }
          .cities .cities-container .cities-swiper .swiper-slide:nth-child(even) .city {
            border-radius: 0px 60px; } }
        @media (min-width: 768px) {
          .cities .cities-container .cities-swiper .swiper-slide {
            width: 380px; }
            .cities .cities-container .cities-swiper .swiper-slide:first-child {
              display: none; }
            .cities .cities-container .cities-swiper .swiper-slide:nth-child(even) .city {
              border-radius: 60px 0px; }
            .cities .cities-container .cities-swiper .swiper-slide:nth-child(odd) .city {
              border-radius: 0px 60px; } }
      .cities .cities-container .cities-swiper .city {
        height: 100%;
        overflow: hidden;
        display: block;
        position: relative; }
        .cities .cities-container .cities-swiper .city:hover img {
          transform: scale(1.2); }
        .cities .cities-container .cities-swiper .city:before {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.2);
          z-index: 1; }
        .cities .cities-container .cities-swiper .city img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.4s; }
        .cities .cities-container .cities-swiper .city h2 {
          position: absolute;
          left: 50px;
          bottom: 50px;
          width: calc(100% - 100px);
          z-index: 2;
          font-family: "ZonaPro-Bold", sans-serif;
          font-size: 30px;
          line-height: 34px;
          color: #fff;
          letter-spacing: -1px; }
    .cities .cities-container .slide-arrows {
      width: 160px;
      display: flex;
      justify-content: space-between;
      z-index: 2;
      margin-top: 40px;
      margin-left: 20px; }
      .cities .cities-container .slide-arrows .slide-arrow {
        width: calc(50% - 5px);
        cursor: pointer; }
        .cities .cities-container .slide-arrows .slide-arrow path {
          fill: #ff5e00;
          transition: fill 0.4s; }
        .cities .cities-container .slide-arrows .slide-arrow.left {
          transform: rotate(180deg);
          margin-top: 18px; }
        .cities .cities-container .slide-arrows .slide-arrow.swiper-button-disabled path {
          fill: #e5e5e7; }
        .cities .cities-container .slide-arrows .slide-arrow:not(.swiper-button-disabled):hover path {
          fill: #6e0ad6; }
  .cities .stroke6 {
    position: absolute;
    top: 50px;
    right: -15px;
    width: 230px; }
    @media (min-width: 768px) {
      .cities .stroke6 {
        top: 150px;
        right: -15px;
        width: 500px; } }

footer {
  background-color: #e5e5e7;
  padding-top: 70px;
  padding-bottom: 70px;
  z-index: 20;
  position: relative; }
  footer .footer1 {
    padding-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px; }
    @media (min-width: 768px) {
      footer .footer1 {
        display: flex;
        justify-content: space-between;
        padding-left: 100px;
        padding-right: 100px;
        padding-bottom: 84px; } }
    footer .footer1 .footer-list p {
      font-family: "ZonaPro-Bold", sans-serif;
      font-size: 16px;
      color: #58009d;
      margin-bottom: 30px; }
    footer .footer1 .footer-list ul {
      list-style: none; }
    footer .footer1 .footer-list .list {
      display: flex; }
      footer .footer1 .footer-list .list ul:first-of-type {
        margin-right: 40px; }
        @media (min-width: 768px) {
          footer .footer1 .footer-list .list ul:first-of-type {
            margin-right: 74px; } }
      footer .footer1 .footer-list .list li a {
        font-family: "Montserrat-Medium", sans-serif;
        font-size: 14px;
        color: #fe5e01;
        margin-bottom: 16px;
        display: block;
        transition: color 0.4s; }
        footer .footer1 .footer-list .list li a:hover {
          color: #58009d; }
    footer .footer1 .footer-list .social-links {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 1fr;
      grid-column-gap: 10px;
      grid-row-gap: 20px; }
      footer .footer1 .footer-list .social-links svg path {
        transition: 0.4s fill; }
      footer .footer1 .footer-list .social-links svg:hover path {
        fill: #58009d; }
      @media (min-width: 768px) {
        footer .footer1 .footer-list .social-links {
          width: 180px;
          display: flex;
          justify-content: space-between; } }
    footer .footer1 .footer-list .app-links {
      width: 110px; }
      @media (min-width: 768px) {
        footer .footer1 .footer-list .app-links {
          width: 150px; } }
      footer .footer1 .footer-list .app-links img {
        width: 100%; }
    @media (max-width: 768px) {
      footer .footer1 .footer-list:nth-last-of-type(1) {
        grid-area: 2 / 2 / 3 / 3; }
      footer .footer1 .footer-list:nth-last-of-type(2) {
        grid-area: 2 / 1 / 3 / 2; }
      footer .footer1 .footer-list:nth-last-of-type(3) {
        grid-area: 1 / 1 / 2 / 3; } }
  footer .footer2 {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.2); }
    @media (min-width: 768px) {
      footer .footer2 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 100px;
        padding-right: 100px; } }
    footer .footer2 .copyright {
      font-family: "Montserrat-Regular", sans-serif;
      font-size: 10px;
      line-height: 18px;
      color: #58009d;
      margin-bottom: 20px; }
    footer .footer2 .logo {
      height: 46px; }
      footer .footer2 .logo img {
        height: 100%; }

.category-page,
.parent-category-page {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  background-color: #fff;
  min-height: 100vh; }
  @media (min-width: 768px) {
    .category-page,
    .parent-category-page {
      padding-top: 180px;
      padding-bottom: 180px; } }
  .category-page .stroke-1,
  .parent-category-page .stroke-1 {
    position: absolute;
    top: 190px;
    left: 0;
    height: 400px;
    z-index: 1; }
  .category-page .stroke-2,
  .parent-category-page .stroke-2 {
    position: absolute;
    top: 500px;
    right: 0;
    height: 500px;
    z-index: 1; }

.parent-category-page .parent-category {
  width: 100%;
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .parent-category-page .parent-category {
      flex-direction: row;
      margin-top: 50px; } }

.parent-category-page .child-category-select {
  margin-top: 24px;
  margin-bottom: 40px;
  max-width: 310px;
  z-index: 2; }
  .parent-category-page .child-category-select .btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 14px;
    grid-row-gap: 10px;
    width: 100%; }
    @media (min-width: 768px) {
      .parent-category-page .child-category-select .btns {
        display: flex;
        flex-direction: column; } }
  @media (min-width: 768px) and (min-width: 768px) {
    .parent-category-page .child-category-select .btns button {
      padding-left: 30px; }
      .parent-category-page .child-category-select .btns button:before {
        right: 30px; } }
  @media (min-width: 768px) {
    .parent-category-page .child-category-select {
      padding-right: 50px;
      margin-top: 0px;
      margin-bottom: 0px; } }

.parent-category-page .child-category-posts {
  flex: 1; }
  @media (min-width: 768px) {
    .parent-category-page .child-category-posts .posts-row {
      grid-template-columns: repeat(3, 1fr); } }

.sort-by {
  display: flex;
  align-items: center;
  font-family: "ZonaPro-Bold", sans-serif;
  font-size: 14px;
  color: #505050; }
  @media (max-width: 768px) {
    .sort-by {
      margin-top: 18px; } }
  .sort-by span,
  .sort-by a {
    font-family: "ZonaPro-Bold", sans-serif;
    color: #fa6400;
    cursor: pointer; }
    .sort-by span:first-of-type,
    .sort-by a:first-of-type {
      margin-left: 14px; }
    .sort-by span:hover,
    .sort-by a:hover {
      color: #6e0ad6; }
    .sort-by span.selected,
    .sort-by a.selected {
      color: #6e0ad6; }
  .sort-by .separator {
    width: 2px;
    height: 14px;
    background-color: #46454c;
    opacity: 0.5;
    margin: 0px 8px; }

.newsletter {
  width: 100%;
  margin-top: 40px;
 }

 .quarenta {
  width: 39%;
  margin-right: 1%;
  float: left;
 }

 .vinte {
  width: 20%;
  float: left;
 }

  @media (min-width: 768px) {
    .newsletter {
      padding: 35px 30px; } }
  .newsletter h2 {
    text-align: center;
    font-family: "ZonaPro-Bold", sans-serif;
    font-size: 18px;
    color: #46454c;
    text-align: center; }
    @media (min-width: 768px) {
      .newsletter h2 {
        font-size: 18px; } }
  .newsletter .form-message {
    text-align: center;
    font-family: "ZonaPro-SemiBold", sans-serif;
    font-size: 20px;
    color: #fff;
    margin-top: 30px; }
  .newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 35px; }
    .newsletter form input,
    .newsletter form select {
      border: none;
      width: 100%;
      height: 35px;
      border-radius: 35px;
      padding: 0px 24px;
      font-family: "ZonaPro-SemiBold", sans-serif;
      font-size: 12px;
      color: #505050;
      outline: none;
      background-color: #fff;
      margin-bottom: 20px; }
      .newsletter form input[type="checkbox"] {
        width: auto;
        height: auto;
      }
    .newsletter form input::placeholder {
      color: #505050; }
    @media (max-width: 768px) {
      .newsletter form .optin {
        margin: 0px; } }
    .newsletter form button, .newsletter form input[type="submit"] {
      padding: 10px 30px;
      background-color: #ff5e00;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      font-family: "ZonaPro-Bold", sans-serif;
      font-size: 12px;
      color: white;
      border-radius: 30px;
      transition: background-color 0.4s; }
      .newsletter form button:disabled {
        cursor: default;
        background-color: #f9f9f9;
        color: #505050;
        opacity: 0.6; }
      .newsletter form button:not(:disabled):hover, .newsletter form input[type="submit"]:hover {
        background-color: #58009d;
        color: #fff; }


.complete-guide-page {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  background-color: #fff; }
  @media (min-width: 768px) {
    .complete-guide-page {
      padding-top: 180px;
      padding-bottom: 180px; } }
  .complete-guide-page .main-post {
    margin-top: 30px; }
    @media (min-width: 768px) {
      .complete-guide-page .main-post {
        height: 545px;
        margin-top: 50px;
        margin-bottom: 0px;
        border-radius: 120px 0px; } }
    @media (min-width: 768px) {
      .complete-guide-page .main-post .content {
        padding: 65px 100px;
        max-width: 780px; } }
    @media (min-width: 768px) {
      .complete-guide-page .main-post .content h2 {
        font-size: 40px;
        letter-spacing: -1px; } }
  .complete-guide-page .latest-news .filter-btn {
    display: none; }
  .complete-guide-page .latest-news svg,
  .complete-guide-page .highlights svg {
    display: none; }
  .complete-guide-page .city-stroke1 {
    position: absolute;
    top: 170px;
    left: 0;
    z-index: 0;
    width: 20%; }
  .complete-guide-page .city-stroke2 {
    position: absolute;
    top: 240px;
    right: 0;
    height: 280px;
    z-index: 0; }
  .complete-guide-page .complete-stroke1 {
    position: absolute;
    top: 240px;
    left: 0;
    height: 280px;
    z-index: 0; }
  .complete-guide-page .stroke2 {
    position: absolute;
    top: 50%;
    right: 0;
    height: 500px;
    z-index: 1; }
  .complete-guide-page .stroke3 {
    position: absolute;
    top: 65%;
    left: 0;
    height: 280px;
    z-index: 0; }

.single-page {
  padding-top: 160px;
  position: relative;
  background-color: #fff; }
  @media (min-width: 768px) {
    .single-page {
      padding-top: 180px; } }
  .single-page .single {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 60px; }
    @media (min-width: 768px) {
      .single-page .single {
        flex-direction: row;
        padding-bottom: 120px; } }
    .single-page .single .post {
      z-index: 2; }
      @media (min-width: 768px) {
        .single-page .single .post {
          flex: 2;
          padding-right: 8%; } }
      .single-page .single .post .post-header {
        border-bottom: 1px solid #00000026; }
        .single-page .single .post .post-header .post-info {
          display: flex;
          margin-bottom: 14px; }
          .single-page .single .post .post-header .post-info .timestamp,
          .single-page .single .post .post-header .post-info .author {
            font-family: "Montserrat-Medium", sans-serif;
            font-size: 12px;
            color: #a4a4a4; }
          .single-page .single .post .post-header .post-info .timestamp {
            text-transform: capitalize; }
          .single-page .single .post .post-header .post-info .separator {
            width: 1px;
            height: 15px;
            background-color: #a4a4a4;
            margin: 0px 10px; }
          .single-page .single .post .post-header .post-info .tag,
          .single-page .single .post .post-header .post-info .author span {
            font-family: "Montserrat-Medium", sans-serif;
            font-size: 12px;
            color: #ff5e00;
            margin-right: 30px; }
          .single-page .single .post .post-header .post-info .tag {
            transition: color 0.4s; }
            .single-page .single .post .post-header .post-info .tag:hover {
              color: #6d09d6; }
        .single-page .single .post .post-header h1 {
          font-family: "ZonaPro-Bold", sans-serif;
          font-size: 28px;
          color: #6d09d6;
          line-height: 34px;
          margin-bottom: 10px;
          letter-spacing: -0.5px; }
          @media (min-width: 768px) {
            .single-page .single .post .post-header h1 {
              font-size: 38px;
              line-height: 42px;
              max-width: 670px; } }
        .single-page .single .post .post-header p {
          font-family: "ZonaPro-SemiBold", sans-serif;
          font-size: 16px;
          line-height: 24px;
          color: #505050; }
          @media (min-width: 768px) {
            .single-page .single .post .post-header p {
              font-size: 18px;
              line-height: 24px;
              max-width: 670px; } }
        .single-page .single .post .post-header .social {
          padding: 30px 0px;
          display: flex;
          align-items: center;
          width: 100%;
          overflow: hidden; }
          .single-page .single .post .post-header .social span {
            font-family: "Montserrat-Medium", sans-serif;
            font-size: 12px;
            color: #a4a4a4;
            margin-right: 10px; }
          .single-page .single .post .post-header .social .share-buttons {
            display: flex; }
            .single-page .single .post .post-header .social .share-buttons .share-button {
              width: 50px;
              height: 25px;
              border: none;
              outline: none;
              display: flex;
              justify-content: center;
              align-items: center;
              margin-right: 2px;
              cursor: pointer; }
              .single-page .single .post .post-header .social .share-buttons .share-button.more {
                background-color: #ee8e2d; }
              .single-page .single .post .post-header .social .share-buttons .share-button.fb {
                background-color: #3c589a; }
              .single-page .single .post .post-header .social .share-buttons .share-button.wpp {
                background-color: #55eb4c; }
              .single-page .single .post .post-header .social .share-buttons .share-button.tw {
                background-color: #55acee; }
              .single-page .single .post .post-header .social .share-buttons .share-button i {
                width: 100%;
                height: 100%; }
      .single-page .single .post .post-body {
        padding-top: 30px; }
        @media screen {
          .single-page .single .post .post-body {
            padding-top: 40px; } }
        .single-page .single .post .post-body .post-img {
          width: 100%;
          height: 325px;
          border-radius: 30px 0px;
          overflow: hidden;
          margin-bottom: 30px; }
          @media (min-width: 768px) {
            .single-page .single .post .post-body .post-img {
              height: 360px;
              border-radius: 0px 60px;
              margin-bottom: 50px; } }
          .single-page .single .post .post-body .post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .single-page .single .post .post-body h1, .single-page .single .post .post-body h2, .single-page .single .post .post-body h3, .single-page .single .post .post-body h4, .single-page .single .post .post-body h5, .single-page .single .post .post-body h6 {
          font-family: "Montserrat-Bold", sans-serif;
          color: #46454c; }
        .single-page .single .post .post-body h1 {
          margin-bottom: 24px; }
        .single-page .single .post .post-body h2 {
          margin-bottom: 18px; }
        .single-page .single .post .post-body h3 {
          margin-bottom: 14px; }
        .single-page .single .post .post-body h4, .single-page .single .post .post-body h5, .single-page .single .post .post-body h6 {
          margin-bottom: 10px; }
        .single-page .single .post .post-body > p,
        .single-page .single .post .post-body em {
          font-family: "Montserrat-Medium", sans-serif;
          font-size: 14px;
          line-height: 24px;
          color: #46454c;
          margin-bottom: 20px; }
          @media (min-width: 768px) {
            .single-page .single .post .post-body > p,
            .single-page .single .post .post-body em {
              font-size: 16px;
              line-height: 26px; } }
        .single-page .single .post .post-body > strong {
          display: inline-block;
          margin-top: 20px; }
        .single-page .single .post .post-body a {
          font-family: "ZonaPro-SemiBold", sans-serif;
          color: #6e0ad6; }
        .single-page .single .post .post-body figure {
          margin-top: 40px; }
          .single-page .single .post .post-body figure img {
            width: 100%;
            height: 221px;
            object-fit: cover;
            border-radius: 30px 0px; }
            @media (min-width: 768px) {
              .single-page .single .post .post-body figure img {
                height: 530px;
                border-radius: 0px 60px; } }
        .single-page .single .post .post-body figcaption {
          font-family: "Montserrat-Regular", sans-serif;
          font-size: 12px;
          line-height: 16px;
          color: #a4a4a4;
          margin-top: 18px;
          margin-bottom: 40px; }
        .single-page .single .post .post-body .wp-caption {
          width: 100% !important; }
          .single-page .single .post .post-body .wp-caption img {
            width: 100%;
            height: auto; }
          .single-page .single .post .post-body .wp-caption p {
            font-family: "Montserrat-Regular", sans-serif;
            font-size: 12px;
            line-height: 16px;
            color: #a4a4a4;
            margin-top: 18px;
            margin-bottom: 40px; }
        .single-page .single .post .post-body iframe {
          width: 100% !important; }
        .single-page .single .post .post-body .heateor_sss_sharing_container {
          display: none !important; }
      .single-page .single .post .comment {
        margin-top: 60px;
        margin-bottom: 80px; }
        .single-page .single .post .comment h3 {
          font-family: "ZonaPro-Bold", sans-serif;
          font-size: 30px;
          color: #46454c;
          letter-spacing: -1px;
          padding-bottom: 24px;
          margin-bottom: 24px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
          @media (min-width: 768px) {
            .single-page .single .post .comment h3 {
              font-size: 22px;
              padding-bottom: 22px;
              margin-bottom: 30px; } }
        .single-page .single .post .comment > p {
          font-family: "Montserrat-Medium", sans-serif;
          font-size: 14px;
          color: #46454c;
          margin-bottom: 14px; }
        .single-page .single .post .comment form textarea {
          width: 100%;
          border: 1px solid rgba(70, 69, 76, 0.2);
          border-radius: 10px;
          font-family: "Montserrat-Medium", sans-serif;
          font-size: 16px;
          outline: none;
          padding: 8px;
          transition: border 0.4s; }
          .single-page .single .post .comment form textarea:focus {
            border: 1px solid #ff5e00; }
        .single-page .single .post .comment form .form-row {
          display: flex;
          flex-direction: column;
          margin-top: 20px; }
          @media (min-width: 768px) {
            .single-page .single .post .comment form .form-row {
              flex-direction: row;
              justify-content: space-between;
              margin-top: 30px; } }
          .single-page .single .post .comment form .form-row .input {
            margin-bottom: 20px; }
            @media (min-width: 768px) {
              .single-page .single .post .comment form .form-row .input {
                width: calc(50% - 10px); } }
            .single-page .single .post .comment form .form-row .input label {
              font-family: "Montserrat-Medium", sans-serif;
              font-size: 14px;
              color: #46454c;
              display: block;
              margin-bottom: 10px; }
            .single-page .single .post .comment form .form-row .input input {
              background-color: #fff;
              border: 1px solid rgba(70, 69, 76, 0.2);
              width: 100%;
              border-radius: 10px;
              font-family: "Montserrat-Medium", sans-serif;
              padding: 12px 8px;
              outline: none;
              transition: border 0.4s; }
              .single-page .single .post .comment form .form-row .input input:focus {
                border: 1px solid #ff5e00; }
        .single-page .single .post .comment form .optin-container span {
          border: 1px solid rgba(70, 69, 76, 0.2); }
        .single-page .single .post .comment form .optin-container p {
          max-width: none;
          font-size: 12px;
          color: #46454c; }
          .single-page .single .post .comment form .optin-container p a {
            color: #ff5e00;
            transition: color 0.4s;
            cursor: pointer; }
            .single-page .single .post .comment form .optin-container p a:hover {
              color: #6d09d6; }
        @media (min-width: 768px) {
          .single-page .single .post .comment form .optin-container .optin {
            align-items: center; } }
        .single-page .single .post .comment form .btn {
          padding: 18px 40px;
          background-color: #ff5e00;
          border: none;
          cursor: pointer;
          font-family: "ZonaPro-SemiBold", sans-serif;
          font-size: 16px;
          color: white;
          width: fit-content;
          border-radius: 30px;
          margin: 50px auto;
          transition: background-color 0.4s;
          display: block; }
          .single-page .single .post .comment form .btn:hover {
            background-color: #6d09d6; }
    .single-page .single .read-more {
      flex: 1;
      z-index: 2; }
      @media (min-width: 768px) {
        .single-page .single .read-more {
          max-width: 280px; } }
      .single-page .single .read-more > h2 {
        font-family: "ZonaPro-Bold", sans-serif;
        font-size: 30px;
        color: #46454c;
        letter-spacing: -1px;
        padding-bottom: 30px;
        border-bottom: 1px solid #00000026;
        margin-bottom: 40px; }
        @media (min-width: 768px) {
          .single-page .single .read-more > h2 {
            font-size: 22px; } }
  .single-page .category-highlights {
    background-color: #6d09d6;
    padding-top: 70px;
    padding-bottom: 70px; }
    @media (min-width: 768px) {
      .single-page .category-highlights {
        padding-bottom: 90px; } }
    .single-page .category-highlights h2 {
      font-family: "ZonaPro-Bold", sans-serif;
      font-size: 30px;
      color: #fff;
      letter-spacing: -1px; }
      @media (min-width: 768px) {
        .single-page .category-highlights h2 {
          font-size: 42px; } }
    .single-page .category-highlights article .content .timestamp,
    .single-page .category-highlights article .content .category,
    .single-page .category-highlights article .content h2 {
      color: #fff; }
    .single-page .category-highlights article .content .separator {
      background-color: #fff; }
    .single-page .category-highlights article .content h2 {
      font-weight: 100; }
  .single-page .stroke1 {
    position: absolute;
    top: 240px;
    right: 0;
    height: 280px;
    z-index: 0; }
  .single-page .stroke2 {
    position: absolute;
    top: 50%;
    left: 0;
    height: 500px;
    z-index: 0; }
  .single-page .stroke3 {
    position: absolute;
    bottom: 30%;
    right: 0;
    width: 20%;
    z-index: 0; }

.posts-column {
  display: flex;
  flex-direction: column; }
  .posts-column article {
    margin-bottom: 30px; }
    .posts-column article .thumbnail {
      width: 100%;
      height: 150px;
      border-radius: 30px 0px;
      position: relative;
      overflow: hidden;
      display: block; }
      @media (min-width: 768px) {
        .posts-column article .thumbnail {
          height: 130px; } }
      .posts-column article .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .posts-column article .content {
      padding: 20px 8px 0px 8px; }
      .posts-column article .content .timestamp {
        font-family: "Montserrat-Medium", sans-serif;
        font-size: 12px;
        color: #a4a4a4;
        text-transform: capitalize; }
      .posts-column article .content .separator {
        width: 1px;
        height: 15px;
        background-color: #a4a4a4;
        margin: 0px 8px; }
      .posts-column article .content .category {
        font-family: "Montserrat-Medium", sans-serif;
        font-size: 12px;
        color: #ff5e00; }
        .posts-column article .content .category:hover {
          color: #6e0ad6; }
      .posts-column article .content h2 {
        font-family: "Montserrat-Medium", sans-serif;
        font-size: 18px;
        color: #505050;
        margin-top: 12px;
        max-width: 260px;
        line-height: 24px; }
        @media (min-width: 768px) {
          .posts-column article .content h2 {
            font-size: 16px; } }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none; }

html,
body,
#app {
  background-color: #f5f5f5;
  width: 100%; }

html {
  scroll-behavior: smooth; }

.container {
  padding-left: 24px;
  padding-right: 24px; }
  @media (min-width: 1200px) {
    .container {
      padding-left: 8%;
      padding-right: 8%; } }
  @media (min-width: 1700px) {
    .container {
      padding-left: 18%;
      padding-right: 18%; } }

.alt-container {
  margin-left: 24px;
  margin-right: 24px; }
  @media (min-width: 1200px) {
    .alt-container {
      margin-left: 8%;
      margin-right: 8%; } }
  @media (min-width: 1700px) {
    .alt-container {
      margin-left: 18%;
      margin-right: 18%; } }

@media (min-width: 768px) {
  .mobile {
    display: none !important; } }

@media (max-width: 768px) {
  .desk {
    display: none !important; } }

.d-flex {
  display: flex; }

.justify-center {
  justify-content: center; }

.justify-between {
  justify-content: space-between; }

.align-center {
  align-items: center; }

.wrap {
  flex-wrap: wrap; }

.bb {
  padding-bottom: 20px;
  border-bottom: 1px solid #00000026; }

.mt-50 {
  margin-top: 50px !important; }

a {
  text-decoration: none; }

.fade-enter-active {
  transition: all 0.3s ease; }

.fade-leave-active {
  transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1); }

.fade-enter,
.fade-leave-to {
  opacity: 0; }

.section-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #00000026;
  flex-wrap: wrap; }
  @media (max-width: 768px) {
    .section-title.wobbm {
      border-bottom: none; } }
  .section-title h2,
  .section-title h1 {
    font-family: "ZonaPro-Bold", sans-serif;
    font-size: 28px;
    color: #505050;
    letter-spacing: -1px; }
    @media (min-width: 768px) {
      .section-title h2,
      .section-title h1 {
        font-size: 40px; } }
    .section-title h2 span,
    .section-title h1 span {
      font-family: "ZonaPro-Light", sans-serif; }

.select-btn {
  height: 50px;
  background-color: #fff;
  color: #505050;
  border-radius: 54px;
  font-family: "ZonaPro-Bold", sans-serif;
  font-size: 14px;
  border: 2px solid #e5e5e7;
  transition: all 0.4s;
  cursor: pointer;
  text-align: left;
  padding-left: 16%;
  position: relative; }
  @media (min-width: 768px) {
    .select-btn {
      height: 58px; } }
  .select-btn:hover {
    background-color: #e5e5e7; }
  .select-btn:before {
    content: "";
    position: absolute;
    right: 10%;
    width: 18px;
    height: 18px;
    background-image: url("/blog/wp-content/themes/blogzapemcasa/assets/images/plus.svg");
    background-size: cover; }
  .select-btn.selected {
    background-color: #ff5e00;
    color: #fff;
    border: none; }
    .select-btn.selected:hover {
      background-color: #ff5e00d3; }
    .select-btn.selected:before {
      background-image: url("/blog/wp-content/themes/blogzapemcasa/assets/images/check.svg"); }

.optin {
  display: flex;
  margin-top: 20px;
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .optin {
      margin-top: 0px;
      margin-bottom: 0px;
      align-items: center; } }
  .optin input {
    opacity: 0;
    width: 0px !important;
    height: 0px; }
  .optin input:checked + span {
    animation: shake 250ms; }
  .optin input:checked + span::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 9px;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: rotate(45deg);
    animation: checked-box 125ms 250ms forwards; }
  .optin span {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    border-radius: 3px;
    transition: all 0.3s;
    background-color: #fff;
    position: relative;
    cursor: pointer; }
  .optin p {
    font-family: "ZonaPro-Regular", sans-serif;
    font-weight: 100;
    color: #fff;
    font-size: 10px;
    flex: 1;
    margin-left: 12px;
    max-width: 190px; }
    .optin p a {
      color: #ff5e00;
      cursor: pointer; }
    @media (min-width: 768px) {
      .optin p {
        max-width: 330px; } }

@keyframes checked-box {
  0% {
    width: 0;
    height: 0;
    border-color: #ff5e00;
    transform: translate(0, 0) rotate(45deg); }
  33% {
    width: 4px;
    height: 0;
    border-color: #ff5e00;
    transform: translate(0, 0) rotate(45deg); }
  100% {
    width: 4px;
    height: 8px;
    border-color: #ff5e00;
    transform: translate(0, -8px) rotate(45deg); } }

@keyframes shake {
  0% {
    transform: scale(1); }
  33% {
    transform: scale(0.7); }
  100% {
    transform: scale(1); } }

.main-post {
  width: 100%;
  height: 294px;
  position: relative;
  border-radius: 30px 0px;
  overflow: hidden; }
  .main-post:hover img {
    transform: scale(1.2); }
  @media (min-width: 768px) {
    .main-post {
      height: 410px;
      margin-bottom: 40px;
      border-radius: 56px 0px; } }
  .main-post:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 70%);
    z-index: 1; }
  .main-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s; }
  .main-post .link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .main-post .content {
    position: absolute;
    bottom: 0px;
    padding: 24px 20px;
    z-index: 2; }
    @media (min-width: 768px) {
      .main-post .content {
        padding: 40px 60px;
        max-width: 780px; } }
    .main-post .content .timestamp {
      font-family: "Montserrat-Medium", sans-serif;
      font-size: 12px;
      color: #fff;
      text-transform: capitalize; }
      @media (min-width: 768px) {
        .main-post .content .timestamp {
          font-size: 14px; } }
    .main-post .content .separator {
      width: 1px;
      height: 15px;
      background-color: #fff;
      margin: 0px 8px; }
    .main-post .content .category {
      font-family: "Montserrat-Medium", sans-serif;
      font-size: 12px;
      color: #fff; }
      .main-post .content .category:hover {
        color: #ff5e00; }
      @media (min-width: 768px) {
        .main-post .content .category {
          font-size: 14px; } }
    .main-post .content h2 {
      font-family: "ZonaPro-Bold", sans-serif;
      font-size: 20px;
      color: #fff;
      margin-top: 12px;
      max-width: 240px; }
      @media (min-width: 768px) {
        .main-post .content h2 {
          font-size: 35px;
          max-width: none; } }

.loading-container {
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, #6d09d6 0%, #5003a3 100%);
  position: fixed;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center; }
  .loading-container img {
    width: 70%;
    max-width: 300px;
    animation: pulse 3s infinite ease; }

@keyframes pulse {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.05); }
  100% {
    transform: scale(1); } }

.not-found-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; }
  .not-found-container h1 {
    font-family: "ZonaPro-Bold", sans-serif;
    font-size: 82px;
    color: #505050; }

.parallax {
  display: none; }
  @media (min-width: 1700px) {
    .parallax {
      display: unset; } }

.posts-loading {
  display: flex;
  gap: 18px;
  position: absolute;
  left: 50%;
  bottom: -80px; }
  .posts-loading span {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background-color: #6d09d6;
    animation: posts-loading .8s infinite alternate; }
    .posts-loading span:nth-of-type(2) {
      animation-delay: 0.2s; }
    .posts-loading span:nth-of-type(3) {
      animation-delay: 0.4s; }

@keyframes posts-loading {
  to {
    opacity: 0.1;
    transform: translate(0, -20px); } }

.page-number-first, .page-number-last, .numbered {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 16px;
  color: #ff5e00;
}

.page-number-first:hover, .page-number-last:hover, .numbered:hover, .current-numeric-page {
  color: #6e0ad6;
}