/*** Custom Layout ***/
/*** Button ***/
.btn {	
  	display: inline-block;
  	border-radius: 6px;
  	padding: 16px 28px;
    font-size: 18px;
  	color: #fff;
  	position: relative;
  	overflow: hidden;
  	border: 0;
}
.btn:hover {
  	background: none;
  	border: 0;
  	color: #fff;
}
.btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  	background-color: #E03C33;
}
.btn:hover:before {
  	-webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

/*** Title ***/
.title {
    max-width: 620px;
    margin: 0 auto;
}
.title.sppb-text-center {
  	margin: 0 auto;
}
.title h5 {
  	letter-spacing: 3px;
}
.title h2 {
  	color: #354463;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1.9px;
  	margin: 15px 0 20px;
}
.title p {
    color: #162C5A;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.5em;
}
.heading .title h1 {
  	color: #FFFFFF;
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 1.9px;
}

/*** Header ***/
#sp-contact {
  	display: none;
}
#sp-header-topbar {
    background-color: #002749;
}

/*** Head ***/
#sp-header {
    height: auto;
} 
#sp-logo {
    padding: 20px 0;
}
#sp-menu {
    background: #fff;
    position: relative!important;
}
#sp-menu:before,
#sp-menu:after {
    content: "";
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    position: absolute;
    display: inline;
    background: #fff;
}
#sp-menu:after {
    left: 100%;
}
#sp-menu>.sp-column {
    justify-content: inherit!important;
}
#sp-logo,
#sp-menu {
  	width: 100%;
}
#sp-header.header-sticky #sp-logo {
    display: none;
}
#sp-header .logo {
  	float: left;
}
#sp-header .sp-module {
  	display: inline-block;
  	float: right;
  	width: 60%;
}
.right-logo-item h5 {
  	font-size: 14px;
  	margin-bottom: 2px;
}
.right-logo-item p {
  	font-size: 13px;
  	color: #fff;
}
.right-logo-item {
  	padding-top: 18px;
}
.right-logo-item a {
  	color: #fff;
}

/*** Menu ***/
.sp-megamenu-parent>li>a, 
.sp-megamenu-parent>li>span {
  	color: #000;
}
#sp-menu>.sp-column,
.sp-megamenu-wrapper,
.sp-megamenu-parent {
  	width: 100%;
}
.sp-megamenu-parent>li:last-child,
.sp-megamenu-parent>li:nth-last-child(2) {
  	float: right;
  	height: 80px;
}
.sp-megamenu-parent>li>a.fa {
  	font-size: 0;
}
.sp-megamenu-parent>li>a.fa:before {
  	font-size: 20px;
}
.sp-megamenu-parent>li>a.fa-facebook {
    color: #dc4a3d;
}
.sp-megamenu-parent>li>a.fa-twitter {
    color: #006699;
}

/*** Right Menu ***/
.header-right-menu {
    position: relative;
    float: right;
    transition: all 300ms ease;
}
.header-right-menu .opening-time {
    position: relative;
    display: block;
    float: left;
    padding: 14px 0;
    margin-right: 40px;
}
.header-right-menu .opening-time p {
    color: #91939d;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin: 0;
}
.header-right-menu .opening-time p i {
    position: relative;
    top: 1px;
    color: #1fc6c7;
    font-size: 18px;
    line-height: 18px;
    display: inline-block;
    padding-right: 9px;
}
.header-right-menu .button {
    position: relative;
    display: block;
    float: right;
    line-height: 1;
}

/*** Title ***/
.entry-title {
    font-size: 28px!important;
}
.section_title .section_header {
    font-size: 30px !important;
    max-width: 650px;
    text-transform: capitalize;
    line-height: 1.4;
}
.section_title .section_title_border .f-border {
    width: 4px;
    display: inline-block;
    height: 4px;
    background-color: #000;
}
.section_title .section_title_border .s-border {
    width: 25px;
    display: inline-block;
    height: 4px;
    background-color: #000;
}
.sec_subtitle {
    max-width: 500px;
    font-size: 15px;
    line-height: 1.8;
}
.bg-dark {
    background-color: #22232f;
}
.bg-custom {
    background-color: #ff4f64 !important;
}
.text-dark {
    color: #000 !important;
}

