:root {
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --theme-color: #8548FF;
    --theme-color2: #161d27;
    --theme-btn: linear-gradient(180deg, #48248E 0%, #9660FF 100%), #8548FF;
    --text-color: rgba(33, 33, 33, 0.70);
    --light-bg: rgba(133, 72, 255, 0.05);
    --para-color: rgba(0, 0, 0, 0.60);
    --border-bottom-b: rgba(0, 0, 0, 0.50);
    --text-color: rgba(0, 0, 0, 0.50);
    --border-radius: 10px 10px 0 0;
    --bg-gradient-light: linear-gradient(180deg, rgba(72, 36, 142, 0.10) 0%, rgba(150, 96, 255, 0.10) 100%);
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1220px;
    }
}

body {
    font-family: "Poppins", sans-serif;
    ;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    transition: 0.35s;
}

a,
button {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}

hr {
    border-color: rgba(0, 0, 0, 0.336);
}

.disabled-btn {
    opacity: 0.3;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

ul {
    margin-bottom: 0;
    padding: 0;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.navbar__right .dropdown {
    transition: all 0.35s ease-in-out;
}

.navbar__right .dropdown-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.navbar__right .dropdown-item:last-child {
    border-bottom: none;
}

.navbar__right .dropdown-item.active,
.dropdown-item:active {
    background: none;
}

.navbar__right .dropdown-menu {
    margin-top: 0;
    display: none;
    padding: 0px 6px;
    /* opacity: 0;
    visibility: hidden; */
    transform: translateY(10px);
    transition: 0.3s ease;
    /* position: absolute;
    top: auto; */
    z-index: 1000;

}

.navbar__right .dropdown-toggle::after {
    display: none;
}

.navbar__right .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    border-top: 2px solid var(--theme-color);
    /* opacity: 1;
  visibility: visible; */
    transform: translateY(0);

}

@media(min-width:992px) {
    .navbar__right .dropdown-menu {
        padding: 10px 15px;
    }
}

.breadcrumb {
    background-color: transparent;
    font-size: 15px;
    padding: 0;
    margin-bottom: 1rem;
    justify-content: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.theme-color {
    color: var(--theme-color);
}

.text-color {
    color: var(--text-color);
}

.para-color {
    color: var(--para-color);
}

.light-bg {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.border-radius {
    border-radius: var(--border-radius) !important;
}

.form-control.border-bottom-b {
    border-bottom: 1px solid var(--border-bottom-b)
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px
}

.ptb {
    padding: 80px 0
}

.fw-600 {
    font-weight: 600;
}

.max-w {
    max-width: 100% !important;
}

.bg-gradient-purple {
    background: var(--theme-btn);
}

.form-control::placeholder {
    color: var(--border-bottom-b);
}

.theme-btn {
    border-radius: 8px;
    background: var(--theme-btn);
    padding: 11px 30px;
    color: #fff;
    font-size: 16px;
    border: 1px solid #ffffff00
}

.theme-btn:hover {
    background: #fff;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    transition: all 0.4s ease-in-out;
}

.button-group {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.solid-btn,
.outline-btn {
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding: 11px 30px;


}

.solid-btn a {
    color: var(--theme-color)
}

.outline-btn a {
    color: #fff;
}

.solid-btn {
    background: #fff;
    color: white;
    border: none;
    margin-right: 30px;
    color: var(--theme-color);
    transition: all 0.3s ease;
    border: 1px solid #FFF;
}

.outline-btn {
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    border: 1px solid #FFF;
}

.solid-btn:hover,
.outline-btn:hover,
.profile-section .outline-btn:hover,
.border-btn:hover {
    opacity: 0.9;
    background: var(--theme-color);
    color: #fff;
    border-color: transparent;
}

.solid-btn:hover a {
    color: #fff;
}

.header {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: var(--shadow-medium);
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 103px;
    margin: 0 auto;
}
 .navbar__left span{
    font-weight: 600;
 }
.navbar .navbar__left {
    display: flex;
    align-items: center;
    flex: 0 0 20%;
}

@media (max-width: 992px) {
    .navbar .navbar__left {
        flex: 0 0 auto;
    }
}

/* 
.navbar .navbar__center {
    display: flex;
} */

@media (max-width: 992px) {
    .navbar .navbar__center {
        flex: 0 0 100%;
        order: 3;
        align-items: center;
    }
}

.navbar .navbar__right {
    display: flex;
    flex: 0 0 17%;
    align-items: center;
    justify-content: flex-end;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
}

@media (max-width: 992px) {
    .navbar .navbar__right {
        flex: 0 0 auto;
        align-items: center;
    }
}

.brand {
    /* display: flex; */
    align-items: center;
    order: 1;
}

@media (max-width: 992px) {
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 350px;
        max-width: 85%;
        height: 100%;
        z-index: 100;
        overflow: hidden;
        background-color: #fff;
        transform: translate(-100%);
        transition: all 0.4s ease-in-out;
    }

    .menu.is-active {
        transform: translate(0%);
    }
}

.menu .menu__header {
    display: none;
    box-shadow: var(--shadow-medium);
}

@media (max-width: 992px) {
    .menu .menu__header {
        position: relative;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 4rem;
        z-index: 110;
        visibility: hidden;
        background: transparent;
    }

    .menu .menu__header.is-active {
        visibility: visible;
        background-color: #fff;
        position: absolute;
        width: 100%;
        top: 0;
    }

    .menu .menu__header.is-active>.menu__arrow {
        display: flex;
    }
  
}

@media (max-width: 992px) {
    .menu .menu__header .menu__arrow {
        display: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        width: 3rem;
    }

    .menu .menu__header .menu__arrow:hover i {
        color: var(--theme-color);
    }

    .menu .menu__header .menu__arrow>i {
        font-size: 1rem;
        color: #000;
        transition: all 0.25s ease;
    }

    .darkmode .menu .menu__header .menu__arrow>i {
        color: #fff;
    }
}

@media (max-width: 992px) {
    .menu .menu__header .menu__title {
        cursor: pointer;
        font-weight: 500;
        text-transform: capitalize;
        color: #000;
        transition: all 0.25s ease;
    }

    .menu .menu__header .menu__title:hover {
        color: var(--theme-color);
    }

    .darkmode .menu .menu__header .menu__title {
        color: #fff;
    }
}

@media (max-width: 992px) {
    .menu .menu__inner {
        height: 100%;
        margin-top: -3rem;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

.menu .menu__inner .menu__item {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    padding: 15px 20px 15px 0;
}

.menu .menu__inner .menu__item:last-child {
    padding-right: 0;
}

.menu .menu__inner .menu__item:hover>.menu__link {
    color: var(--theme-color);
}

@media (max-width: 992px) {
    .menu .menu__inner .menu__item {
        display: block;
        padding: 0;
        position: static;
    }
}

@media (min-width: 767px) {
    .menu .menu__inner .menu__item:hover>.menu__link i {
        transform: rotate(-90deg);
    }
}

@media (min-width: 767px) {
    .menu .menu__inner .menu__item.menu__dropdown:hover>.submenu {
        opacity: 1;
        visibility: visible;
        top: 95%;
    }
}

.menu .menu__inner .menu__item .menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-transform: capitalize;
    transition: all 0.25s ease;
}

@media (max-width: 992px) {
    .menu .menu__inner .menu__item .menu__link {
        justify-content: space-between;
        padding: 20px;
    }
}

.menu .menu__inner .menu__item .menu__link>i,
.menu .menu__inner .menu__item li a>i {
    font-size: .7rem;
    transform: rotate(90deg);
    transition: 0.35s;
    margin-left: 6px;
}



@media (max-width: 992px) {
    .menu .menu__inner .menu__item .menu__link>i {
        margin-left: 10px;
        transform: rotate(0deg);
    }

}

.submenu {
    position: absolute;
    z-index: 100;
    top: 110%;
    left: 50%;
    width: 100%;
    height: auto;
    padding: 0px 10px;
    border-top: 2px solid var(--theme-color);
    background-color: #fff;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    transform: translateX(-50%);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
}

@media (max-width: 992px) {
    .submenu {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        min-width: auto;
        margin: 0;
        padding: 70px 15px 0 20px;
        border-radius: 0;
        border-top: 0;
        box-shadow: none;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        transform: translateX(0%);
    }

    .submenu.is-active {
        display: block;
    }
}

@media (min-width: 767px) {
    .submenu {
        -webkit-animation: none !important;
        animation: none !important;
    }
}

@media (min-width: 767px) {
    .submenu.megamenu__normal {
        left: 65%;
        max-width: 300px;
        width: 100%;
        height: auto;
        margin: 0 auto;
        width: 300px;
    }
}

@media (max-width: 992px) {
    .submenu .submenu__list {
        margin-bottom: 20px;
    }
}

.submenu .submenu__list li {
    display: block;
    line-height: 1;
    margin: 0 auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
}

.submenu .submenu__list li:last-child {
    border-bottom: none;
}

.submenu .submenu__list li a,
.dropdown-item {
    display: block;
    padding: 10px 0;
    line-height: 1.4;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.50);
    transition: all 0.25s ease-in-out;
    font-size: 15px;
    white-space: nowrap
}

.submenu .submenu__list li a:hover,
.dropdown-item:hover {
    color: var(--theme-color);
}

.submenu .submenu__list li:hover,
.dropdown-item:hover {
    border-bottom-color: var(--theme-color)
}

/* Hide sub-submenu by default */
.sub-submenu__list {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 215px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0px 15px;

}

/* Show sub-submenu when hovering on parent */
.submenu__list>li:hover>.sub-submenu__list {
    /* display: block; */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Optional: add position relative to parent li */
.submenu__list>li.has-sub-submenu {
    position: relative;
}


@media (max-width: 992px) {
    .submenu .submenu__list li a {
        display: block;
        font-size: 13px;
    }
}

.overlay {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.45s ease-in-out;
    pointer-events: none;
}

.mobile-logo {
    display: none;
}

@media (max-width: 992px) {
    /* .overlay {
        cursor: url('../images/background/close-icon.webp'), zoom-out;
        pointer-events: visible;
    } */

    .overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-logo {
        box-shadow: var(--shadow-medium);
        height: 4rem;
        padding: 0px 20px;
        display: block;
    }

    .mobile-logo img {
        width: 15%;
    }
}



.burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 25px;
    height: 15px;
    margin-right: 15px;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    display: none;
}

@media (max-width: 992px) {
    .burger {
        opacity: 1;
        visibility: visible;
        display: block;
    }
}

.burger .burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border-radius: 15px;
    background: #000;
}

.burger .burger-line:nth-child(1) {
    top: 0px;
}

.burger .burger-line:nth-child(2) {
    top: 8px;
    width: 70%;
}

.burger .burger-line:nth-child(3) {
    top: 16px;
}

.close-menu {
    display: none;
    cursor: pointer;
    width: 20px;
    height: 25px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 110;
}

.close-menu .close-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    top: 50%;
    left: 0;
}

.close-menu .close-line:first-child {
    transform: rotate(45deg);
}

.close-menu .close-line:last-child {
    transform: rotate(-45deg);
}

@media (max-width: 766px) {
    .close-menu {
        display: block;
    }
}


.sub-submenu__list li a {
    font-size: 15px;
    color: #333;
    padding: 6px 0;
    display: inline-block;
    transition: color 0.3s;
}

.sub-submenu__list li a:hover {
    color: var(--theme-color);
}

@media (max-width: 992px) {
    .sub-submenu__list {
        padding-left: 15px;
        position: relative;
        left: 0;
    }

    .sub-submenu__list li a {
        display: block;
        padding-left: 10px;
    }
}

/* banner */
.main-banner {
    background: url(../images/background/main-banner-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 550px; */
    min-height: 628px;
    display: flex;
    background-position: center;
}

.other-banner {
    display: flex;
    align-items: center;
}

@media(min-width:991px) {
    .main-banner {
        align-items: center;
    }

    .main-banner img {
        position: absolute;
        right: 0;
        top: -36%;
        width: 60%;
    }

    .other-banner {
        height: 550px;
    }

    .form-sub-heading {
        font-size: 30px;
        line-height: 39px;
    }

    .menu .menu__inner .menu__item li a>i {
        transform: none;
    }
}

@media(max-width:992px) and (min-width:767px) {
    .other-banner {
        height: 400px;
    }
}

@media(max-width:767px) {
    .other-banner {
        height: 200px;
    }
}

.title {
    color: #FFF;
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
}

.title-dec {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
}

h1.main-heading,
.mob-heading,
.breadcrumb li,
.breadcrumb li a {
    color: #FFF;
    font-size: 80px;
    font-weight: 800;
    line-height: 100px;
}

.how-it-work-section {
    position: relative;
}

.how-it-work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/background/how-it-work-bg.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
}


.sec-heading {

    font-size: 42px;
    font-weight: 800;
    line-height: 70px;
    text-align: center;
    margin-bottom: 3rem;
}

.sec-heading-color, .navbar__left span {
    background: linear-gradient(to bottom, rgba(72, 36, 142, 1), rgba(150, 96, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-it-work-card {
    border-radius: 25px;
    background: #FFF;
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.12);
    text-align: center;
    padding: 50px 40px 30px;
    transition: .3s ease-in-out;
    border: 1px solid #1d28a800;
}

.how-it-work-card h3 {
    color: #000;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    transition: .3s ease-in-out;
}

.how-it-work-card p {
    color: var(--para-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.how-it-work-card:hover {
    border: 1px solid #7F86D0;
}

.how-it-work-card:hover h3 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to bottom, rgba(72, 36, 142, 1), rgba(150, 96, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benifit-landloard-section {
    background: url(../images/background/benifit-landloard-section.webp)no-repeat;
    background-size: 100%;
}

.benifit-landloard-content-box {
    border-radius: 20px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.14);
}

.benifit-landloard-content-box .landloard-box {
    padding: 2rem 3rem;
}

.benifit-landloard-content-box .landloard-desc {
    margin-top: 1rem;
    color: var(--para-color);
}
@media(min-width:992px){
    .benifit-landloard-content-box .landloard-desc{
        height:500px
    }
}
.benifit-landloard-content-box .landloard-desc h3 {
    color: #000;
    font-size: 22px;
    font-weight: 600;
}
.benifit-landloard-content-box .landloard-desc strong {
    color: #643ab7;
}

.benifit-landloard-content-box .landloard-desc ul li {
    color: rgba(0, 0, 0, 0.70);
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    list-style: disc;
    margin-left: 1.5rem;
}

.landloard-icon {
    height: 150px;
}

.cta-banner h3 {
    color: #FFF;
    font-size: 50px;
    font-weight: 800;
    line-height: 70px;
    /* 140% */
}

.cta-banner-desc {
    background: url(../images/background/cta-banner-bg.webp)no-repeat;
    background-size: cover;
    border-radius: 25px;
}

.cta-banner-desc .col-xl-6, .cta-banner-desc .col-lg-7 {
    padding: 4rem 2rem 4rem 4rem;
}

.cta-banner-desc p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
}

.cta-banner-desc p {
    margin-bottom: 2.5rem;
}

.why-choose-section p,
.why-choose-sec-desc p {
    color: var(--para-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.why-choose-sec {
    position: relative;
    margin-bottom: 4rem;
}

.why-choose-sec::after {
    content: '';
    position: absolute;
    width: 100%;
    background: rgb(0 0 0 / 7%);
    margin: 1rem 0;
    height: 2px;
}

.why-choose-sec:last-child:after {
    display: none;
}

.why-choose-sec-desc .icon {
    width: 53px;
    height: 53px;
    margin-bottom: .8rem;
}

.why-choose-sec-desc h4 {
    font-size: 20px;
    font-weight: 600;
}

.why-choose-sec-desc p {
    line-height: 25px;
}

.why-choose-left-sec {
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 0;
    z-index: -1;

}

.why-choose-left-sec {
    position: sticky;
    top: 0;
    height: 100vh;
    /* background-image: url('../images/background/why-choose-tcs.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 40px;
    color: #fff; */

}

@media(min-width:992px) {
    .benifit-landloard-content-box {
        padding: 2rem 4rem 3rem;
    }

    .why-choose-sec-desc {
        padding-left: 1rem;
    }
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 55%;
    gap: 40px;
    align-items: start;
}


.why-choose-sec-desc .icon {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .why-choose-container {
        grid-template-columns: 1fr;
    }

    .why-choose-right-sec {
        grid-template-columns: 1fr;
        background: #ffffff;
        z-index: 99;
        padding-top: 2rem;
    }
}

/* footer */
footer {
    background: #000;
    padding: 3rem 0 0;
    font-weight: 300;
}

.footer-menu ul li a {
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

footer h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;

}

.footer-container {
    gap: 40px;
    margin: 0 auto;
    align-items: start;
    padding: 0 20px;
    padding-bottom: 3rem;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}



.address-sec {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.address-sec .footer-link {
    color: rgba(255, 255, 255, 0.80);
    font-size: 15px;
    margin-bottom: .5rem;
}

.footer-link {
    text-decoration: none;
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    opacity: 0.8;
}

.footer-link:hover {
    opacity: 1;
}

.footer-social-link {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.copyright-sec {
    color: rgba(255, 255, 255, 0.50);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.20);

}

.copyright-sec a {
    color: rgba(255, 255, 255, 0.50);
}

.copyright-sec ul li {
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}
.copyright-sec ul li:last-child{
    margin-right: 0;
}
.copyright-sec ul li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 2px;
    background-color: rgb(112 112 112 / 58%);

}

.copyright-sec ul li:last-child::after {
    content: none;
}

/* contact */
.contact-section-box {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: url(../images/background/contact-box-bg.webp)no-repeat;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
}

.contact-section-box h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-section-box h3 {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    word-wrap: break-word;
}

.contact-form {
    background: url(../images/background/contact-form-bg.webp)no-repeat;
    border-radius: 10px;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 300;
    background-position: center;
}

.contact-form .form-control {
    color: #fff;
}

.call-us-section-time {
    background: var(--light-bg);
    padding: 2rem;
}

.call-us-section-time span {
    color: #8548FF;
    font-size: 20px;
    font-weight: 700;
}

.call-us-section p {
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.call-us-section-time h5 {
    font-size: 16px;
    font-weight: 400;
}

/* faq */
.faq-section .nav-tabs .nav-link.active {
    background-color: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

.faq-section .nav-tabs .nav-link {
    border-radius: 500px;
    border: 0
}
.accordion{
    height:350px;
    overflow-y: auto;
}
.faq-section .accordion-button::after {
    font-family: "Font Awesome 6 Free";
    content: '\2b';
    font-weight: 900;
    font-size: 16px;
    color: var(--theme-color);
    background-image: none !important;
    transform: none !important;
}

.faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 0;
    margin-bottom: 0;
}

.faq-section .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

.faq-section .accordion-button {
    font-weight: 400;
    color: #333;
    padding: 1.2rem 10px 1.2rem 0;
}

.faq-section .accordion-body {
    color: rgba(0, 0, 0, 0.60);
}

.faq-section .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed,
.faq-section .accordion-item:last-of-type>.accordion-collapse {
    border-radius: 0;
}

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

.faq-section .accordion-item:last-of-type {
    border-bottom: 0;
}

.faq-section .nav-link:focus,
.faq-section .nav-link:hover {
    color: #fff;
    background-color: var(--theme-color)
}

.faq-section .nav-link.disabled-btn:hover {
    background-color: var(--theme-color);
    opacity: 1;
}

.faq-section .accordion-collapse .accordion-body {
    padding-top: 0;
    padding-left: 0;
    padding-right: 2rem;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background-color: transparent;
    border: none;
    padding-bottom: 8px;
    box-shadow: none;
    font-weight: 600;
    box-shadow: none;
}

/* FORM CONTROL */
.form-control {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(2px);
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}


.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    border-bottom: 2px solid var(--theme-color);
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

.code-card .form-control {
    border-bottom: 1px solid var(--border-bottom-b);
    backdrop-filter: blur(2px);
}

.form-select {
    color: #9d9d9d;
    font-size: 15px;
}

.form-select:focus {
    box-shadow: none;
}

/* pricing */
.pricing-card {
    background: #fff;
    padding: 24px 20px;
    position: relative;
    text-align: left;
    background-color: #fff;
    border-radius: 10px;
}

.pricing-card.gold {
    border-radius: 20px;
    background: linear-gradient(180deg, #48248E 0%, #9660FF 100%);
    color: #fff;
}

.pricing-card.gold .theme-btn {
    background: #fff;
    color: var(--theme-color);
    line-height: 1.06;
}

.pricing-card.gold .theme-btn:hover {
    background: var(--theme-btn);
    color: #fff;
}

.gradient-border {
    background: linear-gradient(to right, #48248E, #9660FF);
    border-radius: 12px;
    padding: 2px;
    /* thickness of the border */
    display: inline-block;
    position: relative;
}

.pricing-card.gold .border-line:after {
    background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.border-line {
    position: relative;
    margin-bottom: 2.5rem;
}

.border-line:after {
    background: linear-gradient(90deg, #483D9C 0%, rgba(255, 255, 255, 0.00) 100%);
    width: 229px;
    width: 229px;
    height: 1px;
    position: absolute;
    top: 0;
    content: '';
    left: -21px;
}

.pricing-tag {
    position: absolute;
    top: 8px;
    right: 12px;
    background: rgba(150, 96, 255, 0.10);
    width: 160px;
    height: 35px;
    font-size: 14px;
    border-radius: 50px;
    color: var(--theme-color);
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card h2,
.price {
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 2rem;
}

.price {
    font-weight: 500;
    margin-top: 0;
    text-transform: lowercase;
}

.pricing-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.pricing-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-size: 20px;
}

.pricing-card.gold ul li::before {
    color: #fff;
}



.property-num-wrapper {
    position: absolute;
    /* background: rgba(133, 72, 255, 1); */
    width: 112px;
    height: 100px;
    right: 1.5rem;
    top: -1rem;
    padding-top: 1.25rem;
    text-align: center;
    background-image: url(../images/background/propertyimg.webp);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 100%;
}

.property-num-box {
    padding-left: 14px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

/* .property-num-wrapper::before {
    width: 14px;
    height: 16px;
    background: rgba(37, 27, 114, 1);
    top: 0;
    left: -14px;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
        content: '';
    position: absolute;
}
.property-num-wrapper::after {
    width: 100%;
    height: 14px;
    background: #542d9f;
    left: 0;
    bottom: 0;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    content: '';
    position: absolute;
} */

/* Testimonial */
.testimonial-section {
    overflow-x: hidden;
}

.testimonial-card {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.10);
    padding: 40px 10px 35px 40px;
    ;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-section .owl-carousel .owl-stage-outer {
    overflow: visible;
}




.avatar-wrapper {

    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-wrapper img {
    border-radius: 50%;
    width: 140px !important;
    height: 140px;
}

.avatar-wrapper .name {
    color: #1E1E1E;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-top: .5rem;
}

.quote-icon img {
    width: 70px !important;
    height: 70px;
}

.testimonial-content h5 {
    color: #1E1E1E;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.testimonial-content p {
    color: rgba(30, 30, 30, 0.80);
    font-size: 15px;
}

.testimonial-section .owl-dots {
    border-radius: 5px;
    margin: auto;
    background: rgba(0, 0, 0, 0);
    margin-top: 1rem;
    text-align: center;
}

.testimonial-section button.owl-dot {
    width: 145px;
    height: 6px;
    background: rgba(0, 0, 0, 0.20) !important;
    border-radius: 5px;
}

.testimonial-section button.owl-dot.active {
    background: linear-gradient(180deg, #48248E 0%, #9660FF 100%) !important;
    border-radius: 5px;

}

/* latest new */
.blog-card {
    border-radius: 13.224px;
    border: 1.102px solid #E8E8EA;
    background: #FFF;
    padding: .8rem .8rem 1.5rem;
}

.blog-image {
    width: 100%;
    border-radius: 6.612px;
    height: 230px;
    object-fit: cover;
}

.blog-content {
    padding: 1rem .5rem 0;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.badge {
    background: #f4f0ff;
    color: var(--theme-color);
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 12px;
}

.date {
    color: #97989F;
    font-size: 12px;
}

.blog-title {
    color: #181A2A;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    margin: 1.5rem 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.read-more-btn {
    display: inline-block;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.read-more-btn:hover {
    background: var(--theme-btn);
    color: #fff;
}

/* helpcenter */

.help-center-wrapper button.nav-link {
    border: 0;
    border-bottom: 2px solid rgb(0 0 0 / 16%);
    color: rgba(0, 0, 0, 0.30);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.help-center-wrapper button.nav-link.active {
    border-bottom-color: var(--theme-color);
    color: var(--theme-color);
}

.help-center-wrapper .input-group {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    padding: .4rem 1rem;

}

.help-center-wrapper .input-group button {
    width: 4%;
}
.help-center-ques p{background:transparent!important}
.help-center-ques {
   border-left: 4px solid var(--theme-color);
    background: #F3F3F3;
    padding: 20px 46px;
    /* height: 188px; */
    transition: all 0.8s ease;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
}

.help-center-ques a {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    /* transition: color 0.2s ease, font-weight 0.2s ease, text-decoration 0.2s ease; */
    transition: all 0.5s ease;
}

.help-center-ques:hover {
    border-left: 2px solid var(--theme-color);
    background: linear-gradient(0deg, rgba(133, 72, 255, 0.10) 0%, rgba(133, 72, 255, 0.10) 100%), #F3F3F3;
}

.help-center-ques:hover a {
    color: var(--theme-color);
    text-decoration: underline;
    font-weight: 500;
}

/* blog detail */
.help-center-detail p,
.help-center-detail h4 {
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 1rem;
}

.help-center-detail h4 {
    color: var(--theme-color);
    margin-bottom: 4px;
}

.help-center-detail h3 {
    color: #8548FF;
    font-size: 30px;
    font-weight: 800;
}

.sticky-sidebar {
    background: rgba(150, 96, 255, 0.08);
    padding: 2rem;
    position: sticky;
    top: 10px;
}

.sticky-sidebar li a {
    color: rgba(0, 0, 0, 0.60);
}

.sticky-sidebar li {
    margin-bottom: 1.2rem;
}

.sticky-sidebar li:last-child {
    margin-bottom: 0;
}

.sticky-sidebar li.active a {
    color: var(--theme-color);
    font-weight: 600;
}

.schedule-section {
    border-radius: 15px;
    border-left-width: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    background: #F3F3F3;
    justify-content: center;
    margin-bottom: 1.3rem;
    position: relative;
    /* height: 140px; */
    padding-left: 2rem;
}

.schedule-section:after {
    content: '';
    position: absolute;
    width: 20px;
    left: 0;
    background: linear-gradient(90deg, #48248E 0%, #9660FF 141.67%), #8548FF;
    height: 100%;
    border-radius: 15px 0px 0px 15px;
}

.schedule-section p {
    font-size: 14px;
    color: #333
}

.schedule-section h5 {
    color: #000;
    font-size: 17px;
    font-weight: 700;
}

.schedule-section .time {
    color: #3B3E45
}

/* login form */



.login-container {
    max-width: 450px;
    width: 100%;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.login-container a {
    color: #000;
}

.login-container a:hover {
    text-decoration: underline;
}

.login-container h1 {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: #000;
}


.login-container .form-group label,
.form-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 400;
    color: #757575;
    font-size: 14px;
    text-align: left;
}

.login-container .form-group input,
textarea.form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
    outline: none;
    background: transparent;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.login-container input[type=radio] {
    border: 1px solid;
    border-radius: 50%;
    width: 1em;
    height: 1em;
}

input[type="radio"]:focus {
    outline: 2px solid #a855f7;
    box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.login-container .form-group.password-wrapper {
    position: relative;
}

.login-container .form-group input:focus {
    border-bottom: 2px solid #a855f7;
}

.login-container .form-group input[type="radio"]:focus {
    border: 2px solid #a855f7;
}

.login-container .form-group.password-wrapper input {
    padding-right: 35px;
}

.login-container .form-group.password-wrapper .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    cursor: pointer;
    color: #888;
}

.login-container .form-group.password-wrapper .toggle-password:hover {
    color: #000;
}

.login-container .bottom-text {
    margin-top: 20px;
    font-size: 12px;
    color: #424242;

}

.login-container .bottom-text a {
    font-weight: bold;
    color: #424242;
    text-decoration: underline;
}

.login-container .bottom-text.login-guide-link a {
    text-decoration: none;
}

.login-container .bottom-text.login-guide-link a:hover {
    text-decoration: underline;
    color: var(--theme-color);
}

#partialAmountGroup {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

#partialAmountGroup.show {
    max-height: 200px;
    /* Enough to fit the input */
    opacity: 1;
}

.form-sub-heading {
    color: #242424;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.form-head-sec h4 {
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    color: var(--theme-color);
    margin-bottom: 0;
}

.form-head-sec .add-link,
.remove-landlord {
    color: #483D9C;
    text-align: right;
    font-size: 15px;
    font-weight: 400;
}

.bg-text {
    color: rgba(0, 0, 0, 0.08);
    font-size: 100px;
    font-weight: 800;
    line-height: 100px;
    white-space: nowrap;
    position: absolute;
    top: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bg-text::before {
    content: "Join TCF Join TCF Join TCF Join TCF Join TCF Join TCF Join TCF Join TCF Join TCF ";
    display: inline-block;
}

.login-ques {
    padding-bottom: .5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

.login-ques:last-child {
    border-bottom: none;
}

.login-ques h4,
.news-detail-wrapper h4 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
}

.login-ques p {
    color: var(--para-color);
    margin-bottom: 2rem;
}

.custom-upload-box {
    border: 1px dashed #d3c6f3;
    border-radius: 10px;
    background-color: #f9f7ff;
    padding: 20px;
    text-align: center;

}

.custom-upload-box img {
    width: 40px;
    margin: auto;
    margin-bottom: .8rem;
}

.accept-para {
    color: #757575;
    font-size: 12px;
    font-weight: 400;
}

.dropdown-wrapper select {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    padding: 10px 10px;
    font-size: 14px;
    width: 140px;
}

.add-landloard {
    display: none;
}

.mob-img img,
.desk-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.fc-col-header {
    width: 100%
}

.fc-col-header th:nth-child(odd) {
    background: rgba(133, 72, 255, 0.20);
}

.fc-col-header th:nth-child(odd) a {
    color: var(--theme-color);
}

.fc-col-header th:nth-child(even) {
    background: rgba(133, 72, 255, 0.60);
}

.fc-col-header th:nth-child(even) a {
    color: #fff;
}

.fc .fc-scrollgrid-liquid {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}

.fc-col-header th {
    text-align: left;
    padding: 8px 10px 0;
}

.fc .fc-col-header-cell-cushion {
    font-size: 14px;
    padding: 0;
}

.fc .fc-daygrid-day-top {
    flex-direction: row;
    padding: 0 10px;
}

.fc .fc-daygrid-day-number {
    color: #2b2b2b;
}

.fc-h-event {
    background: linear-gradient(0deg, rgba(0, 133, 255, 0.10) 0%, rgba(0, 133, 255, 0.10));
    border: none;
    display: inline-block;
}

.fc-h-event .fc-event-main {
    color: #0085FF;
    font-size: 13px;
    font-weight: 400;
}

.fc .fc-daygrid-day.fc-day-today {
    background: rgb(133 72 255 / 8%);
}

.fc-theme-standard td,
.fc-theme-standard th {
    border: 1px solid #e3e3e3;
}

.dropdown-wrapper select:focus-visible {
    outline: none;
}

.custom-file-upload-wrapper {
    font-size: 14px;
    color: #acabad;
    cursor: pointer;
    width: 100%;
}

.custom-file-upload-wrapper i {
    font-size: 18px;
    color: #acabad;
}

.custom-file-upload {
    display: none;
}

/* dashboard */
.welcome-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-text p {
    margin: 0;
    font-size: 12px;
    color: #555;
}

.welcome-text h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.wave {
    font-size: 14px;
}

.tenant-dashboard-box {
    border-radius: 10px !important;
    border: 1px solid rgba(0, 0, 0, 0.20) !important;
    color: rgba(0, 0, 0, 0.60);
}

.fa-xmark {
    transition: .3s ease-in-out;
}

.fa-xmark:hover {
    font-size: 20px;
}

.tenant-dashboard-box .card-header span {
    font-weight: 600;
}

.tenant-dashboard-box a {
    font-size: 14px;
}

.tenant-dashboard-box .d-flex:last-child p {
    margin-bottom: 0;
}

.tenant-dashboard-box .d-flex p {
    width: 60%
}

.card-body::-webkit-scrollbar {
    width: 6px;
    /* width of the scrollbar */
}

.card-body::-webkit-scrollbar-thumb {
    background: #8548FF;
    /* scrollbar thumb color */
    border-radius: 8px;
}

.card-body::-webkit-scrollbar-thumb:hover {
    background: #888;
    /* darker on hover */
}

.card-body {
    scrollbar-width: thin;
    scrollbar-color: #bbb #f1f1f1;
}

.bg-gradient-light {
    background: var(--bg-gradient-light)
}

.tenant-dashboard-wrapper span.label {
    width: 200px;
}

.label {
    color: rgba(133, 72, 255, 1);
    font-weight: 400;
}

.notifications-box p {
    position: relative;
    padding-left: 1.5rem;
    width: 100%;
    min-width: 100%;
}

.notifications-box::before {
    content: '';
    position: absolute;
    left: 0;
    background: url(../images/icon/notification-icon.webp)no-repeat;
    width: 24px;
    height: 24px;
}

.notifications-box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 1rem;
    position: relative;
}

.notifications-box:last-child {
    border-bottom: none;
}

.tenant-dashboard-box .card-body {
    height: 190px;
    overflow-y: auto;
}

.custom-table td,
.custom-table th {
    padding-left: 1rem;
    text-align: left;
    border: 0;
    width: 200px;

}

.custom-table th {
    color: #000;
    font-weight: 600;
    vertical-align: middle;
    background: var(--bg-gradient-light);
}

.custom-table td,
.custom-table td a {
    vertical-align: middle;
    color: var(--text-color);
}

.custom-table td a:hover {
    color: var(--theme-color);
}

.custom-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}

.custom-table tr:last-child {
    border-bottom: 0;
}

.download-link {
    color: var(--theme-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: underline;
}


.download-link svg {
    width: 16px;
    height: 16px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
}

.breadcrumb-nav .back-arrow {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.breadcrumb-nav .section-name,
.breadcrumb-nav .text-dark {
    font-weight: 600;
    color: #000;
}

.breadcrumb-nav .unique-id {
    color: #999;
    font-weight: 400;
}

.breadcrumb-nav svg {
    width: 16px;
    height: 16px;
}

.tenancy-details .value {
    color: var(--text-color);
}

.tenancy-details .row+.row {
    border-top: 1px solid rgba(0, 0, 0, 0.13);
    padding-top: 20px;
    margin-top: 8px;
}

.history-download-cerificate-bg {
    background: rgba(219, 219, 219, 1);
    padding: 2rem 2rem 4rem;
}

.download-btn {
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.13);
    width: 232px;
    height: 53px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    text-decoration: underline;
    margin: auto;
}

.profile-section input.form-control,
.profile-section textarea.form-control {
    padding: 0 1rem;
    border-radius: 5px;
    border: 1px solid rgba(33, 33, 33, 0.15);
    background: #FFF;
    height: 46px;
}

.profile-section textarea.form-control {
    height: auto;
    padding: 1rem;
}

.profile-section input::placeholder,
.profile-section textarea::placeholder {
    color: #000;
}

.profile-section label {
    color: rgba(33, 33, 33, 0.4)
}

.profile-section .outline-btn,
.border-btn a {
    border: 1px solid var(--theme-color);
    background: #FFF;
    color: var(--theme-color);
    height: 46px;
    font-weight: 400;
    font-size: 15px;
}

.stat-card {
    border: 1px solid var(--theme-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 5px rgba(168, 85, 247, 0.1);
}

.stat-card h4 {
    font-weight: bold;
    color: var(--theme-color);
    font-size: 45px;
    font-weight: 800;
    margin-bottom: .4rem;
}

.stat-card span {
    color: var(--text-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 500;
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-input-group {
    background-color: #f4f4f4;
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.search-input-group input {
    border: none;
    background: transparent;
    outline: none;
    flex-grow: 1;
    padding-left: 0.5rem;
}


.search-wrapper .dropdown-icon {
    font-size: 0.75rem;
    color: #6c757d;
}

.edit-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.news-detail-wrapper {
    color: var(--para-color);
}

.news-desc .news-image-section img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    margin-top: 1.5rem;
}

.payment-wrapper p {
    margin-bottom: .6rem;
    color: #757575;
    font-size: 15px;
}

.contact-form .form-control:focus {
    color: #fff;
    box-shadow: none;
}

.payment-wrapper p span {
    color: #00000080;
    font-weight: 600;
    padding-left: .6rem;
}

/* .register-form-div .input-group::before {
  content: "₦";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-weight: bold;
  pointer-events: none;
} */
.border-1 {
    border-bottom: 1px solid #ccc;
}

span.currency-symbol {
    color: #757575;
}

.register-form-div .input-group input {
    padding-left: .4rem;
}

.form-select option {
    color: #000 !important;
}

.form-select:valid {
    color: #000;
    /* or any other color */
}

.payment-bg .form-sub-heading {
    font-size: 28px;
    text-align: center;
}

.payment-bg p {
    font-size: 18px;
}

.form-section .text-danger {
    font-size: 15px;
}

.form-section input[type="password"]::placeholder {
    color: #21212142;
}

.fc-daygrid-event {
    white-space: normal !important;
}

.fc-h-event .fc-event-main-frame {
    flex-wrap: wrap !important;
    width: 100%;
}


.dymanic-container h2,
.dymanic-container h5 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}

.dymanic-container p,
.dymanic-container ul li {
    color: rgba(0, 0, 0, 0.70);
    font-size: 16px;
    font-weight: 400;
}

.dymanic-container ul {
    padding-left: 1.2rem;
}

.dymanic-container ul li {
    margin-bottom: 6px;
    list-style: disc;
}







@media(min-width:992px) {
    .h-vh {
        height: 100vh;
    }

    .footer-menu ul.footer-links {
        display: flex;
        gap: 62px;
        align-items: center;
        margin-top: 1rem;
        justify-content: center;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 7% 2fr 1fr;
    }

    .border-verticle {
        border-left: 1px solid rgba(255, 255, 255, 0.30);
        padding-left: 3.5rem;
    }

    .footer-social-link {
        margin-top: 3rem;
        margin-right: 1.6rem;
    }

    .pricing-card.gold {
        transform: scale(1.14);
    }

    .testimonial-section .owl-dots {
        width: 317px;
    }

    .help-center-wrapper button.nav-link {
        width: 256px;
    }

    textarea.form-control {
        height: 30px;
    }

    .login-container {
        height: 100vh;
    }

    .login-container a {
        font-size: 14px;
    }


    .schedule-section {
        margin-left: 1.5rem;
    }

    .tenant-dashboard-box a {
        font-size: 14px;
    }

    .custom-table td,
    .custom-table th {
        padding: 1rem 2rem;
        text-align: center;
        width: auto;
        font-size: 15px;
    }

    .custom-table td a {
        font-size: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {

    h1.main-heading,
    .mob-heading,
    .breadcrumb li,
    .breadcrumb li a {
        font-size: 55px;
        line-height: inherit;
    }
}

/*===================== Responsive =====================*/

@media(max-width:992px) {

    h1.main-heading,
    .mob-heading,
    .breadcrumb li,
    .breadcrumb li a {
        color: #FFF;
        font-size: 40px;
        font-weight: 800;
        line-height: inherit;
    }

    .solid-btn,
    .outline-btn {
        font-size: 15px;
        padding: 11px 10px;
        margin-right: 10px;
    }

    .banner-content {
        padding-top: 2rem;
    }

    .other-banner .banner-content {
        text-align: left;
        padding: 0;
    }

    .cta-banner h3 {
        font-size: 30px;
        line-height: inherit;
    }

    .cta-banner-desc .col-xl-6 {
        padding: 3rem 2rem;
    }

    .sec-heading {
        font-size: 30px;
        line-height: inherit;
    }

    .why-choose-left-sec {
        height: auto;
    }

    .ptb {
        padding: 40px 0;
    }

    .main-banner {
        min-height: 400px
    }

    .copyright-sec {
        text-align: center;
        margin-top: 1rem;
        font-size: 12px;
    }

    footer {
        padding: 1rem 0 0;
    }

    .footer-link {
        align-items: baseline;
    }

    .footer-menu ul li a {
        color: rgba(255, 255, 255, 0.80);
        text-transform: capitalize;
        font-size: 13px;
        font-weight: 300;
    }

    .footer-links {
        gap: 6px;
    }

    .address-sec .footer-link {
        font-size: 12px;
        margin-bottom: 0;
        word-break: break-all;
    }

    .address-sec svg {
        width: 16px
    }

    .contact-form {
        padding: 1.5rem;
    }

    .call-us-section {
        margin-top: 2rem;
    }

    .pricing-card h2,
    .price {
        font-size: 24px;
    }

    .help-center-ques {
        padding: 18px;
        height: auto
    }

    .register-bg {
        background: none !important;
    }

    .faq-section .accordion-collapse .accordion-body,
    .faq-section .accordion-button {
        padding-right: 0;
        font-size: 14px;
    }

    .faq-section .accordion-button::after {
        text-align: right;
    }

    .w-md-80 {
        width: 60%;
        margin: auto;
    }

    .login-container {
        border: 1px solid #cccccc4d;
        margin: 1rem auto;
        padding: 2rem;
    }

    /* .brand img {
        width: 90%;
    } */

    .navbar__right .dropdown-menu {
        width: 100%;
        min-width: 100%;
    }
}

@media(max-width:767px) {
    .main-banner {
        height: 550px
    }

    .how-it-work-section {
        padding-top: 10rem;
    }

    .benifit-landloard-section {
        background-size: auto;
    }

    .call-us-section-time {
        padding: 1rem;
    }

    .sec-heading {
        font-size: 26px;
    }

    h1.main-heading,
    .mob-heading {
        font-size: 28px;
    }

    .testimonial-content {
        display: block;
    }

    .testimonial-section button.owl-dot {
        width: 25px;
    }



    .login-ques h4,
    .news-detail-wrapper h4 {
        font-size: 18px;
        font-weight: 600;
    }

    .fc-h-event .fc-event-main {
        font-size: 7px;
    }

    .w100 {
        width: 100%
    }

    .pt-ms-0 {
        padding-top: 0;
    }
    .tenant-dashboard-box a{font-size: 12px;}
}

@media(max-width:768px) {
    .banner-content {
        text-align: center;
    }

    .button-group {
        display: block;
    }

    .solid-btn,
    .outline-btn {
        display: block;
        width: 100%;
    }

    .outline-btn {
        margin-top: 1rem;
    }



    .benifit-landloard-content-box .landloard-box {
        padding: 2rem 2rem 3rem;
        background: #fff;
        border-radius: 20px 20px 0 0;
    }

    .benifit-landloard-content-box .landloard-box:first-child {
        border-bottom: 5px solid #cccccc2b;
    }

    .sec-heading {
        margin-bottom: 1rem;
    }

    p,
    .benifit-landloard-content-box .landloard-desc ul li,
    .fs-16,
    .contact-section-box h3,
    .help-center-ques,
    .fs-18,
    .custom-table td,
    .custom-table th {
        font-size: 14px !important;

    }

    .custom-table td,
    .custom-table th {
        white-space: nowrap;
    }

    .benifit-landloard-content-box .landloard-desc ul li {
        margin-bottom: .5rem;
        line-height: inherit;
    }



    .footer-logo img {
        width: 70px;
        margin-bottom: 1rem;
    }

    .form-head-sec .add-link,
    .remove-landlord {
        font-size: 12px;
    }

    .form-head-sec h4 {
        font-size: 16px;
    }

    .fs-14 {
        font-size: 14px;
    }

    .theme-btn.fs-14 {
        padding: 10px;
    }

    .code-card.light-bg .theme-btn {
        margin-top: 1rem !important;
    }

    .tenant-dashboard-wrapper span.sec-heading-color {
        width: 180px;
    }

    .border-start {
        display: none;
    }

    .fc .fc-col-header-cell-cushion {
        font-size: 10px;
    }
    .navbar__left span {    font-size: 12px;}
    .navbar__left .brand img{
            width: 70px;
    }
    .navbar .theme-btn {padding: 9px 35px;}
    .blog-meta{flex-direction: column;
    align-items: baseline; gap:0}
    .badge{margin-bottom: 4px;}
    .blog-content {
     padding: 1rem 0rem 0;
    }
    .date{
    font-size: 12px !important;
}
.register-form-div label{
    font-size: 14px;
}
.stat-card span{    font-size: 1rem;}
.schedule-section .time
 {
    font-size: 13px;
}
.schedule-section h5{font-size: 14px;}
}
@media(max-width:448px){
    p,
    .benifit-landloard-content-box .landloard-desc ul li,
    .fs-16,
    .contact-section-box h3,
    .help-center-ques,
    .fs-18,
    .custom-table td,
    .custom-table th {
        font-size: 12px !important;

    }
}