:root {
  --white-color: #ffffff;
  --text-color: #141414;
  --theme-color: #254291;
  --black-color: #000000;
  --secondary-font: "Plus Jakarta Sans", sans-serif;
  --gold-color: #ffaf02;
  --background-color: #142245;
  --main-font: "Inter", sans-serif;
}

html {
  font-size: 100%;
  /* Default: 16px (1rem) */
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family: var(--main-font) !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 24px;
}

/* Custom CSS for container width requirements */
.custom-container {
  width: 100%;
  max-width: 1200px !important;
  margin: 0 auto;
  padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Header Styles */

.header {
  background-color: var(--white-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}
img.logo {
    width: 120px;
}
.navbar {
  padding: 12px 0;
}

button.navbar-toggler {
  border: none;
}


.navbar-center {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* .navbar-nav .nav-link {
  padding: 0px 10px;
} */

.custom-container.d-flex.align-items-center.justify-content-between {
  padding: 15px 20px;
}

.navbar-brand {
  font-weight: bold;
  color: #e74c3c !important;
  font-size: 1.5rem;
}

.navbar-nav .nav-link,
a.nav-link {
 color: var(--text-color);
    font-weight: 500;
    margin: 0 10px;
    font-size: 15px;
    line-height: 24px;
    font-family: var(--secondary-font);
    padding: 0px !important;
}

.navbar-nav .nav-link:hover {
  color: #e74c3c !important;
}

a.btn-signup.btn {
    background-color: var(--theme-color) !important;
    color: var(--white-color) !important;
    font-family: var(--secondary-font) !important;
    border: none !important;
    padding: 7px 20px !important;
    border-radius: 40px !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 24px !important;
    margin: 0px !important;
}

.btn-signup:hover {
  background-color: #c0392b;
  color: white;
}
.icon-white::before {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff !important;
    transition: 0.3s ease;
}


.all-artiacl {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.all-artiacl
a.text-color {
    line-height: 60px;
    padding: 0px;
    background: #fff;
    color: #000;
    border: none;
    font-size: 16px;
    font-weight: 500 !important;
}

/* Hero Section */
.hero-section {
  background-image:
    /*linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),*/
    url("../images/home-banner.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 135px 0px;
  display: flex;
  align-items: center;
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 100%;
  color: var(--white-color);
  font-family: var(--secondary-font);
}

.hero-content h2 {
  font-size: 2.5rem;
  color: var(--theme-color);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 130%;
  font-family: var(--secondary-font);
}

.hero-content p {
 font-size: 1.125rem;
    line-height: 1.5em;
    margin-bottom: 30px;
    font-family: var(--main-font);
    color: var(--white-color);
    max-width: 90%;
}

.google-review p.fw-bold {
    font-size: 1.3rem !important;
    line-height: 32px !important;
    color: var(--text-color) !important;
    padding: 10px 0px !important;
    margin: 0px;
}

.google-review p, .google-review ul li {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 150%;
}
.google-review img.img-fluid.rounded.shadow {
    width: 90%;
}
.google-review ul li {
  line-height: 200%;
}
section.google-review {
    background: #FAFAFA;
}
strong.bold-text {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: var(--text-color);
}

.hero-buttons {
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
}

.btn {
    background-color: var(--theme-color);
    border: none;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 4px;
    /* margin-right: 15px; */
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    color: var(--white-color);
    font-family: var(--main-font);
}
.btn-secondary-custom {
  background-color: var(--white-color) !important;
  border: 1px solid var(--theme-color) !important;
  color: var(--theme-color) !important;
}

.btn-primary-custom:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.btn-secondary-custom:hover {
  background-color: white;
  color: #333;
}

/* Filter Options */
.filter-options {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.filter-item span {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--white-color);
}

.filter-item i {
  color: #27ae60;
  margin-right: 8px;
  font-size: 16px;
}

.testimonial {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
    width: 60%;
    border-radius: 8px;
    padding: 16px;
    color: var(--white-color);
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) -39.06%, rgba(0, 0, 0, 0.72) 52.03%);
    backdrop-filter: blur(80px);
    border: 1px solid #CC3A3214;
    background-color: #FFFFFF3D;
}
/* Sign-up-2 */

.sign-up-2  {
    max-width: 70%;
    margin: 40px auto;
        box-shadow: 0px 4px 16px 0px #cc3a3214;
        border: 1px solid #14141414;
        border-radius: 12px;
        padding: 40px 15px;
}
.sign-up-2 .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}
.sign-up-2 form#multiStepForm{
  padding: 40px 15px;
  padding-bottom: 20px !important;

}
.sign-up-2 label.form-check-label {
    padding-top: 4px;
}


/* .step-1 .form-check {
    gap: 0px !important;
} */
.sign-up-2 .form-select {
    border-radius: 4px !important;
    padding: 12px 16px !important;
    border: 0.5px solid #c2c2c2 !important;
    max-width: 200px !important;
}
.sign-up-2 h5.mb-3 {
    font-weight: 700;
    font-size: 24px;
    padding: 10px 0px;
}
.sign-up-2 .invalid-feedback.step-validation {
    margin-left: 9px;
}
.sign-up-2 button.btn.btn-primary.next-step {
    padding: 15px 50px;
}
.sign-up-2 .form-check-input[type=radio] {
    border-radius: 5px;
    width: 20px !important;
    height: 20px !important;
    padding: 0px;
}
.step-1 button.btn.btn-secondary.prev-step {
    padding: 15px 50px;
}
a.blog-tab-item {
    color: #000 !important;
    box-shadow: none;
}
.blog-tab-nav {
    display: flex;
    gap: 8px;
    padding: 10px 0;
    justify-content: center;
    width: 100%;
}

.veiw-all a {
    width: 93%;
    font-size: 20px;
    background: #F0F0F0;
    color: var(--theme-color);
}
/*============================STEP SECTION CSS===============================================*/
.bg-white.rounded-4.d-flex.justify-content-around.align-items-center.flex-wrap.gap-3.blur-box.mb-5 {
    padding: 30px;
    backdrop-filter: blur(80px);
    margin-top: -118px;
    box-shadow: 8px 8px 16px 0px #14224514;
    border: 1px solid #14141414;
}

img.single-star {
  width: 50px;

}
.google-review .d-flex.align-items-center.gap-4 div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.d-flex.align-items-center.gap-4 strong {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 120%;
  font-family: var(--secondary-font);
  color: var(--text-color);
}
img.google-review-img {
    width: 160px;
    height: auto;
    object-fit: cover;
}
img.start-img {
    width: 150px;
    height: auto;
}

h2.fw-bold {
    font-size: 2rem;
    line-height: 43px;
    color: var(--text-color);
}

h2.fw-bold span {
  color: var(--theme-color);
}

/* Our simple 4-step process for rent to own homes in Canada */
.step-number {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  padding-bottom: 15px;
  color: var(--theme-color);
}

.step-box {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 8px;
    height: 350px;
    display: inline-block;
    align-items: center;
    justify-content: center;
}

.step-box h6 {
    font-size: 1.3rem;
    line-height: 150%;

}
.step-box p.text-muted.small {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #737373 !important;
}

.btn-primary:hover {
  background-color: #a10000;
}

.btn-primary:hover {
  background-color: #a10000;
}

/* <!------------------- Find Rent To Own House In Alberta Setion ---------------> */

.bg-dark-blue {
  background-color: var(--background-color) !important;
  color: white;
  padding: 60px 0;

}
section.bg-dark-blue.text-center.max-hight-set {
    height: 1260px;
}
.bg-dark-blue .col-md-4.info-box {
  /* padding: 24px; */
  border-radius: 8px;
}

.bg-dark-blue .info-box h5 {
  font-size: 1.3rem;
  line-height: 150%;
  color: var(--gold-color);
  max-width: max-content;
  max-height: max-content;
  margin: 0px auto;
  padding: 20px 0px;
}

.bg-dark-blue h2.fw-bold.mb-5 {
  color: var(--white-color);
}

.bg-dark-blue .col-md-4.info-box .icon.mb-2 {
  width: 80px;
  height: 80px;
  margin: 0px auto;
}

.bg-dark-blue .info-box p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white-color);
  line-height: 28px;
}

