@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

/* General Section */
.benefits-section {
  text-align: center;
  padding: 2rem 1rem;
}

.benefits-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

/* Card Container */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

/* Card Styles */
.card {
  padding: 1.5rem;
  background-color: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Problem Card */
.card-problems li {
  color: #d9534f;
}

/* Solution Card */
.card-solutions li {
  color: #5cb85c;
}

.card-solutions strong {
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 480px) {
  .benefits-section h2 {
    font-size: 1.5rem;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card li {
    font-size: 0.95rem;
  }
}


.embedded-container {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif !important;
}

.embedded-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.section {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.section h2 {
  font-size: 31px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  font-family: 'Poppins', sans-serif !important;
}

.chart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px;
  margin-top: 20px;
}

.column {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  padding: 20px;
  border-radius: 8px;
  box-sizing: border-box;
}

.column h4 {
  font-size: px;
  padding-bottom: inherit;
  padding-inline-start: inherit;
  font-weight: 600;
  font-family: 'Poppins', sans-serif !important;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column ul li {
  font-size: 14px;
  color: #002248;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif !important;
}

.column ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Font Awesome 6 Free', 'Poppins', sans-serif !important;
  font-weight: 900;
  font-size: 16px;
}

.column ul li.cross::before {
  content: '\f00d';
  color: red;
  border: 1px solid red;
  border-radius: 50%;
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 19px;
  display: inline-block;
}

.column ul li.check::before {
  content: '\f00c';
  font-size: 10px;
  padding: 1px 1px 2px;
  color: #f9f9fa;
  border: 1px solid green;
  border-radius: 50%;
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 19px;
  display: grid;
  place-items: center;
  background-color: green;
}

@media (max-width: 768px) {
  .chart {
    flex-direction: column;
  }

  .column {
    max-width: 100%;
  }
}

/* Embedded Financing Section */
.embedded-financing {
  font-family: 'Poppins', sans-serif !important;
  padding: 40px 20px;
}

.embedded-financing .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.embedded-financing .title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #002248;
  font-family: 'Poppins', sans-serif !important;
}

/* Card Container */
.embedded-financing .card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Individual Cards */
.embedded-financing .card {
  background: white;
  /* border: 1px solid #e0e0e0; */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 8px px rgb(137 132 132 / 15%);
  transition: transform 0.2s, box-shadow 0.2s;
}

.embedded-financing .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.embedded-financing .card-icon {
  font-size: 2rem;
  color: #ff6f61;
  margin-bottom: 15px;
}

.embedded-financing .card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #002248;
  font-family: 'Poppins', sans-serif !important;

}

.embedded-financing .card-text {
  font-size: 1rem;
  color: #002248;
  font-family: 'Poppins', sans-serif !important;
  line-height: 1.5;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .embedded-financing .title {
    font-size: 1.8rem;
  }

  .embedded-financing .card-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .embedded-financing .title {
    font-size: 1.5rem;
  }

  .embedded-financing .card {
    padding: 15px;
  }

  .embedded-financing .card-title {
    font-size: 1rem;
  }

  .embedded-financing .card-text {
    font-size: 0.9rem;
  }

  .embedded-financing .card-icon {
    font-size: 1.8rem;
  }
}

/* General Styles */
.responsive-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #f8fbff;
    width: 100%;
    padding-bottom: 55px;
    padding-top: 62px;
    margin-top: -227px; 
    margin-left: 5px;
}

@media (max-width: 768px) {
    .responsive-section {
        margin-top: -15px;
    }
}

@media (max-width: 480px) {
    .responsive-section {
        margin-top: -20px;
    }
}

.g-recaptcha {
  display: none;
}

.responsive-section h1 {
  font-size: 1.5rem;
  color: #001858;
  margin-bottom: 20px;
  padding: 0 10px;
}