@-webkit-keyframes pulse-border{
    0%{
        -webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity:1
    }
    100%{
        -webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity:0
    }
}
@keyframes pulse-border{
    0%{
        -webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity:1
    }
    100%{
        -webkit-transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity:0
    }
}
.typed-cursor{
    color: #ccc;
    opacity: 1;
    animation: blink 0.7s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

/*** Slider ***/
.slider {
  	position: relative;
}
body.home .home  .page-content {
  	background: #191F28;
}

/*** Service ***/
.service-item {
    box-shadow: 20px 20px 40px 0px rgb(0 0 0 / 12%);
    padding: 60px 40px 60px 40px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: rgba(2, 1, 1, 0);
    box-shadow: 40px 40px 80px 0px rgb(5 17 22 / 9%);
  	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.service-item:hover {
    box-shadow: 20px 20px 40px 0px rgb(0 0 0 / 12%);
}
.service-item h4 {
  	letter-spacing: 2.1px;
}

/*** Feature ***/
.feature-img {
  	position: relative;
  	top: -110px;
}
.feature-right-column {
    padding: 50px 35px 45px 50px;
    position: relative;
    left: -100px;
    background: #fff;
}

/*** Work ***/
.work-column {
  	box-shadow: 4px 4px 30px 0px rgb(0 0 0 / 15%)!important;
}
.work-column:hover {
  	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 14%)!important;
}
.work-item img {
    transition-duration: 0.3s;
}
.work-item:hover img {
    transform: rotate(4deg);
}
.work-item h5 {
    font-size: 18px;
    font-weight: 600;
}
.work-item p {
  	color: #7a7a7a;
  	font-size: 1.8;
}
.work-column .btn {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1;
}
.work-item h4 {
    color: #E03C33;
    font-size: 16px;
    line-height: 1.2em;
    letter-spacing: 3px;
    margin: 25px 0;
}
.work-item h6 {
    color: #4DD5B9;
    font-size: 16px;
    line-height: 1.2em;
    letter-spacing: 3px;
    margin: 0 0 22px;
}
.work-item .btn {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 25px;
}
.work.page .sppb-col-md-4 {
  	margin: 40px 0;
}

/*** Our ***/
.our-item h5 {
  	letter-spacing: 2.1px;
}
.our-item .sppb-icon-container {
  	width: 64px;
    height: 64px;
  	border-radius: 50%;
  	hight: 64px;
  	width: 64px;
}
.our-item .sppb-icon-container i {
  	line-height: 64px!important;
    display: initial;
}

/*** Team ***/
.team-item img {
    transition-duration: 0.3s;
}
.team-item:hover img {
    transform: translateY(-8px);
}

/*** Event ***/
.event-item {
    box-shadow: 10px 10px 30px 0px rgb(5 17 22 / 9%);
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 25px;
}
.event-item ul,
.event-content ul {
  	padding-left: 0;
}
.event-item ul li,
.event-content ul li {
  	color: #354463;
    padding-left: 5px;
  	font-size: 18px;
  	font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
.event-item ul li:before,
.event-content ul li:before {
  	font-family: 'FONT AWESOME 5 FREE';
  	margin-right: 5px;
}
.event-item {
  	position: relative;
}
.event-item h3 {
    position: absolute;
    right: 62px;
    top: 71px;
    max-width: 75px;
    text-align: center;
}
.event-item h4 {
  	font-size: 22px;
  	font-weight: 700;
  	margin-top: 0;
}
.event-item ul li.fa-clock:before,
.event-content ul li.fa-clock:before {
  	color: #29A98F;
}
.event-column .event-item {
  	margin-bottom: 0;
  	padding-left: 36%;
}
.event-column .btn {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1;
}
.event.page .sppb-col-md-6 {
  	margin: 25px 0;
}

/*** Counter ***/
.counter-title {
    padding: 60px 40px;
}
.counter-item {
	position: relative;
}
.counter-item h4 {
  	color: #354463;
    font-size: 32px;
    font-weight: 600;
    margin: 12px 0
}
.counter-item p {
    font-size: 20px;
  	color: #fff;
}
.counter-item h2 {
    color: #fff;
    font-size: 54px;
    font-weight: 600;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
}
.counter-item h6 {
    color: #6B6E7A;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 2px;
  	padding: 0px 0px 0px 15px;
    border-left: 2px solid #FF6620;
}
.counter.page .counter-item h6,
.counter.page .counter-item h2 {
  	color: #fff;
}

/*** Team ***/
.team-item .sppb-img-container {
  	position: relative;
  	overflow: hidden;
}
.team-item .sppb-img-container img {
  	width: 100%;
}
.team-item h6 {
    color: #6B6E7A;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.team-item .sppb-addon-text p,
.team-item .sppb-addon-text .team-item-hover {
  	text-align: center;
}
.team-item .sppb-media-content {
    position: relative;
    padding-top: 25px;
}
.team-item ul {
  	padding-left: 0;
  	position: absolute;
  	left: 0;
  	right: 0;
  	top : -20px
}
.team-item ul li {
  	display: inline-block;
  	list-style: none;
}
.team-item ul li a {
  	width: 39px;
    height: 39px;
    display: block;
    background-color: #EDEDED;
    color: #007dac;
    text-align: center;
    line-height: 24px;
    margin: 0 6px;
    border-radius: 50%;
    display: inline-block;
    padding: 10px
}
.team-item ul li em {
  	font-size: 0;
}
.team-item ul li em:before {
  	color: #22273A;
  	font-size: 16px
}
.team-item .team-item-hover {
    position: absolute;
    z-index: 3;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 10px;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition:    all 0.4s ease-in-out;
    -ms-transition:     all 0.4s ease-in-out;
    -o-transition:      all 0.4s ease-in-out;
    transition:         all 0.4s ease-in-out;
}
.team-item:hover .team-item-hover {
    bottom: 37%;
    opacity: 1;
}

/*** Client ***/
.client .clearfix img {
    width: 135px;
  	margin: 0 auto;
    opacity: 0.7;
    transition-duration: 0.3s;
}
.client .clearfix:hover img {
    opacity: 1;  
}

/* Testimonial */
.testimonial h2,
.testimonial p {
	color: #fff;
}
.testimonial-column {
  	background: #fff;
  	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 1%);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 30px 35px 40px 35px;
}
.testimonial-item {
	background: #fff;
  	box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 15%);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 16px 0px 0px;
    padding: 35px 35px 35px 35px;
    border-radius: 5px;
}
.testimonial-item h6 {
    color: #bfbfbf;
    font-size: 15px;
    font-weight: 300;
}

/* Skillbar */
.Count:after{
  content:"%"
}
.skillbar {
  	margin: 50px 0;
  	position:relative;
  	display:block;
  	margin-bottom:15px;
  	width:100%;
  	background:#eee;
  	height:15px;
  	border-radius:3px;
  	-moz-border-radius:3px;
  	-webkit-border-radius:3px;
  	-webkit-transition:0.4s linear;
  	-moz-transition:0.4s linear;
  	-ms-transition:0.4s linear;
  	-o-transition:0.4s linear;
  	transition:0.4s linear;
  	-webkit-transition-property:width, background-color;
  	-moz-transition-property:width, background-color;
  	-ms-transition-property:width, background-color;
  	-o-transition-property:width, background-color;
  	transition-property:width, background-color;
}
.skillbar-title {
	position:absolute;
	top: -23px;
	left: 0;
	width: 40%;
	font-weight:bold;
	font-size: 15px;
	/* color:#ffffff; */
	-webkit-border-top-left-radius:3px;
	-webkit-border-bottom-left-radius:4px;
	-moz-border-radius-topleft:3px;
	-moz-border-radius-bottomleft:3px;
	border-top-left-radius:3px;
	border-bottom-left-radius:3px;
}
.skillbar-title span {
	display:block;
	background:rgba(0, 0, 0, 0.1);
	padding:0 20px;
	height:15px;
	line-height:15px;
	-webkit-border-top-left-radius:3px;
	-webkit-border-bottom-left-radius:3px;
	-moz-border-radius-topleft:3px;
	-moz-border-radius-bottomleft:3px;
	border-top-left-radius:3px;
	border-bottom-left-radius:3px;
}
.skillbar-bar {
	height:15px;
	width:0px;
	background:#6adcfa;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.skill-bar-percent {
	position:absolute;
	right:10px;
	top:0;
	font-size:11px;
	height:15px;
	line-height: 17px;
	color:#ffffff;
	color: rgb(0 0 0);
}

/* Feature */
.features-column {
  	border-bottom: 5px solid #aaa;
}
.features-item .sppb-media-content {
  	padding: 35px 35px 0px 35px;
}
.features .clearfix:last-child {
  	padding: 0 35px 35px;
}

/* Our */
.our .title p {
  	margin: 40px 0 20px;
}

/* Bottom */
#sp-bottom {
  	font-size: 15px;
}
#sp-bottom .sp-module .sp-module-title {
  	font-size: 22px!important;
}

