
#hero-12 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0 8rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
#hero-12 .container {
  position: relative;
}
#hero-12 .hero-content-wrapper-12 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#hero-12 .hero-title-12 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#hero-12 .hero-subtitle-12 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}
#hero-12 .hero-cta-button-12 {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-12 .hero-cta-button-12:hover {
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  #hero-12 {
    min-height: 60vh;
    padding: 4rem 0 6rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }
  #hero-12 .hero-title-12 {
    font-size: 2.4rem;
  }
  #hero-12 .hero-subtitle-12 {
    font-size: 1.1rem;
  }
}



/* category-posts-6 Styles - Minimalist Post List */
#category-posts-6 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    background-color: #ffffff;
}

#category-posts-6 .section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

#category-posts-6 .section-header .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}

#category-posts-6 .section-header .section-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#category-posts-6 .minimal-post-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0; /* Remove bottom margin if pagination handles spacing */
}

#category-posts-6 .minimal-post-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e9ecef; /* Light separator */
    display: flex;
    flex-direction: column; /* Default for small screens */
    align-items: flex-start;
    transition: background-color 0.2s ease;
}
#category-posts-6 .minimal-post-item:hover {
    background-color: #f8f9fa; /* Subtle hover */
}


#category-posts-6 .minimal-post-item:first-child {
    border-top: 1px solid #e9ecef;
}
#category-posts-6 .minimal-post-item:last-child {
   /* border-bottom: none; */ /* Keep border if pagination is not directly after */
}

#category-posts-6 .post-main-content {
    flex-grow: 1;
}


#category-posts-6 .post-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 0.25rem;
}
#category-posts-6 .post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
#category-posts-6 .post-title a:hover {
    color: #007bff;
}

#category-posts-6 .post-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem; /* Space before excerpt or button if title is short */
}
#category-posts-6 .post-date i {
    margin-right: 0.3rem;
}

#category-posts-6 .post-excerpt-minimal {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}


#category-posts-6 .readmore-link-minimal {
    font-size: 0.9rem;
    font-weight: 500;
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap; /* Keep button on one line on small screens */
}
#category-posts-6 .readmore-link-minimal:hover {
    color: #0056b3;
    text-decoration: underline;
}
#category-posts-6 .readmore-link-minimal i {
    margin-left: 0.25rem;
    font-size: 0.8em;
}

/* Pagination Wrapper */
#category-posts-6 .pagination-wrapper {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

/* Responsive adjustments for item layout */
@media (min-width: 768px) { /* md and up */
    #category-posts-6 .minimal-post-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    #category-posts-6 .post-date {
         margin-bottom: 0; /* No bottom margin if next to title */
         margin-left: 1rem; /* Space from title */
         white-space: nowrap;
    }
    #category-posts-6 .post-actions {
        margin-left: 1.5rem; /* Space from date/title block */
    }
    #category-posts-6 .post-excerpt-minimal { /* Excerpt on its own line below title/date */
        width: 100%;
        margin-top: 0.25rem; /* Small space from title/date line */
    }
}




#our-services-1 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#our-services-1 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#our-services-1 .section-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#our-services-1 .section-hero p {
  font-size: 1.1rem;
}
#our-services-1 .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#our-services-1 .service-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
#our-services-1 .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
#our-services-1 .service-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}
#our-services-1 .service-card h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
#our-services-1 .service-card p {
  font-size: 0.95rem;
  color: #555;
}
@media (max-width: 992px) {
  #our-services-1 .service-card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  #our-services-1 .service-card {
    flex: 1 1 100%;
  }
}



#features-12 {
  padding: 60px 0;
  background-color: #f8f9fa;
  text-align: center;
}
#features-12 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-12 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-12 .feature-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
#features-12 .feature-item:hover {
  transform: scale(1.05);
}
#features-12 .feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#features-12 .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 162, 184, 0.7);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 20px;
  text-align: center;
}
#features-12 .feature-item:hover .feature-overlay {
  opacity: 1;
}
#features-12 .overlay-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-12 .overlay-description {
  font-size: 14px;
}



