@font-face { font-family: helveticaneuemedium; src: url('../fonts/HelveticaNeueMedium.otf'); } 

html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #fff;
    overflow-x: hidden;
    color: #212529;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}
.btn{
    box-shadow: 0 2px 5px 0 #00000029, 0 2px 10px 0 #0000001f;
    padding: 14px 34px;
    transition: all 0.3s ease-in-out;
    margin: 6px;
    border: 0;
    border-radius: 2px;
    text-transform: uppercase;
    white-space: normal;
    word-wrap: break-word;
}
.btn:hover{
    box-shadow: 0 5px 11px 0 #0000002e, 0 4px 15px 0 #00000026;
    outline: 0;
    text-decoration: none;
}
.btn:focus{
    box-shadow: none;
}
:focus-visible {
    outline: 0;
}

.semibold{
    font-weight: 600;
}

.z-1{
    position: relative;
    z-index: 1;
}
.z-2{
    z-index: 2;
    position: relative;
}
.container, 
.container-fluid{
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

:root {
  --text-color: #212529;
  --apache: #deba6f;
  --pure-black: #000000;
  --gainsboro: #dcdcdc;
  --italy-ochre: #ba936c;
  --white: #FFFFFF;
  --day-glow: #e5c49c;
  --attractive-black: #222222;
  --transparent: #FFFFFF00;
  --tech-white: #f5f5f5;
  --sandpaper: #a87f3f;
  --vintage-umber: #855729;
  --grey: #efefef;
  --grey1: #e5e5e5;
  --rust-red: #c02b0a;
}


/*Header Top Bar*/
.header-topbar{
    background-color: var(--italy-ochre);
    color: var(--white);
    padding: 8px 0;
}

/*Header Middel Bar*/
.header-middelbar{
    background-color: var(--pure-black);
    padding: 4px 0 16px;
}
.navbar-brand{
    padding: 0px;
}
.logo{
    max-width: 180px;
    position: relative;
    z-index: 999;
}
.h-right-contact{
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}
.mobile-phone{
    height: 55px;
    margin-right: 15px;
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.mobile-phone:hover{
    color: var(--italy-ochre);
}
.mobile-phone svg path{
    transition: all 0.3s ease-in-out;
}
.mobile-phone:hover svg path{
    fill: var(--italy-ochre);
}

/*Header*/
.header-menu{
    background-color: var(--day-glow);
    z-index: 99;
    width: 100%;
    transition: all 0.2s ease-in-out;
    position: static;
    top: 0px;
    left: 0px;
    box-shadow: 0 2px 5px 0 #00000029, 0 2px 10px 0 #0000001f;
    height: 50px;
    margin-top: -50px;
    display: flex;
    align-items: center;
}
.header-menu.sticky-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    margin-top: 0px;
}
.navbar{
    padding: 0px !important;
    align-items: flex-start;
}
.navbar-nav{
    display: flex;
    align-items: center;
    gap: 0px;
}
.nav-link{
    display: block;
    transition: all 0.3s ease-in-out;
    color: var(--attractive-black);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px !important;
    background-color: transparent;
}
.nav-item .nav-link:hover, .nav-item .nav-link.active, .navbar-nav .nav-link.show {
    background-color: var(--italy-ochre);
    color: var(--white);
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}
.dropdown-menu{
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0px;
    margin: 0;
    text-align: left;
    list-style: none;
    background-color: var(--day-glow);
    background-clip: padding-box;
    border: 0px !important;
    border-radius: 0px;
    margin-top: 0px !important;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px;
    clear: both;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--attractive-black);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
}
.dropdown-item:focus, .dropdown-item:hover,  .dropdown-item.active {
    color: var(--white);
    background-color: var(--italy-ochre);
}
.h-support{
    font-size: 14px;
    opacity: 0.8;
}
.dropdown .dropdown-menu{
    overflow: hidden;
    border: 0px;
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    -ms-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}   

