:root {
    --purple: #6978B8;
    --dark-gray: #39374D;
    --cyan: #64C3E9;
    --white: #fff;
    --gray: #969696;
    --blue: #1B90CF;
    --black: #000;
    --dark-blue: #0F2765;
    /* --bs-nav-link-font-size : 0.85rem; */
    --bs-nav-link-font-size: 1rem;
    --project-height: 600px;
    --steps-space: 40px;
}

/* -------------- Start General -------------- */
body {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body.inner-pages {
    background: url('../img/inner-pages-bg.svg') no-repeat left top;
    padding-top: 150px;
}

.nunito-200 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.nunito-400 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.nunito-600 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.nunito-800 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.nunito-1000 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 1000;
    font-style: normal;
}

a {
    text-decoration: none;
    color: var(--blue);
}

.btn {
    border-radius: 50px;
    padding-inline: 25px;
    position: relative;
    z-index: 1;
    border: 0;
    box-shadow: none !important;
    height: 45px;
}

.btn:before {
    content: '';
    position: absolute;
    border-radius: 50px;
    background: var(--black);
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn:hover:before {
    opacity: 0.2;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active {
    background-color: var(--purple) !important;
    color: var(--white);
}

.btn-info,
.btn-info:hover,
.btn-info:active {
    background-color: var(--cyan) !important;
    color: var(--white);
}

.btn-outline-secondary,
.btn-outline-secondary:hover,
.btn-outline-secondary:active {
    background-color: transparent !important;
    color: var(--dark-gray) !important;
    border: 1px solid #ddd !important;
}


.btn-with-icon {
    width: 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.btn-with-icon span {
    display: block;
}

.btn-with-icon .icon {
    transition: all ease 0.3s;
    position: absolute;
    right: 17px;
    top: 12px;
}

.btn-with-icon span:not(.icon) {
    width: 100%;
}

.btn-with-icon:hover .icon {
    right: 10px;
}

.space-10 {
    height: 10px;
}

.space-15 {
    height: 15px;
}

.space-20 {
    height: 20px;
}

.space-25 {
    height: 25px;
}

.space-30 {
    height: 30px;
}

.space-35 {
    height: 35px;
}

.space-40 {
    height: 40px;
}

.space-45 {
    height: 45px;
}

.space-50 {
    height: 50px;
}

.img-wrapper {
    padding: 50px;
}

.img-wrapper img {
    border-radius: 30px;
    box-shadow: 0 10px 30px 5px rgba(0, 0, 0, 0.15);
}

.padding-block-50 {
    padding-block: 50px;
}

.padding-block-100 {
    padding-block: 100px;
}

.sub-title {
    color: var(--blue);
    font-size: 22px;
    font-weight: 700;
}

.title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.2;
}

.title span {
    font-size: .80em;
    /* font-weight: 600; */
}

p {
    color: var(--gray);
}

.form-control {
    border-radius: 0 !important;
    padding: 10px 15px;
    box-shadow: none !important;
    border-color: #7D89A86E;
    color: var(--dark-gray);
}

.form-control::placeholder {
    color: #6A7799;
}

.form-control:focus {
    color: #6A7799;
    border-color: var(--blue);
}

.form-check {
    user-select: none;
}

.form-check .form-check-input {
    box-shadow: none !important;
    --bs-form-check-bg: #ececec;
    border: 0;
}

.form-check-input:checked {
    background-color: var(--purple);
    border-color: var(--purple);
}

.form-check-input:checked[type=radio] {
    background: var(--purple);
}

.form-check-label {
    color: var(--dark-gray)
}

label {
    color: var(--dark-gray);
}

.nitc-hr {
    border-color: #b7bfd1;
    margin-block: 15px;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.is-invalid .form-check-input {
    border: 1px solid #dc3545 !important;
}

/* -------------- End General -------------- */

/* -------------- Start Header -------------- */
/* .nitc-header{
    position: absolute;
    width: 100%;
} */
.nitc-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
}

.nitc-header.sticky {
    position: fixed;
    top: 0;
    box-shadow: 0px 13px 35px -12px rgba(0, 0, 0, 0.15);
    animation: menu_sticky 0.7s ease-in-out;
    background: var(--white);
    border: 0 !important;
}

.inner-pages .nitc-header {
    border-bottom: 1px solid var(--gray);
}

.nitc-header .lang img {
    width: 40px;
    border-radius: 5px;
    /* display: block; */
    /* margin-inline-start: 5px; */
}

.nitc-header .navbar-brand {
    width: 200px;
    transition: all ease 0.3s;
}

.nitc-header.sticky .navbar-brand {
    width: 130px;
}

.nitc-header .offcanvas {
    border: 0;
}

.nitc-header .offcanvas-user {
    display: none;
}

.nitc-header .navbar-toggler {
    color: var(--white);
    border: 0;
    box-shadow: none !important;
    font-size: 26px;
    background: var(--dark-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nitc-header .btn-close {
    box-shadow: none !important;
    opacity: 1;
}

.nitc-header .navbar-nav .nav-item .nav-link {
    padding-inline: 0;
    margin-inline: var(--bs-navbar-nav-link-padding-x);
    font-weight: 600;
    color: var(--dark-gray);
    color: #565173;
    position: relative;
}

.nitc-header .navbar-nav .nav-item .nav-link:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background: var(--dark-blue);
    bottom: 10px;
    left: 0;
    right: 0;
    border-radius: 20px;
    opacity: 0;
    transition: all ease 0.3s;
}

.nitc-header .navbar-nav .nav-item .nav-link.active,
.nitc-header .navbar-nav .nav-item .nav-link:hover {
    color: var(--purple);
}

.nitc-header .navbar-nav .nav-item .nav-link.active:after,
.nitc-header .navbar-nav .nav-item .nav-link:hover:after {
    opacity: 1;
    bottom: 0;
}

/* -------------- Enb Header -------------- */

/* -------------- Start Hero Section -------------- */
/* .hero {
    margin-top: -210px;
    overflow: hidden;
}

.hero .w-120 {
    width: 120%;
} */
.hero {
    /* background: url('../img/slider-bg.png') no-repeat top right/contain; */
    padding-block: 180px 100px;
    position: relative;
}

.hero .img-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1;
    animation: blobAnimation 7s linear forwards infinite;
}

.hero .img-bg img {
    height: 100%;
    max-width: 100%;
}

.hero .arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    color: var(--white);
    background: var(--purple);
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    transition: all ease 0.3s;
    /* margin: 0; */
    padding: 0;
    /* inset: 0; */
}

.hero .arrow:after {
    display: none;
}

.hero .arrow:hover {
    border-radius: 50px;
}

/* -------------- End Hero Section -------------- */
/* -------------- Start who-is-nitc -------------- */
.section-with-bg {
    position: relative;
    /* overflow: hidden; */
}

.section-with-bg .bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
    animation: blobAnimation 7s var(--delay) linear forwards infinite;
    max-width: 100%;
}

