/*---common css---*/

* {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

html::-webkit-scrollbar {
  height: 30px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  background: #636363;
  -webkit-border-radius: 0;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

:root {
  --primary: #265df5;
  --white: #ffffff;
  --heading-color: #060713;
  --black: #000000;
  --gray: #efefef;
  --green: #00ba36;
  --orange: #f45926;
  --dark-gray: #414967;
  --text-gray: #424967;
  --light-gray: #949bc0;
  --light-blue-bg: #edf5ff;
  --light-gray-bg: #efefef;
  --light-orange-bg: #fdf7ed;
  --light-green-bg: #f1fbf4;
  --text-gradient: linear-gradient(90deg, #f55d27 0%, #6b6be2 100%);
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

strong {
  font-size: inherit;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

body,
li,
a,
a.btn {
  color: var(--heading-color);
}

.container {
  max-width: 1200px;
}

a {
  text-decoration: none;
  transition: 0.5s all linear;
}

.text-gray {
  color: var(--text-gray);
}

.dark-gray {
  color: var(--dark-gray);
}

.text-blue {
  color: var(--primary);
}

.text-orange {
  color: var(--orange);
}

.light-blue-bg {
  background-color: var(--light-blue-bg);
}

.light-gray-bg {
  background-color: var(--light-gray-bg);
}

.light-orange-bg {
  background-color: var(--light-orange-bg);
}

.light-green-bg {
  background-color: var(--light-green-bg);
}

.font-14 {
  font-size: 14px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.inner-img {
  max-width: 600px;
  width: 100% !important;
  box-shadow: 0px 4px 28px 5px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.glightbox-clean .gslide-media {
  box-shadow: none !important;
}

.goverlay {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(5px);
}

.gslide-image img {
  border-radius: 20px;
  max-width: 80%;
}

.gprev,
.gnext {
  display: none !important;
}

.faded-circle {
  position: relative;

  &:after {
    position: absolute;
    content: "";
    width: 275px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(360deg, #ffffff 0%, #edf5ff 100%);
    z-index: -1;
  }
}

.faded-circle.right:after {
  right: -50px;
  top: -50px;
}

.faded-circle.left {
  padding: 50px 0 0 50px;
}

.faded-circle.left:after {
  left: 0px;
  top: 0px;
}

/*---/searchbar css---*/

.search-box {
  width: 95%;

  .search-form {
    position: relative;
  }

  input {
    font-size: 16px;
    height: 45px;
    border-radius: 10px;
    border-color: #c8cce1;
    padding-right: 40px;
  }

  input::placeholder {
    color: var(--text-gray);
  }

  input:focus {
    box-shadow: none !important;
    border-color: #c8cce1;
  }

  .search-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    border-radius: 7px;
    padding: 0;
    width: 37px;
    height: 37px;
  }
}

#resultList {
  background-color: #ffffff;
  list-style: none;
  margin: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
  max-width: 400px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 15px 15px;

  &:empty {
    display: none;
  }

  li {
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;

    &:not(:last-child) {
      border-bottom: 1px solid #eee;
    }

    &:hover {
      background: #f7f7f9;
    }

    .highlight {
      color: #000000;
      font-weight: 900;
    }
  }
}

#resultList::-webkit-scrollbar {
  height: 30px;
  width: 5px;
  background: transparent;
  border-radius: 10px;
}

#resultList::-webkit-scrollbar-thumb {
  background: #999;
  background: #c8cce1;
  -webkit-border-radius: 0;
  border-radius: 10px;
}

#resultList::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

/*---/searchbar css---*/

.breadcrumb {
  margin-bottom: 0.5rem;
}

.breadcrumb :is(li, a, p) {
  font-size: 12px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  font-size: 16px;
  line-height: 16px;
  padding-right: 5px;
}

/*---/common css---*/
.navbar {
  background: var(--black);
  padding: 0.75rem 0;
}

.theme1 {
  background: linear-gradient(90deg, #edf5ff 0%, #ffffff 100%);
}

.theme2 {
  background: linear-gradient(90deg, #fff2e4 0%, #ffffff 100%);
}

.theme3 {
  background: linear-gradient(90deg, #edfdde 0%, #ffffff 100%);
}

.theme4 {
  background: linear-gradient(90deg, #ffe6e6 0%, #ffffff 100%);
}

.theme5 {
  background: linear-gradient(90deg, #e5f4f5 0%, #ffffff 100%);
}

.gradient-title {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 15px;

  .faded-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #6868dd 0%, var(--white) 100%);
  }
}

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: 2.5px;
  font-weight: 700;
}

.blog-banner {
  .banner-text {
    h1 {
      font-size: 40px;
      font-weight: 700;
      text-wrap-style: balance;
    }

    h5 {
      color: var(--primary);
      font-size: 14px;
      margin-bottom: 0;
      line-height: 1.3;
    }

    p {
      color: var(--dark-gray);
      text-wrap-style: pretty;
    }
  }
}

/*---/Side bar css---*/

.blog-sidebar {
  position: sticky;
  top: 30px;
  height: calc(100vh - 30px);
  overflow-y: auto;
  padding-bottom: 30px;

  h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;

    a:hover {
      color: inherit;
    }
  }
}

.blog-sidebar::-webkit-scrollbar {
  height: 30px;
  width: 3px;
  background: transparent;
  border-radius: 10px;
}

.blog-sidebar::-webkit-scrollbar-thumb {
  background: #999;
  background: #c8cce1;
  -webkit-border-radius: 0;
  border-radius: 10px;
}

.blog-sidebar::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

.menu,
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu {
  padding-left: 3px;
}

/* Group */
.menu > li:not(:last-child) {
  margin-bottom: 10px;
}

.dropdown-header {
  font-size: 14px;
  display: flex;
  gap: 8px;
  color: var(--heading-color);
  padding: 0px;
  background: #fff;
  cursor: pointer;
  white-space: normal;
  align-items: baseline;

  img {
    width: 5px;
    transition: transform 0.3s ease;
  }
}

/* Icon */

.menu > li.active .arw-icon {
  transform: rotate(90deg);
}

/* Group Submenu Animation */
.submenu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding-left: 25px;

  li {
    a {
      font-size: 13px;
      padding-top: 8px;
      display: block;
    }
  }
}

.menu > li.active > .submenu {
  max-height: 800px;
  opacity: 1;
}

/* Child links */

.submenu a.active-link {
  font-weight: bold;
  color: #000;
}

.submenu a:hover {
  color: #000;
}

/*---/Side bar css---*/

/*---/Right side content css---*/

.step-process {
  gap: 35px;
}

.step-count:last-child:after {
  display: none;
}

.step-count {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}

.step-count:hover .step-no {
  color: var(--primary);
}

.step-count:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--light-blue-bg);
  position: absolute;
  left: 24px;
  top: 48px;
  z-index: -1;
  transition: all 0.5s;
}

.step-no {
  background-color: var(--light-blue-bg);
  color: var(--dark-gray);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 48px;
  transition: all 0.5s;

  span {
    font-size: 1rem;
    display: block;
    line-height: 1;
    font-weight: bold;
  }
}

.step-count.active .step-no {
  background-color: var(--primary);
  color: var(--white);
}

.step-count.active::after {
  background-color: var(--primary);
}

.list-icon {
  padding-left: 0;
  margin-bottom: 0;
}

.list-icon > li {
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-left: 20px;
  line-height: 1.4;
  color: var(--para-color);
}

.list-icon > li:not(:last-child) {
  margin-bottom: 12px;
}

.list-icon li:marker {
  display: none;
}

.list-icon > li:before {
  content: "";
  width: 12px;
  height: 12px;
  top: 6px;
  left: 0;
  position: absolute;
  background-image: url("../images/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.list-icon li ul {
  margin-top: 3px;
  padding-left: 20px;
  display: grid;
  gap: 3px;

  li {
    font-size: 14px;
    list-style-type: disc;
  }

  li::marker {
    color: #c8cce1;
  }
}

.dyk {
  border-radius: 15px;
  display: flex;
  gap: 40px;
  padding: 1rem 1rem 1.25rem;
  background: linear-gradient(90deg, #f9f6ff 0%, #d3e4ff 100%);

  img {
    width: 115px;
    height: 115px;
  }

  p {
    margin-bottom: 0;
  }
}

.blank-space {
  height: 80px;
  position: relative;

  &::after {
    content: "";
    width: 100%;
    position: absolute;
    height: 1px;
    background-color: #efefef;
    left: 0;
    top: 50%;
  }
}

.watch-btn {
  display: flex;
  box-shadow: none;
  color: var(--dark-gray);
  gap: 7px;
  font-weight: 700;
  font-size: 14px;
  max-width: 195px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #ffffff 0%, #edf5ff 100%);
  border: 1px solid #d9dced;
  border-radius: 21.5px;
  justify-content: center;
  height: 32px;
  align-items: center;

  img {
    width: 18px;
  }
}

.tuple-icon {
  padding: 1.5rem;
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-rows: 1fr;
}

.tuple-icon .t-img img {
  max-height: 50px;
}

.tuple-icon .t-wrap {
  padding: 2rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 18px;
  gap: 20px;
  transition: all 0.3s;
}

.tuple-icon .t-wrap:hover {
  box-shadow: 0px 4px 12px #dbdbdb;
}

.tuple-icon .t-wrap.t-head {
  background: url(../images/video-bg.png);
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  box-shadow: none !important;
  background-size: cover;
  position: relative;
  background-position: center;

  a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    align-content: center;
  }

  p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--white);
  }

  img {
    margin-bottom: 5px;
    width: 60px;
    height: 60px;
  }
}

.tuple-icon .t-wrap .t-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0px;
}

.tuple-icon .t-wrap .t-text ul {
  padding-left: 15px;
  margin-top: 5px;

  li {
    font-size: 12px;
    color: var(--dark-gray);
  }
}

.tuple-icon .t-wrap .t-text ul li::marker {
  font-size: 10px;
}

.tuple-icon .t-wrap .t-text p {
  font-size: 14px;
  text-wrap-style: balance;
  color: var(--dark-gray);
}

.explore-post {
  border-radius: 18px;
  padding: 1.25rem;

  h2 {
    font-size: 20px;
  }
}

.post-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.post-list {
  transition: all 0.3s;
  padding: 15px 15px 22px;
  border-radius: 9px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 15px;

  span {
    margin-bottom: 5px;
    display: block;
    line-height: 1;
  }

  h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-wrap-style: pretty;
  }
}

