/*
 * All CSS
 #-Preeloader
 #-Button
 #-Header
 #-Mobile Menu
 #-Breadcrumb
 #-Single Post
 #-Blog Sidebar
 #-Portfolio Details
* #-Transition
 * #-Vedio Button
 * #-Hero Section
 * #-Section Title
 * #-Service Card
 * #-About Us
 * #-Counter
 * #-Why Choose Us
 * #-Portfolio
 * #-Banner Section
 * #-Team
 * #-Testimonial
 * #-Work In Progress
 * #-Pricing Plan
 * #-Hero Slider
 * #-Industry We Serve
 * #-Contact Us
*/
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --body-bg: #fff;
    --white-bg: #fff;
    --section-bg: #efefff;
    --primary-bg: linear-gradient(to left, #76009c, #3630ff);
    --headding-bg: #020842;

    --body-color: rgb(68, 86, 88);
    --primary-color: rgb(54, 48, 255);
    --secondary-color: #10393b;
    --headding-color: #020842;
    --white-color: #fff;
    --border-color: #f0f0f0;
    --ct-border-color: #e2e8f0;
    --ct-border-color2: #e1e1e1;
    --ct-border-color3: #E8E8E8;

    --no-change-color1: #020842;

    --body-font: "Catamaran", sans-serif;
    --headding-font: "Jost", sans-serif;

}

[data-bs-theme="dark"] {
    --body-bg: #072032;
    --white-bg: #072032;
    --section-bg: #10293a;
    --primary-bg: linear-gradient(to left, #76009c, #3630ff);
    --headding-bg: #020842;

    --body-color: #9ba0a3;
    --primary-color: rgb(54, 48, 255);
    --secondary-color: #10393b;
    --headding-color: #fff;
    --white-color: #fff;
    --border-color: #f0f0f021;
    --ct-border-color: #e2e8f014;
    --ct-border-color2: #e1e1e11f;
    --ct-border-color3: #ececec30;
}

body {
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: var(--body-color);
    font-family: var(--body-font);
    font-weight: 400;
    font-style: normal;
    background-color: var(--body-bg);
}

a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

*::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headding-color);
    font-weight: 700;
    font-family: var(--headding-font);
}

a {
    text-decoration: none;
    transition: .4s;
    -webkit-transition: all .4s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

button:focus {
    outline: none;
}

input:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

p {
    color: var(--body-color);
    line-height: 26px;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*Scroll Area*/
.scroll-area {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    display: none;
}

.scroll-area i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
}

.section-bg {
    background-color: var(--section-bg);
}

.section-padding {
    padding: 100px 0px;
}

.section-padding-2 {
    padding-top: 100px;
    padding-bottom: 70px;
}

.section-padding-80 {
    padding: 80px 0px;
}

.section-padding-70 {
    padding: 70px 0px;
}

.section-padding-50 {
    padding: 50px 0px;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.sec-pt-100 {
    padding-top: 100px;
}

.sec-pb-100 {
    padding-bottom: 100px;
}

.counter-bottom-padding {
    padding-bottom: 150px;
}

/*
 * Preeloader
*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: #020842;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto
}

.loading {
    border: 1px solid transparent;
    border-color: transparent #fff transparent #fff;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*
 * Button
*/
.button-1 {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 16px 30px;
    background: var(--primary-color);
    color: var(--white-color);
    line-height: 1.2;
    overflow: hidden;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.button-1:hover {
    color: var(--white-color);
}

.button-1::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--headding-color);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1);
    transition: transform .5s cubic-bezier(.86, 0, .07, 1);
    transition: transform .5s cubic-bezier(.86, 0, .07, 1), -webkit-transform .5s cubic-bezier(.86, 0, .07, 1);
    -webkit-transition-timing-function: cubic-bezier(.86, 0, .07, 1);
    transition-timing-function: cubic-bezier(.86, 0, .07, 1);
    z-index: -1;
}

.button-1:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

/*
 * Header
*/
.header {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
}

.header .logo img.sticky-logo {
    display: none;
}

.menu {
    float: right;
    margin-right: 50px;
}

.h-right-button {
    float: right;
    padding-top: 16px;
}

.menu ul li {
    display: inline-block;
    position: relative;
}

