/*** General CSS ***/
body {
    line-height: 1.9em;
}

/*** Header Area ***/
/* Header Top */
#sp-header-topbar {
    position: relative;
    z-index: 9999;
  	background: #e8f4f4;
}
#sp-header-topbar .container-inner {
    border-bottom: none;
}

/* 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;
    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;
}
body:not(.home) #sp-header {
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a {
  	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;
  	padding: 0 40px;
}
.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 {
  	color: #fff !important;
	font-size: 18px;
    font-weight: 400;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 5px 5px 5px 5px;
    padding: 10px 20px 10px 20px;
}
.btn:hover {
    background: rgb(3 113 124 / 88%) !important;
}
.btn.white {
    color: #1E3D64 !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid #1E3D64 !important;
}
.btn.white:hover, .btn:hover {
    color: #fff !important;
}

/* Slider */
.slider-img img {
    margin-bottom: -50px;
    border-radius: 0px 0px 60px 0px;
}
.slider-colum {
    position: relative;
}
.spacer-img {
    position: absolute;
    top: 18%;
    left: -60px;
    width: 120px;
}
.spacer-images {
    width: 120px;
}
.spacer-images.right {
    float: right;
}

/* Button */
.colum-button .clearfix:first-child {
  	width: 100%;
}
.colum-button .clearfix {
  	float: left;
    margin-right: 30px !important;
}

/* Title */
.title-img img {
    max-width: 60px;
}

/* Services */
.services-item {
    padding: 20px;
    background: #fff;
    border-bottom: 2px solid #1E3D64;
}
.services-item strong {
  	display: none;
}
.services-item em {
  	padding-left: 10px;
}
.services-item img {
  	border-radius: 30px 0px 0px 0px;
}
@-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: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;
}

/* Images */
.images-style img {
  	-webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}
.images-style:hover img {
  	cursor: pointer;
  	filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
  	transform: translateY(-5px);
}

/* Divider */
.divider {
    margin: 0 auto;
}

/* Clients */
.clients-item .sppb-img-container {
  	position: relative;
    z-index: 1;
    padding: 0px 0px 20px 20px;
}
.clients-item .sppb-img-container:before {
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    left: 0px;
    width: 85%;
    background: #D0E0E0;
    z-index: -1;
}
.clients-colum .clearfix:first-child {
  	position: relative;
    z-index: 3;
    width: 50px;
}

/* Luxury */
.luxury-colum .list {
  	margin: 0;
  	padding: 0;
  	list-style: none;
}
.luxury-colum .list strong {
  	display: none;
}
.luxury-colum .list em {
    padding-right: 10px;
}
.luxury-item {
    border-bottom: 1px solid #E8F4F4;
    padding-bottom: 40px;
}
.luxury-img img {
    margin-top: -60px;
    border-radius: 60px 0px 0px 0px;
}
.luxury.services .luxury-colum .sppb-column-addons {
    margin-left: -50px;
    background: #fff;
    padding: 30px;
}
ul.star-rating {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.star-rating li strong {
    display: none;
}
ul.star-rating li {
    display: inline-block;
}
ul.star-rating li em {
    display: inline-block;
    font-size: 11px;
    color: #f0ad4e;
}

/* Feature */
.feature .sppb-col-md-12 {
    position: relative;
    z-index: 9;
}
.feature-colum {
    border-bottom: 2px solid #1E3D64;
}
.feature-img img, .feature-colum .clearfix {
    border-radius: 0px 90px 0px 0px;
}
.feature-colum.contact img {
    max-width: 50px;
    margin: 0 auto;
}

/*** Step ***/
.sppb-panel-modern,
.sppb-panel-modern>.sppb-panel-heading {
    background: none;
    border: 0;
}
.sppb-panel-modern .sppb-panel-body {
    border: 0;
}
.sppb-panel-collapse,
.sppb-panel-heading.active {
    background: #fff;
}
.sppb-panel-title {
    font-size: 18px;
    color: #1E3D64;
}
.sppb-panel-heading {
    padding: 0 !important;
}

/* Help */
.help .sppb-row {
    background: #E8F4F4;
}
.colum-button.help .clearfix:first-child {
    width: 100%;
}
.colum-button.help .clearfix {
    width: 50%;
    padding: 30px;
    margin-right: 0 !important;
}

/* Info */
.contact-bt {
    border-bottom: 1px solid #D0E0E0;
    padding-bottom: 30px;
}

/* Bg */
.bg-item img {
    margin-right: -120px;   
    border-radius: 0px 60px 0px 0px;
}

/* Team */ 
.team-item .sppb-media-content {
    padding: 30px 30px;
}
.team-item img, .et-team .clearfix {
    border-radius: 0px 60px 0px 0px;
}
.team-title, .team-time {
    width: 50%;
    float: left;
}
.team-bt {
    width: 100%;
    display: inline-block;
    padding-top: 20px;
    border-top: 1px solid #D0E0E0;
}
.team-title {
    text-transform: uppercase;
}
.team-time {
    color: #E87F7E;
    text-align: right;
}
.team-item .sppb-img-container, .team-item img {
    width: 100%;
}

/* Skill */
.skill {
    position: relative;
}
.skill:before {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(0,0,0,0.33) 0%, rgba(246,131,56,0.67) 100%);
    z-index: -1;
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.bar .sppb-row-container {
    margin-top: -250px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.18);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 90px 50px 20px;
}
.skill-left #skill li p {
    color: #000 !important;
}
#skill { 
    list-style: none;
    position: relative;
    padding-left: 0;
    margin-top: 70px;
}
#skill li { 
    margin-bottom: 40px; 
    background: #D0E0E0;
    height: 20px; 
    border-radius: 0px;    
}
#skill li h3, #skill li p { 
    position: relative;
    top: -28px;
    color: #999999;
    font-size: 19px;
    font-weight: 500;
    float: left;
    width: 100%;
}
#skill li p { 
    text-align: right;
    font-size: 16px;
}
.bar { 
    height: 20px;  
    position:absolute;
    border-radius: 0px; 
    background: #E87F7E;  
}
.graphic-design {
    width: 90%; 
    -moz-animation:graphic-design 2s ease-out;
    -webkit-animation:graphic-design 2s ease-out;
}
.html-css {
    width: 80%;
    -moz-animation:html-css 2s ease-out;
    -webkit-animation:html-css 2s ease-out;
}
.jquery {
    width: 86%;
    -moz-animation:jquery 2s ease-out;
    -webkit-animation:jquery 2s ease-out;
}