#about-us-19 {
  padding: 60px 0;
  background-color: #343a40;
  color: #fff;
}
#about-us-19 .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00c853;
  margin-bottom: 20px;
  text-align: center;
}
#about-us-19 .section-subtitle {
  font-size: 1.1rem;
  color: #adb5bd;
  text-align: center;
  margin-bottom: 30px;
}
#about-us-19 .platform-highlights-wrapper {
  margin-bottom: 40px;
}
#about-us-19 .platform-highlights-wrapper h3 {
  font-size: 1.5rem;
  color: #00c853;
  text-align: center;
  margin-bottom: 30px;
}
#about-us-19 .feature-card {
  background-color: #495057;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}
#about-us-19 .feature-card i {
  font-size: 2.5rem;
  color: #00c853;
  margin-bottom: 15px;
}
#about-us-19 .feature-card h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}
#about-us-19 .feature-card p {
  font-size: 0.9rem;
  color: #adb5bd;
}
#about-us-19 .technology-security-wrapper {
  margin-bottom: 40px;
}
#about-us-19 .technology-security-wrapper h3 {
  font-size: 1.5rem;
  color: #00c853;
  margin-bottom: 20px;
}
#about-us-19 .technology-security-wrapper p {
  font-size: 1rem;
  color: #adb5bd;
  line-height: 1.7;
}
#about-us-19 .responsible-gaming-wrapper {
  padding: 30px;
  background-color: #495057;
  border-radius: 8px;
  text-align: center;
}
#about-us-19 .responsible-gaming-wrapper h3 {
  font-size: 1.5rem;
  color: #00c853;
  margin-bottom: 20px;
}
#about-us-19 .responsible-gaming-wrapper p {
  font-size: 1rem;
  color: #adb5bd;
}
@media (min-width: 768px) {
  #about-us-19 .platform-highlights-wrapper .row > div {
    margin-bottom: 0;
  }
}



#testimonials-19 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-19 .container {
  max-width: 1140px;
}
#testimonials-19 .section-header {
  margin-bottom: 50px;
  text-align: center;
}
#testimonials-19 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-19 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#testimonials-19 .pull-quote-card {
  background-color: var(--card-bg-color, #f8f9fa);
  padding: 35px 30px;
  border-radius: 10px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
#testimonials-19 .pull-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#testimonials-19 .pull-quote-card .quote-highlight {
  font-size: 1.5rem;
  font-weight: 600;
  color: #343a40;
  line-height: 1.4;
  margin-bottom: 15px;
  font-family: Georgia, serif;
  position: relative;
  z-index: 2;
}
#testimonials-19 .pull-quote-card .quote-highlight::before,
#testimonials-19 .pull-quote-card .quote-highlight::after {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  line-height: 1;
  z-index: 1;
}
#testimonials-19 .pull-quote-card .quote-highlight::before {
  content: "\201C";
  top: -10px;
  left: -5px;
}
#testimonials-19 .pull-quote-card .quote-highlight::after {
  content: "\201D";
  bottom: -15px;
  right: -5px;
}
#testimonials-19 .pull-quote-card .client-name-indicator {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: auto;
  padding-top: 15px;
  font-weight: 500;
}
#testimonials-19 .modal-dialog {
  max-width: 650px;
}
#testimonials-19 .modal-content {
  border-radius: 8px;
  border: none;
}
#testimonials-19 .modal-header {
  border-bottom: 1px solid #dee2e6;
  padding: 1rem 1.5rem;
}
#testimonials-19 .modal-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #343a40;
}
#testimonials-19 .modal-body {
  padding: 1.5rem;
  text-align: center;
}
#testimonials-19 .modal-client-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
  border: 3px solid #dee2e6;
}
#testimonials-19 .modal-full-message {
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: left;
}
#testimonials-19 .modal-client-details {
  text-align: right;
  font-size: 0.95rem;
  color: #6c757d;
}
#testimonials-19 .modal-client-details .name {
  display: block;
  font-weight: 600;
  color: #343a40;
}
#testimonials-19 .modal-client-details .position {
  display: block;
}
@media (max-width: 991.98px) {
  #testimonials-19 .pull-quote-card {
    min-height: 220px;
  }
  #testimonials-19 .pull-quote-card .quote-highlight {
    font-size: 1.3rem;
  }
}
@media (max-width: 767.98px) {
  #testimonials-19 {
    padding: 50px 0;
  }
  #testimonials-19 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-19 .pull-quote-card {
    min-height: 200px;
    padding: 25px 20px;
  }
}



