/*** General CSS ***/
body {
    line-height: 1.9em;
    color: #333;
}
a:hover, a:focus, a:active {
    color: #4943ac;
}

.sp-page-title{margin-top:100px;}

#sp-main-body {padding: 10px 0;}

 .sp-simpleportfolio-meta { display:none !important;}

/*** Header Area ***/
/* Header Top */
#sp-top-bar {
    position: relative;
    z-index: 9999;
  	background: #fff;
}


/* Header Menu */
#sp-header {
    height: inherit;
    background:transparent !important;
	 position: fixed !important;
	background: rgba(0, 0, 0, .25);
  background-blend-mode: darken;
z-index: 8;
padding-top: 10px;
  padding-bottom: 10px;

}
.logo-image {
vertical-align: middle;
  display: inline;
  padding-top: 5px;
  padding-bottom: 5px;	
	}



#sp-header.header-sticky {
    position: fixed;
    top: 0;
   padding-top: 10px;
  padding-bottom: 10px;
  	box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
	background-color:#000 !important;
}


body:not(.home) #sp-header {
    background: #000 !important;
    position: static;
	z-index: 1;
}

body.ltr.offcanvs-position-right.offcanvas-active .offcanvas-menu {
  z-index: 9999 !important;
}



 #sp-header {
     position: static;
	  background: rgba(0,0,0,0.6) !important;
     z-index: 8;
	
}



body:not(.home) #sp-header.header-sticky {
    position: fixed;    
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a {
    color: #252525;
  	font-size: 14px !important;
    font-weight: 400 !important;
    padding: 10px 0;
}
.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
    text-transform: capitalize;
    position: relative;
    color: #fff;
}
.sp-megamenu-parent>li.active>a {
    font-weight: 600;
}

/* Canvas Menu */
.offcanvas-menu .offcanvas-inner .menu-child > li a {
    padding: 12px 10px !important;
    border-bottom: 1px solid rgba(197, 153, 153, 0.21);
    display: inherit;
}
.offcanvas-menu .offcanvas-inner ul.menu>li>a, .offcanvas-menu .offcanvas-inner ul.menu>li>span {
    font-size: 15px;
    font-weight: 500;
}
.burger-icon>span {
    background-color: #fff;
}
.offcanvas-menu > .align-items-center {
    background: #FFF;
}
.offcanvas-active .burger-icon>span, #modal-menu-toggler.active .burger-icon>span {
    background-color: #fff;
}

/*** Block Styles ***/
/* Button */
.btn,
.tp-caption a.btn-slider {
     display: inline-block;
     padding: 12px 40px;
     border-radius: 30px;
     color: #fff!important;
     border: 2px solid;
     text-transform: capitalize;
     -webkit-transition: all 0.4s ease-in-out;
     transition: all 0.4s ease-in-out;
}
.btn.white {
     background: #fff!important;
     border-color: #fff!important;
     color: #252525!important;
}
.slider-btn a:hover {
     background: none!important;
}
.btn.white:hover {
    background: none!important;
    border-color: #252525!important;
}
.btn.black {
    background: #191919 !important;
    border-color: #191919 !important;
}
.btn.black:hover {
    background: none !important;
}

/* Title */
.sppb-section-title {
    margin-bottom: 20px!important;
}
.title .sppb-title-heading {
    position: relative;
    display: inline;
}
.title .sppb-title-heading:after {
    position: absolute;
    content: '';
    left: 100%;
    margin-left: 10px;
    width: 40px;
    height: 2px;
    bottom: 8px;
}


/* Force 4 items per row in Service section */
.service .sppb-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* optional: center items */
}

.service .sppb-row-column {
    flex: 0 0 25%;   /* 4 items = 25% each */
    max-width: 25%;
    box-sizing: border-box;
    padding: 15px;   /* spacing between items */
}

/* Tablet: 2 items per row */
@media (max-width: 991px) {
    .service .sppb-row-column {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile: 1 item per row */
@media (max-width: 575px) {
    .service .sppb-row-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
}



/* Service Section */
.service .sppb-row-container {
    position: relative;
}
.service .sppb-row-container:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: -80px;
    left: 0;
    right: 0;
    max-width: 1110px;
    margin: 0 auto;
    /* border-top: 1px solid #d7d7d7; */
}
.service .clearfix {
    position: relative;
}

/* Base service item */
.service-item {
    position: relative;
    overflow: hidden; /* contain hover overlay */
    background: #fff;
    padding: 25px 20px 45px 20px;
    transition: transform 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px);
}