.who-is-nitc {
    z-index: 1;
    /* background: url('../img/who-is-nitc-bg.svg') no-repeat left center; */
}

/* -------------- End who-is-nitc -------------- */

/* -------------- Start our-services -------------- */
.our-services .services-item {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 15px;
    box-shadow: 12px 7px 39px 0px #6E7B831A;
    margin-bottom: 30px;
}

.our-services .services-item .item-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.our-services .services-item p {
    margin: 0;
}

/* -------------- End our-services -------------- */

/* -------------- Start Partners -------------- */
.partners-slider .swiper-wrapper {
    padding-block: 50px;
}

.partners-slider .item {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 12px 7px 39px 0px #6E7B831A;
    height: 326px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-label{
        text-align: center;
    font-weight: 700;
    color: #333681;
    font-size: 24px;
}
  .more-details{
   
    display: flex;
}
.btnleft{
    margin-right: 3px;
    width: 9px;
    height: 17px;
    /*position: absolute;*/
    /*left: 16px;*/
    /*bottom: 38px;*/
}
.news-date{
    display: inline-flex;
    font-weight: 400;
    color: #333681;
    font-size: 16px;
}
.partners-slider .item img {
    max-height: 170px;
}

.partners-slider .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 130px;
    margin: 0 auto;
}

.partners-slider .navigation .arrow {
    /* top: auto; */
    position: relative;
    width: 50px;
    height: 50px;
    color: var(--white);
    background: var(--purple);
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    transition: all ease 0.3s;
    margin: 0;
    padding: 0;
    inset: 0;
}

.partners-slider .navigation .arrow:hover {
    border-radius: 50px;
}