#why-choose-us-30 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #f9fbfd;
}
#why-choose-us-30 .section-title-container {
  margin-bottom: 45px;
}
#why-choose-us-30 .section-main-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #004085;
}
#why-choose-us-30 .section-main-subtitle {
  font-size: 1.15rem;
  color: #38587a;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  margin-bottom: 30px;
}
#why-choose-us-30 .commitments-intro {
  font-size: 1.05rem;
  color: #495057;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}
#why-choose-us-30 .commitment-item-wrapper {
  margin-bottom: 30px;
}
#why-choose-us-30 .commitment-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px 30px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 5px 18px rgba(0, 64, 133, 0.08);
  height: 100%;
}
#why-choose-us-30 .commitment-icon-area {
  font-size: 2.5rem;
  color: #004085;
  margin-right: 25px;
  min-width: 40px;
  padding-top: 5px;
}
#why-choose-us-30 .commitment-content {
  flex-grow: 1;
}
#why-choose-us-30 .commitment-title-text {
  font-size: 1.45rem;
  font-weight: 600;
  color: #004085;
  margin-bottom: 10px;
}
#why-choose-us-30 .commitment-description-text {
  font-size: 0.95rem;
  color: #34495e;
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: justify;
}
#why-choose-us-30 .commitment-examples {
  font-size: 0.9rem;
  color: #556b82;
  font-style: italic;
  padding-left: 15px;
  border-left: 3px solid #007bff;
}
#why-choose-us-30 .commitment-examples strong {
  font-weight: 500;
}
#why-choose-us-30 .overall-promise {
  margin-top: 40px;
  text-align: center;
  font-size: 1.2rem;
  color: #004085;
  font-weight: 600;
  padding: 25px;
  background-color: #e6f0ff;
  border-radius: 10px;
  border-top: 3px solid #004085;
}
@media (max-width: 767.98px) {
  #why-choose-us-30 .section-main-title {
    font-size: 2.2rem;
  }
  #why-choose-us-30 .commitment-item {
    flex-direction: column;
    text-align: center;
  }
  #why-choose-us-30 .commitment-icon-area {
    margin-right: 0;
    margin-bottom: 15px;
  }
  #why-choose-us-30 .commitment-title-text {
    font-size: 1.3rem;
  }
  #why-choose-us-30 .commitment-description-text,
  #why-choose-us-30 .commitment-examples {
    text-align: left;
  }
}



#call-to-action-14 {
  padding: 80px 0;
  background-color: #343a40;
  color: #fff;
}
#call-to-action-14 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#call-to-action-14 .col {
  flex: 1;
  padding: 30px;
  text-align: center;
}
#call-to-action-14 .left-col,
#call-to-action-14 .right-col {
  max-width: 30%;
}
#call-to-action-14 .center-col {
  max-width: 35%;
}
#call-to-action-14 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}
#call-to-action-14 p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
#call-to-action-14 .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
#call-to-action-14 .left-col .btn,
#call-to-action-14 .right-col .btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
#call-to-action-14 .left-col .btn:hover,
#call-to-action-14 .right-col .btn:hover {
  background-color: #fff;
  color: #343a40;
}
#call-to-action-14 .center-col .btn {
  background-color: #ffc107;
  color: #343a40;
}
#call-to-action-14 .center-col .btn:hover {
  background-color: #e0a800;
}
@media (max-width: 992px) {
  #call-to-action-14 .left-col,
  #call-to-action-14 .right-col {
    max-width: 45%;
  }
  #call-to-action-14 .center-col {
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  #call-to-action-14 .col {
    max-width: 100%;
    margin-bottom: 30px;
  }
}



