@font-face {
    font-family: 'TPSans';
    src: url('../fonts/TPSans/TPSans-Black.ttf');
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'TPSans';
    src: url('../fonts/TPSans/TPSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TPSans';
    src: url('../fonts/TPSans/TPSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TPSans';
    src: url('../fonts/TPSans/TPSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Added: TPSans Regular */
@font-face {
    font-family: 'TPSans';
    src: url('../fonts/TPSans/TPSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TPSans';
    src: url('../fonts/TPSans/TPSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TPSans';
    src: url('../fonts/TPSans/TPSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TPSans';
    src: url('../fonts/TPSans/TPSans-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

html,
body {
    font-family: 'TPSans' !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    word-break: break-word;
    --primary-color: #FE0082;
    --secondary-color: #414141;
    --secondary-text: #676767;
    --light-bg: #F6F6F4;
}

/* Hide default calendar icon (Chrome, Edge, Safari) */
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
}

input[type="date"] {
    padding-right: 35px;
    background: url('/website/images/calendar.svg') no-repeat right 10px center;
    background-size: 18px;
    cursor: pointer;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-secondary {
    color: var(--secondary-text) !important;
}

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

.f-18 {
    font-size: 1.125rem;
}

.f-15 {
    font-size: 1rem;
}

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

.mvh-100 {
    min-height: 100vh;
}

.special-btn {
    background-color: transparent;
    color: #000;
    border: 2px solid var(--primary-color);
    transition: all .3s ease-in-out;
    font-size: 1.875rem;
    text-transform: uppercase;
}

.special-btn.sm {
    font-size: 1.5rem;
}

.special-btn:hover,
.special-btn.fill {
    background-color: var(--primary-color);
    color: #fff;
}

.special-btn.fill:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.special-btn.light-fill {
    background-color: #FFEBF5;
    color: var(--primary-color);
    border-color: #FFEBF5;
}

.gradient {
    background-image: linear-gradient(90deg, rgba(119, 0, 150, 1), rgba(254, 0, 130, 1));
}

header .navbar-expand-lg .navbar-nav .nav-item {
    margin-right: 1.25rem;
}

header .navbar-expand-lg .navbar-nav .nav-link {
    color: #5E6670;
    padding: .75rem .25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.slick-slider:not(.slick-initialized)>div:not(:first-child) {
    display: none;
}

.home-banner-slider .slick-dots {
    position: absolute;
    bottom: 5rem;
    left: 0;
    width: 100%;
}

.home-banner-slider .slick-dots li {
    width: 9px;
    height: 9px;
    border-radius: 9px;
    background-color: #fff;
    margin: 3px;
    transition: .5s ease;
}

.home-banner-slider .slick-dots li.slick-active {
    background-color: var(--primary-color);
    width: 100px;
}

.home-banner-slider .slick-dots li button {
    display: none;
}

.dtabs div {
    padding: .75rem 1.5rem;
    border-radius: 3rem;
    cursor: pointer;
    border: 1px solid var(--secondary-color);
    transition: .3s ease;
}

.dtabs div:hover,
.dtabs div.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.shadow-custom {
    box-shadow: 0px 3px 8px 0px rgba(48, 150, 136, 0.1);
    transition: .3s ease;
}

.shadow-custom:hover {
    box-shadow: 0px 6px 26px 0px rgba(48, 150, 136, 0.2);
}

.time-badge {
    display: inline-block;
    background-color: rgba(254, 0, 131, 0.1);
    color: var(--primary-color);
    padding: .5rem 1rem;
}

.jobs-page .time-badge {
    padding: .35rem .75rem;
}

.process-single {
    padding-bottom: 3rem;
    position: relative;
    padding-left: 3rem;
}

.process-single .pdetail {
    transition: .3s ease;
}

.process-single.active .pdetail {
    color: var(--primary-color);
}

.process-single::before {
    content: '';
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, .2);
    border: 8px solid #D3D2C9;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s ease;
}

.process-single::after {
    content: '';
    width: 1px;
    height: calc(100% - 4rem);
    background: #D3D2C9;
    position: absolute;
    top: 3rem;
    left: 1rem;
    transition: .3s ease;
}

.font-70 {
    font-size: 70px;
}

.process-single.active::before {
    border-color: var(--primary-color);
}

.process-single.active::after {
    background-color: var(--primary-color);
}

.hov img {
    transition: filter .3s ease, transform .7s ease;
    filter: grayscale(100%);
}

.hov:hover img {
    transform: scale(1.25);
    filter: grayscale(0%);
}

.cta-sec {
    background-color: #3080D0;
    background-image: url('../images/cta-bg1.png'), linear-gradient(0deg, #B6D2F6, #4191e0);
    background-repeat: no-repeat;
    background-size: auto, cover;
    background-position: 100% 0%, center;
}

.time-sec {
    background-color: #3080D0;
    background-image: url('../images/tp-life/time.png'), linear-gradient(0deg, #B6D2F6, #3080D0);
    background-repeat: no-repeat;
    background-size: auto, cover;
    background-position: 100% 0%, center;
}

.accordion.custom-accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    --bs-accordion-active-color: var(--secondary-color);
    --bs-accordion-active-bg: #fff;
}

.custom-accordion .accordion-button::after {
    background-color: #000;
    border-radius: 50%;
    background-size: 1rem;
    background-position: center;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-color: var(--primary-color);
}

.custom-accordion .accordion-body {
    padding: 0 var(--bs-accordion-body-padding-x) 1rem;
}

.social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: .75rem;
}

.social a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 8.75rem;
    color: #ffffff;
    border: 1px solid #fff;
    transition: .3s ease;
    font-size: 1.25rem;
}

.border-webclr {
    --bs-border-opacity: 1;
    border-color: rgb(254 0 130) !important;
}

.social a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.social.bordered a {
    background-color: rgba(145, 142, 129, 0.1);
    color: #918E81;
}

.social.bordered a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.gototop {
    position: fixed;
    bottom: 3rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    transition: .3s ease;
    font-size: 1.25rem;
    display: none;
    z-index: 9;
}

.gototop:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.login-box {
    background-color: #6F6297;
}

.pagination {
    gap: 0.25rem;
    list-style: none;
}

.pagination li:first-child {
    margin-right: 1.5rem;
}

.pagination li:last-child {
    margin-left: 1.5rem;
}

.pagination li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #fff;
    color: var(--secondary-color);
    border: 2px solid transparent;
    transition: .3s ease;
    font-size: 1.25rem;
}

.pagination li a:not(.disabled):hover,
.pagination li a.active {
    background-color: var(--primary-color);
    color: #fff;
}

.custom-form-radio>input,
.custom-form-checkbox>input {
    display: none;
}

.custom-form-radio>label,
.custom-form-checkbox>label {
    padding-left: 1.75rem;
    display: flex;
    align-items: center;
    position: relative;
}

.custom-form-radio>label::before,
.custom-form-checkbox>label::before {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 2px solid #D3D2C9;
}

.custom-form-checkbox>label::before {
    border-radius: .25rem;
}

.custom-form-radio>input:checked+label::before,
.custom-form-checkbox>input:checked+label::before {
    border-color: var(--primary-color);
}

.custom-form-checkbox>input:checked+label::before {
    background-color: var(--primary-color);
}

.custom-form-radio>input:checked+label::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
}

.custom-form-checkbox>input:checked+label::after {
    content: '';
    font-family: fontAwesome;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 13px;
    color: #fff;
}

.form-check-input.bt {
    display: none;
}

.form-check-input.bt+label {
    padding: .5rem 1rem;
    border-radius: 2rem;
    font-size: 1.25rem;
    transition: .3s ease;
    border: 1px solid #D3D2C9;
    color: var(--secondary-color);
}

.form-check-input.bt:checked+label {
    background-color: var(--primary-color);
    color: #fff;
}

.account-page {
    min-height: calc(100vh - 90px);
}

.account-menu-wrap {
    width: 279px;
    border-right: 1px solid #D3D2C9;
}

.account-content {
    width: calc(100% - 280px);
}

.account-link {
    color: #918E81;
    transition: padding .3s ease, color .3s ease;
    position: relative;
}

.account-link::before {
    content: '';
    display: inline-block;
    width: .25rem;
    height: 100%;
    background-color: var(--primary-color);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleY(0);
    transition: transform .3s ease;
}

.account-link:hover::before,
.account-link.active::before {
    transform: scaleY(1);
}

.account-link:hover,
.account-link.active {
    color: var(--primary-color);
    padding-left: .75rem;
}

.job-description {
    color: #676767;
}

.job-description h1,
.job-description h2,
.job-description h3,
.job-description h4,
.job-description h5,
.job-description h6 {
    color: #000;
    margin-top: 2rem;
}

.job-description ul li,
.job-description ol li {
    position: relative;
    list-style: none;
    margin-bottom: .5rem;
}

.job-description ul li::before,
.job-description ol li::before {
    content: '';
    font-family: fontAwesome;
    position: absolute;
    top: .25rem;
    left: -2rem;
    color: #40BF79;
    font-size: 80%;
}

.grayscale {
    filter: grayscale(100%);
}

.home-banner-text {
    position: absolute;
    top: 0;
    z-index: 999;
    top: 25%;
    /* width: 724px; */
    min-width: 700px;
    padding: 0 45px;
}

.home-banner-slider .px-0.position-relative::before,
.home-banner-slider .px-0::before,
.home-banner-slider .px-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Adjust opacity as needed */
    z-index: 1;
}

.help-section {
    min-height: 400px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.15)),
        url('../images/contact.jpg') center right / cover no-repeat;
}

.jobs-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url('../images/jobs/1.png') center right / cover no-repeat;
    min-height: 608px;
}

.blog-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url('../images/blog/1.png') center right / cover no-repeat;
    min-height: 615px;
}

.life-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url('../images/breadcrumb-life.png') center right / cover no-repeat;
    min-height: 615px;
}

