
@import url('https://fonts.cdnfonts.com/css/campton');
/* @import url('https://fonts.cdnfonts.com/css/arial-2'); */
@import url('./../fonts/arial/style.css');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");


.py {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.py-sm {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.pt {
    padding-top: 2rem;
}
.pb {
    padding-bottom: 2rem;
}
.pt-lg {
    padding-top: 4rem;
}
.z-mt-lg {
    margin-top: 1.7rem;
}
.pb-lg {
    padding-bottom: 4rem;
}
.block-d {
    display: block;
}
.block-d-inline {
    display: inline-block;
}
.text-italic {
    font-style: italic;
}
header .nav-link:focus, header .nav-link:hover {
    color: var(--white);
}
.btn-close:focus {
    box-shadow: none;
}
.btn {
    font-size: var(--btn-font-size);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    z-index: 1;
    position: relative;
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs);
    overflow: hidden;
}
.btn::before {
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    background-color: var(--btn-bg-primary-hover);
    content: "";
    transform: scaleY(0.0) rotateX(0deg);
    z-index: -1;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;

}
.btn:hover:before {
    transform: scaleY(1.0) rotateX(0deg);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.block {
    display: block;
}

.z-1 {
    z-index: 1;
}
a {
    text-decoration: none;
}
.center {
    text-align: center;
}
.ww-100 {
    width: 100%;
}
a.link {
    color: var(--color-two);
}
.btn-primary {
    background-color: var(--btn-bg-primary);
    border-color: var(--btn-bg-primary);
        display: inline-flex;
        align-items: center;

}
.btn-primary-outline {
    background-color: var(--white);
    border-color: var(--btn-bg-primary);
    border-radius: var(--border-radius-sm);
    -webkit-border-radius: var(--border-radius-sm);
    -moz-border-radius: var(--border-radius-sm);
    -ms-border-radius: var(--border-radius-sm);
    -o-border-radius: var(--border-radius-sm);
}
.btn-primary-outline.round {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}
.btn.clr {
    color: var(--color-one);
}
.btn-primary-outline:hover {
    color: var(--white);
}
.btn-primary-outline.sm {
    font-size: var(--btn-sm-font-size);
    padding: 2px 7px;
}
.btn-primary.sm {
    font-size: var(--btn-sm-font-size);
}
.btn-primary.xs {
    font-size: var(--btn-xs-font-size);
}
.btn-primary.md {
    font-size: var(--btn-md-font-size);
}
.btn-primary.lg {
    padding: 12px 18px;
}
.btn-primary svg {
    margin-left: 5px;
}
.btn-primary.lg svg {
    height: 20px;
    width: 14px;
}
.btn-primary.sm svg {
    height: 22px;
    width: 8px;
}
.btn-primary.xs svg {
    height: 22px;
    width: 8px;
}
.btn-primary:hover {
    background-color: var(--btn-bg-primary);
    border-color: var(--btn-bg-primary);
}
.btn-primary:active,
.btn-primary.active,
.btn.btn-primary:active,
.btn.btn-primary.active,
.btn.btn-primary-outline:active,
.btn.btn-primary-outline.active {
    background-color: var(--btn-bg-primary-hover);
    border-color: var(--btn-bg-primary-hover);
    color: var(--white);
}
.btn-primary.blue {
    background-color: var(--bg-two);
    border-color: var(--bg-two);
}
.main-heading.center,
.sub-heading.center,
.para.center {
    text-align: center;
}
img.border-radius {
    border-radius: var(--border-radius-md);
    -webkit-border-radius: var(--border-radius-md);
    -moz-border-radius: var(--border-radius-md);
    -ms-border-radius: var(--border-radius-md);
    -o-border-radius: var(--border-radius-md);
}
img.border-radius-xs {
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs);
}
.main-heading.capitalize,
.sub-heading.capitalize {
    text-transform: uppercase;
}
.main-heading.bold h2,
.sub-heading.bold h3 {
    font-weight: var(--font-bold); 
}
.main-heading.medium h2,
.sub-heading.medium h3 {
    font-weight: var(--font-medium); 
}
.main-heading h2 {
    font-size: var(--main-heading-a);
    font-weight: var(--font-semibold);
}
.sub-heading h3 {
    font-size: var(--sub-heading);
    font-weight: var(--font-semibold);
}
.main-heading.lg h2 {
    font-size: var(--main-heading-b);
}
.main-heading.mb,
.sub-heading.mb {
    margin-bottom: 5px;
}
.main-heading.mb-lg,
.sub-heading.mb-lg {
    margin-bottom: 10px;
}
.main-heading.mb-xl,
.sub-heading.mb-xl {
    margin-bottom: 15px;
}
.main-heading.mb-xxl,
.sub-heading.mb-xxl {
    margin-bottom: 20px;
}
.main-heading.mb-xxxl,
.sub-heading.mb-xxxl {
    margin-bottom: 25px;
}
.para p {
    font-size: var(--para);
}
.para.lg p {
    font-size: var(--para-lg);
}
.para.md p {
    font-size: var(--para-md);
}
.para.light p {
    font-weight: var(--font-light);
}
.para.sub p {

    font-size: var(--para-sub);

}
.para.sm p {
    font-size: var(--para-sm);
}
.para.xs p {
    font-size: var(--para-xs);
}
.nv-bd {
    padding-top: 20px;
    padding-bottom: 20px;
}
.nv-bd li a {
    color: #A3A3A3;
}
.nv-bd li.active {
    color: var(--body-color);
}
.form-cst .mb {
    margin-bottom: 18px;
}
.form-cst .form-control:focus, .form-cst .form-select:focus {
    box-shadow: none;
    border-color: var(--body-color);
    background-color: transparent;
}
.form-cst .form-control,
.form-cst .form-select {
    font-size: var(--body);
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs);
}
.cmn-mb {
    margin-bottom: 20px;
}
.pt-mn {
    padding-top: 13rem;
}
.seperator.cst {
    width: 100%;
    height: 1px;
    background-color: var(--bg-two);
}
.w-mb {
    margin-bottom: 15px;
}
/*  */
.modal.cmn .modal-content {
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs);
    overflow: hidden;
}
.modal .login-wrap .left,
.modal .login-wrap .left .bg,
.modal .login-wrap .left .bg img {
    height: 100%;
}
.login-wrap .left .bg img {
    height: 100vh;
    object-fit: cover;
    width: 100%;
}
.login-wrap .right {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.login-wrap .right.center {
    text-align: center;
}
.login-wrap .right .sub-heading {
    position: relative;
}
.login-wrap .sub-heading h3:before, .login-wrap .sub-heading h3:after {
    content: "";
    height: 1px;
    position: absolute;
    top: 10px;
    width: 10%;
}
.login-wrap .sub-heading h3:before {
    background: linear-gradient(to left, #7e7e7e 0%, #fff 100%);
    left: 0;
}
.login-wrap .sub-heading h3:after {
    background: linear-gradient(to right, #7e7e7e 0%, #fff 100%);
    right: 0;
}
.login-wrap .right .seperator {
    border-top: 1px solid #D8D8D8;
    margin-top: 20px;
    padding-top: 20px;
}
.login-wrap .right .logo.mb {
    margin-bottom: 40px;
}
/*  */
.breadcrumb {
    color: var(--white);
    padding: 280px 0 100px;
    margin-bottom: 0;
}
.breadcrumb.ps-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/ps-1.jpg?v=1.0');
        background-size: cover;

}
.breadcrumb.about-planning-toolkit-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/about-planning-toolkit.jpg?v=1.0');
        background-size: cover;

}
.breadcrumb.ps-component-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/ps-component-min.jpg');
        background-size: cover;

}
.breadcrumb.pre-fs-roadmap-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/pre-fs-roadmap-min.jpg');
        background-size: cover;

}
.breadcrumb.pre-fs-expertise-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/pre-fs-expertise-min.jpg');
        background-size: cover;

}
.breadcrumb.pre-fs-stakeholder-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/pre-fs-stakeholder-min.jpg');
        background-size: cover;

}
.breadcrumb.ps-generator-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/ps-generator-min.jpg');
        background-size: cover;

}
.breadcrumb.ps-roadmap-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/ps-roadmap-min.jpg');
        background-size: cover;

}
.breadcrumb.about-project-planning-toolkit-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/about-project-planning-toolkit-min.jpg');
        background-size: cover;

}
.breadcrumb.ps-templates-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/ps-templates-min.jpg');
        background-size: cover;

}
.breadcrumb.pre-fs-component-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/pre-fs-component-banner-min.jpg?v=1.0');
        background-size: cover;

}
.breadcrumb.pre-fs-toolkits-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/pre-fs-toolkits.jpg');
        background-size: cover;

}
.breadcrumb.pre-fs-templates-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/pre-fs-templates-min.jpg');
        background-size: cover;

}
.breadcrumb.pre-fs-tools-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/pre-fs-tools-min.jpg');
        background-size: cover;

}
.breadcrumb.pre-fs-checklists-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/pre-fs-checklists-min.jpg');
        background-size: cover;

}
.breadcrumb.ps-tools-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/ps-tools-min.jpg');
        background-size: cover;

}
.breadcrumb.ps-checklists-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/ps-checklists-min.jpg?v=1.1');
        background-size: cover;

}
.breadcrumb h1 {
    font-family: var(--secondary-font);
    font-weight: var(--font-black);
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 1);
    font-size: var(--xxl-font-size);
    text-transform: uppercase;
    line-height: 1.4;
}
.breadcrumb p {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    font-size: var(--sub-heading-xl);
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: var(--font-medium);
}
/*  */

.accd .accordion-button:focus {
    box-shadow: none;
}
.int {
    color: var(--white);
    padding: 10px 12px 15px;
    background-color: var(--bg-two);
    border-top-right-radius: var(--border-radius-lg);
    border-bottom-left-radius: var(--border-radius-lg);
    border-top-left-radius: var(--border-radius-lg);
    font-size: var(--main-heading-a);
    font-weight: var(--font-semibold);

}

.accd .accordion-button::after {
    background-image: url("../../assets/icons/plus.svg");
  }
  .accd .accordion-button:not(.collapsed)::after {
    background-image: url("../../assets/icons/minus.svg");
  }
  .accd .accordion {
    --bs-accordion-border-color: transparent;
  }
  .accd .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.accd .accordion-button {
    padding: 22px 20px; 
    gap: 20px;
    font-size: var(--body);
    color: var(--body-color);
    background-color: transparent;
    font-weight: var(--font-semibold);

}
.accd .accordion-button,
.accd .accordion-body,
.accd .list .para.lt p {
    font-size: var(--accordion-font-size);

}
.accd .accordion-body {
    color: var(--body-color);
    padding-top: 0;
    /* margin-top: -10px; */
}
.accd .accordion-item .accordion-header .accordion-button,
.accd .accordion-item .accordion-header .accordion-button.collapsed,
.accd .accordion-item {
    border-radius: var(--border-radius-sm);
    -webkit-border-radius: var(--border-radius-sm);
    -moz-border-radius: var(--border-radius-sm);
    -ms-border-radius: var(--border-radius-sm);
    -o-border-radius: var(--border-radius-sm);
} 
.accd .list .bl {
    font-weight: var(--font-semibold);
}
.accd .list {
    padding-left: 110px;
}
.accd .list .para.lt  {
    margin-left: -30px;
}
.accd .accordion-item {
    margin-bottom: 20px;

    border: 0;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.25);

}
.accd.mb {
    margin-bottom: 80px;
}
/*  */
.animated-progress {
    --bs-progress-height: 5px;
    --bs-secondary-bg: var(--bg-one);
    --bs-progress-bar-bg: var(--bg-two);
}
.animated-progress .progress-bar {
    position: relative;
}
.aos-animate .animated-progress .progress-bar {
    /* -webkit-animation: animate-positive 2s;
    animation: animate-positive 2s; */
}
@-webkit-keyframes animate-positive {
    0% {
        width: 0
    }
}

