/*
 * All CSS
 #-Preeloader
 #-Button
 #-Header
 #-Mobile Menu
 #-Breadcrumb
 #-Single Post
 #-Blog Sidebar
 #-Portfolio Details
*/
@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, rgb(41 35 237));
    --headding-bg: #010742;
    --header-top-bg: #0F0F0F;

    --body-color: rgb(68,86,88);
    --primary-color: rgb(41 35 237);
    --secondary-color: #10393b;
    --headding-color: #010742;
    --white-color:#fff;
    --border-color:#f0f0f0;
    --ct-border-color: #e2e8f0;
    --ct-border-color2: #e1e1e1;
    --ct-border-color3: #E8E8E8;

    --no-change-color1: #010742;

    --dark-bg:#072032;

    --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, #ff5e14);
    --headding-bg: #010742;

    --body-color: #9ba0a3;
    --primary-color: #ff5e14;
    --secondary-color: #10393b;
    --headding-color: #fff;
    --white-color:#fff;
    --border-color:#f0f0f021;
    --ct-border-color: #e2e8f014;
    --ct-border-color2: #e1e1e11f;
    --ct-border-color3: #ececec30;
}
[data-bs-theme="blue"]{
    --body-bg:#050C36;
    --white-bg:#050C36;
    --section-bg: #06113F;
    --primary-bg: linear-gradient(to left, #050C36, #ff5e14);
    --headding-bg: #010742;

    --body-color: #9ba0a3;
    --primary-color: #ff5e14;
    --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;
}
/*
 * 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: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.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.header3 {
    position: relative;
}
.header-top {
    background-color: var(--header-top-bg);
    padding: 15px 0;
}
.ht-left-sec span {
    display: inline-flex;
    margin-right: 14px;
    font-weight: 500;
    color: var(--white-color);
    align-items: center;
    line-height: 1;
}
.ht-left-sec span:last-child {
    margin-right: 0px;
}
.ht-left-sec span i {
    margin-right: 5px;
}
.top-social span {
    display: inline-block;
    margin-right: 20px;
}
.top-social span:last-child {
    margin-right: 0px;
}
.top-social span a {
    color: var(--white-color);
    font-size: 14px;
}
.top-social span a svg {
    width: 15px;
    height: 15px;
    fill: var(--white-color);
}
.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 14px;
    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: 'Font Awesome 6 Pro';
    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;
    }
}
/*
 * #-Breadcrumb
*/
.breadcrumb-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}
.breadcrumb-section .content h2 {
    font-size: 42px;
    color: var(--white-color);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.breadcrumb-section .content ul li {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
}
.breadcrumb-section .content ul li:first-child {
    padding-right: 20px;
    position: relative;
}
.breadcrumb-section .content ul li:last-child {
    padding-left: 20px;
}
.breadcrumb-section .content ul li:first-child:after {
    content: "";
    clear: both;
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 10px;
    right: -4px;
    background: var(--white-color);
    border-radius: 50%;
}
.breadcrumb-section .content ul li a{
    color: var(--white-color);
}
.breadcrumb-section .content ul li a:hover{
    color: var(--primary-color);
}
/*
 * 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: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 18px;
    transition: all .3s ease;
}
.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);
}
/*
 * #-Single Post
*/
.blog-details-full .thumbnail {
    text-align: center;
    margin-bottom: 30px;
}
.blog-details-full .post-auth {
    margin-bottom: 20px;
}
.blog-details-full .post-auth li {
    display: inline-flex;
    align-items: center;
    margin-right: 18px;
    font-size: 16px;
    font-weight: 500;
}
.blog-details-full .post-auth li:last-child{
    margin-right: 0;
}
.blog-details-full .post-auth li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 6px;
}
.blog-details-full .post-auth span span.author.vcard a {
    margin-left: 5px;
    text-transform: capitalize;
    color: var(--body-color);
}
.blog-details-full .post-auth span a{
    color: var(--body-color);
}
.blog-details-full .post-auth span a:hover,
.blog-details-full .post-auth span span.author.vcard a:hover{
    color: var(--primary-color);
}
.blog-details-full .post-auth li span {
    line-height: 1;
    padding-top: 1px;
}
.blog-details-full .entry-content {
    margin-bottom: 30px;
}
.common-content-section p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
}
.common-content-section blockquote {
    margin-bottom: 20px;
    background: var(--primary-color);
    padding: 50px;
    position: relative;
    color: var(--white-color);
}
.common-content-section blockquote p {
    font-size: 20px;
    color: var(--white-color);
    font-weight: 500;
    font-style: italic;
    line-height: 32px;
}
.common-content-section blockquote p:last-child {
    margin: 0;
}
.common-content-section blockquote:after {
    content: "\f10d";
    clear: both;
    display: block;
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    font-size: 100px;
    line-height: 1;
    bottom: -20px;
    right: 30px;
    color: var(--white-color);
    opacity: 0.3;
}
.common-content-section h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}
.common-content-section ul,
.common-content-section ol {
    margin-bottom: 20px;
    padding-left: 50px;
    list-style: inherit;
}
.common-content-section ol {
    list-style: decimal;
    padding-left: 40px;
}
.common-content-section ul li,
.common-content-section ol li {
    line-height: 30px;
    font-size: 15px;
    font-weight: 600;
}
.common-content-section h1 {
    font-size: 30px;
    margin-bottom: 12px;
}
.common-content-section h2 {
    font-size: 26px;
    margin-bottom: 12px;
}
.common-content-section h3 {
    font-size: 24px;
    margin-bottom: 12px;
}
.common-content-section h5 {
    font-size: 20px;
    margin-bottom: 12px;
}
.common-content-section h6 {
    font-size: 18px;
    margin-bottom: 12px;
}
.common-content-section pre {
    background: #e7e7e7;
    padding: 14px 20px;
    font-size: 14px;
}
footer.entry-footer .blog-tags {
    text-align: center;
    margin-bottom: 30px;
}
footer.entry-footer .blog-tags a {
    display: inline-block;
    padding: 8px 15px;
    font-size: 15px;
    font-weight: 500;
    background: var(--section-bg);
    border-radius: 4px;
    line-height: 22px;
    color: var(--headding-color);
    margin: 0px 3px;
    transition: all .3s ease;
}
footer.entry-footer .blog-tags a:hover{
    color: var(--white-color);
    background: var(--primary-color);
}
footer.entry-footer .blog-tags span {
    font-size: 18px;
    margin-right: 5px;
}
.blog-details-full .blog-share {
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
.blog-details-full .blog-share  span:first-child {
    font-size: 18px;
    margin-right: 5px;
}
.blog-details-full .blog-share a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0px 3px;
    font-size: 15px;
    border: 1px solid var(--primary-color);
    transition: all .3s ease;
}
.blog-details-full .blog-share a svg {
    width: 15px;
    fill: var(--primary-color);
    transition: all .3s ease;
}
.blog-details-full .blog-share a:hover svg{
    fill: var(--white-color);
}
.blog-details-full .blog-share a:hover{
    color: var(--white-color);
    background: var(--primary-color);
    transform: translateY(-5px);
}
.blog-comments-list {
    margin-bottom: 30px;
}
.blog-comments-list h2.comments-title {
    font-size: 30px;
    margin-bottom: 25px;
    font-weight: 600;
}
.blog-comments-list  ul {
    width: 100%;
}
.blog-comments-list ul > li {
    margin-bottom: 30px;
}
.blog-comments-list ul > li .comment-body {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    padding: 30px 30px;
    border-radius: 5px;
}
.blog-comments-list ul > li .comment-body img.avatar {
    width: 80px;
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}
.blog-comments-list ul > li .comment-body .comment-content {
    overflow: hidden;
}
.blog-comments-list ul li > ul.children {
    padding-left: 100px;
    margin-top: 30px;
}
.blog-comments-list ul li > ul.children li > ul.children {
    padding-left: 0;
}
.blog-comments-list ul > li .comment-body .comment-content h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.blog-comments-list ul > li .comment-body .comment-content .date {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--body-color);
    opacity: .8;
}
.blog-comments-list ul > li .comment-body .comment-content .reply {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
}
.blog-comments-list ul > li .comment-body .comment-content .reply a {
    display: inline-block;
    padding: 2px 14px;
    background: var(--white-bg);
    color: var(--primary-color);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 26px;
    padding-top: 4px;
    border-radius: 4px;
    transition: all .3s ease;
    border: 1px solid var(--primary-color);

}
.blog-comments-list ul > li .comment-body .comment-content .reply a:hover{
    color: var(--white-color);
    background: var(--primary-color);
}
nav.navigation.comment-navigation{
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
}
nav.navigation.comment-navigation h2.screen-reader-text {
    display: none;
}
nav.navigation.comment-navigation .nav-links {
    width: 100%;
}
nav.navigation.comment-navigation .nav-links .nav-previous {
    float: left;
}
nav.navigation.comment-navigation .nav-links  .nav-next {
    float: right;
}
nav.navigation.comment-navigation .nav-links a {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--headding-color);
    transition: all .3s ease;
}
nav.navigation.comment-navigation .nav-links a:hover{
    color: var(--primary-color);
    text-decoration: underline;
}
.blog-details-full .comment-respond h3 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}
.blog-details-full .comment-respond p.comment-notes {
    margin-bottom: 20px;
}
.blog-details-full .comment-respond p.comment-form-comment {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}
.blog-details-full .comment-respond p.comment-form-comment label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}
.blog-details-full .comment-respond p.comment-form-comment textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #ebebeb;
    transition: all .3s ease;
    outline: none;
    font-size: 16px;
    padding: 15px 20px;
    color: var(--body-color);
}
.blog-details-full .comment-respond p.comment-form-comment textarea:focus {
    border-color: var(--primary-color);
}
.blog-details-full .comment-respond p.comment-form-author {
    width: calc( 50% - 10px );
    float: left;
    margin-bottom: 20px;
    margin-right: 20px;
}
.blog-details-full .comment-respond p.comment-form-email {
    width: calc( 50% - 10px );
    overflow: hidden;
    margin-bottom: 20px;
}
.blog-details-full .comment-respond label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}
.blog-details-full .comment-respond input {
    width: 100%;
    border: 1px solid #ebebeb;
    transition: all .3s ease;
    outline: none;
    font-size: 16px;
    padding: 15px 20px;
    color: var(--body-color);
    box-sizing: border-box;
}
.blog-details-full .comment-respond input:focus {
    border-color: var(--primary-color);
}
.blog-details-full .comment-respond p.comment-form-url {
    width: 100%;
    margin-bottom: 20px;
}
.blog-details-full .comment-respond p.comment-form-cookies-consent {
    width: 100%;
    margin-bottom: 20px;
}
.blog-details-full .comment-respond p.comment-form-cookies-consent input {
    display: inline-block;
    float: left;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    margin-top: 3px;
}
.blog-details-full .comment-respond p.comment-form-cookies-consent label {
    display: inline-block;
    margin-bottom: 0;
    line-height: 1;
}
.blog-details-full .comment-respond p.form-submit input#submit {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 16px 30px;
    background: var(--no-change-color1);
    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;
    width: auto;
    border: none;
    outline: none;
    transition: all .3s ease;
}
.blog-details-full .comment-respond p.form-submit input#submit:focus{
    outline: none;
}
.blog-details-full .comment-respond p.form-submit input#submit:hover{
    background: var(--primary-color);
}
.blog-comments-list ul > li .comment-body .comment-content em.comment-awaiting-moderation {
    color: var(--primary-color);
    margin-bottom: 5px;
    display: inline-block;
    font-weight: 600;
}
.blog-comments-list ul > li .comment-respond h3 {
    font-size: 24px;
    font-weight: 600;
}
.blog-comments-list ul > li .comment-respond h3 small {
    margin-left: 10px;
    font-size: 18px;
}
.blog-comments-list ul > li .comment-respond {
    margin-top: 30px;
}
.blog-single-item {
    background: var(--white-bg);
    position: relative;
    border: 1px solid var(--ct-border-color3);
    border-radius: 4px;
    transition: all .3s ease;
}
.blog-single-item:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.blog-single-item .thumbnail{
    overflow: hidden;
    position: relative;
}
.blog-single-item .thumbnail img {
    width: 100%;
    transition: .7s;
}
.blog-single-item:hover .thumbnail img{
    transform: scale(1.1);
}
.blog-single-item .content {
    padding: 25px 30px;
    position: relative;
}
.blog-single-item .content .date {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0.8rem;
    line-height: 28px;
}
.blog-single-item .content .date i {
    margin-right: 4px;
}
.blog-single-item .content .title {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.blog-single-item .content .title h3 {
    font-size: 22px;
    font-weight: 600;
}
.blog-single-item .content .title h3 a {
    color: var(--headding-color);
}
.blog-single-item .content .title h3 a:hover {
    color: var(--primary-color);
}
.blog-single-item .content .user-s {
    overflow: hidden;
}
.blog-single-item .content .user-s ul li {
    display: inline-block;
    float: left;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: var(--body-color);
}
.blog-single-item .content .user-s ul li:last-child {
    float: right;
}
/*
 * #-Blog Sidebar
*/
.blog-sidebar-section{
    padding-left: 2rem;
}
.single-widgets {
    width: 100%;
    background: var(--section-bg);
    margin-bottom: 30px;
    border-radius: 4px;
    padding: 30px;
    overflow: hidden;
}
.single-widgets form{
    position: relative;
}
.single-widgets form input {
    width: 100%;
    float: left;
    padding: 15px 20px;
    box-sizing: border-box;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 26px;
}
.single-widgets form button {
    position: absolute;
    top: 6px;
    right: 6px;
    height: calc( 100% - 12px );
    border: none;
    font-size: 20px;
    border-radius: 4px;
    background: var(--no-change-color1);
    color: var(--white-color);
    transition: all .3s ease;
}
.single-widgets form button:hover{
    background: var(--primary-color);
}
.single-widgets h2,
.single-widgets h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}
.single-widgets h2:after,
.single-widgets h3:after {
    content: "";
    clear: both;
    position: absolute;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
}
.single-widgets ul li {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0px;
}
.single-widgets ul li a{
    color: var(--body-color);
}
.single-widgets ul li a:hover{
    color: var(--primary-color);
}
.single-widgets a.tag-cloud-link {
    font-size: 15px !important;
    display: inline-block;
    padding: 8px 15px;
    font-weight: 500;
    background: var(--white-bg);
    border-radius: 4px;
    line-height: 22px;
    color: var(--headding-color);
    margin: 4px 3px;
    transition: all .3s ease;
}
.single-widgets a.tag-cloud-link:hover{
    color: var(--white-color);
    background: var(--primary-color);
}
.side-widgets-l-blog .item:last-child {
    margin-bottom: 0px;
}
.side-widgets-l-blog .item{
    display: flex;
}
.side-widgets-l-blog .item .thubnail a {
    width: 70px;
    display: inline-block;
    margin-right: 15px;
}
.side-widgets-l-blog .item .thubnail a img{
    border-radius: 4px;
}
.side-widgets-l-blog .item .content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.side-widgets-l-blog .item .content h4 a {
    color: var(--headding-color);
}
.side-widgets-l-blog .item:hover .content h4 a {
    color: var(--primary-color);
}
.side-widgets-l-blog .item .content span {
    font-size: 15px;
}
.side-widgets-l-blog .item .content span i {
    margin-right: 5px;
}
.blog-pagination .nav-links {
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
}
.blog-pagination .nav-links ul {
    display: flex;
    align-items: center;
}
.blog-pagination .nav-links ul li {
    display: inline-block;
    margin: 0px 3px;
}
.blog-pagination .nav-links ul li span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: 600;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
}
.blog-pagination .nav-links ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: 600;
    background: var(--section-bg);
    color: var(--headding-color);
    border-radius: 4px;
}
.blog-pagination .nav-links ul li a:hover{
    color: var(--white-color);
    background: var(--primary-color);
}
/*
 * No Search Card
*/
.no-search-results-content{
    background: var(--white-bg);
    position: relative;
    border: 1px solid var(--ct-border-color3);
    border-radius: 4px;
    transition: all .3s ease;
    padding: 25px 30px;
}
.no-search-results-content h2.page-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}
.no-search-results-content  p {
    margin-bottom: 20px;
    font-size: 18px;
}
.no-search-from form {
    max-width: 380px;
    position: relative;
}
.no-search-from form  label {
    width: calc( 100% - 95px );
    float: left;
}
.no-search-from form input.search-field {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all .3s ease;
}
.no-search-from form input.search-field:focus{
    border-color: var(--primary-color);
}
.no-search-from form input.search-submit {
    width: 90px;
    overflow: hidden;
    margin-left: 5px;
    padding: 13px 0px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    background: var(--headding-color);
    color: var(--white-color);
    transition: all .3s ease;
}
.no-search-from form input.search-submit:hover{
    background: var(--primary-color);
}
.error-page-404 .content h2 {
    font-size: 150px;
    line-height: 110px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 3px 3px var(--primary-color);
}
.error-page-404 .content h4 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}
.error-page-404 .content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
    line-height: 32px;
    font-weight: 500;
}
/*
 * #-Portfolio Details
*/
.portfolio-details-full .post-navigation {
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0px;
    margin-top: 15px;
}
.portfolio-details-full .post-navigation .text-right .n-prev-post {
    float: right;
}
.portfolio-details-full .post-navigation .n-prev-post a {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--headding-color);
    line-height: 28px;
    transition: all .3s ease;
}
.portfolio-details-full .post-navigation .n-prev-post a:hover {
    color: var(--primary-color);
}
.portfolio-details-full .post-navigation .n-prev-post a i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--section-bg);
    border-radius: 50%;
    font-size: 18px;
    margin-right: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.portfolio-details-full .post-navigation .n-prev-post a:hover i {
    background: var(--primary-color);
    color: var(--white-color);
}
.portfolio-details-full .post-navigation .text-right .n-prev-post a i {
    margin-left: 10px;
}
@media (min-width:992px){
    .portfolio-details-full .portfolio-sidebar{
        padding-left: 20px;
    }
}
.portfolio-details-full .project-info-s {
    background: var(--primary-color);
    padding: 30px;
}
.portfolio-details-full .project-info-s h4 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}
.portfolio-details-full .project-info-s ul {
    margin-bottom: 20px;
}
.portfolio-details-full .project-info-s ul li {
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    color: var(--white-color);
    letter-spacing: 1px;
}
.portfolio-details-full .project-info-s ul li b {
    display: block;
    font-size: 16px;
    letter-spacing: 1px;
}
.portfolio-details-full .project-info-s ul li b a{
    color: var(--white-color);
}
.portfolio-details-full .project-info-s ul li b a:hover{
    text-decoration: underline;
}
.portfolio-details-full .project-info-s .blog-share span {
    font-size: 15px;
    margin-right: 6px;
    color: var(--white-color);
    letter-spacing: 1px;
}
.portfolio-details-full .project-info-s .blog-share span:last-child{
    margin-right: 0px;
}
.portfolio-details-full .project-info-s .blog-share span a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #5651ff;
    border-radius: 50%;
    font-size: 15px;
    color: var(--white-color);
    transition: all .3s ease;
}
.portfolio-details-full .project-info-s .blog-share span a svg {
    width: 15px;
    fill: var(--white-color);
    -webkit-transition: all .3s ease;
}
.portfolio-details-full .project-info-s .blog-share span a:hover svg{
    fill: var(--primary-color);
}
.portfolio-details-full .project-info-s .blog-share span.sh {
    display: none;
}
.portfolio-details-full .project-info-s .blog-share span a:hover{
    color: var(--primary-color);
    background: var(--white-bg);
}
.portfolio-details-full .portfolio-sidebar .po-contact-info {
    background: var(--section-bg);
    padding: 30px;
}
.portfolio-details-full .portfolio-sidebar .po-contact-info h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}
.portfolio-details-full .portfolio-sidebar .po-contact-info .list .item{
    margin-bottom: 20px;
    display: flex;
}
.portfolio-details-full .portfolio-sidebar .po-contact-info .list .item:last-child{
    margin-bottom: 0;
}
.portfolio-details-full .portfolio-sidebar .po-contact-info .list .item .icon i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 14px;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3630ff26;
    border-radius: 5px;
    margin-top: 4px;
}
.portfolio-details-full .portfolio-sidebar .po-contact-info .list .item  .info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}
.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);
}
/*
 * Blog Standard
*/
.blog-standard-card{
    background: var(--white-bg);
    position: relative;
    border: 1px solid var(--ct-border-color3);
/*    border-radius: 4px;*/
    transition: all .3s ease;
}
/*.blog-standard-card:hover {
    box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}*/
