html {
  overflow-x: hidden;
}
/* Common Sections Style */
.inside-the-mizzle,
.hl-network,
.cp-infra,
.challenges,
.net-capacity,
.active-providers,
.offer,
.new-era,
.whats-in-future,
.buy-mizzle,
.latest-event,
.we-are-increasing,
.qna {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

/* Sections Start from Here */
.inside-the-mizzle {
  margin-top: 85px;
}
.inside-the-mizzle .main-img {
  height: 100vh;
  width: 100vw;
}

.sticky-title-tab {
  position: relative;
  /* position: -webkit-sticky; */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all linear 0.35s;
  padding: 0 calc(var(--resp) * 4vw);
}
.sticky-title-tab .list-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sticky-title-tab .list-group a {
  background: #cecece;
  border: none !important;
  text-transform: capitalize;
  font-size: 18px;
  border-radius: 0;
  text-align: center;
  padding: 22px 15px;
}
.sticky-title-tab .list-group a.active {
  background: var(--primary-color);
}

/* HL-Network */
.hl-network .lr-wrap {
  justify-content: center;
}
.hl-network .col-lg-6 {
  display: flex;
  align-items: center;
}
.hl-network .purple-line {
  color: var(--color-1);
}
.hl-network ul {
  padding: 0;
  margin: 0;
  list-style-image: url("../images/list-style.svg");
  list-style-position: outside;
  margin-left: 25px;
}
.hl-network ul li {
  position: relative;
  padding-left: 5px;
  margin-bottom: 20px;
  font-weight: 700;
  font-style: italic;
}
.hl-network .card-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1vw;
}
.hl-network .card-wrap .card {
  padding: 35px 25px;
  border: none;
  border-radius: 0;
  height: 32vh;
  min-height: 250px;
  display: flex;
  justify-content: center;
}
.hl-network .card-wrap .card .icon {
  width: 74px;
  min-height: 74px;
  max-height: 74px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin-bottom: 20px;
  background: red;
}
.hl-network .card-wrap .card-title {
  font-size: 22px;
  font-weight: 800;
}
.hl-network .card-wrap .card.sky-blue {
  background: #dffbff;
}
.hl-network .card-wrap .card.sky-blue .icon {
  background: #93f2ff;
}
.hl-network .card-wrap .card.yellow {
  background: #fef4db;
}
.hl-network .card-wrap .card.yellow .icon {
  background: #fbdb86;
}
.hl-network .card-wrap .card.purple {
  background: #f2edff;
}
.hl-network .card-wrap .card.purple .icon {
  background: #d3c2ff;
}
.hl-network .card-wrap .card.brown {
  background: #f5eaeb;
}
.hl-network .card-wrap .card.brown .icon {
  background: #dcb7bc;
}

@media screen and (max-width:991.98px) {
  .hl-network .card-wrap .card {
    min-height: 100px;
    height: auto;
    padding: 20px 15px;
  }
  .hl-network .card-wrap .card-title {
    font-size: 16px;
  }
}

/* CP-Infra */
.cp-infra img {
  width: 80vw;
  height: 90vh;
  margin: auto;
}

/* Challenges */
.challenges img {
  width: 100vw;
  height: 90vh;
  margin: auto;
}
.challenges .col-count-wrap {
  display: flex;
}
.challenges .col-count-wrap p {
  font-size: 20px;
  color: black;
  text-align: left;
  padding: 0 2vw;
  position: relative;
}
.challenges .col-count-wrap p span {
  font-family: "BebasNeue";
  font-size: 116px;
  line-height: 1.25;
  color: #eee;
  position: absolute;
  top: -72px;
  left: 40px;
  z-index: -1;
}
.challenges .col-count-wrap p:nth-child(2) {
  border-left: 1px solid #cecece;
  border-right: 1px solid #cecece;
}