@keyframes animate-positive {
    0% {
        width: 0
    }
}
.running-card .card-title {
    font-size: var(--r-h-font);
    font-weight: var(--font-bold);
}
.running-card .ul-style {
    font-size: var(--r-p-font);
    position: relative;
}
.running-card .ul-style ul {
    padding-left: 13px;
}
.running-card .card {
	        border: 0;
	        box-shadow: -4px 6px 8px 0px rgba(0, 0, 0, 0.25);
	        height: 271.69px;

}
.aos-animate .running-card .card {
    -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  

.running-card .card.mb {
    margin-bottom: 90px;
}
.running-card .card.space {
    padding-bottom: 20px;
}
.running-card .card .b-cmn {
    background-image: radial-gradient(ellipse, var(--bg-two) 3px, var(--bg-two) 3px, transparent 3px);
}
.running-card .card .br-lt-cmn {
    background-size: 10px 13px;
    background-position: -3px -5px;
    background-repeat: repeat-y;
}
.running-card .card .br-left {
    position: absolute;
    width: 3px;
    left: -15px;
}
.running-card .card .br-left.full {
    height: 102%;
}
.running-card .card .br-left.full.mt {
    height: 118%;
    top: -38px;
}
.running-card .card .br-right.full {
    height: 131%;
    top: -78px;
}
.running-card .card .br-right.half {
    height: 53%;
    top: 50%;
    background-position: -3px -10px;
}
.running-card .card .br-left.half {
    height: 52%;
    top: 51%;
    background-position: -3px -12px;
}
.running-card .card .br-right,
.running-card .card .br-left {
    position: absolute;
    width: 3px;
}
.running-card .card .br-left {

    left: -15px;
}
.running-card .card .br-right {
    right: -15px;
}
.running-card .card .br-btm-cmn {
    background-size: 12px 9px;
    background-position: 3px -3px;
    background-repeat: repeat-x;
}
.running-card .card .br-btm {
    position: absolute;
    height: 3px;
    bottom: -15px;
    left: -16px;
}
.running-card .card .br-btm.br-btm-left {
    left: -16px;
    top: -48px;
}
.running-card .card .br-btm.full {
    width: 108%;
}
.running-card .card .br-btm.half {
    width: 58%;
}
.running-card .card .br-btm.half.br-btm-left {
    width: 49%;
}
.running-card .card .br-line {
    position: absolute;
    height: 3px;
    width: 51px;
    right: -57px;
}
.running-card .card .br-line, 
.running-card .middle .card .br-line-start {
    top: 50%;
}
.running-card .middle .card .br-line-start {
    position: absolute;
    height: 3px;
    width: 101px;
    left: -108px;
}
.running-card .middle .card .br-left-start {
    left: -102px;
    height: 65%;
}
.running-card .middle .card .br-line {
    right: -71px;
}
.running-card .card .arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 17px solid var(--bg-two);
    border-right: 0;
}
.running-card .card .arrow.v {
    right: -63px;
    top: 47%;
}
.running-card .middle .card .arrow.v {
    right: -31px;
    rotate: 180deg;
}
.running-card .middle .card .arrow.v.left-middle {
    left: -110px;
    rotate: 90deg;
    bottom: 0;
    top: inherit;
}
.running-card .middle .card .arrow.v.left-start {
    left: -71px;

}
.running-card .card .arrow.b {
    left: 51%;
    bottom: -30px;
    rotate: 90deg;
}
.running-card .card .dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--bg-two);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.running-card .card .dot.left {
    left: -20px;
}
.running-card .card .top {
    top: -8px;
}
.running-card .card .middle.right {
    top: 50%;
    right: 19px;
}
.running-card .header {
    background-color: transparent;
    border-bottom: 0;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
}
.running-card .card-body {
    padding-left: 5px;
    padding-right: 8px;
}
.running-card .card-body.ov {
    overflow: auto;
}
.running-card .int.mb {
    margin-bottom: 20px;
    display: inline-block;
}
.aos-animate .running-card .int {
    -webkit-animation: blink-2 0.9s both;
    animation: blink-2 0.9s both;
}

 @-webkit-keyframes blink-2 {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.2;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes blink-2 {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.2;
    }
    100% {
      opacity: 1;
    }
  }
  
.running-card .ul-style li {
    margin-bottom: 30px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.running-card .ul-style li:last-child {
    margin-bottom: 15px;
}
.running-card .ul-style li i {
    margin-right: 15px;
    font-size: 13px;
    position: relative;
}
.running-card .ul-style li .inner i {
    margin: 0 5px;
}
.running-card .ul-style li img {
    display: inline-block;
}
.running-card .ul-style .border-left {
    position: absolute;
    height: 90%;
    width: 2px;
    background-image: radial-gradient(ellipse, var(--bg-two) 3px, var(--bg-two) 3px, transparent 3px);
    background-size: 11px 8px;
    background-position: -3px 0;
    background-repeat: repeat-y;
    left: 18px;
    top: 2px;
}
.running-card .row.g {
    --bs-gutter-x: 5rem;
}
.running-card .middle {
    margin-right: -40px;
    margin-left: 40px;
}
.aos-animate .running-card .card .b-cmn,
.aos-animate .running-card .card .dot,
.aos-animate .running-card .card .arrow {
    -webkit-animation: blink-2 0.9s both;
    animation: blink-2 0.9s both;
}
/*  */
.table-card .header {
    background-color: var(--bg-one);
    padding-top: 23px;
    padding-bottom: 23px;
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.25);

} 
.table-card .card-title h2 {
    font-size: var(--main-heading-b);
    font-weight: var(--font-semibold);
    color: var(--white);
    font-family: var(--secondary-font);
}
.table-card .card-title,
.table-card .card-title h2 {
    margin-bottom: 0;
}
.table-card .card-title .center {
    text-align: center;
}
.table-card .card {
    box-shadow: var(--box-shadow-one);
    border: 1px solid var(--card-border-color);
}

.card-table thead th {
    background-color: var(--bg-two);
    color: var(--white);
    vertical-align: middle;
    font-weight: var(--font-medium);
    font-size: var(--table-th-font-size);
    padding-top: 12px;
    padding-bottom: 12px;
}
.card-table thead th:first-child {
    border-top-left-radius: var(--border-radius-sm);
}
.card-table thead th:last-child {
    border-top-right-radius: var(--border-radius-sm);

}
.card-table tbody tr {
    font-size: var(--table-font-size-one);
    font-weight: var(--font-semibold);

}
.card-table tbody tr td {
    color: var(--color-one);
    padding-top: 18px;
    padding-bottom: 18px;
}
.card-table .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: transparent;
}
.card-table .table-striped>tbody>tr:nth-of-type(even)>* {
    background-color: var(--table-border-strip-bg);
}
.first-align tr th:first-child,
.first-align tr td:first-child {
    text-align: center;
}
.card-table table {
    --bs-table-border-color: var(--table-border-color);
}
.card-table table.bx-sh {
    box-shadow: var(--box-shadow-one);
}
.card-table table.mb {
    margin-bottom: 60px;
}
.table-card .filter {
    margin-top: 30px;
    margin-bottom: 40px;
}
.table-card .filter
.table-card .card-body {
    padding-left: 20px;
    padding-right: 20px;
}
.table-card .filter .row {
    --bs-gutter-y: 1.5rem;
}
.table-card .filter [class^="row gap-"] {
    --bs-gutter-y: 1.5rem;
}
.card-table .bt-gp .btn {
    margin-top: 2px;
    margin-bottom: 2px;
}
.card-table div.dt-container.dt-empty-footer .dt-scroll-body {
    border-bottom: 0;
}
.card-table.mb .dt-scroll {
    margin-bottom: 40px;
}
.filter .bt-gp .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: var(--font-semibold);

}
div div.dt-container .dt-paging .dt-paging-button.current,div div.dt-container .dt-paging .dt-paging-button.current:hover {
    border-color: var(--color-one);
    background: transparent;
}
div div.dt-container .dt-paging .dt-paging-button:hover {
    border-color: var(--color-one);
    background-color: var(--color-one);
    background: var(--color-one);
}
div.dt-container .dt-paging {
    margin-top: 10px;
}
div.dt-container .dt-info,
div.dt-container .dt-paging {
    text-align: right;
}
.filter .bt-gp .btn svg {
    height: 20px;
}
.filter .bt-gp .btn:hover svg path {
    fill: var(--white);
}
.filter .bt-gp.end {
    justify-content: end;
}
.filter .bt-gp {
    display: flex;
    gap: 15px;
}
.filter .form-select,
.filter .form-control {
    border-color: var(--color-two);
    color: var(--color-one);
}

.filter label {
    color: var(--color-one);
    font-weight: var(--font-semibold);
}
/*  */
.tb-header .mn-wrap {
    background-color: var(--bg-one);
    padding: 23px 25px 30px;
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.25);
    border-radius: var(--border-radius-sm);
    -webkit-border-radius: var(--border-radius-sm);
    -moz-border-radius: var(--border-radius-sm);
    -ms-border-radius: var(--border-radius-sm);
    -o-border-radius: var(--border-radius-sm);
}
.tb-header .mn-wrap .title h2 {
    font-size: var(--main-heading-b);
    font-weight: var(--font-semibold);
    color: var(--white);
    font-family: var(--secondary-font);
    margin-bottom: 0;
    margin-top: 5px;
}
.tb-header .mn-wrap .tp-wrap {
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px; */
}
.tb-header .mn-wrap .tp-wrap .per-btn {
    /* white-space: nowrap; */
}
.tb-header .mn-wrap .tp-wrap .per-btn .btn {
    background-color: transparent;
    color: var(--white);
}
.tb-header .mn-wrap .tp-wrap .per-btn.rt .btn {
    font-weight: var(--font-semibold);
}
.tb-header .mn-wrap .tp-wrap .per-btn.lt .btn span {
    font-weight: var(--font-medium);
}
.tb-header .mn-wrap .tp-wrap .per-btn.lt .btn {
    font-weight: var(--font-light);
}
.tb-header .mn-wrap .btn {

    text-transform: uppercase;
}
.tb-header .mn-wrap .per-btn .btn {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}
.tb-header .mn-wrap .btm-wrap .btn {
    font-weight: var(--font-semibold);
    display: flex;
    align-items: center;
}
.tb-header .mn-wrap .btm-wrap .btn-right .btn:hover svg path {
    fill: var(--white);
}
.tb-header .mn-wrap .btm-wrap .btn svg {
    height: 16px;
}
.btn-gp.fx {
    display: flex;
    align-items: center;
    gap: 10px
}
.btn-gp .btn {
    color: var(--color-two);
    background-color: transparent;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}
