/* Variable CSS */
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");
.form-select-container > select {
  visibility: hidden;
  position: absolute;
}

.form-select-container > .form-select {
  border-right: 1px solid #e3e7f0;
  background-color: var(--white);
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 4px;
  position: relative;
  transition: border-color 0.3s ease-in-out;
  width: 98px;
  height: 50px;
}

.form-select-container.active > .form-select {
  border-color: transparent;
}

.form-select-container > .form-select > .form-option-placeholder {
  padding: 1rem;
  position: relative;
  cursor: pointer;
  /*transition: padding 0.375s cubic-bezier(0.4, 0, 0.2, 1) 180ms;*/
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1) 120ms;
  font-size: 14px;
  color: var(--subText);
}

.form-select-container > .form-select > .form-option-placeholder::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  top: 50%;
  right: 1rem;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg) translateY(-100%);
}

.form-select-container.active > .form-select > .form-option-placeholder {
  padding: 1.5rem 1rem;
  /*transition: padding 0.375s cubic-bezier(0.4, 0, 0.2, 1);*/
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-select-container > .form-select > .form-option-wrapper {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  box-shadow: 2px 1px 16px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border-radius: 5px;
  /*transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 180ms cubic-bezier(0.4, 0, 0.2, 1) 180ms;*/
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 180ms cubic-bezier(0.4, 0, 0.2, 1) 180ms;
}

.form-select-container.active > .form-select > .form-option-wrapper {
  visibility: visible;
  opacity: 1;
  /*transition: opacity 0.375s cubic-bezier(0.4, 0, 0.2, 1) 100ms, visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1) 100ms;*/
  transition: opacity 0.375s cubic-bezier(0.4, 0, 0.2, 1) 120ms, visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1) 100ms;
}

.form-select-container > .form-select > .form-option-wrapper > .form-option-placeholder-container > .form-option-placeholder,
.form-select-container > .form-select > .form-option-wrapper > .form-option-container > .form-option {
  cursor: pointer;
  transition: background-color 180ms ease-in-out;
}

.form-select-container > .form-select > .form-option-wrapper > .form-option-placeholder-container > .form-option-placeholder:hover,
.form-select-container > .form-select > .form-option-wrapper > .form-option-container > .form-option:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.form-select-container > .form-select > .form-option-wrapper > .form-option-placeholder-container {
  border-bottom: 1px solid #e6e6e6;
}

.form-select-container > .form-select > .form-option-wrapper > .form-option-placeholder-container > .form-option-placeholder {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 1rem;
  color: #aaa;
}

.form-select-container > .form-select > .form-option-wrapper > .form-option-container {
  padding-top: 0;
  padding-bottom: 0;
  height: 0;
  overflow: hidden;
  /*transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
  transition: height 180ms cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-select-container.active > .form-select > .form-option-wrapper > .form-option-container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  /*transition: height 0.375s cubic-bezier(0.4, 0, 0.2, 1) 120ms, padding-top 0.5s cubic-bezier(0.4, 0, 0.2, 1) 180ms, padding-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1) 180ms;*/
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1) 120ms, padding-top 0.5s cubic-bezier(0.4, 0, 0.2, 1) 180ms, padding-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1) 180ms;
}

.form-select-container > .form-select > .form-option-wrapper > .form-option-container > .form-option {
  padding: 1rem;
}

.form-select-container > .form-select > .form-option-wrapper > .form-option-container > .form-option.active {
  background-color: #bbdefb;
}

.form-select-container > .form-select > .form-option-wrapper > .form-option-container > .form-option.active:hover {
  background-color: #e3f2fd;
}

.form-option-container {
  max-height: 300px; /* Set the maximum height */
  overflow-y: auto; /* Enable vertical scrolling */
  transition: height 0.3s ease; /* Smooth transition effect for height changes */
}

.form-option-container::-webkit-scrollbar {
  width: 5px;
}

/* Font Family Import */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1 {
  font-size: 50px;
  line-height: 70px;
  color: #010101;
  margin-bottom: 16px;
}

h2 {
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 16px !important;
  color: #010101;
}

h5 {
  font-size: 22px;
  line-height: 23.94px;
  font-weight: 500;
  margin-bottom: 16px !important;
  color: #010101;
}

