/* general css */
body {
    background: #fff!important;
    color: #797979;
}

/* home page, transparent */
body.home .header-area {
    background-color: rgba(255,255,255,.9);
    position: fixed;
    top: 0;
    left: 0;
   	right: 0;
   	width: 100%;
   	z-index: 9999;
}

/* Sub pages */
body:not(.home) .header-area {
  	background: #fff;
}

/* Head */
#sp-header {
    background: #383838!important;
}

/* Top Head */
#sp-top-bar {
    background: #fff!important;
    padding: 12px 0!important;
}
#sp-top-bar ul li,
#sp-top-bar a {
    color: #242424!important;
    font-size: 16px;
}


/* Sticky menu */
body.home #sp-header {
    position: absolute;
    width: 100%;
    z-index: 2;
    left: 0;
    right: 0;
    top: 50px;
    background: none!important;
    box-shadow: 2px 2px 10px rgba(0,0,0,.1);
}
body #sp-header.header-sticky {
  	position: fixed!important;
    top: 0;
    left: 0;
   	right: 0;
   	width: 100%;
   	z-index: 9999;
    background: rgba(0,0,0,.8)!important;
}

/*** Logo ***/
.header-area .logo {
	padding: 14px 0;
}

/*** Menu ***/
ul.sp-megamenu-parent > li > a {
    text-transform: capitalize;
    position: relative;
    color: #fff;
    font-weight: 600!important;
    padding: 0 30px 0 0;
}
ul.sp-megamenu-parent > li > a:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 13px;
    width: 0px;
    height: 1px;
    opacity: 0;
    background-color: #ffffff;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.sp-megamenu-parent > li > a:hover:after,
.sp-megamenu-parent > li.active > a:after, 
.sp-megamenu-parent > li.active:hover > a:after {
    width: 24px;
    opacity: 1;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item {
    border-bottom: 1px solid #e9e4e4;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
    padding: 12px 0;
}

/*** Canvas Menu ***/
.offcanvas-menu .sp-module-content {
  	width: 100%;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li {
	line-height: 45px;
	border-bottom: 1px solid #E8EEF3;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li:first-child {
	border-top: 1px solid #E8EEF3;	
}
#offcanvas-toggler {
    display: block;
    height: 73px;
    line-height: 73px;
    font-size: 20px;
}
#offcanvas-toggler > .fa {
    color: #fff!important;
}

/**** Button ****/
.lt-btn,
.tp-caption a.btn-slider {
     display: inline-block;
     padding: 12px 40px;
     border-radius: 30px;
     color: #fff!important;
     border: 2px solid;
     text-transform: capitalize;
     -webkit-transition: all 0.4s ease-in-out;
     transition: all 0.4s ease-in-out;
 }
.lt-btn.white {
     background: #fff!important;
     border-color: #fff!important;
     color: #252525!important;
 }
.tp-caption a.btn-slider:hover {
     background: none!important;
 }
.lt-btn.white:hover {
    background: none!important;
    border-color: #252525!important;
}
.lt-btn.black {
    background: #191919;
    border-color: #191919;
}
.lt-btn.black:hover {
    background: none;
}

 /*** Title ***/
 .sppb-section-title {
    margin-bottom: 20px!important;
 }
.lt-title .sppb-title-heading {
    position: relative;
    display: inline;
}
.lt-title .sppb-title-heading:after {
    position: absolute;
    content: '';
    left: 100%;
    margin-left: 10px;
    width: 40px;
    height: 2px;
    bottom: 8px;
}

/*** Service ***/
.lt-service .sppb-row-container {
    position: relative;
}
.lt-service .sppb-row-container:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: -80px;
    left: 0;
    right: 0;
    max-width: 1110px;
    margin: 0 auto;
    border-top: 1px solid #d7d7d7;
}
.lt-service .clearfix {
    position: relative;
}
.lt-service-item-hover {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    padding: 45px 20px;
    top: 0;
    left: 0;
    right: 0;
    color: #aaaaaa;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.lt-service-item:hover .lt-service-item-hover {
    opacity: 1;
    visibility: inherit;
    background: #242424;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.lt-service-item-hover h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}
.lt-service-item-hover a {
    font-size: 14px;
    font-weight: 500;
}
.lt-service-item-hover a:hover {
    color: #fff;
}
/*** Counter ***/
.lt-counter {
    border-bottom: 6px solid #ec676c;
}
.lt-counter .sppb-row > div {
    border-right: 1px solid #b1a4a4;
}
.lt-counter .sppb-row > div:last-child {
    border-right: 0;
}
.lt-counter-item h2 {
    font-size: 40px;
    color: #fff;
    margin: 0;
}

/*** About Top ***/
.lt-about-top .sppb-row-container {
    position: relative;
    top: -70px;
}
.lt-about-title {
    padding: 40px 40px;
}
.lt-about-title h2 {
    font-size: 37px;
    font-weight: 400;
    margin-bottom: 0;
}
.lt-about-title h2 em {
    font-family: 'Playfair Display', serif;
    position: relative;
}
.lt-about-title h2 em:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #000000;
}
.lt-about-top .lt-btn {
    margin-top: 40px;
}

