.slider {
  margin-top: 4rem;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-thumbnail {
  background: linear-gradient(315deg, hsla(34, 52%, 84%, .2) 21.59%, rgba(250, 252, 255, .2) 78.41%);
}

.swiper-slide img {
  width: 100%;
}

.slider-thumbnail img {
  border: 3px solid #ddd;
  background: rgba(0, 0, 0, .75);
  opacity: .5;
}

.slider-thumbnail .swiper-slide-thumb-active img {
  border: 3px solid #ffae1c;
  opacity: 1;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  width: 40px;
  height: 40px;
  font-size: 24px;
  --swiper-navigation-size: 36px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-box-pack: center;
  justify-content: center;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 9999px;
  -webkit-box-shadow: 0 4px 12px 0 rgba(28, 30, 34, .08);
  box-shadow: 0 4px 12px 0 rgba(28, 30, 34, .08);
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  --swiper-navigation-size: 34px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-box-pack: center;
  justify-content: center;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 9999px;
  -webkit-box-shadow: 0 4px 12px 0 rgba(28, 30, 34, .08);
  box-shadow: 0 4px 12px 0 rgba(28, 30, 34, .08);
  font-size: 18px;
  font-weight: bold;
}

.button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-box-pack: center;
  justify-content: center;
  height: 2.5rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  color: #334155;
  padding: calc(.5rem - 1px) .75rem;
  vertical-align: top;
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
}

.button.is-link-underline {
  background: none !important;
  color: #182a73;
  padding-right: 0;
  padding-left: 0;
  float: inline-end;
  font-size: 18px;
}

.button.is-link-underline i {
  margin-left: 8px;
}

.featured {
  background: linear-gradient(180deg, #fff, #fafcff 73.5%, #eef3fa);
  padding-bottom: 32px;
  padding-top: 0;
}

.featured .featured-slider {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.featured .featured-slider .box {
  padding: 2rem;
  text-align: center;
  border: var(--border);
  border-radius: .5rem;
}

.featured .featured-slider .box img {
  height: auto;
  width: 100%;
  transition: .2s linear;
}

.featured .featured-slider .box:hover img {
  transform: scale(.9);
  transition: .2s linear;
}

.featured .featured-slider .box .content h3 {
  color: var(--black);
}

.featured .featured-slider .box .content .price {
  color: var(--black);
}

.section-project .is-grid {
  --breakpoint-grid-column-gap: 8px;
  --breakpoint-grid-row-gap: 8px
}

.is-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[var];
  grid-template-columns: repeat(var(--breakpoint-grid-columns), 1fr);
  grid-gap: var(--breakpoint-grid-row-gap) var(--breakpoint-grid-column-gap);
}

.card-listing {
  background: transparent;
  overflow: hidden;
}

.card {
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #334155;
  max-width: 100%;
  position: relative;
}

.card-project-2 {
  background: transparent;
  border: 1px solid transparent;
  -webkit-transition: background-color .2s ease, border .2s ease;
  transition: background-color .2s ease, border .2s ease;
  /* padding: 12px; */
}

@media (hover: hover) and (pointer:fine) {
  .card-project-2:hover .card-image>img:not(.list-ranking__img) {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }
}

@-webkit-keyframes i {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
  }
}

@keyframes i {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
  }
}

@media (hover: hover) and (pointer:fine) {
  .card-project-2:not(.is-boxed):hover {
    background: #fff;
    -webkit-box-shadow: 0 4px 12px 0 rgba(28, 30, 34, .08);
    box-shadow: 0 4px 12px 0 rgba(28, 30, 34, .08)
  }
}

.card-project-2 .card-image {
  padding-top: 116.66667%;
  position: relative;
  width: 100%;
  display: block;
  border-radius: 6px;
  overflow: hidden
}

.card-project-2 .card-image iframe,
.card-project-2 .card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 0.85714;
  overflow: hidden
}

.card-project-2 .card-image img {
  -webkit-transition: -webkit-transform 3s ease 0s;
  transition: -webkit-transform 3s ease 0s;
  transition: transform 3s ease 0s;
  transition: transform 3s ease 0s, -webkit-transform 3s ease 0s
}