.menu ul li a {
    display: inline-block;
    padding: 30px 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.menu ul li a i {
    font-size: 13px;
}

/*.menu ul li:hover > a{
    color: var(--primary-color);
}*/
.menu ul li>ul {
    position: absolute;
    background: var(--white-bg);
    width: 240px;
    box-shadow: 0 30px 70px 0 hsla(216, 2%, 55%, .15);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    transition: all .3s ease-out 0s;
    opacity: 0;
    left: 0;
    top: 100%;
    visibility: hidden;
    padding: 15px 0;
    z-index: 9;
}

.menu ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.menu ul li>ul li {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
}

.menu ul li>ul li a {
    display: inline-block;
    width: 100%;
    padding: 0 25px;
    font-size: 15.5px;
    color: var(--headding-color);
}

.menu ul li>ul li a:hover {
    color: var(--primary-color);
}

.menu ul li.menu-item-has-children>a {
    position: relative;
    padding-right: 26px;
}

.menu ul li.menu-item-has-children>a:after {
    content: "\f107";
    clear: both;
    display: block;
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 12px;
    line-height: 1;
    right: 13px;
    top: calc(50% - 6px);
}

.menu ul li>ul li>ul {
    left: 240px;
    top: -16px;
}

.menu ul li:last-child ul>li>ul {
    left: -240px;
    top: -16px;
}

.header .button-1::after {
    background-color: var(--white-bg);
}

.header .button-1:hover {
    color: var(--headding-color);
}

/*
 * #-Mobile Menu
*/
.off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #232323;
    top: 0;
}

.off_canvars_overlay.active {
    opacity: 0.5;
    visibility: visible;
}

.offcanvas_menu {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .offcanvas_menu {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .offcanvas_menu {
        display: block;
    }
}

.offcanvas_menu_wrapper {
    width: 290px;
    position: fixed;
    background: var(--white-bg);
    z-index: 9999999;
    top: 0;
    height: 100vh;
    transition: .5s;
    left: 0;
    margin-left: -300px;
    padding: 20px 0px 30px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper.active {
    margin-left: 0;
}

.offcanvas_menu_wrapper .slinky-theme-default {
    background: inherit;
    min-height: 300px;
    overflow-y: auto;
}

.offcanvas_menu_wrapper .header_search_box {
    display: block;
}

.offcanvas_main_menu>li.menu-item-has-children.menu-open>span.menu-expand {
    transform: rotate(180deg);
}

.offcanvas_main_menu>li ul li.menu-item-has-children.menu-open span.menu-expand {
    transform: rotate(180deg);
}

.offcanvas_main_menu li {
    position: relative;
}

.offcanvas_main_menu li:last-child {
    margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
    position: absolute;
    right: 1px;
    width: 50px;
    height: 51px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--section-bg);
}

.offcanvas_main_menu li a {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    padding: 0px 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--body-color);
    padding-top: 10px;
    line-height: 30px;
    letter-spacing: 1px;
}

.offcanvas_main_menu li ul.sub-menu>li a {
    font-size: 15px;
    padding: 6px 26px;
}

.offcanvas_main_menu li a:hover {
    color: var(--primary-color);
}

.offcanvas_footer {
    margin-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.offcanvas_footer span a {
    font-size: 14px;
}

.offcanvas_footer span a:hover {
    color: var(--primary-color);
}

.slinky-theme-default a:not(.back) {
    padding: 10px 0;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}

.slinky-theme-default a:not(.back):hover {
    background: inherit;
    color: var(--primary-color);
}

.canvas_close {
    position: absolute;
    top: 10px;
    right: 13px;
}

.canvas_close a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
    line-height: 32px;
    border: 1px solid #ededed;
    border-radius: 50%;
    color: #333;
}

.canvas_close a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.mobile-logo {
    margin-bottom: 30px;
    text-align: center;
}

.canvas_open_full {
    display: none;
}

