/* ==== 
 --------- (2.03) global styles start ---------
 ==== */

img {
  max-width: 100%;
  height: auto;
  border: 0px;
  outline: 0px;
  object-fit: cover;
}

i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

span {
  display: inline-block;
}

// spacing
.gutter-12 {
  row-gap: 12px;
}

.gutter-24 {
  row-gap: 24px;
}

.gutter-30 {
  row-gap: 30px;
}

.gutter-40 {
  row-gap: 40px;
}

.gutter-60 {
  row-gap: 60px;
}

.gutter-80 {
  row-gap: 80px;
}

div {
  line-height: 0px !important;
}

// custom cursor
.cursor-outer {
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--quaternary-color);
  background-color: var(--quaternary-color);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  transition: all 0.4s ease-out 0s;

  &.cursor-hover {
    opacity: 0.14;
  }

  &.cursor-big {
    opacity: 0;
  }
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
  &.cursor-big {
    width: 20px;
    height: 20px;
    margin-inline-start: -12px;
    margin-top: -12px;
  }
}

.cursor-inner {
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--quaternary-color);
  opacity: 1;
  transition: all 0.24s ease-out 0s;

  span {
    color: var(--theme-color);
    line-height: 60px;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
  }

  &.cursor-big {
    span {
      opacity: 1;
    }
  }

  &.cursor-hover {
    margin-inline-start: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1px solid #686363;
    opacity: 0;
  }
}

// scroll to top with progress
.progress-wrap {
  position: fixed;
  inset-inline-end: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  padding: 6px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  background-color: #acd5ce;
  box-shadow: inset 0 0 0 8px #acd5ce;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
  overflow: hidden;

  span {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    background-color: var(--white);
    border-radius: 50%;
    overflow: hidden;
    &::after {
      content: "\f176";
      font-family: "Font Awesome 6 Free";
      font-weight: 700;
      position: absolute;
      text-align: center;
      line-height: 34px;
      font-size: 18px;
      border-radius: 50%;
      color: #076051;
      inset-inline-start: 50%;
      top: 50%;
      transform: translate(-50%, 200%);
      height: 34px;
      width: 34px;
      cursor: pointer;
      display: block;
      z-index: 1;
      transition: all 200ms linear;
    }

    &::before {
      position: absolute;
      content: "\f176";
      font-family: "Font Awesome 6 Free";
      font-weight: 700;
      text-align: center;
      line-height: 34px;
      font-size: 18px;
      border-radius: 50%;
      color: #076051;
      inset-inline-start: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      height: 34px;
      width: 34px;
      cursor: pointer;
      display: block;
      z-index: 2;
      transition: all 200ms linear;
    }
  }

  &:hover {
    span {
      &::before {
        transform: translate(-50%, -200%);
      }
      &::after {
        transform: translate(-50%, -50%);
      }
    }
  }

  path {
    fill: none;
  }

  .progress-circle {
    path {
      stroke: #076051;
      stroke-width: 4;
      box-sizing: content-box;
      transition: all 200ms linear;
    }
  }
}

.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pt-200 {
  padding-top: 200px !important;
}

// social
.social {
  display: flex;
  align-items: center;
  gap: 20px;
  a {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    &:hover {
      color: var(--base-color);
    }
  }
}

// search popup styles start
.search-popup {
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);

  form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    inset-inline-start: 15px;
    inset-inline-end: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    transition: all 300ms ease;
  }

  .search-popup__group {
    position: relative;
    margin: 0px;
    overflow: hidden;

    input {
      position: relative;
      display: block;
      font-size: 18px;
      line-height: 50px;
      color: var(--black);
      height: 70px;
      width: 100%;
      padding: 10px 30px;
      background-color: var(--white);
      transition: all 500ms ease;
      font-weight: 400;
      text-transform: capitalize;
      padding-inline-end: 80px;
      border-radius: 5px;
    }

    button {
      color: var(--secondary-colorx);
      &:hover {
        color: var(--hover-color);
      }
    }
  }

  button {
    position: absolute;
    inset-inline-end: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: var(--white);
    padding: 0;
    cursor: pointer;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .close-search {
    position: absolute;
    inset-inline-start: 0;
    inset-inline-end: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--base-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--white);
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    color: var(--black);
    span {
      position: relative;
      display: block;
      height: 70px;
      width: 70px;
      font-size: 20px;
      line-height: 70px;
      color: var(--black);
    }
  }
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
  form {
    transform: scaleX(1);
    transition-delay: 1200ms;
  }
  .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition-delay: 1500ms;
  }
}