/* Footer Copyright */
#sp-footer {
  	text-align: center;
  	font-size: 15px;
}
#sp-footer ul {
    margin-left: 0;
    float: initial;
}
#sp-footer ul li {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}
#sp-footer ul li a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #fff;
    border: 1px solid #f2f2f2;
    width: 60px;
    height: 60px;
    line-height: 62px;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
}

/*** Responsive Layout ***/
/* Tablet Landscape Layout */
@media (min-width: 1400px) {
    .sppb-row-container {
        max-width: 1320px;
    }
}
@media (min-width: 1199px) and (max-width: 1400px) {
  	.sppb-row-container {
        max-width: 100%!important;
    }
  	.event-column {	
  		background-size: 170px!important;
  	}
    .event-column .event-item {
        padding-left: 30%;
    }
}
@media (min-width: 980px) and (max-width: 1199px) {
  	.sppb-row-container {
        max-width: 100%!important;
    }
  	.event-column {	
  		background-size: 120px!important;
  	}
    .event-column .event-item {
        padding-left: 26%;
    }
}

/* Tablet Portrait Layout */
@media (max-width: 979px) {
    #sp-logo {
        padding: 0;
    }
  	.feature-colum .clearfix {
        width: 100%;
        margin: 0;
    }
  	.client .clearfix {
    	margin: 20px 0;
  	}
    .sppb-row-container {
        max-width: 100%!important;
    }
}
@media (min-width: 768px) and (max-width: 979px) {
  	
}

