.tc-section {
  /*font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background-color: hsl(30, 20%, 95%);*/
  padding: 80px 0;
  box-sizing: border-box;
  margin: 0;
}

.tc-section *,
.tc-section *::before,
.tc-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



.tc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.tc-heading {
  text-align: center;
  color: #2d2926;
  padding-top: .75rem;
  padding-bottom: 2.75rem;
  font-family: Trirong;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 68px;
}

.tc-slide-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.tc-slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  justify-content: right;
}

.tc-slide.tc-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.tc-slide.tc-exit-left {
  opacity: 0;
  transform: translateX(-80px);
}

.tc-slide.tc-exit-right {
  opacity: 0;
  transform: translateX(80px);
}

.tc-slide figure img {
  height: auto;
}

.tc-image-wrap {
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.tc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-content {
  flex: 1;
}

.tc-quote-icon {
  width: 32px;
  height: 32px;
  opacity: 0.3;
  margin-bottom: 16px;
}

.tc-title {
  font-size: 1.75rem;



  color: #2d2926;
  font-family: Montserrat;

  font-weight: 400;
  line-height: 36px;
  margin-bottom: 1rem;
}

.tc-name {

  color: #567149 !important;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 4.14px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  text-transform: uppercase;

}

.tc-role {
  font-size: 12px;
  margin-bottom: 20px;
}

.tc-text {
  color: #2d2926;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 1rem;

}

.tc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.tc-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid hsla(30, 55%, 42%, 0.3);
  background: transparent;
  color: #567149;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  font-size: 0;
}


.tc-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tc-dots {
  display: flex;
  gap: 8px;
}

.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: #567149;
  opacity: 0.3;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
}

.tc-dot.tc-dot-active {
  background-color: #567149;
  opacity: 1;
}

.tc-section .carrers-opportunity-info .card-image-center-align .text-card {
  margin-right: -3.125rem;

}


/* Mobile */
@media (max-width: 768px) {
  .tc-section {
    padding: 60px 0;
  }

  .tc-heading {
    font-size: 2.75rem;
    line-height: 1.2;
    padding-bottom: .75rem;
  }

  .tc-slide {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .tc-image-wrap {
    width: 192px;
    height: 192px;
    margin: 0 auto;
  }

  .tc-quote-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .tc-text {
    margin: 0 auto;
  }



  .tc-slide-wrapper {
    min-height: 480px;
  }
}