/* ================Common Start======================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    overflow-y: auto;
    color: var(--thm-text);
}

:root {
    --thm-hover: #84BD5A;
    --thm-base: #322153;
    --white: #ffffff;
    --thm-text: #666666;
}

.btn {
    padding: 8px 15px;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--thm-base);
    border: 0;
}

.btn-primary:hover {
    opacity: 0.9;
    background-color: var(--thm-hover);
}

.btn-dark {
    background-color: #333;
}

.btn-outline-primary {
   border-color: var(--thm-base) !important;
    color: var(--thm-base) !important;
    opacity : unset !important
}

.btn-outline-primary:hover {
    background-color: var(--thm-base);
    border-color: var(--thm-base);
    color: var(--white) !important;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
 :not(.btn-check)+.btn:active {
    background-color: var(--thm-base);
    border-color: var(--thm-base);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    box-shadow: none;
    border-color: var(--thm-base);
}

.form-check-input:checked {
    background-color: var(--thm-base);
    border-color: var(--thm-base);
}

.form-check-label {
    font-size: 14px;
}

.form-control,
.form-select {
    padding: 8px 15px;
    border-radius: 8px;
}


/* slider css start */

.slick-slider {
    margin: 0 -12px;
}

.slick-slide {
    margin-right: 12px;
    margin-left: 12px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 10;
    border: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0;
    background-image: url('../image/slick-arrow.png');
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--thm-base);
    transition: all .3s ease-in-out;
}

.slick-arrow.slick-disabled {
    opacity: 0.8;
    pointer-events: none;
}

.slick-arrow:hover {
    background-color: var(--thm-hover);
}

.slick-next {
    left: unset;
    right: 20px;
    transform: translateY(-50%) rotate(180deg);
}

.slick-dots {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li {
    padding: 0;
    margin-right: 10px;
    line-height: 0;
}

.slick-dots li:last-child {
    margin-right: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    border: 0;
    background-color: var(--thm-text);
}

.slick-dots li.slick-active button {
    background-color: var(--thm-base);
}


/* slider css end */


/* ================Common End======================== */


/* ================header start=================== */

.mp-header-section {
    background-color: #f4f4f4;
    color: var(--thm-base);
}

.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-nav .nav-link {
    color: var(--thm-base);
    font-weight: 600;
    text-transform: uppercase;
}

.navbar-nav .nav-item+.nav-item {
    margin-left: 34px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--thm-hover);
}

.header-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
}

.header-btn-icon {
    margin-right: 10px;
}

.header-btn-text {
    margin-bottom: 0;
}

.navbar-toggler {
    display: flex;
    flex-direction: column;
    padding: 0;
    font-size: 0;
    margin: 0;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: unset;
    width: 30px;
    height: 3px;
    background-color: var(--thm-base);
    margin-bottom: 7px;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon:last-child {
    margin-bottom: 0px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    margin-bottom: 0px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:first-child {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:last-child {
    transform: rotate(-45deg);
    margin-top: -5px;
}

.mp-site.menu-open {
    overflow: hidden;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothscroll 1s;
    z-index: 999;
}

@keyframes smoothscroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0);
    }
}

.mp-header-section.fixed .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
}


/* ================header End=================== */


/* ================Home Page Start=================== */


/* hero section start */

.mp-hero-section {
    padding: 80px 0;
}

.mp-step-container {
    position: relative;
    text-align: center;
    transform: translateY(-43%);
}

.mp-step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid var(--thm-base);
    color: var(--thm-base);
    line-height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
    /* Added cursor pointer */
}

.step-line {
    position: absolute;
    top: 16px;
    left: 50px;
    width: calc(100% - 100px);
    height: 2px;
    background-color: var(--thm-base);
    z-index: -1;
}

.mp-multi-step-wrapper {
    /* background-color: rgba(0, 0, 0, 0.035); */
    background-color: var(--white);
    border: 1px solid #B3D59B;
    padding: 30px 30px;
    border-radius: 10px;
}

#mp-multi-step-form {
    overflow-x: hidden;
}

.mp-progress-wrapper {
    padding-right: 50px;
    position: relative;
    margin-bottom: 30px;
}

.mp-progress-persentage {
    color: var(--thm-base);
    display: inline-block;
    font-size: 16px;
    position: absolute;
    top: -9px;
    right: 0;
}

.mp-step-header {
    margin-bottom: 15px;
}

.mp-step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--thm-base);
    margin-bottom: 5px;
}

.mp-step-description {
    font-size: 14px;
    margin-bottom: 0;
}