.card-project-2 .card-content {
  background: transparent;
  padding: 12px 0 0
}

.card-project-2 .card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  gap: 8px;
  padding-bottom: 16px
}

.card-project-2 .card-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700
}

.card-project-2 .card-title+.list-utilities {
  margin-top: 4px
}

.card-project-2 .card-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  gap: 4px;
  border-top: 1px solid #e2e8f0;
  padding: 8px 0 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400
}

.card-project-2 .card-address .ti {
  font-size: 16px
}

.card-project-2 .card-address+.card-price,
.card-project-2 .card-address+.list-utilities {
  margin-top: 4px
}

.card-project-2 .card-price {
  font-weight: 700;
  letter-spacing: -.5px;
  font-size: 1.25rem;
  line-height: 1.75rem
}

.card-project-2 .card-price+.list-utilities {
  margin-top: 4px
}

.card-project-2 .card-logo {
  height: 42px;
  max-width: 78px;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.card-project-2 .card-logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center right;
  object-position: center right
}

.badges {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-box-pack: start;
  justify-content: flex-start;
  gap: 8px;
}

.card-project-2 .badges {
  top: 1.5rem;
  left: 1.5rem;
}

.badges {
  position: absolute;
  width: calc(100% - 80px);
  z-index: 1;
}

@-webkit-keyframes g {
  0% {
    left: -10%
  }

  to {
    left: 110%
  }
}

@keyframes g {
  0% {
    left: -10%
  }

  to {
    left: 110%
  }
}

.badge.is-effect {
  position: relative;
  overflow: hidden;
  border: 0
}

.badge.is-effect:after {
  background: #fff;
  content: "";
  height: 64px;
  width: 32px;
  opacity: .15;
  position: absolute;
  top: -12px;
  -webkit-transform: rotate(335deg);
  transform: rotate(335deg);
  -webkit-animation: 2s cubic-bezier(.19, 1, .22, 1) infinite g;
  animation: 2s cubic-bezier(.19, 1, .22, 1) infinite g;
  pointer-events: none;
  z-index: 0;
  -webkit-filter: blur(6px);
  filter: blur(6px)
}