.btn-gp .btn-group .btn {
    border-color: var(--bg-two);
}
.btn-gp .btn:hover {
    color: var(--color-one);
}
.btn-gp .btn:before {
    background-color: var(--white);

}

.btn-gp .btn-check:checked+.btn {
    color: var(--color-one);
    background-color: var(--white);
}
.tb-header .mn-wrap .br-dr {
    border: 1px solid var(--white);
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}
/*  */

.bar-tabs.cst {
    row-gap: 28px;
    column-gap: 16px;
    /* overflow-y: hidden; */
    border: 0;
    /* margin-bottom: 40px; */
    padding-bottom: 10px;
    flex-wrap: nowrap;
    margin-left: 4px;
}
.tabs-sec .inner-cst-wrap {
    border: 1px solid var(--card-border-color);
    box-shadow: var(--box-shadow-one);
    padding: 8px;
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs);
}
.tabs-sec .inner-cst-wrap.mb {
    margin-bottom: 50px;
}

.bar-tabs.inner-cst {
    padding: 14px 16px;
    row-gap: 28px;
    column-gap: 14px;
    border-bottom: 0;
    border: 1px solid var(--card-border-color);
    /* background: rgba(243, 241, 241, 1);
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs); */
    flex-wrap: nowrap;
}
.bar-tabs.inner-cst>li .nav-link.active {
    background-color: var(--bg-one);
    color: var(--white);
    position: relative;
    border-color: var(--bg-two);
}
.bar-tabs.inner-cst>li .nav-link {
    border-color: var(--color-two);
    color: var(--color-two);
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    -webkit-border-radius: var(--border-radius-sm);
    -moz-border-radius: var(--border-radius-sm);
    -ms-border-radius: var(--border-radius-sm);
    -o-border-radius: var(--border-radius-sm);
    padding: 13px 20px;
    font-size: var(--tab-font);
}
.tab-scroll::-webkit-scrollbar,
.tab-scroll-sub::-webkit-scrollbar,
.tab-scroll-sub-sub::-webkit-scrollbar  {
    width: 6px;
    height:6px;
}
  
.tab-scroll::-webkit-scrollbar-track,
.tab-scroll-sub::-webkit-scrollbar-track,
.tab-scroll-sub-sub::-webkit-scrollbar-track {
    background: #f1f1f1;

}

.tab-scroll::-webkit-scrollbar-thumb,
.tab-scroll-sub::-webkit-scrollbar-thumb,
.tab-scroll-sub-sub::-webkit-scrollbar-thumb {
    background: #d3d3d3;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}
.tab-scroll::-webkit-scrollbar-thumb:hover,
.tab-scroll-sub::-webkit-scrollbar-thumb:hover,
.tab-scroll-sub-sub::-webkit-scrollbar-thumb:hover {
    background: #999; 
  }
.bar-tabs.cst>li .nav-link.active {
    background-color: var(--bg-one);
    color: var(--white);
    position: relative;
    border-color: var(--bg-two);
}
.bar-tabs.cst>li .nav-link.active::before,
.bar-tabs.cst>li .nav-link.active::after {
    position: absolute;
    content: '';
    bottom: -1px;
    display: block;
    border-top: 6px solid var(--bg-two);
    z-index: -1;
}
.bar-tabs.cst>li .nav-link.active::before {
    left: -6px;
    border-left: 6px solid var(--white);
}
.bar-tabs.cst>li .nav-link.active::after {
    right: -6px;
    border-right: 6px solid var(--white);
}
.bar-tabs.cst>li .nav-link {
    border-color: var(--color-two);
   color: var(--color-two);
   --bs-nav-tabs-border-radius :var(--border-radius-sm);
   padding: 13px 20px;
   text-transform: uppercase;
   font-size: var(--tab-font);
   font-weight: var(--font-medium);
}
.bar-tabs.cst {
    position: relative;
}
.tab-scroll-after {
    position: relative;
}
.tab-scroll-after::after {
    position: absolute;
    content: '';
    bottom: 15px;    
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--bg-two);
    z-index: -1;
}
.bar-tabs.cst::after {

}
.tabs-sec .form-cst {
    border: 1px solid var(--card-border-color);
    box-shadow: var(--box-shadow-one);
    padding: 10px 25px;
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs);
}
.tabs-sec .form-cst .space {
    padding-top: 50px;
    padding-bottom: 70px;
}
.tabs-sec .inner .form-cst .space {
    padding-bottom: 38px;
}
.tabs-sec .form-cst.one .space {
    padding-top: 30px;
}
.tabs-sec .form-cst .space .control-label,
.nbr li::marker {
    font-weight: var(--font-semibold);
}
.nbr li {
    margin-bottom: 2rem;
}
.bar-tabs.cst li .btnPrevious, .bar-tabs.cst li .btnNext, .bar-tabs.inner-cst li .btnPrevious-sub, .bar-tabs.inner-cst li .btnNext-sub, .bar-tabs.sub-inner-cst li .btnPrevious-sub-sub, .bar-tabs.sub-inner-cst li .btnNext-sub-sub {
    padding: 0 3px;
}
.bar-tabs.cst .nav-item:first-child button, .bar-tabs.cst .nav-item:last-child button, .bar-tabs.inner-cst .nav-item:first-child button, .bar-tabs.inner-cst .nav-item:last-child button, .bar-tabs.sub-inner-cst .nav-item:first-child button, .bar-tabs.sub-inner-cst .nav-item:last-child button {
    margin: 0;
    transition: .5s;
}
.bar-tabs.cst .nav-item:first-child, .bar-tabs.cst .nav-item:last-child, .bar-tabs.inner-cst .nav-item:first-child, .bar-tabs.inner-cst .nav-item:last-child, .bar-tabs.sub-inner-cst .nav-item:first-child, .bar-tabs.sub-inner-cst .nav-item:last-child {
    position: sticky;
    z-index: 1;
}
.bar-tabs.cst .nav-item:first-child, .bar-tabs.inner-cst .nav-item:first-child, .bar-tabs.sub-inner-cst .nav-item:first-child {
    /* margin-left: 0; */
    align-self: center;
    left: 0;
}
.bar-tabs.cst .nav-item:last-child, .bar-tabs.inner-cst .nav-item:last-child, .bar-tabs.sub-inner-cst .nav-item:last-child {
    margin-left: auto;
    align-self: center;
    right: 0;
}
.btnPrevious.opa, .btnPrevious-sub.opa, .btnPrevious-sub-sub.opa {
    opacity: 0;
    /* display: none; */
    visibility: hidden;
}
.btnNext.hide-next, .btnPrevious.hide-prev, .btnNext-sub.hide-next, .btnPrevious-sub.hide-prev, .btnNext-sub-sub.hide-next, .btnPrevious-sub-sub.hide-prev {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
}
.tab-scroll {
    margin-bottom: 40px;

}
.tab-scroll, .tab-scroll-sub, .tab-scroll-sub-sub {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
}
.form-cst .nw .form-control,
.form-cst .nw .form-select {
    box-shadow: var(--control-box-shadow);
    border: 1px solid var(--card-border-color);
    background-color: rgba(251, 251, 251, 1);
    padding: 13px 15px;

}
.tab-scroll-sub {
    background: rgba(243, 241, 241, 1);
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs);
}
.form-cst .nw .form-select option {
    color: var(--body-color);    
    /* font-weight: var(--font-semibold); */
}
.form-cst .nw .form-select {
    /* color: #908E8E; */
    background-image: url("../../assets/icons/chev-down-dark.svg");
}
.form-cst .tp.p {
    padding-top: 10px;
}
.form-cst .nw .control-label,
.form-cst .tp .control-label {
    margin-bottom: 10px;
}
.form-cst.two .g {
    --bs-gutter-x: 5.5rem;
    --bs-gutter-y: 2rem;
}
.form-cst.one .g {
    --bs-gutter-y: 1.5rem;
}
.custom-select {
    position: relative;
  } 
  .custom-select select {
    display: none; 
  }
  .custom-select .select-selected {
    background-color: var(--bg-one);
  }
  
  .custom-select .select-selected:after {
    position: absolute;
    content: "";
    top: -2px;
    right: 11px;
    /* width: 0; */
    /* height: 0; */
    border: 11px solid transparent;
    /* border-color: #fff transparent transparent transparent; */
    background-image: url("../../assets/icons/chev-down-light.svg");
    /* display: block; */
    /* width: 100%; */
    background-size: cover;
    background-size: 11px 14px;
    background-repeat: no-repeat;
    /* background-position: center; */
    /* z-index: 5; */
}
  
.custom-select .select-selected.select-arrow-active:after {
    rotate: 180deg;
    top: 10px;
    right: 0;
}
  .custom-select .select-selected {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border: 1px solid var(--color-two);
    padding: 5px 36px 5px 16px;

  }

  .custom-select .select-items div, .custom-select .select-selected {
    cursor: pointer;
    user-select: none;

    font-size: var(--select-sm-font);
    text-transform: uppercase;
    color: var(--white);
  }
  .custom-select .select-items div {
    padding: 5px 36px 5px 16px;

  }
  .custom-select .select-items {
    position: absolute;
    background-color: var(--bg-two);
    top: 110%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: var(--border-radius-sm);
    -webkit-border-radius: var(--border-radius-sm);
    -moz-border-radius: var(--border-radius-sm);
    -ms-border-radius: var(--border-radius-sm);
    -o-border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-two);
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .custom-select .select-hide {
    display: none;
  }
  
  .custom-select .select-items div:hover, .same-as-selected {
    background-color: var(--bg-one);
  }

  .tabs-sec .form-cst {
    margin-bottom: 35px;
  }
.icon-wrap {
    gap: 6px;
    margin-left: 10px;
  }
  .icon-wrap a {
    color: var(--color-two);

  }
  .tabs-sec .form-cst .icon-wrap a,
  .tabs-sec .form-cst .icon-wrap .ic-btn {
    /* width: 22px; */

}

