:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

.a-v-tabs {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  /* Tabs: Tabs */
  /* Tabs: Slides */
}
@media only screen and (min-width: 768px) {
  .a-v-tabs {
    grid-template-columns: 280px 1fr;
  }
}
.a-v-tabs__tabs {
  display: flex;
  flex-direction: row;
  overflow: auto;
}
@media only screen and (min-width: 768px) {
  .a-v-tabs__tabs {
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid rgba(1, 169, 193, 0.2);
  }
}
.a-v-tabs__tabs .active {
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 3px solid rgba(1, 169, 193, 0.2);
}
@media only screen and (min-width: 768px) {
  .a-v-tabs__tabs .active {
    font-size: 1.5rem;
    border-bottom: none;
  }
  .a-v-tabs__tabs .active:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background-color: #01a9c1;
  }
}
@media only screen and (min-width: 768px) {
  .a-v-tabs__tab:last-child {
    margin-bottom: 0;
  }
}
.a-v-tabs__tab {
  font-size: 1.125rem;
  margin-bottom: 24px;
  position: relative;
  width: 100%;
  display: flex;
  line-height: 2.625rem;
  margin-right: 24px;
  text-wrap: nowrap;
}
@media only screen and (min-width: 768px) {
  .a-v-tabs__tab {
    font-size: 1.375rem;
    margin-right: 0;
  }
}
.a-v-tabs__tab:hover {
  font-size: 1.125rem;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .a-v-tabs__tab:hover {
    font-size: 1.5rem;
  }
}
.a-v-tabs__slides .active {
  display: block;
}
.a-v-tabs__slide {
  display: none;
}
.a-v-tabs__slide video {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .a-v-tabs__slide video {
    padding-left: 40px;
  }
}