/* Hover overlay */
.service-item-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    padding: 45px 20px;
    background: #242424;
    color: #aaaaaa;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.service-item:hover .service-item-hover {
    opacity: 1;
    visibility: visible;
}

/* Typography inside hover */
.service-item-hover h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}
.service-item-hover a {
    font-size: 14px;
    font-weight: 500;
    color: #aaaaaa;
    transition: color 0.3s ease;
}
.service-item-hover a:hover {
    color: #fff;
}

/* Counter */
.counter {
    border-bottom: 6px solid #ec676c;
}
.counter .sppb-row > div {
    border-right: 1px solid #b1a4a4;
}
.counter .sppb-row > div:last-child {
    border-right: 0;
}
.counter-item h2 {
    font-size: 40px;
    color: #fff;
    margin: 0;
}

/* About Top */
.about-top .sppb-row-container {
    position: relative;
    top: -70px;
}
.about-title {
    padding: 40px 40px;
}
.about-title h2 {
    font-size: 37px;
    font-weight: 400;
    margin-bottom: 0;
}
.about-title h2 em {
    font-family: 'Playfair Display', serif;
    position: relative;
}
.about-title h2 em:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #000000;
}
.about-top .lt-btn {
    margin-top: 40px;
}

/* About */
.about ul {
    padding-left: 0;
}
.about ul li {
 position: relative;
  color: #242424;
  font-size: 20px;
  font-style: normal;
  margin-bottom: 1px;
  list-style: none;
  font-weight:600;
}
.about ul li em {
    padding-right: 10px;
}
.about ul li strong {
  	display: none;
}

/* Get app */
.get-app:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    display: block;
    height: 100%;
    opacity: 0.95;
}
.get-app-content .sppb-addon-title,
.get-app-content .sppb-addon-content {
    width: 50%;
    float: left;
}
.get-app-content .sppb-addon-title {
    text-align: right;
    padding: 40px;
    position: relative;
}
.get-app-content .sppb-addon-title:before {
    position: absolute;
    content: "";
    top: 40px;
    right: 0;
    width: 2px;
    height: 40px;
    background: #000;
}
.get-app-content .sppb-addon-content {
    text-align: left;
    padding: 40px;
}

/* Team */
.team-item ul {
    padding-left: 0;
}
.team-item ul li {
    list-style: none;
    display: inline-block;
    margin: 5px;
    text-align: center;
} 
.team-item ul li:first-child {
    margin-left: 0;
}
.team-item ul li a {
    width: 40px;
    height: 40px;
    line-height: 35px;
    border-radius: 50%;
    border: 2px solid;
    color: #394F6F;
}
.team-item ul li strong {
    display: none;
}

/* Testimonial */
.testimonial {
	position: relative;
	z-index: 1;
}
.testimonial:before {
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60%;
    position: absolute;
    z-index: -1;
}

/* Portfolio */
.sp-simpleportfolio .sp-simpleportfolio-filter {
    text-align: left;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a {
    background: none;
    color: #242424;
    font-size: 16px;
    position: relative;
    padding: 11px;
    font-weight: 500;
    padding-left: 20px
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.active > a {
	  background: none;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.active > a:after {
    visibility: inherit;
    opacity: 1;
}

/* Client */
.client h3 {
    position: relative;
    padding-bottom: 20px;
}
.client h3:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 40px;
    height: 2px;
    right: 0;
    margin: 0 auto;
}
.client-item.left:before {
    position: absolute;
    content: '';
    right: -10px;
    top: 20px;
    height: 140px;
    bottom: 30px;
    border-right: 1px solid rgba(0,0,0,0.10);
}
.client-item img {
    border-radius: 50%;
}
.client-item .pull-sppb-text-left {
    float: left;
    display: inline-block;
}
.client-item .sppb-media-body {
    padding-left: 30px;
}
.client-item h5 {
    color: #242424;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}
.client-item h6 {
    color: #797979;
    font-size: 14px;
    font-weight: 400;
    margin-left: 10px;
}

/* Blog */
.jmm-item .jmm-image.mod-article-image {
  	overflow: hidden;
}
.jmm-image.mod-article-image img {
  	transform: scale(1);
  	-webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.jmm-item:hover .jmm-image.mod-article-image img {
  	transform: scale(1.12);
  	filter: grayscale(100%);
}
.jmm-text {
    padding: 21px 20px 32px 20px;
    background: #f5f5f5;
}
.jm-category-module.default .mod-article-image {
    margin-bottom: 0px;
}

/* Top bottom */
.top-bottom {
    padding-top: 50px;
}
.top-bottom .sp-module-content {
    width: 100%;
    position: relative;
    padding: 22px 25px 18px;
    border: 1px solid rgba(255,255,255,0.10);
    background-color: rgba(0,0,0,0.30);
}
.top-bottom .sp-module-content ul {
    display: block;
    padding: 0px 0 30px;
}
.top-bottom .sp-module-content ul li {
    width: 33.33%;
    float: left;
    padding-left: 50px;
    position: relative;
    color: #cccccc;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
  	list-style: none;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.top-bottom .sp-module-content ul li em {
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 35px;
}
.top-bottom .sp-module-content ul li em strong {
  	display: none;
}
.top-bottom .sp-module-content ul li:after {
    position: absolute;
    content: '';
    right: 40px;
    top: 0px;
    width: 1px;
    height: 100%;
    background-color: rgba(255,255,255,0.10);
}
.top-bottom .sp-module-content ul li:last-child:after {
    display: none;
}

/* Bottom */
#sp-bottom .sp-module .sp-module-title {
    font-weight: 700;
    font-size: 25px;
}
#sp-bottom {
    font-size: 16px;
    padding: 60px 0 30px;
}

/* Footer Copyright */
#sp-footer {
    text-align: center;
}
#sp-footer {
    display: inline-block;
    width: 100%;
}
#sp-footer .container-inner {
    border-top: none;
}