/* close */
.navbar-toggler{
    border: 0px;
    padding: 0px;
    float: right;
    outline: 0;
    border-width: 0;
    padding: 4px 12px;
    font-size: 22.5px;
    line-height: 1;
    background-color: transparent;
    border-radius: 4px;
    margin-left: auto;
}
.navbar-toggler .navbar-toggler-icon {
    font-size: 26px;
    cursor: pointer;
    color: #222;
}
.mobi-h-contact{
    display: none;
    background-color: var(--tech-white);
    padding: 16px 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}
.btn-brown.mobile-button{
    width: 275px;
    font-weight: 500;
}
.btn.btn-brown.mobile-btn{
    background-color: var(--day-glow);
    color: var(--pure-black);
}

/* Mobile Offcanvas */
.custom-offcanvas {
    position: fixed;
    top: 0;
    left: -330px; /* hidden */
    width: 330px;
    height: 100vh;
    background: var(--day-glow);
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}
.custom-offcanvas.active {
    left: 0;
}
.offcanvas-inner {
    height: 100%;
    overflow-y: auto;
    position: relative;
    padding-top: 50px;
}
.close-btn {
    font-size: 30px;
    background: none;
    padding: 0px;
    margin-bottom: 0px;
    cursor: pointer;
    border: 0px;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 55%;
    height: auto;
}
.offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: #00000080;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9998;
}
.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}