.partners-slider .navigation .arrow:after {
    display: none;
}

/* -------------- End Partners -------------- */




/* -------------- Start project-gallery -------------- */
.project-gallery-slider {
    padding-top: 15px;
    /* padding-bottom: 100px; */
}

.project-gallery-slider .item {
    position: relative;
    padding: 15px;
    transition: all ease 0.3s;
}

.project-gallery-slider .item img {
    object-fit: cover;
    object-position: center;
    height: var(--project-height);
    border-radius: 20px;
}

.project-gallery-slider .item .name {
    position: absolute;
    bottom: 0;
    opacity: 0;
    left: 0;
    right: 0;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    transition: all ease 0.3s;
    color: var(--white);
}

.project-gallery-slider .swiper-slide-active .item {
    transform: scale(1.05);
}

.project-gallery-slider .swiper-slide-active .item img {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}

.project-gallery-slider .swiper-slide-active .item .name {
    bottom: 50px;
    opacity: 1;
}

.project-gallery-slider .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 100px;
    margin-block: 50px;
}

.project-gallery-slider .navigation .arrow {
    /* top: auto; */
    position: relative;
    width: 50px;
    height: 50px;
    color: var(--white);
    background: var(--purple);
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    transition: all ease 0.3s;
    margin: 0;
    padding: 0;
    inset: 0;
}

.project-gallery-slider .navigation .arrow:hover {
    border-radius: 50px;
}

.project-gallery-slider .navigation .arrow:after {
    display: none;
}

/* .project-gallery-slider .navigation .arrow.swiper-button-next{
    padding-inline-end: 100px;
}
.project-gallery-slider .navigation .arrow.swiper-button-prev{
    padding-inline-start: 100px;
} */
/* -------------- End project-gallery -------------- */


/* -------------- Start Footer -------------- */
footer {
    padding-block: 220px 30px;
    background: url('../img/footer-bg.svg') no-repeat top center/cover;
}

footer .widget-title {
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

footer .widget-list {
    padding: 0;
    list-style: none;
    margin: 0;
}

footer .widget-list li {
    line-height: 40px;
}

footer .widget-list li a {
    color: var(--white);
    display: block;
    transition: all ease 0.3s;
}

footer .widget-list li a:hover {
    padding-inline-start: 5px;
}

.footer-social {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-social li {
    margin-inline-end: 10px;
}

.footer-social li a {
    width: 35px;
    height: 35px;
    background: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark-blue);
    transition: all ease 0.3s;
}

.footer-social li a:hover {
    transform: translateY(-5px);
}

footer .copyright {
    font-size: 12px;
    margin: 0;
    text-align: center;
}

/* -------------- End Footer -------------- */

/* -------------- Start icons-card-with-title -------------- */
.icons-card-with-title .item {
    display: flex;
    margin-bottom: 30px;
}

.icons-card-with-title .item:last-child {
    margin-bottom: 0;
}

.icons-card-with-title .item .icon {
    flex: 0 0 100px;
    max-width: 100px;
    margin-inline-end: 15px;
    text-align: center;
}

.icons-card-with-title .item .icon img {
    height: 70px;
    object-fit: contain;
    object-position: top center;
}

.icons-card-with-title .item .info h3 {
    color: var(--blue);
    margin-block: 15px;
}

/* -------------- End icons-card-with-title -------------- */

/* -------------- Start card-item -------------- */
.cards {}

.cards .item {
    margin-bottom: 30px;
    transition: all ease 0.3s;
}

.cards .item:hover {
    transform: translateY(-10px);
}

.cards .item:hover img {
    /* box-shadow: 12px 7px 39px 0px #6e7b83e7; */
    box-shadow: 12px 7px 39px 0px #6E7B831A;
}

.cards .item img {
    object-fit: cover;
    object-position: center;
    height: 350px;
    border-radius: 10px;
    width: 100%;
    transition: all ease 0.3s;
}

.cards .item .item-title {
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
    font-weight: 700;
}

/* -------------- End card-item -------------- */



/* -------------- Start Project Pages -------------- */
.project-title {
    font-size: 22px;
    font-weight: 700;
}

.project-sub-title {
    font-size: 18px;
    font-weight: 700;
}

.project-sub-title span {
    margin-inline-end: 5px;
    color: var(--cyan);
}

.project-date {
    background: var(--cyan);
    padding: 8px 20px;
    border-radius: 40px;
    color: var(--white);
    font-weight: 700;
    display: inline-block;
    font-size: 14px;
}

/* -------------- End Project Pages -------------- */

/* -------------- Start Our Partners -------------- */
.our-partners .item {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 12px 7px 39px 0px #6E7B831A;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-partners .item img {
    max-height: 170px;
}

/* -------------- End Our Partners -------------- */

/* -------------- Start join us Pages -------------- */
.join-us .item img {
    border-radius: 10px;
}

.join-us .item {
    transition: all ease 0.3s;
}

.join-us .item .item-title {
    text-align: center;
    font-size: 22px;
    color: var(--dark-gray);
    margin: 15px 0;
    font-weight: 700;
}

.join-us .item:hover {
    transform: translateY(-10px);
}

.repeater-item {
    /* margin-bottom: 30px; */
    border-bottom: 1px dashed #7D89A86E;
    padding-top: 30px;
}

.repeater-item:first-child {
    padding: 0;
}

.repeater-item:last-child {
    border: 0;
    /* margin-bottom: 0; */
}

.upload-cv-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.upload-cv-wrapper #upload_cv_input {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
    cursor: pointer;
}