#counter-10 {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    var(--gradient-start, #4a00e0),
    var(--gradient-end, #8e2de2)
  );
  color: var(--text-color, #ffffff);
  text-align: center;
  overflow: hidden;
}
#counter-10 .container {
  position: relative;
  z-index: 2;
}
#counter-10 .section-header {
  margin-bottom: 60px;
}
#counter-10 .section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color, #ffffff);
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
#counter-10 .section-header p {
  font-size: 1.15rem;
  color: var(--text-color, #ffffff);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
#counter-10 .counter-item-floating {
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
}
#counter-10 .floating-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-out;
  animation: floatAnimation 4s ease-in-out infinite;
}
#counter-10 .counter-item-floating:hover .floating-icon {
  transform: scale(1.1) translateY(-5px);
  animation-play-state: paused;
}
@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
#counter-10 .counter-value-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 10px;
  color: var(--text-color, #ffffff);
}
#counter-10 .counter-number {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
#counter-10 .counter-suffix {
  font-size: 2rem;
  font-weight: 600;
  margin-left: 6px;
  line-height: 1;
  opacity: 0.9;
}
#counter-10 .counter-title-floating {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-color, #ffffff);
  opacity: 0.85;
}
@media (max-width: 991.98px) {
  #counter-10 .counter-number {
    font-size: 2.8rem;
  }
  #counter-10 .counter-suffix {
    font-size: 1.8rem;
  }
  #counter-10 .floating-icon {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  #counter-10 {
    padding: 60px 0;
  }
  #counter-10 .section-header h2 {
    font-size: 2.2rem;
  }
  #counter-10 .counter-item-floating {
    margin-bottom: 40px;
  }
  #counter-10 .counter-item-floating:last-child {
    margin-bottom: 0;
  }
}



#press-mentions-4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#press-mentions-4 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#press-mentions-4 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#press-mentions-4 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#press-mentions-4 .timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
#press-mentions-4 .timeline-wrapper::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--bs-primary);
  opacity: 0.3;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
#press-mentions-4 .timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 3rem;
}
#press-mentions-4 .timeline-item:last-child {
  margin-bottom: 0;
}
#press-mentions-4 .timeline-item::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12.5px;
  background-color: white;
  border: 4px solid var(--bs-primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
#press-mentions-4 .timeline-left {
  left: 0;
  padding-right: 30px;
}
#press-mentions-4 .timeline-left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
}
#press-mentions-4 .timeline-left::after {
  left: -12.5px;
}
#press-mentions-4 .timeline-right {
  left: 50%;
  padding-left: 70px;
}
#press-mentions-4 .timeline-right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
}
#press-mentions-4 .timeline-right::after {
  left: -12.5px;
}
#press-mentions-4 .timeline-content {
  padding: 20px 30px;
  background-color: #f8f9fa;
  position: relative;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
#press-mentions-4 .timeline-date {
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 1.1rem;
}
#press-mentions-4 .timeline-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #343a40;
}
#press-mentions-4 .timeline-item-source {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 0.75rem;
  display: block;
  font-size: 0.9rem;
}
#press-mentions-4 .timeline-item-description {
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 1rem;
  line-height: 1.6;
}
#press-mentions-4 .timeline-item-link a {
  font-size: 0.9rem;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 500;
}
#press-mentions-4 .timeline-item-link a:hover {
  text-decoration: underline;
}
#press-mentions-4 .timeline-item-link i {
  margin-left: 0.3rem;
}
@media screen and (max-width: 767.98px) {
  #press-mentions-4 .timeline-wrapper::after {
    left: 31px;
  }
  #press-mentions-4 .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    margin-bottom: 2rem;
  }
  #press-mentions-4 .timeline-item::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
  #press-mentions-4 .timeline-left::after,
  #press-mentions-4 .timeline-right::after {
    left: 18px;
  }
  #press-mentions-4 .timeline-left,
  #press-mentions-4 .timeline-right {
    left: 0%;
  }
  #press-mentions-4 .timeline-content {
    padding: 15px 20px;
  }
  #press-mentions-4 .timeline-item-title {
    font-size: 1.15rem;
  }
}


