:root {
  --primary: #45c4f2;
  --primary-hover: #00a1db;
  --secondary: #ffca07;
  --secondary-hover: #f0bd00;
  --disabled: #999;
}

/* Module wrapper */
#ant-rc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}

@media (max-width: 1100px) {
  #ant-rc {
    grid-template-columns: unset;
  }
}
/* Modulte Wrapper End */

/* Post Listing section */
.blog-section {
}

.ca-ant-gridGlobalRC {
  align-items: start;
  grid-template-columns: 4fr 1fr;
  margin: 30px 0 0;
}

@media (max-width: 1100px) {
  .ca-ant-gridGlobalRC {
    grid-template-columns: 1fr;
  }
}

.ca-ant-gridListingRC {
  grid-template-columns: repeat(3, 1fr);
  padding: 0 !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  .ca-ant-gridListingRC {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ca-ant-gridListingRC {
    grid-template-columns: 1fr;
  }
}

.post-link {
  align-self: stretch;
  background-color: whitesmoke;
  color: unset !important;
  text-decoration: none !important;
  transition: all 0.3s;
  border-radius: 10px;
  box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 1),
    0px -10px 10px -16px rgba(0, 0, 0, 1);
}

.post-link:hover {
  transform: scale(1.02);
  transition: all 0.3s;
}

.post-item {
  display: grid;
  grid-template-rows: 200px 1fr;
  transition: all 300ms ease;
  height: 100%;
}

.hs-featured-image-wrapper {
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  max-width: unset;
  border-radius: 10px 10px 0 0;
}

.post-header {
  display: grid;
  padding: 2rem;
  height: 100%;
}

.post-header i {
  margin-right: 1rem;
}

.post-header .post-header-border-bottom {
  border-bottom: 3px solid var(--secondary);
  margin-bottom: 20px;
  margin-top: 20px;
  width: 50px;
}

.post-header .text-title {
  font-size: 1.1em;
  margin: 0 0 10px 0;
  text-transform: capitalize;
}

.post-header .excerpt {
  font-size: 1em;
}

.post-body {
  padding-top: 20px;
  justify-self: end;
  align-self: end;
}

.more-link {
  color: var(--primary);
  margin-left: 0;
  padding: 0;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  color: inherit;
  font-weight: bold;
  font-size: 14px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px, rgba(0, 0, 0, 0.2) 0px 2px 0px;
  border-radius: 50px;
  padding: 2px 8px;
}

.more-link:hover,
.more-link:focus,
.more-link:active {
  color: inherit;
  margin-left: 1rem;
  outline: 0;
  text-decoration: none;
}

.more-link:after {
  content: '\f055';
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  margin-left: 6px;
  color: #14b1e7 !important;
  font-size: 22px;
}

/* Post Listing section End */

/* Blog Filters section */
.blog-filters {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 767px) {
  .blog-filters {
    position: fixed;
    top: 0;
    left: 100%;
  }
}

@media screen and (max-width: 1100px) {
  #blog-filters {
    align-content: flex-start;
    background: white;
    left: unset !important;
    height: 100vh;
    max-width: 320px;
    overflow: visible;
    padding: 1rem 0;
    position: fixed !important;
    right: -320px;
    top: 0;
    transition-duration: 0.25s, 0s;
    transition-property: right, z-index;
    transition-delay: 0s, 0.25s;
    width: 100%;
    z-index: 49;
  }

  #blog-filters.active {
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 5rem;
    right: 0;
    transition-delay: 0s;
    z-index: 1000;
  }
}

#filter-controls {
  align-items: center;
  background-color: white;
  display: flex;
  max-width: inherit;
  padding: 0 1.5rem;
  position: initial;
  top: 0;
  width: unset;
  z-index: 100;
}

@media (max-width: 1100px) {
  #filter-controls {
    padding: 1rem 1.5rem;
    position: fixed;
    width: inherit;
  }
}

#filter-controls b {
  flex: 3;
}

.filter-toggle {
  cursor: pointer;
  flex: 1rem 0 0;
  margin-right: 1rem;
}