/* -------------- End join us Pages -------------- */


/* -------------- Start Jquery Steps -------------- */
.nitc-steps-style .steps {
    margin-bottom: 30px;
}

.nitc-steps-style .steps ul {
    display: flex;
    position: relative;
    padding-top: 50px;
    justify-content: center;
}

.nitc-steps-style .steps ul li {
    float: none;
    flex: 0 0 var(--steps-space);
    max-width: var(--steps-space);
    width: var(--steps-space);
    height: var(--steps-space);
    margin-inline-end: var(--steps-space);
}

.nitc-steps-style .steps ul li:after {
    content: '';
    position: absolute;
    width: var(--steps-space);
    height: 1px;
    background: #D9D9D9;
    bottom: calc(var(--steps-space) - (var(--steps-space) / 2) - 1px);
    margin-inline-start: var(--steps-space);
}

.nitc-steps-style .steps ul li:last-child {
    margin: 0;
}

.nitc-steps-style .steps ul li:last-child:after {
    display: none;
}

.nitc-steps-style .steps ul li a {
    padding: 0 !important;
    width: var(--steps-space);
    height: var(--steps-space);
    border-radius: 50% !important;
    margin: 0 !important;
    background: var(--purple);
}

.nitc-steps-style .steps ul li.disabled a {
    background: rgb(105 120 184 / 32%) !important;
}

.nitc-steps-style .steps ul li.current a {
    background: var(--blue) !important;
}

.nitc-steps-style .steps ul li.done a {
    background: var(--purple) !important;
}

.nitc-steps-style .steps ul li .number {
    display: none;
}

.nitc-steps-style .steps ul li .heading {
    position: absolute;
    color: var(--dark-gray);
    font-size: 30px;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

.nitc-steps-style .steps ul li.current .heading {
    opacity: 1;
}

.nitc-steps-style .content {
    background: transparent;
    overflow-y: auto;
}

.nitc-steps-style .content {
    scrollbar-width: thin;
    scrollbar-color: #787878 #cfcfcf;
}

/* .nitc-steps-style .content::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.nitc-steps-style .content::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

.nitc-steps-style .content::-webkit-scrollbar-thumb
{
    background-color: #000000;
} */


.nitc-steps-style .content .step-content {
    width: 100%;
}

.nitc-steps-style .actions ul {
    display: flex;
    justify-content: space-between;
}

.nitc-steps-style .actions ul li a,
.nitc-steps-style .actions ul li button {
    background: var(--purple) !important;
    border: 0;
    color: var(--white);
    height: 40px;
    padding: 0.5em 1em;
    border-radius: 5px;
}

.nitc-steps-style .actions ul li.disabled a {
    background: rgb(105 120 184 / 32%) !important;
    color: var(--white) !important;
}

/* -------------- End Jquery Steps -------------- */

/* -------------- Start Select 2 -------------- */
.nitc-select2-style .select2-container .select2-selection--single {
    height: 46px;
    border-color: #7D89A86E;
    border-radius: 0;
}

.nitc-select2-style .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-inline: 15px 30px;
    color: var(--dark-gray);
}

.nitc-select2-style .select2-selection--single .select2-selection__placeholder {
    color: #6A7799;
}

