/* =========================================
   Portfolio Page Specific Styles
   ========================================= */
/* =========================================
   Breakpoint System
   ========================================= */
/* =========================================
   Button Styles Mixin
   ========================================= */
/* =========================================
   Horizontal Scroll Container Mixin
   ========================================= */
/* Hero Section */
.portfolio-section {
  background-image: url(../image/news-press/web.png);
  background-size: cover;
  background-position: inherit;
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-white-transparent-1);
  position: relative;
  background-attachment: fixed;
  padding-top: 140px;
  padding-bottom: 120px;
}

@supports (-webkit-touch-callout: none) {
  .portfolio-section {
    background-attachment: scroll;
  }
}

.portfolio-section .p-24 {
  padding-top: 20px !important;
}

@media (max-width: 1024px) {
  .portfolio-section .p-24 {
    padding-block: 16px 20px !important;
  }
}

.portfolio-section h1 {
  line-height: 120%;
  text-align: center;
  padding-inline: 46px;
  text-shadow: 0px 0px 36px rgba(255, 255, 255, 0.4509803922);
}

.portfolio-section p {
  color: var(--color-white);
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  opacity: 0.7 !important;
}

@media (max-width: 1680px) {
  .portfolio-section h1 {
    margin: auto;
  }
}

@media (max-width: 1680px) {
  .portfolio-section p {
    max-width: 750px;
    padding-inline: 0px;
  }
}

@media (max-width: 1024px) {
  .portfolio-section {
    background-image: url(../image/news-press/tab.png);
    height: auto;
    background-attachment: unset;
    background-position: center;
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .portfolio-section p {
    max-width: 420px !important;
    font-size: 20px;
    padding-inline: 0px !important;
  }

  .portfolio-section h1 {
    max-width: 522px;
    padding-inline: 0px;
    margin-inline: 4px;
    margin: auto;
  }

  .portfolio-section:after,
  .portfolio-section::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .portfolio-section p {
    font-size: 16px;
    padding-inline: 0px;
  }
}

@media (max-width: 600px) {
  .portfolio-section {
    padding-top: 120px;
    padding-bottom: 80px;
    height: auto;
    background-image: url(../image/news-press/mob.png);
    background-attachment: unset;
  }
}

.free-consultation {
  width: 253px !important;
  margin: 0px auto 0;
}

@media (max-width: 1024px) {
  .free-consultation {
    margin: 0 auto 0;
    width: 203px !important;
  }
}

.news-press-section {
  padding: 120px;
  color: #08121C;
}



@media (max-width: 1680px) {
  .news-press-section {
    padding: 100px 80px;
  }
}

@media (max-width: 1440px) {
  .news-press-section {
    padding: 80px 60px;
  }
}

@media (max-width: 1024px) {
  .news-press-section {
    padding: 40px 40px;
  }
}

@media (max-width: 600px) {
  .news-press-section {
    padding: 40px 16px;
  }
}

.np-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1680px) {
  .np-cards-grid {
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .np-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .np-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.np-card {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.np-card:hover {
  border: 1px solid transparent;
  background-image: linear-gradient(#08121c, #08121c), linear-gradient(94.64deg, #01CBCF -3.18%, #0082EB 98.57%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

@media (max-width: 1024px) {
  .np-card {
    padding: 20px;
  }
}

.np-card__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.np-card__thumb {
  position: relative;
  width: 100%;
  height: 362px;
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  flex-shrink: 0;
}

@media (max-width: 1680px) {
  .np-card__thumb {
    height: 320px;
  }
}

@media (max-width: 1440px) {
  .np-card__thumb {
    height: 276px;
  }
}

@media (max-width: 1024px) {
  .np-card__thumb {
    height: 292px;
  }
}

.np-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.np-card__link:hover .np-card__thumb img {
  transform: scale(1.04);
}

.np-card__thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 18, 28, 0.72) 0%, transparent 100%);
  pointer-events: none;
}

.np-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 24px;
}

.np-card__category {
  display: block;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #3ec8e0;
  min-height: 40px;
  padding-bottom: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.np-card__category::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 20px;
  background-color: #3ec8e0;
  border-radius: 0px;
  margin-right: 8px;
}

.np-card__title {
  font-family: "Roboto";
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0px;
  color: #ffffff;
  min-height: 84px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 1680px) {
  .np-card__title {
    font-size: 18px;
    min-height: 75.6px;
  }
}

@media (max-width: 1440px) {
  .np-card__title {
    font-size: 16px;
    min-height: 67.2px;
  }
}

@media (max-width: 1024px) {
  .np-card__title {
    font-weight: 600;
    font-size: 20px;
    min-height: 84px;
  }
}

.np-card__excerpt {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0px;
  padding-block: 8px 24px;
  color: rgba(255, 255, 255, 0.7);
  min-height: 99.2px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 1680px) {
  .np-card__excerpt {
    font-size: 14px;
    min-height: 100px;
  }
}

@media (max-width: 1440px) {
  .np-card__excerpt {
    font-size: 12px;
    padding-block: 8px 16px;
  }
}

@media (max-width: 1024px) {
  .np-card__excerpt {
    font-size: 16px;
    padding-block: 8px 24px;
    min-height: 110px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .np-card__excerpt {
    min-height: 140px;
  }
}

.np-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 1440px) {
  .np-card__footer {
    padding-top: 16px;
  }
}

@media (max-width: 1024px) {
  .np-card__footer {
    padding-top: 12px;
  }
}

.np-card__date {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #E5E5E5;
}

@media (max-width: 1024px) {
  .np-card__date {
    font-size: 14px;
  }
}

.news-press-section .np-card-btn {
  width: 72px;
  height: 48px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.news-press-section .np-card-btn img {
  width: 14px;
  height: 14px;
}

@media (max-width: 1024px) {
  .news-press-section .np-card-btn {
    width: 56px;
    height: 40px;
    padding: 0;
  }
}

.np-no-posts {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  grid-column: 1/-1;
  padding: 48px 0;
  font-size: 16px;
  font-family: "Google Sans", sans-serif;
}

.np-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.np-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid #1e2d3d;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-family: "Google Sans", sans-serif;
  text-decoration: none;
  background-color: #0d1822;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.np-pagination .page-numbers:hover,
.np-pagination .page-numbers.current {
  background-color: #1a527a;
  border-color: #4a9fd4;
  color: #ffffff;
}

.np-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  cursor: default;
  color: rgba(255, 255, 255, 0.4);
}

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