.tabs-sec .form-cst .icon-wrap img,
.tabs-sec .form-cst .ic-btn img  {
    max-width: 100%;
    height: auto;
    /* margin-top: -4px; */
    /* height: 20px; */
    height: 14px;
}
.tabs-sec .form-cst .icon-wrap a i {
    font-size: 14px;
}
.tabs-sec .form-cst .icon-wrap img,
.tabs-sec .form-cst .ic-btn img,
.tabs-sec .form-cst .icon-wrap a i {
    margin-top: -2px;
}
  .icon-wrap {
    display: inline-flex;
    align-items: center;
}
.nbr {
    list-style-type: numeric;
    padding-left: 20px;
}
.tab-content .tab-title {
    font-size: var(--tab-title-font);
    padding: 0 0 15px 0;
    font-weight: var(--font-semibold);
}
.form-cst .nbr.mb {
    padding-left: 30px;
}
.tabs-sec .form-cst .space .row > [class^="col-"]:first-child .tab-title:first-child {
    padding-top: 0;
}
.input-group-addon {
    padding: 6px 12px;
    align-self: center;
}
.form-cst .nw .pk-cst {
    box-shadow: var(--control-box-shadow);
    border: 1px solid var(--card-border-color);
    background-color: rgba(251, 251, 251, 1);
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs);
}
.form-cst .nw .pk-cst .form-control {
    border: 0;
    background-color: transparent;
    box-shadow: none;

}
.datepicker {
    font-size: var(--datepicker-font-size);
}
.modal.cmn .btn-close {
    position: absolute;
    right: 3px;
    top: 3px;
    z-index: 1;
}
.info-modal .modal-header {
    background-color: var(--bg-two);
    color: var(--white);
    padding-top: 12px;
    padding-bottom: 12px;
    --bs-modal-inner-border-radius: var(--border-radius-xs);
}
.info-modal .modal-content {
    --bs-modal-border-radius: var(--border-radius-xs);
}
.info-modal .modal-header .modal-title {
    font-size: var(--modal-main-heading);
}
.info-modal .modal-header .btn-close {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.info-modal .info-modal-text {
    margin-top: 10px;
}
.info-modal .info-modal-text h2 {
    font-size: var(--modal-sub-heading);
}
.info-modal .info-modal-text ul {
    margin-bottom: 20px;
}
.info-modal .que:first-child {
    margin-top: 0;
}
.info-modal .que {
    font-size: var(--para-sub);
    font-weight: var(--font-semibold);
    margin-top: 20px;
        display: inline-flex;

}
.info-modal .que .copy a {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 5px;
}
.info-modal span.right {
    float: right;
    font-size: var(--para-sm);
}
.info-modal .que a {
    color: var(--color-two);
}
.info-modal .ans {
    margin-top: 5px;
}
.info-modal .ans span {
    font-size: var(--para-sub);
    font-weight: var(--font-semibold);

}
/*  */
.hero {
    padding-top: 5%;
    height: 100vh;
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/home/home-banner-min.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 100%;
    display: flex;
    align-items: center;
    color: var(--white);
}
.hero h1,
.hero h2,
.hero p {
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 1);
}
.hero h1,
.hero h2 {
    text-transform: uppercase;
}
.hero h1 {
    font-family: var(--secondary-font-black);
    font-size: var(--xxl-font-size);
    line-height: var(--line-height);
}
.hero h2 {
    font-size: var(--main-heading-a);
    font-weight: var(--font-semibold);
}
.hero p {
    font-size: var(--main-heading);
    font-weight: var(--font-medium);
}
/*  */
/*  */
.home-choose {
    margin-top: 10px;
    /* padding-bottom: 20px; */
}
.home-choose .row.g {
    --bs-gutter-x: 5.5rem;
}
.home-choose .para.lg p {
    /* font-weight: var(--font-light); */
}
.home-choose .fx {
    display: flex;
    gap: 50px;
    height: 100%;
    align-items: end;
}
.home-choose .right {
    height: 95%;
    margin-top: 30px;
}
.home-choose .gy {
    height: 79%;
}
.home-choose .fx h3 {
    font-weight: var(--font-semibold);
    font-size: var(--main-heading-a);
}
.home-choose .fx .img {
    width: 100px;
    text-align: center;
    flex: 0 0 auto;
    width: 13%;
}
.home-choose .sub-heading {
    color: var(--color-two);
}
.home-choose .sub-heading {
    margin-bottom: 20px;
    font-weight: var(--font-semibold);
}
.home-choose .left img {
    /* margin-left: 50px; */
}
.home-choose .left .img .img-wrap {
    position: relative;
    border-radius: var(--border-radius-xs);
    overflow: hidden;

}
.home-choose .left .img .img-wrap:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 50, 102, 0.35);
}
.home-choose .left .bg-shape {
    position: absolute;
    height: 97.5%;
    display: block;
    background-color: var(--bg-one);
    background: linear-gradient(180deg, var(--bg-two) 0%, var(--bg-one) 100%);
    z-index: -1;
    width: 95%;
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs);
    top: 40px;
    box-shadow: 6px 6px 15px 0px rgba(0, 0, 0, 0.35);

}
.home-choose .left .img {
    padding: 0 0 10px 30px;
}
.home-choose .overlay {
    position: absolute;
    bottom: 10px;
    right: 0;
    padding: 20px 20px 25px;
    background-color: var(--bg-one);
    color: var(--white);
    text-align: center;
}
.home-choose .overlay .text {
   font-size: 50px; 
   font-weight: var(--font-bold);
}
.home-choose .overlay .text span {
    display: block;
    font-size: var(--sub-heading);
    font-weight: var(--font-regular);
}

/*  */
/*  */
.ribbon-top-a {
    position: absolute;
    top: 15px;
    right: 40px;
    z-index: 1;
    font-family: var(--tertiary-font);
    font-weight: var(--font-regular);
}
.card.hv-card-a:hover .ribbon-top-a {
    -webkit-animation: bounceIn 0.5s ease-in-out 1 both;
    animation: bounceIn 0.5s ease-in-out 1 both;
}
.ribbon-top-a .text {
    position: relative;
    display: block;
    text-align: center;
    color: var(--white);
    line-height: 1;
    padding: 8px 16px;
    background-color: var(--bg-two);
    border-top-left-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md);
    font-size: var(--main-heading);
}
.ribbon-top-a .text span {
    display: block;
    font-size: var(--para-sm);
}
.card.hv-card-a {
    border: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    -webkit-border-radius: var(--border-radius-lg);
    -moz-border-radius: var(--border-radius-lg);
    -ms-border-radius: var(--border-radius-lg);
    -o-border-radius: var(--border-radius-lg);
}
.card.hv-card-a .card-body {
    padding: 0;
}
.card.hv-card-a .card-img:before {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
}
.card.hv-card-a .card-details {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 5px;
    opacity: 0;
    padding: 15px 10px 0px;
    transform: translateY(-8px);
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    opacity: 1;
    z-index: 1;
    color: var(--white);
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
}
.card.hv-card-a:hover .card-img img {
    transform: scale(1.05);
}
.card.hv-card-a .card-img img {
    width: 100%;
    transition: all 500ms ease;
}
.news-sec .btn-primary.blue {
    background-color: transparent;
    border-color: transparent;
    padding: 0;
}
.news-sec .card-wrap .btn::before {
    display: none;
}
.news-sec .details-content p {
    font-size: var(--para-sm);
    font-weight: var(--font-regular);
    margin-bottom: 8px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.newsSwiper .swiper-wrapper,
.impSwiper .swiper-wrapper {
    padding-bottom: 40px;
}
.news-sec .card-wrap {
    margin-bottom: 15px;
}
.card.hv-card  {
    border: 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-md);
    -webkit-border-radius: var(--border-radius-md);
    -moz-border-radius: var(--border-radius-md);
    -ms-border-radius: var(--border-radius-md);
    -o-border-radius: var(--border-radius-md);
}

.card.hv-card:hover .card-details {
    opacity: 1;
    transform: translateY(-20px);
    z-index: 1;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}
