/*** General CSS ***/
.title h6 {
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #fff;
}
.title h3 {
    font-size: 60px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 50px;
}

/*** Header Area ***/
/* Top Header */
#sp-header {
    top: 0;
    height: inherit;
    width: 100%;
    z-index: 2;
    box-shadow: none;
}
#sp-header .logo {
    height: 90px;
}
#sp-header.header-sticky {
    position: fixed;
    top: 0;
    background: #323232;
  	box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
    padding: 0 10px 0 0px;
}
body:not(.home) #sp-header {
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
    position: static;
    background: #323232;
    max-width: 100%;
    margin: 0 auto;
}
body:not(.home) #sp-header.header-sticky {
    position: fixed;    
}

/* Header Menu */
.sp-megamenu-parent>li>span,
.sp-megamenu-parent > li > a {
    padding: 0 25px;
    position: relative;
    text-transform: uppercase;
}
.sp-megamenu-parent>li>span {
  	color: #fff;
}
.sp-megamenu-parent > li a {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.sp-megamenu-parent > li li a:hover {
    padding-left: 7px!important;
}
.sp-megamenu-parent > li li a:before {
    content: '+';
    left: -25px;
    width: 20px;
    position: relative;
    color: #001659;
    font-size: 18px;
    font-weight: 400!important;
    line-height: inherit;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    opacity: 0;
}
.sp-megamenu-parent > li li a:hover:before {
    opacity: 1;
    left: -5px;
}

/* Canvas Menu */


/*** Block Styles ***/
/* Promotion Slider */

/*** SLIDER ***/
#particles-js {
    margin-top: -90px !important;
    position: relative;
    width: 100%;
    height: 850px !important;
}
.slider .slider-content {
    position: absolute;
    top: 300px;
    left: 45%;
    color: #FFF;
    font-family: teko;
    font-weight: 400;
}
.slider .slider-content h2 {
    font-size: 80px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 5px 5px #5F6D72;
}
.slider .slider-content p {
    font-size: 30px;
    text-shadow: 2px 2px #5F6D72;
}
#slider .tp-button {
    background: #fff!important;
    box-shadow: none!important;
    text-shadow: none!important;
}
#slider .tp-button:hover {
    background: #000!important;
}
@keyframes color-animation {
    0% {
       background: #000000;
    }
    40% {
       background: #ad1457;
    } 
    70% {
       background: #6a1b9a;
    } 
    100% {
       background: #bbdefb
    } 
 }

#particles-js {
   width: 100%;
   height: 100%;
   animation: color-animation 8s infinite linear alternate;
}

/*** ABOUT ***/
.about-content .button {
    padding: 12px 35px;
    color: #fff;
    border-radius: 30px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-style: 10px;
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
}

/***BANNER ***/
.banner-item {
    background: #323232;
    padding: 20px;
    border: 1px solid #323232;
}
.banner-item:hover {
    border-color: none!important;
}
.banner-item:hover img {
    cursor: pointer;
    opacity: .6;
}
.banner-item .sppb-addon-text h3,
.banner-item .sppb-addon-text h4 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 300;
}
.banner-item .sppb-addon-text h3 {
    font-weight: 600;
}
.banner-item .sppb-addon-text h3,
.banner-item .sppb-addon-text h4,
.banner-item .sppb-addon-text p {
    color: #fff;
}
.banner-item .sppb-addon-text {
    cursor: pointer;
    padding: 20px 0;
}
.banner-item h5 {
  	margin-top: 10px!important;
}

/*** OUR-SERVICES ***/
.our-services-content p {
    color: #adadad;
}
.our-services-content .button {
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    border-radius: 20px;
    padding: 10px 30px;
    margin-top: 30px;
    display: inline-block;
}
.our-services-content .button:hover {
    color: #fff!important;
}

/*** TEAM ***/
.team-item {
    padding: 50px 20px;
    border:  1px solid #fff;
    position: relative;
    cursor: pointer;
}
.team-item:hover {
    transform: translateY(-20px);
    -webkit-transition: 0.7s ease-in-out;
    -moz-transition: 0.7s ease-in-out;
    -ms-transition: 0.7s ease-in-out;
    -o-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
    border-color: #adadad;
}
.team-item:after {
    position: absolute;
    content: "";
    width: 80%;
    height: 5px;
    margin: 0 auto;
    border-radius: 100%;
    background: rgba(0,0,0, .25);
    left: 0;
    right: 0;
    box-shadow: 0px 0px 20px #000;
    bottom: -20px;
    opacity: 0;
}
.team-item:hover:after {
    opacity: 1;
}
.team-item img {
    border-radius: 50%;
    position: absolute;
    margin: 0 auto;
    top: -50px;
    left: 0;
    right: 0;
}
.team-item h5 {
    font-size: 15px;
    color: #252525;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    margin-bottom: 20px;
}
.team-item p {
    font-style: italic;
}

