section.content {
  margin: 90px 0;
}

section.content .container {
  display: flex;
  flex-direction: column;
}

section.content .container .tab-area {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 600px;
  height: 48px;
  padding: 2px;
  border-radius: 20px;
  background-color: var(--white);
  border: 1px solid var(--bg);
  margin: 0 auto 48px;
}

@media screen and (max-width: 1680px) {
  section.content .container .tab-area {
    margin-bottom: 36px;
  }
}

@media screen and (max-width: 768px) {
  section.content .container .tab-area {
    width: 340px;
  }
}

@media screen and (max-width: 560px) {
  section.content .container .tab-area {
    height: 42px;
    margin: 0 auto 24px;
  }
}

section.content .container .tab-area .tab-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 20px;
  margin-right: 2px;
  text-transform: uppercase;
  z-index: 2;
  width: 50%;
  white-space: nowrap;
  color: var(--black);
  opacity: 0.75;
}

@media screen and (max-width: 1366px) {
  section.content .container .tab-area .tab-link {
    font-size: 18px;
  }
}

@media screen and (max-width: 560px) {
  section.content .container .tab-area .tab-link {
    font-size: 14px;
    padding: 6px 20px;
  }
}

section.content .container .tab-area .tab-link.active {
  color: var(--white);
  opacity: 1;
}

section.content .container .tab-area .tab-link:last-child {
  margin-right: 0;
}

section.content .container .tab-area .indicator {
  display: block;
  position: absolute;
  width: calc(50% - 2px);
  height: 42px;
  background: var(--orange);
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  transition: transform 0.5s cubic-bezier(0.17, 0.8, 0.33, 0.99), width 0.5s linear;
  z-index: 1;
  border-radius: 25px;
  box-shadow: 0 10px 30px 0 rgba(43, 44, 51, 0.15);
}

@media screen and (max-width: 560px) {
  section.content .container .tab-area .indicator {
    height: 34px;
  }
}

section.content .container .tab-content {
  background-color: var(--white);
  border-radius: 20px;
}

section.content .container .tab-content p {
  font-size: 18px;
  opacity: 0.75;
}

section.content .container .tab-content .tab-detail {
  display: none;
  flex-direction: row;
  align-items: flex-start;
  padding: 1rem 3rem 3rem;
}

@media screen and (max-width: 1440px) {
  section.content .container .tab-content .tab-detail {
    padding: 1rem 0 3rem;
  }
}

@media screen and (max-width: 1024px) {
  section.content .container .tab-content .tab-detail {
    padding: 2rem;
  }
}

@media screen and (max-width: 560px) {
  section.content .container .tab-content .tab-detail {
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
  }
}

section.content .container .tab-content .tab-detail.active {
  display: flex;
}

section.content .container .tab-content .tab-detail>* {
  width: 100%;
}

section.content .container .tab-content .tab-detail .list-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}

@media screen and (max-width: 1024px) {
  section.content .container .tab-content .tab-detail .list-area {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
}

@media screen and (max-width: 560px) {
  section.content .container .tab-content .tab-detail .list-area {
    grid-template-columns: repeat(1, 1fr);
  }
}

section.content .container .tab-content .tab-detail .list-area .name {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-transform: capitalize;
  text-align: left;
}

section.content .container .tab-content .tab-detail .destekci-area {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1rem;
}

@media screen and (max-width: 1440px) {
  section.content .container .tab-content .tab-detail .destekci-area {
    grid-gap: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  section.content .container .tab-content .tab-detail .destekci-area {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 560px) {
  section.content .container .tab-content .tab-detail .destekci-area {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
}

section.content .container .tab-content .tab-detail .destekci-area a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*border: 1px solid rgba(43, 44, 51, 0.15); */
  border-radius: 10px;
  padding: 0rem 0rem;
}

section.content .container .tab-content .tab-detail .destekci-area a .name {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-transform: capitalize;
}

section.content .container .tab-content .tab-detail .destekci-area a .img-area {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100%;
  margin: 0 auto 0rem;
}

section.content .container .tab-content .tab-detail .destekci-area a .img-area img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

section.content .container .tab-content .tab-detail .destekci-area a:hover .name {
  color: var(--orange);
}


section.content .rota-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

section.content .rota-info .divider {
  background-color: var(--primary);
  height: 2px;
  width: 100px;
}

section.content .rota-info .ui.accordion .title {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  padding: 0;
}

@media screen and (max-width: 1366px) {
  section.content .rota-info .ui.accordion .title {
    font-size: 16px;
  }
}

@media screen and (max-width: 560px) {
  section.content .rota-info .ui.accordion .title {
    font-size: 14px;
  }
}