.approach-tab-section {
    width: 100%;
    overflow: hidden;
}

.approach-tab-section .approach-tab-wrapper {
    /* margin-top: 75px; */
    padding: 90px 0;
    position: relative;
    min-height: 800px;
    height: 90vh;
    max-height: 1080px;
    color: var(--colorWhite);
    isolation: isolate;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}


.approach-tab-wrapper .tab-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.2s ease-out;
    will-change: opacity;
}


.approach-tab-wrapper .tab-pane.active .tab-image {
    transition: opacity 0.5s ease-out;
    opacity: 1;
    z-index: 0;
}

.approach-tab-wrapper .tab-pane:not(.active) .tab-image {
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease-out;

}



.approach-tab-section .tab-nav-col {
    position: relative;
    z-index: 1;
}


.approach-tab-wrapper .tab-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top right, rgba(28, 33, 86, 0.9) 0%, rgba(28, 33, 86, 0.5) 50%, rgba(28, 33, 86, 0.1) 70%, rgba(28, 33, 86, 0) 100%);
    z-index: 1;
}

.approach-tab-wrapper .tab-row {
    height: 100%;
}


.approach-tab-wrapper .tab-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}

.approach-tab-wrapper .approach-tabs {
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s linear;
    padding-right: 12%;
    margin-left: 0;
}

.approach-tab-wrapper .approach-tabs .nav-item {
    border-top: 1px solid var(--colorWhite);
    width: 100%;
}


.approach-tab-wrapper .approach-tabs .nav-link {
    padding: 20px 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    color: var(--colorWhite);

}

.approach-tab-wrapper .approach-tabs .arrow-round {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    border: 2px solid var(--colorWhite);
    display: inline-block;
    text-align: center;
    line-height: 19px;
    vertical-align: middle;
    margin-top: -2px;
    margin-left: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;

}

.approach-tab-wrapper .arrow-round svg {
    margin-left: 1.4px;
    width: 70%;
    height: 70%;
    fill: var(--colorWhite);
}



.approach-tab-wrapper .nav-link.active .arrow-round {
    background-color: var(--colorWhite);
    fill: var(--primaryColor);

}

.approach-tab-wrapper .active .arrow-round svg,
.approach-tab-wrapper .nav-link.active .arrow-round svg {
    fill: var(--primaryColor);
}


.approach-tab-section .tab-text-content .tab-title,
.approach-tab-section .tab-text-content .content-text {
    opacity: 0;
    transform: translateY(20px);
}

.approach-tab-wrapper .tab-pane.active .tab-title {
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.approach-tab-wrapper .tab-pane.active .content-text {
    animation: fadeInUp 0.6s ease 0.4s forwards;
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.approach-tab-wrapper .tab-nav-col>.btn {
    display: none;
}

.approach-tab-wrapper .approach-tabs .nav-link.active {
    color: var(--colorWhite);
    font-weight: 500;
}


.approach-tab-wrapper .arrow-round {
    transition: transform 0.3s ease;
}

.approach-tab-wrapper .approach-tabs .nav-link:hover .arrow-round {
    transform: translateX(5px);
}

.approach-tab-wrapper .approach-tabs .nav-link.active .arrow-round {
    transform: translateX(5px);
}



/* testimonial section  */

.team-testimonial-container {
    margin: 40px 0px;
}

.team-testimonial-container .slick-track,
.team-testimonial-container .slick-list {
    height: auto;
}

.team-testimonial-container .slick-list {
    overflow: visible;
}

.team-testimonial-container .slick-slide {
    opacity: 0;
}

.team-testimonial-container .slick-active {
    opacity: 1;
}

.team-testimonial-container .team-member {
    height: 100%;
}

.team-testimonial-container .slide-inner {
    display: flex;
    height: 100%;
}

.team-testimonial-container .people-image {
    width: calc(24% - 40px);
    border-radius: 5px;
    overflow: hidden;
    margin-right: 40px;

}

.team-testimonial-container .people-image .img-wrap {
    width: 100%;
    height: 100%;
    padding-bottom: 100%;
    position: relative;
}

.team-testimonial-container .people-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}


.team-testimonial-container .team-quotes-wrap {
    width: 76%;
    padding: 40px 0px;
    align-content: center;
    border-top: 1px solid #63B4FF;
    border-bottom: 1px solid #63B4FF;

}

.team-quotes-wrap .team-quotes {
    font-size: 36px;
    font-family: var(--primaryFont);
    font-weight: 400;
    margin-bottom: 28px;
}

.team-testimonial-container .team-quotes-author ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-family: var(--primaryFont);
    font-weight: 400;
    margin-left: 0;
}

