*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
*::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border-radius: 6px;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(18, 14, 71, 0.99);
}
*::-webkit-scrollbar-track {
  background-color: #f3fcff;
}

a {
  text-decoration: none;
}

.truncate1 {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate2 {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate3 {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.purple-bg {
  background-color: #f0eeff;
}

.dark-purple-bg {
  background-color: #2d203b;
}
.dark-purple-bg .section-heading {
  color: #ffffff;
  border-left: 5px solid rgb(255, 91, 35);
}
.dark-purple-bg .common-btn {
  border: 1px solid #ff5b23;
  background-color: transparent;
  color: #ffffff;
}
.dark-purple-bg .common-btn svg path,
.dark-purple-bg .common-btn svg {
  stroke: #ffffff;
}
.dark-purple-bg .common-btn:hover {
  color: #ffffff;
}

.common-btn {
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 11px 22px;
  padding-top: 12.5px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  line-height: 14.4px;
  letter-spacing: 1.2px;
  text-align: left;
  color: #333333;
  background-color: #ade6ed;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.common-btn svg {
  margin-left: 6px;
  transition: transform 0.25s ease;
}
.common-btn:hover {
  color: #333333;
  text-decoration: underline;
}
.common-btn:hover .black-arrow-up-right {
  transform: rotate(45deg);
}
.common-btn:hover svg {
  transform: translateX(3px);
}

.img-container {
  width: 100%;
  overflow: hidden;
}
.img-container img {
  transition: transform 0.35s ease;
}

.card-skeleton {
  width: 100%;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px; /* To give space between skeletons */
  display: flex;
  flex-direction: column;
}

/* Image Skeleton */
.image-skeleton {
  width: 100%;
  height: 300px; /* Approximate height for the image */
  background-color: #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* Info Skeleton */
.info-skeleton {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.badge-skeleton {
  width: 80px;
  height: 20px;
  background-color: #e0e0e0;
  margin-right: 8px;
  border-radius: 4px;
}

.date-skeleton {
  width: 120px;
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 4px;
}

/* Title Skeleton */
.title-skeleton {
  width: 100%;
  height: 40px;
  background-color: #e0e0e0;
  margin-bottom: 8px;
  border-radius: 4px;
}

/* Description Skeleton */
.description-skeleton {
  width: 100%;
  height: 48px;
  background-color: #e0e0e0;
  margin-bottom: 12px;
  border-radius: 4px;
}

/* Link Skeleton */
.link-skeleton {
  width: 100px;
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 4px;
}

/* Shimmer Effect (Optional) */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 2000px 100%;
  animation: shimmer 1.5s infinite linear;
}

/* Apply shimmer to all skeleton elements */
.card-skeleton * {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 2000px 100%;
  animation: shimmer 1.5s infinite linear;
}

.card-horizontal-skeleton {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 16px; /* Space between skeletons */
}

/* Image Skeleton for Smaller Image */
.image-skeleton-small {
  width: 120px;
  height: 120px;
  background-color: #e0e0e0;
  border-radius: 8px;
  margin-right: 16px;
}

.card-horizontal-skeleton * {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 2000px 100%;
  animation: shimmer 1.5s infinite linear;
}

/* Content Skeleton */
.content-skeleton {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

/* Badge Skeleton */
.badge-skeleton {
  width: 100px;
  height: 20px;
  background-color: #e0e0e0;
  margin-bottom: 8px;
  border-radius: 4px;
}

/* Title Skeleton */
/* Info Skeleton for Date and Author */
.info-skeleton {
  display: flex;
  gap: 8px;
  align-items: center;
}

.date-skeleton {
  width: 80px;
  height: 16px;
  background-color: #e0e0e0;
  border-radius: 4px;
}

.author-skeleton {
  width: 100px;
  height: 16px;
  background-color: #e0e0e0;
  border-radius: 4px;
}

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 2000px 100%;
  animation: shimmer 1.5s infinite linear;
}

/* Apply shimmer effect to all skeleton elements */
.hide-scrollbar {
  display: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.landing-section .bg {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.landing-section .orange-path-icon {
  width: 50%;
  display: block;
  margin: auto;
  height: auto;
  transition: all 0.5s ease;
}
.landing-section .orange-path-icon.filled {
  opacity: 0;
  display: none;
}
.landing-section .main-heading {
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
}
.landing-section .sub-heading {
  text-transform: uppercase;
  font-family: "HDColton Comp";
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 3px;
  text-align: center;
  color: #ffffff;
}
.landing-section .orange-filled-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 12px 25px !important;
  background-color: #ff5b23;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.07px;
  text-align: center;
  border: 1px solid #ff5b23;
  color: #ffffff;
}
.landing-section .orange-filled-btn:hover {
  background-color: #ffffff;
  color: #ff5b23;
}

.advertise .swiper-slide {
  display: flex;
  justify-content: center;
}
.advertise .add-text {
  text-align: right;
  padding-top: 5px;
  padding-right: 5px;
}
@media only screen and (min-width: 400px) and (max-width: 440px) {
  .advertise .add-text {
    padding-right: 10%;
  }
}
@media only screen and (min-width: 440px) and (max-width: 576px) {
  .advertise .add-text {
    padding-right: 15%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
  .advertise .add-text {
    padding-right: 17%;
  }
}

.advertise-bottom {
  margin-top: 55px !important;
  margin-bottom: 77px !important;
}

.advertise-top {
  padding-top: 20px;
  padding-bottom: 60px;
  margin-bottom: 80px !important;
  margin-top: 0 !important;
}

@media (min-width: 768px) {
  section.advertise {
    height: 187px;
  }
}
@media (min-width: 992px) {
  section.advertise {
    height: 300px;
    margin-bottom: 75px !important;
    margin-top: 75px !important;
  }
  section.advertise.advertise-top {
    margin-top: 10px !important;
  }
}
@media (min-width: 1200px) {
  section.advertise {
    height: 335px;
  }
}
.section-heading {
  font-size: 28px;
  font-weight: 500;
  line-height: 49.95px;
  text-align: left;
  color: #151515;
  border-left: 5px solid #ff5b23;
  word-spacing: 3px;
  padding: 1px 13px;
  text-transform: uppercase;
}

.red-badge {
  background-color: #e22c29;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  color: #ffffff;
  border-radius: 40px;
  padding: 4px 9px;
}

.beige-badge {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #cdda89;
  font-size: 12px;
  font-weight: 500;
  line-height: 12.46px;
  text-align: left;
  color: #00314d;
  border-radius: 40px;
  padding: 4px 9px;
}

.sky-badge {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #93dff9;
  font-size: 12px;
  font-weight: 500;
  line-height: 12.46px;
  text-align: left;
  color: #00314d;
  border-radius: 40px;
  padding: 4px 9px;
}

.articles-badge {
  background-color: rgba(80, 190, 240, 0.2);
  font-size: 12px;
  font-weight: 500;
  line-height: 12.46px;
  text-align: left;
  color: #00314d;
  border-radius: 40px;
  padding: 4px 9px;
}

.ndt-home-section .articles-container {
  height: 580px;
  overflow-y: hidden;
  padding-right: 10px;
}
.ndt-home-section .news-container {
  overflow-y: hidden;
  padding-right: 10px;
}
.ndt-home-section .info {
  display: flex;
}
.ndt-home-section .date {
  text-wrap: nowrap;
  font-size: 12.71px;
  font-weight: 400;
  line-height: 18.72px;
  text-align: left;
  color: #3d312e;
}
.ndt-home-section .author {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: rgba(80, 80, 80, 0.8);
}
.ndt-home-section .news-head {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #000000;
}
.ndt-home-section .news-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #505050;
}
.ndt-home-section .latest-news-card {
  width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  background-color: white;
}
.ndt-home-section .latest-news-card:hover .img-container img {
  transform: scale(1.1);
}
.ndt-home-section .latest-news-card:hover .news-head {
  color: #0056b3;
}
.ndt-home-section .latest-news-card:hover .see-more {
  color: #ff4500;
}
.ndt-home-section .latest-news-card:hover .blue-arrow-up-right {
  transform: translateX(5px);
}
.ndt-home-section .see-more {
  display: flex;
  align-items: end;
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  letter-spacing: 1.2px;
  text-align: left;
  color: #333333;
  text-decoration: underline;
  text-transform: uppercase;
  transition: color 0.35s ease;
}
.ndt-home-section .see-more .blue-arrow-up-right {
  width: 20px;
  margin-left: 5px;
  transition: transform 0.35s ease;
}
.ndt-home-section .img-container {
  width: 100%;
  overflow: hidden;
}
.ndt-home-section .img-container img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.ndt-home-section .resources-card {
  display: flex;
  border-bottom: 0.5px solid #cfcfcf;
}
.ndt-home-section .resources-card:last-child {
  border-bottom: unset;
}
.ndt-home-section .resources-card .resources-head {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #151515;
}
.ndt-home-section .resources-card .img-container {
  flex: 161px 0 0;
  height: 117px;
}
.ndt-home-section .resources-card:hover .img-container img {
  transform: scale(1.1);
}
.ndt-home-section .resources-card:hover .resources-head {
  color: #0056b3;
}
.ndt-home-section .resources-card:hover .see-more {
  color: #ff4500;
}
.ndt-home-section .resources-card:hover .blue-arrow-up-right {
  transform: translateX(5px);
}
.ndt-home-section .resource-container #news-container {
  grid-area: news-container;
}
.ndt-home-section .resource-container #latest-news {
  grid-area: latest-news;
}
.ndt-home-section .resource-container #articles-container {
  grid-area: articles-container;
}
@media (min-width: 992px) {
  .ndt-home-section .news-container {
    height: 580px;
  }
}

.ndt-interviews-section .interviews-card {
  overflow: hidden;
}
.ndt-interviews-section .interviews-card img {
  aspect-ratio: 16/10;
  -o-object-fit: contain;
     object-fit: contain;
}
.ndt-interviews-section .interviews-card:hover .img-container img {
  transform: scale3d(1.05, 1.05, 1.05);
}
.ndt-interviews-section .interviews-card:hover .interviews-head {
  color: #0056b3 !important;
}
.ndt-interviews-section .other-expert-cards .interviews-card {
  flex: 230px 0 0;
}
.ndt-interviews-section .other-expert-cards .interviews-card .interviews-head {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #151515;
}
.ndt-interviews-section .other-expert-cards .interviews-card .info-container {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #505050;
}
.ndt-interviews-section .other-expert-cards .img-container {
  width: 100%;
  overflow: hidden;
}
.ndt-interviews-section .interviews-head {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #000000;
  transition: all 0.35s ease;
}
.ndt-interviews-section .info-container {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #151515;
}
.ndt-interviews-section .text-bold {
  font-weight: 500;
  color: #151515;
}
.ndt-interviews-section .text-sm {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #505050;
}
.ndt-interviews-section .expert-main-card .img-container {
  width: 100%;
  height: auto;
}
.ndt-interviews-section .listicles-card-container {
  border-top: 0.5px solid rgba(74, 39, 113, 0.2509803922);
}
.ndt-interviews-section .listicles-head {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #151515;
  transition: all 0.35s ease;
}
.ndt-interviews-section .content {
  font-size: 10px;
  font-weight: 400;
  line-height: 12.46px;
  text-align: left;
  color: rgba(21, 21, 21, 0.8);
}
.ndt-interviews-section .listicles-card .img-container {
  flex: 120px 0 0;
  height: 78px;
}
.ndt-interviews-section .listicles-card .img-container img {
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.ndt-interviews-section .listicles-card {
  transition: all 0.35s ease;
  border-bottom: 0.5px solid transparent;
}
.ndt-interviews-section .listicles-card:hover {
  overflow: hidden;
}
.ndt-interviews-section .listicles-card:hover:hover {
  border-bottom: 0.5px solid rgba(74, 39, 113, 0.2509803922);
}
.ndt-interviews-section .listicles-card:hover:hover .img-container img {
  transform: scale(1.05);
}
.ndt-interviews-section .listicles-card:hover:hover .listicles-head {
  color: #0056b3 !important;
}
@media (min-width: 1200px) {
  .ndt-interviews-section .other-expert-cards .interviews-card {
    flex: 192px 0 0;
  }
}

.ndt-products-section .nav-pills {
  width: 100%;
  overflow-y: auto;
  flex-wrap: nowrap;
  padding: 0 0 15px 0;
}
.ndt-products-section .nav-link {
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 50px;
  background: rgba(236, 233, 255, 0.75);
}
.ndt-products-section .nav-link .icon {
  margin-right: 5px;
  fill: #ff5b23;
}
.ndt-products-section .nav-link path {
  fill: #ff5b23;
}
.ndt-products-section .nav-link.active {
  background: #4a2771;
}
.ndt-products-section .nav-link.active .icon {
  fill: #ff5b23;
}
.ndt-products-section .nav-link.active path {
  fill: #ffffff;
}
.ndt-products-section .products-wrapper {
  overflow: hidden;
}
.ndt-products-section .products-wrapper::-webkit-scrollbar {
  display: none;
}
.ndt-products-section .grid-container {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
}
.ndt-products-section .grid-container::-webkit-scrollbar {
  display: none;
}
.ndt-products-section .gray-product-card {
  padding: 20px 18px;
  gap: 20px;
  background-color: #f2f2f2;
}
.ndt-products-section .gray-product-card .product-img-container img {
  max-height: 268px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 200px;
  height: auto;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .ndt-products-section .gray-product-card .product-img-container img:hover {
    transform: scale(1.01);
  }
}
.ndt-products-section .gray-product-card .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  height: 100%;
}
.ndt-products-section .gray-product-card .content .product-head {
  color: #2a2a2b;
  font-family: "Neue Montreal";
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  transition: all 0.25s ease;
  margin-bottom: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .ndt-products-section .gray-product-card .content .product-head:hover {
    color: #0a58ca;
  }
}
.ndt-products-section .gray-product-card .content .product-segment {
  font-family: "Neue Montreal";
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #4a2771;
  margin: 0;
}
.ndt-products-section .gray-product-card .content .products-orange-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  font-family: "Neue Montreal";
  font-size: 12px;
  font-weight: 400;
  line-height: 16.7px;
  color: #858585;
}
.ndt-products-section .gray-product-card .content .products-orange-btn span {
  vertical-align: middle;
}
.ndt-products-section .gray-product-card .content .products-orange-btn .arrow-logo {
  padding: 10px 13px;
  background-color: #ff5b23;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ndt-products-section .gray-product-card .content .products-orange-btn svg {
  transition: all 0.25s ease-in-out;
  width: 14.68px;
  height: 12.23px;
}
.ndt-products-section .gray-product-card .content .products-orange-btn:hover svg {
  transform: translateX(4px);
}
.ndt-products-section .orange-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 15px;
  left: 10px;
  background-color: #ff5b23;
  border-radius: 50%;
}
.ndt-products-section .orange-btn span {
  display: none;
}
.ndt-products-section .orange-btn:hover svg {
  transform: translateX(4px);
}
.ndt-products-section .product-img-container img {
  max-height: 268px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.ndt-trends-section {
  padding-top: 3rem;
  position: relative;
}
.ndt-trends-section .container {
  position: relative;
}
.ndt-trends-section .background-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
}
.ndt-trends-section .navigator-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  max-width: 280px;
  margin-bottom: 35px;
  padding-bottom: 10px;
  border-bottom: 1px solid #4a2771;
}
.ndt-trends-section .image-wrapper {
  height: 275px;
  position: relative;
  width: 315px;
  margin: 0 auto;
  overflow: hidden;
}
.ndt-trends-section .pagination-button {
  border: none;
  background: transparent;
  color: blue;
  cursor: pointer;
  padding: 5px;
}
.ndt-trends-section .pagination-button svg path {
  stroke: blue;
}
.ndt-trends-section .pagination-button:disabled svg path {
  stroke: rgb(142, 142, 142);
}
.ndt-trends-section .month-pagination {
  width: 100%;
  height: 40px;
  position: relative;
}
.ndt-trends-section .issue-date {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.21px;
  text-align: center;
  color: #4a2771;
  transition: all 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.ndt-trends-section .issue-date.active {
  opacity: 1;
}
.ndt-trends-section .text-wrapper {
  text-align: center;
}
.ndt-trends-section .detail {
  transition: all 0.5s ease;
  opacity: 0;
  display: none;
}
.ndt-trends-section .detail.active {
  opacity: 1;
  display: block;
}
.ndt-trends-section .read-more-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 16.01px;
  background: #ff5b23;
  padding: 10px 19px;
  border-radius: 21px;
  color: white;
}
.ndt-trends-section .trend-heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  text-transform: uppercase;
  color: #4a2771;
  margin-bottom: 40px;
}
.ndt-trends-section .slide-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.ndt-trends-section .trend-image {
  position: absolute;
  width: 210px;
  bottom: -20px;
  transition: all 0.5s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3607843137);
  margin-left: 10px;
}
.ndt-trends-section .trend-image.second {
  transform: rotate(8deg) translateY(15px) translateX(14px);
  transform-origin: bottom;
}
.ndt-trends-section .trend-image.third {
  transform: rotate(15deg) translateY(25px) translateX(28px);
  transform-origin: bottom;
}
.ndt-trends-section .trend-image.not-visible {
  transform: translateY(100%);
}
@media (min-width: 768px) {
  .ndt-trends-section .background-image {
    width: 150px;
  }
  .ndt-trends-section .navigator-wrapper {
    max-width: 259px;
  }
}
@media (min-width: 992px) {
  .ndt-trends-section .background-image {
    width: 320px;
  }
  .ndt-trends-section .trend-image {
    width: 240px;
  }
  .ndt-trends-section .trend-heading {
    font-size: 34px;
    line-height: 44px;
  }
  .ndt-trends-section .slide-wrapper {
    flex-direction: row;
  }
  .ndt-trends-section .navigator-wrapper {
    margin: 0;
    margin-bottom: 30px;
  }
  .ndt-trends-section .image-wrapper {
    width: 527px;
    height: 315px;
  }
  .ndt-trends-section .text-wrapper {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .ndt-trends-section .image-wrapper {
    width: 787px;
    height: 540px;
  }
  .ndt-trends-section .trend-image {
    width: 390px;
  }
  .ndt-trends-section .detail-wrapper {
    width: 65%;
    padding-top: 50px;
  }
  .ndt-trends-section .trend-heading {
    font-size: 38px;
    line-height: 48px;
  }
  .ndt-trends-section .issue-date {
    font-size: 18px;
    line-height: 32px;
  }
}

.ndt-events-section .info-container {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  opacity: 0.8;
}
.ndt-events-section .event-head {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.25s;
}
.ndt-events-section .small {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
}
.ndt-events-section .latest-event-card {
  width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.ndt-events-section .latest-event-card img {
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.ndt-events-section .latest-event-card:hover .img-container img {
  transform: scale(1.1);
}
.ndt-events-section .latest-event-card:hover .event-head {
  color: #ff5b23;
}
.ndt-events-section .resources-card {
  border-bottom: 0.5px solid transparent;
  transition: all 0.25s;
  flex: 300px 0 0;
}
.ndt-events-section .resources-card:hover {
  border-bottom: 0.5px solid rgba(201, 82, 10, 0.63);
}
.ndt-events-section .resources-card:hover .card-head {
  color: #ff5b23;
}
.ndt-events-section .resources-card:hover .date-container {
  border: 0.5px inset rgba(255, 255, 255, 0.589);
}
.ndt-events-section .img-container {
  width: 100%;
  overflow: hidden;
}
.ndt-events-section .img-container img {
  transition: transform 0.35s ease;
}
.ndt-events-section .date-container {
  display: flex;
  flex: 90px 0 0;
  padding: 16px 10px;
  border: 0.5px outset rgba(255, 255, 255, 0.5);
  transition: all 0.25s;
}
.ndt-events-section .card-head {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px; /* 200% */
  transition: all 0.25s;
}
.ndt-events-section .month {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
.ndt-events-section .date {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.88px;
}
.ndt-events-section .place {
  color: #b6b6b6;
  font-size: 14px;
  font-weight: 400;
}
.ndt-events-section .more-events-container {
  width: 100%;
  height: 153px;
  overflow-x: auto;
}
@media (min-width: 992px) {
  .ndt-events-section .place {
    font-size: 16px;
  }
}

.ndt-contributors-section .card-container {
  overflow: auto;
}
.ndt-contributors-section .card {
  flex: 271px 0 0;
  border: unset;
}
.ndt-contributors-section .card:hover .img-container img {
  transform: scale(1.05);
}
.ndt-contributors-section .card:hover .heading {
  color: #0056b3;
}
.ndt-contributors-section .img-container {
  width: 100%;
  height: 271px;
}
.ndt-contributors-section .img-container img {
  aspect-ratio: 1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ndt-contributors-section .heading {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}
.ndt-contributors-section .sub-heading {
  color: #505050;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-align: center;
}
.ndt-contributors-section .social a {
  transition: all 0.25s ease;
}
.ndt-contributors-section .social a:hover {
  transform: translateY(-3px);
}
@media (min-width: 1200px) {
  .ndt-contributors-section .card {
    flex: 1 0 0;
  }
}

.ndt-jobs-section .line-div {
  margin-bottom: 24px;
}
.ndt-jobs-section .location-icon {
  margin-top: 2px;
}
.ndt-jobs-section .light-text {
  color: #8b81d0;
  font-size: 12px;
  font-weight: 400;
  line-height: 13.981px;
  text-transform: uppercase;
}
.ndt-jobs-section .blue-text {
  color: #0c2e82;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px; /* 200% */
  text-transform: uppercase;
}
.ndt-jobs-section .heading {
  color: #0b2b82;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
  transition: all 0.25s;
}
.ndt-jobs-section .heading:hover {
  color: orange;
}
.ndt-jobs-section .content {
  color: #858585;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  margin-bottom: 5px;
}
.ndt-jobs-section .blue-thin-text {
  color: #3d589b;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.ndt-jobs-section .orange-text {
  color: #ff5b23;
  font-size: 14px;
  font-weight: 500;
  line-height: 27.962px; /* 174.764% */
  background: unset;
  padding: unset;
  text-transform: none;
  letter-spacing: 0.5px;
}
.ndt-jobs-section .jobs-image-wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
  margin: 1rem 0;
}
.ndt-jobs-section .img-container {
  width: 52px;
  height: 52px;
}
.ndt-jobs-section .img-container img {
  width: 52px;
  height: 52px;
}
.ndt-jobs-section .card {
  border: unset;
  display: flex;
  flex: 345px 0 0;
  padding: 30px;
  background: #fdfdfe;
  border-radius: 0;
}
.ndt-jobs-section .job-detail {
  gap: 30px;
}
.ndt-jobs-section .line {
  background: #efebff;
}
.ndt-jobs-section .line.v {
  height: 40px;
  width: 1px;
  flex: 1px 0 0;
}
.ndt-jobs-section .line.h {
  width: 100%;
  height: 1px;
}
.ndt-jobs-section .card-container {
  overflow-x: auto;
}

.ndt-leadership-section .card {
  border: unset;
}
.ndt-leadership-section .card.sm .img-container {
  flex: 128px 0 0;
  height: 80px;
}
.ndt-leadership-section .card.sm .img-container img {
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.ndt-leadership-section .card.sm .heading {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px; /* 125% */
  transition: all 0.25s;
}
.ndt-leadership-section .card.lg {
  border-bottom: 1px solid #cdda89;
}
.ndt-leadership-section .card.lg .heading {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  transition: all 0.25s;
}

.app-download-section .wrapper {
  padding: 35px;
  background: #4a2771;
  border-radius: 30px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.app-download-section .background-element {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
}
.app-download-section .heading {
  font-size: 19.36px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: white;
  margin-bottom: 40px;
  grid-column-start: 1;
  grid-column-end: -1;
}
.app-download-section .mobile-mockup {
  height: auto;
  z-index: 2;
  width: 150px;
}
.app-download-section .box-wrapper {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 10px;
  position: relative;
}
.app-download-section .button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: end;
  padding-bottom: 30px;
}
.app-download-section .button-link img {
  width: 100%;
}
@media (min-width: 576px) {
  .app-download-section .button-wrapper {
    flex-direction: row;
    padding-bottom: 60px;
  }
  .app-download-section .box-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .app-download-section .mobile-mockup {
    width: 180px;
  }
}
@media (min-width: 768px) {
  .app-download-section .wrapper {
    padding: 60px;
    padding-bottom: 0;
  }
  .app-download-section .background-element {
    bottom: -60%;
  }
  .app-download-section .box-wrapper {
    -moz-column-gap: 40px;
         column-gap: 40px;
    grid-template-columns: 1fr 1.4fr;
  }
  .app-download-section .mobile-mockup {
    width: 180px;
    grid-row: 1/-1;
    align-self: end;
    width: 215px;
    justify-self: flex-end;
  }
  .app-download-section .heading {
    grid-row: 1;
    grid-column: 2;
    margin-bottom: 10px;
    align-self: end;
  }
  .app-download-section .button-wrapper {
    padding-bottom: 40px;
    align-self: flex-start;
  }
}
@media (min-width: 992px) {
  .app-download-section .wrapper {
    max-width: 1017px;
    margin: 0 auto;
  }
  .app-download-section .mobile-mockup {
    width: 290px;
  }
  .app-download-section .heading {
    font-size: 38px;
    line-height: 48px;
  }
}

@media screen and (min-width: 992px) {
  .landing-section {
    position: relative;
  }
  .landing-section .orange-path-icon {
    position: absolute;
    width: unset;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
  }
  .landing-section .orange-path-icon.filled {
    display: block;
  }
  .landing-section .orange-path-icon:hover {
    opacity: 0;
  }
  .landing-section .orange-path-icon:hover.filled {
    opacity: 1;
  }
  .landing-section .content {
    position: absolute;
    z-index: 2;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .landing-section .main-heading {
    font-size: 54px;
    font-weight: 500;
    line-height: 49.95px;
  }
  .landing-section .sub-heading {
    font-size: 32px;
    font-weight: 400;
    line-height: 49.95px;
    letter-spacing: 3px;
  }
  .section-heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 49.95px;
  }
  .ndt-home-section .news-head {
    font-size: 22px;
    font-weight: 400;
    line-height: 30.96px;
  }
  .ndt-home-section .news-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
  }
  .ndt-home-section .resource-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "news-container latest-news articles-container";
    gap: 20px;
  }
  .ndt-interviews-section .wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
  }
  .ndt-interviews-section .interviews-container {
    grid-column: span 7;
    border-right: 1px solid rgba(74, 39, 113, 0.2509803922);
    padding-right: 30px;
  }
  .ndt-interviews-section .listicles-container {
    grid-column: 8/span 5;
    padding-left: 44px;
  }
  .ndt-interviews-section .interviews-head {
    font-size: 24px;
    font-weight: 500;
    line-height: 35px;
  }
  .ndt-interviews-section .info-container {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #151515;
  }
  .ndt-interviews-section .expert-main-card .img-container {
    width: 320px;
    min-width: 320px;
    min-height: 200px;
    overflow: hidden;
  }
  .ndt-products-section .gray-product-card {
    width: 50%;
  }
  .ndt-products-section .gray-product-card .grid-container {
    gap: 30px;
  }
  .ndt-products-section .gray-product-card .product-img-container img {
    max-height: 232px;
    width: 100%;
  }
  .ndt-products-section .gray-product-card .content .product-head {
    font-size: 20px;
    line-height: 24px;
  }
  .ndt-events-section .img-container {
    width: 100%;
    height: 300px;
  }
  .ndt-events-section .event-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
  }
  .ndt-events-section .event-head {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
  }
  .ndt-events-section .card-head {
    font-size: 20px;
    font-weight: 400;
    line-height: 31px; /* 200% */
    transition: all 0.25s;
  }
  .ndt-events-section .latest-event-card {
    grid-column: span 5;
  }
  .ndt-events-section .more-events-container {
    grid-column: 7/span 6;
    height: unset;
    overflow-y: auto;
  }
  .ndt-jobs-section .card {
    flex: 355px 0 0;
    padding: 30px;
  }
  .ndt-jobs-section .jobs-image-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
  }
  .ndt-jobs-section .content {
    text-align: left;
  }
  .ndt-leadership-section .card-container {
    grid-template-columns: repeat(12, 1fr);
  }
  .ndt-leadership-section .card.sm .img-container {
    flex: 173px 0 0;
    height: 110px;
  }
  .ndt-leadership-section .card.sm .heading {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px; /* 150% */
  }
  .ndt-leadership-section .card.lg {
    border-bottom: unset;
    grid-column: span 6;
    border-right: 1px solid #cdda89;
    padding-right: 50px;
  }
  .ndt-leadership-section .card.lg .heading {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
  }
  .ndt-leadership-section .card:hover .img-container img {
    transform: scale(1.1);
  }
  .ndt-leadership-section .card:hover .heading {
    color: #0056b3;
  }
  .ndt-leadership-section .more-card-container {
    grid-column: 7/span 6;
    padding-left: 52px;
  }
}