/*** Responsive Layout ***/
/* Tablet Landscape Layout */
@media (min-width: 1400px) {
    .sppb-row-container {
      	max-width: 1320px;
    }
}
/* Screen min 908px */
@media (min-width: 980px) {
    .sp-simpleportfolio .sp-simpleportfolio-filter {
        position: absolute;
        left: 0;
    }
	
	/*
.directors 	.sppb-img-responsive { width:500px;}*/
	
    .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li {
        display: initial;
        float: none;
        text-align: left;
        margin: 0;
    }
    .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a {
        background: none;
        color: #242424;
        font-size: 16px;
        position: relative;
        padding: 11px;
        font-weight: 500;
        padding-left: 20px
    }
    .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 22px;
        width: 10px;
        height: 1px;
        background-color: #303030;
    }
}
/* Mobile Standard Layout */
@media (max-width: 768px) {
	#sp-header, #sp-header .logo {
        height: 70px;
    }
  	#sp-footer p {
  		text-align: center;
	}
  	body #sp-header {
      	padding: 0;
        background: #000;
	}
  	.about-top .sppb-row-container {
    	top: 0px;
	}
  	.service .sppb-col-md-3 {
    	margin-bottom: 30px;
	}
  	.get-app-content .sppb-addon-title, .get-app-content .sppb-addon-content {
        width: 100%;
        text-align: center !important;
        padding: 10px !important;
	}
  	.top-bottom .sp-module-content {
    	display: inline-block;
	}
  	.top-bottom .sp-module-content ul li {
        width: 100%;
        margin-bottom: 50px;
  	}
  	.top-bottom .sp-module-content ul li:last-child {
     	margin-bottom: 0px;
  	}
  	.top-bottom .sp-module-content ul li:after {
    	content: none;
  	}
}

/* Mobile Small Resolution */
@media (max-width: 480px) {
  	.event-tag .sppb-tab-content ul li {
    	width: 100%;
	}
}

/* General color defination
Color value depend on preset color that picking on template settings > Presets
*/

:root {
  --background-color: currentColor;
  --background: currentColor;
  --text-color: currentColor;
}
.page-item.active .page-link, .btn, .slider-btn a,
.slider-item .sppb-btn-success, .sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-info:hover,
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay, 
.about-top .sppb-row-container, .get-app:before, .client h3:after, .title .sppb-title-heading:after {
 	/*background-color: var(--background-color) !important;*/
	background-color: #ffc000 !important;
}
.sp-simpleportfolio .sp-simpleportfolio-filter>ul>li.active>a,
.article-list .article .readmore a:hover, .article-list .article .readmore a:active, .article-list .article .article-header h2 a:hover,
.service-item .sppb-icon i, #sp-bottom a, .about ul li em {
  	color: var(--text-color) !important; 
}
.slider-btn a {
  	border-color: var(--text-color) !important;
}
.service-column .clearfix {
    border-top-color: var(--text-color) !important;
}