/*** General CSS ***/
body {
    line-height: 1.9em;
    color: #333;
  	background: #fff !important;
}
a:hover, a:focus, a:active {
    color: #ffdb60;
}

/*** Header Area ***/
/* Header Top */
#sp-top-bar {
    position: relative;
    z-index: 9999;
    color: #fff;
    border-bottom: 1px dotted #fff;
}
#sp-top-bar a {
  	color: #fff;
}

/* Header Menu */
#sp-header {
    top: 0px;
    padding: 0px;
    height: inherit;
    background: #fff;
  	box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
}
#sp-header.header-sticky {
    position: fixed;
    top: 0;
  	background: #fff;
  	box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
}
body:not(.home) #sp-header {
    background: #fff;
    position: static;
}
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: uppercase;
    position: relative;
    color: #000;
}
.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: #000;
}
.offcanvas-menu > .align-items-center {
    background: #fff;
}
.offcanvas-active .burger-icon>span, #modal-menu-toggler.active .burger-icon>span {
    background-color: #000;
}

/*** Block Styles ***/
/* Button */
.btn {
    color: #fff!important;
    text-transform: uppercase;
    font-size: 14px!important;
    font-weight: 600;
    display: inline-block;
    padding: 15px 30px !important;
    border-radius: 3px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.btn:hover {
    background: #212529;
}
.btn-right {
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    color: #222;
}
.btn-right strong {
    display: none;
}
.btn-right .fa {
    margin-left: 5px;
}
body a:hover, body a:focus, body a:active {
  	color: #222;
}
.btn-primary:hover {
  	color: #fff;
    background: #222!important;
}

/* Title */
.title .sppb-section-title {
    margin-bottom: 50px;
}
.title .sppb-title-subheading {
    font-style: italic;
}
 
/* Content Top */
#sp-content-top .container {
    max-width: 100%;
    padding: 0;
}
section#sp-content-top .sppb-container-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}
body.view-login #sp-content-top {
    display: none;
}
body.view-login section#sp-main-body {
   	padding-top: 100px !important;
}

/* Slider */
body.home section#sp-main-body {
    padding-top: 30px;
}
#sp-content-top #slider .sppb-container-inner {
	max-width: 100%;
    padding: 0;
}
.slider-content {
    max-width: 530px;
    margin-top: 20%;
}
.slider-content h3 {
    text-transform: uppercase;
    font-weight: 700;
}
.slider-content a {
    margin-top: 20px;
}
.slider .sppb-addon-single-image-container {
  	display: inherit;
}

/* Intro */
div#intro {
    z-index: 2 !important;
    position: relative;
}
.intro .sppb-row > div:nth-child(2):before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #222;
    height: 100%;
    width: 100%;
    opacity: 0.1;
}
.intro-item {
  	padding: 40px 30px;
}
.intro .sppb-row > div {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.intro .sppb-row > div:hover {
    -webkit-box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}

/* About */
.about-item {
    padding: 40px;
    background: #f9f9f9;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.about-item:hover {
    background: #fff;
    -webkit-box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}
.about-item .btn-right {
    margin-top: 20px;
}

/* Category */
.category-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.category-item:hover {
    background: #fff;
    border: 1px solid transparent;
    -webkit-box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}
.category-item h5 {
  	margin-top: 0!important;
}
.category-item a {
  	display: inherit;
    padding: 25px 10px;
}
.category-item .sppb-icon a {
  	padding-bottom: 0;
}

/* Subscribe */
.subscribe {
    position: relative;
    z-index: 1;
}
.subscribe:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #01020c99;
    z-index: -1;
}