// section header
.section__header {
  margin-bottom: 34px;
  span {
    font-weight: 700;
    color: var(--quaternary-color);
  }

  h2 {
    color: var(--secondary-colorx);
    font-weight: 800;
    margin-top: 15px;

    span {
      color: var(--base-color);
    }
  }

  p {
    font-weight: 500;
    max-width: 780px;
    margin-inline: auto;
    margin-top: 20px;
  }
}

.section__header-secondary {
  margin-bottom: 40px;
}

.section__header-light {
  margin-bottom: 40px;
  span {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-top: -8px;
  }

  h2 {
    color: var(--white);
    font-weight: 600;
    margin: 16px 0px 30px;
  }

  .icon-thumb {
    display: flex;
    align-items: flex-end;
    gap: 12px;

    .icon-thumb-single {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-end;
      gap: 3px;
      line-height: 0px;
      padding-bottom: 4px;
      &:nth-of-type(2) {
        align-items: flex-start;
        justify-content: flex-end;
      }
    }

    span {
      width: 70px;
      height: 1px;
      background-color: var(--white);
      display: inline-block;
      line-height: 0px;
      &:nth-of-type(2) {
        width: 56px;
      }
    }
  }
}

.section__content {
  .sub-title {
    color: var(--quaternary-color);
  }

  h2 {
    font-weight: 800;
    color: var(--secondary-colorx);
    margin-top: 16px;
    span {
      color: var(--base-color);
    }
  }

  p {
    margin-top: 10px;
    max-width: 630px;
  }
}

// video button
.video-btn-wrapper {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  .open-video-popup {
    width: 80px;
    height: 80px;
    background: var(--base-color);
    border-radius: 100%;
    position: relative;
    animation: pulse-shadow 3s calc(2 * 3s / 3) linear infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    i {
      font-size: 20px;
      color: var(--secondary-colorx);
    }
  }

  @keyframes pulse-shadow {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
    }

    100% {
      box-shadow: 0 0 0 calc((3 - 1) * 85px / 2) rgba(0, 0, 0, 0);
    }
  }
}

// pagination one
.pagination-one {
  .swiper-pagination-bullets {
    text-align: center;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--white);
    border: 1px solid #707070;
    border-radius: 0px;
    opacity: 1;
    margin: 0px 5px;
  }

  .swiper-pagination-bullet-active {
    background-color: var(--base-color);
    border-radius: 50%;
  }
}

// slider navigation
.slider-navigation-two {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100%;

  button {
    padding: 12px;
    background-color: var(--white);
    color: var(--base-color);
    font-size: 16px;
    font-weight: 700;
    span {
      line-height: 1;
      font-weight: 700;
    }

    i {
      font-size: 16px;
    }
  }

  .prev-testimonial,
  .prev-area,
  .prev-testimonial-t,
  .prev-team-t,
  .prev-slide {
    background-color: var(--quaternary-color);
    color: var(--white);
    span {
      display: none;
    }
  }

  .active {
    span {
      display: block;
    }
  }
  .next-testimonial-t,
  .next-team-t {
    border: 1px solid var(--base-color);
  }
  .prev-testimonial-t,
  .prev-team-t {
    border: 1px solid var(--quaternary-color);
  }
}

// breadcrumb
.breadcrumb {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  .breadcrumb-item,
  a {
    color: #ffffff;
  }

  a {
    &:hover {
      color: var(--white);
    }
  }

  .breadcrumb-item + .breadcrumb-item {
    padding-inline-start: 0px;
    color: var(--white);
    &::before {
      padding-inline-end: 12px;
      font-size: 20px;
      content: "::";
      font-family: "Font Awesome 6 Free";
      font-weight: 700;
      color: #ffffff;
      margin-top: -2px;
    }
  }

  .active {
    color: var(--white) !important;
  }
}

// blog pagination
.main-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;

  button,
  a {
    @include box(40px);
    border: 1px solid #9eb3af;
    background-color: transparent;
    color: var(--black);
    transition: var(--transition);
    font-weight: 800;
    font-size: 14px;

    &:hover {
      border-color: var(--base-color);
      background-color: var(--base-color);
      color: var(--black);
    }
  }

  .active {
    border-color: var(--base-color);
    background-color: var(--base-color);
    color: var(--black);
  }

  button {
    background-color: var(--quaternary-color);
    color: var(--white);
    &:hover {
      background-color: var(--base-color);
      color: var(--black);
    }
  }
}

// parallax effect
.parallax-image {
  transform: scale(1.6);
  transform-origin: 50% 100%;
}

.parallax-image-wrap,
.parallax-image-inner {
  border-radius: inherit;
}

// title animation
.title-animation {
  text-transform: lowercase !important;
  & > div {
    & > div {
      &:nth-child(1) {
        text-transform: uppercase;
      }
    }
  }
  & > span {
    & > div {
      & > div {
        &:nth-child(1) {
          text-transform: uppercase;
        }
      }
    }
  }
}

