/* 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: 66%;
  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;
    padding: 0 10px;
  }
}
@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; */
    width: 100% !important;
  }
}
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;
  z-index: 2;
  width: 50%;
  white-space: nowrap;
  color: var(--bozbeyblue);
  margin-left: 5px;
}
@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(33% - 5px) !important;
  height: 42px;
  background: var(--red);
  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);
  margin: 0 5px;
}
@media screen and (max-width: 560px) {
  section.content .container .tab-area .indicator {
    height: 36px;
  }
}
section.content .container .tab-content {
  background-color: var(--white);
  border-radius: 20px;
}
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 .sponsor-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
}
@media screen and (max-width: 1440px) {
  section.content .container .tab-content .tab-detail .sponsor-area {
    grid-gap: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  section.content .container .tab-content .tab-detail .sponsor-area {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  section.content .container .tab-content .tab-detail .sponsor-area {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
  }
}
section.content .container .tab-content .tab-detail .sponsor-area a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(43, 44, 51, 0.15);
  border-radius: 10px;
  padding: 1rem 2rem;
}
section.content .container .tab-content .tab-detail .sponsor-area a .name {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-transform: capitalize;
}
section.content .container .tab-content .tab-detail .sponsor-area a .img-area {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  width: 90%;
  margin: 0 auto 2rem;
}
section.content .container .tab-content .tab-detail .sponsor-area a .img-area img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
section.content .container .tab-content .tab-detail .sponsor-area a:hover .name {
  color: var(--orange);
}