.bg-white.p-4.p-md-5.rounded.shadow.text-center {

  width: 75%;
  border-radius: 24px !important;
  border: 1px solid #14141414;
  margin-top: -270px !important;
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  padding: 40px !important;
}

p.text-muted {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  color: var(--text-color) !important;
}

.form-section form {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 24px;
  border-radius: 16px;
}

.form-control,
.form-check-input {
  border-radius: 0.375rem;
}

.form-section form label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 20px;
  color: #525252;
}

.form-control,
.form-check-input {
  border-radius: 4px;
  padding: 12px 16px;
  border: 0.5px solid #c2c2c2;
}

.form-control:focus {
  border: 1px solid #00737c !important;
  box-shadow: none !important;
}

span.input-group-text {
  background: transparent;
  border: none;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
}

.form-check-input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  padding: 0px;
  border: 1px solid #14141452;
  margin-right: 10px;
}

.form-section button.btn.btn-danger.w-100.fw-bold {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  line-height: 20px;
  color: #fcfcfc;
}

/*  ========================Rent To Own Homes Succeses ==================================  */
.Rent-to-Own {
  display: grid;
  align-items: center;
  gap: 30px !important;
  padding: 40px 15px;
}

.Rent-to-Own .custom-container.my-5 {
  margin: 0px auto !important;
  width: 100%;
  padding: 0;
}

.highlight {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 150%;
  color: var(--theme-color);
}

.quote-text {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
}

.Rent-to-Own.custom-container p strong {
  font-size: 1.3rem !important;
  font-weight: 600;
  line-height: 28px;
  color: var(--text-color);
}

.Rent-to-Own a.btn.btn-danger {

  line-height: 24px !important;
}

.video-placeholder iframe {
  border-radius: 12px;

}

.col-md-6.flex-end {
  display: flex;
  justify-content: flex-end;
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}

.carousel-indicators {
  bottom: -62px !important;
}

.carousel-indicators button.active {
  background-color: #cc3a32;
  /* your theme color */
}

/* ======================== Our Track Record Speaks For Section  Css ==================================  */

.bg-dark-blue.text-center.height {
  display: grid;
  padding: 40px 15px;

}

.bg-dark-blue.text-center.height .custom-container {
  width: 100%;
}

.stats-number {
  color: var(--gold-color);
  font-size: 3rem;
  font-weight: 700;
  line-height: 150%;
}

/* .border-column {
  border-right: 1px solid #ccc;
} */
 .border-column {

    padding-right: 15px;
  position: relative;
}

.border-column::before {
 content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(
    270deg,
    rgba(20, 34, 69, 0.8) -12.02%,
    rgba(255, 175, 2, 0.8) 52.33%,
    rgba(20, 34, 69, 0.8) 116.67%
  );
}


p.mt-3 {
  font-size: 1rem !important;
  line-height: 1.9em;
  font-weight: 400;
  font-family: "Inter";
}

/* ===========Start Your Journey With Rent Section Css ==============================  */
.calc-section {
  background-color: #f9f9f9;
  padding: 60px 15px;
}