// off canvas styels
.off-canvas {
  position: fixed;
  inset-inline-start: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  min-height: 100vh;
  background-color: var(--white);
  z-index: 999999;
  box-shadow: var(--shadow);
  border-inline-end: 5px solid var(--quaternary-color);
  transition: var(--transition);
  transform: translateX(-100%);

  .off-canvas__inner {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: column;
  }

  .off-canvas__head {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    width: 100%;

    button {
      background-color: transparent;
      font-size: 24px;
      color: var(--quaternary-color);
    }
  }

  .offcanvas__search {
    width: 100%;
    form {
      display: flex;
      align-items: center;
      gap: 24px;
      justify-content: space-between;
      border-bottom: 1px solid var(--black);

      input {
        flex-grow: 1;
        padding: 10px 0px;
        color: var(--black);
        &::placeholder {
          font-weight: 400;
          color: var(--black);
          font-size: 16px;
        }
      }

      button {
        background-color: transparent;
        font-size: 20px;
        color: var(--base-color);
      }
    }
  }

  .off-canvas__contact {
    width: 100%;
    text-align: start;

    h5 {
      color: var(--black);
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 25px;
    }

    .single {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 15px;
      span {
        @include box(40px);
        border: 1px solid var(--quaternary-color);
        color: var(--quaternary-color);
      }

      a {
        color: var(--black);
        text-transform: lowercase;
        &:hover {
          color: var(--quaternary-color);
        }
      }
    }
  }

  .social {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    a {
      @include box(40px);
      background-color: var(--black);
      color: var(--white);
      font-size: 14px;
      &:hover {
        background-color: var(--base-color);
        color: var(--black);
      }
    }
  }
}

.off-canvas-active {
  transform: translateX(0px);
}

.off-canvas-backdrop {
  position: fixed;
  top: 0px;
  inset-inline-start: 0px;
  inset-inline-end: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 22, 22, 0.5921568627);
  z-index: 99;
  transform: translateX(-100%);
  transition: var(--transition);
}

.off-canvas-backdrop-active {
  transform: translateX(0px);
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

// offcanvas cart styles
.sidebar-cart {
  background: var(--black);
  color: var(--white);
  padding: 15px 15px 0 15px;
  position: fixed;
  display: block;
  width: 320px;
  height: 100vh;
  z-index: 99999;
  top: 0;
  inset-inline-end: 0px;
  transform: translateX(100%);
  box-shadow: -10px 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;

  .close-cart {
    height: 16px;
    width: 16px;
    margin: 0 0 15px 0;
    text-decoration: none;
    position: absolute;
    top: 20px;
    inset-inline-start: 20px;
    display: flex;
    background-color: transparent;
    border: 0px;
    outline: 0px;
    .close-icon {
      width: 16px;
      height: 16px;
      background: var(--white);
      text-indent: -9999px;
      overflow: hidden;
      font-size: 0;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M30.3 32c-.5 0-.9-.2-1.2-.5L16 18.4 3 31.5c-.4.3-.8.5-1.3.5s-.9-.2-1.2-.5c-.7-.7-.7-1.8 0-2.4L13.6 16 .5 2.9C-.2 2.2-.2 1.2.5.5.8.2 1.2 0 1.7 0s.9.2 1.2.5l13.1 13 13-13c.7-.7 1.7-.7 2.4 0 .4.3.6.7.6 1.2s-.2.9-.5 1.2L18.4 16l13.1 13.1c.7.7.7 1.8 0 2.4-.3.3-.8.5-1.2.5z'/%3E%3C/svg%3E");
      transition: all 0.5s linear;
    }
  }

  h2 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    margin: 5px 0 25px 0;
    display: flex;
    justify-content: center;

    span.count {
      color: var(--secondary-colorx);
      background: var(--white);
      padding: 8px;
      margin-inline-start: 10px;
      position: relative;
      top: -1px;
      width: 24px;
      height: 24px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: -4px;
    }
  }

  .cart-items {
    margin-top: 30px;
  }

  .cart-item-single {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0px;
    border-bottom: 1px solid #ffffff50;
    padding-inline-end: 24px;
    position: relative;
    .delete-item {
      position: absolute;
      top: 50%;
      inset-inline-end: 0px;
      transform: translateY(-50%);
      color: var(--white);
      background-color: transparent;
      font-size: 20px;
      &:hover {
        color: var(--base-color);
      }
    }

    .cart-item-thumb {
      a {
        width: 80px;
        height: 100px;
        img {
          width: 100%;
          height: 100%;
        }
      }
    }

    .h6 {
      a {
        font-weight: 600;
        color: var(--white);
        font-size: 18px;
        &:hover {
          color: var(--base-color);
        }
      }
    }

    .price {
      font-weight: 600;
      font-size: 14px;
      color: var(--white);
    }

    .measure {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 10px;
      button {
        @include box(28px);
        border-radius: 0px;
        background-color: var(--base-color);
        color: var(--secondary-colorx);
        font-size: 14px;
      }
    }

    .item-quantity {
      min-width: 16px;
      color: var(--white);
      font-weight: 700;
      text-align: center;
    }
  }

  .der {
    height: calc(100% - 140px);
    overflow-y: auto;
  }

  div.totals {
    position: absolute;
    bottom: 80px;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 45px;
    background: var(--white);
    border-bottom: 1px solid var(--white);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;

    div.subtotal,
    div.shipping,
    div.tax {
      padding: 15px;
      text-align: center;
      color: var(--white);
      border-bottom: 1px solid var(--white);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 14px;
      font-weight: 400;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: space-between;

      span.amount,
      .total-price {
        color: var(--secondary-colorx);
        margin-inline-start: 10px;
        font-weight: 700;
      }

      .total-price {
        margin: 0px;
      }

      span.label {
        color: var(--secondary-colorx);
        font-weight: 700;
      }
    }
  }

  div.action-buttons {
    padding: 0;
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    display: block;
    white-space: nowrap;

    a.view-cart-button,
    a.checkout-button {
      display: inline-block;
      padding: 10px;
      margin: 20px 15px;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 14px;
      border-width: 1px;
      border-style: solid;
      border-radius: 4px;
      transition: all 0.5s linear;
    }

    a.view-cart-button {
      background: var(--black);
      border-color: var(--secondary-colorx);
      margin-inline-end: 5px;
      color: var(--base-color);
      width: 80px;
    }

    a.checkout-button {
      border-color: var(--secondary-colorx);
      background: var(--black);
      margin-inline-start: 5px;
      color: var(--white);
      width: 200px;
    }
  }
}

