.dg-categories {
  padding: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .dg-categories {
    padding: 5vw;
  }
}
.dg-categories .dg-categories-top-wrapper {
  margin: 0 auto 3.75rem;
  max-width: var(--wrapped-width);
  text-align: center;
}
.dg-categories .dg-categories-top-wrapper .text-1 {
  color: #5cd2b9;
  font-family: Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: normal;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .dg-categories .dg-categories-top-wrapper .text-1 {
    font-size: 1rem;
  }
}
.dg-categories .dg-categories-top-wrapper .text-2 {
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 3.75rem;
  font-weight: bold;
  line-height: normal;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .dg-categories .dg-categories-top-wrapper .text-2 {
    font-size: 1.25rem;
  }
}
.dg-categories .dg-categories-top-wrapper .text-3 {
  color: #11ffcc;
  font-family: "Work Sans", sans-serif;
  font-size: 3.75rem;
  font-weight: bold;
  line-height: normal;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .dg-categories .dg-categories-top-wrapper .text-3 {
    font-size: 1.25rem;
  }
}
.dg-categories .dg-categories-image {
  background-color: transparent;
  background-image: var(--image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 27.625rem;
  margin: 0 auto 3.75rem;
  width: calc(var(--wrapped-width) - 5rem);
}
@media screen and (max-width: 1024px) {
  .dg-categories .dg-categories-image {
    height: 100vw;
    width: 90vw;
  }
}
.dg-categories ul {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .dg-categories ul {
    flex-direction: column;
    gap: 0.3125rem;
  }
}
.dg-categories ul > li {
  align-items: center;
  background: transparent;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .dg-categories ul > li {
    width: 100%;
  }
}
.dg-categories ul > li.active > a.category-image {
  filter: drop-shadow(0 0 0.3125rem var(--color));
}
.dg-categories ul > li.active > a.category-title {
  background: var(--color, #fff);
}
.dg-categories ul > li.active + a {
  background: var(--color, #fff);
}
.dg-categories ul > li > a.category-image {
  background-image: var(--image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  margin: 0 auto 0.9375rem;
  height: 6.875rem;
  transition: 0.3s filter;
  width: 6.875rem;
}
.dg-categories ul > li > a.category-image:hover, .dg-categories ul > li > a.category-image:has(+ a:hover) {
  filter: drop-shadow(0 0 0.3125rem var(--color));
}
.dg-categories ul > li > a.category-image:hover + a {
  background: var(--color, #fff);
}
.dg-categories ul > li > a.category-title {
  align-items: center;
  background: #fff;
  color: #010101;
  display: flex;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  justify-content: center;
  line-height: 1.1;
  min-height: 4rem;
  padding: 5px;
  text-align: center;
  transition: 0.3s background;
  vertical-align: middle;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .dg-categories ul > li > a.category-title {
    background: var(--color);
    justify-content: flex-start;
    font-size: 1rem;
    padding: 0 0 0 3.75rem;
    position: relative;
  }
  .dg-categories ul > li > a.category-title::before {
    background-color: transparent;
    background-image: var(--image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    filter: grayscale(1) brightness(0);
    height: 2.5rem;
    left: 0.625rem;
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    width: 2.5rem;
  }
}
.dg-categories ul > li > a.category-title:hover {
  background: var(--color, #fff);
}
.dg-categories .posts-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 2.5rem auto 0;
}
.dg-categories .posts-wrapper + a#load-more {
  background: #5cd2b9;
  color: #010101;
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: normal;
  margin: 2.5rem auto 0;
  padding: 0.625rem 1.5625rem;
  transition: 0.3s all;
}
.dg-categories .posts-wrapper + a#load-more:hover {
  background: #010101;
  color: #5cd2b9;
}
.dg-categories .posts-wrapper + a#load-more.active {
  pointer-events: none;
}
.dg-categories .posts-wrapper > .post {
  align-items: center;
  background: var(--background);
  border: 0.1875rem solid var(--color);
  display: flex;
  flex-direction: row;
  gap: 9.375rem;
  justify-content: center;
  margin: 0 auto 2.5rem;
  min-height: 23.125rem;
  padding: 2.1875rem 4.375rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .dg-categories .posts-wrapper > .post {
    flex-direction: column;
    gap: 2.5rem;
    padding: 5vw;
  }
}
.dg-categories .posts-wrapper > .post:nth-child(2n) {
  flex-direction: row-reverse !important;
}
@media screen and (max-width: 1024px) {
  .dg-categories .posts-wrapper > .post:nth-child(2n) {
    flex-direction: column !important;
  }
}
.dg-categories .posts-wrapper > .post:nth-child(2n) > .image-wrapper > div {
  transform: translate3d(1.25rem, 1.875rem, 0);
}
@media screen and (max-width: 1024px) {
  .dg-categories .posts-wrapper > .post:nth-child(2n) > .image-wrapper > div {
    transform: none;
  }
}
.dg-categories .posts-wrapper > .post:last-child {
  margin: 0 auto;
}
.dg-categories .posts-wrapper > .post > .content-wrapper {
  flex: 1;
  text-align: left;
}
.dg-categories .posts-wrapper > .post > .content-wrapper > a.title {
  color: #5cd2b9;
  font-family: "Work Sans", sans-serif;
  font-size: 38px;
  font-weight: bold;
  line-height: 1;
  transition: 0.3s all;
}
@media screen and (max-width: 1024px) {
  .dg-categories .posts-wrapper > .post > .content-wrapper > a.title {
    font-size: 2.5rem;
  }
}
.dg-categories .posts-wrapper > .post > .content-wrapper > a.title::after {
  border-top: 0.1875rem solid #5cd2b9;
  content: "";
  display: block;
  margin: 1.5625rem 0;
  width: 7.0625;
}
.dg-categories .posts-wrapper > .post > .content-wrapper > a.title:hover {
  color: #fff;
}
.dg-categories .posts-wrapper > .post > .content-wrapper > .excerpt {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: normal;
}
.dg-categories .posts-wrapper > .post > .content-wrapper > a.view-more {
  background: #5cd2b9;
  color: #010101;
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: normal;
  margin: 1.25rem 0 0;
  padding: 0.625rem 1.5625rem;
  transition: 0.3s all;
}
.dg-categories .posts-wrapper > .post > .content-wrapper > a.view-more:hover {
  background: #010101;
  color: #5cd2b9;
}
.dg-categories .posts-wrapper > .post > .image-wrapper {
  border: 0.375rem solid var(--color);
  height: 11.9375rem;
  width: 24.6875rem;
}
@media screen and (max-width: 1024px) {
  .dg-categories .posts-wrapper > .post > .image-wrapper {
    border: 0.0625rem solid var(--color);
    height: 80vw;
    width: 80vw;
  }
}
.dg-categories .posts-wrapper > .post > .image-wrapper > div {
  background-color: transparent;
  background-image: var(--image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  transform: translate3d(-1.25rem, 1.875rem, 0);
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .dg-categories .posts-wrapper > .post > .image-wrapper > div {
    transform: none;
  }
}
/*# sourceMappingURL=https://dimasgimeno.3dsignia.com/wp-content/build/scss_library/1582c984b94eff89f662cd63efe6a03435d423a7.css.map */