.uper.section {
    width: 100%;
    max-width: 1200px;
    padding: 0px 15px;
}
.overflow-hidden .col-12.col-lg-6 {
    padding: 0px !important;
}
.calc-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

h2.fw-bold.mb-5.text-center.theme-color {
    color: var(--theme-color);
    margin-bottom: 20px !important;
}
.calc-section p.text-center.mb-4 {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  color: var(--text-color);
}

.calc-box h5.text-center.fw-bold.mb-4 {
  font-size: 1.7rem;
  line-height: 120%;
}


.calc-section label.form-label.fw-semibold {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  line-height: 24px;
  font-weight: 600 !important;
}

p.small-size {
  font-size: 1.125rem !important;
  line-height: 20px;
}

.form-select {
  border-radius: 4px !important;
  padding: 12px 16px !important;
  border: 0.5px solid #c2c2c2 !important;
  text-wrap: wrap;
  width: 100%;
  white-space: normal;
}
.form-select option{
  font-size: 14px;
}

.form-select:focus {
  border: 1px solid #00737c !important;
  box-shadow: none !important;
}

.value-box {
  height: 275px;
  padding: 20px;
  border-radius: 4px;
  background-color: #ebf1fc;
  display: grid;
}

.value-start {
  background-color: #ebf1fc;
}
.fw-medium {
    font-size: 1rem !important;
    font-weight: 500 !important;
}
.value-monthly {
  background-color: #ecf8ef;
}

.value-buy {
  background-color: #fbf4eb;
}

.label-title h4 {
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 28px;
  vertical-align: middle;
  font-variant: var(--main-font);
}

.value-start .label-title h4 {
  color: #2552d0;
}

.value-monthly .label-title h4 {
  color: #128a3d;
}

.value-buy .label-title h4 {
  color: #ffaf02;
}

.label-title p {
  font-size: 1.125rem !important;
  color: var(--text-color);
}

.value-amount {
  font-size: 2rem;
  font-weight: 800;
  line-height: 40px;
}

/* ===========  Canadian House Partners Section ==============================  */
.section-map {
  padding: 40px 0;

}
.section-map .col-md-6 {
    padding: 0px 10px !important;
}
.section-map h6 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
  color: var(--white-color);
}

.map-container iframe {
  width: 100%;
  height: 590px;

}

.province-btn {
    text-align: left;
    margin-bottom: 15px;
    transition: 0.3s ease;
    backdrop-filter: blur(400px);
    background: #ffffff14;
    width: 100%;
    gap: 10px;
    border-radius: 8px;
    border-width: 1px;
    padding: 10px;
    border: 1px solid #ffffff14;
    font-size: 1rem;
    font-weight: 700;
    line-height: 18px;
    vertical-align: middle;
    display: grid;
    color: var(--white-color);
    min-height: 97px;

    /* Anchor specific adjustments */
    text-decoration: none;
}

.province-btn:hover {
    text-decoration: none; /* ensures underline doesn't show on hover */
    background-color: #ffffff22; /* optional: light hover effect */
}

.province-btn small {
  font-size: 1rem;
  font-weight: 400;
  line-height: 30px;
  color: var(--white-color);
}

/*============ Rent To Own FAQ Section============ */
.faq-section {
  padding: 60px 0;
  background-color: #fff;
  color: #000;

}
.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-button .icon-toggle {
  margin-left: auto;
  margin-right: 0;
  font-size: 18px;
  font-weight: bold;
}
.faq-section .accordion-item {
  border: none !important;
  margin-bottom: 15px;
}

.faq-section .accordion-body {
  background: #fafafa;
  border: 1px solid #1a1a1a14;
  padding: 16px 24px;
}


.faq-section .accordion-button:focus {
  border: none;
  box-shadow: none;
}

button.accordion-button.collapsed.bg-transparent.text-white.d-flex.justify-content-between.align-items-center {
    color: #fff !important;
}


.faq-title {
  font-weight: bold;
  font-size: 1.75rem;
  margin-bottom: 40px;
}
.all-artiacl img {
    width: 18px;
}
.accordion-button img {
    width: 18px;
}
.accordion-button {
    line-height: 60px;
    padding: 0px;
    background: #fff;
    font-size: 16px;
    font-weight: 500 !important;
    color: var(--text-color);
}
.accordion-body strong {
  font-weight: 600;
  font-size: 17px;
  vertical-align: middle;
  color: var(--text-color);
}

.accordion-body p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.faq-bottom-text {
  font-size: 1rem;
  margin-top: 30px;
  line-height: 150%;
  font-weight: 400;
  color: #1a1a1a;
}

  /* .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #000;
  } */

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button.collapsed::after {
  transform: rotate(180deg);
}

.accordion-button::after {
  display: none !important;
}


.icon-toggle::before {
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-color);
  transition: 0.3s ease;
}

.accordion-button:not(.collapsed) .icon-toggle::before {
  content: '−';
  color: var(--text-color);
}
  .accordion-button:not(.collapsed){
  color: var(--text-color) !important;
}
/*============perfred partner logo================*/
section.container-width.faq-section.according-border.bg-dark-blue.h-auto.w-100.px-3.p-4 .accordion-button:not(.collapsed) {
    color: #fff !important;
}
.img-logo-dif {
  width: 90px;
}
.set-max-width {
    margin: 0px auto;
    max-width: 80%;
}
.p-logo-img {
  max-width: 150px;
  height: auto;
}

.row.custum-css {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 30px !important;
}
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
    border: 1px solid #1414143D;
    background: #fff !important;
}
/* Blog Section Css  */

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
  height: auto !important;
  padding: 8px !important;
  box-shadow: 0px 8px 16px 0px #cc3a320a !important;
  border: 1px solid #14141414 !important;
  max-width: 100% !important;
  margin: 0px !important;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.card-body h6 {
  font-size: 1.375rem;
  line-height: 150%;
  color: var(--text-color);
}