/* Net-capacity */
.net-capacity .card-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.net-capacity .card-wrapper .common-card {
  flex: 1;
}
.net-capacity .card-wrapper .common-card.cpu {
  background: url("../images/cpu.svg") no-repeat;
  background-size: cover;
}
.net-capacity .card-wrapper .common-card.gpu {
  background: url("../images/gpu.svg") no-repeat;
  background-size: cover;
}
.net-capacity .card-wrapper .common-card .card-header {
  border-bottom: 1px solid white;
  padding: 28px;
  text-align: center;
}
.net-capacity .card-wrapper h5 {
  font-family: "BebasNeue";
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
}
.net-capacity .card-wrapper .common-card .card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.net-capacity .card-wrapper .common-card .outer-circle {
  width: 289px;
  height: 289px;
  border-radius: 50%;
  border: 4px solid #a182f3;
  margin: auto;
  padding: 32px;
  position: relative;
}
.net-capacity .card-wrapper .common-card .outer-circle.brown {
  border: 4px solid #c89fa4;
}
.net-capacity .card-wrapper .common-card .outer-circle::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 4px solid transparent;
  border-top: 4px solid black;
  border-radius: 50%;
  display: inline-block;
  transform: rotate(320deg);
}
.net-capacity .card-wrapper .common-card .white-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
  padding: 10px;
}
.net-capacity .card-wrapper .common-card .white-circle .card-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.net-capacity .card-wrapper .common-card .white-circle h6 {
  font-family: "BebasNeue";
  font-size: 22px;
  font-weight: 700;
  color: black;
  text-align: center;
  padding: 0 20px;
}
.net-capacity .card-wrapper .single-data {
  display: flex;
  align-items: center;
  gap: 35px;
}
.net-capacity .card-wrapper .single-data .square {
  width: 13px;
  height: 13px;
  position: relative;
}
.net-capacity .card-wrapper .single-data .square::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 35px;
  height: 1px;
}
.net-capacity .card-wrapper .single-data .square.black,
.net-capacity .card-wrapper .single-data .square.black::after {
  background: black;
}
.net-capacity .card-wrapper .single-data .square.purple,
.net-capacity .card-wrapper .single-data .square.purple::after {
  background: #a182f3;
}
.net-capacity .card-wrapper .single-data .square.brown,
.net-capacity .card-wrapper .single-data .square.brown::after {
  background: #c89fa4;
}
.net-capacity .card-wrapper .single-data .square.yellow,
.net-capacity .card-wrapper .single-data .square.yellow::after {
  background: #cfa949;
}
.net-capacity .card-wrapper .center-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.net-capacity .card-wrapper .center-cards .card {
  width: 100%;
  padding: 35px 30px;
  border-radius: 0;
  border: none;
  min-height: 300px;
}
.net-capacity .card-wrapper .center-cards .card .heading-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.net-capacity .card-wrapper .center-cards .card .heading-container h6 {
  font-family: "BebasNeue";
  font-size: 22px;
  font-weight: 700;
  color: black;
}
.net-capacity .card-wrapper .center-cards .card .card-footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.net-capacity .card-wrapper .center-cards .card .card-footer-container img {
  width: calc(100% - 120px);
  margin: auto;
}
.net-capacity .card-wrapper .center-cards .card .card-footer-container p {
  font-family: "BebasNeue";
  font-size: 16px;
  color: black;
  text-transform: uppercase;
}
.net-capacity .card-wrapper .center-cards .card .card-chart-area {
  margin: 10px 0;
}
.net-capacity .card-wrapper .center-cards .card.yellow {
  background: rgba(251, 219, 134, 0.3);
}
.net-capacity .card-wrapper .center-cards .card.skyblue {
  background: #dffbff;
}

/* Active Providers */
.active-providers h3 {
  font-family: "BebasNeue";
  font-size: 150px;
  color: rgb(0 0 0 / 5%);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  margin-bottom: -100px;
  text-align: center;
}
.active-providers img {
  width: 80vw;
  height: 90vh;
  margin: auto;
}

