.select {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 130px;
  height: 30px;
  cursor: pointer;
}

.option {
  padding: 0 30px 0 10px;
  min-height: 30px;
  display: flex;
  align-items: center;
  background: rgba(233, 198, 105, 1);
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  width: 100%;
  color: #000;
  pointer-events: none;
  order: 2;
  z-index: 1;
  transition: background 0.4s ease-in-out;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.option:hover {
  color: #fff;
}

.select:focus .option {
  position: relative;
  pointer-events: all;
}

input {
  opacity: 0;
  position: absolute;
  left: -99999px;
}

input:checked + label {
  order: 1;
  z-index: 2;
  background: rgba(233, 198, 105, 1);
  border-top: none;
  position: relative;
  cursor: pointer;
  color: #000;
}

input:checked + label:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  position: absolute;
  right: 10px;
  top: calc(50% - 2.5px);
  pointer-events: none;
  z-index: 3;
}

input:checked + label:before {
  position: absolute;
  right: 0;
  height: 40px;
  width: 40px;
  content: "";
  background: rgba(233, 198, 105, 1);
}

.newAbout_1 {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #ccb074;
}

.newAbout_2{
  width: 132px;
  height: 53px;
  background: #e1e2e6;
  color: #000;
  display: flex;
  font-size: 15px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}

.newAbout_3{
display: flex;
margin-top: 25px;
}

#teamOne {
  display: none;
}

#teamTwo {
  display: none;
}

#teamThree {
  display: none;
}

#teamFour {
  display: none;
}

#teamFive{
  display: none;
}

#part2::before{
  content: none !important;
}

.new_text_2{
  margin-top: 3px;
  font-size: 1.5rem !important;
}
.new_text_2_new{
  font-size: 1.8rem !important;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .newAbout_2{
    width: 100px;
    height: 50px;
    background: #e1e2e6;
    color: #000;
    display: flex;
    font-size: 15px;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
  }
}