.card-body p {
  font-size: 1.0625rem;
  line-height: 150%;
  font-weight: 400;
  color: #525252 !important;
}
.blog-card .text-muted {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 2);
    line-height: 1.5em;
}
.blog-card h6.fw-bold {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 2);
    line-height: 1.5em;
}
.learn-more {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 24px;
  color: var(--theme-color);
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.learn-more::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  /* optional spacing */
}

/*========= Google Review Section Css =========*/

section.review-section .big-overlay {
  background: #142245;

}
.col-12.col-lg-6.text-white.p-5.d-flex.flex-column.justify-content-center.big-overlay {
    padding: 20px !important;
}
.right-section {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 37.26%, #142245 100%),
    url('../images/review.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.overflow-hidden .right-section.d-flex.align-items-center.p-5.h-100.text-white {
    padding: 40px 20px !important;
}
.shadow-lg p.fs-3.fw-bold.mb-4 {
  font-size: 24px !important;
  line-height: 128%;
}

.language-tag {
  color: var(--white-color);
  background: #FFFFFF29;
  font-weight: 500;
  font-size: 18px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(74.53416442871094px);
  border-radius: 8px;

}

.shadow-lg p.fs-5.text-white {
  font-size: 14px !important;
  font-weight: 600;
  line-height: 150% !important;
  line-height: 48px;
}

.shadow-lg .small-font {
  font-size: 23px;
  line-height: 48px;
}

.big-font {
  font-size: 30px;

}

.language-tag img {
  border-radius: 3px;
}

.arrow-text {
  font-size: 2rem;
  color: var(--white-color);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

section.review-section p.text-white-50.mb-4.text-white {
  color: var(--white-color) !important;
}


a.text-decoration {
    text-decoration: none;
}
/* ===========Footer Css================== */

.footer {
  background-color: #0d1c3d;
  color: white;
  padding: 50px 0 20px 0;
  font-size: 0.95rem;
}
footer img.mb-3 {
    width: 150px;
}
.footer ul.list-unstyled.mt-2 {
    background: transparent;
    padding: 0px !important;
    border: none;
}
.footer .footer-title {
  color: var(--gold-color);
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 1px solid #fcb900;
  display: inline-block;
  padding-bottom: 5px;
  font-size: 1.2rem;
  line-height: 28px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .social-icons i {
  font-size: 1.1rem;
  margin-right: 12px;
  color: var(--white-color);
  transition: 0.3s;
}

.footer .social-icons i:hover {
  color: var(--gold-color);
}

.footer .copy {
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  color: #fcfcfc;
  font-size: 1rem;
  font-weight: 500;
  line-height: 280%;

}
footer i {
    font-size: 22px;
    width: max-content;
    display: inline-block;
}
.social-icons i {
    font-size: 22px;
}
.search-box {
  border-radius: 48px;
  overflow: hidden;
  background-color: var(--white-color);
  display: flex;
  align-items: center;

  padding: 4px 4px 4px 16px;
  justify-content: space-between;
  box-shadow: 0px 4px 16px 0px #1e387b14;
}

.search-box input {
  border: none;
  outline: none;
  box-shadow: none;
}

.search-icon {
  background-color: #1a274b;
  padding: 10px 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon i {
  color: white;
}

.search-icon {
  background-color: #1a274b;
  padding: 10px 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
      width: 35px;
    height: 35px;
}

.search-icon i {
  color: var(--white-color);
}

p.mb-1.fw-semibold {
  padding-top: 30px;
}

.fw-semibold {
  font-weight: 700 !important;
  padding-top: 13px;
  padding-bottom: 6px;
  font-size: 16px;
}

p.mb-1 {
  font-size: 1rem;
  font-weight: 400;
}

p.mt-3.mb-1 {
  font-size: 1rem;
  font-weight: 700;
}

ul.list-unstyled.mt-2 li {
  margin-bottom: 13px;
}
i.bi.bi-search {
    font-size: 14px;
}
ul.list-unstyled.mt-2 li a {
  font-size: 1rem;
  font-weight: 600;
  line-height: 280%;
  color: #fcfcfc;
}

/* How it Works Page Css */

/* Banner Section */
.hero-content span.badge.mb-3.px-3.py-2.rounded-pill.fw-semibold {
  background: #cc3a321f;
  color: var(--theme-color);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 38px !important;
  line-height: 24px;
}



.set-height .hero-content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-content p.color-change {
  color: var(--text-color);
}

.hero-content p span {
  color: var(--theme-color) !important;
}

section.py-5.text-center.text-dark.set-height.ps-3 .hero-content {
  padding: 0px;
}

/* .video-wrapper {
  border: 1px solid #191b2214;
  height: 724px;
  width: 100%;
  padding: 40px 180px;
  box-shadow: 0px 4px 16px 0px #00000014 !important;
  background: #14141414;
  border-radius: 24px !important;
} */

/* Our Program Works */

/* .step-number-wrapper::after {
  content: '';
  position: absolute;
  top: 100px;
  left: 19%;
  transform: translateX(-50%);
  width: 2px;
  height: 160px;
  background-image: linear-gradient(to bottom, #e63946 33%, rgba(0,0,0,0) 0%);
  background-position: top;
  background-size: 2px 10px;
  background-repeat: repeat-y;
} */
.box-shadow {
  background: #fafafa;
  border-radius: 16px;
}

.timeline-step {
  position: relative;
  gap: 80px;
  padding: 40px 80px;
  height: 229px;
}

.step-number-border {
  color: var(--white-color);
  width: 50px;
  height: 48px;
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
  background-color: var(--theme-color);
  border-radius: 60px;
}

.timeline-text h5 {
  color: var(--text-color);
  margin-bottom: 8px;
  font-size: 1.375rem;
  line-height: 150%;
}

.timeline-text p {
  color: #525252;
  font-size: 1.125rem;
  margin-bottom: 0;
  line-height: 150%;
  font-weight: 400;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 60px;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.375rem;
  z-index: 999;
  position: relative;
}

/* Why Canadian House Partners for Rent to Own Programs section css */
section.bg-dark-blue.text-white.py-5.height-auto {
  height: auto !important;
}

.benefit-box {
  border-radius: 10px !important;
  padding: 25px !important;
  height: 100% !important;
  transition: all 0.3s ease-in-out;
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  backdrop-filter: blur(4px);
}

.benefit-box:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 40px;
  color: #f6a400;
  margin-bottom: 15px;
}

.benefit-title {
  color: #f6a400;
  font-weight: bold;
  font-size: 18px;
}

.benefit-text {
  color: #ddd;
  font-size: 15px;
}

/* Ready To Your Journey With Us */

.cta-section .hero-content h2 span {
  color: var(--text-color);
}

.cta-section p {
  max-width: 100%;
}

.cta-section {
  background: #ffffff;
}

.equal-width-btn {
  min-width: 300px;
  /* same width for both buttons */
  text-align: center;
}

/* Faq Section */
.according-border .accordion-header {
  border: 1px solid #14141414;
  border-left: none;
  border-right: none;
  margin-bottom: 15px;
  padding: 2rem 0px;
}

/*=========================FAQs CSS START========================================*/



.faq-h-cent-sidebar {
  border-radius: 8px;
}

.faq-h-cent-sidebar-item {
  display: flex;
  align-items: center;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
}

.faq-h-cent-sidebar-item:hover {
  background-color: #e9ecef;
  color: #333;
  text-decoration: none;
}

.faq-h-cent-sidebar-item-active .faq-h-cent-sidebar-text {
  color: var(--white-color);
  font-weight: 700;
}

.faq-h-cent-sidebar-item-active {
  display: flex;
  align-items: center;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: var(--theme-color);
  color: var(--white-color) !important;
}

.faq-h-cent-sidebar-item-active:hover {
  background-color: #c82333;
  color: white;
  text-decoration: none;
}

.faq-h-cent-sidebar-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: #191B22;
}

.faq-h-cent-sidebar-item-active .faq-h-cent-sidebar-icon {
  color: var(--white-color);
}

.faq-h-cent-sidebar-text {
  flex: 1;
  font-size: 18px;
  font-weight: 400;
  color: #191B22;
}
section.faq-help-center.py-5 .faq-h-cent-faq-item {
    padding: 10px 0px !important;
}
.faq-h-cent-sidebar-count {
  background-color: #191B2214;
  color: var(--text-color);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.faq-h-cent-sidebar-count-active {
  background-color: var(--white-color);
  color: var(--theme-color);
  border-radius: 40px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.faq-h-cent-content-area {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
}

.faq-h-cent-content-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 8px;
  line-height: 40px;
}

.faq-h-cent-content-subtitle {
  color: #525252;
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 150%;
}

.faq-h-cent-faq-item {
  overflow: hidden;
  border: 1px solid #14141414;
  border-left: none;
  border-right: none;
  margin-bottom: 15px;
  padding: 2rem 0px;
  background: transparent;
}

.faq-h-cent-faq-question {
  padding: 16px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  font-size: 16px;
  transition: background-color 0.3s ease;
}





.faq-h-cent-faq-toggle {
  color: #6c757d;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-h-cent-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: white;
}

.faq-h-cent-faq-answer-show {
  padding: 12px;
  max-height: 1000px;
  overflow: hidden;
  border: 1px solid #1A1A1A14;
  background: #FAFAFA;
}


.faq-h-cent-faq-answer-content p {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
}

.faq-h-cent-faq-steps {
  margin: 15px 0;
}

.faq-h-cent-faq-steps li {
  margin-bottom: 8px;
  color: #555;
}

.faq-h-cent-tab-content {
  display: none;
}

.faq-h-cent-tab-content-active {
  display: block;
}

.faq-h-cent-topics-title {
  margin-bottom: 15px;
  color: var(--text-color);
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
}

.faq-h-cent-row {
  display: flex;
  gap: 30px;
  padding: 30px 0;
}

.faq-h-cent-col-sidebar {
  flex: 0 0 504px;
  position: sticky;
  top: 50px;
  height: fit-content;
}

.faq-h-cent-col-content {
  flex: 1;
}

/*=============================SUCCESS STORIES PAGE CSS START========================================*/

/*====================START SLIDER CSS =============*/
.success-slide {
  padding: 50px 0;
}

.success-slide .container {
  max-width: 100%;
  padding: 0;
}

.success-swiper-container {
  padding-bottom: 40px;
  overflow: hidden !important;
}

.success-swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.success-swiper-slide {
  background: var(--white-color);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 20px 20px 0px 20px;
}

.success-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.success-content {
  text-align: center;
  padding: 15px;
}

.success-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.success-location {
  color: #666;
  font-size: 0.9rem;
}

.success-swiper-pagination .swiper-pagination-bullet {
  background-color: red;
  opacity: 1;
}

.success-swiper-pagination .swiper-pagination-bullet-active {
  background-color: red;
}

/*====================END SLIDER CSS================*/

a.btn.btn-danger.bg-gold {
  background-color: #e7aa3d;
}

p.highlight.color-gold {
  color: var(--gold-color);
}

.video-placeholder.bg-change {
  background: #ffffff3d;
}

.Rating-top {
  margin-top: -172px !important;
}

/*=============================START DREAM STORIES SECTION CSS ======================*/


.dream-slide img{
  width: 100%;
}

.dream-wrapper {
  display: flex !important;
}

.dream-wrapper {
  display: flex;
  gap: 32px;
}

.dream-card {
  transition: all 0.3s ease-in-out;
}

.dream-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

a.btn.btn-danger.btn-sm.mt-3.px-4.rounded-pill {
  display: flex;
  text-align: center !important;
  border-radius: 10px !important;
}

/*========END DREAM STORIES SECTION CSS ===========*/

/*==============================SUCCESS STORIES PAGE CSS END===========================================*/

/* =========================Sign Up  Page Css=================== */

.custom-card {
  display: flex;
  align-items: center;
  box-shadow: 0px 4px 16px 0px #cc3a320a;
  padding: 16px 18px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1.5px solid #14141414;
  transition: 0.3s ease;
  background: var(--white-color);
  gap: 18px;
}

.custom-text {
  text-align: left;
}

.custom-card:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.custom-icon {
  background: #cc3a3214;
  color: var(--theme-color);
  font-size: 24px;
  border-radius: 10px;
  padding: 10px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}
 .bg-white a {
    text-decoration: none;
}

.card h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: var(--text-color);
}
.card.blog-card {
    height: 500px;
}
.custom-text small {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
}

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

/*====================== Sign Up Form  Page Css =========================================*/
.card {
  max-width: 816px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 15px;
  background: #fafafa;
  border: 1px solid #14141414;
  box-shadow: 0px 4px 16px 0px #cc3a3214;
  width: 100%;
}

.card p.small-text.mb-4 {
  font-size: 20px;
  color: var(--text-color);
}

.card label {
  font-weight: 500 !important;
}

.card label a {
  text-decoration: none;
  font-size: 18px;
  line-height: 24px;
  color: var(--theme-color);
}

.btn-login {
  background: #cc3a3266;
  color: var(--white-color);
}

.btn-login:hover {
  background-color: var(--theme-color);
  color: var(--white-color) !important;
}

.form-control:focus {
  box-shadow: none;
  border-color: #e57373;
}

.card p.small-text {
  font-size: 20px;
  line-height: 24px;
  color: var(--text-color);
}

.card p.small-text a {
  text-decoration: underline;
  color: var(--theme-color);
}



/* ===================Browse Home Dropdown Css ============ */


.dropdown-menu.custom-mega-menu {
  width: 65% !important;
  overflow-y: auto;
  margin: 0px auto;
  left: 24% !important;
  padding: 10px !important;
}

.padding-top {
  padding: 12px;
  border-radius: 8px;

}

.custom-mega-menu .btn:focus {
  box-shadow: none;
}

.custom-mega-menu ul li {
  padding: 3px 0;
}

.custom-mega-menu .collapse {
  transition: all 0.3s ease;
}

.dropdown-menu.custom-mega-menu.border-0.p-4.shadow-lg.mt-0.w-100.show .location {
  background: #fff;
  color: #000;
  border: none;
  font-size: 16px;
    font-weight: 500 !important;
}
.padding-top img {
    width: 18px;
}
.browse-dropdown h5.fw-bold {
  font-size: 21px;
  line-height: 32px;
}

.browse-dropdown p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}




/* Rent To Own Popup  */


.articles.d-flex.align-items-center.gap-3 {
  padding: 16px;
}

.articles.d-flex.align-items-center.gap-3 h3 {
  font-size: 20px;
  color: var(--text-color);
  font-weight: 700;
  line-height: 28px;
  margin: 0px !important;
}
.accordion-button {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}



.accordion-button:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.accordion-button::after {
  display: none !important;
}
ul.list-unstyled.ps-3{
  padding: 0px !important;
}
ul.list-unstyled {
    padding: 20px !important;
    background: #e4e1e1;
    border-radius: 12px;
}
.collapse ul.list-unstyled.ps-3.pt-2 {
    padding: 20px !important;
    margin-top: 10px;
}
a.text-color{
  color: var(--text-color);
  text-decoration: none;
}

ul.list-unstyled li a{
  color: var(--text-color);
  text-decoration: none;
}

/* Pertner DropDown Css */

.font-size-set {
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 500 !important;
    text-decoration: none;
    border-bottom: none !important;
}
.font-size-set:hover{
  background-color: transparent !important;
}

.custum-design{
  background-color: var(--theme-color);
}
.custum-design h5{
  font-size: 21px;
line-height: 32px;
}
.custum-design p{
  font-size: 16px;
  line-height: 24px;
}
.custum-design{
  box-shadow: 0px 4px 16px 0px #1414140A;
background: var(--theme-color);
border-radius: 12px;
padding: 24px;

}

.custum-design a{
  background: #FFFFFF;
color: var(--theme-color);
}
.custum-design a:hover{
  background-color:#FFFFFF;
  color: var(--theme-color);
}

/*=================== Calculator Css =======================================*/

.form-control,
.form-check-input::placeholder {
  font-size: 16px !important;
  color: #191B22CC;
  line-height: 24px;
  font-weight: 400;
}
section.container-width.faq-section.according-border.bg-dark-blue.h-auto.w-100.px-3.p-4 {
    max-width: 100%;
}
input.form-control.border-0.text-end {
  background: #FFFFFF;
  border: 1px solid #dedede !important;
}

.max-width {
  max-width: 1400px;
  margin: 0px auto;
}

.max-width .accordion-item {
  border-bottom: 1px solid #FFFFFF29 !important;
}

.max-width .accordion-body {
  background: #FAFAFA14;
  border: 1px solid #FFFFFF29;
  color: var(--white-color) !important;

}


.tab-btn.active {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-weight: 700;


}

.tab-btn {
  box-shadow: 0px 4px 16px 0px #14141414;
  padding: 12px 8px;
  width: 503px;
  border: none;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  border-radius: 8px;

}

.main-box-shadow .text-center.mb-4 {
  background: #F9F9FB;
  width: max-content;
  padding: 8px;
  border-radius: 12px;
  margin: 0px auto;
}

.main-box-shadow {
  border: 1px solid #191B2214;
  box-shadow: 0px 4px 16px 0px #00000014;
  background: var(--white-color);
  padding: 24px !important;
  border-radius: 24px;

}

.form-box {
  border: 1px solid #1414141F;
  background-color: var(--white-color);
  border-radius: 12px;
  padding: 40px 24px;
}

.form-box h4 {
  font-size: 25px;
  line-height: 40px;
  font-weight: 700;
  color: #191B22;

}

.custom-icon.mobile {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  margin: 0px auto;
  line-height: 150%;
  font-weight: 600;
}

.main-box-shadow .bg-light-color {
  background: #CC3A320A;
  border: 1px solid #CC3A3214;
  padding: 24px;
  border-radius: 8px;
  text-align: left;
}

.main-box-shadow .text-center h5.fw-bold {
  font-size: 25px;

  line-height: 40px;
  color: #191B22;

}

.main-box-shadow .text-center p.text-color {
  font-size: 18px;
  color: var(--theme-color);
  line-height: 24px;
}

.main-box-shadow .bg-light-color .fw-bold {
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
}
label.form-label.fw-bold.big-size {
    font-weight: 600 !important;
}
.main-box-shadow .bg-light-color .mb-3 {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
}
.form-box  a {
    text-decoration: none;
}
.main-box-shadow .bg-light-color .mb-3 span {
  color: var(--theme-color);
  font-weight: 600;
}

.main-box-shadow .bg-light-color .change-bg {
  background-color: var(--white-color);
  border: 1px solid #CC3A321F;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 16px;
  color: #191B22;

}


.main-box-shadow .d-flex.gap-2.flex-wrap span {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: #191B22CC !important;
  background: #191B2214;
  padding: 8px 16px;
  border-radius: 40px !important;

}

.main-box-shadow .span-bg span {
  background-color: transparent !important;
  padding: 0px !important;
}

.form-box h3.text-danger {
  font-size: 35px;
  font-weight: 800;
  line-height: 48px;
  color: var(--theme-color) !important;
}

.form-box span.fw-semibold {
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.form-box .p-3.rounded.bg-light.border-danger-subtle.mb-3 {
  background: #CC3A320A;
}

.form-box .text-start {
  font-size: 24px;
  line-height: 32px;
  color: #191B22CC;

}

.form-box .d-flex.justify-content-between {
  padding: 5px 0px;
}

.form-box .d-flex span:nth-child(2) {
  color: var(--text-color);
  line-height: 150%;
  font-size: 18px;
  padding: 0px;
}

.form-box .d-flex span:nth-child(1) {
  font-size: 18px;
  font-weight: 500;

}

.form-box .mb-4 button.btn.btn-danger.w-100.my-3 {
  background: #0F9D58;
}

button.btn.btn-success.w-100.mt-auto.d-flex.align-items-center.justify-content-center.gap-2 {
  background: #0F9D58 !important;
}

/*====================================BLOG PAGE START======================================*/

/*SEARCH INTERFACE*/

.blog-search-container {
  max-width: 817px;
  margin: 50px auto;
}

.blog-search-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.blog-search-input {
  width: 100%;
  padding: 12px 12px 12px 24px;
  font-size: 18px;
  border-radius: 40px;
  outline: none;
  color: var(--text-color);
  border: 1px solid #191B221F;
  box-shadow: 0px 6px 15px 0px #404F680D;
  background-color: var(--white-color);
  line-height: 24px;
}

.blog-search-input::placeholder {
  color: #666;
}

.blog-search-input:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.blog-search-button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background-color: var(--theme-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.blog-search-button:hover {
  background-color: #c0392b;
}

.blog-search-icon {
  width: 22px;
  height: 22px;
  fill: var(--white-color);
}

.blog-popular-searches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-popular-label {
  font-size: 18px;
  color: var(--text-color);
  margin-right: 8px;
}

.blog-popular-link {
  color: var(--theme-color);
  font-size: 16px;
  transition: color 0.2s;
  font-weight: 400;
  line-height: 20px;
}

.blog-popular-link:hover {
  color: var(--theme-color);
  text-decoration: underline;
}


/*END SEARCH INTERFACE*/


/*=======blog section*/

.bg-transperant {
  background: linear-gradient(180deg, #f5fbff 0%, #fff3f3 100%);
}


.blog-tab-container {
  position: relative;
  margin-bottom: 30px;
}

.blog-tab-scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blog-tab-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.blog-tab-nav {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  min-width: max-content;
}

.blog-tab-item {
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #1A1A1A14;
  box-shadow: 0px 4px 16px 0px #1A1A1A14;
  border-radius: 56px;
  padding: 16px 24px;
  cursor: pointer;
  background-color: var(--white-color);
}

.blog-tab-item:hover {
  background: #e9ecef;
  color: #495057;
  text-decoration: none;
}
.blog-card .card-body {
    text-align: left;
}
.blog-tab-item.active {
  background: var(--theme-color);
  color: var(--white-color) !important;


}

.blog-tab-content {
  text-align: left;
  display: none;
}

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

.blog-tab-heading {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--text-color) !important;
  line-height: 40px;
  margin-bottom: 25px;
}

.blog-tab-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-tab-card:hover {
  transform: translateY(-5px);
}

.blog-tab-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-tab-card-body {
  padding: 20px;
  text-align: left;
}

.blog-tab-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 12px;
  line-height: 1.3;
}

p.blog-tab-card-text {
  font-size: 1.1rem;
  line-height: 1.5em;
  margin-bottom: 30px;
  max-width: 1138px;
  font-family: var(--main-font);
  color: #000 !important;
}

.blog-tab-card-link {
  color: #dc3545;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-tab-card-link:hover {
  color: #b02a37;
  text-decoration: none;
}

.blog-tab-card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.blog-tab-card-link:hover::after {
  transform: translateX(3px);
}

.blog-tab-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 10px;
}

.blog-tab-pagination-btn {
  padding: 8px 12px;
  border: 1px solid #dee2e6;
  background: white;
  color: #6c757d;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-tab-pagination-btn:hover {
  background: #f8f9fa;
  color: #495057;
  text-decoration: none;
}

.blog-tab-pagination-btn.active {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
}

.blog-tab-pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/*blog section end*/


/*ready to start jurney*/

.blog-main .cta-section {
  background: transparent !important;
  /* margin-bottom: -160px; */
}

/*===========================SINGLE POST PAGE START===============================*/

/*single post section*/
.single-post-content {
  background: #FAFAFA;

}

.single-post-header {
  margin-bottom: 30px;
}

.single-post-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 120%;
  margin-bottom: 15px;
}