.mp-step {
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.mp-step-body {
    margin-bottom: 15px;
    flex: 1 1 auto;
}

.mp-step-body .list-group-item {
    margin-bottom: 12px;
    border: none;
    background-color: var(--thm-base);
    border-radius: 8px;
    color: var(--white);
}

.list-group-item.active {
    background-color: var(--thm-hover);
}

.mp-step-btn-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mp-multi-step-wrapper .progress-bar {
    background-color: var(--thm-base);
}

.mp-loan-note {
    margin-top: 15px;
}

.mp-loan-note-text {
    font-size: 14px;
}

.mp-phone-number-note {
    font-size: 12px;
    margin-bottom: 10px;
}

.mp-social-security-note-text {
    font-size: 12px;
    margin-bottom: 10px;
}

.mp-social-security-note-text a {
    color: var(--thm-text);
}

.mp-hero-left {



    background-color: var(--thm-base);



    padding: 50px 40px;



    border-radius: 10px;



    margin-right: 40px;



}



.mp-hero-content {



    margin-bottom: 40px;



}



.mp-hero-title {



    font-size: 52px;



    font-weight: 700;



    color: var(--white);



    margin-bottom: 15px;



}



.mp-hero-subtitle {



    font-size: 24px;



    color: var(--white);



    margin-bottom: 0;



}

/* hero section end */


/* info section start */

.mp-info-section {
    padding-bottom: 80px;
}

.mp-info-list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mp-info-list-item {
    text-align: center;
}

.mp-info-list-item-icon {
    font-size: 22px;
    border: 2px solid var(--thm-base);
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    color: var(--thm-base);
    margin-bottom: 20px;
}

.mp-info-list-item-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--thm-base);
}


/* info section end */


/*  feature section start */

.mp-section-heading {
    margin-bottom: 50px;
}

.mp-section-title {
    color: var(--thm-base);
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.mp-section-title::after {
    content: '';
    position: absolute;
    content: "";
    width: 50px;
    height: 5px;
    background-color: #84BD5A;
    bottom: -10px;
    left: 0;
    border-radius: 5px;
}

.mp-feature-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.035);
}

.mp-feature-item {
    text-align: center;
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.mp-feature-item-icon {
    display: inline-block;
    padding: 20px;
    background-color: var(--thm-hover);
    transition: all 0.5ms linear;
    border-radius: 50%;
    margin-bottom: 20px;
}

.mp-feature-item-icon img {
    width: 50px;
}

.mp-feature-item-title {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 600;
}

.mp-feature-item-description {
    color: #888888;
    margin-bottom: 0;
}


/*  feature section end */


/* about section start */

.mp-about-section {
    padding: 80px 0;
}

.mp-about-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--thm-base);
}

.mp-about-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--thm-base);
}

.mp-about-info-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mp-about-info-item {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    color: var(--thm-text);
}

.mp-about-info-item-icon {
    font-size: 16px;
    margin-right: 10px;
}

.mp-about-info-item-text {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}


/* about section end */


/* process section start */

.mp-process-section {
    margin-bottom: 0;
    padding: 80px 0;
    background-image: url('../image/process-img.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.mp-process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(50, 33, 83, 0.9);
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mp-process-section .mp-section-title {
    color: var(--white);
}

.mp-process-step {
    padding: 40px 50px;
    background-color: var(--white);
    border-radius: 0 0 40px 0;
    height: 100%;
}

.mp-process-item-title {
    font-size: 22px;
    color: var(--thm-base);
    font-weight: 600;
}

.mp-process-item-icon {
    margin: 30px 0;
}

.mp-process-item-icon img {
    width: 60px;
}

.mp-process-item-text {
    margin-bottom: 0;
}

.mp-process-btn {
    margin-top: 30px;
    text-align: center;
}

.mp-process-btn .btn-primary {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--thm-base);
}

.mp-process-btn .btn-primary:hover {
    background-color: var(--thm-hover);
    border-color: var(--thm-hover);
    color: var(--white);
}


/* process section end */


/* testimonial section start */

.mp-testimonial-section {
    padding: 80px 0;
}

.mp-testimonal-slider {
    background-color: rgba(50, 33, 83, 0.04);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.mp-testimonial-content {
    margin-bottom: 20px;
}

.mp-testimonial-description {
    font-size: 18px;
    margin-bottom: 0;
}

.mp-testimonial-profile {
    display: flex;
    align-items: center;
}

.mp-testimonial-profile-image {
    margin-right: 20px;
}

.mp-testimonial-profile-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.mp-testimonial-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--thm-base);
    margin-bottom: 5px;
}

