/* DETAILS
==================================================
	Theme Name: Ecrid Lending Corp
	Author: Pritam	
==================================================
*/
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --Poppins: "Poppins", sans-serif;
    --Libre: "Libre Baskerville", serif;
    --font-awesome: 'Font Awesome 6 Free';
    --common-transition: all 0.3s ease 0s;
    --theme: #e66300;
    --orange: #EF7601;
    --black: #000000;
    --white: #fff;
}

/* =========== global adjustments =========== */
html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--Poppins);
    font-weight: 400;
    font-size: 0.8750rem;
    line-height: 1.5;
    color: var(--black);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin: 0 0 0.9375rem;
    padding: 0;
    font-family: var(--Poppins);
    color: var(--black);
}

h1 {
    font-size: 3.6250rem;
    line-height: 1.15;
    font-weight: 700;
}

h2 {
    font-size: 3.0000rem;
    line-height: 1.15;
    font-weight: 700;
    text-transform: capitalize;
}

h3 {
    font-size: 2.3750rem;
    line-height: 1.35;
    font-weight: 600;
}

h4 {
    font-size: 2.0000rem;
    line-height: 1.35;
    font-weight: 600;
}

h5 {
    font-size: 1.6250rem;
    line-height: 1.35;
    font-weight: 600;
}

h6 {
    font-size: 1.2500rem;
    line-height: 1.35;
    font-weight: 600;
}

p {
    font-size: 1.0000rem;
    line-height: 1.6;
    margin-bottom: 1.2500rem;
}

img {
    max-width: 100%;
}

a,
img {
    border: 0;
    text-decoration: none;
    outline: none;
}

a {
    color: var(--orange);
}

a:link,
a:visited,
a:focus,
a:hover {
    outline: none;
    text-decoration: none;
    transition: var(--common-transition);
}

a:hover {
    text-decoration: none;
    color: var(--black);
}

strong {
    font-weight: 600;
    color: var(--black);
}

