.questions{
    grid-area: f;
    margin: 2em;
    /* margin-top: 10em; */
    /* background-color: #27272c; */
    background-color: rgba(46, 31, 31, 0.2);
	padding: 30px;
	border-radius: 20px;
	backdrop-filter: blur(3px);
    transform-style: preserve-3d;
    transform: perspective(800px);
	border-top: 1px solid rgba(255,255,255,.5);
	border-left: 3px solid rgba(255,255,255,.5);
	box-shadow: 5px 5px 10px black, inset 5px 5px 10px rgba(0,0,0,.2), inset -5px -5px 10px rgba(255,255,255,.2), inset -2px -2px 5px rgba(0,0,0, .5);
   
}
.half {
  float: left;
  width: 95%;
  padding: 0 1em;
  margin-top:50px;
  text-shadow: none;
}
.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);
}

.half .tabs__accord  {
    border-radius: 15px;
}

.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;
    text-shadow: none;
  } 
}

.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: #515151;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.tab-label__accord:hover {
  background: #7A7A7A;
}
.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: #000000;
  background: white;
  transition: all 0.35s;
}
.tab-close__accord {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #000000;
  cursor: pointer;
}
.tab-close__accord:hover {
  background: #000000;
}

input:checked + .tab-label__accord {
  background: #000000;
}
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: medium;
  }
  .tab-content__accord p{
    font-size: medium;
  }
  
  .questions{
      margin: 2em 0;
      padding: 30px 0;
  }
  
  .half {
      float: left;
      width: 95%;
      padding: 0 1em;
      margin-top:5px;
    }

}