.team-testimonial-container .team-quotes-author ul li {
    position: relative;
}

.team-testimonial-container .team-quotes-author ul li a,
.team-testimonial-container .team-quotes-author ul li em {
    color: var(--colorBlue900);
}

.team-testimonial-container .team-quotes-author ul li a:hover {
    color: #1C2156;
}

.team-testimonial-container .team-quotes-author ul li:not(:last-child):before {
    content: '/';
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);

}

.team-testimonial-container .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background: transparent;
    width: 30px;
    height: 30px;
    border: 2.5px solid var(--colorBlue200);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
}

.team-testimonial-container .slick-arrow.slick-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.team-testimonial-container .slick-prev {
    left: -50px;
}

.team-testimonial-container .slick-next {
    right: -50px;
}

.team-testimonial-container .slick-arrow svg {
    width: 10px;
    height: 20px;
    fill: var(--colorBlue200);
    transition: fill 0.3s ease;
}

.team-testimonial-container .slick-arrow:hover {
    background: var(--colorBlue200);
}

.team-testimonial-container .slick-prev svg {
    margin-right: 4px;
}

.team-testimonial-container .slick-next svg {
    margin-left: 4px;
}

.team-testimonial-container .slick-arrow:hover svg {
    fill: var(--colorWhite);
}


/* expertise-grid  card*/


.expertise-grid {
    margin: 0 -15px;
}

.expertise-grid .content-col {
    padding: 0 15px;
}

.expertise-grid .content-col {
    margin-bottom: 30px;
}


.expertise-grid .expertise-card {
    position: relative;
    border-radius: 5px;
    min-height: 350px;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.expertise-grid .expertise-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: all 300ms ease-in-out;
}



.expertise-grid .expertise-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
}

.expertise-grid .expertise-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: var(--letterSpacing);
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--colorWhite);
}

.expertise-grid .expertise-content.text-light .expertise-subtitle,
.expertise-content.text-light .expertise-link {
    color: var(--colorSecondary);
}

.expertise-grid .expertise-content.text-dark .expertise-subtitle {
    color: #1C2156;
}


.expertise-title {
    font-weight: 300;
}

.expertise-link {
    margin-top: auto;
    font-weight: 500;
    max-width: 360px;
}

.expertise-content.text-dark .expertise-link:hover {
    color: var(--colorSecondary);
    color: var(--colorWhite);

}

.expertise-content.text-light .expertise-link:hover {
    color: var(--colorWhite);
}

.expertise-content.text-dark .expertise-link:hover,
.expertise-content.text-dark em {
    color: #1080FF;
}


.expertise-grid .arrow-round {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 1px solid;
    text-align: center;
    margin-left: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;

}


.expertise-grid .arrow-round .arrow-icon {
    fill: currentColor;
    width: 7px;
    height: 12px;
}


/*
.expertise-card .svg-bg {
    position: absolute;
    z-index: 2;
    bottom: 0px;
    right: -18%;
    height: 100%;
    width: 100%;
} */


/* value creation */

.value-creation-row .slick-list {
    overflow: visible;
}

.value-grid-wrapper .slick-slider {
    user-select: unset;
    -webkit-user-select: unset;

}

.value-creation-row .value-creation-col {
    padding-right: 65px;
    position: relative;
}