.post-list a {
  display: block;

  &:hover {
    color: inherit;
  }
}

.post-list:hover {
  box-shadow: 0px 4px 4px #d9e5f4;
}

.pro-tip.accent-green .tip-textwrap ul li:before {
  background-color: var(--green);
  -webkit-mask-image: url("../images/tick.svg");
  mask-image: url("../images/tick.svg");
}

.pro-tip.accent-orange .tip-textwrap ul li:before {
  background-color: var(--orange);
  -webkit-mask-image: url("../images/tick.svg");
  mask-image: url("../images/tick.svg");
}

.pro-tip.accent-green strong {
  color: var(--green) !important;
}

.pro-tip {
  position: relative;
  padding: 1.5rem;
  border-radius: 18px;
  display: flex;
  gap: 15px;

  ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;

    li {
      position: relative;
      padding-left: 20px;
      line-height: 1.4;

      &:before {
        content: "";
        width: 12px;
        height: 10px;
        top: 5px;
        left: 0;
        position: absolute;
        /* background-image: url('../images/tick.svg'); */
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
      }
    }
  }

  .tip-textwrap ul > li:not(:last-child) {
    margin-bottom: 8px;
  }

  .tip-textwrap {
    position: relative;
    z-index: 10;
    padding-top: 10px;

    /* p {
      margin-bottom: 0;
    } */

    img {
      width: 100%;
      max-width: 600px;
      border-radius: 10px;
      box-shadow: 0px 4px 28px 5px rgba(0, 0, 0, 0.13);
    }
  }
}