.card-details {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 30px;
    opacity: 0;
    transform: translateY(100%);
    padding: 15px 15px 5px;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
}
.card.hv-card .card-body {
    padding: 0;
}
.card.hv-card .card-details {
    color: var(--white);
    font-size: var(--para-sm);
}
.card.hv-card .details-content p {
    margin-bottom: 22px;
}
.card.hv-card .card-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}
.card.hv-card:hover .card-img:before {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
}
.card-img:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(181.04deg, rgba(0, 0, 0, 0) 43.76%, #000000 93.27%);
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transition: opacity 1000ms ease, visibility 1000ms ease, transform 1000ms ease-in-out;
    -webkit-transition: opacity 1000ms ease, visibility 1000ms ease, transform 1000ms ease-in-out;
    -moz-transition: opacity 1000ms ease, visibility 1000ms ease, transform 1000ms ease-in-out;
    -ms-transition: opacity 1000ms ease, visibility 1000ms ease, transform 1000ms ease-in-out;
    -o-transition: opacity 1000ms ease, visibility 1000ms ease, transform 1000ms ease-in-out;
}
.card.hv-card:hover .card-img img {
    transform: scale(1.05);
}
.card.hv-card .card-img img {
    width: 100%;
    transition: all 500ms ease;
}
.card.hv-card .btn.block {
    width: 100%;
}
.ribbon-top {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.ribbon-top span {
    position: relative;
    display: block;
    text-align: center;
    color: var(--white);
    line-height: 1;
    padding: 18px 48px 18px 18px;
    clip-path: polygon(0% 0%, 100% 0, 88% 100%, 0% 100%);
    background-color: var(--bg-two);
    border-top-left-radius: var(--border-radius-md);
}
.card-sec [class*=" g-"] {
    --bs-gutter-y: 2.2rem;
    --bs-gutter-x: 2.2rem;
}
.card-sec .card-wrap {
    margin-top: 25px;
}
div .swiper-pagination-bullet-active {
    background: var(--bg-one);
}
div .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}
div .swiper-horizontal>.swiper-pagination-bullets, div .swiper-pagination-bullets.swiper-pagination-horizontal, div .swiper-pagination-custom, div .swiper-pagination-fraction {
    bottom: 0;
}
div .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, div .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px;
}
/*  */
.imp-cards .icon img {
    padding: 25px;
    width: 100%;
    height: 100%;
}
.imp-cards .icon {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    background: rgba(22, 70, 128, 1);
}
/* .imp-cards .card:hover .icon, */
.home-choose .fx:hover img {
    -webkit-animation: bounceIn 0.5s ease-in-out 1 both;
    animation: bounceIn 0.5s ease-in-out 1 both;
}
.imp-cards .content {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.imp-cards .content h5 {
    font-size: var(--main-heading-c);
    font-weight: var(--font-bold);
    margin-bottom: 0;
}
.imp-cards .content h6 {
    font-size: var(--para);
    font-weight: var(--font-regular);
    margin-bottom: 0;
}
.imp-cards .card {
    background-color: var(--bg-one);
    color: var(--white);
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs);
    padding-top: 20px;
    /* padding-bottom: 20px; */
    overflow: hidden;
    border: 0;
    height: 100%;
    text-align: center;
    justify-content: space-between;
}
.imp-cards .swiper-slide {
    height: auto;
}
.imp-cards .card .card-header {
    background-color: transparent;
    border-bottom: 0;
}
.imp-cards .card .px {
    padding-left: 30px;
    padding-right: 30px;
}
.imp-cards .card .para p {
    font-weight: var(--font-light);
    line-height: var(--line-height);
}
.imp-cards .card .animated-progress {
    --bs-progress-height: 8px;
    border-radius: 0;
    margin-top: 10px;
}
.aos-animate .anm.animated-progress .progress-bar {
    -webkit-animation: animate-positive 2s;
    animation: animate-positive 2s;
}
.impact-sec .row.g {
    --bs-gutter-x: 10px;
}
/*  */
.s-card {
    background-color: var(--bg-one);
    color: var(--white);
    --bs-card-border-radius: var(--border-radius-md);
    height: 100%;
    border: 0;
    /* border-color:rgba(206, 206, 206, 1); */
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.45);

}
.s-card .img img {
    --bs-card-inner-border-radius: var(--border-radius-md);
}
.s-card .card-body {
    text-align: center;
    padding-bottom: 0;
}
.s-card .main-heading h2 {
    font-size: var(--main-heading-b);
    /* font-weight: var(--font-bold); */
    margin-bottom: 0;
}
.s-card .card-footer {
    padding-bottom: 25px;
    background-color: transparent;
    border-top: 0;
}
.s-card .card-footer .btn {
    margin-top: 12px;
}
.s-card .px {
    padding-left: 20px;
    padding-right: 20px;
}
/*  */
.tk-card {
    --bs-card-border-radius: var(--border-radius-md);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.45);

}
.tk-card .icon {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    border: 4px solid var(--white);
    margin-top: -50px;
    background-color: var(--bg-one);
}
.tk-cards-wrap  [class^="col"]:nth-child(even) .tk-card .icon,
.tk-cards-wrap  [class^="col"]:nth-child(even) .tk-card {
    background-color: var(--bg-two);
}
.tk-cards-wrap  [class^="col"]:nth-child(even) .tk-card .bottom .btn,
.tk-cards-wrap  [class^="col"]:nth-child(even) .progress-bar {
    background-color: var(--bg-one);
}
.tk-cards-wrap [class^="col"]:nth-child(even) .tk-card .ul-style li i,
.tk-cards-wrap [class^="col"]:nth-child(even) .tk-card .card-body .main-heading h2 {
    color: var(--bg-one);
}
.tk-cards-wrap [class^="col"]:nth-child(even) .tk-card .ul-style .border-left {
    background-image: radial-gradient(ellipse, var(--white) 3px, var(--white) 3px, transparent 3px);
}
.tk-card .icon img {
    padding: 20px;
    width: 100%;
    height: 100%;
}
.tk-card {
    background-color: var(--bg-one);
    color: var(--white);
    height: 100%;
}
.tk-card .bottom {
    text-align: center;
    margin-bottom: -35px;
    padding-top: 20px;
}
.tk-card .bottom .btn {
    border: 4px solid var(--white);
    border-radius: var(--border-radius-sm);
    -webkit-border-radius: var(--border-radius-sm);
    -moz-border-radius: var(--border-radius-sm);
    -ms-border-radius: var(--border-radius-sm);
    -o-border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 30px;
    font-size: var(--btn-md-font-size);
}
.tk-card .bottom .btn .align {
    text-align: left;
}
.tk-card .ul-style {
    font-size: var(--nw-r-p-font);
    position: relative;
}
.tk-card .ul-style li i {
    margin-right: 15px;
    font-size: 6px;
    position: relative;
    margin-top: 6px;

}
.tk-card .ul-style li {
    margin-bottom: 5px;    
    list-style-type: none;
    display: flex;
}
.tk-card .ul-style li span span:first-child {
    display: flex;
}
.tk-card .ul-style ul {
    padding-left: 13px;
    margin-top: 35px;
}
.tk-card .ul-style .border-left {
    position: absolute;
    height: 97%;
    width: 2px;
    background-image: radial-gradient(ellipse, var(--bg-two) 3px, var(--bg-two) 3px, transparent 3px);
    background-size: 11px 8px;
    background-position: -3px 0;
    background-repeat: repeat-y;
    left: 14.5px;
    top: 2px;
}
.tk-card .animated-progress {
    --bs-secondary-bg: var(--white);
    --bs-progress-height: 4px;
}
.tk-card .card-body .main-heading {
    padding-left: 40px;
    padding-right: 40px;
}
.tk-card .card-body .main-heading h2 {
    font-size: var(--main-heading-b);
    margin-bottom: 15px;
}
.tk-cards-wrap.m {
    margin-top: 80px;
}
.tk-card  .ul-style .ul-inner {
    margin-top: 7px;
    padding-left: 40px;
}
.tk-card .icon {
    position: relative;
    overflow: hidden;
}
.tk-card .icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
}
 .tk-cards-wrap .tk-card:hover .icon span {
    top: -100%;
}
.tk-card .icon span:first-child {
    top: 0;
}
.tk-card:hover .icon span:last-child {
    top: 0;
}
.tk-card .icon span:last-child {
    top: 100%;
}
.tk-card .para{
    margin-top: 20px;
}
/*  */
.empower {
    background: linear-gradient(270.19deg, rgba(1, 12, 25, 0) 12%, rgba(1, 12, 25, 0.6175) 48.25%, rgba(1, 12, 25, 0.8075) 66.37%, rgba(1, 12, 25, 0.855) 78.5%, rgba(1, 12, 25, 0.95) 97.73%), url('../img/home/empower-min.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 100%;
    display: flex;
    align-items: center;
    color: var(--white);
}
.empower .main-heading h2 {
    font-size: var(--main-heading-c);
}
.empower .sub-heading h3 {
    font-weight: var(--font-regular);
    font-size: var(--sub-heading-lg);
}
/*  */

.breadcrumb.about-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/about/breadcrumb-min.jpg');
        background-size: cover;

}

.breadcrumb.planning-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/planning-toolkits/breadcrumb.jpg');
        background-size: cover;

}
.breadcrumb.about-moc-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/management-of-contract/about/breadcrumb.jpg?v=1.0');
        background-size: cover;

}
.breadcrumb.stages-moc-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/stages-management-contract-min.jpg?v=1.2');
        background-size: cover;

}
.breadcrumb.toolkits-moc-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/management-of-contract/toolkits/breadcrumb.jpg?v=1.0');
        background-size: cover;

}
.breadcrumb.rl-moc-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/management-of-contract/resource-library/breadcrumb.jpg');
        background-size: cover;

}
.breadcrumb.preparation-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/preparation-toolkits/breadcrumb.jpg');
        background-size: cover;

}
/*  */
.feature-card-wrap .card-wrap {
    position: relative;
    padding: 40px;
}
.feature-card-wrap .g {
    --bs-gutter-x: 30px;
}
.feature-card-wrap .card-wrap .bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--bg-one);
    border-bottom-right-radius: var(--border-radius-md);
    border-bottom-left-radius: var(--border-radius-md);
}
.feature-card-wrap .feature-card .icon svg path {
    fill: var(--color-two);
}
.feature-card {
    border: 1px solid rgba(241, 241, 241, 1);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    border-radius: var(--border-radius-md);
    -webkit-border-radius: var(--border-radius-md);
    -moz-border-radius: var(--border-radius-md);
    -ms-border-radius: var(--border-radius-md);
    -o-border-radius: var(--border-radius-md);
}
.feature-card-wrap .card-wrap,
.feature-card {
    height: 100%;
}
.feature-card .icon {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 20px;
}
.feature-card .icon svg {
    height: 80px;
    width: 80px;
}
.feature-card {
    color: var(--color-one);
}
.feature-card .card-body {
    padding-bottom: 5px;
    padding-left: 8px;
    padding-right: 8px;
}
/* .feature-card .card-body .btn-mb {
    margin-bottom: 20px;
} */
.feature-card .card-footer {
    background-color: transparent;
    border-top: 0;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 0;
}
.feature-card .card-body .main-heading h2 {
    font-size: var(--main-heading-b);
    margin-bottom: 10px;
}
.feature-card .animated-progress {
    --bs-progress-height: 4px;
}
.feature-card .card-body .main-heading {
    padding-left: 40px;
    padding-right: 40px;
    display: inline-block;
}
.feature-card-wrap  [class^="col"]:nth-child(even) .card-wrap .bg {
    background-color: var(--bg-two);
}
.ul-style.br li i {
    margin-right: 15px;
    font-size: 10px;
    position: relative;
    margin-top: 5px;
}
.ul-style.br .border-left {
    position: absolute;
    height: 97%;
    width: 2px;
    background-image: radial-gradient(ellipse, var(--bg-two) 3px, var(--bg-two) 3px, transparent 3px);
    background-size: 11px 8px;
    background-position: -3px 0;
    background-repeat: repeat-y;
    left: 16.5px;
    top: 5px;
}
.ul-style.br ul {
    padding-left: 13px;
    margin-top: 35px;
    position: relative;
}
.ul-style.br {
    font-size: var(--nw-r-p-font);
    position: relative;
}
.ul-style.br li {
    margin-bottom: 15px;
    list-style-type: none;
    display: flex;
    /* font-weight: var(--font-medium); */
}
/*  */
.zig-card-wrap .g {
    --bs-gutter-x: 3rem;
}
.zig-card-wrap .card {
    color: var(--color-one);
    border: 0;
    height: 100%;
}
.zig-card-wrap .card .card-body {
    padding: 0;
}
.zig-card-wrap .card-footer {
    background-color: transparent;
    border-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}
.animated-progress.ht {
    --bs-progress-height: 4px;
}
.zig-card-wrap  .card-body .main-heading {
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 20px;
}
.zig-card-wrap .int {
    display: inline-block;
}
.zig-card-wrap .int {
    padding: 5px 13px 7px;
}
.zig-card-wrap .ul-style ul {
    margin-top: 5px;
    margin-left: 10px;
}
.zig-card-wrap .ul-style {
    padding-top: 15px;
}
.zig-card-wrap .sub-heading h3 {
    font-size: var(--para-sub);
}
.zig-card-wrap .ul-style .para p {
    font-size: var(--nw-r-p-font);
    font-weight: var(--font-semibold);
}
.zig-card-wrap.mt:first-child,
.zig-card-parent .bg {
    margin-top: 50px;
}
.zig-card-parent .bg .zig-card-wrap.mt {
    margin-bottom: 50px;
}
.zig-card-wrap.mt {
    margin-top: 80px;
}
.zig-card-wrap .animated-progress {
    width: 240px;
}
.zig-card-parent .bg .zig-card-wrap .animated-progress {
    background-color: var(--white);
}
.zig-card-parent .bg {
    background: linear-gradient(0deg, rgba(8, 50, 102, 0.95) 0%, rgba(8, 50, 102, 0.95) 100%), url('../img/about/zig-cards/bg.jpg');
}
.zig-card-parent .bg .card {
    background-color: transparent;
    color: var(--white);
}
/*  */
.grid-bar.mt {
    margin-top: 1rem;
}
.grid-bar>.row {
    gap: 20px;
    justify-content: center;
}
.grid-bar {
    background: linear-gradient(270deg, #083266 0%, #29C3EC 110.5%);
    padding: 30px 50px;    
    border-radius: var(--border-radius-sm);
    -webkit-border-radius: var(--border-radius-sm);
    -moz-border-radius: var(--border-radius-sm);
    -ms-border-radius: var(--border-radius-sm);
    -o-border-radius: var(--border-radius-sm);
}
.grid-bar .fx-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}
.grid-bar .fx-wrap .content {
    font-size: var(--main-heading);
    font-weight: var(--font-medium);
}
/*  */
.zig-sec .cmn .bg-shape {
    position: absolute;
    height: 97.5%;
    display: block;
    background-color: var(--bg-one);
    background: linear-gradient(180deg, var(--bg-two) 0%, var(--bg-one) 100%);
    z-index: -1;
    width: 95%;
    border-radius: var(--border-radius-xs);
    -webkit-border-radius: var(--border-radius-xs);
    -moz-border-radius: var(--border-radius-xs);
    -ms-border-radius: var(--border-radius-xs);
    -o-border-radius: var(--border-radius-xs);
    top: 37px;
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.35);
}
.zig-sec .right.cmn .bg-shape {
    right: 0;
}
.zig-sec .left.cmn .bg-shape {
    left: 0;
}
.zig-sec .right.cmn .img {
    padding: 0 24px 0px 0;
}
.zig-sec .left.cmn .img {
    padding: 0 0 0px 24px;
}
.zig-sec .g {
    --bs-gutter-x: 4rem;
}
.zig-sec .card {
    color: var(--color-one);
    border: 0;
    height: 100%;
}
.zig-sec .card .card-body {
    padding: 0;
}
.zig-sec .card-footer {
    background-color: transparent;
    border-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}