.mp-testimonial-designation {
    margin-bottom: 0;
    font-style: italic;
}

.mp-testimonal-slider .slick-arrow {
    left: unset;
    right: 40px;
    top: unset;
    bottom: 25px;
    transform: translateY(0);
}

.mp-testimonal-slider .slick-next {
    transform: rotate(180deg);
}

.mp-testimonal-slider .slick-prev {
    right: 90px;
}

.mp-testimonal-slider.slick-slider {
    margin: 0;
}


/* testimonial section end */


/* call to action section start */

.mp-cta-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.035);
    position: relative;
    z-index: 1;
}

.mp-cta-bg {
    background-image: url('../image/get_started.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    opacity: .04;
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mp-cta-wrapper {
    text-align: center;
}

.mp-cta-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--thm-base);
    margin-bottom: 15px;
}

.mp-cta-descrption {
    margin-bottom: 30px;
    font-size: 18px;
}


/* call to action section end */


/* faq section start */

.mp-faq-section {
    padding: 80px 0;
}

.mp-faq-section .mp-section-heading {
    text-align: center;
}

.mp-faq-section .mp-section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.accordion-item {
    border: 1px solid #d8c5ff !important;
    border-radius: 10px !important;
    color: var(--thm-text);
}

.accordion-item:not(:last-child) {
    margin-bottom: 15px;
}

.accordion-button {
    border-radius: 10px !important;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--thm-base);
    align-items: center;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--thm-base);
}

.accordion-body {
    padding: 10px 20px;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--thm-base);
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../image/faq-arrow.svg');
}

.accordion-button::after {
    background-image: url('../image/faq-arrow.svg');
}


/* ================Home Page end=================== */


/* ================Footer start=================== */

.mp-footer-section {
    border-top: 5px solid #84BD5A;
    background-color: var(--thm-base);
}

.mp-footer-center {
    padding: 60px 0 40px;
}

.mp-footer-logo {
    display: block;
    margin-bottom: 20px;
}

.mp-footer-about-description {
    color: #dddddd;
    margin-bottom: 0px;
}

.mp-footer-block-title {
    color: var(--thm-hover);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.mp-footer-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mp-footer-block-item:not(:last-child) {
    margin-bottom: 10px;
}

.mp-footer-block-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.mp-footer-block-link:hover {
    color: var(--thm-hover);
}

.mp-footer-social-list {
    display: flex;
    align-items: center;
}

.mp-footer-social-item:not(:last-child) {
    margin-right: 10px;
}

.mp-footer-social-link {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 5px;
    background-color: var(--white);
    text-align: center;
    display: inline-block;
    color: var(--thm-base);
    fill: var(--thm-base);
    transition: all 0.3s ease;
}

.mp-footer-social-link:hover {
    background-color: var(--thm-hover);
    color: var(--white);
    fill: var(--white);
}

.mp-footer-bottom__inner {
    padding: 25px 0;
    border-top: 1px solid #484B56;
}

.mp-copyright-text {
    font-size: 16px;
    color: #AFB0B7;
    text-align: center;
    margin-bottom: 0;
}


/* ================Footer end=================== */


/* ================about page Start=================== */

.mp-other-page {
    margin: 60px 0;
}

.mp-page-left {
    background-color: rgba(0, 0, 0, 0.035);
    padding: 40px;
    border-radius: 15px;
}

.mp-short-form-wrapper {
    padding: 25px;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-radius: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.mp-page-details-card+.mp-page-details-card {
    margin-top: 50px;
}

.mp-page-card-description a {
    color: var(--thm-text);
    transition: all 0.3s ease-in-out;
}

.mp-page-card-description a:hover {
    color: var(--thm-hover);
}

.mp-short-form-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--thm-base);
    margin-bottom: 20px;
}

.mp-short-form-label {
    color: var(--thm-text);
}

.mp-short-form-label a {
    color: var(--thm-text);
}

.mp-short-form-label a:hover {
    color: var(--thm-hover);
}

.privacy-table {
    background-color: var(--white);
}


/* ================about page end=================== */


/* ================faq page start=================== */

.mp-page-details-card-title {
    font-size: 22px;
    color: var(--thm-base);
    font-weight: 600;
    margin-bottom: 20px;
}

.mp-page-details-card .accordion-button {
    font-size: 16px;
    padding: 10px 15px;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.035);
    color: var(--thm-base);
    font-weight: 400;
    border-radius: 0px !important;
}

.mp-page-details-card .accordion-item {
    border-color: var(--thm-base) !important;
}


/* ================faq page end=================== */