.dashed {
  line-height: 1.4;
  max-width: 88%;
  padding: 15px 12px;
  border-radius: 5px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23D3C9BAFF' stroke-width='2' stroke-dasharray='3%2c 7' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.tip-img {
  position: relative;
  z-index: 10;
}

.pro-tip.image {
  padding-bottom: 0;
}

.pro-tip.image::before {
  content: "";
  width: 100%;
  /* height: 240px; */
  height: 75%;
  position: absolute;
  background-color: var(--light-gray-bg);
  border-radius: 18px;
  left: 0;
  top: 0;
}

.feature-block {
  display: grid;

  p {
    color: var(--dark-gray);
    text-wrap-style: pretty;
  }

  .block-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;

    img {
      align-self: baseline;
    }
  }
}

.feature-block.block-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-block.block-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.feature-block.block-1 {
  grid-template-columns: 1fr;
  gap: 40px;
}

.include-avoid {
  padding: 2.5rem;
  border-radius: 18px;

  .wrapped {
    display: flex;
    gap: 35px;
    justify-content: center;
    padding-top: 40px;
    align-items: flex-start;

    .wrap-inner {
      position: relative;
      flex: 0 1 300px;
      background-color: var(--white);
      border-radius: 18px;
      padding: 40px 25px 25px;
      border: 1px solid #d9d9d9;
      box-shadow: 0px 4px 12px #dbdbdb;
    }
  }

  img {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
  }

  ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;

    li {
      font-size: 14px;
      line-height: 1.4;
      position: relative;
      padding-left: 30px;
      color: var(--text-gray);
    }
  }
}