/* Image Container */
.image-container {
  position: relative;
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Play Button */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.play-icon svg {
  width: 30px;
  height: 30px;
  fill: #0077ff;
}

/* Responsive Design */
@media (min-width: 480px) {
  .responsive-section h1 {
    font-size: 1.8rem;
  }

  .image-container {
    width: 80%;
  }
}

@media (min-width: 768px) {
  .responsive-section h1 {
    font-size: 2rem;
  }

  .image-container {
    width: 70%;
  }
}

@media (min-width: 1200px) {
  .responsive-section h1 {
    font-size: 2.5rem;
  }

  .image-container {
    width: 50%;
  }
}


.customer-quotes .quote img {
  border-radius: 10px;
}

.trusted-section {
  background-color: #f8fbff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.trusted-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #002248;
  margin-bottom: 10px;
}

.testimonial-header img {
  width: 25%;
}

.trusted-section .subheading {
  font-size: 16px;
  color: #001858;
  margin-bottom: 30px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.testimonial-image {
  width: 120px;
  border-radius: 8px;
}

.testimonial-text {
  font-size: 14px;
  color: #001858;
  max-width: 500px;
  text-align: left;
  padding-left: 33px
}

.trusted-intro {
  font-size: 16px;
  color: #001858;
  margin-bottom: 15px;
  text-align: left;
  padding-left: 342px;
}


.trusted-reason {
  font-size: 18px;
  font-weight: bold;
  color: #002248;
  margin-bottom: 20px;
  margin-right: 510px;
}

.card-container-new-home {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 643px;
  margin-left: 335px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 280px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icon img {
  width: 50px;
  margin-bottom: 15px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #002248;
  margin-bottom: 10px;
  text-align: justify;
}

.card-text {
  font-size: 14px;
  color: #001858;
  text-align: left;
}

.customer-quotes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-bottom: 66px;
}

.quote {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 280px;
}

.quote img {
  width: 47px;
  margin-top: -66px;

}

.quote p {
  font-size: 15px;
  color: #001858;
  margin-bottom: 10px;
  font-family: inherit;
}

.quote h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.quote span {
  font-size: 13px;
  color: #001858;
}

@media (max-width: 768px) {
  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .card-container {
    flex-direction: column;
  }

  .card {
    width: 100%;
    max-width: 320px;
  }

  .customer-quotes {
    flex-direction: column;
  }
}

@media (max-width: 1200px) {
  .trusted-intro {
    padding-left: 150px;
    /* Adjust left padding for better alignment */
    text-align: left;
  }

  .trusted-reason {
    margin-right: 200px;
    text-align: left;
  }

  .card-container-new-home {
    margin-left: 50px;
    gap: 10px;
  }
}

@media (max-width: 992px) {
  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .testimonial-header img {
    width: 20%;
  }

  .testimonial-text {
    padding-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .trusted-intro {
    padding-left: 0;
    text-align: center;
  }

  .trusted-reason {
    margin-right: 0;
    text-align: center;
  }

  .card-container-new-home {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .trusted-section h2 {
    font-size: 24px;
  }

  .trusted-section .subheading {
    font-size: 14px;
  }

  .testimonial-header img {
    width: 30%;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .card-container-new-home {
    flex-direction: column;
    gap: 20px;
  }

  .card {
    max-width: 320px;
    margin: 0 auto;
  }

  .customer-quotes {
    flex-direction: column;
    gap: 20px;
  }

  .quote {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .trusted-section {
    padding: 40px 10px;
  }

  .trusted-section h2 {
    font-size: 20px;
    line-height: 1.4;
  }

  .testimonial-header img {
    width: 40%;
  }

  .testimonial-text {
    font-size: 12px;
  }

  .card-container-new-home {
    gap: 15px;
  }

  .card {
    max-width: 100%;
  }

  .quote img {
    width: 40px;
  }

  .quote p {
    font-size: 14px;
  }

  .quote h4 {
    font-size: 13px;
  }
}

.reviewcount-border-financen-new-page {
  border-left: 2px solid #7cb9ed;
}

@media (min-width: 1024px) {
  .video-container {
    margin-top: -46px !important;
  }
}


/* CLone Page CSS */

html,
body {
  margin: 0px;
}

#crmWebToEntityForm.zcwf_lblLeft {
  width: 100%;
  padding: 25px;
  margin: 0 auto;
  box-sizing: border-box;
}

#crmWebToEntityForm.zcwf_lblLeft * {
  box-sizing: border-box;
}

#crmWebToEntityForm {
  text-align: left;
}

#crmWebToEntityForm * {
  direction: ltr;
}

.zcwf_lblLeft .zcwf_title {
  word-wrap: break-word;
  padding: 0px 6px 10px;
  font-weight: bold
}

.zcwf_lblLeft.cpT_primaryBtn:hover {
  background: linear-gradient(#02acff 0, #006be4 100%) no-repeat padding-box !important;
  box-shadow: 0 -2px 0 0 #0159b9 inset !important;
  border: 0 !important;
  color: #fff !important;
  outline: 0 !important;
}

.zcwf_lblLeft .zcwf_col_fld input[type=text],
input[type=password],
.zcwf_lblLeft .zcwf_col_fld textarea {
  width: 60%;
  border: 1px solid #c0c6cc !important;
  resize: vertical;
  border-radius: 2px;
  float: left;
}

.zcwf_lblLeft .zcwf_col_lab {
  width: 30%;
  word-break: break-word;
  padding: 0px 6px 0px;
  margin-right: 10px;
  margin-top: 5px;
  float: left;
  min-height: 1px;
}

.zcwf_lblLeft .zcwf_col_fld {
  float: left;
  width: 68%;
  padding: 0px 6px 0px;
  position: relative;
  margin-top: 5px;
}

.zcwf_lblLeft .zcwf_privacy {
  padding: 6px;
}

.zcwf_lblLeft .wfrm_fld_dpNn {
  display: none;
}

.dIB {
  display: inline-block;
}

.zcwf_lblLeft .zcwf_col_fld_slt {
  width: 60%;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  font-size: 12px;
  float: left;
  resize: vertical;
  padding: 2px 5px;
}

.zcwf_lblLeft .zcwf_row:after,
.zcwf_lblLeft .zcwf_col_fld:after {
  content: '';
  display: table;
  clear: both;
}

.zcwf_lblLeft .zcwf_col_help {
  float: left;
  margin-left: 7px;
  font-size: 12px;
  max-width: 35%;
  word-break: break-word;
}

.zcwf_lblLeft .zcwf_help_icon {
  cursor: pointer;
  width: 16px;
  height: 16px;
  display: inline-block;
  background: #fff;
  border: 1px solid #c0c6cc;
  color: #c1c1c1;
  text-align: center;
  font-size: 11px;
  line-height: 16px;
  font-weight: bold;
  border-radius: 50%;
}

.zcwf_lblLeft .zcwf_row {
  margin: 15px 0px;
}

.zcwf_lblLeft .formsubmit {
  margin-right: 5px;
  cursor: pointer;
  color: var(--baseColor);
  font-size: 12px;
}

.zcwf_lblLeft .zcwf_privacy_txt {
  width: 90%;
  color: rgb(0, 0, 0);
  font-size: 12px;
  font-family: Arial;
  display: inline-block;
  vertical-align: top;
  color: var(--baseColor);
  padding-top: 2px;
  margin-left: 6px;
}

.zcwf_lblLeft .zcwf_button {
  font-size: 12px;
  color: var(--baseColor);
  border: 1px solid #c0c6cc;
  padding: 8px 35px;
  border-radius: 4px;
  cursor: pointer;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zcwf_lblLeft .zcwf_button:focus {
  outline: none !important;
  border-width: 1px !important;
  border-color: #c0c6cc !important;
  box-shadow: 0 0 0 0.1rem rgb(192 198 204 / 50%) !important;
}

.zcwf_lblLeft .zcwf_button[type='submit'] {
  background-color: var(--priamry-bg-color) !important;
  border-color: var(--priamry-bg-color) !important;
  color: #fff;
}

.zcwf_lblLeft .zcwf_button[type='submit']:focus,
.zcwf_lblLeft .zcwf_button[type='submit']:hover {
  background-color: var(--priamry-bg-dark-color) !important;
  color: #fff;
}

.zcwf_lblLeft .zcwf_button[type='submit']:focus {
  box-shadow: 0 0 0 0.2rem rgb(0 112 209 / 26%) !important;
  border-color: var(--priamry-bg-dark-color) !important;
}

.zcwf_lblLeft .zcwf_tooltip_over {
  position: relative;
}

.zcwf_lblLeft .zcwf_tooltip_ctn {
  position: absolute;
  background: #dedede;
  padding: 3px 6px;
  top: 3px;
  border-radius: 4px;
  word-break: break-word;
  min-width: 100px;
  max-width: 150px;
  color: var(--baseColor);
  z-index: 100;
}

.zcwf_lblLeft .zcwf_ckbox {
  float: left;
}

.zcwf_lblLeft .zcwf_file {
  width: 55%;
  box-sizing: border-box;
  float: left;
}

.clearB:after {
  content: '';
  display: block;
  clear: both;
}

@media all and (max-width: 600px) {

  .zcwf_lblLeft .zcwf_col_lab,
  .zcwf_lblLeft .zcwf_col_fld {
    width: auto;
    float: none !important;
  }

  .zcwf_lblLeft .zcwf_col_help {
    width: 40%;
  }
}
.form-border {
  border: none; 
  background-color: white !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
  border-radius: 8px;
}
.img-fluid-embed-page {
  margin-left: -78px;
}

/* Tablets */
@media (max-width: 1024px) {
  .img-fluid-embed-page {
    margin-left: -40px;
  }
}

/* Small screens (mobile) */
@media (max-width: 768px) {
  .img-fluid-embed-page {
    margin-left: 0px;
  }
}
.heading-demo-titel {
  height: 100px;
  background-color: #3989E3;
  border-radius: 8px 8px 0 0;
}



