:root {
    --clr-black: #192020;
    --clr-white: #ffffff;
    --clr-light-green: #b5f1cc;
    --clr-light-pink: #ffc0d9;
    --clr-light-purple: #d0bfff;
    --clr-off-white: #f0f0f0;
    --clr-grey-white: #f6f8fb;
    --clr-light-orenge: #ffd8c0;
    --clr-light-grey-2: #f7f7f7;
    --clr-dark-black: #3b4040;
    --clr-light-grey: #252b2b;
    --clr-off-grey: #f7f7f7;
    --clr-dark-grey: #e8e8e8;
    --clr-light-blue: #9fe9f6;
    --clr-blue: #ed184f;
    --clr-ppc-black: #111;
    --heading-custom-color: #ececec;
    --custom-color: #aaaaaa;
    --clr-light-brown: #ffd8c0;
    --clr-light-gray: #524f4e;
}

button {
    padding: 0;
    margin: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: 0;
    cursor: pointer;
}

a {
    display: inline;

    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a {
    margin: 0;
}

img {
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

a:hover,
a:focus,
a:visited,
a:focus-within {
    text-decoration: none;
}

body {
    font-family: "Poppins";
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media only screen and (min-width: 1500px) {
    .mi-container {
        max-width: 1470px;
    }
}

@media only screen and (max-width: 991px) {
    .mi-container {
        width: 100%;
    }
}

.br-40 {
    border-radius: 40px;
}

@media screen and (max-width: 1023px) {
    .br-40 {
        border-radius: 16px;
    }
}

.icon {
    display: block;
    position: relative;
}

.icon::before {
    content: "";
    background-color: #192020;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition:
        opacity 0.3s ease,
        background-color 0.3s ease;
}

.icon-west {
    width: 28px;
    height: 28px;
}

.icon-west::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23e8eaed'%3E%3Cpath d='M233-440h607q17 0 28.5-11.5T880-480q0-17-11.5-28.5T840-520H233l155-156q11-11 11.5-27.5T388-732q-11-11-28-11t-28 11L108-508q-6 6-8.5 13T97-480q0 8 2.5 15t8.5 13l224 224q11 11 27.5 11t28.5-11q12-12 12-28.5T388-285L233-440Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23e8eaed'%3E%3Cpath d='M233-440h607q17 0 28.5-11.5T880-480q0-17-11.5-28.5T840-520H233l155-156q11-11 11.5-27.5T388-732q-11-11-28-11t-28 11L108-508q-6 6-8.5 13T97-480q0 8 2.5 15t8.5 13l224 224q11 11 27.5 11t28.5-11q12-12 12-28.5T388-285L233-440Z'/%3E%3C/svg%3E");
}

.icon-east {
    width: 28px;
    height: 28px;
}

.icon-east::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23e8eaed'%3E%3Cpath d='M727-440H120q-17 0-28.5-11.5T80-480q0-17 11.5-28.5T120-520h607L572-676q-11-11-11.5-27.5T572-732q11-11 28-11t28 11l224 224q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L628-228q-11 11-27.5 11T572-228q-12-12-12-28.5t12-28.5l155-155Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23e8eaed'%3E%3Cpath d='M727-440H120q-17 0-28.5-11.5T80-480q0-17 11.5-28.5T120-520h607L572-676q-11-11-11.5-27.5T572-732q11-11 28-11t28 11l224 224q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L628-228q-11 11-27.5 11T572-228q-12-12-12-28.5t12-28.5l155-155Z'/%3E%3C/svg%3E");
}

.icon-check-circle {
    width: 28px;
    height: 28px;
}

.icon-check-circle::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23e8eaed'%3E%3Cpath d='m424-408-86-86q-11-11-28-11t-28 11q-11 11-11 28t11 28l114 114q12 12 28 12t28-12l226-226q11-11 11-28t-11-28q-11-11-28-11t-28 11L424-408Zm56 328q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23e8eaed'%3E%3Cpath d='m424-408-86-86q-11-11-28-11t-28 11q-11 11-11 28t11 28l114 114q12 12 28 12t28-12l226-226q11-11 11-28t-11-28q-11-11-28-11t-28 11L424-408Zm56 328q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/%3E%3C/svg%3E");
}

.icon-arrow {
    width: 24px;
    height: 24px;
}

.icon-arrow::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cmask id='mask0_1012_4796' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='25'%3E%3Crect y='0.5' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1012_4796)'%3E%3Cpath d='M16.9989 8.5538L6.07972 19.473C5.94125 19.6115 5.76722 19.6823 5.55762 19.6855C5.348 19.6887 5.17076 19.6179 5.02589 19.473C4.88103 19.3282 4.80859 19.1525 4.80859 18.9461C4.80859 18.7397 4.88103 18.5641 5.02589 18.4192L15.9451 7.49998H9.74892C9.53644 7.49998 9.35832 7.42807 9.21457 7.28425C9.07082 7.14045 8.99894 6.96225 8.99894 6.74965C8.99894 6.53707 9.07082 6.35898 9.21457 6.2154C9.35832 6.0718 9.53644 6 9.74892 6H17.5951C17.8512 6 18.0658 6.08663 18.239 6.25988C18.4123 6.43311 18.4989 6.64777 18.4989 6.90385V14.75C18.4989 14.9625 18.427 15.1406 18.2832 15.2844C18.1394 15.4281 17.9612 15.5 17.7486 15.5C17.536 15.5 17.3579 15.4281 17.2143 15.2844C17.0707 15.1406 16.9989 14.9625 16.9989 14.75V8.5538Z' fill='%23192020'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    mask-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cmask id='mask0_1012_4796' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='25'%3E%3Crect y='0.5' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1012_4796)'%3E%3Cpath d='M16.9989 8.5538L6.07972 19.473C5.94125 19.6115 5.76722 19.6823 5.55762 19.6855C5.348 19.6887 5.17076 19.6179 5.02589 19.473C4.88103 19.3282 4.80859 19.1525 4.80859 18.9461C4.80859 18.7397 4.88103 18.5641 5.02589 18.4192L15.9451 7.49998H9.74892C9.53644 7.49998 9.35832 7.42807 9.21457 7.28425C9.07082 7.14045 8.99894 6.96225 8.99894 6.74965C8.99894 6.53707 9.07082 6.35898 9.21457 6.2154C9.35832 6.0718 9.53644 6 9.74892 6H17.5951C17.8512 6 18.0658 6.08663 18.239 6.25988C18.4123 6.43311 18.4989 6.64777 18.4989 6.90385V14.75C18.4989 14.9625 18.427 15.1406 18.2832 15.2844C18.1394 15.4281 17.9612 15.5 17.7486 15.5C17.536 15.5 17.3579 15.4281 17.2143 15.2844C17.0707 15.1406 16.9989 14.9625 16.9989 14.75V8.5538Z' fill='%23192020'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.industry .ptb-120 {
    padding: 120px 0;
}

@media screen and (max-width: 1599px) {
    .industry .ptb-120 {
        padding: 120px 0;
    }
}

@media screen and (max-width: 1199px) {
    .industry .ptb-120 {
        padding: 90px 0;
    }
}

@media screen and (max-width: 991px) {
    .industry .ptb-120 {
        padding: 70px 0;
    }
}

@media screen and (max-width: 767px) {
    .industry .ptb-120 {
        padding: 70px 0;
    }
}

@media screen and (max-width: 575px) {
    .industry .ptb-120 {
        padding: 50px 0;
    }
}

.industry .pt-120 {
    padding-top: 120px;
}

@media screen and (max-width: 1599px) {
    .industry .pt-120 {
        padding-top: 120px;
    }
}

@media screen and (max-width: 1199px) {
    .industry .pt-120 {
        padding-top: 90px;
    }
}

@media screen and (max-width: 991px) {
    .industry .pt-120 {
        padding-top: 70px;
    }
}

@media screen and (max-width: 767px) {
    .industry .pt-120 {
        padding-top: 70px;
    }
}

@media screen and (max-width: 575px) {
    .industry .pt-120 {
        padding-top: 50px;
    }
}

/*industry lists nav css starts here*/

@media only screen and (max-width: 991px) {
    .industry-lists-nav {
        gap: 15px;
        overflow: hidden;
        overflow-x: scroll;
    }
}
.industry-lists-nav ul {
    display: flex;
    gap: 12px;
}