.value-creation-row .value-creation-type {
    border: 2px solid #75B0DF;
    font-size: 22px;
    font-weight: 500;
    width: 100%;
    padding: 12px 24px;
    border-radius: 35px;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
    background-color: #203F62;
    font-family: var(--secondaryFont);
    display: flex;
    align-items: center;
}

.value-creation-col .value-creation-top::after {
    content: '';
    width: 160%;
    height: 2px;
    background-color: #75B0DF;
    position: absolute;
    left: 10px;
    top: 50%;
    z-index: 0;
    transform: translateY(-50%);
}

.value-creation-col .value-creation-top {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.value-creation-type::before,
.value-creation-type::after {
    content: '';
    background-image: url(../images/tech-opportunities/value-btn-curve.svg);
    width: 12px;
    height: 24px;
    background-size: 24px;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-position: center;
}

.value-creation-type::after {
    transform: translateY(-50%) rotate(180deg);
    right: 100%;
    left: auto;
}


.value-creation-col:first-child .value-creation-type::after {
    display: none;
}

.value-creation-col .content-text ul {
    padding-left: 1.5rem;
    margin-left: 0;

}

.value-creation-col .content-text ul li {
    margin-bottom: 15px;
    /* font-size: 22px; */
    font-weight: 300;
    line-height: 1.5;
}


.value-creation-col:last-child .value-creation-type::before {
    display: none;
}


.value-creation-col:last-child .value-creation-top::after {
    display: none;
}

.value-creation-row .slick-arrow {
    height: 30px;
    width: 30px;
    color: #5d8bbf;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    transform: none;
    left: auto;
    right: 0;
}

.value-creation-row .slick-arrow.slick-disabled {
    opacity: 0;
    visibility: hidden;
}

.value-creation-row .slick-arrow.slick-prev {
    right: 40px;
}

.value-creation-row .slick-arrow path {
    fill: currentColor;
}

.value-creation-row .slick-arrow svg {
    width: 9px;
    height: auto;
}

.value-creation-row .slick-prev svg {
    margin-left: -1px;
}

.value-creation-row .slick-next svg {
    margin-left: 1px;
}

.value-creation-row.slick-slider {
    padding-top: 60px;
    margin: 0;
}

/* /* operational  */

.operational-content-wrapper {
    margin-top: 100px;
}

.operational-content-wrapper .accordion-image {
    margin-top: 20px;
}

.accordion-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.4s ease-out;
}


.operational-content-wrapper .accordion-header {
    margin-bottom: 0;
}

.operational-content-wrapper .accordion-item {
    border: none;
    color: #ffffff;
    background-color: transparent;
    border-radius: unset;
    padding: 35px 0px;

}

.operational-content-wrapper .accordion-body .content-text {
    padding-right: 18%;
}

.operational-content-wrapper .accordion-item:not(:last-child) {
    border-bottom: 1px solid #5D8BBF;
}

.operational-content-wrapper .accordion-item .accordion-button {
    font-size: 36px;
    border-radius: unset;
    font-family: var(--primaryFont);
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0px;
    padding-right: 50px;

}


.operational-content-wrapper .accordion {
    padding-left: 50px;
}


.operational-content-wrapper .accordion-button {
    color: unset;
    background-color: transparent;
    box-shadow: unset;
    outline: none;
}

.operational-content-wrapper .accordion-body {
    padding: 0px;
    padding-top: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.operational-content-wrapper .accordion-button::after {
    display: none;
}


.operational-content-wrapper .accordion-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #BBDDFC;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

}

.operational-content-wrapper .accordion-icon svg {
    width: 20px;
    height: 20px;
    fill: #BBDDFC;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.operational-content-wrapper .accordion-button:hover .accordion-icon {
    background-color: #BBDDFC;
}


.operational-content-wrapper .accordion-button:hover .accordion-icon svg {
    fill: #1C2156;
}


.operational-content-wrapper .accordion-button:not(.collapsed) .accordion-icon {
    background-color: #BBDDFC;
}