/* We Are Increasing */
.we-are-increasing {
  padding-bottom: calc(10vh + 55px);
}
.we-are-increasing .black-banner {
  width: 100%;
  min-height: 157px;
  height: 25vh;
  background-color: black;
  background-image: url("../images/vector/opportunity-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.we-are-increasing .black-banner h5 {
  font-weight: 700;
  color: white;
  text-transform: capitalize;
  position: absolute;
  top: 50%;
  left: 58px;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 50%;
}
.we-are-increasing .yellow-div {
  width: 45%;
  min-width: 575px;
  background: var(--color-2);
  position: absolute;
  top: 5vh;
  right: 22px;
  padding: 28px 25px;
  padding-left: 75px;
  min-height: 190px;
  height: 27vh;
  display: flex;
  gap: 10px;
  align-items: center;
}
.we-are-increasing .lr-wrapper {
  width: 100%;
  display: flex;
  gap: 20px;
}
.we-are-increasing .yellow-div .left-area {
  width: 120px;
  padding-top: 0;
}
.we-are-increasing .yellow-div .right-area {
  width: calc(100% - 120px);
  text-align: right;
}
.we-are-increasing .yellow-div h2 {
  font-family: "BebasNeue";
  font-size: 59px;
  font-weight: 700;
  color: black;
}
.we-are-increasing .yellow-div p {
  color: black;
  width: 20vw;
  max-width: 315px;
  padding-top: 47px;
  line-height: 1.25 !important;
  text-align: left;
}
.we-are-increasing .yellow-div .icon-1,
.we-are-increasing .yellow-div .icon-2 {
  width: 28px;
  height: 28px;
  position: absolute;
  z-index: 3;
}
.we-are-increasing .yellow-div .icon-1 {
  top: 32px;
  left: 50px;
}
.we-are-increasing .yellow-div .icon-2 {
  top: 115px;
  left: 50%;
}

/* Offer */
.offer .offer-row {
  align-items: center;
}
.offer img {
  width: 100%;
}

/* Mizzle-Stats */
.mizzle-stats {
  background: var(--primary-color);
  margin-top: 10vh;
  margin-bottom: 10vh;
  padding-top: 60px;
  padding-bottom: 100px;
}
.mizzle-stats .black-section-title {
  position: relative;
}
.mizzle-stats .black-section-title.pink {
  color: #dcb7bc;
}
.mizzle-stats .black-section-title.skyblue {
  color: #93f2ff;
}
.mizzle-stats .black-section-title.yellow {
  color: var(--color-2);
}
.mizzle-stats .black-section-title::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 10px;
  left: 0;
  background: #262626;
}
.mizzle-stats .black-section-title h6 {
  background: black;
  display: inline-block;
  padding-right: 15px;
  position: relative;
  z-index: 3;
  margin-bottom: 35px;
}

/* Net Summary */
.net-summary .card {
  background: #1e1e1e;
  padding: 79px 25px 35px;
  position: relative;
  border-radius: 0;
  min-height: 283px;
}

.net-summary .card:hover {
  transform: translateY(-8px);
  transition: 0.7s ease-in-out;
}

.net-summary .card .icon-img {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: black;
  position: absolute;
  top: 12px;
  right: 12px;
}
.net-summary .card p {
  font-size: 24px;
  font-weight: 700;
  color: #00a962;
}
.net-summary .card p.red {
  color: #cb3c4f;
}
.net-summary .card h2 {
  font-family: "BebasNeue";
  font-size: 66px;
  line-height: 1;
  font-weight: 700;
  color: white;
}
.net-summary .card p.white-line {
  font-family: "BebasNeue";
  font-size: 30px;
  font-weight: 700;
  color: white;
}
.net-summary .card h6 {
  font-size: 27px;
  color: #cecece;
  text-transform: capitalize;
}
.net-summary.blockchain .card {
  padding: 47px 25px 50px;
  text-align: center;
}
.net-summary.blockchain .card img {
  height: 60px;
}
.net-summary.blockchain .card h6 {
  margin: 15px 0;
}

