/**
 * Returns the value of the `$key` value of a provided `$map`.
 */
/**
 * Uses `getProperty()` to return a value from the `$colors` map.
 */
/**
 * Uses `getProperty()` to return a value from the `$breakpoints` map.
 */
@media (min-width: 768px) {
  .max-width--xlarge {
    width: 100% !important;
    max-width: none !important; } }

/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/
/*------------------------------------*\
  #COLORS
\*------------------------------------*/
/*------------------------------------*\
  #ELEMENT-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HEADER-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HORIZONTAL-SPACING
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
.blog-clp-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0px; }
  .blog-clp-content h1 {
    margin: 0px 10px;
    font-size: 1rem;
    font-weight: 500;
    padding: 50px 0px; }
  .blog-clp-content .filter-tags {
    margin: 20px 10px;
    margin-bottom: 44px;
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .blog-clp-content .filter-tags .tags {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 80%; }
    .blog-clp-content .filter-tags .tag {
      width: 25%;
      text-align: center;
      padding: 10px;
      border: 0.5px solid #B7B7B7;
      list-style: none;
      font-size: 0.9rem; }
      .blog-clp-content .filter-tags .tag:hover {
        cursor: pointer; }
      @media screen and (max-width: 769px) {
        .blog-clp-content .filter-tags .tag {
          font-size: 0.65rem;
          padding: 0px; } }

.blogs-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 50px;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat", Helvetica, Arial, sans-serif; }
  .blogs-content .blog-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    height: 100%; }
    @media screen and (max-width: 769px) {
      .blogs-content .blog-card {
        width: 100%;
        text-align: center; } }
    .blogs-content .blog-card .card-blogimg {
      height: 180px;
      width: 380px; }
    .blogs-content .blog-card .card-header {
      font-size: 1.3rem;
      color: #B59862;
      font-weight: 500; }
    .blogs-content .blog-card .card-title {
      font-size: 1.2rem; }
    .blogs-content .blog-card .card-descrip {
      font-size: 0.9rem;
      color: #00000094; }
    .blogs-content .blog-card .read-more-pdpblog {
      color: #B59862;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 6px;
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 0.8px; }
    .blogs-content .blog-card .card-reader {
      font-size: 1.1rem;
      text-decoration: underline;
      color: #B59862;
      cursor: pointer; }

.blog-carousel {
  width: 100%;
  max-width: 1440px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  gap: 20px; }
  .blog-carousel .detailBlog-header {
    margin: 30px 10px; }
  .blog-carousel .carousel-arrows {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    font-size: 22px; }
    .blog-carousel .carousel-arrows .carousel-arrow {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 22px;
      color: #333;
      -webkit-transition: color 0.2s ease;
      transition: color 0.2s ease; }
      .blog-carousel .carousel-arrows .carousel-arrow:hover {
        color: #000; }
  .blog-carousel .blog-carousel-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    padding: 10px;
    width: 90%;
    height: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
    scroll-behavior: smooth; }
    .blog-carousel .blog-carousel-cards .blog-carousel-card {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 360px;
              flex: 0 0 360px;
      padding: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 30px; }
      .blog-carousel .blog-carousel-cards .blog-carousel-card .blog-carousel-header {
        font-size: 0.9rem;
        color: #B59862; }
      .blog-carousel .blog-carousel-cards .blog-carousel-card .blog-carousel-descrip {
        font-size: 0.95rem; }
      .blog-carousel .blog-carousel-cards .blog-carousel-card .blog-carousel--reader {
        font-size: 0.9rem;
        color: #B59862; }
      .blog-carousel .blog-carousel-cards .blog-carousel-card .blog-carousel-img {
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden; }
      .blog-carousel .blog-carousel-cards .blog-carousel-card .blog-carousel-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center; }

.pagination-wrapper {
  text-align: center;
  margin: 20px 0;
  font-family: Arial, sans-serif; }

.pagination {
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  gap: 15px; }

.pagination li {
  display: inline-block; }

.pagination a,
.pagination .left, .pagination .right {
  text-decoration: none;
  color: #8B5E3C;
  font-size: 18px;
  padding: 5px 8px;
  -webkit-transition: color 0.2s, -webkit-transform 0.2s;
  transition: color 0.2s, -webkit-transform 0.2s;
  transition: color 0.2s, transform 0.2s;
  transition: color 0.2s, transform 0.2s, -webkit-transform 0.2s;
  cursor: pointer; }

.pagination a:hover,
.pagination .arrow:hover {
  color: #A97450;
  -webkit-transform: scale(1.2);
          transform: scale(1.2); }

.pagination .active a {
  border-bottom: 2px solid #8B5E3C;
  font-weight: bold; }

@media (max-width: 767px) {
  .filter-tags {
    width: 100% !important; }
    .filter-tags .tag {
      width: 30% !important;
      height: 38px; }
  .blogs-content .blog-card .card-header,
  .blogs-content .blog-card .card-title,
  .blogs-content .blog-card .card-descrip,
  .blogs-content .blog-card .read-more-pdpblog {
    font-size: 12px;
    letter-spacing: 0.48px; } }

.filter-tags .tag.activeBorder {
  background-color: #dfdede;
  border-bottom: 2px solid #B7B7B7;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease; }


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