.zig-sec .ul-style.br ul {
    padding-left: 0;
    margin-top: 5px;
    margin-bottom: 25px;
}
.plane .ul-style.br ul {
    margin-bottom: 30px;
    margin-top: 0;
}
.zig-sec .ul-style.br .border-left {
    left: 3.5px;
}
.zig-sec .ul-style.br li {
    margin-bottom: 12px;
    font-weight: var(--font-regular);
}
.grid-bar .fx-ic img {
    max-width: 100%;
    height: 60px;
}
/*  */
.timeline-card {
    /* border: 2px solid rgba(243, 241, 241, 1);     */
    border: 0;
    box-shadow: -4px 6px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: var(--border-radius-md);
    -webkit-border-radius: var(--border-radius-md);
    -moz-border-radius: var(--border-radius-md);
    -ms-border-radius: var(--border-radius-md);
    -o-border-radius: var(--border-radius-md);
    color: var(--color-one);
    min-height: 430px;
}
.nw .timeline-card {
    min-height: 230px;
}
.timeline-card-wrap.nw .timeline-card {
    margin-top: -90px;
}
.timeline-card-wrap.nw .timeline-card .ul-style ul {
    padding-left: 0;
}
.timeline-card-wrap [class^="col-"]:nth-child(odd) .row>[class^="col-"]:nth-child(odd) .timeline-card {
    border-right: 30px solid var(--bg-two);
}
.timeline-card-wrap [class^="col-"]:nth-child(even) .timeline-card {
    border-left: 30px solid var(--bg-two);
}
.timeline-card-wrap [class^="col-"]:nth-child(odd) .timeline-card .card-body {
    padding-left: 20px;
}
.timeline-card-wrap [class^="col-"]:nth-child(even) .timeline-card .card-body {
    padding-left: 30px;
}
.timeline-card .icon {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 20px;
}
.timeline-card .icon svg {
    height: 80px;
    width: 80px;
}
.timeline-card .icon svg path {
    fill: var(--color-two);
}
.timeline-card .card-body {
    padding-bottom: 15px;
    padding-right: 8px;
}
.timeline-card .card-body .main-heading {
    /* padding-left: 40px;
    padding-right: 40px; */
    display: inline-block;
}
.timeline-card .card-body .main-heading h2 {
    font-size: var(--main-heading-b);
    margin-bottom: 10px;
    font-weight: var(--font-bold);
}
.timeline-card-wrap .g {
    --bs-gutter-x: 0;
}
.timeline-card-wrap .card-wrap {
    position: relative;
}
.timeline-card-wrap .card-wrap .br-line {
    top: 50%;
    height: 5px;
    width: 100%;
}
.timeline-card-wrap [class^="col-"]:nth-child(odd) .card-wrap .br-line,
.timeline-card-wrap [class^="col-"]:nth-child(odd) .card-wrap .dot {
    right: -17.5px;
}
.timeline-card-wrap [class^="col-"]:nth-child(even) .card-wrap .br-line,
.timeline-card-wrap [class^="col-"]:nth-child(even) .card-wrap .dot {
    left: -17.5px;
}
.timeline-card-wrap .card-wrap .br-line,
.timeline-card-wrap .card-wrap .dot {
    position: absolute;
    background-color: var(--bg-one);

}
.timeline-card-wrap .card-wrap .dot {
    top: 46%;
    width: 35px;
    height: 35px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}
.timeline-card-wrap.nw .card-wrap .dot {
    /* top: 43%; */
}
.timeline-card-wrap.nw .card-wrap .timeline-card  .card-body {
    padding-left: 20px;
    padding-right: 20px;
}
.timeline-card-wrap [class^="col-"]:nth-child(odd) .row>[class^="col-"]:nth-child(odd) .timeline-card {
    margin-right: 70px;
}
.timeline-card-wrap .timeline-card {
    margin-top: -130px;
}
.timeline-card-wrap [class^="col-"].sl.active:nth-child(1) .timeline-card {
    margin-top: -130px;

}
.timeline-card-wrap .sl.active .timeline-card:not(.hv) {
    margin-top: 40px;
}
.timeline-card-wrap .timeline-card.hv {
    margin-top: 40px;
    margin-bottom: 170px;
}
.timeline-card-wrap [class^="col-"]:nth-child(even) .timeline-card {
    margin-left: 70px;
}
.timeline-card-wrap [class^="col-"] {
    position: relative;
}
.timeline-card-wrap [class^="col-"]:nth-child(even) .timeline-card.hv {
    margin-left: 0;
    margin-right: 70px;
    /* display: none; */
}
.timeline-card-wrap .hv {
    height: 0;
    min-height: 0;
    opacity: 0;
    visibility: hidden;

}
.timeline-card-wrap .sl.active .hv {
    height: auto;
    min-height: auto;
    opacity:  1;
    visibility: visible;
    /* transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.5s ease;
    -webkit-transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.5s ease;
    -moz-transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.5s ease;
    -ms-transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.5s ease;
    -o-transition: opacity 0.5s ease, max-height 0.5s ease, margin 0.5s ease; */
}
.timeline-card-wrap .timeline-card.hv {
    transition: margin 0.5s ease, visibility 0.1s ;
    -o-transition: margin 0.5s ease, visibility 0.1s ;
    -webkit-transition: margin 0.5s ease, visibility 0.1s ;
    -moz-transition: margin 0.5s ease, visibility 0.1s ;
    -ms-transition: margin 0.5s ease, visibility 0.1s ;
}
.timeline-card-wrap .timeline-card {
    transition: margin 0.5s ease, height 0.5s ease;
    -moz-transition: margin 0.5s ease, height 0.5s ease;
    -ms-transition: margin 0.5s ease, height 0.5s ease;
    -o-transition: margin 0.5s ease, height 0.5s ease;
    -webkit-transition: margin 0.5s ease, height 0.5s ease;
}
.timeline-card-wrap [class^="col-"]:nth-child(even) .row>[class^="col-"]:nth-child(even) .timeline-card.hv {
    border-right: 30px solid var(--bg-two);
    border-left: 0;
}
.timeline-card-wrap [class^="col-"]:nth-child(odd) .timeline-card.hv {
    /* display: none; */
    margin-left: 70px;
    margin-right: 0;
}
.timeline-card-wrap {
    position: relative;
}
.timeline-card-wrap .timeline-card:not(.hv) .main-heading {
    cursor: pointer;
}
.timeline-card-wrap.off .timeline-card:not(.hv) .main-heading {
    cursor: auto;
}
.timeline-card-wrap .timeline-card .modal-btn {
    color: inherit;
}
.timeline-card-wrap .vertical-br {
    height: 0;
    /*height: 119%;*/
    left: 50%;
    right: 50%;
    position: absolute;
    width: 3px;
    background-size: 10px 13px;
    background-position: -3px -5px;
    background-repeat: repeat-y;
    background-image: radial-gradient(ellipse, var(--bg-two) 3px, var(--bg-two) 3px, transparent 3px);
    top: -180px;
    bottom: -60px;
    /* transition: height 5s ease;
    -webkit-transition: height 5s ease;
    -moz-transition: height 5s ease;
    -ms-transition: height 5s ease;
    -o-transition: height 5s ease; */
}
.timeline-card-wrap .ul-style.br li a {
    display: flex;
}

.timeline-card.hv .ul-style.br ul {
    margin-top: 0;
}
.aos-animate .timeline-card-wrap  .vertical-br {
    height: -webkit-fill-available;
}
.timeline-card-wrap .vertical-br .dot {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    background-color: var(--bg-two);
    left: -10px;
}
.timeline-card-wrap .vertical-br .dot.tp {
    top: 0;
}
.timeline-card-wrap .vertical-br .dot.btm {
    bottom: 0;
}
.timeline-card-wrap.space {
    margin-top: 180px;
    margin-bottom: 80px;
}
.timeline-card-wrap .hv .close-btn {
    position: absolute;
    top: -10px;
    cursor: pointer;
}
.timeline-card-wrap [class^="col-"]:nth-child(odd) .timeline-card.hv .close-btn {
    right: -5px;
}
.timeline-card-wrap [class^="col-"]:nth-child(even) .row>[class^="col-"]:nth-child(even) .timeline-card.hv .close-btn {
    left: -5px;
}
/*  */
.cmn-modal .modal-header {
    background-color: var(--bg-two);
    color: var(--white);
    padding-top: 10px;
    padding-bottom: 10px;
}
.cmn-modal .form-check-input {
    width: 15px;
    height: 15px;
    border-color: var(--color-one);
    /* margin-top: 1px;
    margin-right: 10px; */
}
.cmn-modal .form-check-input:checked {
    background-color: var(--bg-two);
    border-color: var(--bg-two);
}
.cmn-modal .form-check-input:focus {
    box-shadow: none;
}
/*  */
.svg-g-sec.space {
    margin-top: 40px;
    margin-bottom: 40px;
}
/*  */
.feature-card-wrap.fs .feature-card {
    box-shadow: rgb(0 0 0 / 3%) 0px -12px 20px 20px;
}
.fs .feature-card .heading {
    font-weight: var(--font-semibold);
    display: block;
    margin-bottom: 10px;
}

.fs .feature-card .card-body .main-heading h2 {
    font-weight: var(--font-bold);
    margin-bottom: 18px;
}
.fs .feature-card .icon {
    margin-bottom: 30px;
}
.fs .feature-card .ul-style.br ul {
    margin-top: 45px;
}
.fs .feature-card .ul-style.br li {
    margin-bottom: 35px;
}
.fs .feature-card .ul-style.br {
    margin-left: 13px;
    margin-right: 13px;
}
.fs .feature-card .ul-style.br li i {
    margin-right: 35px;
}
.feature-card-wrap.fs {
    margin-bottom: 80px;
}
.feature-card-wrap.fs .g {
    --bs-gutter-x: 55px;
}
.feature-card-wrap.fs-tools  [class^="col"]:nth-child(even) .card-wrap .bg {
    /* background-color: var(--bg-one); */
}
.feature-card-wrap.fs .feature-card .icon svg path {
    fill: revert-layer;
}
.fs .feature-card .icon svg {
    height: 110px;
    width: auto;
}
/*  */
.fs-g-space .g:first-child {
    margin-top: 0;
}
.fs-g-space .g {
    margin-top: 70px;
}
.sample-tag{
    width: 100;
    height: 200px;
    position: absolute;
}

