/*** General CSS ***/
body {
    line-height: 1.9em;
    color: #333;
}
a:hover, a:focus, a:active {
    color: #000;
}

/*** Header Area ***/
/* Header Top */
#sp-top-bar {
    background: transparent;
    position: relative;
    z-index: 9999;
    color: #fff;
}
#sp-top-bar a {
  	color: #fff;
}
body:not(.home) #sp-top-bar {
  	background: #00002c;
}

/* Header Menu */
#sp-header {
    top: 0;
    height: inherit;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
    padding: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background: transparent;
    width: 100%;
    z-index: 9999;
    position: relative;
}
#sp-header.header-sticky {
    position: fixed;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.10);
    top: 0;
    background: #fff;
}
body:not(.home) #sp-header {
    background: #fff;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
}
.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: #000;
}
.sp-megamenu-parent>li.active>a {
    font-weight: 600;
}
.sp-megamenu-parent > li {
    position: relative;
}

/* 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, .btn.btn-bg:hover {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    fill: #ffffff;
    color: #ffffff;
    background-color: #ff9c00;
    border-radius: 50px 50px 50px 50px;
    padding: 20px 36px 20px 36px;
}
.btn, .btn.btn-bg {
    color: #fff !important;
}
.btn:hover {
    background-color: #524438 !important;
}

/* Background */
.bg:before {
    content: '';
    position: absolute;
    left: 0;
    z-index: 1;
    top: 0;
    height: 100%;
    width: 100%;
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.03;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    background-attachment: fixed;
}

/* Slider */
#slider {
    margin-top: -80px !important;
}

/* About */
.about:before {
    background-image: url('../images/back1.png');
}
.about h2 {
    font-size: 3.5em;
    line-height: 1em;
    font-weight: 800;
    color: #524438;
    margin-bottom: 30px;
}

/* Choose */
.choose-colum .clearfix:nth-child(2),
.choose-colum .clearfix:nth-child(3) {
    float: left;
    width: 50%;
}
.btn01-choose, .btn02-choose {
    font-size: 14px;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 50px 50px 50px 50px;
    padding: 16px 36px 16px 30px;
}
.btn01-choose, .btn02-choose:hover {
    color: #ffffff !important;
}
.btn02-choose, .btn01-choose:hover {
    background-color: #524438 !important;
}

/* Services */
.services-item {
    box-shadow: 0px 14px 35px 0px rgba(0,0,0,0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 50px 30px 50px 30px;
}
.ser-button-link {
    position: relative;
    font-weight: bold;
    fill: #524438;
    color: #524438;
    background-color: rgba(255,156,0,0);
    border-radius: 50px 50px 50px 50px;
    padding: 0px 18px 0px 0px;
}
.ser-button-link:before {
    position: absolute;
    right: 0;
    top: 0;
    content: "\f0da";
    font-family: 'Font Awesome 5 Free';
}
.services-item {
    position: relative;
    z-index: 1;
}
.services-item:hover {
    cursor: pointer;
}
.services-item:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    display: inline-block;
    background: #ff9c00;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.services-item:hover:before {
    width: 100%;
}
.services-item:hover p {
    color: #fff !important;
}
.services-item .ser-button-link:hover , .services-item .ser-button-link:hover:before {
    color: #fff;
}
@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.services-item h3 {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.services-item:hover h3 {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    color: #fff !important;
}

/* Review */
.review-item .shrewd_solution_icon {
    margin: 0;
    text-align: right;
    padding: 0;
}
.review-item .shrewd_solution_icon li {
    position: relative;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: #a6a6b3;
}
.review-item .shrewd_solution_icon li a, #sp-position1 .shrewd_solution_icon li a:hover {
    font-size: 15px;
    height: 43px;
    width: 43px;
    position: relative;
    line-height: 45px;
    color: #ffffff !important;
    text-align: center;
    border-radius: 50%;
    margin: 5px;
    -webkit-transition: .5s;
    transition: .5s;
    box-shadow: 0 0 15px rgba(228, 200, 200, 0.5);
    display: inline-block;
}
.review-item .shrewd_solution_icon li strong {
    display: none;
}

