body {
  font-weight: 400;
  font-style: normal;
  font-family: "Inter", serif;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}

.ht-section {
  padding: 50px 0px;
}

.ht-section h2 {
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  color: #000;
}

.ht-section h2 span {
  color: #38b6ff;
}

.ht-section .sub-text {
  font-size: 16px;
  line-height: 24px;
  color: #a6a6a6;
  margin-top: 10px;
}

.acc-opt {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px;
}

.acc-opt button {
  width: 100%;
  max-width: 200px;
  height: 50px;
  background: #737373;
  border-radius: 30px;
  color: #d9d9d9;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: 0.26s linear;
}

.acc-opt button.active {
  background: linear-gradient(90deg, #050908, #28584e, #549d60);
  color: #fff;
  font-size: 24px;
  text-align: left;
  padding-left: 10px;
  position: relative;
  border-radius: 10px;
  height: 90px;
}

.acc-opt button.active:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 10px;
  background-image: url("/images/line.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.acc-opt button.active:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 10px;
  background-image: url("/images/line.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.acc-opt button.active a {
  background: #545454;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 100%;
  border-radius: 10px;
  padding: 5px 10px;
  display: block;
  margin: 5px auto 0px;
}

.acc-tbl {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    #050908,
    #000000,
    #000000,
    #000000,
    #000000,
    #000000,
    #000000,
    #346349
  );
  padding: 20px;
  position: relative;
  font-size: 14px;
  color: #fff;
}

.acc-tbl:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -20%;
  transform: translateX(0%);
  width: 100%;
  height: 10px;
  background-image: url("/images/line.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.acc-tbl:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 20%;
  transform: translateX(0%);
  width: 100%;
  height: 10px;
  background-image: url("/images/line.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.acc-tbl .left-image {
  content: "";
  position: absolute;
  left: 0px;
  top: 20%;
  transform: translateY(0%);
  width: 10px;
  height: 90%;
  background-image: url("/images/line-v.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.acc-tbl .right-image {
  content: "";
  position: absolute;
  right: 0px;
  top: -10%;
  transform: translateY(0%);
  width: 10px;
  height: 90%;
  background-image: url("/images/line-v.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.acc-tbl h2 {
  float: left;
  font-size: 32px;
  color: #fff;
}

.acc-tbl a {
  float: right;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 5px 25px;
  border: solid 1px #fff;
  margin-top: 10px;
}

.acc-tbl div.brd {
  border-bottom: solid 1px #737373;
  padding: 5px;
  margin-top: 25px;
}

.acc-opt a:hover,
.acc-tbl a:hover {
  color: inherit;
  text-decoration: none;
}
.choose_account_section {
  display: flex;
  justify-content: space-evenly;
}
.account-head {
  margin-bottom: 2.5rem;
}

@media only screen and (max-width: 991px) {
  .acc-opt {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .choose_account_section {
    display: block;
    justify-content: space-evenly;
  }

  .acc-opt li {
    flex: 0 0 auto;
    width: calc(33.33333% - 40px);
  }
}

@media only screen and (max-width: 767px) {
  .acc-opt button.active {
    height: 105px;
  }
}

@media only screen and (max-width: 575px) {
  .acc-opt li {
    flex: 0 0 auto;
    width: calc(50% - 20px);
  }
}