.ul-style.br.count ul {
    margin-top: 0;
}
.ul-style.count {
    column-count: 3;

}
.count.my {
    margin-top: 30px;
    margin-bottom: 30px;
}
.cst-taost {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    --bs-border-radius: var(--border-radius-md);
}
.cst-taost .toast-body {
    font-weight: var(--font-bold);
    font-size: var(--main-heading-a);
    text-align: center;
    border-radius: var(--border-radius-md);;
}

.cst-taost .toast-body {
    background-color: var(--btn-bg-primary);
}
/* .toast:not(.show) {
    display: block;
    opacity: 1;
} */
 /*  */

 .c-aln .card-body>.center {
    max-height: 60px;
 }
 .c-aln .card-body>.center {
    height: 100%;
    /* display: flex;
    flex-direction: column; */
 }
 .c-aln .card-body>.center>.main-heading,
 .c-aln .card-body>.center>.main-heading>h2 {
    height: 100%;
 }
 .c-aln .ul-style {
    height: 76%;
}
.c-aln .ul-style ul {
    /* display: flex;
    flex-direction: column;
    height: 100%; */
}
.c-aln .ul-style ul li {
    flex: 1 1 auto;
}
.feature-card-wrap .row:first-child .c-aln.ht-three  .ul-style ul li:first-child {
    height: 120px;
}
.feature-card-wrap .row:first-child .c-aln.ht-three  .ul-style ul li:last-child {
    /* height: 120px; */
}
.feature-card-wrap .row:last-child .c-aln.ht-three  .ul-style ul li:first-child {
    height: 120px;
}
.feature-card-wrap .row:last-child .c-aln.ht-three .ul-style ul li:last-child {
    /* height: 120px; */
}
.feature-card-wrap .row:first-child .c-aln.ht-one  .ul-style ul li:first-child {
    height: 235px;
}
.feature-card-wrap .row:first-child .c-aln.ht-one  .ul-style ul li:last-child {
    /* height: 210px; */
}
.feature-card-wrap .row:first-child .c-aln.ht-two  .ul-style ul li:first-child {
    height: 140px;
}
.feature-card-wrap .row:first-child .c-aln.ht-two  .ul-style ul li:last-child {
    /* height: 120px; */
}
.feature-card-wrap .row:last-child .c-aln.ht-two  .ul-style ul li:first-child {
    height: 190px;
}
.feature-card-wrap .row:last-child .c-aln.ht-two .ul-style ul li:last-child {
    /* height: 120px; */
}
.c-aln .ul-style ul li:last-child {
    flex-grow: 0;
    /* height: 60px; */
}
.feature-card-wrap .row:last-child .col:last-child .c-aln.ht-one .ul-style ul,
.feature-card-wrap .row:last-child .col:last-child .c-aln.ht-one .ul-style {
    height: auto;
}
/*  */
.c-aln.ht-one .card-body>.center {
    max-height: 65px;
}
.feature-card-wrap .row:last-child .c-aln.ht-two .card-body>.center {
    max-height: 100px;
}
.c-aln.ht-two .ul-style {
    height: 70%;
}
.feature-card-wrap .row:last-child .c-aln.ht-two .ul-style {
    height: 66%;
}

.c-aln.ht-three .ul-style {
    height: 68%;
}

.mn-wrap .bk-btn {
    background-color: transparent;
    margin-top: -5px;
    margin-bottom: 10px;
}
.mn-wrap .bk-btn .btn {
    color: var(--color-one);
    font-weight: var(--font-semibold);
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}
.mn-wrap .bk-btn .btn:hover {
    color: var(--white);
}
/*  */
.scroll-accd-wrap .accd .accordion-item {
    /* margin-bottom: 35px; */
}
.scroll-accd-wrap .accd .accordion .sub-heading {
    margin-top: 50px;
}
.scroll-accd-wrap .accd .accordion .sub-heading:first-child {
    margin-top: 20px;
}
.scroll-accd-wrap .accd {
    padding-top: 9rem;
    margin-bottom: -5rem;
  }
  .scroll-accd-wrap .accd:last-child,
  .scroll-accd-wrap .ac-wrap .accd:last-child {
    margin-bottom: inherit;
  }
  .scroll-accd-wrap .main-heading.mn h2 {
    margin-bottom: -3rem;
  }

  .select-selected.disabled{
    cursor: auto;
  }
  .scroll-accd-wrap .n-mg {
    margin-bottom: -5rem;
}
.bg-one {
    background-color: var(--one-bg);

}
.bg-one table {
}
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
/*  */
.cr-tabs .nav-tabs {
--bs-nav-tabs-border-color: transparent;
/* gap: 50px; */
height: 100%;
justify-content: end;
}
.cr-tabs .nav-tabs .nav-link {
    border: 1px solid var(--color-one);
    color: var(--color-one);
    border-radius: var(--bs-nav-tabs-border-radius);
    -webkit-border-radius: var(--bs-nav-tabs-border-radius);
    -moz-border-radius: var(--bs-nav-tabs-border-radius);
    -ms-border-radius: var(--bs-nav-tabs-border-radius);
    -o-border-radius: var(--bs-nav-tabs-border-radius);
    padding: 20px 20px;
    width: 200px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);

}
.cr-tabs .nav-tabs .nav-link.active {
        background-color: rgb(223 236 251);

}
.cr-tabs .nav-tabs .nav-item {
    background-image: url("../../assets/img/management-of-contract/toolkits/tab-bg.svg");
    background-size: 228px 80%;
    background-repeat: no-repeat;
    padding: 10px 10px 0px 60px;
}
.cr-tabs .btn-primary {
    width: 74.8%;
    justify-content: center;
    margin-top: 20px;
    background-color: var(--color-one);
    border-color: var(--color-one);
    margin-right: 10px;
}

/*  */
.tb-header .mn-wrap .btm-wrap .btn {
    text-align: left;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.tb-header .mn-wrap .btm-wrap .btn-group .btn {
    text-align: center;
}
.tb-header .mn-wrap .btm-wrap>.row {
   --bs-gutter-y: 1rem; 
}
.btn-gp.fx {
    flex-wrap: wrap;
}
.tb-header .mn-wrap .btm-wrap .btn svg {
    width: auto;
}
.tb-header .mn-wrap .tp-wrap>.row {
     --bs-gutter-y: 1rem; 
}
/*  */

.chrome_tab_list {
	padding-left: 20px;

	display: flex;
	flex-wrap: wrap;

	margin-bottom: 0;
	list-style: none;
    align-items: center;
}


.chrome_tab .inner {

    position: relative;
    display: flex;
    padding: 10px;
    border-radius: 14px 14px 0 0;
    -webkit-border-radius: 14px 14px 0 0;
    -moz-border-radius: 14px 14px 0 0;
    -ms-border-radius: 14px 14px 0 0;
    -o-border-radius: 14px 14px 0 0;
}

.chrome_tab {
	margin-left: -1px;
    position: relative;
}

.chrome_tab:not(.active) .border_right,
.chrome_tab:not(.active) .border_left {
	opacity: 1;
	height: 20px;
	width: 1px;
	background: var(--color-one);
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);

}
.chrome_tab:not(.active) .border_right,
.chrome_tab:not(.active) .border_left,
.chrome_tab,
.chrome_tab .inner {
    	transition: all 0.01s ease;
    	-webkit-transition: all 0.01s ease;
    	-moz-transition: all 0.01s ease;
    	-ms-transition: all 0.01s ease;
    	-o-transition: all 0.01s ease;
}
.chrome_tab:not(.active) .border_right {
	right: 0px;
}

.chrome_tab:not(.active) .border_left {
	left: 0;
}

.chrome_tab_list .nav-item:first-child .chrome_tab .border_left {
	opacity: 0;
}
.chrome_tab_list .nav-item {
    position: relative;
}
.chrome_tab:not(.active):hover .border_right,
.chrome_tab:not(.active):hover .border_left {
	opacity: 0;
}
.chrome_tab:not(.active):hover .inner {
    z-index: 50;
}
  .chrome_tab_container {
	background: rgb(223 236 251);
}
.chrome_tab:not(.active):hover .text {
	background: rgb(205 225 247);
	/* z-index: 50; */
}
.chrome_tab:not(.active):hover .inner {
    background: rgb(223 236 251);
}
.chrome_tab:not(.active):hover .inner::before {
	background: -webkit-radial-gradient(0 0,
			circle,
			transparent 10px,
			rgb(205 225 247) 11px);
}

.chrome_tab:not(.active):hover .inner::after {
	background: -webkit-radial-gradient(100% 0,
			circle,
			transparent 10px,
			rgb(205 225 247) 11px);
}
.chrome_tab:not(.active):hover .inner::before,
.chrome_tab:not(.active):hover .inner::after {
    content: unset;

}


 .chrome_tab .inner::before,
 .chrome_tab .inner::after {
	content: "";
    width: 20px;
    height: 18px;
	position: absolute;
        bottom: 0px;

 }
.chrome_tab .inner::before {

	left: -18px;
	background: -webkit-radial-gradient(0 0,
			circle,
			transparent 10px,
			rgb(223 236 251) 11px);
}

.chrome_tab .inner::after {
    right: -18px;
    background: -webkit-radial-gradient(100% 0,
			circle,
			transparent 10px,
			rgb(223 236 251) 11px);
}

.chrome_tab.active .inner {
	background: var(--color-one);
	z-index: 100;
    border-color: var(--color-one);
}

.chrome_tab.active .inner::before {
	background: -webkit-radial-gradient(0 -4%,
			circle,
			transparent 18px,
			var(--color-one) 19px);
}

.chrome_tab.active .inner::after {
    background: -webkit-radial-gradient(100% -4%,
   circle,
   transparent 18px,
   var(--color-one) 19px);
}