/*** SERVICE ***/
.services-item,
.services-img {
    padding: 20px;
    cursor: pointer;
}
.services-img .sppb-addon-single-image-container {
    overflow: hidden;
}
.services-img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(0,0,0,.05);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.services-img:hover::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}
@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}
@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

/** PORTFOLIO  ***/
#sp-page-builder .sppb-section-title.sppb-text-center .sppb-title-subheading {
    margin: 0 auto;
}
.portfolio h2 {
    text-transform: uppercase;
    letter-spacing: 20px;
}
.portfolio .sppb-section-title {
    position: relative;
}
.portfolio .sppb-section-title p {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    color: #fff;
    font-style: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
    word-spacing: 20px;
}
.portfolio .sppb-section-title:hover p {
    opacity: 0;
}
.portfolio .sppb-section-title:hover h2 {
    color: #adadad!important;
}

/*** PRICING ***/
#pricing .sppb-row > div:nth-child(2n+1) {
    margin-top: 30px;
}
#pricing .sppb-row > div:nth-child(2n+1) .pricing-item-title,
#pricing .sppb-row > div:nth-child(2n+1) .button {
    background: #01c698;
}
.pricing-item {
    background: #323232;
    position: relative;
}
.pricing-item-title {
    padding: 25px 0 20px;
}
#pricing .sppb-row > div:nth-child(2n) .pricing-item-title {
    padding: 40px 0 35px;
}
.pricing-item-title h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 15px;
    color: #fff;
    margin: 0;
    padding: 10px;
}
.pricing-item-title h2 {
    text-transform: uppercase;
    font-size: 50px;
    color: #555;
    font-weight: 700;
    margin: 0;
}
.pricing-item-title p {
    color: #555;
    margin: 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}
.pricing-item ul {
    padding-left: 0;
    padding: 20px 0 70px;
}  
#pricing .sppb-row > div:nth-child(2n) ul {
    padding: 20px 0 90px;
}
.pricing-item ul li {
    line-height: 50px;
    color: #adadad;
    position: relative;
    list-style: none;
}
.pricing-item ul li:hover {
    color: #fff;
    cursor: pointer;
}
.pricing-item ul li:after {
    content: "";
    position: absolute;
    width: 70%;
    height: 1px;
    background: #4b4949;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
}
.pricing-item .button {
    padding: 12px 35px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    margin-bottom: -79px;
    position: absolute;
    left: 0;
    bottom: -24px;
    right: 0;
    margin: 0 auto;
    width: 170px;
}
.pricing-item .button:hover {
    background: #fff!important;
    color: #000;
}

/*** FEATURE ***/
.feature-item {
    margin: 20px 0;
    cursor: pointer;
    opacity: .8;
}
.feature-item:hover {
    opacity: 1;
}
.feature-item h4 {
    margin: 10px 0 0;
}
.feature-item:hover h4 {
    color: #fff!important;
}
.feature-item span,
.feature-item span img {
    width: 100%;
}
.feature-item .sppb-addon-content {
    border: 1px solid #525050;
}
.feature-item .sppb-addon-text {
    padding: 10px 20px;
}
.feature-item h2 {
    margin-bottom: 10px!important;
    margin-top: 30px;
}
.feature-item i {
    color: #fff;
    background: #141414;
    width: 80px!important;
    height: 80px!important;
    line-height: 80px!important;
    border-radius: 50%;
    -webkit-transition: 0.7s ease-in-out;
    -moz-transition: 0.7s ease-in-out;
    -ms-transition: 0.7s ease-in-out;
    -o-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
}
.feature-item:hover i {
     -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
}
.feature-item p {
    font-style: italic;
}

/***TESTIMONIAL***/
#testimonials .sppb-section-title p {
    color: #fff;
}
.client-item {
    opacity: .6;
}
.client-item:hover {
    opacity: 1;
    cursor: pointer;
}

/* Footer Copyright */
#sp-footer {
  	text-align: center;
}

/*** Responsive Layout ***/
/* Tablet Landscape Layout */
@media (min-width: 1400px) {
    .sppb-row-container {
        max-width: 1320px;
    }
}
@media (min-width: 980px) and (max-width: 1199px) {

  
}

/* Tablet Portrait Layout */
@media (min-width: 768px) and (max-width: 979px) {

  
}

/* Mobile Standard Layout */
@media (max-width: 768px) {

  
}

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

  
}

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

/* General */
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a:after, 
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.active > a, 
.banner-item:hover, 
.pricing-item-title, 
.pricing-item .button, 
.feature-item:hover, 
.team-colum:hover .lt-team-icon, 
.feature-item:before, 
.our-services-content .button:hover, 
.about-content .button, 
#team,
.client {
    background-color: var(--background-color);
}
.slider-title-big, 
.feature-item h3, 
.feature-item h4, 
.counter-item h1, 
.service-item h3, 
.skill .progress > li, 
.skill-item strong, 
.contact-info i, 
.services-item:hover h4, 
.services-item:hover i {
    color: var(--text-color)!important;
}