.include ul li:before {
  content: "";
  width: 21px;
  height: 16px;
  top: 5px;
  left: 0;
  position: absolute;
  background-image: url("../images/yes.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.avoid ul li:before {
  content: "";
  width: 17px;
  height: 17px;
  top: 5px;
  left: 0;
  position: absolute;
  background-image: url("../images/no.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.step-timeline {
  list-style: none;
  position: relative;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 60px;

  > li {
    position: relative;
    padding-left: 15px;

    &:before {
      content: "";
      clear: both;
      position: absolute;
      top: 5px;
      left: -40px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background-color: var(--primary);
    }

    &:not(:last-child)::after {
      content: "";
      border-left: 1px solid #c8cce1;
      left: -33px;
      height: calc(100% + 30px);
      position: absolute;
      bottom: 0;
      z-index: -1;
      top: 5px;
    }

    span {
      font-size: 12px;
      display: inline-block;
      margin-bottom: 5px;
      line-height: 1;
      border-radius: 11px;
      padding: 5px 10px;
      background-color: var(--light-blue-bg);
    }
  }
}

/*---/Right side content css---*/

footer {
  background-color: #000b20;
  color: var(--white);

  p {
    font-size: 14px;
  }
}

.progress-wrap {
  background-color: var(--white);
  position: fixed;
  right: 30px;
  bottom: 60px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgb(200 204 224 / 20%);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f062";
  font-weight: 600;
  text-align: center;
  line-height: 46px;
  font-size: 1rem;
  color: #c8cce1;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f062";
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  line-height: 46px;
  font-size: 1rem;
  opacity: 0;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #c8cce1;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/*-- media querry ---*/

@media (max-width: 1199px) {
  .search-box {
    width: 100%;
  }

  #openSidebar {
    position: fixed;
    right: 20px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    z-index: 9999;
    background-color: #f15425;
    box-shadow:
      rgba(0, 0, 0, 0.2) 0px 3px 5px -1px,
      rgba(0, 0, 0, 0.14) 0px 6px 10px 0px,
      rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
  }

  .blog-sidebar {
    width: 70%;
    background-color: var(--white);
    padding-right: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 40px 20px;
    height: 100vh;
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-105%);
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
    max-width: 350px;
  }

  /* Class added via JavaScript */
  .blog-sidebar.active {
    transform: translateX(0%);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  }

  /* The Overlay */
  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dimmed background */
    z-index: 999;
    display: none;
    /* Hidden by default */
    opacity: 0;
    display: block;
    /* Always block, but transparent */
    pointer-events: none;
    /* Can't click through it when hidden */
    transition: opacity 0.4s ease;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    /* Adds a modern frosted-glass look */
  }

  .sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Hide menu button */
  .hide-btn {
    display: none !important;
  }

  .progress-wrap {
    display: none;
  }

  .faded-circle.left {
    padding: 25px 0 0 25px;
  }

  .faded-circle {
    &:after {
      width: 200px;
    }
  }

  .faded-circle.right:after {
    right: -20px;
    top: -20px;
  }

  .container {
    padding: 0 30px;
  }

  .blog-banner .banner-text h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .tuple-icon {
    grid-template-columns: 1fr 1fr;
  }

  .navbar-brand img {
    width: 170px;
  }

  .blog-sidebar ul {
    gap: 15px;
  }
}

@media (max-width: 991px) {
  .step-process {
    gap: 20px;
  }

  .feature-block {
    .block-wrap {
      img {
        width: 40px;
      }
    }
  }

  .include-avoid {
    padding: 1.5rem;

    .wrapped {
      gap: 20px;
    }
  }

  .tuple-icon {
    padding: 1rem;
  }

  .blog-sidebar {
    padding-right: 15px;
  }

  .blog-sidebar ul li a {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .faded-circle {
    &:after {
      width: 150px;
    }
  }
  .step-timeline {
    padding-left: 40px;

    > li {
      padding-left: 0;
    }
  }

  p {
    font-size: 14px;
  }

  li,
  .list-icon > li {
    font-size: 14px;
  }

  .blog-banner {
    .banner-text {
      padding-top: 20px;

      h1 {
        font-size: 30px;
      }
    }

    figure {
      text-align: right;

      img {
        max-width: 75%;
      }
    }
  }

  h2 {
    font-size: 24px;
  }

  .tuple-icon {
    grid-template-columns: 1fr;
  }

  .post-wrap {
    grid-template-columns: 1fr;
  }

  .feature-block.block-3,
  .feature-block.block-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blank-space {
    height: 40px;
  }

  .include-avoid .wrapped {
    flex-direction: column;
    gap: 80px;
  }

  .include-avoid .wrapped .wrap-inner {
    flex: 0 1 auto;
  }

  .feature-block .block-wrap {
    flex-direction: row;
    gap: 20px;

    img {
      width: 48px;
    }
  }

  .dashed {
    max-width: 100%;
    text-wrap-style: pretty;
  }

  .dyk {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  /* .tab-content {
    padding-top: 30px;
  } */

  .pro-tip {
    flex-direction: column;

    .tip-textwrap {
      padding-top: 0;
    }
  }
}