@media screen and (max-width: 1100px) {
  .filter-toggle {
    background-color: var(--primary);
    border-radius: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px, rgba(0, 0, 0, 0.2) 0px 2px 24px;
    color: white;
    font-size: 2rem;
    left: -7rem;
    padding: 1rem;
    position: relative;
    top: 10rem;
    transition-duration: 0.25s;
    transition-property: left, background-color, color, box-shadow;
  }

  .filter-toggle:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px, rgba(0, 0, 0, 0.3) 0px 4px 28px;
  }

  #blog-filters.active #filter-controls .filter-toggle {
    background-color: white;
    box-shadow: none;
    color: var(--primary);
    left: 0;
    top: 0;
  }
}

.filter-group {
  align-items: center;
  cursor: pointer;
  margin: 0;
  position: relative;
  z-index: 1;
}

.filter-group.active {
  z-index: 2;
}

.filter-label {
  align-items: center;
  background: white;
  border-radius: 0.5rem;
  color: var(--primary);
  display: flex;
  flex: auto 1 1;
  font-weight: bold;
  justify-content: flex-start;
  margin-right: 1rem;
  overflow: hidden;
  padding: 1rem 1.5rem;
  position: relative;
  transition-duration: 0.25s;
  transition-property: color border-color;
  z-index: 1;
}

.filter-group.active .filter-label,
.filter-group:hover .filter-label {
  color: var(--primary);
}

.filter-label i {
  transition: 0.25s transform;
  margin-right: 1rem;
}

.filter-label.active i {
  transform: rotate(90deg);
}

.filter-options {
  display: flex;
  flex-flow: column nowrap;
  height: 0;
  overflow: hidden;
/*   transition: 0.25s height; */
}

.filter-options.active {
  height: 100%;
}

.option {
  border-radius: 0.5em;
  display: flex;
  margin-left: 1.5rem;
  padding: 1rem 1.5rem;
  line-height: 1.2;
}

.option * {
  pointer-events: none;
}

.option i.fas {
  color: transparent;
  font-size: 1em;
  line-height: inherit;
  margin-right: 0.5em;
}

.option,
.option i.fas {
  transition-duration: 0.25s;
  transition-property: color, background-color;
}

.option.active,
.option.active i.fas {
  color: var(--primary);
}

/* Blog Filters section End */

/* Buttons */
.ant-btn {
  background: var(--primary);
  border-radius: 0.5rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  line-height: 1rem;
  margin: 3.5rem auto 0;
  padding: 2rem 3rem;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.25s;
  transition-property: background, box-shadow;
  white-space: nowrap;
  width: -moz-min-content;
  width: -webkit-min-content;
  width: min-content;
}

.ant-btn.disabled {
  background: rgba(0, 0, 0, 0.05);
  color: var(--disabled);
  cursor: default;
}

#clear-button,
#ok-button {
  flex: 3.5rem 0 0;
  font-size: 1.5rem;
  height: 3.5rem;
  line-height: 1;
  margin: 0;
  padding: 1rem;
}

.ant-btn:not(.disabled):hover {
  background: var(--primary-hover);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px, rgba(0, 0, 0, 0.2) 0px 2px 24px;
}

#load-more {
  margin-bottom: 35px;
}

#load-more span:first-child,
#load-more.disabled span:nth-child(2) {
  display: initial;
}

#load-more.disabled span:first-child,
#load-more span:nth-child(2) {
  display: none;
}

#ok-button {
  background: var(--secondary);
  display: none;
  margin-left: 1rem;
}

#ok-button:hover {
  background: var(--secondary-hover);
}

@media (max-width: 1100px) {
  #ok-button {
    display: initial;
  }
}

.separador-post {
  border-bottom: 3px solid #ffce34;
  width: 20%;
  margin-top: 15px;
}

.fecha-post {
  font-size: 12px;
}

.type-element {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.9em;
  color: #14b1e7;
  font-weight: bold;
}
/* #industries{
display:none;
} */