.india-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url('../images/tp-in-india/1.png') center right / cover no-repeat;
    min-height: 615px;
}

.life-diversity {
    background: url('../images/tp-life/diversity-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    height: 412px;
}

.impacting-life {
    background: url('../images/tp-india/impact.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    height: 412px;
}

.job-btn-font {
    font-size: 0.875rem;
}

.india-founder-height {
    height: 355px;
}

.daniel {
    position: relative;
}

.daniel::before {
    content: '';
    position: absolute;
    background: url(../images/tp-india/quote.svg);
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    left: -30px;
    top: -30px;
}

.l-and-d ul {
    line-height: 33px;
    margin-top: 15px;
}

.l-and-d .accordion-button:focus {
    box-shadow: none;
}

.l-and-d .accordion-button {
    border: 1px solid #ffffff;
    border-radius: 15px;
    box-shadow: none;
}

.l-and-d .accordion-item:first-of-type>.accordion-header .accordion-button {
    border: 1px solid #ffffff;
    border-radius: 15px !important;
    box-shadow: none;
    background: none;
}

.l-and-d .accordion-item:not(:first-of-type) {
    border: 1px solid #d1d1c8;
}

.l-and-d .accordion-item:last-of-type>.accordion-collapse {
    border: 1px solid #ffffff;
    border-radius: 15px !important;
    box-shadow: none;
}

.l-and-d .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border: 1px solid #ffffff;
    border-radius: 15px !important;
    box-shadow: none;
}

.l-and-d .accordion-item:first-of-type {
    border: 1px solid #d1d1c8;
}

/* Remove default arrow */
.l-and-d .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 28px;
    font-weight: 200;
    color: #000;
    transform: none;
    margin-top: -10px;
}