.chrome_tab .text {
    padding: 6px 10px 6px 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.chrome_tab.active .text {
        color: var(--white);
}
.table .gg .row {
    align-items: center;
}
.roman-list,
.zig-sec .ul-style.br .roman-list li {
    list-style-type: lower-roman;
}
.zig-sec .ul-style.br .roman-list li {
    display: revert;
}
.zig-sec .ul-style.br .roman-list {
    padding-left: 35px;

}
.zig-sec .ul-style.br ul.mt {
    margin-top: 1rem;
}
.zig-sec.o-stk .cmn {
    position: sticky;
    top: 9rem;
}
.ul-a {
    list-style: lower-alpha;
    padding-left: 20px;
}
.ul-a .h-bl,
.ul-sm-one .h-bl {
    font-weight: var(--font-semibold);
    margin-bottom: 1rem;
    display: block;
}
.ul-a ::marker {
    font-weight: var(--font-semibold);
}
.ul-sm-one.bl ::marker {
    font-weight: var(--font-semibold);
}
.fw-inh ::marker {
    font-weight: inherit;
}
.fw-inh-imp li::marker {
    font-weight: inherit;
}
.ul-a .ul-clean .h-bl {
    font-style: italic;
    margin-top: 2rem;
}
.ul-clean {
    list-style: none;
}
.ul-clean.mb {
    margin-bottom: 2rem;
}
.ul-sm-a {
        list-style: lower-alpha;
}
.ul-sm-one {
        list-style: decimal;
}
.ul-sm-a,
.ul-sm-one,
.ul-clean.mb {
    margin-bottom: 2rem;
}
.ul-sm-a ::marker,
.ul-sm-one ::marker {
    font-weight: inherit;
}
.ul-sm-a li,
.ul-sm-one li,
.roman-list li,
.disc-list li {
    margin-bottom: .5rem;
}
.ul-a.mt {
    margin-top: 2rem;
}
.second-bold tr td:nth-child(2) {
    font-weight: var(--font-bold);
}
.first-bold tr td:nth-child(1) {
    font-weight: var(--font-bold);
}
.cst-tb .bk:not(:last-child) {
    margin-bottom: 10px;
}
.cst-tb tbody td {
    vertical-align: top;
}
.cst-tb ul {
    margin-top: 1rem;
}
.cst-tb ul li:not(:last-child) {
    margin-bottom: 1rem;
}
table.cst-tb {
    margin-top: 0;
    margin-bottom: 0;
}
.ul-sm-a.in {
    /* list-style-position: inside; */
}
.roman-list.in li {
    margin-left: 50px;
}
.ul-sm-a.in li {
    margin-left: 50px;
}
.ul-clean.inherit .h-bl {
    font-style: inherit;
}
.plane .h-mt {
    margin-top: 1rem;
}
.disc-list {
    list-style-type: disc;
}

table.disc-table td {
    vertical-align: top;
}
table.disc-table td:last-child {
    text-align: inherit;
}
.m-bold ::marker {
    font-weight: var(--font-bold);
}
.plane .ul-style.br ul.ul-m-0,
.ul-m-0,
.ul-m-0 li:last-child {
    margin-bottom: 0;
}
.zig-sec .ul-style.br ul.ul-m-0, .zig-sec .ul-style.br ul.ul-m-0 li:last-child {
 margin-bottom: 0;
}
.feature-card-wrap.moc {
    margin-bottom: 2rem;
}
/* .cr-tabs .tb-lst {
width: 74.8%;
} */
 .tab-content.mt {
    margin-top: 20px;
 }
 .ul-mt {
    margin-top: 1rem;
 }
  .ul-mb {
    margin-bottom: 1rem;
 }
 .accordion {
    --bs-accordion-border-color: transparent;
 }
 .circle-list {
    list-style: circle;
 }
  .circle-list.mb {
    margin-bottom: 1rem;
  }
  .t-eq thead th:first-child,
  .t-eq thead th:nth-child(2),
  .t-eq thead th:nth-child(3)  {
    width: 33.33333333%;
  }
    .t-eq-a thead th:first-child,
  .t-eq-a thead th:nth-child(2)  {
    width: 50%;
  }
  ul.last li:last-child,
  .last-p p:last-child {
    margin-bottom: 0;
  }
  .accordion.cst .main-heading.mb-xxl {
    margin-bottom: 0;
  }
  .accd .cst .list {
    padding-left: 40px;
  }
  .accordion.clean .ul-sm-one {
    padding-left: 0;
    list-style: none;
  }
.cr-tabs.tab-nw .nav-tabs .nav-item {
    padding: 10px 30px;
        background-image: none;
    
}
.cr-tabs.tab-nw .nav-tabs .nav-link {
        position: relative;

}
.cr-tabs.tab-nw .nav-tabs .nav-link::after,
.cr-tabs.tab-nw .nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
        background-repeat: no-repeat;
height: 100%;
    width: 100%;
}
.cr-tabs.tab-nw .nav-tabs .nav-link::after {

    right: 0;
    background-image: url("../../assets/img/management-of-contract/toolkits/tab-nw-bg.svg");

    background-position: center left;
    rotate: 180deg;

}
.cr-tabs.tab-nw .nav-tabs {
    position: relative;
}
.cr-tabs.tab-nw .nav-tabs .nav-item {
    position: relative;
}
.cr-tabs.tab-nw .nav-tabs .nav-item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 50%;
    background-color: var(--bg-one);
    height: 5px;
    width: 100%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.cr-tabs.tab-nw .nav-tabs .nav-item:first-child {
    padding-left: 0;
}

.cr-tabs.tab-nw .nav-tabs .nav-item:last-child {
    padding-right: 0;
}
.cr-tabs.tab-nw .nav-tabs .nav-link::before {

    left: 0;
    background-image: url("../../assets/img/management-of-contract/toolkits/tab-nw-bg.svg");

    background-position: center left;

}
.cr-tabs.tab-nw .nav-tabs .nav-link {
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    width: 170px;
    height: 170px;
    background-color: var(--white);
    font-weight: var(--font-semibold);
    box-shadow: -1px 1px 12px 0px #00000033;
    border: 0;
    padding-left: 25px;
    padding-right: 25px;
        display: flex;
    flex-direction: column;
}
.cr-tabs.tab-nw .nav-tabs .nav-link.active {
    background-color: #E0F8FF
}
.cr-tabs.tab-nw .btn-primary.active {
    border-color: var(--btn-bg-primary-hover);
    background-color: var(--btn-bg-primary-hover);
    color: var(--white);
}
.cr-tabs.tab-nw .inline-d img {
    width: 35px;
    height: 35px;
}
.cr-tabs.tab-nw .btn-primary {
    gap: 10px;
    background-color: var(--white);
    color: var(--body-color);
        border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    font-weight: var(--font-semibold);
}
.cr-tabs.tab-nw .btn-primary:hover {
    color: var(--white);

}
.ap-cards .card-header .fx {
    display: flex;
    align-items: center;
} 
.ap-cards .card-header {
    background-color: transparent;
    border-bottom: 0;
    padding-top: 25px;
}
.ap-cards .card-header .fx .txt {
    flex: 1 0 0%;
} 
.ap-cards .card-header .ic img {
   height: 80px;
}
.ap-cards .card {

    --bs-card-border-color: var(--ap-card-border-color);
        color: var(--color-one);
        margin-right: 20px;
    margin-bottom: 20px;
    height: 100%;


}
.ap-cards .card,
.ap-cards .card .card-header {
    border-top-left-radius: 0;

}
.ap-cards .card,
.ap-cards .card .card-header {
    border-top-right-radius: 30px;
}
.ap-cards .card,
.ap-cards .card .card-body {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;

}

.ap-cards .card::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--bg-one);
right: -15px;
    bottom: -15px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}
.ap-cards .card-header .txt {
    font-size: var(--main-heading-a);
    font-weight: var(--font-semibold);
}
.ap-cards .card-body ul.lst {
    margin-bottom: 0;
}
.ap-cards .card-body ul.lst li:not(:last-child) {
    margin-bottom: 20px;
}
.ap-cards .card-header,
.ap-cards .card-body {
    z-index: 1;
    background-color: #fff;
    padding-left: 25px;
    padding-right: 25px;
}
.ap-cards>.g.j-center {
    justify-content: center;
}
.ap-cards>.g {
    --bs-gutter-y: 3.5rem;
    --bs-gutter-x: 2.5rem;
}
.ap-cards.space {
    padding-top: 10px;
    padding-bottom: 50px;
}
.cr-tabs.tab-nw .nav-tabs .nav-link img {
    height: 80px;
    margin-bottom: 5px;
}
.last-p p:last-child:not(.first-child) {
    margin-bottom: 0;
}
.in-fx .form-cst .nw .control-label {
    display: inline-block;
    /* flex-wrap: wrap;
    align-items: center;
    gap: 6px; */
}
.in-fx .form-cst .nw .icon-wrap {
    margin-left: 0;
}
.checklist-cd {
    padding-top: 10rem;
}
.fw-initial {
    font-weight: initial;
}
.upper-a {
    list-style: upper-alpha;
}
.lower-a {
    list-style: lower-alpha;
}
.ul-cmn-list {
    list-style: disc;
}
.ul-mb-lg li .ul-mb-sm li,
.ul-mb-sm li {
    margin-bottom: .5rem;
}
.ul-mb-lg li {
    margin-bottom: 1rem;
}
.ac-wrap>.accd:last-child {
    margin-bottom: -5rem;
}
.info .zig-card-wrap .card-body .main-heading {
    margin-top: 0;
}
.page-pt {
    padding-top: 10rem;
}
.info-note {
    text-align: end;
}
.info-note p:first-child {
    font-weight: var(--font-semibold);
}
.info-note p:last-child {
    font-style: italic;
}
.info-note p {
    margin-bottom: 0;
        font-size: 95%;

}
.img-note.left {
    text-align: left;
}
.img-note p {
      margin-bottom: 0;
        font-size: 80%;  
}
.img-note.italic {
    font-style: italic;
}
.img-note.space {
    margin-top: 2rem;
}
.info-note.space {
    margin-top: 2rem;
}
.disclaimer .para p {
    text-align: justify;
}
.cfx p {
  overflow: hidden; /* Ensures text wraps properly */
}

.cfx .img-left {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
  max-width: 35%;
  height: auto;
}
.cfx .p-space {
    display: block;
    margin-bottom: 1rem;
}
.info .zig-card-wrap .card {
    height: auto;
}

/* komal wadkar */

.breadcrumb.ps-toolkit-banner {
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/ps-toolkit-ppp-planning-min.jpg?v=1.0');
        background-size: cover;

}
.breadcrumb.management-toolkits-banner{
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/management-contract-toolkits-min.jpg?v=1.0');
        background-size: cover;
}
.breadcrumb.resource-library-banner{
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/resource-library-min.jpg?v=1.0');
        background-size: cover;
}
.breadcrumb.about-management-contract-banner{
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/about-management-contract-min.jpg?v=1.0');
        background-size: cover;
}
.breadcrumb.about-project-preparation-toolkit-banner{
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/about-project-preparation-toolkit.jpg?v=1.0');
        background-size: cover;
}
.breadcrumb.pre-fs-toolkits-banner{
    background: linear-gradient(269.62deg, rgba(1, 12, 25, 0) 22.83%, rgba(1, 12, 25, 0.5525) 53.96%, rgba(1, 12, 25, 0.7225) 72.37%, rgba(1, 12, 25, 0.85) 99.69%), url('../img/breadcrumb/pre-fs-toolkits-min.jpg?v=1.1');
        background-size: cover;
}
.alpha-style .inner-list-inherit li::before {
    content: none;
}
.alpha-style .inner-list-inherit.mt {
    margin-top: 5px;
}
.alpha-style .inner-list-inherit li:not(:last-child) {
    margin-bottom: 0;
}
.cleanSwiper .info {
   background-color: var(--bg-one);
   height: 100%;
}
.cleanSwiper .info .card {
--bs-card-bg: transparent;
color: var(--white);
}
.cleanSwiper .swiper-slide,
.cleanSwiper .swiper-wrapper {
    height: auto;
}
.cleanSwiper .empower {
    height: 100%;
}
.float-heading {
    font-size: var(--main-heading-a);
    font-weight: var(--font-bold);
}
.accordion-item.body-none .accordion-collapse {
    display: none;
}   
.accordion-item.body-none .accordion-button::after {
    display: none;
}
.sm-mt {
    margin-top: 1rem;
}