.card-project-2 .badge.is-unique {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-box-pack: start;
  justify-content: flex-start;
  background: -webkit-gradient(linear, right top, left top, from(#c2812a), to(#2e438f));
  background: linear-gradient(270deg, #c2812a, #2e438f);
  border-radius: 0 0 4px 4px;
  padding: 0 0 0 32px;
  white-space: nowrap
}

.card-project-2 .badge.is-unique:hover .marquee__text {
  -webkit-animation-play-state: paused;
  animation-play-state: paused
}

.card-project-2 .badge.is-unique .ti {
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  font-size: 16px;
  line-height: 24px;
  background: #384889;
  z-index: 1;
  text-align: center
}

.card-project-2 .badge.is-unique .marquee-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex
}

.card-project-2 .badge.is-unique .marquee__text {
  --time: 10s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -moz-inline-box;
  display: inline-flex;
  white-space: nowrap;
  -webkit-animation: i var(--time) infinite linear;
  animation: i var(--time) infinite linear;
  -webkit-animation-delay: calc(var(--time)/-1);
  animation-delay: calc(var(--time)/-1);
  -webkit-transition: .5s;
  transition: .5s;
  padding: 0 32px 0 0
}

.card-project-2 .button-favorite {
  top: 1.25rem;
  right: 1.25rem
}

.card-project-2 .list-utilities,
.card-project-2 .list-utilities-item {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400
}

.card-project-2.is-boxed {
  background: #fff;
  border-color: #e2e8f0
}

.badge {
  background: #fff;
  border-radius: 4px;
  border: 1px solid transparent;
  color: #334155;
  font-size: .8125rem;
  line-height: 24px;
  font-weight: 600;
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-box-pack: center;
  justify-content: center;
  gap: 8px;
  padding: calc(.25rem - 1px) .5rem;
  white-space: nowrap;
  outline: none
}

.badge .ti {
  font-size: 16px
}

.badge.is-rounded {
  border-radius: 9999px
}

.badge.is-primary {
  background: #c2812a;
  color: #fff
}

.badge.is-primary.is-light {
  background: #faf3e6;
  color: #c2812a
}

.badge.is-primary.is-gradient {
  background: linear-gradient(289.36deg, #ddb884 1.23%, #c2812a 97.63%)
}

.badge.is-secondary {
  border-color: 1px solid #334155;
  color: #334155
}

.badge.is-black,
.badge.is-booking,
.badge.is-danger,
.badge.is-gradient,
.badge.is-grey,
.badge.is-info,
.badge.is-link,
.badge.is-pending,
.badge.is-promotion,
.badge.is-sold,
.badge.is-success,
.badge.is-text,
.badge.is-warning {
  color: #fff
}

.badge.is-link {
  background: #182a73
}

.badge.is-white {
  background: #fff;
  color: #334155
}

.badge.is-black {
  background: #000
}

.badge.is-black.is-shade-50 {
  background: rgba(0, 0, 0, .5)
}

.badge.is-text {
  background: #334155
}

.badge.is-promotion {
  background: #ea580c
}

.badge.is-success {
  background: #16a34a
}

.badge.is-success.is-light {
  background: #f0fdf4;
  color: #16a34a
}

.badge.is-success.is-dark {
  background: #15803d;
  color: #fff
}

.badge.is-info {
  background: #0284c7
}

.badge.is-info.is-light {
  background: #f0f9ff;
  color: #0284c7
}

.badge.is-warning {
  background: #ea580c
}

.badge.is-warning.is-light {
  background: #fff7ed;
  color: #ea580c
}

.badge.is-warning.is-light .ti {
  color: #ea580c
}

.badge.is-danger {
  background: #dc2626
}

.badge.is-danger.is-light {
  background: #fef2f2;
  color: #dc2626
}

.badge.is-danger.is-outlined {
  background: #fff;
  border-color: rgba(185, 28, 28, .65);
  color: #b91c1c
}

.badge.is-grey {
  background: #475569
}

.badge.is-grey.is-light {
  background: #f1f5f9;
  color: #334155
}

.badge.is-grey.is-light .ti {
  color: #475569
}

.badge.is-gradient {
  background: linear-gradient(289.36deg, #ec8585 1.23%, #dc2626 97.63%);
  border-right: 0
}

.badge.is-gradient .icon {
  width: 14px;
  height: 14px;
  background: #fff
}

.badge.is-gradient .icon .ti {
  font-size: 10px
}

.badge.is-family-title {
  gap: 4px;
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 700
}

.badge.is-sold {
  background: #ef4444;
  color: #fff
}

.badge.is-booking {
  background: #8b5cf6
}

.badge.is-pending {
  background: rgba(110, 231, 183, .2)
}

.badge.is-approved,
.badge.is-cancel,
.badge.is-doing,
.badge.is-holding,
.badge.is-pending-1,
.badge.is-waiting {
  color: #475569
}

.badge.is-approved .ti,
.badge.is-cancel .ti,
.badge.is-doing .ti,
.badge.is-holding .ti,
.badge.is-pending-1 .ti,
.badge.is-waiting .ti {
  font-size: 10px
}

.badge.is-holding {
  background: rgba(139, 92, 246, .2)
}

.badge.is-doing {
  background: rgba(147, 197, 253, .2)
}

.badge.is-approved {
  background: rgba(110, 231, 183, .2)
}

.badge.is-waiting {
  background: rgba(217, 119, 6, .2)
}

.badge.is-pending-1 {
  background: rgba(110, 231, 183, .2)
}

.badge.is-cancel {
  background: hsla(0, 94%, 82%, .2)
}

.badge.is-medium {
  font-size: .875rem;
  line-height: 28px;
  height: 28px;
  padding: .3125rem .5rem
}

.badge.is-small {
  height: 20px;
  line-height: 20px;
  padding: 3px 4px
}

.section-listing {
  margin-bottom: 2rem;
}

.card-listing .swiper-custom {
  position: relative;
  border-radius: 6px;
  margin: 0 !important;
  -webkit-transition: -webkit-box-shadow .3s ease;
  transition: -webkit-box-shadow .3s ease;
  transition: box-shadow .3s ease;
  transition: box-shadow .3s ease, -webkit-box-shadow .3s ease
}

.card-listing .swiper-slide {
  width: 100% !important;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  margin: 0 !important
}

.card-listing .swiper-slide iframe,
.card-listing .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1.77778;
  overflow: hidden
}

.card-listing .nav-button-next {
  right: 12px !important
}

.card-listing .nav-button-prev {
  left: 12px !important
}

.card-listing .swiper-pagination-bullets {
  --swiper-pagination-bottom: 12px;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px
}

.card-listing .card-price {
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: -.5px;
  font-size: 18px;
  line-height: 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-box-align: center;
  align-items: center;
  white-space: nowrap
}

.card-listing .card-price p:first-child,
.card-listing .card-price p a {
  color: #334155;
}

.card-listing .card-price-number {
  margin: 0;
}

.card-listing .card-price-text {
  font-size: 14px;
  line-height: 1.125rem;
  font-weight: 400;
  color: rgba(71, 85, 105, .5)
}

.card-listing .card-price__origin {
  font-size: .8125rem;
  line-height: 1.125rem;
  font-weight: 400;
  color: #dc2626
}

.card-listing .card-price+.card-summary {
  margin-top: 10px;
}

.card-summary {
  list-style: none;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-listing .card-summary-item {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
}

.card-summary-item {
  display: inline;
  white-space: nowrap;
}

.card-summary-item:not(:last-child) {
  margin-right: .5rem;
}

.card-summary-item {
  display: inline;
  white-space: nowrap;
}

.card-listing .card-content {
  background: transparent !important;
  padding: 12px 0 0;
}

.card-content:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.card-listing .card-summary+.card-title {
  margin-top: 10px;
}

.card-listing .card-title {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  -webkit-transition: color .1s ease;
  transition: color .1s ease;
}

.card-listing .card-title a {
  color: #3d3d3d;
}

.swiper-custom-container .swiper,
.swiper-custom-container .swiper-container {
  position: unset;
  overflow: hidden
}

.swiper .swiper-slide {
  position: relative;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.swiper .swiper-autoheight,
.swiper .swiper-autoheight .swiper-slide {
  height: auto
}

.swiper .swiper-pagination-bullets {
  --swiper-pagination-bottom: 32px
}

.swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-pagination-bullet-inactive-opacity: .5;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-theme-color: #fff
}

.card-post {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-flow: column;
  width: 100%;
}

.section-news-highlight .template-highlight-post {
  -ms-grid-columns: 1fr 460px;
  grid-template-columns: 1fr 460px;
}

.template-highlight {
  display: -ms-grid;
  display: grid;
  width: 100%;
  height: auto;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem
}

.template-highlight-post.is-category {
  grid-column-gap: 1.5rem;
}

.template-highlight-post:not(.is-category) .template-highlight-post-sidebar .card-post {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 1fr;
  grid-template-columns: 120px 1fr;
  grid-gap: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-box-align: start;
  align-items: flex-start
}

.section-news-highlight {
  padding-bottom: 2rem;
}

.section-news-highlight {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(73.5%, #faf7f2), to(#faf7f2));
  background: linear-gradient(180deg, #fff, #faf7f2 73.5%, #faf7f2);
}

.section-news-highlight .template-highlight-post-content .card-post .card-image {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
  display: block
}

.section-news-highlight .template-highlight-post-content .card-post .card-image iframe,
.section-news-highlight .template-highlight-post-content .card-post .card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1.77778;
  overflow: hidden
}

.card-post .card-image+.card-content {
  margin-top: 12px;
  margin-left: 0
}

.card-post .card-image img {
  border-radius: 6px;
  -webkit-transition: -webkit-transform 1s cubic-bezier(.19, 1, .22, 1);
  transition: -webkit-transform 1s cubic-bezier(.19, 1, .22, 1);
  transition: transform 1s cubic-bezier(.19, 1, .22, 1);
  transition: transform 1s cubic-bezier(.19, 1, .22, 1), -webkit-transform 1s cubic-bezier(.19, 1, .22, 1);
  height: 100%;
  width: 100%;
}

.card-post .card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-flow: column;
  width: 100%;
  background: transparent;
  padding: 0
}

.card-post .card-title,
.card-post .card-title a {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: #334155;
  -webkit-transition: color .1s ease;
  transition: color .1s ease
}

.card-post .card-title,
.card-post .card-title a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.card-content:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px
}

.card-content:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px
}

.card-post .card-text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #475569;
  margin-top: 10px;
}

.card-post .card-text+.list-utilities {
  margin-top: .25rem;
}

.card-post .list-utilities {
  line-height: 18px;
  margin-top: 10px;
}

.list-utilities-item {
  font-size: 15px;
  font-weight: inherit;
  display: inline;
  color: #334155;
  -webkit-transition: color .2s ease;
  transition: color .2s ease
}

.list-utilities-item.is-link {
  font-weight: 600;
  color: #182a73
}

.list-utilities:not(.is-align-right) .list-utilities-item:not(:last-child):after {
  content: ",";
  margin-right: .25rem
}

.list-utilities.is-dot .list-utilities-item:not(:last-child):after {
  content: "";
  background: #aab7ca;
  border-radius: 9999px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -moz-inline-box;
  display: inline-flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 .5rem;
  height: 4px;
  width: 4px;
  vertical-align: middle;
}

.list-utilities.is-align-right .list-utilities-item:not(:last-child):after {
  content: ",";
}

.list-utilities.is-align-right .list-utilities-item+.list-utilities-item {
  margin-left: .25rem;
}

a.list-utilities-item:hover {
  color: #2e438f;
}

.card-image {
  display: block;
  position: relative;
  will-change: transform;
}

.template-highlight-post.is-category .template-highlight-post-sidebar {
  display: grid;
  grid-template-columns: repeat(2, 215px);
  grid-gap: 1.5rem;
}

.card-post .card-image {
  border-radius: 6px;
  overflow: hidden;
}

.section-news-highlight .template-highlight-post-content .card-post .card-image {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
  display: block
}

.card-post:hover .card-title,
.card-post:hover .card-title a {
  color: #2e438f
}

.card-post:hover .card-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1)
}