.offcanvas_main_menu li ul.sub-menu>li span.menu-expand {
    height: 42px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .canvas_open {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .canvas_open {
        right: 20px;
        top: 27px;
        display: block;
        width: 36px;
    }
}

/*
 * Footer
*/
.site-footer {
    position: relative;
    z-index: 1;
    background-color: rgb(2 9 18);
}

.footer-bg-dot {
    background-size: 20px 20px;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .8;
}

.footer-top {
    padding-top: 70px;
    padding-bottom: 40px;
}

.footer-widgets-item .f-logo {
    margin-bottom: 30px;
}

.footer-widgets-item p.content {
    margin-bottom: 30px;
    color: #d2d2d4;
    font-size: 16px;
}

.footer-social span {
    display: inline-block;
    margin-right: 8px;
}

.footer-social span:last-child {
    margin-right: 0px;
}

.footer-social span a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 14px;
    transition: all .3s ease;
}

.footer-social span a svg {
    font-size: 14px;
    width: 18px;
    fill: var(--white-color);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.footer-social span a:hover svg {
    fill: var(--primary-color);
}

.footer-social span a:hover {
    color: var(--primary-color);
    background: var(--white-bg);
}

.footer-widgets-item h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-widgets-item ul.menu {
    margin: 0;
    float: left;
}

.footer-widgets-item ul.menu li a {
    color: #d2d2d4;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    margin: 6px 0px;
    transition: all .3s ease;
}

.footer-widgets-item ul.menu li a:hover {
    color: var(--white-color);
}

.footer-widgets-item ul.contact-info li {
    margin-bottom: 30px;
    display: flex;
    align-items: start;
}

.footer-widgets-item ul.contact-info li .icon i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 18px;
}

.footer-widgets-item ul.contact-info li .content h4 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: 1px;
}

.footer-widgets-item ul.contact-info li .content p {
    color: #d2d2d4;
    margin-top: 4px;
    line-height: 24px;
    font-size: 16px;
}

.footer-widgets-item ul.contact-info li:last-child {
    margin-bottom: 0px;
}

.footer-bottom {
    text-align: center;
    background: #04132c47;
}

.footer-bottom .copy-text p {
    color: var(--white-color);
    font-weight: 500;
}

.footer-bottom .copy-text p a {
    color: var(--white-color);
}

.footer-bottom .copy-text p a:hover {
    color: var(--primary-color);
}


.header.sticky-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.header.sticky-header.sticky .logo img {
    display: none;
}

.header.sticky-header.sticky .logo img.sticky-logo {
    display: block;
}

.sticky .menu ul li a {
    color: var(--headding-color);
}

.sticky .menu ul li:hover>a {
    color: var(--primary-color);
}

.sticky.header .button-1::after {
    background-color: var(--headding-bg);
}

.sticky.header .button-1:hover {
    color: var(--white-color);
}

.header-color.header .logo img {
    display: none;
}

.header-color.header .logo img.sticky-logo {
    display: block;
}

.header-color .menu ul li a {
    color: var(--headding-color);
}

.header-color .menu ul li:hover>a {
    color: var(--primary-color);
}

.header-color.header .button-1::after {
    background-color: var(--no-change-color1);
}

.header.header-color .button-1:hover {
    color: var(--white-color);
}

.tableWrapper {
    max-width: 95%;
    margin: 0 auto;
    width: 100%;
   
}
.tableWrapper table:not(.show-data) {
    min-height: 300px;
    position: relative;
}
.tableWrapper table td {
    vertical-align: middle;
}
.pagination > li:not(:first-child) {
    border-left: 0;
}
.pagination > li {
    padding: 2px 15px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}
.pagination > li:hover {
    background-color: #cccccc30;
}
.pagination > li.active {
    background-color: #cccccc87;
}
.table-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
table:not(.show-data) > tbody tr, table:not(.show-data) ~ * {
    display: none;
} 
table:not(.show-data):after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: url(./images/loading-icon.png);
    background-position: center;
    background-size: 100%;
    animation: rotate 0.75s linear infinite;
}
.search-wrapper input:focus-visible {
    background: #cccccc26;
}
.search-wrapper input {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 4px 10px;
    outline: none;
}
/* table#tableSample thead tr td:nth-child(1),
table#tableSample thead tr td:nth-child(2) {
    width: 10%;
}
table#tableSample thead tr td:nth-child(3) {
    width: 60%;
}
table#tableSample thead tr td:nth-child(4) {
    width: 20%;
} */
td.no-available-data {
    vertical-align: middle;
    font-weight: 900;
    font-size: 28px;
}
@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}