.nitc-select2-style .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    width: 30px;
}

.nitc-select2-style .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 7px 6px 0 6px;
    margin-left: -6px;
    border-color: #c7c7c7 transparent transparent transparent;
}

.nitc-select2-dropdown-style {
    border-color: #7D89A86E;
}

.nitc-select2-dropdown-style .select2-results .select2-results__option {
    font-size: 14px;
    font-weight: 600;
}

.nitc-select2-dropdown-style .select2-results .select2-results__option.select2-results__option--highlighted {
    background: #6978b85c;
}

.nitc-select2-dropdown-style .select2-results .select2-results__option.select2-results__option--selected {
    background: var(--purple);
    color: var(--white);
}

/* -------------- End Select 2 -------------- */

/* -------------- Start bootstrap-datepicker -------------- */
.datepicker.dropdown-menu {
    border: 0;
    border-radius: 0;
    font-size: 14px;
    width: 250px;
}

.datepicker.dropdown-menu table {
    width: 100%;
}

.datepicker-dropdown.datepicker-orient-top:before,
.datepicker-dropdown.datepicker-orient-bottom:before {
    display: none;
}

.datepicker.dropdown-menu table tr td {
    border-radius: 5px;
    line-height: 25px;
}

.datepicker.dropdown-menu table tr td.active,
.datepicker.dropdown-menu table tr td.active:hover,
.datepicker.dropdown-menu table tr td.selected {
    border-radius: 5px;
    background: var(--blue);
    border: 0;
}

.datepicker.dropdown-menu table tr td.range {
    background: var(--blue);
    color: var(--white);
    border-radius: 0;
}