h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 32.64px;
  text-align: left;
  margin-bottom: 20px;
}

h4 {
  font-size: 20px;
  font-weight: 600;
  color: #010101;
  line-height: 21.76px;
  margin-bottom: 8px;
}

h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #4a4c62;
}

p {
  font-size: 16px;
  line-height: 27.2px;
  color: #4a4c62;
}

input,
textarea {
  border: none;
  resize: none;
  font-family: "Archivo", sans-serif;
}

input:focus,
textarea:focus {
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #4a4c62 !important;
  opacity: 0.6;
  font-size: 14px;
  line-height: 15.23px;
}

.btn {
  padding: 14px;
  width: 100%;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 19.58px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s all linear;
}

.primary {
  background-color: #265ef7;
  color: #ffffff;
  border: 1px solid #265ef7;
}

.outline:hover {
  background-color: #265ef7;
  color: #ffffff;
  border: 1px solid #265ef7;
}

.outline {
  border: 1px solid #010101;
  background-color: #ffffff;
  color: #010101;
}

ol,
ul {
  display: grid;
  gap: 10px;
  padding-left: 17px;
}

ol li {
  padding-left: 10px;
}

li {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  text-align: left;
  color: #4a4c62;
}

ul li {
  list-style-type: none;
  position: relative;
  padding-left: 10px !important;
}

ul li::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 4px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-image: url(../img/icon/check.svg);
}

@media screen and (max-width: 1024px) {
  h1,
h2 {
    font-size: 35px;
    line-height: 50px;
  }
}
@media screen and (max-width: 767px) {
  h1,
h2 {
    font-size: 28px;
    line-height: 35px;
  }
  h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  li,
p {
    font-size: 14px;
    line-height: 23px;
  }
  .btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 569px) {
  h1,
h6 {
    text-align: center;
  }
  h6,
h4 {
    font-size: 16px;
  }
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Archivo", sans-serif;
}

.container {
  max-width: 1208px;
  margin: auto;
  padding: 0 16px;
}

@media screen and (min-width: 1208px) {
  .container-secound {
    max-width: calc(100vw - 200px);
    margin: auto;
  }
}
.index-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
}

.section-120 {
  padding: 120px 0;
}

.section-100 {
  padding: 100px 0;
  background: #eff1f4;
}

.section-80 {
  padding: 80px 0;
}

/* Header */
header {
  padding: 20px 16px;
  background-color: #f8f8f8;
}

@media screen and (min-width: 1024px) {
  header .logo {
    height: 70px;
  }
}
.seconds-header {
  background-color: #eff1f4;
}

/* Hero Section */
.hero-section {
  background-color: #f8f8f8;
}