.btn,
a.btn {
    font-size: 1.0000rem;
    line-height: 1.4;
    font-weight: 500;
    padding: 0.7500rem 1.8750rem;
    background: var(--orange);
    color: var(--white);
    border-radius: 0.5000rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn:hover {
    background: var(--black);
    color: var(--white);
}

.btn.btn-outline {
    border: 0.1250rem solid var(--theme);
    color: var(--theme);
    background: transparent;
}

.btn.btn-outline:hover {
    background: var(--theme);
    color: var(--white);
}


.img-resize {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title h2 {
    text-transform: capitalize;
    margin-bottom: 2.5000rem;
    color: var(--black);
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.9375rem;
}

.form-group label sup {
    color: rgb(255, 0, 0);
    font-size: 1.2500rem;
    font-weight: 600;
    top: 0;
}

.form-control {
    border-radius: 0.6250rem;
    border: 0.1250rem solid #EDEDED;
    background: #F4F4F4;
    padding: 1.2500rem;
    font-size: 1.2500rem;
    line-height: 1.5;
}


/* =========== Common Padding =========== */
.pt-50 {
    padding-top: 3.1250rem;
}

.pb-50 {
    padding-bottom: 3.1250rem;
}

.pt-100 {
    padding-top: 6.2500rem;
}

.pb-100 {
    padding-bottom: 6.2500rem;
}

.common-padding {
    padding-top: 4.3750rem;
    padding-bottom: 4.3750rem;
}


/* =========== container adjustments =========== */
/* @media only screen and (min-width: 90.0000rem){
    .container{ max-width: 85.0000rem;}
}

@media only screen and (min-width: 106.2500rem){
    .container{ max-width: 101.5000rem;}
} */


/* ============ header Start ============ */
.top-bar {
    padding: 0.8125rem 0;
    background: var(--theme);
    text-align: right;
}

.top-bar .col-12 {
    display: flex;
    align-items: center;
    gap: 1.2500rem;
    justify-content: flex-end;
}

.top-bar a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.3125rem;
}

.top-bar a:hover {
    color: var(--black);
}

.main-header {
    position: relative;
    z-index: 100;
    padding: 0.9375rem 0;
}

.logo img {
    height: 2.5000rem;
}

.main-header .navigation {
    position: relative;
}

.logo-block a {
    display: block;
    width: auto;
    height: 4.6875rem;
}

.logo-block img {
    width: 100%;
    height: 100%;
}

.main-menu ul li {
    display: inline-block;
    padding-right: 1.8750rem;
}

.main-menu ul li:last-child {
    padding-right: 0;
}

.main-menu ul li a {
    font-size: 1.0000rem;
    line-height: 1;
    font-weight: 500;
    color: var(--black);
    text-transform: capitalize;
    padding: 0;
}

.main-menu ul li a:hover {
    color: var(--theme);
}

/* ========== Responsive Menu Icon ========== */
.nav-btn {
    width: 1.8750rem;
    height: 1.8750rem;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    right: 0;
    top: 0px;
    transform: translateY(0%);
    z-index: 9999;
    display: none;
}

.nav-btn span {
    display: block;
    position: absolute;
    height: 0.1250rem;
    width: 100%;
    background: var(--black);
    border-radius: 0;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.nav-btn span:nth-child(1) {
    top: 0.2500rem;
}

.nav-btn span:nth-child(2) {
    top: 0.8750rem;
}

.nav-btn span:nth-child(3) {
    top: 1.5000rem;
}

/* .nav-btn.open span:nth-child(1) { top: 0.8750rem; transform: rotate(135deg); }
	.nav-btn.open span:nth-child(2) { opacity: 0; left: -1.8750rem; }
	.nav-btn.open span:nth-child(3) {  top: 0.8750rem; transform: rotate(-135deg); } */
    .mobile-menu {
    position: fixed;
    top: -100vh;
    right: 0;
    left: 0;
    z-index: 9999;
    background-color: var(--white);
    height: 100vh;
    display: none;
    transition: all 0.45s ease-in-out;
}
    .mobile-logo img {
    width: 300px;
}
.mobile-menu .nav-btn-close {
    position: relative;
    width: 1.8750rem;
    height: 1.5000rem;
    vertical-align: top;
    cursor: pointer;
    z-index: 9;
    transition: all 0.45s ease-in-out;
    display: none;
}

.mobile-menu .nav-btn-close .top {
    position: absolute;
    top: 0.6250rem;
    width: 100%;
    height: 0.2rem;
    background: var(--black);
    transform: rotate(45deg);
    z-index: 99;
}

.mobile-menu .nav-btn-close .bottom {
    position: absolute;
    top: 0.6250rem;
    width: 100%;
    height: 0.2rem;
    background: var(--black);
    transform: rotate(-45deg);
    z-index: 99;
}

.mobile-mid-section {
    display: flex;
    align-items: start;
    height: calc(100vh - 9.0437rem);
    overflow-y: auto;
    transition: all 0.45s ease-in-out;
    padding-top: 30px;
}

.open .mobile-menu .main-menu {
    display: block;
}

.mobile-mid-section .main-menu ul {
    display: block;
}

.mobile-mid-section .main-menu ul li {
    display: block;
    font-size: 1.0000rem;
    line-height: 1.2;
    font-weight: 700;
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
    margin: 0;
}

.mobile-mid-section .main-menu ul li a {
    text-transform: uppercase;
    display: block;
    color: var(--black);
    padding: 1.1250rem 0;
}

/* ========== Sticky Header ========== */

.header-sticky .navigation-bar {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0.2500rem 0.2500rem 0.9375rem 0.0000rem rgba(0, 0, 0, 0.1);
    animation: slide-down 0.5s;
    transition: var(--common-transition);
    z-index: 11;
}

.header-sticky .top-block {
    display: none;
}

.header-sticky main {
    padding-top: 11.6994rem;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home Page Start */

.banner .item,
.banner {
    position: relative;
    background: #000;
    line-height: 0;
}

.banner .image {
    position: relative;
    padding-bottom: 40%;
}

.banner .image::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0) 100%);
}