.datepicker.dropdown-menu table tr td.range-end {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.datepicker.dropdown-menu table tr td.range-start {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}


/* -------------- End bootstrap-datepicker -------------- */

/* -------------- Start Login -------------- */
.login-page .login-wrapper {
    color: var(--white);
    padding: 100px 0;
}

/* .login-page .login-wrapper,
.login-page footer {
    background-color: var(--dark-blue);
} */

.login-page .login-wrapper h1 {
    font-size: 30px;
}
.login-page .login-wrapper .login-form{
    background: var(--dark-blue);
    padding: 24px;
    border-radius: 15px;
}

.login-page .login-wrapper p {
    color: var(--white);
    font-size: 14px;
}

.login-page .login-wrapper .form-control {
    background: transparent;
    border-radius: 10px !important;
    color: var(--white);
}

.login-page .login-wrapper .form-control::placeholder {
    color: #d8d8d8;
}

.login-page .login-wrapper a {
    color: var(--white);
}

.login-page .login-wrapper .btn {
    background: var(--cyan);
}

.login-page .password-wrapper {
    position: relative;
}

.login-page .password-wrapper .show-pass {
    position: absolute;
    right: 0px;
    width: 46px;
    height: 46px;
    font-size: 16px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* -------------- End Login -------------- */

/* -------------- Start FAQ Page -------------- */
.nitc-accordion .accordion-item {
    margin-bottom: 15px;
    border: 0;
    box-shadow: 0 0px 21px -4px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.nitc-accordion .accordion-header .accordion-button {
    box-shadow: none !important;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 18px;
}

.nitc-accordion .accordion-header .accordion-button:not(.collapsed) {
    background: #D3E1FC;
    color: #333681;
}

.nitc-accordion .accordion-body {
    color: #4d4d4d;
}

/* -------------- End FAQ Page -------------- */



/* -------------- Start dashboard -------------- */
body.dashboard-page {
    padding-top: 148px;
}

.dashboard-wrapper {
    display: flex;
}

.dashboard-wrapper .sidebar {
    min-height: 500px;
    /* position: fixed; */
    /* background: #ddd; */
    border-inline-end: 1px solid var(--gray);
    flex: 0 0 200px;
    max-width: 200px;
}

.user-info {
    display: flex;
    align-items: center;
    border: 1px solid #E7E7E7;
    padding: 7px;
    border-radius: 10px;
    margin: 0 10px 15px;
}

.user-info figure {
    margin: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-inline-end: 10px;
}

.user-info .name {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 600;
}

.dashboard-wrapper .sidebar ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.dashboard-wrapper .sidebar ul li a {
    color: #565173;
    display: block;
    padding-inline: 20px;
    padding-block: 12px;
    position: relative;
}

.dashboard-wrapper .sidebar ul li a:after {
    position: absolute;
    width: 5px;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent;
    content: '';
}

.dashboard-wrapper .sidebar ul li.active a {
    /* border-inline-start: 5px solid var(--cyan); */
    background: #F7F7F7;
}

.dashboard-wrapper .sidebar ul li.active a:after {
    background: var(--cyan);
}

.dashboard-wrapper .dashboard-content {
    padding: 50px;
    flex: 0 0 calc(100% - 200px);
    max-width: calc(100% - 200px);
}

.dashboard-wrapper .nitc-breadcrumb .breadcrumb-item {
    color: var(--gray);
    font-weight: 600;
}

.dashboard-wrapper .nitc-breadcrumb .breadcrumb-item a {
    color: var(--dark-gray);
}


.dashboard-wrapper .dashboard-content .tabs-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 15px;
}

.dashboard-wrapper .dashboard-content .tabs-header .nav {
    border: 0 !important;
}

.dashboard-wrapper .dashboard-content .tabs-header .nav .nav-item {
    margin-inline-end: 30px;
    position: relative;
}

.dashboard-wrapper .dashboard-content .tabs-header .nav .nav-item:last-child {
    margin: 0;
}

.dashboard-wrapper .dashboard-content .tabs-header .nav .nav-item .nav-link {
    border: 0 !important;
    background: transparent;
    padding-inline: 0;
    color: #84818A;
    font-weight: 600;
    padding-bottom: 15px;
    position: relative;
}

.dashboard-wrapper .dashboard-content .tabs-header .nav .nav-item .nav-link:after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 3px;
    background: #333681;
    border-radius: 5px;
    width: 0;
    transition: all ease 0.3s;
}

.dashboard-wrapper .dashboard-content .tabs-header .nav .nav-item .nav-link.active {
    color: #333681;
}

.dashboard-wrapper .dashboard-content .tabs-header .nav .nav-item .nav-link.active:after {
    width: 100%;
}

.dashboard-wrapper .dashboard-content .tabs-header .add-ticket {
    background: var(--dark-blue);
    border: 0;
    padding-inline: 0;
    padding: 8px 15px;
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
}

.dashboard-wrapper .dashboard-content .tabs-header .add-ticket .icon {
    width: 25px;
    margin-inline-end: 5px;
}

.tickets-wrapper .ticket {
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    padding: 16px;
    color: #333681;
    transition: all ease 0.3s;
    background: var(--white);
}

.tickets-wrapper .ticket:hover {
    transform: scale(1.01);
    box-shadow: 12px 7px 39px 0px #6E7B831A;
}

.tickets-wrapper .ticket .num {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.tickets-wrapper .ticket .name {
    font-weight: 600;
}

.tickets-wrapper .ticket .date {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tickets-wrapper .ticket .tags {
    font-weight: 600;
}

.tickets-wrapper .ticket .tags span {
    border: 1px solid #E7E7E7;
    border-radius: 20px;
    padding: 3px 13px;
    font-weight: 400;
}

.tickets-wrapper .ticket .ticket-title {
    font-weight: 600;
    font-size: 18px;
}

.tickets-wrapper .ticket p {
    color: #333681;
    opacity: 0.5;
}

.tickets-wrapper .ticket .status {
    font-weight: 600;
}

.dashboard-wrapper .badge {
    border-radius: 30px;
    padding: 3px 10px;
    background: #ddd;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid;
}

.dashboard-wrapper .badge.new {
    background: #F8A534;
    color: var(--white);
    border-color: #fde4c3;
}

.dashboard-wrapper .badge.active {
    background: #D3E1FC;
    color: var(--dark-blue);
    border-color: #f2f6ff;
}

.dashboard-wrapper .badge.close {
    background: #F3616C;
    color: var(--white);
    border-color: #fcdbde;
}

.dashboard-wrapper .badge.high {
    color: #F8A534;
    background: #fde4c3;
    border: 1px solid #F8A534;
    padding-inline: 15px;
}

.tickets-wrapper .ticket .actions {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
}

.tickets-wrapper .ticket .actions li {
    margin-inline-start: 15px;
}

.tickets-wrapper .ticket .actions li:first-child {
    margin-inline-start: 0;
}

.tickets-wrapper .ticket .actions li a {
    text-decoration: underline;
    color: var(--dark-blue);
    font-weight: 600;
}

.nitc-pagination .pagination .page-item {
    margin-inline-end: 10px;
}

.nitc-pagination .pagination .page-item .page-link {
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #E7E7E7;
    color: #333681;
    font-weight: 700;
    box-shadow: none !important;
}

.nitc-pagination .pagination .page-item.active .page-link {
    background: #333681;
    color: var(--white);
    border-color: #333681;
}

.nitc-pagination .pagination .page-item.disabled .page-link {
    background: transparent;
    color: #E7E7E7;
}

.dashboard-wrapper .ticket-label {
    font-weight: 600;
    color: var(--dark-gray);
}

.dashboard-wrapper .category-tag {
    border: 1px solid #E7E7E7;
    border-radius: 20px;
    padding: 3px 13px;
    font-weight: 400;
    color: #333681;
}

.dashboard-wrapper.ticket-details .project-name {
    color: #333681;
}

.dashboard-wrapper.ticket-details .ticket-title {
    font-size: 2rem;
    color: #565173;
    font-weight: 600;
}

.dashboard-wrapper.ticket-details .ticket-description {
    color: #333681;
}

.dashboard-wrapper .attachments-title {
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 15px;
}

.dashboard-wrapper .attachments-list-details {
    display: flex;
    flex-wrap: wrap;
}

.dashboard-wrapper .attachments-list-details .item a {
    display: flex;
    margin-inline-end: 30px;
    align-items: center;
    color: #252525;
}

.dashboard-wrapper .attachments-list-details .item .icon {
    font-size: 35px;
    margin-inline-end: 10px;
    /* flex: 0 0 40px;
    max-width: 40px; */
}

.dashboard-wrapper .attachments-list-details .item .attachments-info {
    /* flex: 0 0 auto; */
}

.dashboard-wrapper .attachments-list-details .item h5 {
    font-size: 18px;
    margin: 0;
}

.dashboard-wrapper .attachments-list-details .item .date {
    font-size: 14px;
    color: #838383;
}

.processes-wrapper {
    padding: 50px;
    background: #F7F7F7;
}

.processes-wrapper h3 {
    font-size: 22px;
    color: var(--dark-gray);
    font-weight: 700;
}

.processes-wrapper .comment-list {}

.processes-wrapper .comment-list .item {
    margin-bottom: 50px;
}

.processes-wrapper .comment-list .item .commenter {
    font-size: 16px;
    color: #9597bc;
    margin-bottom: 15px;
}

.processes-wrapper .comment-list .item .commenter .date {
    font-size: 14px;
    color: #252525;
    margin-inline-start: 15px;
}

.processes-wrapper .comment-list .item .comment {
    margin-bottom: 15px;
}

.processes-wrapper .comment-list .item .add-reply {
    color: #333681;
    text-decoration: underline;
}

/* .processes-wrapper .btn{
    width: 200px;
} */
/* -------------- End dashboard -------------- */

/* -------------- Start ticket-attachments -------------- */
.ticket-attachments {
    flex-wrap: wrap;
}

.ticket-attachments .upload-attachments-wrapper {
    position: relative;
    display: inline-block;
}

.ticket-attachments .upload-attachments-wrapper .ticket-attachments-input {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
    cursor: pointer;
}

.ticket-attachments .ticket-attachments-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.ticket-attachments .ticket-attachments-list li {
    margin-inline-end: 20px;
    display: flex;
    align-items: center;
}

.ticket-attachments .ticket-attachments-list li .icon {
    color: #54C104;
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* -------------- End ticket-attachments -------------- */

/* -------------- Start Modal -------------- */
.nitc-modal .btn-close {
    box-shadow: none !important;
}

.nitc-modal .modal-content {
    border: 0;
}

.nitc-modal .modal-title {
    color: var(--dark-gray);
    font-weight: 600;
}

.nitc-modal .modal-header {
    border: 0;
}

/* -------------- End Modal -------------- */






/* -------------- Start keyframes Animation -------------- */
@keyframes menu_sticky {
    0% {
        margin-top: -120px;
        opacity: 0;
    }

    50% {
        margin-top: -64px;
        opacity: 0;
    }

    100% {
        margin-top: 0;
        opacity: 1;
    }
}

@keyframes blobAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0);
    }
}


/* -------------- End keyframes Animation -------------- */




/* -------------- Start Responsive -------------- */
@media (max-width:1366px) {
    /* .hero {
        margin-top: -150px;
    }

    .hero .w-120 {
        width: 145%;
    } */

    .img-wrapper {
        padding: 30px;
    }

    .title {
        font-size: 30px;
    }
}

@media (min-width: 1200px) {
    .nitc-header .navbar-expand-xl .navbar-toggler {
        display: none;
    }
}

@media (max-width: 1200px) {
    .hero {
        padding-block: 180px 100px;
    }
}

@media (max-width:1024px) {
    .project-gallery-slider .item img {
        --project-height: 500px
    }
}

@media (max-width:768px) {
    .nitc-header .offcanvas-user {
        display: block;
    }

    .sidebar .user-info {
        display: none !important;
    }

    .dashboard-wrapper {
        display: block;
    }

    .dashboard-wrapper .sidebar {
        min-height: auto;
        width: 100%;
        max-width: none;
        border: 0;
        padding-inline: 15px;
    }

    .dashboard-wrapper .sidebar .space-30 {
        height: 15px;
    }

    .dashboard-wrapper .sidebar ul {
        display: flex;
    }

    .dashboard-wrapper .sidebar ul li a {
        padding-inline: 20px;
        padding-block: 7px;
    }

    .dashboard-wrapper .sidebar ul li.active a {
        background: var(--cyan);
        color: var(--white);
        border-radius: 50px;
    }

    .dashboard-wrapper .sidebar ul li.active a:after {
        display: none;
    }

    .dashboard-wrapper .dashboard-content {
        width: 100%;
        max-width: none;
        padding: 16px;
    }

    .padding-block-100 {
        padding-block: 50px;
    }

    .title {
        font-size: 24px;
    }

    .hero {
        background: transparent
    }

    /* .hero {
        margin-top: 0;
    }

    .hero .w-120 {
        width: 100%;
    } */

    .project-gallery-slider .item img {
        --project-height: 400px
    }

    footer {
        margin-top: -100px;
    }

    .login-page .login-wrapper {
        padding: 100px 0;
    }

    .processes-wrapper {
        padding: 25px;
    }
}

@media (max-width:480px) {
    .section-with-bg .bg {
        opacity: 0.5;
    }

    .icons-card-with-title .item {
        display: block;
    }

    .icons-card-with-title .item .icon img {
        height: 40px;
    }

    footer {
        padding-block: 300px 30px;
        margin-top: -180px;
    }

    .login-page .login-wrapper {
        padding: 50px 0;
    }

    .dashboard-wrapper .dashboard-content .tabs-header {
        flex-wrap: wrap;
        padding-bottom: 0;
    }

    .dashboard-wrapper .dashboard-content .tabs-header .nav {
        order: 2;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .dashboard-wrapper .dashboard-content .tabs-header .nav .nav-item {
        margin: 0;
    }

    .dashboard-wrapper .dashboard-content .tabs-header .nav .nav-item .nav-link:after {
        bottom: -1px;
    }

    .dashboard-wrapper .dashboard-content .tabs-header .add-ticket {
        margin-bottom: 15px;
    }

    /* .dashboard-wrapper .dashboard-content .tabs-header .add-ticket{
        width: auto;
        order: 1;
        background: var(--dark-blue);
        color: var(--white);
        padding: 10px 20px;
        border-radius: 10px;
        margin-bottom: 15px;
    } */
}

/* -------------- End Responsive -------------- */

/* -------------- Start ceo-speech -------------- */
.ceo-speech .ceo-img{
    width: 180px;
}
.ceo-speech h3{
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 25px;
}
.ceo-speech p{
    font-size: 20px;
    color: var(--dark-blue);
    font-weight: 600;
}
/* -------------- End ceo-speech -------------- */







.news-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}
  
 .card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 22px;
          padding: 12px;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-date {
    font-size: 16px;
    color: #333681;
    display: block;
    margin-bottom: 10px;
    text-align: start;
    font-weight: 400;
}

.card-title {
      font-size: 22px;
    color: #2d2d72;
    margin: 10px 0;
    font-weight: 700;
    line-height: 30px;
    text-indent: 16px;
}

.card-link {
    color: #2d2d72;
    font-weight: bold;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
    font-weight: 400;
    font-size: 24px;
}