/* New ERA */
.new-era .new-era-inner {
  background-image: url("../images/animations/network/networkmlzetoken/mlzetoken.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}
.new-era .text-content {
  width: 60%;
}
.new-era .text-content p {
  line-height: 1.25 !important;
}
.new-era .text-content .small-line {
  width: 60%;
}
.new-era .text-content .left-area {
  padding-right: 5%;
}
.new-era .text-content .right-area {
  padding-left: 5%;
}

/* Explore-Mizzle */
.explore-mizzle {
  height: 100vh;
  overflow: hidden;
  background-color: white;
  margin-top: 10vh;
  padding-bottom: 10vh;
}
.explore-mizzle .left-area {
  height: 100%;
}
.explore-mizzle .left-area img {
  height: 90vh;
  width: auto;
}
.expolore-title {
  background-color: white;
  position: relative;
  z-index: 1;
}
.explore-mizzle .small-left-heading {
  font-size: 18px;
  font-weight: 700;
  color: black;
  position: absolute;
  top: 0;
  left: 12px;
}
.explore-mizzle .l-r-wrapper {
  display: flex;
  gap: 70px;
  margin-top: 50px;
}
.explore-mizzle .right-area {
  width: calc(100% - 100px);
}
.explore-mizzle .card {
  min-height: 197px;
  height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  /* box-shadow: inset 0 0 0 0 #54b3d6; */
  transition: color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.explore-mizzle .card:hover {
  color: #fff;
  /* box-shadow: inset 440px 0 440px 0 #9fa0a0; */
  background-color: #cbcbcb;
}

.explore-mizzle .block-title {
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.explore-mizzle .card-title {
  font-family: "BebasNeue";
  text-transform: uppercase;
  font-size: 27px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
}
.explore-mizzle .card img {
  max-width: 98px;
  margin: 0 auto 10px;
}

/* Token Metrics */
.token-metrics {
  background: var(--primary-color);
  margin-top: 10vh;
  margin-bottom: 10vh;
  padding-top: 100px;
  padding-bottom: 135px;
}
.token-metrics p {
  color: var(--stroke-gray);
}
.token-metrics .card {
  background-color: #1e1e1e;
  min-height: 245px;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: auto;
  transition: transform 0.5s ease, background-size 0.5s ease;
}

.token-metrics .card:hover {
  transform: translateY(-12px);
}

.token-metrics .card-col:nth-child(1) .card {
  background-image: url("../images/icons/token-metrics-1.svg");
  background-position: 0 0;
}
.token-metrics .card-col:nth-child(2) .card {
  background-image: url("../images/icons/token-metrics-2.svg");
  background-position: 100% 97%;
}
.token-metrics .card-col:nth-child(3) .card {
  background-image: url("../images/icons/token-metrics-3.svg");
  background-position: 100% 0;
}
.token-metrics .card-col:nth-child(4) .card {
  background-image: url("../images/icons/token-metrics-4.svg");
  background-position: 100% 97%;
}
.token-metrics .card-col:nth-child(5) .card {
  background-image: url("../images/icons/token-metrics-5.svg");
  background-position: 0 0;
}
.token-metrics .card-col:nth-child(6) .card {
  background-image: url("../images/icons/token-metrics-6.svg");
  background-position: 0 100%;
}
.token-metrics .card h6 {
  font-size: 30px;
  color: #cecece;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.token-metrics .card h2 {
  font-family: "BebasNeue";
  font-size: 66px;
  font-weight: 700;
  color: white;
}

/* Whats-In-Future */
.whats-in-future img {
  width: 80vw;
  height: 90vh;
}

/* Buy-Mizzle */
.buy-mizzle .black-div,
.buy-mizzle .purple-div {
  padding: 60px 25px 22px;
  min-height: 323px;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.buy-mizzle .purple-div {
  background-color: var(--container-color);
  background-image: url("../images/decentralize-left-bg.svg"),
    url("../images/decentralize-right-bg.svg");
  background-repeat: no-repeat;
  background-size: 60% 60%;
  background-position: -9vw 100%, 150% 0;
}
.buy-mizzle .black-div {
  background-color: var(--primary-color);
  background-image: url("../images/buy-centralize-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.buy-mizzle .icons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}
.buy-mizzle .icons-wrapper .icon-box {
  width: 68px;
  height: 68px;
  background: black;
  display: grid;
  place-content: center;
}
.buy-mizzle .yellow-line {
  color: var(--color-2);
}
.buy-mizzle .black-div .icons-wrapper .icon-box:nth-child(1) {
  background: #cecece;
}
.buy-mizzle .black-div .icons-wrapper .icon-box:nth-child(2) {
  background: #93f2ff;
}
.buy-mizzle .black-div .icons-wrapper .icon-box:nth-child(3) {
  background: #dcb7bc;
}
.buy-mizzle .black-div .icons-wrapper .icon-box:nth-child(4) {
  background: var(--container-color);
}
.buy-mizzle .black-div .icons-wrapper .icon-box:nth-child(5) {
  background: var(--gray);
}
.buy-mizzle .black-div .icons-wrapper .icon-box:nth-child(6) {
  background: var(--color-2);
}

/* Latest Event */
.latest-event .card {
  padding: 5px;
  border: 1px solid var(--stroke-gray);
  border-radius: 0;
  position: relative;
  transition: all linear 0.5s;
}
.latest-event .card:hover {
  transform: translateY(-5px);
}
.latest-event .card .card-date {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  background: var(--primary-color);
  display: inline-block;
}
.latest-event .card .card-date p {
  font-size: 16px;
  font-weight: 700;
  color: white;
}
.latest-event .card .card-body {
  padding: 20px 7px 32px;
  min-height: 170px;
  height: 28vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.latest-event .card img {
  width: 100%;
  border: 1px solid var(--stroke-gray);
  border-radius: 0;
}
.latest-event .card .card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.latest-event .card .card-text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-color);
  margin-bottom: 22px;
}
.latest-event .card .date-n-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.latest-event .card .date-n-time p {
  font-size: 16px;
  color: #999797;
}

/* QNA */
.qna .left-area img {
  width: 100%;
}
.qna .accordion .accordion-item {
  border-bottom: 1px solid #cecece;
}
.qna .accordion .accordion-button {
  box-shadow: none;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 30px 10px;
}
.qna .accordion .accordion-button:not(.collapsed) {
  background: transparent;
  background: #eeeeee70;
}
.qna .accordion .accordion-button::after {
  display: none;
}
.qna .accordion .acc-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  position: relative;
}
.qna .accordion .acc-icon::before {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  color: #93f2ff;
  font-size: 35px;
  line-height: 1;
  place-content: center;
}
.qna .accordion .accordion-button:not(.collapsed) .acc-icon::before {
  content: "-";
}
.qna .accordion .accordion-button h6 {
  width: calc(100% - 40px);
  font-size: 30px;
  font-weight: 700;
}
.qna .accordion .accordion-body {
  padding-left: 66px;
  padding-top: 0;
}
.qna .accordion .show .accordion-body {
  background: #eeeeee70;
}

/* Media Queries */
@media (max-width: 1280px) {
  /* .section-title {
        font-size: 40px;
        line-height: 1.25;
        margin-bottom: 20px;
    } */
  .section-para {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--text-color);
  }
  .sticky-title-tab .list-group a {
    font-size: 16px;
    padding: 15px 10px;
  }
  .hl-network .card-wrap {
    gap: 20px;
  }
  .challenges .col-count-wrap p {
    font-size: 16px;
  }
  .active-providers h3 {
    font-size: 125px;
    margin-bottom: -80px;
  }
  .net-summary .card h2 {
    font-size: 40px;
  }
  .net-summary .card {
    min-height: 260px;
  }
  .net-summary .card h6 {
    font-size: 22px;
  }
  .net-summary .card p {
    font-size: 20px;
  }
  .new-era .left-area img,
  .new-era .right-area img {
    width: 50px;
  }
  .new-era .big-p {
    font-size: 18px !important;
  }
  .explore-mizzle .block-title {
    font-size: 30px !important;
  }
  .explore-mizzle .card-title {
    font-size: 25px;
  }
  .token-metrics .card h6 {
    font-size: 22px;
  }
  .token-metrics .card h2 {
    font-size: 55px;
  }
  .latest-event .card .card-title {
    font-size: 20px;
  }
  .latest-event .card .date-n-time p {
    font-size: 14px;
  }
  .qna .accordion .accordion-button h6 {
    font-size: 22px;
  }
  .hl-network .card-wrap .card-title {
    font-size: 18px;
  }
  .challenges .col-count-wrap p span {
    font-size: 85px;
    top: -52px;
  }
  .net-capacity .card-wrapper h5 {
    font-size: 35px;
  }
  /* .net-capacity .card-wrapper .common-card .card-header{
        padding: 15px;
    } */
  .latest-event .card .card-text {
    font-size: 14px;
    margin-bottom: 18px;
  }
  /* .qna .accordion .accordion-button{
        padding: 10px;
    } */
  .explore-mizzle .card img {
    max-width: 75px;
  }
}

@media (max-width: 991.98px) {
  .section-para {
    font-size: 16px;
  }
  .how-it-works-network-sec {
    height: unset;
  }
  .how-it-works-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 5vh;
  }
  .how-it-work-card {
    padding-block: 10%;
    width: 90%;
  }
  .top-card,
  .bottom-card {
    padding-inline: 0;
    display: flex;
    justify-content: center;
  }
  .bottom-card {
    margin-top: 0;
  }
  .puzzle-1-bottom,
  .puzzle-1-right,
  .puzzle-2-bottom,
  .puzzle-2-left,
  .puzzle-3-top,
  .puzzle-3-right,
  .puzzle-4-left,
  .puzzle-4-top {
    display: none;
  }
  .explore-mizzle {
    height: unset;
  }
  .buy-mizzle .icons-wrapper{
    gap: 2vw;

  }

  .net-summary .card h2 {
    font-size: 36px;
  }
  .net-summary .card h6 {
    font-size: 16px;
  }
  .net-summary .card .icon-img {
    width: 23px;
    height: 23px;
  }
  .net-summary .card .icon-img img{
    width: 12px;
  }
  .net-summary .card p {
    font-size: 12px;
  }
  .net-summary .card, .net-summary.blockchain .card{
    padding: 25px 20px 25px;
  }
  .fw800.section-title{
    font-weight: 700!important;
  }
  .token-metrics .card h2 {
    font-size: 30px;
  }
  .token-metrics .card {
    background-color: #1e1e1e;
    min-height: 125px;
  }
  .token-metrics .card h6 {
    font-size: 16px;
  }
  .token-metrics .card-col .card{
    background-size: auto 50%;
  }
  .buy-mizzle .icons-wrapper {
    margin-bottom: 40px;
  }
  .buy-mizzle .black-div, .buy-mizzle .purple-div {
    padding: 40px 25px 22px;
  }
  .hl-network .card-wrap {
    gap: 10px;
  }
}


@media (max-width:767.98px) {
  .qna, .hl-network{
    padding-bottom: 0px;
  }
  .hl-network{
    padding-top: 0;
  }
  
}