/* ================error page css============== */

.mp-error-section {
    padding: 100px 0;
}

.mp-error-content {
    text-align: center;
}

.mp-error-image {
    text-align: center;
    margin-bottom: 20px;
}

.mp-error-image-heading {
    font-size: 280px;
    font-weight: 700;
    color: var(--thm-base);
    line-height: 280px;
    margin-bottom: 0;
}

.mp-error-image-heading span {
    color: var(--thm-hover);
}

.mp-error-title {
    font-size: 40px;
    color: var(--thm-base);
    font-weight: 700;
}

.mp-error-description {
    margin-bottom: 20px;
}

.mp-error-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}


/* ==============coregistration page start============== */

.ts-coregistration-wrapper {
    margin: 100px 0;
    background-color: rgba(0, 0, 0, 0.035);
    padding: 50px;
}

.ts-coregistration-text {
    margin-bottom: 24px;
}

.ts-coregistration-title {
    font-size: 42px;
    font-family: var(--thm-font);
    margin-bottom: 0;
    color: var(--thm-base);
    font-weight: 700;
}

.ts-coregistration-description {
    font-size: 17px;
}

.coregistration-image {
    margin: 35px 0;
}

.coregistration-image img {
    width: 400px;
}

.ts-coregistration-btn {
    margin-bottom: 24px;
}

.ts-coregistration-note {
    font-size: 14px;
    margin-bottom: 0;
}



/* ==============coregistration page end============== */



/* ==============offwall page start============== */

.ts-offwall-section {
    padding: 80px 0;
}

