.tabs1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:50px
    
}
  .tabs1>ul {
    list-style-type: none;
    margin: 0;
    padding: 0;

  }

  .tab-head {
    display: flex;
    justify-content: start;
    gap: 25px;
    padding: 50px 0;
}

  .tabs1>ul li {
    display: block;
    list-style-type: none;
    
  }
  .tabs1 li{
      list-style: none;
  }
a.tab-link.active {
    padding: 10px 15px;
    background:linear-gradient(to right, #309ad3, #445d84);
    border: none;
    color: #fff;
}
a.tab-link{
    background:linear-gradient(to right, #309ad3, #445d84);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 10px 15px;
        border-radius: 10px 10px 0px 10px;
        font-size:14px;
}
  .tabs1>ul li:not(:last-child) {
  }
  .tab-body-data img{
    width: 100%;
  }
  .tabs1>ul li a,
  .tabs1>ul li a:visited {
    display: flex;
    border-bottom: none;
    text-decoration: none;
    color: #5b7e96;
    padding: 1rem 1.5rem;
    transition: all 0.2s ease-in-out;
    word-wrap: break-word;
    border: 1px solid #5b7e96;
  }

  .tabs1>ul li a:hover,
  .tabs1>ul li a:focus,
  .tabs1>ul li a:active {
    border-bottom: none;
    outline: 0;
  }

  .tabs1>ul li a.active {
    background-color: #0a5b93;
    color: #fff;
    border: 1px solid #0a5b93;

  }

  .tabs1>ul li a:hover:not(.active) {
    color: #0067b8;
    border: 1px solid #0a5b93;

  }

  .tabs1>ul li a>span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .tabs1>ul li a>span.tab-label {
    display: none;
  }

  .tabs1 section {
    /* width: 85%; */
    background-color: #fff;
    padding: 1rem;
    display: none;
    word-wrap: break-word;
  }
/*  .tab-body-data{*/
/*  display: grid;*/
/*  grid-template-columns: repeat(2,1fr);*/
/*  gap: 20px;*/
/*}*/
.tab-body-data h3{
    color: #0a5b93;
}
  .tabs1 section>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.2s, transform 0.2s;
  }

  .tabs1 section>*:nth-child(1) {
    transition-delay: 0.2s;
  }

  .tabs1 section>*:nth-child(2) {
    transition-delay: 0.3s;
  }

  .tabs1 section>*:nth-child(3) {
    transition-delay: 0.4s;
  }

  .tabs1 section>*:nth-child(4) {
    transition-delay: 0.5s;
  }

  .tabs1 section>*:nth-child(5) {
    transition-delay: 0.6s;
  }

  .tabs1 section>*:nth-child(6) {
    transition-delay: 0.7s;
  }

  .tabs1 section>*:nth-child(7) {
    transition-delay: 0.8s;
  }

  .tabs1 section>*:nth-child(8) {
    transition-delay: 0.9s;
  }

  .tabs1 section>*:nth-child(9) {
    transition-delay: 1s;
  }

  .tabs1 section>*:nth-child(10) {
    transition-delay: 1.1s;
  }

  .tabs1 section>*:nth-child(11) {
    transition-delay: 1.2s;
  }

  .tabs1 section>*:nth-child(12) {
    transition-delay: 1.3s;
  }

  .tabs1 section>*:nth-child(13) {
    transition-delay: 1.4s;
  }

  .tabs1 section>*:nth-child(14) {
    transition-delay: 1.5s;
  }

  .tabs1 section>*:nth-child(15) {
    transition-delay: 1.6s;
  }

  .tabs1 section>*:nth-child(16) {
    transition-delay: 1.7s;
  }

  .tabs1 section>*:nth-child(17) {
    transition-delay: 1.8s;
  }

  .tabs1 section>*:nth-child(18) {
    transition-delay: 1.9s;
  }

  .tabs1 section>*:nth-child(19) {
    transition-delay: 2s;
  }

  .tabs1 section>*:nth-child(20) {
    transition-delay: 2.1s;
  }

  .tabs1 section.active {
    display: block;
  }

  .tabs1 section.active-content>* {
    opacity: 1;
    transform: translateY(0);
  }

  @media (min-width: 576px) {
    .tabs1>ul {
      /* width: 150px; */
    }

    .tabs1>ul li a {
      flex-wrap: wrap;
    }

    .tabs1>ul li a>span {
      width: 100%;
    }

    .tabs1>ul li a>span.tab-label {
      width: 100%;
      display: block;
      margin-top: 0.2rem;
    }

    .tabs1 section {
      width: calc(100% - 10px);
      padding: 2rem 0rem;
    }
  }

  @media (min-width: 768px) {
    body {
      font-size: 1.125rem;
    }

    /*.tabs-container {*/
    /*  padding: 4rem 4rem;*/
    /*}*/
  }

  @media (min-width: 992px) {
    .tabs1 {
      /* width: 800px; */
    }
  }