.tdg-core-values-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 72px;
  transition: background-image 0.5s ease-in-out;
}

.tdg-slider-container {
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
  padding: 30px 20px;
}

.tdg-slider-content {
  display: flex;
  align-items: center;
  min-height: 500px;
  gap: 60px;
}

.tdg-slider-left {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.tdg-slider-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #0bb0f4;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.tdg-slides-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.tdg-slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.tdg-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.tdg-slide-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.tdg-slide-content {
  max-width: 580px;
}

.tdg-slide-content p {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}

.tdg-slider-navigation {
  display: flex;
  gap: 35px;
  margin-bottom: 60px;
}

.tdg-nav-arrow {
  width: 50px;
  height: 50px;
  border: 0px solid #333;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.tdg-nav-arrow:hover {
  color: white;
}

.tdg-nav-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tdg-slider-tabs {
  position: relative;
  display: flex;
  gap: 40px;
}

.tdg-tab {
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  padding: 10px 0;
  padding-bottom: 20px;
  transition: color 0.3s ease;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.tdg-tab.active {
  color: #fff;
}
.tdg-tab img {
  min-height: 36px;
}
.tdg-tab-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  border-radius: 10px;
  background: #0bb0f4;
  width: 0;
  transition: all 0.3s ease;
}

.tdg-slider-right {
  flex: 1;
  position: relative;

  border-radius: 12px;
  overflow: hidden;
}

.tdg-slider-background {
  display: none;
}

.tdg-product-images {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .tdg-core-values-slider {
    border-radius: 32px;
    background-position: top right;
    background-size: 150% auto;
	background-color: #334760;
  }
  .tdg-slider-content {
    min-height: unset;
  }
  .tdg-slider-container {
    padding: 80px 15px 0px 15px;
    padding-top: 45vw !important;
  }
  .tdg-slider-right {
    display: none;
  }
  .tdg-slide-content {
    min-height: 60px;
  }
  .tdg-slider-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .tdg-slider-left {
    max-width: 100%;
    order: 2;
  }

  .tdg-slider-right {
    order: 1;
    width: 100%;
  }

  .tdg-slide-title {
    font-size: 36px;
  }

  .tdg-slide-content p {
  }

  .tdg-slider-navigation {
    justify-content: center;
  }

  .tdg-slider-tabs {
    justify-content: center;
    gap: 30px;
  }

  .tdg-tab {
    font-size: 16px;
  }
  .tdg-slider-tabs {
    display: none;
  }
}
