.tft-container {
  display: flex;
}
.tft-container ul {
  padding: 0;
  margin: 0px;
  list-style: none;
}
.tft-container li {
  padding: 0;
  margin: 0px;
}
.tft-container .tft-tabs-list button {
  cursor: pointer;
  padding: 0;
  margin: 0px;
  background-color: transparent;
  border: none;
  min-height: 80px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.tft-container .tft-tabs-list img {
  filter: grayscale(1);
  width: 150px;
  margin: 10px 0px 10px 0px;
}
.tft-container .tft-all-tabs {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.tft-container .tft-tabs-content {
  transition-duration: 0.2s;
  transition: height 0s ease;
  transition: opacity 0.2s ease-in;
  transition-timing-function: ease-in;
  opacity: 0;
  overflow: hidden;
  position: inherit;
  padding-left: 70px;
  top: 0px;
  left: 0px;
}
.tft-container .tft-tabs-content:first-of-type {
  opacity: 1;
}
.tft-container .tft-tabs-content .tft-tabs-text {
  margin: 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 27px;
  color: #260259;
}
.tft-container .tft-content-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 25px;
}
.tft-container .tft-reviewer {
  display: flex;
}

.tft-container .tft-reviewer img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
}

.tft-container .tft-reviewer .tft-reviewer-text {
  margin-left: 25px;
}

.tft-container .tft-reviewer p {
  margin: 0px;
  padding: 0px;
  font-family: 'Inter';
  font-style: normal;
}

.tft-container .tft-reviewer-name {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  margin-bottom: 6px;
  background: linear-gradient(100.45deg, #6103f6 0%, #ff3dad 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  width: fit-content;
}

.tft-container .tft-reviewer-description {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.tft-container .tft-cta {
  width: fit-content;
  transition-duration: 0.3s;
  border: solid 2px #260259;
  cursor: pointer;
  padding: 0;
  margin: 0;
  background-color: #260259;
  color: #0fc4f8;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 34px;
  border-radius: 20px;
  column-gap: 15px;
}
.tft-container .tft-cta svg {
  transition-duration: 0.3s;
  fill: #ffffff;
  height: 10px;
}
.tft-container .tft-tabs-list button .tft-tabs-button-indicator {
  width: 4px;
  height: 0;
  background-color: #260259;
  position: absolute;
  left: 0;
  top: 0;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.tft-container .tft-tabs-list button:hover .tft-tabs-button-indicator {
  height: 100%;
  width: 4px;
}
.tft-container .tft-tabs-list button:hover {
  background-color: #260259;
}
.tft-container .tft-tabs-list button:hover .tft-tabs-button-image {
  opacity: 1 !important;
}
.tft-container .tft-cta:hover {
  background-color: transparent;
  color: #fff;
}
.tft-container .tft-cta:hover {
  background-color: transparent;
}
.tft-container .tft-cta:hover svg {
  fill: #fff !important;
}
.tft-tabs-button-indicator-active {
  height: 100% !important;
  width: 4px !important;
}
@media only screen and (max-width: 1000px) {
  .tft-container {
    flex-direction: column;
  }
  .tft-container .tft-tabs-content {
    padding: 0;
  }
  .tft-container ul {
    display: flex;
    margin-bottom: 50px;
    overflow-x: auto;
  }
  .tft-tabs-button-indicator {
    height: 4px !important;
    width: 0 !important;
    bottom: 0 !important;
    top: auto !important;
  }
  .tft-container .tft-tabs-list button:hover .tft-tabs-button-indicator {
    height: 4px !important;
    width: 100% !important;
  }
  .tft-tabs-button-indicator-active {
    height: 4px !important;
    width: 100% !important;
  }
  .tft-container .tft-content-footer {
    flex-direction: column;
    row-gap: 25px;
  }
  .tft-container .tft-tabs-list button img {
    filter: grayscale(1);
    transition-duration: 0.3s;
    width: 100px;
    margin: 15px 0px;
  }
  .tft-container .tft-tabs-list button {
    width: 150px;
  }
  .tft-container .tft-tabs-content .tft-tabs-text {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #1d1d1d;
  }
}
.tft-tabs-list button:hover img {
    filter: grayscale(0) !important;
  }