.blog-standard-card .content {
    padding: 40px 40px;
    position: relative;
}
.blog-standard-card .content .postbox__meta {
    margin-bottom: 7px;
}
.blog-standard-card .content .postbox__meta ul li {
    font-size: 14px;
    color: var(--body-color);
    margin-right: 30px;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
    text-transform: capitalize;
}
.blog-standard-card .content .postbox__meta ul li:last-child{
    margin-right: 0px;
}
.blog-standard-card .content .postbox__meta ul li i {
    color: var(--headding-color);
    transform: translateY(0px);
    font-size: 16px;
    margin-right: 2px;
}
.blog-standard-card .content .title {
    margin-bottom: 20px;
    margin-top: 10px;
}
.blog-standard-card .content .title h3 {
    font-size: 34px;
    font-weight: 600;
    line-height: 36px;
}
.blog-standard-card .content .title h3 a{
    font-family: var(--headding-font);
    color: var(--headding-color);
}
.blog-standard-card .content .title h3:hover a{
    color: var(--primary-color);
}
.blog-standard-card .content p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}
.blog-standard-card .content .button-read a {
    padding: 14px 32px;
}


[data-bs-theme="dark"] .sticky .menu ul li a{
    color: var(--no-change-color1);
}

[data-bs-theme="dark"] .sticky .menu ul li > ul li a{
    color: var(--white-color);
}
[data-bs-theme="dark"] .sticky .menu ul li:hover > a {
    color: var(--primary-color);
}
[data-bs-theme="dark"] .button-1:hover {
    color: var(--no-change-color1);
}
[data-bs-theme="dark"] .header .button-1:hover{
    color: var(--white-color);
}