/*** About ***/
.lt-about ul {
    padding-left: 0;
}
.lt-about ul li {
    position: relative;
    color: #242424;
    font-size: 20px;
    font-style: italic;
    padding-left: 40px;
    margin-bottom: 15px;
    list-style: none;
}
.lt-about ul li:before {
    position: absolute;
    content: '\f00c';
    left: 0px;
    top: 5px;
    color: #f7bd00;
    line-height: 1em;
    font-size: 18px;
    font-family: FontAwesome;
}

/*** Get app ***/
.lt-get-app:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    display: block;
    height: 100%;
    opacity: 0.95;
}
.lt-get-app-content .sppb-addon-title,
.lt-get-app-content .sppb-addon-content {
    width: 50%;
    float: left;
}
.lt-get-app-content .sppb-addon-title {
    text-align: right;
    padding: 40px;
    position: relative;
}
.lt-get-app-content .sppb-addon-title:before {
    position: absolute;
    content: "";
    top: 40px;
    right: 0;
    width: 2px;
    height: 40px;
    background: #000;
}
.lt-get-app-content .sppb-addon-content {
    text-align: left;
    padding: 40px;
}

/*** Subscribe ***/
.lt-subscribe .sppb-column-addons {
    text-align: center;
}
.lt-subscribe .sppb-column-addons .clearfix {
    display: inline-block;
}
.lt-subscribe .acym_form {
    width: 260px;
    float: left;
}
.lt-subscribe .acysubbuttons {
    width: 100px;
    float: left;
}
.lt-subscribe .onefield.fieldacy2 {
    display: none;
}
.lt-subscribe .acysubbuttons .btn.btn-primary,
.lt-subscribe #acym__user__edit__email {
    border-radius: 0!important;
}
.lt-subscribe .acym__users__creation__fields__title {
    color: #fff;
    text-align: left;
}
.lt-subscribe #acym__user__edit__email {
    line-height: 26px;
    max-width: 100%;
}
.lt-subscribe .acysubbuttons {
    width: 200px!important;
}
.lt-subscribe .acysubbuttons .btn.btn-primary {
    padding: 8px 35px;
    text-transform: uppercase;
    margin-top: 28px;
    max-width: 100%!important;
}

/*** Team ***/
.lt-team-item ul {
    padding-left: 0;
}
.lt-team-item ul li {
    list-style: none;
    display: inline-block;
    margin: 5px;
    text-align: center;
} 
.lt-team-item ul li:first-child {
    margin-left: 0;
}
.lt-team-item ul li a {
    width: 40px;
    height: 40px;
    line-height: 35px;
    border-radius: 50%;
    border: 2px solid;
    color: #394F6F;
}
.lt-team-item ul li strong {
    display: none;
}

/*** Testimonial ***/
.lt-testimonial {
	position: relative;
	z-index: 1;
}
.lt-testimonial:before {
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60%;
    position: absolute;
    z-index: -1;
}

