@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;
    --primary-color: #FE0082;
    --secondary-color: #414141;
    --secondary-text: #676767;
    --light-bg: #F6F6F4;
}
.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;
}
.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;
}
.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;
}
.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-bg.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: .75rem;
    background-color: #fff;
    color: var(--secondary-color);
    border: 2px solid #fff;
    transition: .3s ease;
    font-size: 1.25rem;
}
.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;
}
.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: .25rem;
    left: 0;
    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: 9px;
    left: 5px;
    background-color: var(--primary-color);
}
.custom-form-checkbox > input:checked + label::after{
    content: '';
    font-family: fontAwesome;
    position: absolute;
    top: 6px;
    left: 5px;
    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{
    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%;
}








/*============Media Query============*/
@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;
    }
}
@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){
    .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){
    .cta-sec{background-image: linear-gradient(0deg, #B6D2F6, #3080D0);background-size: cover;}
    .border-xs-bottom{border-bottom: 1px solid;}
}
