  .tabs-body {
    margin: 0 auto;
  }

  .tabs-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .scroll-btn {
    cursor: pointer;
    font-weight: bold;
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 30px;
  }

  .scroll-btn.left {
    margin-right: 20px;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20.25 12H3.75" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"%3E%3C/path%3E%3Cpath d="M10.5 5.25L3.75 12L10.5 18.75" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"%3E%3C/path%3E%3C/svg%3E');
  }

  .scroll-btn.right {
    margin-left: 20px;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M3.75 12H20.25" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"%3E%3C/path%3E%3Cpath d="M13.5 5.25L20.25 12L13.5 18.75" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"%3E%3C/path%3E%3C/svg%3E');
  }

  .scroll-btn.hidden {
    opacity: 0.1;
    pointer-events: none;
  }

  .tabs-body-header {
    display: flex;
  }

  .tabs-body-header-link {
    position: relative;
    padding: 0 0px 14px 0;
    text-decoration: none;
    color: #061C3D;
    cursor: pointer;
    border-bottom: none;
    transition: all 0.3s ease;
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.01px;
    text-align: left;
    margin-right: 51px;
  }

  .tabs-body-header-link:hover {
    opacity: 0.8;
  }

  .tabs-body-header-link::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: rgba(254, 103, 38, 1);
    transition: width 0.3s ease, left 0.3s ease;
  }

  .tabs-body-header-link.active::before {
    width: 100%;
    left: 0;
  }

  .tab-content {
    display: none;
    padding: 30px 0;
    /*border-top: 1px solid #cbcbcb;*/
    font-size: 16px;
  }

  #tab1:checked ~ .tabs-body-header label[for="tab1"],
  #tab2:checked ~ .tabs-body-header label[for="tab2"],
  #tab3:checked ~ .tabs-body-header label[for="tab3"],
  #tab1:checked ~ .tabs-container .tabs-body-header label[for="tab1"],
  #tab2:checked ~ .tabs-container .tabs-body-header label[for="tab2"],
  #tab3:checked ~ .tabs-container .tabs-body-header label[for="tab3"],
  #tab4:checked ~ .tabs-container .tabs-body-header label[for="tab4"],
  #tab5:checked ~ .tabs-container .tabs-body-header label[for="tab5"],
  #tab6:checked ~ .tabs-container .tabs-body-header label[for="tab6"],
  #tab7:checked ~ .tabs-container .tabs-body-header label[for="tab7"],
  #tab8:checked ~ .tabs-container .tabs-body-header label[for="tab8"],
  #tab9:checked ~ .tabs-container .tabs-body-header label[for="tab9"],
  #tab10:checked ~ .tabs-container .tabs-body-header label[for="tab10"],
  #tab11:checked ~ .tabs-container .tabs-body-header label[for="tab11"],
  #tab12:checked ~ .tabs-container .tabs-body-header label[for="tab12"] {
    font-weight: bold;
  }

#tab1:checked ~ .tabs-body-header label[for="tab1"]::before,
#tab2:checked ~ .tabs-body-header label[for="tab2"]::before,
#tab3:checked ~ .tabs-body-header label[for="tab3"]::before,
#tab1:checked ~ .tabs-container .tabs-body-header label[for="tab1"]::before,
#tab2:checked ~ .tabs-container .tabs-body-header label[for="tab2"]::before,
#tab3:checked ~ .tabs-container .tabs-body-header label[for="tab3"]::before,
#tab4:checked ~ .tabs-container .tabs-body-header label[for="tab4"]::before,
#tab5:checked ~ .tabs-container .tabs-body-header label[for="tab5"]::before,
#tab6:checked ~ .tabs-container .tabs-body-header label[for="tab6"]::before,
#tab7:checked ~ .tabs-container .tabs-body-header label[for="tab7"]::before,
#tab8:checked ~ .tabs-container .tabs-body-header label[for="tab8"]::before,
#tab9:checked ~ .tabs-container .tabs-body-header label[for="tab9"]::before,
#tab10:checked ~ .tabs-container .tabs-body-header label[for="tab10"]::before,
#tab11:checked ~ .tabs-container .tabs-body-header label[for="tab11"]::before,
#tab12:checked ~ .tabs-container .tabs-body-header label[for="tab12"]::before {
    width: 100%;
    left: 0;
    bottom: 12px;
}


  #tab1:checked ~ .content1,
  #tab2:checked ~ .content2,
  #tab3:checked ~ .content3,
  #tab4:checked ~ .content4,
  #tab5:checked ~ .content5,
  #tab6:checked ~ .content6,
  #tab7:checked ~ .content7,
  #tab8:checked ~ .content8,
  #tab9:checked ~ .content9,
  #tab10:checked ~ .content10,
  #tab11:checked ~ .content11,
  #tab12:checked ~ .content12 {
    display: block;
  }

  .tabs-body input[type="radio"] {
    display: none;
  }

  @media screen and (max-width: 992px) {
    .tabs-container {
      align-items: flex-start;
    }
    .scroll-btn {
      margin-top: 7px;
      width: 100px;
      height: 20px;
    }
  }