/*/what_we_can_do_section*/
.what-can-do {
    padding: 35px 0;
    background-color: var(--white);
}

.what-can-do__card-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

.what-can-do__card-item {
    border: 1px solid var(--LightGrey);
    /* overflow: hidden; */
    display: flex !important;
    flex-direction: column;
    border-radius: 25px;
    transition: var(--transition3);
    margin: 0 10px;
    position: relative;
    z-index: 1;
    background-color: var(--white);
}

.what-can-do__card-item::before {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 32px;
    --color-scheme: #bc4e40;
    background: repeating-radial-gradient(circle at 30vw 150px,
            rgb(from var(--color-scheme) r g b/.1),
            rgb(from var(--color-scheme) r g b/.1) 10px,
            rgb(from var(--color-scheme) r g b/.04) 10px,
            rgb(from var(--color-scheme) r g b/.04) 20px),
        linear-gradient(180deg,
            rgb(from var(--color-scheme) r g b/.03),
            rgb(from var(--color-scheme) r g b/.01));
    z-index: -1;
    mix-blend-mode: color;
}

.what-can-do__card-item:nth-child(1)::before {
    --color-scheme: #16ad9a;
}

.what-can-do__card-item:nth-child(2)::before {
    --color-scheme: #f8ba38;
}

.what-can-do__card-item:nth-child(3)::before {
    --color-scheme: #f1685d;
}

.what-can-do__card-item:hover {
    /* box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
      rgba(17, 17, 26, 0.05) 0px 8px 32px; */
}

.what-can-do__card-item .content {
    padding: 28px 28px 0;
    margin-bottom: 52px;
}

.what-can-do__card-item h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 16px;
    margin-top: 0;
    max-width: calc(100% - 20px);
    font-family: var(--poppins);
}

.what-can-do__card-item h3 a {
    color: var(--black);
    text-decoration: none;
    transition: var(--transition3);
}

.what-can-do__card-item h3 a:hover {
    color: var(--PrimaryGreen);
    text-decoration: underline;
}

.what-can-do__card-item p {
    font-size: 1rem;
    line-height: 1.6875rem;
}

.what-can-do__card-image {
    margin-top: auto;
    height: 278px;
    width: 100%;
    position: relative;
    padding: 40px 40px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 0 0 25px 25px;
}

.what-can-do__card-image::after {
    position: absolute;
    content: "";
    opacity: 0.7;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0, black, transparent);
}

.what-can-do__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.what-can-do__card-image span {
    font-size: 23px;
    line-height: 1.13;
    text-wrap: balance;
    font-weight: 700;
    position: relative;
    z-index: 1;
    font-family: var(--poppins);
}

.what-can-do__card-item:nth-child(1) .what-can-do__card-image span {
    color: var(--skyGreen);
}

.what-can-do__card-item:nth-child(2) .what-can-do__card-image span {
    color: var(--yellow);
}

.what-can-do__card-item:nth-child(3) .what-can-do__card-image span {
    color: var(--tomato);
}

.image-with-numbers {
    padding: 50px 0;
    background: linear-gradient(to bottom,
            rgba(10, 2, 64, 1) 10%,
            rgba(103, 15, 98, 1) 53%,
            rgba(204, 151, 193, 1) 100%);
}

.image-with-numbers .image-left {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 90px;
    position: relative;
    filter: drop-shadow(-15px 16px 25px rgba(0, 0, 0, 0.17));
}

.image-with-numbers .image-left .qube {
    position: absolute;
    max-width: 60px;
}

.image-with-numbers .image-left .qube.qube1 {
    left: 19px;
    bottom: 30px;
}

.image-with-numbers .image-left .qube.qube2 {
    top: 28px;
    right: 34px;
}

.image-with-numbers .image-left .qube.qube3 {
    right: 0;
    bottom: 46px;
}

.image-with-numbers .image-left .circle_img {
    max-width: 100px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
}

.image-with-numbers .right-text {
    width: 100%;
}

.image-with-numbers .right-text .list-wrapper {
    margin: 40px -10px 0;
    display: flex;
    flex-flow: row wrap;
}

.image-with-numbers .right-text .list-wrapper .list {
    width: calc(50% - 20px);
    border: 1px solid #f3f6fc;
    margin: 0 10px 20px;
    border-radius: 11px;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    padding: 20px;
    transition: 200ms;
    font-weight: 700;
}

/*.image-with-numbers .right-text .list-wrapper .list + .list{margin:20px 0 0;}*/
.image-with-numbers .right-text .list-wrapper .list strong {
    font-weight: 900;
    font-size: 38px;
    line-height: normal;
    display: block;
    padding: 0 0 6px;
}

.image-with-numbers .right-text .list-wrapper .list strong span {
    color: var(--primary_color);
}