.ts-offwall-card {
    background-color: #f2f9f9;
    padding: 20px;
    height: calc(100% - 24px);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ts-offwall-card-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.ts-offwall-card-content {
    flex: 1;
    text-align: left;
    margin-right: 20px;
}

.ts-offwall-card-title {
    color: var(--thm-base);
    font-weight: 600;
}

.ts-offwall-card-description {
    margin-bottom: 0px;
}
/* ================Media Query start======================= */

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

@media (min-width: 992px) {
    .mp-footer-block {
        padding-left: 30px;
    }
    .mp-footer-social-block {
        padding-left: 30px;
    }
    .mp-page-right {
        position: sticky;
        top: 90px;
        margin-bottom: 0;
        overflow-y: auto;
    }
}

@media (max-width: 1199px) {}

@media (max-width: 991px) {
    .navbar-toggler {
        order: 2;
        margin-left: 15px;
        z-index: 101;
    }
    .header-btn {
        order: 1;
        margin-left: auto;
    }
    .navbar-collapse {
        position: fixed;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 100;
    }
    .navbar-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        background-color: #f4f4f4;
        overflow-y: auto;
    }
    .navbar-nav .nav-item+.nav-item {
        margin-left: 0;
    }
    .navbar-brand img {
        width: 145px;
    }
    .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header-btn {
        padding: 8px 15px;
    }
    .mp-feature-section {
        padding: 60px 0;
    }
    .mp-feature-section .col-12:not(:last-child) .mp-feature-item {
        height: calc(100% - 24px);
        margin-bottom: 24px;
    }
    .mp-process-section .col-12:not(:last-child) .mp-process-step {
        margin-bottom: 24px;
        height: calc(100% - 24px);
    }
    .mp-process-btn {
        margin-top: 20px;
    }
    .mp-footer-block {
        margin-bottom: 24px;
    }
    .mp-footer-about {
        margin-bottom: 24px;
    }
    .mp-footer-center {
        padding: 50px 0 20px;
    }
    .mp-footer-bottom__inner {
        padding: 20px 0;
    }
    .mp-hero-section {
        padding: 60px 0;
    }
    .mp-hero-image {
        margin-top: 30px;
    }
    .mp-multi-step-wrapper {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .mp-info-section {
        padding-bottom: 60px;
    }
    .mp-info-list-item-title {
        font-size: 20px;
    }
    .mp-section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .mp-feature-item-title {
        font-size: 18px;
    }
    .mp-feature-item-icon {
        padding: 15px;
        margin-bottom: 15px;
    }
    .mp-feature-item-icon img {
        width: 36px;
    }
    .mp-about-section {
        padding: 60px 0;
    }
    .mp-about-title {
        font-size: 28px;
    }
    .mp-about-subtitle {
        font-size: 20px;
    }
    .mp-about-info-item-icon {
        font-size: 14px;
    }
    .mp-about-info-item-text {
        font-size: 14px;
    }
    .mp-process-section {
        padding: 60px 0;
    }
    .mp-process-item-title {
        font-size: 20px;
    }
    .mp-process-item-icon {
        margin: 20px 0;
    }
    .mp-process-item-icon img {
        width: 50px;
    }
    .mp-testimonial-section {
        padding: 60px 0;
    }
    .mp-testimonial-description {
        font-size: 16px;
    }
    .mp-cta-section {
        padding: 60px 0;
    }
    .mp-cta-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .mp-cta-descrption {
        margin-bottom: 20px;
        font-size: 16px;
    }
    .mp-faq-section {
        padding: 60px 0;
    }
    .accordion-button {
        font-size: 16px;
    }
    .mp-other-page {
        margin: 40px 0;
    }
    .mp-short-form-title {
        font-size: 24px;
    }
    .mp-page-left {
        padding: 30px;
    }
    .mp-page-details-card-title {
        margin-bottom: 15px;
        font-size: 18px;
    }
    .mp-page-details-card+.mp-page-details-card {
        margin-top: 35px;
    }

    .mp-error-image-heading {
        font-size: 200px;
        line-height: 200px;
    }

    .mp-error-title {
      font-size: 32px;
    }

    .mp-error-section {
      padding: 80px 0;
    }

    .ts-coregistration-title {
        font-size: 32px;
    }

    .ts-coregistration-wrapper {
        padding: 40px;
    }

    .ts-offwall-section {
     padding: 60px 0px;
    }
  .mp-hero-left {



        margin-bottom: 30px;



        max-width: 500px;



        margin-left: auto;



        margin-right: auto;



        padding: 30px 40px;



    }



    .mp-hero-content {



        margin-bottom: 0;



    }



    .mp-hero-title {



        font-size: 36px;



        margin-bottom: 10px;



    }



    .mp-hero-subtitle {



        font-size: 22px;



    }



    .mp-hero-image {



        display: none;



    }
}

@media (max-width: 767px) {
    .mp-info-list {
        flex-direction: column;
    }
    .mp-info-list-item:not(:last-child) {
        margin-bottom: 24px;
    }
    .mp-info-list-item-icon {
        font-size: 18px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    .mp-info-list-item-title {
        font-size: 18px;
    }
    .mp-footer-block-title {
        margin-bottom: 15px;
    }
    .mp-hero-section {
        padding: 40px 0;
    }
    .mp-multi-step-wrapper {
        padding: 20px 20px;
    }
    .mp-step-title {
        font-size: 22px;
    }
    .mp-info-section {
        padding-bottom: 40px;
    }
    .mp-feature-section {
        padding: 40px 0;
    }
    .mp-section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .mp-section-title br {
        display: none;
    }
    .mp-section-heading {
        margin-bottom: 40px;
    }
    .mp-about-section {
        padding: 40px 0;
    }
    .mp-about-image {
        margin-bottom: 24px;
    }
    .mp-about-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .mp-about-subtitle {
        font-size: 18px;
    }
    .mp-process-section {
        padding: 40px 0;
    }
    .mp-process-item-title {
        font-size: 18px;
    }
    .mp-testimonial-section {
        padding: 40px 0;
    }
    .mp-testimonal-image {
        margin-bottom: 15px;
    }
    .mp-testimonial-description {
        font-size: 15px;
    }
    .mp-cta-section {
        padding: 40px 0;
    }
    .mp-cta-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .mp-cta-descrption {
        margin-bottom: 15px;
        font-size: 15px;
    }
    .mp-faq-section {
        padding: 40px 0;
    }
    .mp-other-page {
        margin: 30px 0;
    }
    .mp-page-left {
        padding: 20px;
    }
    .mp-page-details-card+.mp-page-details-card {
        margin-top: 25px;
    }
    .mp-page-details-card-title {
        margin-bottom: 10px;
    }
    .mp-error-image-heading {
        font-size: 150px;
        line-height: 150px;
    }

    .mp-error-title {
        font-size: 26px;
    }

    .mp-error-section {
        padding: 60px 0;
    }

    .ts-coregistration-title {
        font-size: 28px;
    }

    .ts-coregistration-wrapper {
        padding: 30px;
    }

    .ts-offwall-card {
        flex-direction: column;
    }

    .ts-offwall-card {
        gap: 20px;
    }

    .ts-offwall-section {
        padding: 40px 0px;
    }
 .mp-hero-left {



        padding: 20px 30px;



    }



    .mp-hero-title {



        font-size: 28px;



        margin-bottom: 5px;



    }



    .mp-hero-subtitle {



        font-size: 18px;



    }
}


/* ================Media Query end======================= */.color-red{  color:red;}