/* Testimonials */
.testimonials-item {
    background-image: url('../images/quotes-free-img.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    border-radius: 21px;
    box-shadow: 0px 10px 40px -10px rgba(84,89,95,0.2);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 40px 30px 40px 30px;
    margin-bottom: 30px;
}
.testimonials-item:after {
    content: '';
    position: absolute;
    z-index: -2;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: inline-block;
    border-radius: 21px;
    background-color: #ffffffc7;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.testimonials-item img {
    border-radius: 50%!important;
    padding: .25rem;
    width: 80px;
    background-color: #fff;
    border: 1px solid #dee2e6!important;
}
.testimonials-item,
.testimonials-item  img,
.testimonials-item  h3{
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.testimonials-item:hover {
    cursor: pointer;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.testimonials-item:hover img {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
.testimonials-item {
    position: relative;
    z-index: 1;
}
.testimonials-item:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    display: inline-block;
    border-radius: 21px;
    background: #ff9c00;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.testimonials-item:hover:before {
    width: 100%;
}
.testimonials-item:hover h3 {
    color: #fff !important;
}

/* Said */
#said .sppb-col-md-2 {
    position: relative;
    z-index: 2;
}
.said-img img {
    max-width: 75%;
    margin-right: -60px;
    border-style: solid;
    padding: 2px;
    border-width: 2px 2px 2px 2px;
    border-color: #dee2e6;
}

/* Price */
.price-item ul.price-item li {
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #000000;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 0;
}
.price-item ul.price-item {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: left;
}
.price-item ul.price-item li:last-child {
    border-width: 1px 0px 1px 0px;
}
.price-item .price-button-link {
    font-size: 14px;
    font-weight: bold;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(to right top, #9E8E80, #9E8E80, #99887B, #756558, #524438);
    border-radius: 50px 50px 50px 50px;
    padding: 15px 40px 15px 40px;
    display: inline-block;
    margin-top: 50px;
}
.price-center.price-item .price-button-link:hover {
    background: linear-gradient(to right top, #9E8E80, #9E8E80, #99887B, #756558, #524438) !important;
}

/* Images */
.images-item:hover {
    cursor: pointer;
}
.images-item .sppb-addon-content, 
.images-item .sppb-addon-content .sppb-addon-single-image-container {
    position: relative;
}
.images-item .sppb-addon-content:before {
    content: '';
    position: absolute;
    z-index: 1;
    height: 0;
    width: 100%;
    display: inline-block;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: all .4s ease-out 0s;
    -webkit-transition: all .4s ease-out 0s;
}
.images-item .sppb-addon-content .sppb-addon-single-image-container:before {
    content: '';
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 0;
    display: inline-block;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: all .4s ease-out 0s;
    -webkit-transition: all .4s ease-out 0s;
}
.images-item .sppb-addon-content:after {
    content: '';
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 0;
    display: inline-block;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: all .4s ease-out 0s;
    -webkit-transition: all .4s ease-out 0s;
}
.images-item .sppb-addon-content .sppb-addon-single-image-container:after {
    content: '';
    position: absolute;
    z-index: 1;
    height: 0;
    width: 100%;
    display: inline-block;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: all .4s ease-out 0s;
    -webkit-transition: all .4s ease-out 0s;
}
.images-item:hover .sppb-addon-content:before,
.images-item:hover .sppb-addon-content .sppb-addon-single-image-container:after {
    height: 50%;
}
.images-item:hover .sppb-addon-content:after,
.images-item:hover .sppb-addon-content .sppb-addon-single-image-container:before {
    width: 50%;
}

/* Grid */
.grid-item img {
    border: 10px solid #eee;
    transition: all .3s ease-out 0s;
    -webkit-transition: all .3s ease-out 0s;
}
.grid-item:hover img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}

/* Info */
.info .title h3 {
    font-size: 42px;
}

/* 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%);
}

/* Contact Info */
.contact-info h2, .contact-info h3 {
    font-size: 25px;
}
button.btn.btn-primary.validate {
    color: #fff !important;
    padding: 13px 20px;
}

/* Bottom */

/* Footer Copyright */
#sp-footer {
    text-align: center;
    display: inline-block;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
#sp-footer .container-inner {
    border-top: none;
}
#sp-footer1 {
  	padding-top: 5px;
}

/*** Responsive Layout ***/
/* Tablet Landscape Layout */
@media (min-width: 1400px) {
    .sppb-row-container {
      	max-width: 1320px;
    }
}

/* 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;
	}
  	.jm-category-module.default .jmm-rows.rows-3 > div > .jmm-item {
    	width: 98%;
    	margin: 20px 1%;
	}
}

/* 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-filter>ul>li.active>a, a.hikabtn.hikacart,
.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,
.btn01-choose, .review-item .shrewd_solution_icon li a, .price-center.price-item .price-button-link {
 	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-footer a, #sp-bottom a, .title h3, .price-item .price-button-link:hover {
  	color: var(--text-color) !important; 
}
.right-btn {
  	border-color: var(--text-color) !important;
}