.industry-lists-nav .email-icon {
    flex: 0 0 auto;
    margin: 0 10px;
}
@media only screen and (min-width: 992px) {
    .industry-lists-nav .email-icon {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .addindstickheader {
        display: none;
    }
}

.industry-lists-nav .email-icon .btn-icon {
    background-color: #333;
    border-radius: 100%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addindstickheader {
    position: sticky;
    top: 72px;
    width: 100%;
    z-index: 999;
    max-width: calc(100vw - 12px);
}
@media only screen and (max-width: 575px) {
    .addindstickheader {
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    .addindstickheader{
        top:66px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
    .addindstickheader .container {
        padding: 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
    .addindstickheader .container-fluid {
        padding: 0;
    }
}

.real-estate-wrap-outer .industry-lists-nav .email-icon {
    padding: 5px;
}

/* ----------------------------------------- START : fintech page css ---------------------------------------- */

@font-face {
    font-family: "Phudu";
    src: url("./fonts/Phudu-SemiBold.eot");
    src:
        local("Phudu SemiBold"),
        local("Phudu-SemiBold"),
        url("./fonts/Phudu-SemiBold.eot?#iefix") format("embedded-opentype"),
        url("./fonts/Phudu-SemiBold.woff2") format("woff2"),
        url("./fonts/Phudu-SemiBold.woff") format("woff"),
        url("./fonts/Phudu-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src:
        local("Outfit Medium"),
        local("Outfit-Medium"),
        url("./fonts/Outfit-Medium.woff2") format("woff2"),
        url("./fonts/Outfit-Medium.woff") format("woff"),
        url("./fonts/Outfit-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src:
        local("Outfit Bold"),
        local("Outfit-Bold"),
        url("./fonts/Outfit-Bold.woff2") format("woff2"),
        url("./fonts/Outfit-Bold.woff") format("woff"),
        url("./fonts/Outfit-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src:
        local("Outfit ExtraBold"),
        local("Outfit-ExtraBold"),
        url("./fonts/Outfit-ExtraBold.woff2") format("woff2"),
        url("./fonts/Outfit-ExtraBold.woff") format("woff"),
        url("./fonts/Outfit-ExtraBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src:
        local("Outfit Black"),
        local("Outfit-Black"),
        url("./fonts/Outfit-Black.woff2") format("woff2"),
        url("./fonts/Outfit-Black.woff") format("woff"),
        url("./fonts/Outfit-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src:
        local("Outfit SemiBold"),
        local("Outfit-SemiBold"),
        url("./fonts/Outfit-SemiBold.woff2") format("woff2"),
        url("./fonts/Outfit-SemiBold.woff") format("woff"),
        url("./fonts/Outfit-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src:
        local("Outfit Regular"),
        local("Outfit-Regular"),
        url("./fonts/Outfit-Regular.woff2") format("woff2"),
        url("./fonts/Outfit-Regular.woff") format("woff"),
        url("./fonts/Outfit-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src:
        local("Outfit Light"),
        local("Outfit-Light"),
        url("./fonts/Outfit-Light.woff2") format("woff2"),
        url("./fonts/Outfit-Light.woff") format("woff"),
        url("./fonts/Outfit-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

.ind-fintech-font-phudu {
    font-family: "Phudu", sans-serif;
    font-weight: 600;
}

.ind-fintech {
    --ind-fin-black: #121212;
    --ind-fin-white: #ffffff;
    --ind-fin-light-green: #bde54e;
    --ind-fin-green: #0a3c1c;
    --ind-fin-isabelline: #f5f2eb;
    --ind-fin-bright-gray: #e6ebea;
    --ind-fin-dark-charcoal: #333333;

    color: var(--ind-fin-black);
    font-family: "Outfit";
}

.ind-fintech-bg-isabelline {
    background-color: var(--ind-fin-isabelline);
}

.ind-fintech-bg-bright-gray {
    background-color: var(--ind-fin-bright-gray);
}

.ind-fintech .ind-fintech-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--ind-fin-light-green);
    border-radius: 100rem;
    color: var(--ind-fin-black);
    padding: 8px;
    padding-left: 26px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.ind-fintech .ind-fintech-button .ind-fintech-button-icon {
    height: 42px;
    width: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ind-fin-white);
    border-radius: 100rem;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .ind-fintech .ind-fintech-button {
        padding-left: 18px;
    }

    .ind-fintech .ind-fintech-button .ind-fintech-button-icon {
        height: 30px;
        width: 30px;
        padding: 4px;
        transform: rotate(45deg);
    }
}

.ind-fintech .ind-fintech-button:focus,
.ind-fintech .ind-fintech-button:hover {
    box-shadow: 0 0 0 2px #ffffff;
}

.ind-fintech .ind-fintech-button:focus .ind-fintech-button-icon,
.ind-fintech .ind-fintech-button:hover .ind-fintech-button-icon {
    transform: rotate(45deg);
}

.ind-fintech .ind-fintech-button.ind-fintech-button-black {
    background-color: var(--ind-fin-black);
    color: var(--ind-fin-white);
}

.ind-fintech .ind-fintech-button.ind-fintech-button-black-icon .ind-fintech-button-icon {
    background-color: var(--ind-fin-black);
}

.ind-fintech .ind-fintech-button.ind-fintech-button-black-icon .ind-fintech-button-icon .icon::before {
    background-color: var(--ind-fin-white);
}

/* --------------------------- SATRT : container css --------------------------- */

.ind-fintech-container {
    max-width: 1624px;
    margin: 0 auto;
}
/* --------------------------- END : container css --------------------------- */

/* --------------------------- SATRT : padding classes --------------------------- */
.ind-fintech-ptb-90 {
    padding: 90px 0;
}

.ind-fintech .ind-fintech-thin {
    font-weight: 100;
}

.ind-fintech .ind-fintech-extralight {
    font-weight: 200;
}

.ind-fintech .ind-fintech-light {
    font-weight: 300;
}

.ind-fintech .ind-fintech-normal {
    font-weight: 400;
}

.ind-fintech .ind-fintech-medium {
    font-weight: 500;
}

.ind-fintech .ind-fintech-semibold {
    font-weight: 600;
}

.ind-fintech .ind-fintech-bold {
    font-weight: 700;
}

.ind-fintech .ind-fintech-extrabold {
    font-weight: 800;
}

.ind-fintech .ind-fintech-black {
    font-weight: 900;
}

.ind-fintech-text-charcoal {
    color: var(--ind-fin-dark-charcoal);
}

@media screen and (max-width: 1599px) {
    .ind-fintech-ptb-90 {
        padding: 70px 0;
    }
}
@media screen and (max-width: 1199px) {
    .ind-fintech-ptb-90 {
        padding: 55px 0;
    }
}
@media screen and (max-width: 991px) {
    .ind-fintech-ptb-90 {
        padding: 50px 0;
    }
}
@media screen and (max-width: 767px) {
    .ind-fintech-ptb-90 {
        padding: 45px 0;
    }
}
@media screen and (max-width: 575px) {
    .ind-fintech-ptb-90 {
        padding: 40px 0;
    }
}

.ind-fintech-pb-90 {
    padding-bottom: 90px;
}

@media screen and (max-width: 1599px) {
    .ind-fintech-pb-90 {
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech-pb-90 {
        padding-bottom: 55px;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech-pb-90 {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .ind-fintech-pb-90 {
        padding-bottom: 45px;
    }
}

@media screen and (max-width: 575px) {
    .ind-fintech-pb-90 {
        padding-bottom: 35px;
    }
}
/* --------------------------- END : padding classes --------------------------- */

/* --------------------------- SATRT : Font classes --------------------------- */

.ind-fintech .ind-fintech-font-100 {
    font-size: 100px;
    line-height: 110%;
}

@media only screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-font-100 {
        font-size: 70px;
        line-height: 105%;
    }
}

@media only screen and (max-width: 1365px) {
    .ind-fintech .ind-fintech-font-100 {
        font-size: 60px;
        line-height: 110%;
    }
}

@media only screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-font-100 {
        font-size: 48px;
        line-height: 110%;
    }
}

@media only screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-font-100 {
        font-size: 40px;
        line-height: 108%;
    }
}

@media only screen and (max-width: 375px) {
    .ind-fintech .ind-fintech-font-100 {
        font-size: 36px;
        line-height: 105%;
    }
}

.ind-fintech .ind-fintech-font-42 {
    font-size: 42px;
    line-height: 3.4rem;
    letter-spacing: -0.04rem;
}
@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-font-42 {
        font-size: 38px;
        line-height: 3.2rem;
    }
}
@media screen and (max-width: 1365px) {
    .ind-fintech .ind-fintech-font-42 {
        font-size: 36px;
        line-height: 3rem;
    }
}
@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-font-42 {
        font-size: 32px;
        line-height: 2.6rem;
    }
}
@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-font-42 {
        font-size: 30px;
        line-height: 2.4rem;
    }
}
@media screen and (max-width: 575px) {
    .ind-fintech .ind-fintech-font-42 {
        font-size: 26px;
        line-height: 2.3rem;
    }
}

.font-40 {
    font-size: 40px;
    line-height: 3.2rem;
    letter-spacing: -0.04rem;
}

@media screen and (max-width: 1599px) {
    .font-40 {
        font-size: 36px;
        line-height: 3.2rem;
    }
}

@media screen and (max-width: 1365px) {
    .font-40 {
        font-size: 34px;
        line-height: 3rem;
    }
}

@media screen and (max-width: 1199px) {
    .font-40 {
        font-size: 30px;
        line-height: 2.6rem;
    }
}

@media screen and (max-width: 991px) {
    .font-40 {
        font-size: 28px;
        line-height: 2.4rem;
    }
}

@media screen and (max-width: 575px) {
    .font-40 {
        font-size: 26px;
        line-height: 2.3rem;
    }
}

.font-18 {
    font-size: 18px;
    line-height: 1.8rem;
}

@media screen and (max-width: 1599px) {
    .font-18 {
        font-size: 16px;
        line-height: 1.6rem;
    }
}

.font-22 {
    font-size: 22px;
    line-height: 2rem;
}

@media screen and (max-width: 1365px) {
    .font-22 {
        font-size: 21px;
        line-height: 1.8rem;
    }
}

@media screen and (max-width: 991px) {
    .font-22 {
        font-size: 20px;
        line-height: 1.7rem;
    }
}

@media screen and (max-width: 575px) {
    .font-22 {
        font-size: 18px;
        line-height: 1.5rem;
    }
}

.font-20 {
    font-size: 1.25rem;
    line-height: 1.875rem;
}

@media screen and (max-width: 767px) {
    .font-20 {
        font-size: 18px;
        line-height: 1.8rem;
    }
}

.ind-fintech .ind-fintech-font-38 {
    font-size: 38px;
    line-height: 1.5;
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-font-38 {
        font-size: 32px;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-font-38 {
        font-size: 28px;
    }
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-font-38 {
        font-size: 24px;
    }
}

.ind-fintech .ind-fintech-font-34 {
    font-size: 34px;
    line-height: 3rem;
}
@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-font-34 {
        font-size: 28px;
        line-height: 2.6rem;
    }
}
@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-font-34 {
        font-size: 26px;
        line-height: 2.2rem;
    }
}
@media screen and (max-width: 575px) {
    .ind-fintech .ind-fintech-font-34 {
        font-size: 24px;
        line-height: 2.2rem;
    }
}

.ind-fintech .ind-fintech-font-32 {
    font-size: 32px;
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-font-32 {
        font-size: 26px;
        line-height: 2.6rem;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-font-32 {
        font-size: 24px;
        line-height: 2.2rem;
    }
}

.ind-fintech .ind-fintech-font-28 {
    font-size: 28px;
    line-height: 2rem;
}
@media screen and (max-width: 1365px) {
    .ind-fintech .ind-fintech-font-28 {
        font-size: 25px;
        line-height: 1.8rem;
    }
}
@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-font-28 {
        font-size: 22px;
        line-height: 1.7rem;
    }
}
@media screen and (max-width: 575px) {
    .ind-fintech .ind-fintech-font-28 {
        font-size: 20px;
        line-height: 1.5rem;
    }
}

.ind-fintech .ind-fintech-font-24 {
    font-size: 24px;
    line-height: 2rem;
}
@media screen and (max-width: 1365px) {
    .ind-fintech .ind-fintech-font-24 {
        font-size: 22px;
        line-height: 1.9rem;
    }
}
@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-font-24 {
        font-size: 18px;
        line-height: 2rem;
    }
}
@media screen and (max-width: 1023px) {
    .ind-fintech .ind-fintech-font-24 {
        font-size: 18px;
        line-height: 1.8rem;
    }
}

.ind-fintech .ind-fintech-font-20 {
    font-size: 1.25rem;
    line-height: 1.875rem;
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-font-20 {
        font-size: 18px;
        line-height: 1.8rem;
    }
}

.ind-fintech .ind-fintech-font-18 {
    font-size: 18px;
    line-height: 1.8rem;
}
@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-font-18 {
        font-size: 16px;
        line-height: 1.6rem;
    }
}
@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-font-18 {
        font-size: 16px;
        line-height: 1.5rem;
    }
}

.ind-fintech .ind-fintech-font-17 {
    font-size: 17px;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-font-17 {
        font-size: 16px;
    }
}

.ind-fintech .ind-fintech-font-16 {
    font-size: 16px;
    line-height: 1.8rem;
}

.ind-fintech .ind-fintech-hero {
    background-image: url("./img/webp/big/hero-bg.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 50px 0;
    color: var(--ind-fin-white);
    margin: 40px 40px 0;
    border-radius: 50px 50px 0 0;
}

@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-hero {
        border-radius: 40px 40px 0 0;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-hero {
        border-radius: 32px 32px 0 0;
        margin: 20px 20px 0;
        padding: 20px 20px 0;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-hero {
        border-radius: 24px 24px 0 0;
        margin: 12px 12px 0;
    }
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-hero {
        border-radius: 15px 15px 0 0;
        margin: 10px 10px 0;
        padding: 15px 15px 0;
    }

    .ind-fintech .ind-fintech-hero .ind-fintech-container {
        padding: 0;
    }
}

.ind-fintech .ind-fintech-hero .ind-fintech-hero-heading {
    max-width: 1028px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

@media screen and (max-width: 1439px) {
    .ind-fintech .ind-fintech-hero .ind-fintech-hero-heading {
        margin-bottom: 20px;
    }
}

.ind-fintech .ind-fintech-hero .ind-fintech-hero-heading span {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.ind-fintech .ind-fintech-hero .ind-fintech-hero-heading span::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 18px;
    z-index: -1;
    background-color: var(--ind-fin-light-green);
}

@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-hero .ind-fintech-hero-heading span::after {
        height: 8px;
        bottom: -4px;
    }
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-hero .ind-fintech-hero-heading span::after {
        height: 5px;
    }
}

.ind-fintech .ind-fintech-hero .ind-fintech-hero-text {
    max-width: 1210px;
    margin: 0 auto;
    padding-bottom: 30px;
    color: #e8ede2;
}

.ind-fintech .ind-fintech-hero .ind-fintech-hero-image {
    max-width: 940px;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-hero .ind-fintech-hero-image {
        max-width: 700px;
    }
}

.ind-fintech .ind-fintech-header {
    background-color: var(--ind-fin-light-green);
    margin: 0 40px;
    max-width: calc(100% - 80px);
    overflow: hidden;
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-header {
        max-width: calc(100% - 40px);
        margin: 0 20px;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-header {
        max-width: calc(100% - 24px);
        margin: 0 auto;
    }
}

.ind-fintech .ind-fintech-header ul li a {
    padding: 11px 20px;
    display: inline-block;
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-header ul li a {
        padding: 10px 16px;
    }
}

.ind-fintech .ind-fintech-header ul li a.active,
.ind-fintech .ind-fintech-header ul li a:focus,
.ind-fintech .ind-fintech-header ul li a:hover {
    background-color: var(--ind-fin-green);
    color: var(--ind-fin-white);
}

.ind-fintech .ind-fintech-header ul li {
    display: flex;
    align-items: center;
}

.ind-fintech .ind-fintech-header ul {
    white-space: nowrap;
    align-items: center;
    gap: 6px;
}

.ind-fintech .ind-fintech-header ul::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-header ul {
        overflow-y: hidden;
        gap: 10px;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-header ul {
        padding-left: 10px;
    }
}

.ind-fintech .ind-fintech-header .industry-nav-outer {
    padding: 10px 0;
}

.ind-fintech .ind-fintech-header .ind-fintech-header-link {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--ind-fin-green);
    color: var(--ind-fin-white);
    position: relative;
    margin-left: 8px;
}

@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-header .ind-fintech-header-link {
        margin: 0;
        padding: 8px 20px;
    }
}

.ind-fintech .ind-fintech-header .ind-fintech-header-link::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 50vw;
    height: 130px;
    background-color: var(--ind-fin-green);
    pointer-events: none;
    z-index: 0;
}

@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-header .ind-fintech-header-link::after {
        display: none;
    }
}

.ind-fintech .ind-fintech-header .ind-fintech-header-link span {
    position: relative;
    z-index: 1;
}

.ind-fintech .ind-fintech-header .ind-fintech-header-icon {
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ind-fin-light-green);
    border-radius: 100rem;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-header .ind-fintech-header-icon {
        height: 30px;
        width: 30px;
        padding: 5px;
    }
}

.ind-fintech .ind-fintech-header .ind-fintech-header-link:hover .ind-fintech-header-icon {
    transform: rotate(45deg);
}

/* --------------------------- END : Font classes --------------------------- */

/* --------------------------- SATRT : services --------------------------- */
.ind-fintech .ind-fintech-services .ind-fintech-services-desc {
    max-width: 1320px;
    margin: 0 auto 80px;
}

@media screen and (max-width: 1439px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-desc {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-desc {
        margin-bottom: 40px;
    }
}

.ind-fintech-services .ind-fintech-container {
    max-width: 1464px;
}

.ind-fintech .ind-fintech-services .ind-fintech-services-inner {
    display: flex;
    grid-gap: 30px;
    flex-wrap: wrap;
}

@media screen and (max-width: 1439px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-inner {
        gap: 24px;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-inner {
        gap: 20px;
    }
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item {
    padding: 48px;
    border-radius: 32px;
    width: calc(33.33% - 20px);
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1439px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item {
        padding: 32px;
        border-radius: 24px;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item {
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item {
        padding: 20px;
    }
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item .ind-fintech-services-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ind-fin-black);
    color: var(--ind-fin-white);
    padding: 42px;
    font-size: 18px;
    z-index: 2;
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1439px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item .ind-fintech-services-item-overlay {
        padding: 32px;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item .ind-fintech-services-item-overlay {
        padding: 24px;
    }
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item .ind-fintech-services-item-overlay {
        padding: 16px;
        font-size: 16px;
    }
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item:hover .ind-fintech-services-item-overlay {
    opacity: 1;
    pointer-events: all;
}

.ind-fintech
    .ind-fintech-services
    .ind-fintech-services-item
    .ind-fintech-services-item-overlay
    .ind-fintech-services-item-icon {
    position: absolute;
    right: 24px;
    top: 24px;
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item .ind-fintech-services-item-overlay::-webkit-scrollbar {
    display: none;
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item .ind-fintech-services-item-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    max-width: calc(100% - 50px);
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item .ind-fintech-services-item-overlay ul li {
    position: relative;
    padding-left: 40px;
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item .ind-fintech-services-item-overlay ul li::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22.5c5.5 0 10-4.5 10-10s-4.5-10-10-10S2 7 2 12.5s4.5 10 10 10Z' stroke='%23BDE54E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m7.75 12.5 2.83 2.83 5.67-5.66' stroke='%23BDE54E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item b {
    font-weight: 600;
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item.ind-fintech-services-item-half {
    width: calc(50% - 15px);
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item.ind-fintech-services-item-half,
    .ind-fintech .ind-fintech-services .ind-fintech-services-item {
        width: 100%;
        padding: 15px;
        border-radius: 15px;
    }
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item.ind-fintech-services-item-with-bg {
    background: url("./img/webp/service-card-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: var(--ind-fin-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item.ind-fintech-services-item-with-bg {
        width: 100%;
        text-align: center;
        gap: 24px;
        align-items: center;
    }
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item-image {
    position: absolute;
    right: 30px;
    bottom: 27px;
    max-width: 412px;
}

@media screen and (max-width: 1439px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item-image {
        max-width: 300px;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item-image {
        display: none;
    }
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item-icon {
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ind-fin-light-green);
    border-radius: 100rem;
    margin-bottom: 24px;
}

@media screen and (max-width: 1439px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item-icon {
        height: 60px;
        width: 60px;
        padding: 15px;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item-icon {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item-icon {
        height: 40px;
        width: 40px;
        padding: 10px;
        margin-bottom: 16px;
    }
}

.ind-fintech .ind-fintech-services .ind-fintech-services-item-content {
    max-width: 270px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-services .ind-fintech-services-item-content {
        max-width: 100%;
    }
}

/* --------------------------- END : services --------------------------- */

/* --------------------------- START : CTA --------------------------- */

.ind-fintech .ind-fintech-cta {
    background-color: var(--ind-fin-isabelline);
    padding: 60px;
    border-radius: 32px;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-cta {
        min-height: 300px;
    }
}

@media screen and (max-width: 1439px) {
    .ind-fintech .ind-fintech-cta {
        border-radius: 24px;
        padding: 40px;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-cta {
        min-height: 1px;
        padding: 32px;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-cta {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-cta {
        padding: 15px;
        border-radius: 15px;
    }
}

.ind-fintech .ind-fintech-cta .ind-fintech-cta-content {
    max-width: 828px;
}

@media screen and (max-width: 1439px) {
    .ind-fintech .ind-fintech-cta .ind-fintech-cta-content {
        max-width: 700px;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-cta .ind-fintech-cta-content {
        max-width: 500px;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-cta .ind-fintech-cta-content {
        max-width: 100%;
        text-align: center;
    }
}

.ind-fintech .ind-fintech-cta .ind-fintech-cta-title span {
    position: relative;
    display: inline-block;
}

.ind-fintech .ind-fintech-cta .ind-fintech-cta-title span::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--ind-fin-light-green);
}

.ind-fintech .ind-fintech-cta .ind-fintech-cta-image {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-cta .ind-fintech-cta-image {
        max-width: 700px;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-cta .ind-fintech-cta-image {
        max-width: 580px;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-cta .ind-fintech-cta-image {
        display: none;
    }
}

/* --------------------------- END : CTA --------------------------- */

/* --------------------------- START : FAQ -------------------------- */

.ind-fintech .sec-ind-fintech-faq .ind-fintech-faq-title span {
    color: var(--ind-fin-light-green);
}

.ind-fintech .sec-ind-fintech-faq .accordion {
    display: grid;
    grid-gap: 12px;
}

.ind-fintech .sec-ind-fintech-faq .accordion-item {
    border-radius: 10px;
    border: none;
    background-color: transparent;
}

.ind-fintech .sec-ind-fintech-faq .accordion-button {
    background-color: var(--ind-fin-bright-gray);
    border: none;
    box-shadow: none;
    border-radius: 16px !important;
    padding: 16px 24px;
    gap: 8px;
}

@media only screen and (max-width: 991px) {
    .ind-fintech .sec-ind-fintech-faq .accordion-button {
        padding: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .ind-fintech .sec-ind-fintech-faq .accordion-button {
        align-items: flex-start;
        padding: 15px;
        border-radius: 10px !important;
    }
}

.ind-fintech .sec-ind-fintech-faq .accordion-button::after {
    background: url("data:image/svg+xml,%3Csvg width='38' height='38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='38' height='38' rx='19' fill='%23FFFEF1'/%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M27.1 18.1h-7.2v-7.2a.9.9 0 0 0-1.8 0v7.2h-7.2a.9.9 0 0 0 0 1.8h7.2v7.2a.9.9 0 0 0 1.8 0v-7.2h7.2a.9.9 0 0 0 0-1.8Z' fill='%23222'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='translate(10 10)' d='M0 0h18v18H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")
        center/contain no-repeat;
    height: 36px;
    width: 36px;
}

@media only screen and (max-width: 1199px) {
    .ind-fintech .sec-ind-fintech-faq .accordion-button::after {
        height: 32px;
        width: 32px;
        background-size: contain;
    }
}

@media only screen and (max-width: 767px) {
    .ind-fintech .sec-ind-fintech-faq .accordion-button::after {
        height: 28px;
        width: 28px;
        background-size: contain;
    }

    .ind-fintech .sec-ind-fintech-faq .accordion-body {
        padding: 10px;
    }
}

.ind-fintech .sec-ind-fintech-faq .accordion-button:not(.collapsed)::after {
    transform: rotate(-45deg);
}

.ind-fintech .sec-ind-fintech-faq .accordion-button:not(.collapsed) {
    color: var(--ind-fin-black);
}

.ind-fintech .sec-ind-fintech-faq .fintech-font-18 {
    color: #444;
}
/* --------------------------- END : FAQ -------------------------- */

/* --------------------------- SATRT : challenges -------------------------- */

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-desc {
    max-width: 910px;
    margin: 0 auto 60px;
}

@media only screen and (max-width: 1199px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-desc {
        margin: 0 auto 32px;
    }
}

@media only screen and (max-width: 767px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-desc {
        margin: 0 auto 24px;
    }
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-next .icon {
    transform: rotate(45deg);
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-prev .icon {
    transform: rotate(225deg);
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-next,
.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-prev {
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100rem;
    transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-next,
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-prev {
        height: 40px;
        width: 40px;
        border-radius: 6px;
    }
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-next:hover,
.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-prev:hover {
    background-color: var(--ind-fin-light-green);
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

@media only screen and (max-width: 1199px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-nav {
        margin-top: 32px;
    }
}

@media only screen and (max-width: 991px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-nav {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-nav {
        margin-top: 16px;
    }
}

.ind-fintech
    .sec-ind-fintech-challenges
    .ind-fintech-challenges-swiper
    .swiper-slide:nth-child(odd)
    .ind-fintech-challenges-card {
    background-color: var(--ind-fin-isabelline);
}
.ind-fintech
    .sec-ind-fintech-challenges
    .ind-fintech-challenges-swiper
    .swiper-slide:nth-child(even)
    .ind-fintech-challenges-card {
    background-color: var(--ind-fin-bright-gray);
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-swiper .swiper-slide {
    height: auto;
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card .ind-fintech-font-32 {
    margin-bottom: 80px;
    line-height: 1.3;
}

@media only screen and (max-width: 1199px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card .ind-fintech-font-32 {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card .ind-fintech-font-32 {
        margin-bottom: 32px;
    }
}

@media only screen and (max-width: 991px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card .ind-fintech-font-32 {
        margin-bottom: 20px;
    }
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    height: 100%;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

@media only screen and (max-width: 1199px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card {
        padding: 24px;
        border-radius: 24px;
    }
}

@media only screen and (max-width: 991px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card {
        padding: 20px;
        border-radius: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card {
        padding: 15px;
        border-radius: 15px;
        gap: 0;
        justify-content: flex-start;
    }
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card .ind-fintech-challenges-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 32px;
    background-color: var(--ind-fin-black);
    color: var(--ind-fin-white);
    font-size: 18px;
    font-weight: 300;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 1199px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card .ind-fintech-challenges-card-overlay {
        padding: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card .ind-fintech-challenges-card-overlay {
        padding: 16px;
    }
}

.ind-fintech
    .sec-ind-fintech-challenges
    .ind-fintech-challenges-card
    .ind-fintech-challenges-card-overlay::-webkit-scrollbar {
    display: none;
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card .ind-fintech-challenges-card-overlay a {
    text-decoration: underline;
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card .ind-fintech-challenges-card-overlay::after {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='.1' clip-path='url(%23a)'%3E%3Cpath d='M35.04 84.38c1.803 1.584 3.664 3.218 5.58 4.912l.039.035 6.37 5.502a4.536 4.536 0 0 0 2.972 1.106c1.06 0 2.12-.369 2.973-1.106l6.37-5.502.039-.035c12.61-11.153 22.066-19.69 28.906-28.018C96.28 51.548 100 42.754 100 33.6c0-16.564-12.974-29.538-29.536-29.538-7.444 0-14.8 2.804-20.462 7.663-5.665-4.86-13.02-7.662-20.465-7.662C12.974 4.063 0 17.037 0 33.599 0 53.62 13.94 65.858 35.04 84.381Zm-3.226-43.474h12.124V28.782h12.124v12.124h12.124V53.03H56.062v12.124H43.938V53.03H31.814V40.906Z' fill='%23fff'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h100v100H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.ind-fintech
    .sec-ind-fintech-challenges
    .ind-fintech-challenges-card
    .ind-fintech-challenges-card-overlay.retail::after {
    background-image: url("data:image/svg+xml,%3Csvg width='98' height='92' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.427 6.853h8.822a4.518 4.518 0 0 1 4.46 3.84l1.334 8.855v.098l5.86 39.934a11.062 11.062 0 0 0 10.901 9.408h44.56a10.97 10.97 0 0 0 10.71-8.464l7.455-31.051a11.051 11.051 0 0 0-10.742-13.607H24.062l-.912-6.12A11.058 11.058 0 0 0 12.245.34H3.427a3.255 3.255 0 0 0-2.302 5.557c.61.61 1.439.957 2.302.957Zm68.841 25.322a3.257 3.257 0 0 1 6.445.944L75.85 52.715a3.256 3.256 0 0 1-3.223 2.767 2.457 2.457 0 0 1-.488-.032 3.27 3.27 0 0 1-2.734-3.711l2.864-19.564Zm-17.285.456a3.255 3.255 0 1 1 6.51 0v18.75a3.255 3.255 0 0 1-6.51 0V32.63Zm-14.486-3.223a3.281 3.281 0 0 1 3.679 2.767l2.864 19.564a3.271 3.271 0 0 1-2.734 3.71 2.457 2.457 0 0 1-.488.033 3.281 3.281 0 0 1-3.223-2.767L37.734 33.12a3.272 3.272 0 0 1 2.767-3.711h-.004Zm6.66 54.124a8.138 8.138 0 1 0-8.15 8.125 8.158 8.158 0 0 0 8.15-8.125Zm26.182-8.148a8.139 8.139 0 1 0 8.125 8.148 8.157 8.157 0 0 0-8.125-8.148Z' fill='%23fff'/%3E%3C/svg%3E");
    background-size: 98px 92px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.1;
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card .ind-fintech-challenges-card-overlay.edu::after {
    background-image: url("data:image/svg+xml,%3Csvg width='85' height='94' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M71.531.34H22.687v74.376h28.27L47.752 64.18a7.416 7.416 0 0 1 1.144-6.634 7.525 7.525 0 0 1 6.01-3.04c.74 0 1.477.109 2.193.328l24.21 7.362V10.12A9.785 9.785 0 0 0 71.53.34ZM59.303 38.317H45.791a2.813 2.813 0 1 1 0-5.625h13.512a2.813 2.813 0 0 1 0 5.625Zm7.19-11.706H38.6a2.812 2.812 0 1 1 0-5.625h27.894a2.813 2.813 0 1 1 0 5.625Z' fill='%23fff'/%3E%3Cpath d='m55.95 91.125-1-3.284H12.719c-8.469 0-8.488-13.125 0-13.125H18V.34h-5.281C6 .34.53 5.81.53 12.528V81.11c0 .05-.015.1-.015.15a12.219 12.219 0 0 0 12.203 12.203H57.15a7.563 7.563 0 0 1-1.2-2.338Zm-3.713-28.31 8.197 26.945c.794 2.609 4.47 2.665 5.341.078l3.837-11.388a2.81 2.81 0 0 1 1.763-1.762l11.388-3.838c2.584-.872 2.53-4.547-.079-5.34l-26.943-8.197a2.812 2.812 0 0 0-3.504 3.503Z' fill='%23fff'/%3E%3C/svg%3E");
    background-size: 85px 94px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.1;
}

.ind-fintech
    .sec-ind-fintech-challenges
    .ind-fintech-challenges-card
    .ind-fintech-challenges-card-overlay.logistics::after {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M78.297 20.182a4.933 4.933 0 0 0-3.89-1.92H62.998v-3.256a4.897 4.897 0 0 0-4.883-4.883H12.542a4.897 4.897 0 0 0-4.882 4.883v47.2C-.402 61.57-1.205 73.21 6.846 73.6h8.951c.72 17.277 25.328 17.264 26.042 0h16.276c.72 17.277 25.327 17.264 26.042 0h8.952a5.703 5.703 0 0 0 5.696-5.697V48.665a4.944 4.944 0 0 0-1.009-2.978L78.297 20.182ZM40.83 23.47l1.107-3.06c.766-1.995 3.756-.905 3.06 1.107l-1.107 3.06c-.757 2.002-3.776.896-3.06-1.107Zm-7.129-3.58c.04-2.138 3.215-2.14 3.255 0v3.254c-.04 2.137-3.214 2.139-3.255 0V19.89Zm-7.064-.457a1.637 1.637 0 0 1 2.084.977l1.107 3.06a1.628 1.628 0 0 1-.96 2.083 1.644 1.644 0 0 1-2.1-.976l-1.107-3.06c-.31-.83.13-1.774.976-2.084ZM17.425 32.91a4.897 4.897 0 0 1 4.883-4.883H48.35a4.897 4.897 0 0 1 4.882 4.883v13.835a4.897 4.897 0 0 1-4.882 4.882H22.308a4.897 4.897 0 0 1-4.883-4.882V32.91Zm11.393 45.573c-6.437-.18-6.435-9.588 0-9.766 6.436.18 6.434 9.588 0 9.766Zm30.925-11.166c-.521.945-.928 1.954-1.22 3.028h-17.09c-3.492-12.931-21.742-12.923-25.229 0H6.846c-3.216-.055-3.205-4.83 0-4.883h7.894c5.94-10.742 22.203-10.757 28.157 0h16.846v1.855Zm11.393 11.166c-6.437-.18-6.435-9.588 0-9.766 6.436.18 6.434 9.588 0 9.766Zm24.414-13.02c-4.336.496-4.334-5.38 0-4.884v4.883Zm0-8.139c-8.512-.537-8.659 11.761-.146 11.393a2.434 2.434 0 0 1-2.295 1.628H83.75c-2.1-8.916-13.677-12.883-20.752-6.885V21.517h6.51V45.93a8.14 8.14 0 0 0 8.139 8.138H95.55v3.255Z' fill='%23fff'/%3E%3Cpath d='M33.27 31.366a3.278 3.278 0 0 1 3.397 0l4.37 2.648c.354.214.664.494.915.825a.172.172 0 0 1-.052.25l-6.465 3.917a.898.898 0 0 1-.931 0l-6.466-3.916a.173.173 0 0 1-.051-.251c.25-.33.56-.61.915-.825l4.368-2.648Zm-5.65 4.835c-.105-.064-.24-.006-.26.114a3.287 3.287 0 0 0-.037.502v5.522a3.278 3.278 0 0 0 1.579 2.804l4.369 2.646c.285.173.59.3.904.377a.171.171 0 0 0 .21-.17v-7.19a.898.898 0 0 0-.432-.768L27.62 36.2Zm7.933 11.795c0 .112.102.197.21.17.319-.08.624-.206.904-.377l4.37-2.646a3.28 3.28 0 0 0 1.579-2.804v-5.522c0-.17-.014-.337-.039-.501-.019-.121-.154-.178-.259-.115l-6.332 3.837a.898.898 0 0 0-.433.767v7.191ZM76.019 57.324a1.628 1.628 0 0 0 1.627 1.628h8.138a1.628 1.628 0 1 0 0-3.255h-8.138a1.628 1.628 0 0 0-1.627 1.627ZM48.35 86.621H9.287c-2.127.033-2.15 3.218 0 3.255H48.35c2.125-.032 2.148-3.218 0-3.255Zm34.18 0H59.742c-2.132.033-2.145 3.22 0 3.255h22.786c2.133-.032 2.144-3.22 0-3.255Zm9.765 0H89.04c-2.139.036-2.14 3.22 0 3.255h3.255c2.139-.035 2.139-3.22 0-3.255Z' fill='%23fff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.1;
}

.ind-fintech
    .sec-ind-fintech-challenges
    .ind-fintech-challenges-card
    .ind-fintech-challenges-card-overlay.realestate::after {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M91.667 88.542H8.333a3.125 3.125 0 0 0 0 6.25h83.334a3.125 3.125 0 1 0 0-6.25ZM45.833 14.583v-6.25a3.125 3.125 0 0 0-6.25 0v6.25a3.125 3.125 0 1 0 6.25 0Z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m22.916 37.65-10.77 5.388a3.125 3.125 0 0 0-1.73 2.796v45.833c0 1.725 1.4 3.125 3.125 3.125h10.075a7.263 7.263 0 0 1-.7-3.125V37.65Zm46.876 57.142a3.125 3.125 0 0 0 3.124-3.125V27.083a3.125 3.125 0 0 0-3.124-3.124H48.957a3.125 3.125 0 0 0-3.125 3.125v64.583c0 1.725 1.4 3.125 3.125 3.125h20.834ZM56.25 72.917v4.166a3.125 3.125 0 0 0 6.25 0v-4.166a3.125 3.125 0 1 0-6.25 0Zm0-16.667v4.167a3.125 3.125 0 0 0 6.25 0V56.25a3.125 3.125 0 1 0-6.25 0Zm0-16.666v4.166a3.125 3.125 0 0 0 6.25 0v-4.166a3.125 3.125 0 1 0-6.25 0Zm20.833 9.874v42.209c0 1.117-.25 2.179-.7 3.125h10.075a3.125 3.125 0 0 0 3.125-3.125V56.408a3.125 3.125 0 0 0-2.004-2.916l-10.496-4.033Z' fill='%23fff'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M42.367 94.792a7.262 7.262 0 0 1-.7-3.125V27.083a7.294 7.294 0 0 1 7.291-7.291h9.375v-5.209a3.125 3.125 0 0 0-3.125-3.124h-25a3.125 3.125 0 0 0-3.125 3.125v77.083c0 1.725 1.4 3.125 3.125 3.125h12.159Z' fill='%23fff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.1;
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card .ind-fintech-challenges-card-overlay.mkv::after {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.157 34.7c-5.524 0-10.001 4.478-10.001 10.001V93.44a3.437 3.437 0 0 0 3.434 3.435h80.82a3.437 3.437 0 0 0 3.435-3.435V47.712c0-.91.058-3.363-1.007-4.428-1.295-1.295-3.517-1.006-4.428-1.007H27.045a1.618 1.618 0 0 1-1.515-1.05 10.064 10.064 0 0 0-9.373-6.527Zm-.341 15.661a6.466 6.466 0 1 1 6.464-6.464 6.472 6.472 0 0 1-6.465 6.464Zm23.116 29.612V59.738a3.827 3.827 0 0 1 5.74-3.314l17.524 10.118a3.826 3.826 0 0 1 0 6.627L44.672 83.286a3.827 3.827 0 0 1-5.74-3.313Zm3.233-20.235a.544.544 0 0 1 .296-.514.547.547 0 0 1 .594 0L60.58 69.342a.594.594 0 0 1 0 1.029L43.056 80.488a.593.593 0 0 1-.891-.514V59.738Zm-26.35-12.61a3.233 3.233 0 1 1 0-6.465 3.233 3.233 0 0 1 0 6.466ZM6.459 28.28a3 3 0 0 0 2.995 3.188h6.704c.688 0 1.374.055 2.053.164l3.134-11.388-12.562 3.427a3 3 0 0 0-2.205 2.707l-.119 1.902Zm18.512-9.024 11.182-3.05a2 2 0 0 1 2.49 2.31L35.944 32.4a2 2 0 0 1-1.46 1.555l-8.29 2.151a13.398 13.398 0 0 0-4.88-3.574l3.655-13.275Zm18.964-5.174a2 2 0 0 0-1.437 1.548l-2.72 13.991a2 2 0 0 0 2.467 2.317l11.041-2.867a2 2 0 0 0 1.48-1.67L56.629 13.5a2 2 0 0 0-2.509-2.196l-10.186 2.78Zm17.76-4.845a2 2 0 0 0-1.455 1.664L58.36 24.907a2 2 0 0 0 2.485 2.201l10.966-2.847a2 2 0 0 0 1.48-1.67l1.897-14.155A2 2 0 0 0 72.68 6.24L61.695 9.237Zm18.561-5.063A2 2 0 0 0 78.8 5.838l-1.911 14.258a2 2 0 0 0 2.485 2.202l11.42-2.966c1.328-3.189 1.12-9.219-1.257-13.008-1.37-2.182-3.194-3.258-5.445-3.196l-3.836 1.046Z' fill='%23fff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.1;
}

.ind-fintech .sec-ind-fintech-challenges .ind-fintech-challenges-card:hover .ind-fintech-challenges-card-overlay {
    opacity: 1;
    pointer-events: all;
}
/* --------------------------- END : challenges -------------------------- */

.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--clr-black);
    top: 0;
    left: 0;
    border-radius: 30px;
    pointer-events: none;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
    .newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:before {
        transition: none;
    }
}

.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:hover:before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:hover span {
    color: var(--clr-white);
    position: relative;
}

.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn .icon {
    width: 24px;
    height: 24px;
}

.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:hover .icon {
    position: relative;
}

.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:hover .icon:before {
    background-color: var(--clr-white);
}

.newworkslider-area .cust-btn-wrap .arrow-btn {
    position: absolute;
    width: 100%;
    border: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 575px) {
    .newworkslider-area .cust-btn-wrap .arrow-btn {
        position: relative;
        justify-content: end;
        gap: 15px;
        width: auto;
    }
}

.newworkslider-area .cust-btn-wrap {
    margin-top: 50px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .newworkslider-area .cust-btn-wrap {
        margin-top: 35px;
    }
}

@media screen and (max-width: 575px) {
    .newworkslider-area .cust-btn-wrap {
        margin-top: 25px;
        display: flex;
        gap: 15px;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 375px) {
    .newworkslider-area .cust-btn-wrap {
        flex-direction: column;
    }
}

.newworkslider-area .cust-btn-wrap .view-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
}

@media only screen and (max-width: 575px) {
    .newworkslider-area .cust-btn-wrap .view-btns {
        width: 100%;
    }
}

/*btn-slide-border css starts here*/
.btn-slide-border {
    text-transform: uppercase;
    color: #3b5068;
    padding: 16px 25px;
    justify-content: center;
    border-radius: 30px;
    background: #fff;
    display: inline-flex;
    position: relative;
    gap: 10px;
    align-items: center;
    overflow: hidden;
    transition:
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        background-color 0.3s ease,
        outline 0.3s ease;
    border: 1px solid #3b5068;
    -webkit-clip-path: inset(0 round 10px);
    clip-path: inset(0 round 10px);
}

@media only screen and (max-width: 1599px) {
    .btn-slide-border {
        padding: 12px 22px;
    }
}

@media only screen and (max-width: 767px) {
    .btn-slide-border {
        padding: 10px 16px;
        gap: 6px;
        transition: none;
    }
}

@media only screen and (max-width: 480px) {
    .btn-slide-border {
        width: max-content;
    }
}

.btn-slide-border:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ed184f;
    top: 0;
    left: 0;
    border-radius: 30px;
    pointer-events: none;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

@media only screen and (max-width: 1199px) {
    .btn-slide-border:before {
        display: none;
    }
}

.btn-slide-border:hover,
.btn-slide-border:focus {
    color: #ffffff;
    outline: none;
}

@media only screen and (max-width: 1199px) {
    .btn-slide-border:hover,
    .btn-slide-border:focus {
        color: #3b5068;
    }
}

.btn-slide-border:hover:before,
.btn-slide-border:focus:before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

.btn-slide-border .icon,
.btn-slide-border .material-symbols-rounded {
    transition: transform 0.3s ease;
}

@media only screen and (max-width: 1199px) {
    .btn-slide-border .icon,
    .btn-slide-border .material-symbols-rounded {
        transform: rotate(45deg);
    }
}

.btn-slide-border .icon:before {
    background-color: #3b5068;
}

.btn-slide-border span {
    position: relative;
}

.btn-slide-border:hover i,
.btn-slide-border:focus i {
    /*filter: invert(1) brightness(1);*/
    transform: rotate(45deg);
}

@media only screen and (max-width: 1199px) {
    .btn-slide-border:hover i,
    .btn-slide-border:focus i {
        /*filter: invert(0) brightness(1);*/
    }
}

.btn-slide-border:hover .icon:before,
.btn-slide-border:focus .icon:before {
    background-color: #ffffff;
}

@media only screen and (max-width: 1199px) {
    .btn-slide-border:hover .icon:before,
    .btn-slide-border:focus .icon:before {
        background-color: #3b5068;
    }
}

/*btn-slide-pink css starts here*/
.btn-slide-pink {
    text-transform: uppercase;
    color: #ffffff;
    padding: 16px 25px;
    justify-content: center;
    border-radius: 30px;
    background: #ed184f;
    display: inline-flex;
    position: relative;
    gap: 10px;
    align-items: center;
    overflow: hidden;
    transition:
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        background-color 0.3s ease,
        outline 0.3s ease;
    border: 1px solid #8e0e2f;
    -webkit-clip-path: inset(0 round 10px);
    clip-path: inset(0 round 10px);
}

@media only screen and (max-width: 1599px) {
    .btn-slide-pink {
        padding: 12px 22px;
    }
}

@media only screen and (max-width: 1199px) {
    .btn-slide-pink {
        transition: none;
    }
}

@media only screen and (max-width: 767px) {
    .btn-slide-pink {
        padding: 10px 16px;
        gap: 6px;
    }
}

@media only screen and (max-width: 480px) {
    .btn-slide-pink {
        width: max-content;
    }
}

.btn-slide-pink:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff;
    top: 0;
    left: 0;
    border-radius: 30px;
    pointer-events: none;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

.btn-slide-pink:hover,
.btn-slide-pink:focus {
    color: #3b5068;
    border-color: #3b5068;
    outline: none;
}

@media only screen and (max-width: 1199px) {
    .btn-slide-pink:hover,
    .btn-slide-pink:focus {
        color: #ffffff;
        border-color: #8e0e2f;
    }
}

.btn-slide-pink:hover .icon:before,
.btn-slide-pink:focus .icon:before {
    background-color: #3b5068;
}

.btn-slide-pink:hover:before,
.btn-slide-pink:focus:before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

@media only screen and (max-width: 1199px) {
    .btn-slide-pink:hover:before,
    .btn-slide-pink:focus:before {
        display: none;
    }
}

.btn-slide-pink .icon,
.btn-slide-pink .material-symbols-rounded {
    transition: transform 0.3s ease;
}

@media only screen and (max-width: 1199px) {
    .btn-slide-pink .icon,
    .btn-slide-pink .material-symbols-rounded {
        transition: none;
        transform: rotate(45deg);
    }
}

.btn-slide-pink span {
    position: relative;
}

.btn-slide-pink .icon:before {
    background-color: #ffffff;
}

.btn-slide-pink:hover i,
.btn-slide-pink:focus i {
    /*filter: invert(1) brightness(0);*/
    transform: rotate(45deg);
}

@media only screen and (max-width: 1199px) {
    .btn-slide-pink:hover .icon:before,
    .btn-slide-pink:focus .icon:before {
        background-color: #ffffff;
    }
}

.newworkslider-area {
    margin-top: 80px;
}

@media screen and (max-width: 1599px) {
    .newworkslider-area {
        margin-top: 70px;
    }
}

@media screen and (max-width: 1199px) {
    .newworkslider-area {
        margin-top: 60px;
    }
}

@media screen and (max-width: 991px) {
    .newworkslider-area {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .newworkslider-area {
        margin-top: 25px;
    }
}

@media screen and (max-width: 575px) {
    .newworkslider-area {
        margin-top: 20px;
    }
}

.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn {
    height: 56px;
    width: 56px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-black);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    top: 0;
    left: auto;
    right: auto;
}

@media only screen and (max-width: 1365px) {
    .newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn {
        width: 48px;
        height: 48px;
    }
}

.custslides .custslick-list {
    /*display: flex;*/
}

@media only screen and (min-width: 768px) {
    .custslides .custslick-list {
        display: flex;
    }
}

.custslides .slick-initialized .slick-slide {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .custslides .slick-initialized .slick-slide {
        display: block;
    }
}

.custslides .custslick-list .slick-list {
    padding: 0 7% 0 6%;
    display: flex;
}

@media only screen and (min-width: 2301px) {
    .custslides .custslick-list .slick-list {
        padding: 0 5% 0 15%;
    }
}

@media only screen and (min-width: 1921px) and (max-width: 2300px) {
    .custslides .custslick-list .slick-list {
        padding: 0 5% 0 10%;
    }
}

@media only screen and (min-width: 1800px) and (max-width: 1899px) {
    .custslides .custslick-list .slick-list {
        padding: 0 3% 0 4%;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1799px) {
    .custslides .custslick-list .slick-list {
        padding: 0 3% 0 3%;
    }
}

@media only screen and (max-width: 1599px) {
    .custslides .custslick-list .slick-list {
        padding: 0 15px 0 65px;
    }
}

@media only screen and (min-width: 1366px) and (max-width: 1499px) {
    .custslides .custslick-list .slick-list {
        padding: 0 15px 0 45px;
    }
}

@media only screen and (max-width: 991px) {
    .custslides .custslick-list .slick-list {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 767px) {
    .custslides .custslick-list .slick-list {
        padding: 0 5px !important;
        display: block;
    }
}

.custslides .custslick-list .slick-track {
    display: flex !important;
}

@media only screen and (max-width: 767px) {
    .custslides .custslick-list .slick-track {
        display: block !important;
    }
}

.custslides .custslick-list .slick-slide {
    margin: 0 15px;
    height: inherit !important;
    transition: transform 0.5s ease;
}

@media only screen and (min-width: 1366px) {
    .custslides .custslick-list .slick-slide {
        width: auto !important;
    }
}

@media only screen and (max-width: 991px) {
    .custslides .custslick-list .slick-slide {
        margin: 0 12px;
    }
}

@media only screen and (max-width: 767px) {
    .custslides .custslick-list .slick-slide {
        margin: 0 10px;
    }
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .slick-slide {
        margin: 0 8px;
    }
}

.custslides .custslick-list .item {
    height: 100%;
    transition: transform 0.5s ease;
    display: block;
}

.custslides .custslick-list .item .content-wrap {
    padding: 50px;
    background-color: #ffffff;
    width: 530px;
    height: 100%;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
    -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
}

@media only screen and (min-width: 1700px) and (max-width: 1799px) {
    .custslides .custslick-list .item .content-wrap {
        width: 500px;
    }
}

@media only screen and (max-width: 1699px) {
    .custslides .custslick-list .item .content-wrap {
        width: 480px;
    }
}

@media only screen and (max-width: 1599px) {
    .custslides .custslick-list .item .content-wrap {
        padding: 30px 20px;
    }
}

@media only screen and (min-width: 1366px) and (max-width: 1499px) {
    .custslides .custslick-list .item .content-wrap {
        width: 430px;
    }
}

/*@media only screen and (max-width: 991px){*/
/*    .custslides .custslick-list .item .content-wrap {*/
/*        display: none;*/
/*    }*/
/*}*/
@media only screen and (max-width: 767px) {
    .custslides .custslick-list .item .content-wrap {
        width: 100%;
        min-height: 556px;
    }
}

@media only screen and (max-width: 575px) {
    .custslides .custslick-list .item .content-wrap {
        min-height: 525px;
        /*background-color: green;*/
    }
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .content-wrap {
        filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.02));
        -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.02));
    }
}

@media only screen and (max-width: 375px) {
    .custslides .custslick-list .item .content-wrap {
        min-height: 560px;
    }
}

.custslides .custslick-list .item .content-wrap .label-wrap {
    margin-bottom: 30px;
}

@media only screen and (max-width: 1599px) {
    .custslides .custslick-list .item .content-wrap .label-wrap {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .content-wrap .label-wrap {
        margin-bottom: 12px;
    }
}

.custslides .custslick-list .item .label-wrap .label-title {
    border-radius: 4px;
    display: inline-flex;
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .label-wrap .label-title {
        font-size: 12px;
        line-height: 1.3rem;
    }
}

.custslides .custslick-list .item .designing {
    margin-top: 20px;
    margin-bottom: 2px;
}

@media only screen and (max-width: 1199px) {
    .custslides .custslick-list .item .designing {
        font-size: 16px;
        line-height: 1.5rem;
    }
}

@media only screen and (max-width: 767px) {
    .custslides .custslick-list .item .designing {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .designing {
        font-size: 16px;
        line-height: 1.6rem;
    }
}

.custslides .custslick-list .item .border-red {
    border: solid #ea1f52 1px;
}

.custslides .custslick-list .item .red-bg {
    background: #fde8ed;
    padding: 5px 10px 4px 10px;
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .red-bg {
        padding: 3px 10px 2px 10px;
    }
}

.custslides .custslick-list .item .font-red {
    color: #ea1f52;
}

.custslides .custslick-list .item .blue-light {
    color: #3b5068;
}

.custslides .custslick-list .item .title-pra-box {
    width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .custslides .custslick-list .item .title-pra-box .common-c-view {
        font-size: 25px;
        line-height: 2.4rem;
    }
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .title-pra-box .common-c-view {
        font-size: 22px;
        line-height: 28px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .custslides .custslick-list .item .title-pra-box p {
        font-size: 1rem;
        line-height: 1.55rem;
    }
}

.custslides .custslick-list .item .label-menu-pont {
    width: 100%;
    margin-top: 20px;
}

/*@media only screen and (min-width: 768px) and (max-width: 1499px) {*/
/*    .custslides .custslick-list .item .label-menu-pont {*/
/*        margin-top: 20px;*/
/*    }*/
/*}*/
@media only screen and (max-width: 767px) {
    .custslides .custslick-list .item .label-menu-pont {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .label-menu-pont {
        margin-top: 13px;
    }
}

.custslides .custslick-list .item .label-menu-pont ul {
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .label-menu-pont ul {
        font-weight: 400;
    }
}

.custslides .custslick-list .item .label-menu-pont ul li {
    display: flex;
    margin-top: 10px;
}

@media only screen and (max-width: 575px) {
    .custslides .custslick-list .item .label-menu-pont ul li {
        margin-top: 5px;
    }
}

.custslides .custslick-list .item .label-menu-pont ul li:first-child {
    margin-top: 0;
}

.custslides .custslick-list .item .label-menu-pont ul li .icon {
    margin-right: 6px;
    margin-top: 3px;
    position: relative;
    flex: 0 0 28px;
}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    .custslides .custslick-list .item .label-menu-pont ul li .icon {
        margin-top: 2px;
    }
}

@media only screen and (max-width: 1199px) {
    .custslides .custslick-list .item .label-menu-pont ul li .icon {
        margin-top: 2px;
    }
}

@media only screen and (max-width: 991px) {
    .custslides .custslick-list .item .label-menu-pont ul li .icon {
        margin-right: 2px;
        margin-top: 1px;
    }
}

@media only screen and (max-width: 575px) {
    .custslides .custslick-list .item .label-menu-pont ul li .icon {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 375px) {
    .custslides .custslick-list .item .label-menu-pont ul li .icon {
        margin-top: 2px;
    }
}

.custslides .custslick-list .item .label-menu-pont ul li .icon::before {
    content: "";
    background-color: #192020;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    display: block;
    position: absolute;
    width: 80%;
    height: 80%;
    left: 0;
    top: 0;
    transition:
        opacity 0.3s ease,
        background-color 0.3s ease;
}

.custslides .custslick-list .item .label-menu-pont ul li .icon .icon-check-circle {
    width: 28px;
    height: 28px;
}

.custslides .custslick-list .item .img-wrapper {
    background: #ffffff;
    width: 1100px;
    height: 100%;
    position: relative;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
    -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
}

@media only screen and (max-width: 1799px) {
    .custslides .custslick-list .item .img-wrapper {
        width: 1085px;
    }
}

@media only screen and (min-width: 1600px) and (max-width: 1699px) {
    .custslides .custslick-list .item .img-wrapper {
        width: 980px;
    }
}

@media only screen and (min-width: 1500px) and (max-width: 1599px) {
    .custslides .custslick-list .item .img-wrapper {
        width: 850px;
    }
}

@media only screen and (min-width: 1366px) and (max-width: 1499px) {
    .custslides .custslick-list .item .img-wrapper {
        width: 800px;
    }
}

@media only screen and (max-width: 1365px) {
    .custslides .custslick-list .item .img-wrapper {
        width: 700px;
    }
}

@media only screen and (max-width: 991px) {
    .custslides .custslick-list .item .img-wrapper {
        width: 700px;
    }
}

@media only screen and (max-width: 767px) {
    .custslides .custslick-list .item .img-wrapper {
        width: 100%;
        min-height: 557px;
    }
}

@media only screen and (max-width: 575px) {
    .custslides .custslick-list .item .img-wrapper {
        width: auto;
        min-height: 525px;
        /*background-color: red;*/
    }
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .img-wrapper {
        filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.02));
        -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.02));
    }
}

@media only screen and (max-width: 375px) {
    .custslides .custslick-list .item .img-wrapper {
        min-height: 560px;
    }
}

.custslides .custslick-list .item .img-wrapper .img-wrap {
    height: 400px;
}

@media only screen and (min-width: 1366px) and (max-width: 1499px) {
    .custslides .custslick-list .item .img-wrapper .img-wrap {
        height: 300px;
    }
}

@media only screen and (max-width: 1365px) {
    .custslides .custslick-list .item .img-wrapper .img-wrap {
        height: 300px;
    }
}

@media only screen and (max-width: 767px) {
    .custslides .custslick-list .item .img-wrapper .img-wrap {
        height: 260px;
    }
}

@media only screen and (max-width: 575px) {
    .custslides .custslick-list .item .img-wrapper .img-wrap {
        height: 220px;
    }
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .img-wrapper .img-wrap {
        height: 180px;
    }
}

@media only screen and (max-width: 375px) {
    .custslides .custslick-list .item .img-wrapper .img-wrap {
        height: 135px;
    }
}

.custslides .custslick-list .item .img-wrapper .img-wrap picture {
    display: block;
    height: 100%;
}

.custslides .custslick-list .item .img-wrapper .icon-wrap {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 99em;
    border: 1px solid #3b5068;
    right: 40px;
    top: 40px;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1365px) {
    .custslides .custslick-list .item .img-wrapper .icon-wrap {
        width: 48px;
        height: 48px;
    }
}

@media only screen and (max-width: 991px) {
    .custslides .custslick-list .item .img-wrapper .icon-wrap {
        top: 30px;
        right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .custslides .custslick-list .item .img-wrapper .icon-wrap {
        top: 15px;
        right: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .custslides .custslick-list .item .img-wrapper .icon-wrap {
        width: 40px;
        height: 40px;
        display: none;
    }
}

.custslides .custslick-list .item .img-wrapper .icon-wrap img {
    transition: transform 0.3s ease;
}

@media only screen and (max-width: 575px) {
    .custslides .custslick-list .item .img-wrapper .icon-wrap img {
        max-width: 60%;
    }
}

.custslides .custslick-list .item .img-wrapper .icon-wrap:hover img {
    transform: rotate(45deg);
}

.custslides .custslick-list .item .img-wrapper img.big-img {
    border-radius: 40px 40px 0 0;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1023px) {
    .custslides .custslick-list .item .img-wrapper img.big-img {
        border-radius: 16px 16px 0 0;
    }
}

@media only screen and (max-width: 1599px) {
    .custslides .custslick-list .item .img-wrapper img.big-img.last {
        object-position: left;
    }
}

.custslides .custslick-list .item .img-wrapper .short-wrap {
    background-color: #ffffff;
}

.custslides .custslick-list .item .shot-wrrap {
    padding: 40px;
    border-radius: 0px 0px 40px 40px;
    height: calc(100% - 400px);
}

@media only screen and (max-width: 1599px) {
    .custslides .custslick-list .item .shot-wrrap {
        padding: 30px 20px;
    }
}

@media only screen and (min-width: 1366px) and (max-width: 1499px) {
    .custslides .custslick-list .item .shot-wrrap {
        height: calc(100% - 300px);
    }
}

@media only screen and (max-width: 1365px) {
    .custslides .custslick-list .item .shot-wrrap {
        height: calc(100% - 300px);
    }
}

@media only screen and (max-width: 1023px) {
    .custslides .custslick-list .item .shot-wrrap {
        border-radius: 0px 0px 16px 16px;
    }
}

@media only screen and (max-width: 767px) {
    .custslides .custslick-list .item .shot-wrrap {
        padding: 20px 15px;
        height: calc(100% - 260px);
    }
}

@media only screen and (max-width: 575px) {
    .custslides .custslick-list .item .shot-wrrap {
        height: calc(100% - 220px);
    }
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .shot-wrrap {
        height: calc(100% - 180px);
    }
}

@media only screen and (max-width: 375px) {
    .custslides .custslick-list .item .shot-wrrap {
        height: calc(100% - 135px);
    }
}

.custslides .custslick-list .item .shot-wrrap-main {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    height: 100%;
}

@media only screen and (max-width: 1499px) {
    .custslides .custslick-list .item .shot-wrrap-main {
        grid-column-gap: 30px;
    }
}

@media only screen and (max-width: 1199px) {
    .custslides .custslick-list .item .shot-wrrap-main {
        grid-column-gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .custslides .custslick-list .item .shot-wrrap-main {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .custslides .custslick-list .item .wrrap-title-left .main-title {
        margin: 0 0 10px;
        display: block;
    }
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .wrrap-title-left .main-title {
        margin: 0 0 5px;
    }
}

.custslides .custslick-list .item .wrrap-title-left .main-title span {
    cursor:
        url("./img/svg/cursor-img.svg") 30 30,
        auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .custslides .custslick-list .item .wrrap-title-left .main-title span {
        font-size: 25px;
        line-height: 2.4rem;
    }
}

@media only screen and (max-width: 480px) {
    .custslides .custslick-list .item .wrrap-title-left .main-title span {
        font-size: 18px;
        line-height: 1.5rem;
        cursor:
            url("./img/svg/cursor-small-img.svg") 15 15,
            auto;
    }
}

.custslides .custslick-list .item .label-wrap {
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .custslides .custslick-list .item .label-wrap {
        margin-bottom: 12px;
    }
}

.custslides .custslick-list .item .para-text-right {
    margin-top: 5px;
}

@media only screen and (max-width: 1365px) {
    .custslides .custslick-list .item .para-text-right {
        margin-top: 0;
    }
}

/* ----------------------------------------- START : expert -------------------------- */

.ind-fintech .ind-fintech-expert {
    background-image: url("./img/webp/big/expert-bg.webp");
    padding: 80px;
    border-radius: 32px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: var(--ind-fin-white);
    position: relative;
}

@media only screen and (max-width: 1439px) {
    .ind-fintech .ind-fintech-expert {
        padding: 50px;
    }
}

@media only screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-expert {
        border-radius: 24px;
        padding: 32px;
    }
}

@media only screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-expert {
        padding: 24px;
        border-radius: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-expert {
        padding: 12px 15px 4px;
        border-radius: 15px;
    }
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-title {
    max-width: 638px;
}

@media only screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-title {
        max-width: 100%;
    }
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-text {
    max-width: 600px;
}

@media only screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-text {
        max-width: 100%;
    }
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-item-icon {
    height: 36px;
    width: 36px;
    flex: 0 0 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #21452f;
    border-radius: 100rem;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-item-icon {
        height: 30px;
        width: 30px;
        flex: 0 0 30px;
        padding: 6px;
    }
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-item-icon .icon::before {
    background-color: var(--ind-fin-white);
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-item-title {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    text-align: left;
    color: #eeeeee;
}

@media only screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-item-title {
        gap: 10px;
    }
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-list {
    max-width: 530px;
}

@media only screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-list {
        max-width: 100%;
    }
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-item {
    padding: 16px 0;
    border-bottom: 1px solid #ffffff29;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-item {
        padding: 12px 0;
    }
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-list ul {
    display: grid;
    padding: 12px 0 0;
    gap: 10px;
    margin-top: 18px;
    border-top: 1px solid #ffffff29;
}

@media only screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-list ul {
        margin-top: 12px;
    }
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-list ul li {
    position: relative;
    font-size: 18px;
    padding-left: 40px;
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-list ul li {
        font-size: 16px;
        padding-left: 30px;
    }
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-list ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 18.333c4.583 0 8.333-3.75 8.333-8.333S14.583 1.667 10 1.667 1.667 5.417 1.667 10s3.75 8.333 8.333 8.333Z' stroke='%23BDE54E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m6.458 10 2.359 2.358 4.725-4.716' stroke='%23BDE54E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-list ul li::before {
        top: 4px;
        width: 20px;
        height: 20px;
    }
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-item.active .ind-fintech-expert-item-icon {
    transform: rotate(45deg);
    background-color: var(--ind-fin-light-green);
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-item.active .ind-fintech-expert-item-icon .icon::before {
    background-color: var(--ind-fin-black);
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-item:last-child {
    border-bottom: none;
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-item-desc {
    /* display: none; */
    overflow: hidden;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-item.active {
    border-color: var(--ind-fin-light-green);
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-title span {
    position: relative;
    display: inline-block;
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-title span::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--ind-fin-light-green);
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-image {
    position: absolute;
    bottom: 0;
    right: 72px;
    max-width: 680px;
}

@media screen and (max-width: 1599px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-image {
        max-width: 610px;
    }
}

@media screen and (max-width: 1439px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-image {
        max-width: 550px;
    }
}

@media screen and (max-width: 1365px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-image {
        max-width: 500px;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-image {
        max-width: 400px;
        right: 50px;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-image {
        display: none;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-content {
        width: 50%;
    }
}

@media screen and (max-width: 991px) {
    .ind-fintech .ind-fintech-expert .ind-fintech-expert-content {
        width: 100%;
    }
}

.ind-fintech .ind-fintech-expert .ind-fintech-expert-content .ind-fintech .ind-fintech-expert-text {
    color: #e5e5e5;
}
/* ----------------------------------------- END : expert -------------------------- */

/* START : fintech-slide */
.sec-ind-fintech-slide-wrapper {
    background-color: var(--ind-fin-bright-gray);
}

.sec-ind-fintech-slide-wrapper .btn-slide-border {
    background-color: var(--ind-fin-light-green);
    border-color: var(--ind-fin-light-green);
    transition: all 0.3s ease;
}

.sec-ind-fintech-slide-wrapper .btn-slide-border:hover {
    border-color: var(--ind-fin-black);
}

.sec-ind-fintech-slide-wrapper .btn-slide-border::before {
    background-color: var(--ind-fin-black);
}

.sec-ind-fintech-slide-wrapper .btn-slide-pink {
    background-color: var(--ind-fin-black);
    border-color: var(--ind-fin-black);
}
/* END : fintech-slide */

/* START : solition */

/*  START : Healthcare Solutions */
.ind-fintech-solution-section {
    display: grid;
    gap: 200px;
    grid-template-columns: 1fr 650px;
}

.ind-fintech-solution-section .ind-fintech-solution-section-inner {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.ind-fintech-solution-section .ind-fintech-solution-section-image-top-text {
    top: 4px;
    left: 4px;
}

.ind-fintech-solution-section .white-text-image {
    top: 30px;
    left: 30px;
}
.ind-fintech-solution-section .white-text-image-two {
    bottom: 30px;
    left: 30px;
    display: grid;
    justify-content: center;
    align-items: center;
}

.ind-fintech-solution-section .number-circle {
    height: 60px;
    width: 150px;
    flex: 0 0 60px;
    border-radius: 99em;
    background-color: var(--ind-fin-light-green);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--ind-fin-black);
}

.ind-fintech-solution-section .msak-image {
    left: -340px;
    bottom: 0px;
    border-radius: 40px;
    overflow: hidden;
}

@media screen and (max-width: 1500px) {
    .ind-fintech-solution-section .msak-image {
        border-radius: 24px;
    }
}
.ind-fintech-solution-section .custom-list {
    list-style: none;
    padding: 0;
}

.ind-fintech-solution-section .custom-list .custom-list-item-short {
    max-width: 540px;
}

@media screen and (max-width: 991px) {
    .ind-fintech-solution-section .custom-list .custom-list-item-short {
        max-width: 100%;
    }

    .ind-fintech-solution-section .ind-fintech-solution-section-stats .healthcare-solution-section-num {
        height: 50px;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--ind-fin-light-green);
        border-radius: 100rem;
    }
}

.ind-fintech-solution-section .custom-list li span {
    color: var(--clr-industry-green);
}

.ind-fintech-solution-section .custom-list-wrapper {
    margin-bottom: 20px;
}

.ind-fintech-solution-section .custom-list-wrapper strong {
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .ind-fintech-solution-section .custom-list-wrapper {
        font-size: 16px;
    }
}

.ind-fintech-solution-section .custom-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
}
.ind-fintech-solution-section .custom-list li::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M18.734 0a1.936 1.936 0 0 0-1.933 1.934c0 .432.148.828.388 1.15l-3.153 3.422c-.148-.036-.3-.06-.458-.06-.396 0-.763.12-1.07.325l-2.249-1.687c.057-.182.096-.372.096-.572a1.936 1.936 0 0 0-1.933-1.934 1.936 1.936 0 0 0-1.934 1.934c0 .2.04.39.097.572L4.336 6.771a1.92 1.92 0 0 0-1.07-.326A1.936 1.936 0 0 0 1.332 8.38c0 1.066.867 1.934 1.934 1.934a1.936 1.936 0 0 0 1.933-1.934c0-.2-.04-.39-.096-.573L7.352 6.12a1.92 1.92 0 0 0 2.14 0l2.249 1.686a1.905 1.905 0 0 0-.096.573c0 1.066.867 1.934 1.933 1.934a1.936 1.936 0 0 0 1.934-1.934c0-.433-.148-.828-.389-1.15l3.154-3.422c.147.036.299.06.457.06a1.936 1.936 0 0 0 1.934-1.933A1.936 1.936 0 0 0 18.734 0ZM9.711 10.313H7.133a.644.644 0 0 0-.645.644v8.465h3.867v-8.465a.644.644 0 0 0-.644-.645Zm5.156 2.578H12.29a.644.644 0 0 0-.644.644v5.887h3.867v-5.887a.644.644 0 0 0-.645-.644Zm5.156-5.157h-2.578a.644.644 0 0 0-.644.645v11.043h3.867V8.379a.644.644 0 0 0-.645-.645ZM4.555 14.18H1.977a.644.644 0 0 0-.645.644v4.598h3.867v-4.598a.644.644 0 0 0-.644-.644Zm16.8 6.53H.645a.644.644 0 1 0 0 1.29h20.71a.644.644 0 1 0 0-1.29Z' fill='%23000'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h22v22H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 4px;
}

.ind-fintech-solution-section .ind-fintech-solution-section-img {
    border-radius: 52px;
    object-fit: cover;
}

@media screen and (max-width: 1500px) {
    .ind-fintech-solution-section .ind-fintech-solution-section-img {
        border-radius: 24px;
    }
}

@media screen and (max-width: 1599px) {
    .ind-fintech-solution-section .white-text-image-two {
        left: 10px;
        border-radius: 10px;
        overflow: hidden;
    }

    .ind-fintech-solution-section .msak-image {
        left: -250px;
        height: 240px;
        width: 240px;
    }

    .ind-fintech-solution-section .msak-image .mask-small-image {
        height: 240px;
        width: 240px;
    }

    .ind-fintech-solution-section .small-image-white-area {
        height: 100px;
        width: 220px;
        background-color: white;
    }
}

@media only screen and (max-width: 1500px) {
    .ind-fintech-solution-section {
        display: grid;
        gap: 100px;
        grid-template-columns: 1fr 550px;
    }
    .ind-fintech-solution-section .picture-of-doctor {
        height: 650px;
        width: 550px;
    }
    .ind-fintech-solution-section .msak-image {
        left: -250px;
    }
}

@media only screen and (max-width: 1499px) {
    .ind-fintech-solution-section .msak-image {
        left: -270px;
        border-radius: 32px;
    }
}

@media only screen and (max-width: 1439px) {
    .ind-fintech-solution-section .picture-of-doctor {
        height: auto;
        width: 450px;
    }

    .ind-fintech-solution-section .msak-image {
        left: -220px;
        bottom: 0px;
        width: 200px;
        height: 200px;
        border-radius: 22px;
    }

    .ind-fintech-solution-section .small-image-white-area {
        height: auto;
        width: 200px;
        background-color: white;
    }

    .ind-fintech-solution-section .text-small-image {
        font-size: 14px;
        line-height: 1.5;
        padding: 4px !important;
    }

    .ind-fintech-solution-section .msak-image .mask-small-image {
        width: 200px;
        height: 200px;
    }

    .ind-fintech-solution-section .msak-image .white-text-image-two {
        left: 10px;
        top: initial;
        bottom: 10px;
        width: 180px;
    }

    .ind-fintech-solution-section .white-text-image-two .position-relative {
        /* background-color: var(--clr-white); */
    }
}

@media only screen and (max-width: 1365px) {
    .ind-fintech-solution-section .msak-image .mask-small-image {
        display: none;
    }
}

@media only screen and (max-width: 1439px) {
    .ind-fintech-solution-section .white-text-image-two {
        bottom: 20px;
        left: 20px;
    }

    .ind-fintech-solution-section .ind-fintech-solution-section-img {
        border-radius: 32px;
    }
}
@media only screen and (max-width: 1199px) {
    .ind-fintech-solution-section .msak-image {
        display: none;
    }
    .ind-fintech-solution-section .picture-of-doctor {
        height: auto;
        width: 100%;
        margin-top: 10px;
    }

    .ind-fintech-solution-section .ind-fintech-solution-section-img {
        border-radius: 26px;
        width: 100%;
        height: auto;
    }

    .ind-fintech-solution-section .white-text-image {
        top: 20px;
        left: 20px;
    }
    .ind-fintech-solution-section .white-text-image img {
        width: 95%;
    }

    .ind-fintech-solution-section .white-text-image .ind-fintech-font-20 {
        width: 95%;
        font-size: 18px;
    }

    .ind-fintech-solution-section .white-text-image-two {
        bottom: 20px;
        left: 20px;
    }

    .ind-fintech-solution-section {
        grid-template-columns: 1fr 400px;
        gap: 32px;
    }
}

.ind-fintech-solution-section .ind-fintech-solution-section-title {
    margin-bottom: 20px;
}

.ind-fintech-solution-section .ind-fintech-solution-section-text {
    margin-bottom: 40px;
}

@media only screen and (max-width: 1365px) {
    .ind-fintech-solution-section .ind-fintech-solution-section-title {
        margin-bottom: 16px;
    }

    .ind-fintech-solution-section .ind-fintech-solution-section-text {
        margin-bottom: 32px;
    }
}

@media only screen and (max-width: 991px) {
    .ind-fintech-solution-section .ind-fintech-solution-section-text {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 991px) {
    .ind-fintech-solution-section .ind-fintech-solution-section-img {
        width: 100%;
        object-fit: cover;
    }

    .ind-fintech-solution-section-image-inner {
        flex: 0 0 100%;
    }

    .ind-fintech-solution-section .ind-fintech-solution-section-img {
        border-radius: 32px;
    }
}

@media only screen and (max-width: 768px) {
    .ind-fintech-solution-section .ind-fintech-solution-section-image {
        display: none;
    }

    .ind-fintech-solution-section .ind-fintech-solution-section-title {
        margin-bottom: 0;
    }

    .ind-fintech-solution-section .custom-list li {
        font-size: 16px;
    }

    .ind-fintech-solution-section {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 1365px) {
    .ind-fintech-solution-section {
        gap: 40px;
    }
}

.ind-fintech-solution-section .ind-fintech-solution-section-stats {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    font-size: 16px;
    line-height: 1.5;
    background-color: var(--clr-white);
    padding: 15px;
    border: 1px solid #0c0c0d3a;
    border-radius: 10px;
}

.ind-fintech-solution-section .ind-fintech-solution-section-ai {
    font-size: 16px;
    line-height: 1.5;
    background-color: var(--clr-white);
    padding: 15px;
    border: 1px solid #0c0c0d3a;
    border-radius: 10px;
    margin-top: 10px;
}

.ind-fintech-solution-section .ind-fintech-solution-section-num {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    background-color: var(--clr-industry-pirple);
    color: var(--clr-white);
    border-radius: 100px;
}

@media screen and (max-width: 1500px) {
    .ind-fintech-solution-section .white-text-image-two picture {
        display: none;
    }

    .ind-fintech-solution-section .white-text-image-two .position-absolute {
        position: static !important;
        background-color: var(--ind-fin-white);
        max-width: calc(100% - 10px);
        border-radius: 10px;
    }

    .ind-fintech-solution-section .ind-fintech-solution-section-image-inner .white-text-image-two {
        padding-left: 80px;
    }
}

@media screen and (max-width: 1199px) {
    .ind-fintech-solution-section .white-text-image-two .position-absolute {
        width: 95%;
    }
}

@media screen and (max-width: 1365px) {
    .ind-fintech-solution-section .msak-image {
        display: none;
    }

    .ind-fintech-solution-section .ind-fintech-solution-section-image-inner .white-text-image-two {
        padding: 0;
    }
}

@media only screen and (max-width: 1199px) {
    .ind-fintech-solution-section .white-text-image-two .position-relative {
        background-color: transparent;
    }
}

.ind-fintech-solution-section .ind-fintech-solution-section-title span {
    position: relative;
    display: inline-block;
}

.ind-fintech-solution-section .ind-fintech-solution-section-title span::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: -1;
    background-color: var(--ind-fin-light-green);
}
/* END :  Solutions */

/* ----------------------------------------- END : fintech page css ---------------------------------------- */