/*** Portfolio ***/
.sp-simpleportfolio .sp-simpleportfolio-filter {
    text-align: left;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a {
    background: none;
    color: #242424;
    font-size: 16px;
    position: relative;
    padding: 11px;
    font-weight: 500;
    padding-left: 20px
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.active > a {
	  background: none;
}
.sp-simpleportfolio .sp-simpleportfolio-filter > ul > li.active > a:after {
    visibility: inherit;
    opacity: 1;
}

/*** Client ***/
.lt-client h3 {
    position: relative;
    padding-bottom: 20px;
}
.lt-client h3:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 40px;
    height: 2px;
    right: 0;
    margin: 0 auto;
}
.lt-client-item.left:before {
    position: absolute;
    content: '';
    right: -10px;
    top: 20px;
    height: 140px;
    bottom: 30px;
    border-right: 1px solid rgba(0,0,0,0.10);
}
.lt-client-item img {
    border-radius: 50%;
}
.lt-client-item .pull-sppb-text-left {
    float: left;
    display: inline-block;
}
.lt-client-item .sppb-media-body {
    padding-left: 30px;
}
.lt-client-item h5 {
    color: #242424;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}
.lt-client-item h6 {
    color: #797979;
    font-size: 14px;
    font-weight: 400;
    margin-left: 10px;
}

/*** Blog ***/
.lt-blog p {
	  color: #fff;
}
.moduleItemComments {
  	font-size: 0;
}
.moduleItemComments:before {
  	content: "\f075";
  	font-family: FontAwesome;
    font-size: 14px;
  	margin-left: 10px;
    color: #dfd9d9;;
}
.moduleItemAuthor:before {
    content: "\f007";
  	font-family: FontAwesome;
    font-size: 14px;
}
div.k2ItemsBlock ul li a {
    display: inline-block;
}
div.k2ItemsBlock ul li {
  	width: 32%;
  	float: left;
    margin-right: 2%;
  	padding: 10px;
    color: #dfd9d9;
}
div.k2ItemsBlock ul li:nth-child(3n) {
  	margin-right: 0;
}
div.k2ItemsBlock ul li a {
  	color: #333;
}
div.k2ItemsBlock ul li a.moduleItemComments {
  	border: 0;
}
div.k2ItemsBlock ul .clearList {
  	display: none;
}
.sp-module-content {
  	display: inline-block;
}
div.itemFacebookButton {
  	width: inherit;
}
.com-k2 div.k2ItemsBlock ul li {
  	width: 100%;
    margin: 0;
}
.com-k2 div.k2ItemsBlock ul li .moduleItemImage,
.com-k2 div.k2ItemsBlock ul li .moduleItemImage img {
  	width: 100%;
}
.catItemTitle a:hover {
  color: #333;
}
/*** Contact ***/
.lt-contact-us ul {
  	padding-left: 0;
}
.lt-contact-us ul li {
  	list-style: none;
  	margin: 20px 0;
  	font-size: 18px;
  	color: #fff;
}
.lt-contact-us ul li em {
  	margin-right: 10px;
  	color: #555;
}
.creativecontactform_body {
    padding: 5px 15px 10px 0px !important;
}
.lt-contact-us ul li strong {
  	display: none;
}
/*** Contact Form ***/
.creativecontactform_wrapper,
.creativecontactform_wrapper:hover {
  	background: none!important;
  	border: 0!important;
  	box-shadow: none!important;
}
.creativecontactform_header {
  	display: none!important;
}
form .creativecontactform_input_element, 
form .creativecontactform_input_element.closed:hover {
  	box-shadow: none!important;
}
form .creativecontactform_error .creativecontactform_input_element, 
form .creativecontactform_error .creativecontactform_input_element:hover {
  	box-shadow: none!important;
    background: none!important;
}
.creativecontactform_submit_wrapper,
.creative_field_box_wrapper_0 .creativecontactform_field_box_inner,
.creative_field_box_wrapper_0 .creativecontactform_field_box_textarea_inner {
  	width: 100%;
}
.creativecontactform_field_box:nth-child(-n+4) {
  	width: 48%;
  	float: left;
  	margin-right: 4%; 
}
.creativecontactform_field_box:nth-child(2n) {
  	margin-right: 0;
}
.powered_by.powered_by_1 {
  	opacity: 0!important;
}
.creativecontactform_send:hover,
.creativecontactform_wrapper input.creativecontactform_send,
.creativecontactform_wrapper input.creativecontactform_send:hover {
	  border: 0!important;
    border: medium none;
    color: #151515;
    font-size: 18px;
    border-radius: 0px;
    margin-top: 20px;
    float: none!important;
}
.creativecontactform_footer {
    padding-left: 0!important;
}
.creativecontactform_wrapper [type=button] {
  	background: #222;
    font-weight: 400;
    color: #fff!important;
    text-transform: capitalize!important;
    text-shadow: none;
    border-radius: 25px!important;
    padding: 14px 60px!important;
}

/*** Map ***/
.lt-map .sppb-container {
    display: none;
}

/*** Top bottom ***/
.top-bottom {
    padding-top: 50px;
}
.top-bottom .sp-module-content {
    width: 100%;
    position: relative;
    padding: 22px 25px 18px;
    border: 1px solid rgba(255,255,255,0.10);
    background-color: rgba(0,0,0,0.30);
}
.top-bottom .sp-module-content ul {
    display: block;
    padding: 0px 0 30px;
}
.top-bottom .sp-module-content ul li {
    width: 33.33%;
    float: left;
    padding-left: 50px;
    position: relative;
    color: #cccccc;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.top-bottom .sp-module-content ul li:before {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 35px;
    font-family: FontAwesome;
}
.top-bottom .sp-module-content ul li:after {
    position: absolute;
    content: '';
    right: 40px;
    top: 0px;
    width: 1px;
    height: 100%;
    background-color: rgba(255,255,255,0.10);
}
.top-bottom .sp-module-content ul li:last-child:after {
    display: none;
}

/*** Bottom ***/
#sp-bottom {
    padding: 60px 0 30px;
    font-size: 18px;
    line-height: 1.6;
}
/*** Footer ***/
#sp-bottom .sp-module .sp-module-title {
    font-weight: 700;
    font-size: 29px;
    margin: 0 0 30px;
}
#sp-footer a {
  color:#002937!important;
}