/* Team */
.team-item .sppb-img-container,
.team-item .sppb-img-container img {
	width: 100%;
}
.team-item h6 {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
}
.team-item ul {
	padding: 0;
	position: absolute;
	bottom: 94px;
	width: 100%;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.team-item:hover ul {
	bottom: 113px;
	opacity: 1;
	visibility: inherit;
}
.team-item ul li {
	list-style: none;
    width: 33.33%;
    text-align: center;
    float: left;
    position: relative;
    z-index: 1;
}
.team-item ul li:before {
	content: "";
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
}
.team-item ul li:nth-child(2):before {
	background: rgba(0,0,0,.1);
}
.team-item ul li:nth-child(3):before {
	background: rgba(0,0,0,.2);
}
.team-item ul li a {
	padding: 20px 0;
    display: inline-block;
    width: 100%;
}
.team-item ul li em {
	font-size: 24px;
	color: #fff;
	-webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.team-item ul li a:hover em {
	color: #000;
}
.team-item ul li strong {
	display: none;
}

/* Testimonial */
.testimonial-wrap {
    margin: 20px 0;
}
.testimonial-wrap .clearfix {
    width: 30%;
    float: left;
}
.testimonial-wrap .clearfix:last-child {
    width: 70%;
}
.testimonial-item {
    position: relative;
    overflow: hidden;
}
.testimonial-item .sppb-img-container {
    position: relative;
}
.testimonial-item .sppb-img-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,153,2,0.7);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.testimonial-wrap:hover .sppb-img-container:before {
    opacity: 1;
    visibility: visible;
}
.testimonial-item img {
    width: 100%;
}
.testimonial-item .sppb-addon-text {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    bottom: 10%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.testimonial-wrap:hover .sppb-addon-text {
    opacity: 1;
    visibility: inherit;
}
.testimonial-item h4 {
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
}
.testimonial-item h5 {
    font-size: 18px;
    text-transform: capitalize;
}
.testimonial-content {
    position: relative;
    padding: 30px 30px 15px;
    margin-top: 25px;
    background: #fff;
    -webkit-box-shadow: 0 7px 20px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 7px 20px rgba(0,0,0,0.1);
    box-shadow: 0 7px 20px rgba(0,0,0,0.1);
    margin-left: -10px;
}
.testimonial-content em {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 20px;
}
.testimonial-content em strong {
    display: none;
}

/* Download */
.download .sppb-col-md-6:first-child {
    padding-left: calc(50% - 550px)!important;
}
.download-content a {
    font-family: "Open Sans",sans-serif;
    font-size: 24px;
    font-weight: 600;
    padding: 16px 24px 8px 74px;
    max-width: 225px;
    margin-right: 20px;
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #222;
    margin: 20px 0;
    position: relative;
}
.download-content a:hover,
.download-content a:hover:before {
    color: #fff;
}
.download-content a em {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 18px;
    text-align: left;
    font-weight: 600;
    display: inherit;
    font-style: inherit;
}
.download-content a:before {
    font-size: 44px;
    padding-right: 20px;
    position: absolute;
    left: 25px;
    font-family: FontAwesome;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.download-content a:nth-child(3) {
    margin-left: 20px;   
}

/* Contact */
.contact-us ul {
  	padding-left: 0;
}
.contact-us ul li {
  	list-style: none;
  	margin: 20px 0;
  	font-size: 18px;
  	color: #fff;
}
.contact-us ul li em {
  	margin-right: 10px;
  	color: #555;
}
.contact-us ul li strong {
  	display: none;
}

/* Blog */
.blog p {
	color: #fff;
}
.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%);
}

/* Product */
span.hikashop_product_name {
    padding: 10px 0;
}
a.hikabtn.hikacart {
    padding: 10px 20px;
    border-radius: 0;
    font-size: 15px;
    text-transform: uppercase;
    border: none;
}
a.hikabtn.hikacart:hover {
  	background: #222 !important;
}
.hikashop_subcontainer.thumbnail {
    border: 1px solid #eee;
    border-radius: 0 !important;
}

/* Contact Info */
.contact-info h2, .contact-info h3 {
    font-size: 25px;
}
button.btn.btn-primary.validate {
    color: #fff !important;
    padding: 13px 20px;
}

/* Bottom */
#sp-bottom .sp-module .sp-module-title {
    font-size: 29px;
    font-weight: 600;
}
#sp-bottom .sp-module ul>li>a {
    font-weight: 600;
}

/* Footer Copyright */
#sp-footer {
    text-align: center;
}
#sp-footer {
    display: inline-block;
    width: 100%;
}
#sp-footer .container-inner {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

/*** Responsive Layout ***/
/* Tablet Landscape Layout */
@media (min-width: 1400px) {
    .sppb-row-container {
      	max-width: 1320px;
    }
}
@media (min-width: 991px) and (max-width: 1280px) {
    .sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
        font-size: 12px !important;
    }
}

/* 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;
	}
  	#sp-header {
    	top: 0px;
	}
}

/* Mobile Small Resolution */
@media (max-width: 480px) {
  	.category .sppb-column-addons .clearfix:nth-child(n+2) {
    	width: 100%;
    	margin-right: 0;
	}
}

/* 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, .sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-info:hover, a.hikabtn.hikacart,
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay,
#providing .box-content .title h4::before, .title:before, .title .line, .title:after,  .service .sppb-row, .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.active > a, #sp-top-bar, a.sppb-btn, a.sppb-btn-custom,
.slider-btn a, .intro .sppb-row > div {
 	background-color: var(--background-color) !important;
}
.article-list .article .readmore a:hover, .article-list .article .readmore a:active, .article-list .article .article-header h2 a:hover,
#sp-bottom a,  .title-work h1 span, .sppb-btn-custom:hover, .amazing-item .sppb-icon .sppb-icon-container i:after,
.slider-title .color,  .counter-item i {
  	color: var(--text-color) !important; 
}
.slider-btn a:hover {
  	border-color: var(--text-color) !important;
}