.banner .image img {
    opacity: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-info-wrap {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

.banner-info {
    max-width: 39.0625rem;
    line-height: normal;
}

.banner-info h1 {
    font-family: var(--Libre);
    font-weight: normal;
    color: var(--white);
    margin-bottom: 1.8750rem;
}

.banner-info p {
    color: var(--white);
    margin-bottom: 2.8125rem;    
}

.banner-slider {
    position: relative;
    z-index: 2;
}

.banner-slider .slick-dots {
    bottom: 2.5000rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-slider .slick-dots li{
    width: auto;
    height: auto;
}

.banner-slider .slick-dots li button {
    width: 1.5000rem;
    height: 0.2500rem;
    border-radius: 0.1250rem;
    background: var(--white);
    padding: 0;
}

.banner-slider .slick-dots li.slick-active button{
    background: var(--theme);
    width: 2.1250rem;
    height: 0.2500rem;
}

.banner-slider .slick-dots li button:before {
    display: none;
}

/* .banner-slider .slick-prev,
.banner-slider .slick-prev:hover {
    left: 0.0000rem !important;
    background: url('https://eleganteventsny.com/wp-content/themes/elegant/images/banner-prev.svg') no-repeat !important;
    width: 3.1250rem;
    height: 4.8750rem;
    z-index: 2;
    background-size: contain !important;
}

.banner-slider .slick-next,
.banner-slider .slick-next:hover {
    right: 0.0000rem !important;
    background: url('https://eleganteventsny.com/wp-content/themes/elegant/images/banner-next.svg') no-repeat !important;
    width: 3.1250rem;
    height: 4.8750rem;
    z-index: 2;
    background-size: contain !important;
}

.banner-slider .slick-prev::before,
.banner-slider .slick-next::before {
    display: none;
} */

/* ======= Welcome Start ======= */
.about-wrap img {
    width: 100%;
}


.about-wrap .text-content {
    flex: 1 1 25.0000rem;
    max-width: 37.5000rem;
}

.about-wrap .text-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.2500rem;
}

.about-wrap .text-content .highlight {
    color: #000;
}

.about-wrap .text-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2500rem;
}

.testimonial-box {
    border-left: 0.2500rem solid var(--theme);
    background-color: #f9f9f9;
    padding: 0.9375rem 1.2500rem;
    color: #444;
    font-size: 0.95rem;
    border-radius: 0.3750rem;
}

.feature-box-container {
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

.feature-box-wrap {
  display: inline-block;
  width: 48%;  
  margin-bottom: 20px; 
  vertical-align: top;
  font-size: 1rem; 
}

.feature-box {
  background: #f4f4f4;
  padding: 1.25rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.feature-box i {
  font-size: 1.375rem;
  margin-bottom: 0.9375rem;
  color: var(--theme);
}

.feature-box:hover {
  background-color: var(--theme);
  color: var(--white);
}

.feature-box:hover h6,
.feature-box:hover i {
  color: var(--white);
}

.feature-box h3 {
  font-size: 1.2rem;
  margin: 0.625rem 0;
}

.feature-box p {
  font-size: 0.95rem;
  color: inherit;
}

.feature-box-wrap:nth-child(2) {
  margin-top: 30px;
}

.feature-box-wrap:nth-child(3) {
  margin-top: -30px;
}


/* ======= Buy House Start ======= */
.buy-house-wrap {
    background: #6A2F05;
background: linear-gradient(90deg,rgba(106, 47, 5, 1) 0%, rgba(217, 97, 11, 1) 50%, rgba(106, 47, 5, 1) 100%);
    color: white;
    padding: 3.7500rem 0;
    position: relative;
    overflow: hidden;
}

.buy-house-wrap .text-content h3 {
    font-family: var(--Libre);
    font-size: 1.8125rem;
    color: #fff;
    margin: 0;
    max-width: 33.4375rem;
    transform: rotate(-2deg);
}

.buy-house-wrap .btn-custom {
    background-color: #009688;
    color: var(--white);
    /* font-family: var(--Libre); */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
    border: none;
    padding: 0.7500rem 1.5000rem;
    border-radius: 0.3750rem;
    transform: rotate(-2deg) skewX(-10deg);
    display: inline-block;
    letter-spacing: 0.0625rem;
    transition: 0.3s ease-in-out;
    margin: 0 0 0.9375rem;
}

.buy-house-wrap .btn-custom span {
    display: inline-block;
    transform: skewX(10deg);
    /* Unskew text */
}

.buy-house-wrap .btn-custom:hover {
    background-color: #00796B;
}


.buy-house-wrap .subtext {
    color: var(--white);
    font-size: 0.95rem;    
    transform: rotate(-2deg);
}

.buy-house-wrap .subtext img {
    margin: -0.5000rem 0.1875rem 0;
}


/* Sell House Start */
.price-banner {
    background-color: var(--theme);
    color: var(--white);
    font-weight: 600;
    font-size: 2.5rem;
    padding: 0.5rem 0;
    text-align: center;
}

.house-img{
    position: relative;
    padding-bottom: 60%;
}
.house-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.house-card {
    border: none;
    margin: 0.6250rem;
}

/* .house-sell-slider .slick-prev,
.house-sell-slider .slick-next {
    width: 2.2500rem;
    height: 2.2500rem;
    background-color: var(--white);
    border: 0.0625rem solid var(--theme);
    color: var(--theme);
    border-radius: 50%;
    z-index: 10;
}

.house-sell-slider .slick-prev:before,
.house-sell-slider .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: var(--theme);
}

.house-sell-slider .slick-prev:before {
    content: "\f104";
}

.house-sell-slider .slick-next:before {
    content: "\f105";
} */

.view-more-btn {
    border: 0.0625rem solid var(--theme);
    color: var(--theme);
    font-weight: 600;
    padding: 0.6250rem 1.5000rem;
    border-radius: 0.3750rem;
    transition: 0.3s;
    background: transparent;
}

.view-more-btn:hover {
    background-color: var(--theme);
    color: var(--white);
}


/* ======= Why Choose Start ======= */
.why-choose-section {
    background-color: #f9f9f9;
}

.score-text h5 {
    text-align: center;
    margin: 30px 0 40px;
}
.score-text h5 span{
    color: var(--theme);
}
.loan-terms-wrap p{
    font-weight: 600;
}
.loan-terms-table {
    width: 100%;
}
.loan-terms-list {
    list-style: none;
    padding-left: 0;
}

.loan-terms-list li {
    font-size: 1rem;
    margin-bottom: 0.6250rem;
    display: flex;
    align-items: center;
}

.loan-terms-list li i {
    color: #007bff;
    margin-right: 0.5000rem;
}

.loan-terms-table td {
    padding: 0.3125rem 0.6250rem;
}

.icon-ring img {
    width: 70px;
    height: 70px;
    /* border: 0.2500rem solid #eee; */
    border-radius: 50%;
    object-fit: cover;
    /* padding: 0.1250rem; */
}

.icon-ring {
    margin: 0 0.5000rem;
}

/*  ======= Buy Car Start  ======= */
.car-banner {
    background: url('img5.jpg') no-repeat center center;
    background-size: cover;
    padding: 6.2500rem 0;
    color: var(--white);
    position: relative;
}

.car-banner .banner-content {
    max-width: 43.7500rem;
}

.car-banner h3 {
    font-size: 1.75rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1.2500rem;
    line-height: 1.4;
}

.car-banner .btn-custom {
    background-color: #00a98f;
    color: var(--white);
    font-weight: bold;
    padding: 0.7500rem 1.7500rem;
    font-size: 1rem;
    border-radius: 0.7500rem;
    border: none;
    margin-bottom: 0.6250rem;
}

.car-banner .btn-custom:hover {
    background-color: #00947c;
}

.car-banner .learn-more {
    font-size: 0.95rem;
    font-weight: 300;
}

.car-banner .learn-more i {
    transform: rotate(-45deg);
    margin: 0 0.3750rem;
}

/* Sell Automobile */
.automobile-section {
    padding: 3.7500rem 0;
}

.automobile-section h2 {
    font-weight: 700;
    margin-bottom: 2.5000rem;
}

.automobile-slider .automobile-item {
    padding: 0 0.6250rem;
    box-sizing: border-box;
}

.automobile-img{
    position: relative;
    padding-bottom: 60%;
}

.automobile-info {
    margin-top: 0.9375rem;
}

.automobile-info h5 {
    font-weight: 700;
    margin-bottom: 0.3125rem;
}

.automobile-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.slick-prev:before,
.slick-next:before {
    content: '' !important;
}

.slick-prev,
.slick-next {
    width: 2.1875rem !important;
    height: 2.1875rem !important;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.2);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slick-prev {
    left: -2.5000rem !important;
}

.slick-next {
    right: -2.5000rem !important;
}

.slick-prev i,
.slick-next i {
    color: var(--theme);
    font-size: 0.8750rem;
}


/* ======= Newsletter Start ======= */
.newsletter-wrapper {
    position: relative;
    bottom: -3.1250rem;
}
.newsletter-wrapper .container{
    background-color: var(--theme);
    color: white;
    padding: 3.7500rem 1.8750rem;
}

.newsletter-wrapper h2{
    color: var(--white);
}

.newsletter-input {
    border: none;    
    background: transparent;
    color: white;
    width: calc(100% - 136px);
    padding: 0.6250rem 0;
}

.newsletter-input::placeholder {
    color: #f8f8f8;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 0.6250rem;
    flex-wrap: wrap;
    border-bottom: 0.0625rem solid var(--white);
}

.btn-subscribe {
    border: 1px solid white;
    color: white;
    padding: 0.5000rem 1.5000rem;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    margin-bottom: 5px;
}

.btn-subscribe:hover {
    background: white;
    color: var(--theme);
}

/* ======= Footer Start ======= */
footer {
    background-color: #1b1b1b;
    color: #ccc;
    padding: 5.6250rem 0 1.8750rem;
    text-align: center;
}

.footer-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7500rem;
    height: 2.7500rem;
    border-radius: 50%;
    border: 0.0625rem solid #444;
    color: white;
    margin: 0 0.3750rem;
    transition: 0.3s;
    font-size: 1.0000rem;
}

.footer-icons a:hover {
    background-color: var(--theme);
    color: var(--white);
    border-color: var(--theme);
}

footer p {
    margin: 0.0000rem;
    font-size: 0.8750rem;
}

footer a {
    color: var(--white);
    text-decoration: underline;
}




/*========================================
        Responsive Start
========================================== */
@media only screen and (max-width:1599) {}

@media only screen and (max-width:1499px) {}

@media only screen and (max-width:1199px) {}

@media only screen and (max-width:991px) {
    .main-header .navigation { 
    justify-content: space-between;
}
    .mobile-menu .menu-inner .mobile-top-section {
        padding: 0.9375rem 0;
        transition: all 0.45s ease-in-out;
    }

    .mobile-menu .menu-inner .mobile-top-section .inner-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .open .mobile-menu {
        display: block;
        top: 0;
        transition: all 0.45s ease-in-out;
    }

    .nav-btn,
    .mobile-menu .nav-btn-close {
        display: block;
    }

    .text-content h1 {
        font-size: 2rem;
    }

    .buy-house-wrap .text-content {
        text-align: center;
    }

    .buy-house-wrap .house-img {
        margin-top: 1.8750rem;
    }

    .icon-ring img {
        width: 2.5000rem;
        height: 2.5000rem;
    }

    .car-banner {
        padding: 3.7500rem 1.2500rem;
        text-align: center;
    }

    .car-banner h3 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-subscribe {
        width: 100%;
        text-align: center;
    }

    .slick-prev,
    .slick-next {
        display: none !important;
    }

}

@media only screen and (max-width:767px) {}

@media screen and (max-width: 36.0000rem) {}