/*** Responsive ***/
@media (max-width: 992px) {
	#sp-logo,
	#sp-menu {
		width: 50%;
	}
	.lt-slider-color i {
		width: 45px;
		height: 45px;
	}
  .lt-counter .sppb-row > div {
      border-right: 0;
      border-bottom: 1px solid #b1a4a4;
  }
}
/* Screen min 980px and max 1199px */
@media (min-width: 980px) and (max-width: 1199px) {
     .sp-megamenu-parent > li > a, 
     .sp-megamenu-parent > li > span {
         padding: 0 7px!important;
         font-size: 15px!important;
     }
}
/* Screen min 908px */
@media (min-width: 980px) {
    .sp-simpleportfolio .sp-simpleportfolio-filter {
        position: absolute;
        left: 0;
    }
    .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li {
        display: initial;
        float: none;
        text-align: left;
        margin: 0;
    }
    .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a {
        background: none;
        color: #242424;
        font-size: 16px;
        position: relative;
        padding: 11px;
        font-weight: 500;
        padding-left: 20px
    }
    .sp-simpleportfolio .sp-simpleportfolio-filter > ul > li > a:before {
        position: absolute;
        content: '';
        left: 0px;
        top: 22px;
        width: 10px;
        height: 1px;
        background-color: #303030;
    }
}
/* Screen min 768px and max 980px */
@media (min-width: 768px) and (max-width: 980px) {
	.lt-slider-color i {
		 width: 35px;
		 height: 35px;
	}
    .tp-caption a.btn-slider {
        font-size:12px!important;
    }
    .lt-portfolio .clearfix {
        padding-left: 0!important;
    }
    .top-bottom .sp-module-content ul li {
        padding-left: 40px;
        font-size: 13px;
    }
    .top-bottom .sp-module-content ul li:after {
        display: none;
    }
    body.home #sp-header {
    	top: 70px;
    }
    body #sp-header.header-sticky {
    	top: 0;
    }
}

  /* Screen min 767px */
@media (max-width: 980px) {
    .lt-client .clearfix {
        padding-left: 0!important;
    }
    .container,
    .sppb-row-container {
        max-width: 100%!important;
    }
    .lt-about-top .lt-btn {
        margin: 0 0 50px!important;
    }
}

  /* Screen min 767px */
@media (max-width: 767px) {
    body.home #sp-header {
       position: static;
       background: #383838!important;
    }
    .lt-about-top .sppb-row-container {
       top: 0;
    }
	.lt-slider-color i {
      width: 25px;
      height: 25px;
      line-height: 25px!important;
   }
   .tp-caption a.btn-slider {
      font-size:12px!important;
   }
   .header-area .logo {
      padding: 21px 0!important;
   }
   div.k2ItemsBlock ul li {
  	  width: 100%!important;
  }
  .lt-portfolio .clearfix {
      padding-left: 0!important;
    }
   .top-bottom .sp-module-content ul li {
      width: 100%!important;
      padding-top: 20px;
      padding-bottom: 20px;
   }
    .top-bottom .sp-module-content ul li:after {
      display: none;
    }
    .top-bottom .sp-module-content ul li:before {
        top: 30px;
    }
    .lt-get-app-content .sppb-addon-title, .lt-get-app-content .sppb-addon-content {
        width: 100%!important;
        float: none!important;
        padding: 10px 0!important;
        text-align: center!important;
    }
}
 /* Screen min 480px */
@media (max-width: 480px) {
	.lt-slider-color i {
      width: 25px;
      height: 25px;
      line-height: 25px!important;
   }
  .tp-caption a.btn-slider {
      font-size:12px!important;
  }
 .header-area .logo {
      padding: 21px 0!important;
  }
  div.k2ItemsBlock ul li {
  	  width: 100%!important;
  }
  .lt-subscribe .acym_form,
  .lt-subscribe .acysubbuttons,
  .creativecontactform_field_box {
      width: 100%!important;
      margin-right: 0!important;
  }
}
 /* Screen min 360px */
@media (max-width: 360px) {
  .tp-caption a.btn-slider {
      font-size:12px!important;
  }
   .header-area .logo {
      padding: 21px 0!important;
  }
  .lt-slider-color i {
      width: 25px;
      height: 25px;
      line-height: 25px!important;
  }
  div.k2ItemsBlock ul li {
  	width: 100%!important;
  }
}
 /* Screen min 320px */
@media (max-width: 320px) {
   .lt-slider-color i {
      width: 25px;
      height: 25px;
      line-height: 25px!important;
   }
  .tp-caption a.btn-slider {
       font-size:12px!important;
  }
  .header-area .logo {
      padding: 21px 0!important;
  }
  div.k2ItemsBlock ul li {
  	width: 100%!important;
  }
}