.image-with-numbers .right-text .list-wrapper .list.has-suffix strong:after {
    content: "+";
    color: var(--primary_color);
}

.image-with-numbers .right-text .list-wrapper .list:hover {
    background-color: #fff;
    color: var(--base_color);
}

/* NEW CARD DESIGN */
.capabilities-card {
    position: relative;
    z-index: 1;
    padding: 36px;
    --color-scheme: #4a6eff;
    background: repeating-radial-gradient(circle at 30vw 150px,
            rgb(from var(--color-scheme) r g b/.1),
            rgb(from var(--color-scheme) r g b/.1) 10px,
            rgb(from var(--color-scheme) r g b/.04) 10px,
            rgb(from var(--color-scheme) r g b/.04) 20px),
        linear-gradient(180deg,
            rgb(from var(--color-scheme) r g b/.03),
            rgb(from var(--color-scheme) r g b/.01));
    border-radius: 12px;
    color: var(--newPrimaryText);
    display: flex;
    flex-direction: column;
}

.capabilities-card:nth-child(2) {
    --color-scheme: #a3990f;
}

.capabilities-card:nth-child(3) {
    --color-scheme: #509c8d;
}

.capabilities-card::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    border-radius: 12px;
    background-color: var(--white);
    z-index: -1;
    border: 1px solid var(--LightGrey);
    /* mix-blend-mode: color; */
}

.capabilities-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
}

.capabilities-card .icon img,
.capabilities-card .icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(56%) sepia(42%) saturate(2784%) hue-rotate(193deg) brightness(94%) contrast(101%);
}

.capabilities-card h3,
.capabilities-card h3 a {
    font-size: 26px;
    color: var(--newPrimaryDark);
    text-decoration: none;
    margin: 0 0 24px;
}

.capabilities-card h3 a {
    margin: 0 !important;
}

.capabilities-card h3:hover,
.capabilities-card h3 a:hover {
    text-decoration: underline;
    color: var(--BluePrimary);
}

.capabilities-card ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    gap: 3px;
    margin-bottom: 30px;
}

.capabilities-card ul li {
    line-height: 1.8;
    position: relative;
    padding-left: 30px;
}

.capabilities-card ul li::before {
    position: absolute;
    content: "";
    width: 19px;
    height: 19px;
    left: 0;
    top: 7px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.634 6.48809L8.71934 11.7495L6.39559 9.1344C6.32548 9.05544 6.24065 8.99119 6.14594 8.94532C6.05123 8.89945 5.9485 8.87286 5.84361 8.86707C5.63177 8.85537 5.42401 8.9291 5.26603 9.07204C5.1878 9.14281 5.12415 9.22845 5.07871 9.32406C5.03327 9.41966 5.00693 9.52337 5.00119 9.62925C4.98961 9.84309 5.06265 10.0528 5.20424 10.2123L8.10951 13.4813C8.18329 13.5646 8.2734 13.6315 8.37413 13.6778C8.47486 13.7241 8.58402 13.7488 8.6947 13.7502H8.70469C8.81359 13.7503 8.92135 13.7278 9.02134 13.6843C9.12134 13.6407 9.21147 13.577 9.28621 13.4971L14.7963 7.59523C14.9353 7.4385 15.0081 7.23321 14.9993 7.02308C14.9905 6.81295 14.9008 6.61459 14.7492 6.47026C14.5977 6.32592 14.3963 6.24701 14.188 6.25035C13.9797 6.25368 13.7809 6.33898 13.634 6.48809Z' fill='%23007860'/%3e%3cpath d='M18.48 4.91507C18.3867 4.11181 17.9796 3.31368 17.3329 2.66731C16.6861 2.02094 15.8883 1.6135 15.085 1.52019H15.0792C11.7026 1.16026 8.29737 1.16026 4.92079 1.52019H4.91498C4.11169 1.6135 3.31352 2.0206 2.66713 2.66731C2.02073 3.31402 1.61328 4.11181 1.51996 4.91507V4.92088C1.16001 8.2973 1.16001 11.7024 1.51996 15.0788V15.0847C1.61328 15.8879 2.02039 16.686 2.66713 17.3324C3.31386 17.9788 4.11169 18.3862 4.91498 18.4795H4.92079C6.60786 18.6598 8.30333 18.7502 10 18.7502C11.6967 18.7504 13.3921 18.6603 15.0792 18.4802H15.085C15.8883 18.3869 16.6865 17.9798 17.3329 17.3331C17.9793 16.6864 18.3867 15.8883 18.48 15.0853V15.0795C18.84 11.7031 18.84 8.29798 18.48 4.92156V4.91507ZM17.189 14.9373C17.0652 15.9925 15.9926 17.0644 14.938 17.1885C11.6554 17.5385 8.34491 17.5385 5.06231 17.1885C4.00675 17.0648 2.93478 15.9922 2.81104 14.9373C2.46101 11.655 2.46101 8.34473 2.81104 5.06239C2.93478 4.00721 4.00743 2.93529 5.06231 2.81121C8.3448 2.4612 11.6552 2.4612 14.9377 2.81121C15.9933 2.93495 17.0649 4.00755 17.189 5.06204C17.539 8.3445 17.539 11.6549 17.189 14.9373Z' fill='%23007860'/%3e%3c/svg%3e ");
    filter: invert(56%) sepia(42%) saturate(2784%) hue-rotate(193deg) brightness(94%) contrast(101%);
}