@media screen and (min-width: 1024px) {
  .hero-section {
    height: calc(100vh - 110px);
    background-color: #f8f8f8;
    overflow: hidden;
  }
  .hero-section::before {
    content: "";
    background-image: url("../img/lending-page/Hero/Bg.svg");
    height: 80%;
    width: 60vw;
    background-position: bottom;
    background-repeat: no-repeat;
    position: absolute;
    object-fit: cover;
    background-size: cover;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .hero-section::before {
    max-height: 825px;
  }
  .hero-right .banner img {
    max-height: calc(100vh - 110px);
  }
}
.hero-star img {
  display: none;
}

@media screen and (min-width: 1024px) {
  .hero-star img:first-child {
    position: absolute;
    right: 25%;
    top: 20px;
    z-index: 11;
    display: inline;
  }
  .hero-star img:last-child {
    display: inline;
    position: absolute;
    left: 30%;
    top: 20%;
    z-index: 11;
  }
}
.display-grid-c {
  display: grid;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  position: relative;
  z-index: 111;
  padding: 0 16px;
}

.hero-right {
  height: 100%;
  width: 100%;
}

.hero-right .banner img {
  height: 100%;
  width: 100%;
  background-size: cover;
}

.hero-right {
  display: flex;
  justify-content: end;
  align-items: center;
}

/* Work Section */
.work-section h2,
.work-section h6,
.pricing-section h2,
.pricing-section h6,
.feature-section h2,
.feature-section h6 {
  text-align: center;
  max-width: 641px;
  margin: auto;
}

.tab-content {
  display: block; /* changed from none to block so transitions can apply */
  opacity: 0;
  height: 0;
  overflow: hidden; /* to hide content when height is 0 */
  transition: opacity 0.5s ease, height 2.5s ease; /* adjust duration as needed */
}

.tab-content.active {
  opacity: 1;
  height: auto; /* allows the content to expand to its full height */
}

.tab-data,
.tab-data img {
  width: 100%;
  max-width: 1080px;
  height: 100%;
  margin: auto;
  cursor: pointer;
}

.tab-content.active {
  display: block;
}

.tab-main {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 4rem;
}

.tab-buttons {
  background-color: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 5px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 1rem;
}

.tab {
  cursor: pointer;
  border-radius: 100px;
  padding: 0.5rem;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #010101;
  width: 111px;
  text-align: center;
}

.tab.active {
  background-color: #ffffff;
}

.detail-content {
  display: none;
}

.detail-content.active {
  display: block;
}

/* Work Section */
.feature-section {
  background-color: #f8f8f8;
}

.feature-main {
  margin-top: 60px;
  display: grid;
  gap: 40px;
}

.feature-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-box-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.feature-box-image img {
  width: 100%;
  height: 100%;
}

.feature-box:nth-child(n+3) .feature-box-image {
  background-color: #ffffff;
  padding-top: 20px;
}

.feature-box-content h2,
.feature-box-content h6 {
  text-align: left !important;
}

/* Pricing Section */
.purchase-main {
  margin-top: 60px;
}

.pricing-section h5 {
  margin-bottom: 10px !important;
}

.range-container {
  margin-bottom: 20px;
  position: relative;
  padding-top: 30px;
}

input[type=range] {
  width: 100%;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.range-labels span {
  position: relative;
  text-align: center;
  font-size: 14px;
}

.range-labels span:first-child,
.range-labels span:last-child {
  margin: 0;
}

.range-labels span {
  margin-left: 30px;
}

.range-labels span:first-child::before {
  left: 2px;
}

.range-labels span::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  width: 1px;
  height: 5px;
  background-color: #000;
}

.range-labels span:last-child::before {
  left: auto !important;
  right: -2px !important;
}

.pricing-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns of equal width */
  gap: 16px;
  overflow-x: auto;
  margin-top: 60px;
}

.pricing-card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 32px;
  border: 1px solid #ccc;
  border-radius: 24px;
  padding: 32px;
  white-space: nowrap;
  min-width: 250px;
}

.pricing-card h5 {
  margin: 0 !important;
  width: fit-content;
  padding: 16px;
  background-color: #f5f5f5;
  border-radius: 16px;
}

.card.highlighted {
  border-color: #3498db;
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

.purchase-price {
  display: flex;
  justify-content: flex-start;
  align-items: end;
  gap: 6px;
  margin-bottom: 8px;
}

.purchase-price h1 {
  width: fit-content;
  margin: 0;
  line-height: normal !important;
}

.pricing-card:last-child {
  background-color: #f8f8f8;
  border: 0;
}

.pricing-card:last-child h5 {
  border: 1px solid #010101;
  background-color: #ffffff;
}

.member-popup {
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #000;
  font-size: 14px;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: bold;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 1px;
  padding: 0 !important;
  background: #010101;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 100%;
  background-color: #000;
  overflow: visible;
  cursor: pointer;
}

/* Testimonial CSS */
.testimonial-section {
  position: relative;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 521px;
  background-color: #f8f8f8;
  z-index: -1;
}

.testimonial-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
}

.testimonial-title h2 {
  max-width: 450px;
  width: fit-content;
  text-align: left;
  margin: 0;
  margin-bottom: 0 !important;
}

.testimonial-title h6 {
  width: fit-content;
  text-align: left;
  max-width: 520px;
  margin: 0;
}

.navigation-button {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.navigation-button div {
  border: 1px solid #797c99;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.navigation-button div.active {
  background-color: #0234a5;
  color: white;
  border: 1px solid #0234a5;
}

.testimonial-rating-main {
  overflow: hidden;
  padding-right: 16px;
}

.testimonial-rating {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  margin-top: 80px;
  padding-right: 16px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 120px;
}

.testimonial-rating::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  min-width: 575px;
  max-width: 575px;
  overflow: hidden;
  box-shadow: 0px 45px 80px 0px rgba(0, 0, 0, 0.0392156863);
}