/* Mobile Standard Layout */
@media (max-width: 768px) {
  #sp-header .logo,
  #sp-header .sp-module {
    	width: 100%;
  }
  #sp-header .sp-module {
    	margin: 0;
  }
  #sp-logo ul.info-box li em {
      top: 7px;
  }
  #sp-logo ul.info-box li {
      padding: 5px 0px 5px 45px;
  }
  #sp-header .logo {
      height: 60px;
  }
  #sp-header .logo a {
      margin: 0 auto;
  }
  .event-column {	
  	   background-size: 120px!important;
  }
  .event-column .event-item {
       padding-left: 26%;
  }
  
}

/* Mobile Small Resolution */
@media (max-width: 480px) {

  
}

/*** Color Variables ***/
/* Get Variables */
:root {
    --background-color: currentColor;
    --background: currentColor;
    --text-color: currentColor;
}

/* General */
.btn,
#sp_qc_submit,
.team-item .team-btn,
.feature-item h5:after,
.title h3:after,
.button.subbutton,
.counter-title,
.team-item .sppb-img-container:before,
#sp-quickcontact-form #sp_qc_submit,
#sp_qc_submit,
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a:after {
    background-color: var(--background-color);
}
.right-logo-item a strong,
.service-item i,
.work-item h5,
.team-item h3,
.event-content h4,
#sp_qc_submit:hover,
.sp-contact-info li span,
#sp-bottom1 ul:hover .text,
#sp-bottom1 ul:hover .icon em,
#sp-logo ul.info-box li em,
.event-item h4,
.event-item ul li.fa-map-marked-alt:before,
.event-content ul li.fa-map-marked-alt:before,
#sp-quickcontact-form #sp_qc_submit:hover,
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a,
.slider-text-color h3, ul.about-check li, .feature-item .sppb-addon-text h3,
.title h2:before, .services-item h3, .services-item i,
.testimonial-name, .testimonial-item i, #sp-bottom2 a,
#sp-bottom .shrewd_solution_icon ul li a {
  color: var(--text-color);
}
.title h5,
.counter-item h6,
.slider-content h1:before,
.slider-content h1:after,
.button.subbutton,
.features-column,
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a,
.client .sppb-img-container img, .client-colum {
  border-color:var(--text-color)!important;
}
.btn-large, .button.btn-large,
#sp-bottom .button.subbutton.btn.btn-primary,
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.active > a {
  background: var(--background-color)!important;
}