[data-bs-theme="blue"] .sticky .menu ul li a{
    color: var(--no-change-color1);
}

[data-bs-theme="blue"] .sticky .menu ul li > ul li a{
    color: var(--white-color);
}
[data-bs-theme="blue"] .sticky .menu ul li:hover > a {
    color: var(--primary-color);
}
[data-bs-theme="blue"] .button-1:hover {
    color: var(--no-change-color1);
}
[data-bs-theme="blue"] .header .button-1:hover{
    color: var(--white-color);
}
[data-bs-theme="blue"] .services-card-item {
    background: linear-gradient(360deg, #03092a00, rgb(41 35 237 / 24%));
}
[data-bs-theme="blue"] .services-card-item:after {
    background: linear-gradient(-190deg, #03092a00, rgb(41 35 237 / 24%));
}
[data-bs-theme="blue"] .services-card-item:hover{
    background: transparent;
}
[data-bs-theme="blue"] .news-ticker .scroll div span {
    color: transparent;
}
[data-bs-theme="blue"] .services-card-item .content a i {
    font-size: 17px;
    transform: rotate(-45deg);
}
.ct-about-us-image.position-relative .ab-im-content {
    right: 0;
    position: absolute;
    bottom: 50px;
    z-index: 9;
}
[data-bs-theme="blue"] .site-footer {
    background-color: var(--body-bg);
}
[data-bs-theme="blue"]  .footer-bottom {
    background: var(--section-bg);
}
.menu ul li.mega-menu > ul {
    width: 1000px;
    max-width: 1000px;
    min-width: 1000px;
    left: -380px;
    right: 0;
}
.menu ul li.mega-menu > ul.sub-menu {
    display: grid;
}
.mega-menu-columns-2 > .sub-menu { grid-template-columns: repeat(2, 1fr); }
.mega-menu-columns-3 > .sub-menu { grid-template-columns: repeat(3, 1fr); }
.mega-menu-columns-4 > .sub-menu { grid-template-columns: repeat(4, 1fr); }
.mega-menu-columns-5 > .sub-menu { grid-template-columns: repeat(5, 1fr); }
.mega-menu-columns-6 > .sub-menu { grid-template-columns: repeat(6, 1fr); }
.menu ul li.mega-menu > ul.sub-menu li a:after {
    display: none;
}
.menu ul li.mega-menu > ul.sub-menu li ul.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    left: 0;
    position: relative;
    top: 0;
    box-shadow: none;
/*    padding: 0;*/
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.header-color .menu li.mega-menu > ul.sub-menu li:hover > a{
    color: var(--headding-color);
}
.header-color .menu li.mega-menu > ul.sub-menu li a:hover{
    color: var(--primary-color);
}
.menu ul li.mega-menu:first-child > ul {
    left: -280px;
}