@-moz-keyframes graphic-design {0%  { width:0px;} 100%{ width:100%;}  }
@-moz-keyframes html-css        { 0%  { width:0px;} 100%{ width:90%;}  }
@-moz-keyframes jquery      { 0%  { width:0px;} 100%{ width:65%;}  }
@-moz-keyframes wordpress   { 0%  { width:0px;} 100%{ width:80%;}  }

@-webkit-keyframes graphic-design       { 0%  { width:0px;} 100%{ width:100%;}  }
@-webkit-keyframes html-css        { 0%  { width:0px;} 100%{ width:90%;}  }
@-webkit-keyframes jquery      { 0%  { width:0px;} 100%{ width:65%;}  }
@-webkit-keyframes wordpress   { 0%  { width:0px;} 100%{ width:80%;}  }

/* Star */
.star-img {
    border-radius: 90px 0 0 0;
}

/* 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 */
#sp-bottom1 strong {
    font-style: italic;
    padding-top: 15px;
    display: inline-block;
}
#sp-bottom3 strong {
    display: none;
}
#sp-bottom3 em {
    padding-right: 10px;
}
ul.menu-bottom {
    float: left;
    width: 50%;
}
#sp-bottom1 .shrewd_solution_icon {
    padding-top: 20px;
}
#sp-bottom1 .shrewd_solution_icon ul, #sp-bottom1 .shrewd_solution_icon ul li {
    display: inline-block!important;
    padding: 0!important;
}
#sp-bottom1 .shrewd_solution_icon ul li a {
    font-size: 16px;
    color: #000;
    background: #fefefe;
    height: 36px;
    width: 36px;
    line-height: 38px;
    text-align: center;
    border-radius: 2px;
    margin-right: 10px;
    -webkit-transition: .5s;
    transition: .5s;
    box-shadow: 0 0 15px rgba(228,200,200,.5);
    display: inline-block;
}
#sp-bottom1 .shrewd_solution_icon strong {
    display: none;
}
#sp-bottom p {
    line-height: 35px;
    margin: 0;
    font-size: 15px;
}
#sp-bottom2 ul li {
    list-style: none;
    line-height: 35px;
    position: relative;
}
#sp-bottom2 ul li a em {
    padding-right: 10px;
  	color: #fff !important;
}
#sp-bottom2 ul li a strong {
    display: none;
}
#sp-bottom3 .sp-module-content .latestnews > li > a > span {
    font-family: 'Great Vibes';
    color: #000;
    font-size: 17px;
}

/* Footer Copyright */
#sp-footer {
    text-align: center;
    display: inline-block;
    width: 100%;
}
#sp-footer .container-inner {
    border-top: 1px solid rgba(255, 255, 255, .1);
}
#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-header.lg-header .logo {
    	height: 70px;
	}
  	#offcanvas-toggler {
    	height: 70px;
    	line-height: 70px;
	}
  	#sp-header-topbar {
      	margin: 0px 0px;
      	padding: 10px 0;
	}
  	#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,
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-info:hover,
.sp-simpleportfolio .sp-simpleportfolio-item .sp-simpleportfolio-overlay-wrapper .sp-simpleportfolio-overlay,
.btn, .btn.white:hover {
 	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-bottom1 .shrewd_solution_icon ul li a, #sp-bottom2 ul li a em, #sp-bottom3 em,
.title h3, .luxury-colum .list em, #sp-bottom3 em, .team-item h3, .team-title, .sp-contact-info span {
  	color: var(--text-color) !important; 
}
.btn.white:hover {
  	border-color: var(--text-color) !important;
}