.capabilities-card a {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    text-decoration: none;
    position: relative;
    width: fit-content;
    color: var(--BlueDark);
    gap: 8px;
}

.capabilities-card>a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--BlueDark);
    bottom: 0;
}

.capabilities-card>a:hover {
    color: var(--BluePrimary);
}

.capabilities-card>a:hover::before {
    background-color: var(--BluePrimary);
}

/* NEW CARD DESIGN */

@media (min-width: 320px) {
    .what-can-do__card-item .content {
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) {
    .what-can-do {
        padding: 50px 0;
    }

    .what-can-do__card-image {
        height: 320px;
        padding: 40px 20px;
    }

    .what-can-do__card-list {
        margin: 0 auto;
        gap: 20px;
    }

    .what-can-do__card-item h3 {
        font-size: 1.5rem;
        line-height: 1.27;
    }

    .what-can-do__card-item .content {
        padding: 28px 28px 0;
    }

    .what-can-do__card-image span {
        font-size: 29px;
    }

    .image-with-numbers .image-left {
        margin: 0 40px 0 0;
    }

    .image-with-numbers .right-text .list-wrapper {
        margin: 40px -15px;
    }

    .image-with-numbers .right-text .list-wrapper .list {
        width: calc(50% - 30px);
        margin: 15px;
        padding: 15px;
    }

    .image-with-numbers .right-text .list-wrapper .list+.list {
        margin: 15px;
    }

    .image-with-numbers .right-text .list-wrapper .list strong {
        font-size: 51px;
    }
}

@media (min-width: 992px) {
    .what-can-do__card-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-with-numbers {
        padding: 70px 0;
    }

    .image-with-numbers .image-left .qube.qube1 {
        bottom: 60px;
    }

    .image-with-numbers .image-left .qube.qube2 {
        top: 50px;
    }

    .image-with-numbers .image-left .qube.qube3 {
        right: 30px;
    }

    .image-with-numbers .image-left .circle_img {
        max-width: 120px;
        bottom: -50px;
    }
}

@media (min-width: 1200px) {
    .capabilities-card .icon {
        width: 80px;
        height: 80px;
    }

    .what-can-do__card-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .image-with-numbers .image-left {
        max-width: 512px;
    }

    .image-with-numbers .image-left .qube {
        max-width: unset;
    }

    .image-with-numbers .image-left .qube.qube1 {
        bottom: 30px;
    }

    .image-with-numbers .image-left .circle_img {
        max-width: 160px;
        bottom: -50px;
    }

    .image-with-numbers .right-text .list-wrapper {
        margin: 40px -5px;
    }

    .image-with-numbers .right-text .list-wrapper .list {
        width: calc(25% - 10px);
        margin: 12px 5px;
    }

    .image-with-numbers .right-text .list-wrapper .list strong {
        font-size: 37px;
    }

    .image-with-numbers .right-text .list-wrapper .list+.list {
        margin: 12px 5px;
    }

    .image-with-numbers .right-text .content {
        font-size: 20px;
    }
}

@media (min-width: 1430px) {
    .what-can-do {
        padding: 50px 0;
    }

    .image-with-numbers {
        padding: 100px 0;
    }

    .what-can-do__card-list {
        gap: 30px;
        max-width: calc(100% - 150px);
    }

    .what-can-do__card-image span {
        font-size: 36px;
    }

    .what-can-do__card-image {
        height: 378px;
    }

    .image-with-numbers .right-text .list-wrapper {
        margin: 40px -12px;
    }

    .image-with-numbers .right-text .list-wrapper .list {
        width: calc(25% - 24px);
        margin: 12px;
        height: 170px;
    }

    .image-with-numbers .right-text .list-wrapper .list+.list {
        margin: 12px;
    }

    .image-with-numbers .right-text .list-wrapper .list strong {
        font-size: 51px;
    }

    .what-can-do__card-item .content {
        padding: 48px 48px 0;
    }
}

@media (min-width: 1660px) {
    .image-with-numbers .image-left {
        width: 645px;
        height: 751px;
        max-width: unset;
    }

    .image-with-numbers .right-text {
        width: calc(100% - 685px);
        padding: 100px 0 0 130px;
    }

    .image-with-numbers .right-text .list-wrapper {
        margin: 60px -12px 55px;
    }

    .image-with-numbers .image-left .qube.qube1 {
        left: 30px;
        bottom: 110px;
    }

    .image-with-numbers .image-left .qube.qube2 {
        top: 55px;
        right: 155px;
    }

    .image-with-numbers .image-left .qube.qube3 {
        right: -20px;
        bottom: 180px;
    }
}

@media (max-width: 767px) {
    .what-can-do__card-list .slick-track .capabilities-card {
        margin: 0 10px;
    }
}



/*what-we-can new-design*/
.three-pillars {
    padding: 65px 0 130px 0;
}

.three-pillars .container {
    width: 100% !important;
    max-width: 1623px;
}

.three-pillars .cards {
    width: 100%;
    margin: 0 auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.three-pillars .card {
    width: 100%;
    border-radius: 24px;
    padding: 40px 40px 30px;
    border: 1px solid var(--2k25-border-1);
}

.three-pillars .card:nth-of-type(1) {
    background-color: #F7F0FA;
}

.three-pillars .card:nth-of-type(2) {
    background-color: #FAF7F0;
}

.three-pillars .card:nth-of-type(3) {
    background-color: #F0FAF7;
}

.three-pillars .content {
    transition: all 0.5s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
}

.three-pillars .front-content {
    opacity: 1;
    position: relative;
}

.three-pillars .back-content {
    transform: rotateY(180deg);
    position: absolute;
}

.three-pillars .card-content-wrap .inner {
    /* min-height: 310px; */
    position: relative;
}

.three-pillars .card-content-wrap .inner:hover .back-content {
    transform: rotateY(0deg);
    opacity: 1;
}

.three-pillars .card-content-wrap .inner:hover .front-content {
    transform: rotateY(180deg);
    opacity: 0;
}

.three-pillars .card-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 16px;
    border-radius: 10px;
    /* margin: 0 0 21px; */
}

.three-pillars .card-icon svg,
.three-pillars .card-icon img {
    width: 100%;
    height: 100%;
}

.three-pillars .icon-text-wrap {
    display: flex;
    align-items: center;
    margin: 0 0 21px;
    gap: 16px;
}

.three-pillars .icon-text-wrap .card-label {
    display: flex;
    font-size: 28px;
    font-family: var(--poppins);
    color: var(--2k25-text-heading);
    font-weight: 600;
}

.three-pillars h3 {
    width: 100%;
    font-weight: 500;
    font-size: 20px;
    color: var(--2k25-text-heading);
    margin: 0 0 6px;
    font-family: var(--poppins);
}

.three-pillars .btn a {
    /* padding: 8px 16px 8px !important; */
    /* min-height: 44px; */
    /* pointer-events: none; */
}

.three-pillars ul {
    padding: 0 0 0 22px;
    margin: 21px 0;
}

.three-pillars .back-content ul {
    margin-top: 0;
}

.three-pillars ul li {
    width: 100%;
    /* font-weight: 400; */
    /* color: var(--2k25-text-body); */
}

.three-pillars ul li:not(:last-child) {
    margin: 0 0 21px;
}

.three-pillars .learn-more {
    border-top: 1px solid var(--2k25-border-1);
    padding: 20px 0 0;
}

.three-pillars .learn-more a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--2k25-blue-primary);
    justify-content: space-between;
}

@media (max-width: 1439px) {
    .three-pillars .cards {
        gap: 20px;
    }

    .three-pillars .card {
        border-radius: 16px;
        padding: 20px;
    }

    .three-pillars .card-icon {
        width: 70px;
        height: 70px;
        padding: 15px;
    }

    .three-pillars h3 {
        font-size: 18px;
    }

    .three-pillars ul li {
        font-size: 16px;
    }

    .three-pillars .learn-more {
        padding: 16px 0 0;
    }

    .three-pillars .learn-more a {
        font-size: 14px;
    }
}

@media (max-width: 1279px) {
    .three-pillars .cards {
        margin: 0px auto 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .three-pillars {
        padding: 60px 0 100px 0;
    }
}

@media (max-width: 991px) {
    .three-pillars {
        padding: 60px 0 80px 0;
    }
}

@media (max-width: 768px) {
    .three-pillars {
        padding: 60px 0 60px 0;
    }

    .three-pillars .cards {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media (max-width: 567px) {
    .three-pillars {
        padding: 35px 0 35px 0;
    }

    .three-pillars .icon-text-wrap .card-label {
        font-size: 20px;
    }

    .three-pillars .card-icon {
        width: 50px;
        height: 50px;
        padding: 8px;
    }
}