/*hero-sec*/
.hero-sec{
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}
.carousel-item{
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.carousel-item img{
    height: 100%;
    object-fit: cover;
}
.carousel-caption{
    background: #ffffffd9;
    padding: 40px 60px;
    border-radius: 4px;
    text-align: center;
    position: absolute;
    bottom: auto;
    right: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 80%;
}
.carousel-caption h2{
    font-size: 32px;
    color: var(--pure-black);
    margin-bottom: 20px;
    font-weight: 600;
}
.slide-btn{
    display: inline-block;
    padding: 12px 28px;
    background: var(--italy-ochre);
    color: var(--white); !important;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}
.slide-btn:hover{
    background-color: var(--sandpaper);
    color: var(--white);
}
.carousel-indicators{
    position: absolute;
    bottom: 15px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.carousel-indicators [data-bs-target]{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0px;
    background-color: var(--white);
    opacity: 0.65;
    border: 0;
    opacity: 1;
    transition: all 0.6s ease-in-out;
}
.carousel-indicators button:hover{
    background-color: var(--italy-ochre);
}
.carousel-indicators button.active{
    background-color: var(--italy-ochre);
    opacity: 1;
}
.carousel-control-next, .carousel-control-prev {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--white);
    border: 0;
    opacity: .75;
    transition: all 0.3s ease-in-out;
    top: 50%;
    transform: translateY(-50%);
}
.carousel-control-next:hover, .carousel-control-prev:hover{
    opacity: 1;
}
.carousel-control-next{
    right: 10px;
}
.carousel-control-prev{
    left: 10px;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 15px;
    height: 15px;
}
.carousel-control-next-icon{
    background-image: url(../../img/icons/chevron-right.svg);
}
.carousel-control-prev-icon{
    background-image: url(../../img/icons/chevron-left.svg);
}

/*Basement, Bathroom & Flooring Home Renovations Experts*/
.hero-title{
    font-size: 45px;
    font-weight: 600;
    color: var(--pure-black);
    margin-bottom: 16px;
    text-align: center;
}
.divider h1:after, .divider h2:after, .divider h3:after {
    content: "";
    display: block;
    background: var(--day-glow);
    width: 85px;
    height: 5px;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}
.hero-text{
    font-size: 22.5px;
    text-align: center;
}
.m-width{
    width: 74%;
    margin-left: auto;
    margin-right: auto;
}
.text-link{
    color: var(--italy-ochre);
    transition: all 0.3s ease-in-out;
}
.text-link:hover{
    color: var(--vintage-umber);
}
.title-h4{
    font-size: 25.2px;
    text-align: center;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    margin-bottom: 16px;
}

/*Home Remodeling Services*/
.hrs-sec{
    padding: 100px 70px;
    background-size: cover;
    background-position: center;
}
.hrs-box{
    background-color: #ffffffe6;
    padding: 100px;
}
.title{
    text-align: center;
    font-size: 36px;
    font-weight: 600;
}
.ul-checked{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ul-checked li{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.ul-checked li::before{
    content: '';
    min-width: 16px;
    height: 16px;
    background-image: url(../../img/icons/checkmark.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 5px;
}

/* Service area grid (4 columns, pin above town — matches mhlpropertymaintenance.com) */
.service-area-grid{
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.service-area-item{
    text-align: center;
    margin-bottom: 1.75rem;
}
.service-area-item:last-child{
    margin-bottom: 0;
}
.service-area-item .service-area-item__icon{
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--italy-ochre);
    margin-bottom: 0.45rem;
}
.service-area-item .service-area-item__name{
    color: #333;
    font-size: 1.25rem;
    line-height: 1.4;
}

/*Gallery Section*/
.btn.btn-brown.btn-yellow{
    background-color: var(--day-glow);
    color: var(--attractive-black);
}
.text-underline{
    text-decoration: underline;
}
.masonry-gallery {
  column-count: 3;
  column-gap: 10px;
  margin-bottom: 20px;
}
.gallery-item {
  display: block;
  margin-bottom: 10px;
  break-inside: avoid;
  border-radius: 0px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: all 0.3s ease-in-out;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.our-work-grid .sub-title {
  text-align: center;
  margin-bottom: 0.75rem;
  width: 100%;
}
.our-work-grid .gallery-item {
  margin-bottom: 0;
}
.our-work-grid .our-work-tile-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.our-work-grid .our-work-tile-aspect .gallery-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.our-work-grid .our-work-tile-aspect .gallery-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*Our Remodeling Process*/
.step-sec{
    padding: 35px 0 60px;
    background-color: var(--grey);
}
.step-box{
    background-color: var(--white);
    border-radius: 4px;
    word-wrap: break-word;
    box-shadow: 0 2px 5px 0 #00000029, 0 2px 10px 0 #0000001f;
    width: 100%;
    padding: 0 48px;
}
.stp-number{
    display: inline-block;
    margin: 0 auto 0 auto;
    height: 70px;
    width: 110px;
    background: var(--day-glow);
    color: var(--attractive-black);
    position: relative;
    top: -35px;
    font-weight: 800;
    font-size: 50px;
    font-family: "Merriweather", serif;
    line-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-title{
    font-size: 30.6px;
    font-weight: 600;
    color: var(--pure-black);
    text-align: center;
}

/*Customer Testimonials*/
.review-sec{
    width: 100%;
}
.review-box{
    min-height: 200px;
    padding: 16px;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.review-star-sec{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 3px;
}
.owl-carousel .owl-item img{
    width: auto;
}
.review-star-sec img{
    width: 40px !important;
}
.user-profile{
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 2px;
}
.user-profile img{
    width: 22px !important;
}
.bg-italy-ochre{
    background-color: var(--italy-ochre);
}
.btn.btn-brown.btn-white{
    background-color: #fff !important;
    color: #333 !important;
}
.bg-grey{
    background-color: var(--grey);
    width: 100%;
    height: 100%;
}
.image-box-text{
    padding: 80px 90px 80px 40px !important;
    width: 100%;
}
.title.text-lg-start::after{
    margin-left: 0px;
}
.image-box{
    background-size: cover;
    background-position: center;
    height: 100%;
}
.image-box img{
    height: 100%;
    object-fit: cover;
}
.image-box-text.max-width{
    max-width: 585px;
}
.image-box-text.max-width.f-left{
    float: left;
    padding: 80px 40px 80px 90px !important;
}
.image-box-text.max-width.f-right{
    float: right;
}

/*Contact Form*/
.contact-sec{
    padding-bottom: 32px;
}
.text-red{
    color: var(--rust-red);
}
.form-label{
    font-size: 16px;
}
.sub-label{
    font-size: 15px;
    padding-top: 5px;
    margin-bottom: 8px;
}
.form-control, 
.form-select{
    font-size: 15px;
    padding: 8px;
    color: #495057;
    border-radius: 4px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease-in-out;
}
textarea.form-control{
    height: auto;
}
.cust-btn-width{
    min-width: 350px;
    margin: 0 auto 8px;
}
.bg-grey1{
    background-color: var(--grey1);
}


/*Bar Installer Page*/
.accordion-item{
    border: 1px solid #9e9e9e !important;
    border-radius: 4px !important;
    overflow: hidden;
}
.accordion-button{
    background-color: var(--italy-ochre) !important;
    color: var(--white) !important;
    padding: 20px;
    border: none;
    border-radius: 0px !important;
    margin: 0 0 2px 0;
    font-size: 22px;
    line-height: 25px;
    font-weight: 600;
    text-transform: uppercase;
    align-items: flex-start;
    gap: 20px;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-body{
    padding: 20px;
}
.accordion-button::after, 
.accordion-button:not(.collapsed)::after{
    background-image: url(../../img/icons/chevron-down.svg);
}
.accordion-button::after{
    margin-top: 5px;
}
.date-sec{
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: 30%;
}
.date-sec .flex-1{
    flex: 1;
}
.form-check-label{
    font-size: 15px;
}
.form-check-input[type=checkbox] {
    border-radius: 0px;
    width: 16px;
    height: 16px;
    margin-top: 7px;
}
.form-check-input:focus{
    box-shadow: none;
}

/*Blog Page*/
.breadcrumb-sec{
    background-color: var(--grey1);
    padding: 12px 0;
}
.breadcrumb-text{
    display: flex;
    align-items: center;
    gap: 5px;
}
.breadcrumb-last{
    color: #ab9055;
    font-weight: 600;
}
.blog-sec{
    padding-top: 32px;
    padding-bottom: 32px;
}
.blog-hero-title{
    text-align: center;
}
.blog-listing{
    margin: 48px 0;
}
.blog-box{
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #0000001a;
}
.blog-img-box{
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 11px 0 #0000002e, 0 4px 15px 0 #00000026 !important;
    border-radius: 4px;
}
.blog-img::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #ffffff1a;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-attachment: fixed;
    transition: all 0.3s ease-in-out;
}
.blog-img:hover::after{
    opacity: 1;
}
.btn{
    position: relative;
    overflow: hidden;
}
/* Ripple element */
.center-ripple{
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: centerRipple 0.6s ease-out;
    pointer-events: none;
}
@keyframes centerRipple{
    to{
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}
/* Color tuning */
.btn-brown .center-ripple{
    background: rgba(255, 255, 255, 0.5);
}
.btn.blog-img{
    padding: 0px;
    margin: 0px;
    box-shadow: none;
    border-radius: 0px;
}
.blog-list-content h3{
    font-weight: 700;
    text-align: center;
}
.btn-brown.text-normal{
    text-transform: none;
    font-weight: normal;
}
.ft-18{
    font-size: 18px;
}
.search-box{
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-box .form-control{
    padding-left: 24px;
    padding-right: 24px;
}
.search-box .btn-brown{
    width: 100%;
    max-width: fit-content;
}

.blog-title-box{
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    font-weight: 400;
    border-radius: 4px;
    background-color: var(--white);
    padding: 20px;
    margin-bottom: 48px;
}
.blog-title-box .hero-title{
    margin-top: 30px;
    font-weight: 400;
}
.social-share-sec{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.ss-box{
    border-radius: 2px;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    position: relative;
    text-align: center;
    top: 0;
    vertical-align: top;
    white-space: nowrap;
    max-width: 120px;
    transition: all 0.3s ease-in-out;
}
.ss-box span{
    display: inline-block;
    color: #FFFFFF;
    font-weight: 500;
    letter-spacing: 0.5px;
    min-width: 60px;
    opacity: 1;
    padding: 0 6px;
    position: relative;
    vertical-align: middle;
}
.ss-box img{
    width: 16px;
}
.ss-box.facebook{
    background-color: #4267B2;
}
.ss-box:hover {
    opacity: .8;
    transform: translateY(-4px);
}
.ss-box.twitter{
    background-color: #000000;
}
.ss-box.pinterest{
    background-color: #CB2027;
}
.ss-box.sharethis{
    background-color: #95D03A;
}
.ss-box.email{
    background-color: #7d7d7d;
}
.sv-blog-img{
    text-align: center;
    margin-bottom: 16px;
}
.sv-blog-img img{
    width: 640px;
}
.btn.btn-brown.btn-yellow:first-child:active {
    background-color: var(--day-glow);
    color: var(--attractive-black);
}
.bounceIn {
    animation-duration: 0.75s;
    animation-name: bounceIn;
}
@keyframes bounceIn{
0%, 20%, 40%, 60%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
}
20% {
    transform: scale3d(1.1, 1.1, 1.1);
}
40% {
    transform: scale3d(0.9, 0.9, 0.9);
}
60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
}
80% {
    transform: scale3d(0.97, 0.97, 0.97);
}
100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}
}
.google-review{
    margin-bottom: 20px;
}
.slide-image{
    overflow: hidden;
}




























/*Footer*/
.footer{
    background-color: var(--pure-black);
    border-bottom: 10px solid var(--apache);
    padding: 48px 0;
}
.f-menu-sec{
    margin-left: 250px;
    margin-right: 20px;
}
.f-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
}
.f-ul li{
    margin-bottom: 10px;
}
.f-ul li a{
    display: inline-block;
    padding: 5px 0 4px;
    border-bottom: 3px solid transparent;
    color: var(--white);
    transition: all 0.3s ease-in-out;
}
.f-ul li a:hover{
    border-color: var(--gainsboro);
}
.btn-brown{
    background-color: var(--italy-ochre);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    border: 0px;
}
.btn.btn-brown, 
.btn.btn-brown:first-child:active, 
:not(.btn-check)+.btn:active{
    background-color: var(--italy-ochre);
    color: var(--white);
}
.ft-16{
    font-size: 16px;
}
.social-sec{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 16px 0;
}
.social-box{
    width: 50px;
    height: 50px;
    fill: var(--italy-ochre);
    background-color: var(--white);
    padding: 5px;
    border-radius: 5px;
    border: 0px solid;
    transition-duration: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.social-box svg{
    width: 100%;
    height: 100%;
}
.br-10{
    border-radius: 10px;
}
.w-fit{
    width: fit-content;
}
.twg-logo{
    font-size: 16px;
    color: var(--white);
}


.bold{
    font-weight: 700;
}
.semibold{
    font-weight: 600;
}
.btn-close:focus{
    box-shadow: none;
}

/* Financing page */
.financing-page{
    max-width: 1040px;
}
.financing-block{
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e4dc;
}
.financing-block--hearth{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.financing-body{
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #333;
}
.financing-partner-figure{
    max-width: 100%;
}
.financing-partner-img{
    max-width: min(100%, 440px);
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.financing-hearth-310{
    max-width: min(100%, 310px);
    width: 310px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px){
    .text-md-start .financing-partner-img,
    .text-md-start .financing-hearth-310{
        margin-left: 0;
        margin-right: auto;
    }
}
.financing-tagline{
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0.5rem;
}
.financing-apply-btn{
    display: inline-block;
    background-color: #c28b4e;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 2.5rem;
    border-radius: 4px;
    border: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.financing-apply-btn:hover,
.financing-apply-btn:focus{
    background-color: #a8763f;
    color: #fff !important;
}
.financing-list li,
.financing-list{
    color: #333;
    font-size: 1.0625rem;
    line-height: 1.55;
}
.financing-list ul{
    list-style-type: disc;
}
/* Legacy class kept if referenced elsewhere */
.financing-partner-btn{
    max-width: min(100%, 420px);
    height: auto;
}