@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/*font-family: "Plus Jakarta Sans", sans-serif;*/
/***** General CSS *****/
body {
  word-break: break-word;
  font-size: 16px;
  color: #393939;
  overflow-x: hidden;
  background-color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

* {
  transition: 0.4s ease-in-out;
}

a {
  text-decoration: none;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

html {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 400;
  color: #000;
}

/***** Custom Classes *****/
.carousel-inner.inner-pgs {
  overflow: visible;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 40px;
  color: #fff !important;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 1px solid transparent;
  background-color: #6363f1;
}

.theme-btn:hover {
  box-shadow: inset -130px 0 0 0 #fff, inset 130px 0 0 0 #fff;
  border: 1px solid #6363f1;
  color: #6363f1 !important;
}

.theme-btn-invert {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 15px 40px;
  color: #6363f1 !important;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 1px solid #6363f1;
  background-color: #fff;
}

.theme-btn-invert:hover {
  box-shadow: inset -130px 0 0 0 #6363f1, inset 130px 0 0 0 #6363f1;
  border: 1px solid #6363f1;
  color: #fff !important;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-size: 75px;
  line-height: 1;
  color: #29363d;
  font-weight: 700;
  margin: 0 0 17px;
}

h2 {
  font-size: 70px;
  line-height: 60px;
  color: #000;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-size: 60px;
  line-height: 80px;
  color: #000;
  font-weight: 400;
  margin: 0 0 20px;
}

h4 {
  font-size: 24px;
  line-height: 29px;
  color: #000;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/* BEGIN: HEADER SEC CSS */
/* sidenav-css start */
.sidenav {
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: -500px;
  background: #6363f1;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  width: 250px;
}

/* The navigation menu links */

/* hover color */
.sidenav a:hover,
.sidenav a:focus {
  color: #000;
  text-decoration: none;
  padding-left: 40px;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 12px;
  color: #fff;
  display: block;
  transition: 0.3s;
  text-transform: uppercase;
}

.mobilecontainer span {
  color: #6363f1;
  margin-right: 10px;
  margin: 0px 9px;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.mobilecontainer img {
  width: 63px;
  margin: -19px 0;
  position: relative;
  z-index: 1;
}

.mobilecontainer {
  background-color: #fff;
  padding-left: 20px;
  width: 70px;
}

/* sidenav-css end */
/*navigation*/
header {
  margin: 0;
}

.nav-flex {
  display: flex;
  align-items: center;
}

.navigation {
  margin-top: 0px;
  text-align: end;
}

.navigation ul li a {
  color: #000000;
  padding: 10px 20px;
  text-transform: capitalize;
  font-weight: 400;
}

.navigation ul li a:hover {
  color: #6868f1;
}

.navigation ul li.active a {
  color: #6e6ef2;
}

.navigation ul li {
  display: inline-block;
  padding: 0px 0px;
}

/* END: HEADER SEC CSS */
/*banner css start */
.carousel-inner .carousel-item .slider-banner {
  width: 100%;
  height: 870px;
  object-fit: cover;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-caption {
  position: absolute;
  top: 5%;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

/*banner css end*/
/* custom css */
/* header start */
.top-row * {
  color: #000;

  span {
    font-size: 14px;
  }
}

/* banner start */
.find-listing-input {
  position: relative;
  border: 1px solid #0000003b;
  border-radius: 50px;
  padding: 12px;
  width: 75%;

  input {
    border: none;
    outline: none;
    height: 100%;
    width: 100%;
  }

  button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
  }
}

.banner_text {
  h1 {
    span {
      font-weight: 400;
      color: #a680f2;
    }
  }

  p {
    color: #656b8a;
    font-weight: 400;
    font-size: 20px;
  }
}

/* feature start */
.feature {
  .slick-track {
    padding: 20px 0;
  }

  .slick-slide {
    opacity: 1;
    cursor: grab;

    &:hover {
      img {
        transform: scale(1.3);
      }
    }
  }

  h4 {
    text-align: center;
    color: #6f6ff2;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 40px;
  }

  img {
    max-height: 54px;
    object-fit: none;
  }
}

/* website available auction */
.available-auction {
  p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }

  .auction-tabs {
    .nav-link {
      color: #000;
      font-size: 18px;
      padding: 0;
    }

    .nav-pills .nav-link.active {
      background: transparent;
      color: #6363f1;
      text-decoration: underline;
      font-weight: 700;
    }
  }

  .auction-box {
    border-radius: 15px;
    padding: 40px 20px;
    border: 1px solid transparent;
    position: relative;

    &:hover {
      border: 1px solid #6363f1;
    }

    img {
      width: 100%;
    }

    ul {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 20px;

      li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 10px;
        background: #f2f1fa;
        width: 100%;
        padding: 5px 10px;

        .text {
          width: 100%;
          color: #5b63d3;
          font-size: 12px;
          font-style: normal;
          font-weight: 700;
          line-height: 16px;
        }

        p {
          color: #000;
          font-family: "Plus Jakarta Sans";
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 1.2;
          margin: 0;
        }

        svg {
          width: 35px;
          height: 35px;
        }
      }
    }

    a {
      float: right;
      padding: 12px 35px;
    }
  }

  .verified-badge {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 20px;
    padding: 5px 20px;
    border-radius: 20px;
    background-color: #29363d;
    align-items: center;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 14px;
    gap: 3px;
    display: none;

    svg {
      height: 100%;
    }
  }

  .auction-box.verified .verified-badge {
    display: flex;
  }

  .border-right {
    border-right: 1px solid #e5e5ff;
  }

  h3 {
    color: #5b63d3;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 5px;
  }

  .pricing-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;

    .pricing {
      border-radius: 24px;
      border: 1px solid #f1f1ff;
      background: #f1f1ff;
      padding: 20px;

      .features-pricing {
        padding: 3px 5px;
        border-radius: 60px;
        border: 1px solid #6f6ff2;
        background: #f1f1ff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 14px;
        margin-top: 10px;

        .colored {
          color: #6f6ff2;
        }
      }

      h5 {
        color: #000;
        font-family: "Plus Jakarta Sans";
        font-size: 36px;
        font-style: normal;
        font-weight: 500;
        line-height: 40px;
        margin-bottom: 5px;
      }

      h4 {
        color: #5b63d3;
        font-family: "Plus Jakarta Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        margin-bottom: 0px;
      }

      a {
        width: 100%;
      }
    }
  }
}

/* purchasing selling */
.purchasing-selling {
  position: relative;

  p {
    width: 60%;
    margin-bottom: 40px;
  }

  .purshasing-abs {
    position: absolute;
    right: 0;
    top: -7%;
    z-index: -1;
  }
}

.laptop {
  animation: laptop 2.5s ease-in infinite alternate;
}

@keyframes laptop {
  to {
    transform: translate(0px, 20px);
  }
}

/* website-valuation */
.website-valuation {
  overflow: hidden;
  background: #f0f0fe;

  .valuation-laptop {
    transition: 0.8s ease-in-out;

    &:hover {
      transform: rotate(10deg) scale(0.9);
    }
  }

  ul {
    li {
      font-size: 18px;
      margin-bottom: 15px;
      position: relative;
      padding-left: 2rem;

      &::before {
        content: "";
        position: absolute;
        left: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #9765e5;
        top: 11px;
      }
    }
  }
}

/* testimonials */
.testimonials {
  .testimonial-bg {
    left: 0;
    transform: rotateY(180deg);
    z-index: -1;
  }

  .testimonial-slider {
    .slick-track {
      padding: 25px 0;

      .testimonial-box {
        padding: 25px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 0 10px 0 #0000006b;

        ul {
          display: flex;
          gap: 15px;
          align-items: center;

          p {
            margin: 0;
            font-weight: 700;
            color: #000;
            font-size: 20px;
          }

          span {
            color: #434343;
            font-weight: 700;
            font-size: 16px;
          }
        }
      }
    }
  }
}

/* blogs */
.blogs {
  .blog-box {
    &:hover {
      img {
        transform: scale(1.2);
        filter: brightness(0.5);
      }
    }
  }

  .blog-box img {
    width: 100%;
  }

  p.blog-box {
    font-size: 21px;
    margin-top: 25px;
  }

  span {
    font-size: 14px;
    color: #6d7175;
    line-height: 33px;
  }

  .blog-box p span:first-child {
    font-size: 14px;
    color: #6e6ef2;
    margin-right: 20px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .blog-box p span:last-child {
    margin-left: 20px;
    font-size: 14px;
    color: #6e6ef2;
    font-weight: 500;
  }
}

/* newletter */
section.newsletter {
  background: #1e254d;
  padding: 5rem;

  .news-letter-box {
    background: #ffffff2b;
    border-radius: 30px;
    padding: 5rem 0;

    h3 {
      color: #fff;
      font-weight: 700;
    }

    p {
      width: 60%;
      margin: 0 auto;
      color: #fff;
      font-size: 18px;
    }

    .newletter-listing {
      width: 46%;
      margin: 0 auto;

      .find-listing-input {
        width: 100%;
        background: #fff;

        input {
          background: transparent;
        }
      }
    }
  }
}

/* footer */
footer {
  padding-top: 6%;
  margin-top: 5%;
  background-image: url("../img/v2/footer-bg.svg");
  background-size: cover;

  .icon-section {
    p {
      font-family: "Roboto";
      font-size: 14px;
      color: #939db8;
      width: 70%;
    }

    .buySeller {
      p {
        font-family: "Roboto";
        font-size: 15px;
      }
    }

    .links {
      p {
        font-family: "Roboto";
        font-size: 15px;
      }
    }
  }

  ul li a {
    color: #939db8;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }

  .footer-bottom {
    background: #dedaff;

    li {
      color: #211b44;
      font-weight: 600;
    }
  }

  .fot-socials i {
    color: #000;
    font-size: 23px;
    margin: 0 4px;
  }
}

@media screen and (max-width: 1400px) {
  .navigation ul li a {
    padding: 10px;
  }

  .main-navigate {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .slick-slide {
    opacity: 1;
  }

  .navigation ul li a {
    padding: 10px 5px;
    font-size: 15px;
  }
}

@media screen and (max-width: 1000px) {
  ul.navbar-set {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  section.banner {
    .row {
      text-align: center;
      flex-direction: column-reverse;

      form {
        width: 60%;
        margin: 0 auto;
        text-align: center;

        .find-listing-input {
          width: 100%;
        }
      }
    }
  }

  h3 {
    font-size: 37px;
    line-height: 56px;
    margin: 0;
  }

  .available-auction {
    p {
      width: 100%;
    }
  }

  .auction-box {
    p {
      width: 100% !important;
    }

    ul {
      margin-top: 20px;
    }
  }

  section.purchasing-selling {
    p {
      width: 100% !important;
    }

    .purchasing-row {
      flex-direction: column-reverse;
    }
  }

  img.laptop {
    display: flex;
    margin: 0 auto;
  }

  section.website-valuation .row {
    flex-direction: column-reverse;
  }

  .blog-heading {
    margin-bottom: 20px;
  }

  section.blogs .row {
    gap: 20px;
  }

  .news-letter-box {
    padding: 2rem 0 !important;
  }

  .news-letter-box p {
    font-size: 15px !important;
    width: 86% !important;
  }

  form.newletter-listing.mt-3 {
    width: 80% !important;
  }

  footer {
    margin-top: 0;
    background-position: center;
  }

  footer p {
    margin-top: 20px !important;
  }

  .payment-method {
    margin-left: -10px;
  }

  h1 {
    font-size: 60px;
    line-height: 1.1;
  }

  .baner-img {
    width: 50%;
  }

  .icon-section p {
    margin-top: 5px !important;
  }
}

@media screen and (max-width: 431px) {
  section.banner {
    form {
      width: 100% !important;
    }
  }

  .purchasing-row {
    margin-bottom: 26% !important;
  }

  section.newsletter {
    padding: 25px 15px;
  }

  h3 {
    font-size: 25px;
  }

  .footer-bottom ul {
    flex-flow: column;
    gap: 10px;
  }
}

/* sell website */
.cards-section {
  background-color: #0b0c14;
}

.hidings {
  color: #fff;
  font-family: "Plus Jakarta Sans";
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  /* 175% */
}

.sub-hiding {
  color: #939db8;

  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 120% */
}

.cutom-cards {
  border-radius: 16px;

  background: #f5f5fe;
}

.card-text {
  color: #939db8;

  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

/* commsion rate section` */
.commission-rate .hidings {
  color: #29363d;
  font-family: "Plus Jakarta Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  /* 116.667% */
}

.commission-rate .sub-hiding {
  color: #939db8;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 120% */
}

.benefits-section .hidings {
  color: #29363d;

  font-family: "Plus Jakarta Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  /* 116.667% */
}

.box {
  width: 212px;
  border-radius: 12px;
  border: 1px solid rgba(11, 12, 20, 0.4);
  background: #fff;
  height: 182px;
  flex-shrink: 0;
}

.commission-rate-percentage {
  color: #9090f9;
  font-family: Roboto;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 66.667% */
}

.commission-rate-average {
  color: #0b0c14;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 120% */
}

.benefits-box {
  width: 359px;
  height: 163px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
}

.firstget {
  color: #1e254c;

  font-family: Aeonik;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 70px;
  /* 116.667% */
  letter-spacing: -1.8px;
}

.secondthing {
  color: #1e254c;
  font-family: "Playfair Display";
  font-size: 60px;
  font-style: italic;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -1.8px;
}

.firstgetter {
  color: #1e254c;

  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 120px;
  /* 100% */
  letter-spacing: -3.6px;
}

.sgetter {
  color: #6c6cf2;
  font-family: "Playfair Display";
  font-size: 120px;
  font-style: italic;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: -3.6px;
}

.buyselllorem .icon {
  width: 49px;
  height: 42px;
  flex-shrink: 0;
}

.buyselllorem .para {
  padding-left: 10px;
  color: #fff;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 108.333% */
}

.buysellpara {
  color: #fff;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 128.571% */
}

.buysellAssets-hiding {
  color: #0b0c14;

  font-family: "Plus Jakarta Sans";
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  /* 63.636% */
}

.buysellAssets-hiding2 {
  color: #939db8;

  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 128.571% */
}

.param p {
  color: #939db8;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 120% */
}

.hidingsloremitem {
  color: #0b0c14;

  font-family: "Plus Jakarta Sans";
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  /* 113.636% */
}

.hidingsloremitem2 {
  color: #0b0c14;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 122.222% */
}

.buyhidings {
  color: #fff;
  font-family: "Plus Jakarta Sans";
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  /* 63.636% */
}

.buysellpara2 {
  color: #fff;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 128.571% */
}

.buysellink {
  margin-top: 60px;
}

.cutom-cardshover:hover {
  background-color: #b7b7f9;
}

.cutom-cardshover2:hover {
  background-color: black;
}

.cutom-cardshover2 {
  transition: background-color 0.3s ease, color 0.3s ease;
  /* Smooth transition */
  display: grid;
}

.cutom-cardshover {
  transition: background-color 0.3s ease, color 0.3s ease;
  /* Smooth transition */
}

.cutom-cardshover5:hover {
  background-color: black;
  /* Change background color to black on hover */
}

.cutom-cardshover2:hover h2,
.cutom-cardshover2:hover a,
.cutom-cardshover2:hover p {
  color: #939db8;
  /* Change text color to white for better contrast */
}

.cutom-cardshover2:hover h6 {
  color: #fff;
}

.cutom-cardshover:hover h6 {
  color: #fff !important;
}

.cutom-cardshover:hover {
  background-color: #b7b7f9;
  /* Change background color to black on hover */
}

.cutom-cardshover:hover h2,
.cutom-cardshover:hover a,
.cutom-cardshover:hover p {
  color: black;
  /* Change text color to white for better contrast */
}

.cutom-cardshover:hover h6 {
  color: #3d3d3d;
}

.cards-section a {
  color: #211b44;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.cards-sec a {
  color: #211b44;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.banner a {
  display: block;
}

/*Multi FOrm*/

.evaluation-form .steps-wrapper {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
}

.evaluation-form .step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}

.evaluation-form .step-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #6f6ff2;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer;
  color: #6f6ff2;
}

.evaluation-form .step-circle.completed {
  background-color: #6f6ff2;
  color: #fff;
}

.evaluation-form .step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #6f6ff2;
  z-index: -1;
}

.evaluation-form .multi-form-wrapper .form-control {
  border-radius: 58px;
  border: 1px solid var(--White-White-40, #eceef0);
  background: var(--White-White-20, #f8f9fa);
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 16px 20px;
}

.evaluation-form .multi-form-wrapper textarea.form-control {
  border-radius: 24px;
}

.evaluation-form .multi-form-wrapper .form-control::placeholder {
  color: #939db8;
}

.evaluation-form .multi-form-wrapper p {
  color: #939db8;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  font-family: "Roboto", sans-serif;
}

.evaluation-form .multi-form-wrapper h3 {
  color: #29363d;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 10px;
}

.evaluation-form .multi-form-wrapper h5 {
  color: #939db8;
  font-family: "Roboto";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

.evaluation-form .multi-form-wrapper {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}

.evaluation-form .multi-form-wrapper:has(.radio-buttons) {
  max-width: 991px;
  width: 100%;
  margin: 0 auto;
}

.evaluation-form {
  .radio-buttons {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    justify-content: center;
  }

  .radio-buttons.four {
    grid-template-columns: repeat(4, 1fr);
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }

  .radio-buttons > * {
    justify-self: center;
    width: 100%;
  }

  .custom-radio input {
    display: none;
  }

  .radio-btn {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid #939db8;
    background: #f5f5f5;
    display: inline-block;
    position: relative;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;
  }

  .radio-btn > i {
    color: #ffffff;
    background-color: #fff;
    border: 1px solid #6a6af2;
    font-size: 20px;
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 50px;
    padding: 3px;
    transition: 0.5s;
    pointer-events: none;
  }

  .radio-btn .hobbies-icon {
    width: 100%;
    display: flex;
    color: #211b44;
    font-family: "Roboto";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .radio-btn .hobbies-icon h4 {
    color: #211b44;
    font-family: "Roboto";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    margin-top: 5px;
  }

  .radio-btn .hobbies-icon img {
    display: block;
    width: 100%;
    max-height: 62px;
    object-fit: contain;
  }

  .custom-radio input:checked + .radio-btn > i {
    background-color: #6a6af2;
  }
}

.evaluation-form #multi-step-form {
  overflow-x: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  padding-top: 80px;
  text-align: center;
}

.head h2 {
  color: #1e254c;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: -1.8px;
  margin-bottom: 10px;
}

.head h2 span {
  color: #6a6af2;
  font-family: "Playfair Display";
  font-size: 60px;
  font-style: italic;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: -1.8px;
}

.head.small {
  max-width: 490px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}

.head.small h2,
.head.small h2 span {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.head p {
  color: #939db8;
  font-family: "Roboto";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 120% */
}

.head.small p {
  font-size: 14px;
  line-height: 1.4;
}

.search-input {
  padding: 16px 25px;
  border-radius: 50px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
}

.search-input::placeholder {
  color: #939db8;
}

.form-control:focus {
  box-shadow: none;
}

.arrowed-tabs {
  .nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  .nav button {
    color: #211b44;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    border-radius: 12px;
    border: 1px solid #211b44;
    background: #fff;
    width: 100%;
    padding: 20px 0;
  }

  .nav-pills .nav-link.active {
    border-radius: 12px;
    border: 2px solid #6a6af2;
    background: #fff;
    color: #6a6af2;
    position: relative;
  }

  .tabs-bg {
    border-radius: 50px 50px 0px 0px;
    background: linear-gradient(
      180deg,
      #6a6af2 0%,
      rgba(106, 106, 242, 0) 100%
    );
  }

  .tabs-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.grid-count {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.padded-banner {
  padding: 100px;
}

.benefits2 .icon {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50px;
  width: 100%;
}

.benefits2 p {
  margin-bottom: 0;
}

.benefits2 .icon svg {
  width: 100%;
}

.team-card {
  border-radius: 24px;
  border: 1px solid #6a6af2;
  overflow: hidden;
  background: #fff;

  .card-img,
  .card-img-top {
    object-fit: cover;
  }
}

.accordion-item {
  border-radius: 12px;
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
  border: 1px solid #939db8 !important;
  background: #fff;
  margin-bottom: 15px;
}

.accordion-button {
  background-color: transparent;
  color: #211b44;
  font-family: "Roboto";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.accordion-body {
  color: #939db8;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  padding-top: 0;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.accordion-button .fas {
  margin-left: 10px;
}

@media screen and (max-width: 1200px) {
  .evaluation-form .multi-form-wrapper h3 {
    font-size: 40px;
    line-height: 1.2;
  }

  .evaluation-form .step-circle {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 991px) {
  .nav-flex {
    justify-content: space-between;
  }

  .grid-count {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .padded-banner {
    padding: 100px 25px;
  }

  .head h2,
  .head h2 span {
    font-size: 44px;
    line-height: 1.2;
  }

  .head p {
    font-size: 16px;
  }

  .hidings,
  .buysellAssets-hiding,
  h2,
  .commission-rate .hidings {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .firstgetter,
  .sgetter,
  .firstget,
  .secondthing {
    font-size: 44px;
    line-height: 1.2;
  }

  .arrowed-tabs .nav button {
    font-size: 20px;
  }

  .hidingsloremitem {
    font-size: 34px;
    line-height: 1.2;
  }

  .benefits-box {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
  }

  .benefits-section {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .evaluation-form .step-circle {
    width: 40px;
    height: 40px;
  }

  .grid-count {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .head h2,
  .head h2 span {
    font-size: 40px;
    line-height: 1.2;
  }

  .evaluation-form .multi-form-wrapper h5 {
    font-size: 12px;
  }

  .evaluation-form {
    .radio-buttons {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .nav-flex {
    justify-content: space-between;
  }

  section.newsletter {
    padding: 5rem 0;
  }

  form.newletter-listing.mt-3 {
    width: 100% !important;
  }
}

@media screen and (max-width: 1000px) {
  section.banner .row form {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .news-letter-box {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 575px) {
  .evaluation-form .multi-form-wrapper h3 {
    font-size: 32px;
    line-height: 1.2;
  }

  .grid-count {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .padded-banner {
    padding: 100px 15px !important;
  }

  .benefits2 .icon {
    max-width: 35px;
  }

  .benefits2 .icon {
    margin-right: 10px;
  }

  .head h2,
  .head h2 span {
    font-size: 36px;
    line-height: 1.2;
  }

  .hidings,
  .buysellAssets-hiding,
  h2,
  .commission-rate .hidings {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .firstgetter,
  .sgetter,
  .firstget,
  .secondthing {
    font-size: 40px;
    line-height: 1.2;
  }

  .arrowed-tabs .nav button {
    font-size: 18px;
  }

  .hidingsloremitem {
    font-size: 30px;
    line-height: 1.2;
  }

  .evaluation-form {
    .radio-buttons {
      grid-template-columns: repeat(2, 1fr);
    }

    .radio-buttons.four {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .evaluation-form .step-circle {
    width: 35px;
    height: 35px;
  }
}

.testimonial-slider {
  margin-top: 40px;
}

.testimonial-slider .slick-slide {
  opacity: 1 !important;
}

.testimonial-slider .slick-dots li.slick-active button:before {
  opacity: 1 !important;
}

.testimonial-slider .slick-dots li button:before {
  font-size: 16px;
}

.testimonial-slider .slick-dots {
  position: absolute;
  bottom: -40px;
}

@media screen and (max-width: 575px) {
  .testimonial-slider {
    margin-top: 20px;
  }
}

.cutom-cards {
  border-radius: 16px;

  background: #f5f5fe;
}

.card-footer {
  background-color: transparent;
  border: 0;
  padding: 0;
}

.hidingsabout2 {
  color: #000;

  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 116.667% */
}

.padded-banner .firstget {
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: -2.7px;
}

.padded-banner .secondthing {
  font-size: 90px;
  color: #6c6cf2;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: -2.7px;
}

.progress-list {
  list-style-type: none;
  /* Remove default list styling */
  padding: 0;
  margin: 0;

  li {
    position: relative;
    padding: 10px 0;
    padding-left: 50px;
  }
}

.progress-list li:last-child {
  border-bottom: none;
}

.progress-list li::before {
  content: "";
  position: absolute;
  left: 0;
  /* Position it to the left */
  top: 50%;
  /* Center it vertically */
  transform: translateY(-50%);
  /* Adjust vertical alignment */
  width: 34px;
  /* Icon size */
  height: 34px;
  /* Icon size */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34" fill="none"><circle cx="17" cy="17" r="17" fill="%236969F2"/></svg>');
  background-size: contain;
  /* Scale the background */
  background-repeat: no-repeat;
  /* Prevent repeating */
}

.tagsli ul li {
  color: #000;

  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 116.667% */
  margin-top: 30px;
}

ul.progress-list:before {
  content: "";
  position: absolute;
  left: 16px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #6969f2 0%, rgba(61, 61, 140, 0) 100%);
  top: 41px;
}

ul.progress-list {
  position: relative;
}

.trusted-slider .slick-slide {
  opacity: 1;
}

.trusted-box {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials .hidings3 {
  color: #29363d;
  font-family: "Plus Jakarta Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  /* 116.667% */
}

.sub-hiding3 {
  color: #939db8;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration-line: underline;
}

@media screen and (max-width: 1200px) {
  .available-auction {
    & .pricing-wrapper {
      .pricing {
        display: flex;
        align-items: flex-start;
        width: 100%;
        justify-content: space-between;
      }
    }
  }
}

@media screen and (max-width: 575px) {
  .available-auction {
    & .auction-box {
      ul {
        grid-template-columns: 1fr 1fr;
      }
    }

    & .pricing-wrapper {
      .pricing {
        h5 {
          font-size: 26px;
          line-height: 1.2;
        }
        h4 {
          line-height: 1.2;
        }
      }
    }
  }
}

@media screen and (max-width: 767px) {
  .padded-banner .firstget,
  .padded-banner .secondthing {
    font-size: 70px;
    line-height: 1.2;
  }

  .firstget,
  .secondthing {
    font-size: 60px;
  }
}

@media screen and (max-width: 575px) {
}

/* filters */
.auction-filters{
  .filter-checkboxes {
    .auction-filters h6 {
      color: #000;
      font-family: "Roboto";
      font-style: normal;
      font-weight: 400;
      line-height: 18px;
      margin: 0;
      padding: 10px 0;
      font-size: 17px;
    }
    .accordion-item {
      border: none !important;
      border-bottom: 1px solid #00000036 !important;
      border-radius: 0;
      padding: 20px 0;
      margin: 0;
    }
    .accordion-button::after {
      width: 1rem;
      height: 1rem;
      background-size: cover;
    }
    .accordion-button:not(.collapsed)::after {
      filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(6%)
        hue-rotate(170deg) brightness(95%) contrast(101%);
    }
  
    button.accordion-button {
      padding: 10px 0;
      font-size: 17px;
    }
  
    .accordion-body {
      padding: 0;
    }
    .accordion-item label {
      display: grid;
      margin: 10px 0;
      font-size: 16px;
      gap: 8px;
      color: #000000a6;
      grid-auto-flow: column;
      justify-content: start;
      line-height: 1.3;
      cursor: pointer;
    }
  
    .accordion-item input[type="checkbox"] {
      width: 18px;
      height: 19px;
      border: none !important;
    }
    .accordion-item li ul {
      padding-left: 25px;
    }
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }
  
  input[type="number"] {
      -moz-appearance: textfield;
  }
  
  input[type="number"]::-webkit-inner-spin-button {
      opacity: 0;
  }
  .filter-minmax {
    display: flex;
    justify-content: start;
    margin-top: 1.5rem;
    gap: 4rem;
    flex-wrap: wrap;
  }
  
  .filter-minmax input {
    text-align: center;
    max-width: 30% !important;
    min-height: 52px !important;
    border-color: #00000047 !important;
    font-size: 17px;
    color: #495057;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  span.second-span {
    float: right;
  }
  p{
    margin-top: 6px;
  }
  input[type="range"] {
    width: 100%;
    height: 5px;
  }
  
  
  }
  .filter-heading {
    display: flex;
    justify-content: space-between;
    padding: 23px 0;
    border-bottom: 1px solid #00000036;
  }
  
  .filter-search {
    padding: 23px 0;
    border-bottom: 1px solid #00000036;
  }
  
  .filter-search input {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    width: 100%;
    height: 50px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
  
  .lsiting-status {
    padding: 23px 0;
    border-bottom: 1px solid #00000036;
  }
  
  .auction-filters h6 {
    font-family: "Roboto";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }
  
  .lsiting-status a {
    display: block;
    color: #000000b8;
  }
  
  .lsiting-status a:not(:last-child) {
    margin-bottom: 12px;
  }
  a.active {
    color: #4f96fe;
    text-decoration: underline;
  }
  .buy-invest {
    display: flex;
    padding: 23px 0;
    border-bottom: 1px solid #00000036;
    gap: 20px;
    flex-wrap: wrap;
    span {
      color: #0058FF;
      border: 1.5px solid #0058FF;
      padding: 11px 15px;
      border-radius: 32px;
      font-weight: 600;
    }
    span.active{
      background:#0058FF ;
      color: #fff;
    }
  }
  
 
  .filter-select {
    padding: 23px 0;
    border-bottom: 1px solid #00000036;
  }
  
  .filter-select select {
    width: 100%;
    padding: 12px 10px;
    appearance: auto;
    border-color: #00000047;
    border-radius: 5px;
    color: #000000a1;
  }
  
}


.auction-filters {
  overflow: hidden;
  transition: height 0.3s ease;
}