/* Change + to - when open */
.l-and-d .accordion-button:not(.collapsed)::after {
    content: "–";
}

/* Optional: spacing & alignment */
.l-and-d .accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
}

.en-width img {
    width: 58px;
    object-fit: contain;
}

.l-and-d ul {
    list-style: none;
}

.award-box {
    text-align: center;
    margin-bottom: 30px;
}

.js-cookie-consent {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    padding: 16px 20px;
    background: #111827;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.js-cookie-consent a {
    color: #93c5fd;
    text-decoration: underline;
}

.js-cookie-consent button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.js-cookie-consent button:hover {
    background: #1d4ed8;
}

.pagination .page-link {
    box-shadow: none !important;
}

@media (max-width: 640px) {
    .js-cookie-consent {
        right: 12px;
        left: 12px;
        bottom: 12px;
        max-width: unset;
    }
}

.js-cookie-consent {
    position: fixed;
    bottom: 24px;
    right: 18%;
    max-width: 60%;
    padding: 16px 20px;
    background: #ffffff;
    color: #111827;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.js-cookie-consent a {
    color: #93c5fd;
    text-decoration: underline;
}

.js-cookie-consent button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.js-cookie-consent button:hover {
    background: #1d4ed8;
}

@media (max-width: 640px) {
    .js-cookie-consent {
        right: 12px;
        left: 12px;
        bottom: 12px;
        max-width: unset;
    }
}