.sidebar-cart-active {
  transform: translateX(0px);
}

.cart-backdrop {
  position: fixed;
  top: 0px;
  inset-inline-start: 0px;
  inset-inline-end: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 22, 22, 0.5921568627);
  z-index: 9999;
  transform: translateX(-100%);
  transition: var(--transition);
}

.cart-backdrop-active {
  transform: translateX(0px);
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

.sub-title {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--caveat);
  color: var(--base-color);
  font-size: 20px;
  line-height: 34px;
  margin-top: -8px;
  font-weight: 800;
}

.cta {
  margin-top: 45px;
}

// slider navigation
.slider-navigation {
  .slider-btn {
    @include box(60px);
    background-color: var(--secondary-colorx);
    color: var(--white);
    font-size: 20px;
    &:hover {
      background-color: var(--base-color);
      color: var(--black);
    }
  }

  .slider-btn-next {
    background-color: var(--base-color);
    color: var(--black);
    &:hover {
      background-color: var(--secondary-colorx);
      color: var(--white);
    }
  }
}

.bottom-line {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='196' height='15' viewBox='0 0 196 15' fill='none'%3E %3Cpath d='M1 13C42.1844 2.92057 142.978 -3.87406 195 9.2668' stroke='%23FBAD17' stroke-width='4'/%3E %3C/svg%3E");
}

// swiper pagination one
.pagination-one {
  display: flex;
  align-items: center;
  justify-content: center;

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d6d1d1;
    opacity: 1;
    border: 0px solid transparent;
    display: inline-block;
  }

  .swiper-pagination-bullet-active {
    width: 25px;
    height: 25px;
    border: 1px solid var(--quaternary-color);
    background-color: transparent;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    &::after {
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      background-color: var(--quaternary-color);
      border-radius: 50%;
    }
  }
}

// progress bar
.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e9e9e9;
  border-radius: 10px;
  position: relative;

  .progress-bar-percent {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background-color: var(--base-color);
    border-radius: inherit;
  }
}

.section__cta {
  .btn--primary {
    padding: 18px 50px;
    border-radius: 60px;
    font-weight: 700;
    gap: 8px;
    &::before,
    &::after {
      border-radius: 0px;
    }
    i {
      transform: rotate(-45deg);
      transition: transform 0.5s ease, color 0s ease;
      font-size: 18px;
    }
    &:hover {
      i {
        transform: rotate(0deg);
      }
    }
  }
}

// privacy policy
.privacy {
  padding: 100px 0px;
  background-color: var(--white);
  .privacy-group {
    margin-bottom: 60px;
    margin-top: -7px;
    &:nth-last-of-type(1) {
      margin-bottom: 0px;
    }

    h3 {
      font-weight: 600;
      color: var(--black);
    }

    p {
      margin-top: 20px;
      font-size: 18px;
    }
  }
}

/* ==== 
 --------- (2.03) global styles end ---------
 ==== */
