/* Aulas */

.aulas {
  display: block;
}

header.aulas .social {
    display: flex;
    justify-content: end;
    flex-direction: row;
    align-items:center;
}

h1.header-name {
  font-size: 16px;
  width: 100%;
  text-align: left;
}

h1.header-name span {
    font-size: 24px;
  }


#info {
  background: var(--green-main);
  color: var(--green-light);
  padding: 40px 0;
}

#info h2 {
  color: var(--green-light);
}

.half.col {
  flex-direction: column;
}

.img-info-aulas {
  margin: 0 auto -40px;
  display: block;
}


/*
 Aulas Tabs
*/
.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),
.tabset > input:nth-child(13):checked ~ .tab-panels > .tab-panel:nth-child(7),
.tabset > input:nth-child(15):checked ~ .tab-panels > .tab-panel:nth-child(8),
.tabset > input:nth-child(17):checked ~ .tab-panels > .tab-panel:nth-child(9),
.tabset > input:nth-child(19):checked ~ .tab-panels > .tab-panel:nth-child(10) {
  display: block;
}

/*
 Styling
*/


.tabset > label {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
}

.tabset > label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--green-light);
}

input:focus-visible + label {
  outline: 2px solid var(--green-main);
}

.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
  color:var(--green-main);
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: var(--green-main);
}

.tabset > input:checked + label {
  margin-bottom: -1px;
}

.tab-panel {
  padding: 0;
}
