.tabs-content-container .tab-content-section {
    background: transparent;
    border: none;
}

.tab-content-section-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 15px;
}

.tab-content-section-container .tab-content-left {
  width: 55%;
  padding-right: 20px;
  text-align: left;
}

.tab-content-section-container .tab-content-left p{
  line-height: 130%;
  max-width: 370px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Roboto';
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  margin-top: 15px;
  margin-bottom: 20px;
}

.tab-content-section-container .tab-button {
  border: 2px solid #009CDE;
  border-radius: 8px;
  width: fit-content;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: #ffff;
  text-decoration: none;
  margin: 2rem 0 1rem;
}

.tab-content-section-container .tab-button:hover {
  background-color: rgba(0, 156, 222, 0.2);
  transform: scale(1.05);
  text-decoration: none;
}

.tab-content-section-container .tab-image-icon {
  margin: 1.5rem 0;
}

.tab-content-section-container .tab-content-right {
  width: 41%;
  text-align: left;
  margin-block-end: 0;
  margin-block-start: 0;
}

.tab-content-section-container .tab-content-right h3 {
  background: linear-gradient(111.47deg, #62c0e7 6.95%, #009cde 93.05%);
  font-weight: Black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -5%;
  font-size: 96px;
  padding-top: 20px;
  line-height: 1.2;
}

.tab-content-section-container .tab-content-right p {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
    .tab-content-section-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      place-items: center;
      align-items: center;
    }

    .tab-content-section-container .tab-content-left,
    .tab-content-section-container .tab-content-right {
      width: 100%;
      text-align: center;
      padding-right: 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .tab-content-section-container .tab-content-right h3 {
      font-size: 72px;
    }

    .tab-content-section-container .tab-content-right p {
      font-size: 22px;
    }
}

  @media screen and (max-width: 480px) {
    .tab-content-section-container .tab-content-right h3 {
      font-size: 64px;
    }

    .tab-content-section-container .tab-content-right p {
      font-size: 20px;
    }

  }