.operational-content-wrapper .accordion-button:not(.collapsed) .accordion-icon svg {
    transform: rotate(45deg);
    fill: #1C2156;
    transition: transform 0.3s ease, fill 0.2s ease;
}

.operational-content-wrapper .accordion-item:first-child {
    padding-top: 0px;
}

.content-text ul li {
    line-height: 1.5;
}

.accordion-image-col svg {
    width: 100%;
    margin-top: -20%;
}

.accordion-image-col svg>g {
    display: none;
}

.accordion-image-col svg path {
    fill: #e1f46b;
}



.top-header .more-menu-link:focus-visible,
.navbar .topLinks .navbar-nav a:focus-visible,
.bottom-header .navbar .navbar-brand:focus-visible,
.sitemap-page-wrap .sitemap-page-title>a:focus-visible,
.sitemap-news-wrap .all-news-link>a:focus-within,
.featured-news-content .news-title-col>a:focus-visible,
.slick-slider .slick-arrow:focus-visible,
.news-items-slider .featured-news-img a:focus-visible,
.featured-news-title a:focus-visible,
.news-title a:focus-visible,
.people-detail-link:focus-visible,
a.pagination-link:focus-visible,
.media-content-single .content-list-single ul li a:focus-visible,
.sticky-filter .top-title-filter-wrapper .sort-filter-wrap .filter-btn:focus-visible,
.process-accordion-wrap p>a:focus-visible,
.content-text p>a:focus-visible,
.accordion-item .accordion-button:focus-visible,
.team-quotes-author a:focus-visible,
.featured-news-image a:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .1rem rgba(13, 110, 253, .25);
}

.slider-wrapper .slick-arrow:focus-visible,
.process-section .accordion-modal-btn:focus-visible,
.contact-content-main button:focus-visible,
.approach-tabs .nav-link:focus-visible,
.expertise-content a:focus-visible,
.operational-content-wrapper .accordion-item .accordion-button:focus-visible,
.link-arrow:focus-visible,
.contact-content-wrap .content-text p>a:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .1rem rgb(251 251 251 / 80%);
}



.impact-document-section .report-col-inner>a:focus-visible,
.scroll-sec .scroll:focus-visible,
.team-testimonial-container .slick-arrow:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgb(3 24 55 / 82%);
}

.featured-news-title a,
.news-title a {
    display: block;
}

.people-breadcrumb-single a:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .14rem rgba(13, 110, 253, .25);
}

.investment-spotlight-single a {
    display: block;
}

button.play-video-btn:focus-visible,
.investment-spotlight-single a:focus-visible,
.footermenu a:focus-visible,
footer ul.social-icon li a:focus-visible,
ul.career-nav-listing a:focus-visible,
.slick-outline.slick-arrow:focus-visible,
.contact-content-wrap a:focus-visible,
.small-banner-links a:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .1rem rgba(255, 255, 225, .5);
}

.portfolio-row .portfolio-col a:focus-visible,
.case-study-grid .case-study-thumbnail a:focus-visible,
.portfolio-link a:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(255, 255, 225, .5);
}

.btn:focus-visible,
.portfolio-search-wrap .search-portfolio input[type="search"]:focus-visible,
.portfolio-search-wrap .search-portfolio [type="button"]:focus-visible,
.switch-view a:focus-visible,
.fraud-banner__close:focus-visible {
    box-shadow: 0 0 0 .2rem rgba(0, 26, 255, .5) !important;
}

.portfolio-row .portfolio-col .col-inner {
    overflow: unset;
}

.banner-tanagram-section .banner-nav-slider .slide-single:focus-visible {
    outline: rgba(0, 26, 255, .5) auto 1px !important;
}



.detail-content-right a{
    color: var(--colorThird);
}
.detail-content-right a:hover{
    color: var(--primaryColor);
}

.text-light .detail-content-right a{
    color: #63b4ff;
     text-decoration: none!important;
}
.text-light .detail-content-right a:hover{
    color: #fff;
}