/*============Media Query============*/
@media (max-width: 576px) {
    .help-section {
        min-height: 280px;
        background-position: center;
    }

    .jobs-breadcrumb,
    .blog-breadcrumb,
    .life-breadcrumb,
    .india-breadcrumb {
        min-height: 280px;
        background-position: center;
    }

    .help-section h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .help-section .display-4 {
        /* font-size: 2rem;
        line-height: 1.2; */
        color: #ffffff;
    }

    .help-section .fs-4 {
        font-size: 1rem;
    }

    .help-section .btn {
        font-size: 1rem !important;
        padding: 0.5rem 1rem;
        color: #ffffff;
    }
}

@media(min-width:1350px) and (max-width:1399.98px) {
    .container {
        max-width: 1300px;
    }
}

@media (min-width: 768px) {
    .border-md-end {
        border-right: 1px solid;
    }

    .process-single {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 10%;
        padding-left: 0;
        padding-bottom: 5rem;
    }

    .process-single:nth-child(2n) {
        flex-direction: row-reverse;
    }

    .process-single .pstep,
    .process-single .pdetail {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .process-single:nth-child(2n+1) .pstep,
    .process-single:nth-child(2n) .pdetail {
        text-align: right;
    }

    .process-single::before,
    .process-single::after {
        left: auto;
    }

    .blog-filter {
        border-radius: 50rem;
    }
}

@media (min-width: 992px) {
    header .navbar-expand-lg .navbar-nav .nav-item>.nav-link.active {
        border-bottom: 2px solid var(--primary-color);
    }

    .job-search {
        /* margin-top: -5rem; */
    }
}

@media (min-width:992px) and (max-width: 1199.98px) {
    .display-4 {
        font-size: 2.75rem;
    }

    .display-5 {
        font-size: 2.5rem;
    }

    header .navbar-expand-lg .navbar-nav .nav-item {
        margin-right: 1rem;
    }

    header .navbar-expand-lg .navbar-nav .nav-link {
        padding: .75rem 0;
    }
}

@media (max-width: 1199.98px) {
    .special-btn {
        font-size: 1.25rem;
    }

    .special-btn.sm {
        font-size: 1.125rem;
    }
}

@media (max-width:991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1.5rem 1rem;
    }

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

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M24 6L6 24'/%3e%3c/svg%3e");
    }

    .mobile-filter {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 999999;
        padding: 2rem;
        visibility: hidden;
        opacity: 0;
        overflow: auto;
    }

    .mobile-filter.show {
        visibility: visible;
        opacity: 1;
    }

    .home-banner-slider .slick-dots {
        bottom: 1rem;
    }

}

@media (max-width:767px) {
    .account-menu-wrap {
        display: none;
    }

    .cta-sec {
        background-image: linear-gradient(0deg, #B6D2F6, #3080D0);
        background-size: cover;
    }

    .border-xs-bottom {
        border-bottom: 1px solid;
    }

    .life-breadcrumb {
        min-height: 300px;
    }

    .home-banner-slider img {
        height: 460px;
        object-fit: cover;
    }

    .home-banner-slider .home-banner-text {
        position: absolute;
        z-index: 999;
        top: 25%;
        /* width: 724px; */
        min-width: auto;
        padding: 0 20px;
        width: 100%;
        left: 0;
    }

    .home-banner-slider .home-banner-text .display-4 {
        font-size: 28px;
    }

    .india-breadcrumb {
        min-height: 225px;
    }

    .account-menu-wrap {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #D3D2C9;
    }

    .account-content {
        width: 100%;
    }

    .dtabs div {
        padding: .75rem 1.25rem
    }

    .pagination {
        justify-content: space-between;
        width: 100%;
    }

    .badge {
        white-space: initial;
    }

    .blog-filter {
        border-radius: 1rem;
    }

    .blog-filter .border-start {
        border: none !important;
    }

    .blog-filter .mobile-border {
        border-bottom: 1px solid #D3D2C9 !important;
        border-radius: 0 !important;
    }
}