.section-news-highlight .template-highlight-post-sidebar {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}


@media screen and (max-width: 990px) {
  .card-listing .swiper-pagination-bullets {
    display: none
  }

  .section-listing .is-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
  }

  .section-listing .is-grid::-webkit-scrollbar {
    width: 0;
    height: 0
  }

  .section-listing .is-grid .card-listing {
    min-width: 300px;
    width: 300px;
    padding: 0;
    margin-right: 20px;
  }

  .section-listing .is-grid .card-slider {
    -ms-touch-action: unset;
    touch-action: unset
  }
}

@media screen and (min-width: 992px) {
  .section-project .is-grid {
    --breakpoint-grid-columns: 3
  }
}

@media screen and (max-width: 990px) {
  .section-project .is-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
  }

  .section-project .is-grid::-webkit-scrollbar {
    width: 0;
    height: 0
  }

  .section-project .is-grid .card-project-2 {
    min-width: 314px;
    width: 314px
  }
}

@media (max-width:768px) {
  .slider {
    margin-top: 8rem;
  }

  .featured .featured-slider .box img {
    width: 86%;
  }

  .featured .featured-slider .box .content h3 {
    font-size: 16px;
  }

  .button.is-link-underline span {
    display: none;
  }

  .section-project .is-grid .card-project-2 {
    padding: 0;
    margin-right: 20px;
  }

  .section-news-highlight {
    padding: 0;
  }

  .section-news-highlight .template-highlight {
    margin-bottom: 16px;
  }

  .section-news-highlight .template-highlight-post {
    width: 100%;
    display: block;
    position: relative;
  }

  .template-highlight-item.template-highlight-post-content {
    margin-bottom: 2rem;
  }

  .template-highlight-post.is-category .template-highlight-post-sidebar {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
  }

  .section-news-highlight .template-highlight-post-sidebar {
    row-gap: 20px !important;
  }

  .section-news-highlight .template-highlight-post-sidebar .card-post {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-box-align: start;
    align-items: flex-start;
    gap: 12px;
  }

  .section-news-highlight .template-highlight-post-sidebar .card-post .card-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 120px;
    height: 76px;
    padding: 0;
  }

  .section-news-highlight .template-highlight-post-sidebar .card-post .card-content {
    margin-top: 0;
  }
}