.testimonial-card:first-child {
  margin-left: 18%;
}

.testimonial-content {
  flex-direction: column;
  display: flex;
  gap: 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.user-details {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-details h6 {
  color: #010101;
  font-weight: 600;
}

.rating {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Cotact-US CSS */
.contact-section {
  padding-bottom: 120px;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-left {
  display: grid;
  gap: 48px;
  height: fit-content;
}

.contact-location {
  display: grid;
  gap: 32px;
}

.emails,
.address {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-right {
  background: #eff1f4;
  border-radius: 6px;
}

.contact-right form {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.number-form {
  display: grid;
  grid-template-columns: 98px auto;
}

.number-form.input-form {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 0 !important;
  width: 100%;
}

.input-form {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 16px;
  background-color: #ffffff;
}

.input-form input,
.input-form textarea {
  width: 100%;
}

.contact-btn {
  margin-top: 18px;
}

/* ___________ Data Protection ___________ */
.data-protection-main h1 {
  font-size: 60px !important;
  text-align: center;
}

.data-protection-main {
  max-width: 500px;
  text-align: center;
  margin: auto;
}

.data-protection-contents {
  display: grid;
  gap: 40px;
}

.data-protection-contents p {
  margin-bottom: 15px;
}

.data-protection-contents p:last-child {
  margin-bottom: 0;
}

/* Media Query */
@media screen and (max-width: 1202px) {
  .testimonial-card:first-child {
    margin-left: 16px !important;
  }
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
@media screen and (max-width: 991px) {
  .section-120 {
    padding: 60px 0;
  }
  .section-100 {
    padding: 50px 0;
    background: #eff1f4;
  }
  .section-80 {
    padding: 40px 0;
  }
  .data-protection-main h1 {
    font-size: 44px !important;
  }
  header .logo img {
    height: 35px;
  }
  .hero-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-right .banner {
    display: flex;
    justify-content: center;
  }
  .hero-right .banner img {
    height: 100%;
    width: 100%;
    background-size: cover;
  }
  .feature-section h2,
.feature-section h6 {
    text-align: center !important;
  }
  .feature-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feature-box:nth-child(even) .feature-box-image {
    order: 1;
  }
  .feature-box:nth-child(even) .feature-box-content {
    order: 2;
  }
  .testimonial-section::before {
    height: 600px;
  }
  .testimonial-card {
    width: 475px;
  }
  .contact-main {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .data-protection-main h1 {
    font-size: 32px !important;
  }
  .testimonial-card {
    width: 410px;
    gap: 16px;
  }
  .testimonial-card h6 {
    font-size: 14px;
    line-height: 20px;
  }
  .testimonial-card .user-image {
    height: 40px;
    width: 40px;
  }
  .user-details {
    gap: 8px;
  }
  .testimonial-card .user-image img {
    height: 100%;
    width: 100%;
  }
  .contact-left {
    gap: 24px;
  }
  .contact-left h2 {
    text-align: center;
  }
}
@media screen and (max-width: 569px) {
  .hero-section::before {
    max-height: 680px;
  }
  .testimonial-card {
    min-width: 375px;
    max-width: 375px;
  }
  .testimonial-rating {
    margin-top: 24px;
    padding-bottom: 60px;
  }
  .testimonial-section::before {
    height: 450px;
  }
  .contact-right form {
    padding: 20px;
  }
  .contact-section {
    padding-bottom: 60px;
  }
  .footer-top {
    padding: 40px 0;
  }
  .service {
    flex-direction: column;
  }
}
@media screen and (max-width: 410px) {
  .testimonial-card {
    min-width: 275px;
    max-width: 275px;
    padding: 16px;
  }
}
/* ___________________________________________________ */
/* Testimonial Media Query */
@media screen and (max-width: 1820px) {
  .testimonial-card:first-child {
    margin-left: 16%;
  }
}
@media screen and (max-width: 1520px) {
  .testimonial-card:first-child {
    margin-left: 9%;
  }
}
@media screen and (max-width: 1402px) {
  .testimonial-card:first-child {
    margin-left: 5%;
  }
}

/*# sourceMappingURL=style.css.map */
