.half {
  float: left;
  width: 95%;
  padding: 0 1em;
  margin-top:50px;
}
.half1 {
  display: none;
}

.input__accord {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.row__accord {
  display: flex;
}
.row__accord .col {
  flex: 1;
}
.row__accord .col:last-child {
  margin-left: 1em;
}
.tabs__accord {
  /* border-radius: 8px; */
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.tabs__accord p{
  /* font-size: large; */
  /* --width: 100%; */
  /* max-width: 35em; */
  /* margin: 1.4em auto; */
  font-size: 0.87em; /* 14px*/
  
}
@media (min-width: 480px) and (max-width: 1024px) {
  .tabs__accord p{
    font-size: calc(~"14px + (18 - 14) * ( (100vw - 480px) / ( 1024 - 480) )");
  }
}

@media (min-width: 1025px) {
  .tabs__accord p{
    font-size: 1.13rem;
  } 
}

.tab__accord {
  width: 100%;
  color: white;
  overflow: hidden;
  border-bottom: 1px solid white;
}
.tab-label__accord {
  display: flex;
  justify-content: space-between;
  padding: 1em 1em 1em 3em;
  background: #2c3e50;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.tab-label__accord:hover {
  background: #1a252f;
}
.tab-label__accord::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.tab-content__accord {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
}
.tab-close__accord {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.tab-close__accord:hover {
  background: #1a252f;
}

input:checked + .tab-label__accord {
  background: #1a252f;
}
input:checked + .tab-label__accord::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-content__accord {
  max-height: 100vh;
  padding: 1em 2.5em;
}

.wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1000px){
  .tabs__accord p{
    font-size: larger;
  }
  .tab-content__accord p{
    font-size: xx-large;
  }

}