.single-post-meta {
  color: #525252;
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 150%;
}

.single-post-meta span {
  margin-right: 15px;
}

.single-post-featured-image {
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.single-post-recent-image {
  display: none;
}

.single-post-featured-image img {
  width: 100%;
  object-fit: cover;
}

.single-post-sold-badge {
  display: none;
}

.single-post-article-content {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.single-post-article-content p {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: var(--text-color);
}

.single-post-article-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
  margin: 35px 0 20px 0;
  line-height: 28px;
}

.single-post-article-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 30px 0 15px 0;
}

.single-post-article-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.single-post-article-content li {
  margin-bottom: 10px;
}

.single-post-sidebar {
  position: sticky;
  top: 50px;
  height: fit-content;
}

.single-post-sidebar-widget {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.single-post-sidebar-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 25px;
}

.custum-color {
  box-shadow: 0px 4px 16px 0px #1414140A;
  border: 1px solid #1414141F;
  background-color: var(--white-color);
  padding: 15px 0px;
  border-radius: 8px;
}

.single-post-recent-item {
  display: flex;
  gap: 15px;
  padding: 12px 24px;
  border-bottom: 1px solid #14141414;
  border-radius: 8px;
}

.single-post-recent-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.single-post-recent-image {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.single-post-recent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.single-post-recent-image:hover img {
  transform: scale(1.05);
}

.single-post-recent-content {
  flex: 1;
}

.single-post-recent-title {
  font-size: 14px;
  font-weight: 600;
  color: #212529;
  line-height: 1.4;
  margin-bottom: 8px;
}

.single-post-recent-title a {
  color: var(--theme-color);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
  line-height: 150%;
}

.single-post-recent-title a:hover {
  color: #000;
}

.single-post-recent-date {
  font-size: 16px;
  color: #525252;
  font-weight: 500;
  line-height: 20px;

}


/*==============================================================================*/


/* Why Canadian House Partners for Rent to Own Programs section */
.partner-left-content .benefit-box.text-center.p-4.h-100.rounded-3 {
  text-align: left !important;
}

.convert-partner .p-4.bg-white.rounded.shadow-sm.h-100 {
  border: 1px solid #0000000A;
  box-shadow: 0px 4px 12px 0px #1A1A1A0A;
  border-radius: 12px;
}

/*STRAT convert partner */

.convert-partner .custom-icon {
  margin: 0px auto;
}

.cp-left-section {
  padding-right: 40px;
}



.cp-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

.cp-benefits-section {
  padding-left: 20px;
}

.cp-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.cp-benefit-item:last-child {
  margin-bottom: 40px;
}

.cp-check-icon {
  width: 24px;
  height: 24px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cp-check-icon::after {
  content: '✓';
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.cp-benefit-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #141414;
  margin-bottom: 8px;
  line-height: 1.3;
}

.cp-benefit-content p {
  font-size: 18px;
  color: #525252;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}





.cp-cont .hero-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2em;
  color: var(--white-color);
  font-family: var(--secondary-font);
}

/*End convert section partner*/

/*tp testimonials sec css*/
.partner-testimonials {

  background: #f8f9fa;
}



.tp-testimonial-card {
  background: var(--white-color);
  padding: 24px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 12px 0px #1A1A1A0A;
  border: 1px solid #0000000A;
}

.tp-testimonial-content {
  flex: 1;
  margin-bottom: 20px;
}

.tp-quote-icon {
  font-size: 32px;
  color: #dc3545;
  margin-bottom: 15px;
  display: block;
  line-height: 1;
}

.tp-testimonial-text {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 0px !important;
  font-weight: 400;
}

.tp-author-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.tp-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tp-author-info {
  flex: 1;
}

.tp-author-name {
  font-size: 18px;
  font-weight: 600;
  color: #08110C;
  margin-bottom: 3px;
}

.tp-author-title {
  font-size: 16px;
  color: #313131;
  margin: 0;
}

.tp-rating img {
  width: 34%;
}

.tp-author-section img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

p.mb-2.font-size-small {
  font-size: 16px;
  line-height: 200%;
}

/*end tp testimonials css*/
.dropdown-menu.p-4.shadow-lg.border-0.start-0.show {
    padding: 20px !important;
}
section.custom-container.faq-section.according-border {
    max-width: 90%;
    margin: 0px auto;
}
