.air-1 {
    animation: float 4s infinite ease-in-out alternate;
}
.air-2 {
    animation-delay: 1s;
}
@keyframes float {
	100% {
    transform: translateY(5px);
    /*
    box-shadow: 0 40px 10px -18px hsla(0,0%,0%,.2),
    					0 40px 16px -12px hsla(0,0%,0%,.2);
    					*/
  }
}
/*
 CSS for the main interaction
*/
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
  
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
  transform: translateX(-150%);
  animation: ani 0.4s forwards;
}
@keyframes ani {
  0% {transform: translateX(-150%);}
  100% {transform: translateY(0);}
}

/*
 Styling
*/
 

.tabset > label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 25px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
  width: 40%;
  color: #c2c2c2;
    text-transform: uppercase;
    opacity: 0.6;
}

.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 77%;
  height: 4px;
  background: #d1d1d1;
}

input:focus-visible + label {
  outline: 2px solid rgba(0,102,204,1);
  border-radius: 3px;
}

.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
  color: rgb(42, 64, 255);
  opacity: 1;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: rgb(42, 64, 255);
  
}

.tabset > input:checked + label {
    /*
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
  */
}

.tab-panel {
    /*
  padding: 30px 0;
  border-top: 1px solid #ccc;
  */
}
 

.tabset {
  max-width: 65em;
}