.json {
  display: none;
}

.tab {
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40px;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;

  font-family: Poppins;
  font-weight: 400;
  font-size: 20px;
  color: #667085;
}

.tab button:hover {
  color: #475467;
}

.tab .active {
  color: #475467;
  text-decoration: underline;
  text-decoration-color: #1967ff;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.selectBox {
  display: none;
  flex-direction: column;
  gap: 4px;

  position: relative;
}
.selectBox:after {
  position: absolute;
  top: 44%;
  right: 4%;
  content: "";
  border: solid #4785ff;
  border-width: 0 2.5px 2.5px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  z-index: 1;
}
select::-ms-expand {
  display: none;
}

.selectBox h6 {
  font-family: Inter;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  margin: 0px;
  padding-left: 2px;
}

.selector {
  display: block;
  cursor: pointer;
  width: 100%;
  border-radius: 8px;
  padding: 14px 10px 14px 10px;
  margin-bottom: 20px;
  border: 1px solid #98a2b3;

  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #475467;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.tabContent {
  display: none;
  padding: 100px;
  gap: 50px;
  background-color: #f3f6fb;
  border-radius: 8px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.tabContent.active {
  display: grid;
}

.tabContent h3 {
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0px;
  color: #344054;
}

.tabContent p {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-top: 8px;
  color: #667085;
}

.tabContentIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #6a44ef;
  border-radius: 72px;
  margin-bottom: 10px;
}

.tabContentIcon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 900px) {
  .tab {
    margin-bottom: 20px;
  }
  .tab button {
    font-size: 16px;
  }
}

@media screen and (max-width: 1025px) {
  .tabContent {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 760px) {
  .tabContent {
    padding: 50px;
    grid-template-columns: 1fr;
  }
  .selectBox {
    display: flex;
  }
  .tab {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .selectBox:after {
    right: 6%;
  }
}