/**
 * @package Helix Ultimate Framework
 * @author JoomShaper https://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2018 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
 */
/**
 * @package SeoBin
 * @author Tripples http://www.themewinter.com
 * @copyright Copyright (c) 2013 - 2018 Tripples
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
 */
body {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 28px;
}
body.helix-ultimate-preloader {
  overflow: hidden;
}
body.helix-ultimate-preloader:before {
  content: " ";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99998;
  background: rgba(255, 255, 255, .9);
}
body.helix-ultimate-preloader:after {
  content: "\f110";
  font-family: "FontAwesome";
  font-size: 36px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -24px;
  width: 48px;
  height: 48px;
  line-break: 48px;
  text-align: center;
  color: #007bff;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  z-index: 99999;
}
a {
  transition: color 400ms, background-color 400ms;
}
a, a:hover, a:focus, a:active {
  text-decoration: none;
}
label {
  font-weight: normal;
}
legend {
  padding-bottom: 10px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
/* Typography */
h2 {
  line-height: 1.2 !important;
}
.title-light h2 {
  color: #fff !important;
}
/* Global Styles */
.sppb-btn {
  font-size: 14px !important;
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 36px !important;
  border-radius: 50px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.sppb-btn-link {
  color: #fa6742;
  display: inline-block;
  font-size: 16px;
  text-transform: none;
}
.sppb-btn-link:hover {
  text-decoration: none;
  color: #fa6742;
}
.sppb-btn-default {
  border: 1px solid transparent;
  background: #fa6742 !important;
}
.sppb-btn-default:hover {
  background: #ffb72f !important;
  border-color: transparent;
}
.sppb-btn-primary {
  border: 1px solid transparent;
  background: #fa6742;
}
.sppb-btn-primary:hover {
  background: #2e2c2d;
  border-color: #2e2c2d;
}
.sppb-btn-custom {
  border: 1px solid #2e2c2d !important;
  background: #2e2c2d !important;
}
.sppb-btn-custom:hover {
  background: #fa6742 !important;
  border-color: #fa6742 !important;
  color: #fff !important;
}
.sppb-btn-info {
  background-color: #ffb72f !important;
  border-color: #ffb72f !important;
}
.sppb-btn-info:hover {
  background-color: #2e2c2d !important;
  border-color: #2e2c2d !important;
}
.sppb-btn-success {
  background-color: #2e2c2d !important;
  border-color: #2e2c2d !important;
}
.sppb-btn-success:hover {
  background-color: #ffb72f !important;
  border-color: #ffb72f !important;
}
/* Column Title */
.sppb-addon-header.sppb-text-center h2 {
  color: #2f2c2c;
  font-size: 44px;
}
.sppb-addon-header.sppb-text-center h2 small {
  color: #b4b4b4;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  margin-bottom: 14px;
}
.sppb-addon-header.sppb-text-center h2 span {
  color: #17715a;
}
.sppb-addon-header.no-border .animated-border {
  display: none;
}
.section-title.no-border {
  font-size: 36px;
  text-align: center;
}
/* Animated Border */
.animated-border {
  position: relative;
  display: block;
  width: 115px;
  height: 3px;
  background: #17715a;
  margin-top: 27px;
  margin-bottom: 42px;
}
.animated-border:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  left: 5%;
  bottom: 0;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  animation: animborder 2s linear infinite;
}
.title-border-gray .animated-border:after {
  border-left-color: #f7f9f8;
  border-right-color: #f7f9f8;
}
.title-light .animated-border:after {
  border-left-color: #28bba1;
  border-right-color: #28bba1;
}
.bottom-border {
  display: block;
  margin-bottom: 52px;
  position: relative;
  line-height: 0;
}
.bottom-border:before, .bottom-border:after {
  left: 0;
  content: "";
  position: absolute;
  bottom: -25px;
  height: 3px;
  background: #fa6742;
  width: 50px;
}
.bottom-border:before {
  width: 3px;
  left: 6px;
  background: white;
  z-index: 1;
}
.sppb-addon-header.sppb-text-center .animated-border {
  margin-left: auto;
  margin-right: auto;
}
@-webkit-keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px);
  }
}
@keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px);
  }
}
/* Text Color */
.slider-orange-color {
  color: #fa6742 !important;
}
.slider-black-color {
  color: #2e2c2d;
}
.text-secondary {
  color: #fa6742 !important;
}
#sp-top-bar {
  padding: 10px 0;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  #sp-top-bar {
    border-bottom: 1px solid #f2f2f2;
  }
}
#sp-top-bar .sp-module {
  display: inline-block;
  margin: 0 0 0 1.25rem;
}
ul.social-icons {
  list-style: none;
  padding: 0;
  margin: -5px;
  display: inline-block;
}
ul.social-icons > li {
  display: inline-block;
  margin: 5px 7px;
}
.sp-module-content .mod-languages ul.lang-inline {
  margin: 0;
  padding: 0;
}
.sp-module-content .mod-languages ul.lang-inline li {
  border: none;
  display: inline-block;
  margin: 0 5px 0 0;
}
.sp-module-content .mod-languages ul.lang-inline li a {
  padding: 0 !important;
}
.sp-module-content .mod-languages ul.lang-inline li > a:before {
  display: none;
}
.sp-module-content .latestnews > li > a > span {
  display: block;
  margin-top: 5px;
  font-size: 85%;
}
.sp-contact-info {
  list-style: none;
  padding: 0;
  margin: 0 -10px;
}
.sp-contact-info li {
  display: inline-block;
  margin: 0 10px;
  font-size: 90%;
  white-space: nowrap;
  font-size: 14px;
}
.sp-contact-info li span {
  margin-right: 5px;
}
.sp-contact-info li i {
  margin: 0 3px;
}
.contact-info-col .sppb-media-body {
  margin-left: 35px;
}
#sp-header {
  height: 100px;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 7px 8px 0px rgba(0, 0, 0, 0.06);
}
#sp-header .logo {
  height: 100px;
  display: inline-flex;
  margin: 0;
  align-items: center;
}
#sp-header .logo a {
  font-size: 24px;
  line-height: 1;
  margin: 0;
  padding: 0;
}
#sp-header .logo p {
  margin: 5px 0 0;
}
#sp-header.header-sticky {
  position: fixed;
  z-index: 9999;
}
#sp-title {
  min-height: 0;
}
.sp-page-title {
  padding: 145px 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
}
.sp-page-title .sp-page-title-heading, .sp-page-title .sp-page-title-sub-heading {
  margin: 0;
  padding: 0;
  color: #fff;
}
.sp-page-title .sp-page-title-heading {
  color: #fa6742;
  font-weight: 700;
}
.sp-page-title .sp-page-title-sub-heading {
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  margin-top: 10px;
}
.sp-page-title .breadcrumb {
  background: none;
  padding: 0;
  margin: 10px 0 0 0;
  justify-content: center;
}
.sp-page-title .breadcrumb > .active {
  color: #fa6742;
}
.sp-page-title .breadcrumb > span, .sp-page-title .breadcrumb > li, .sp-page-title .breadcrumb > li + li:before, .sp-page-title .breadcrumb > li > a {
  color: #fff;
}
.body-innerwrapper {
  overflow-x: hidden;
}
.layout-boxed .body-innerwrapper {
  max-width: 1240px;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#sp-main-body {
  padding: 100px 0;
}
.com-sppagebuilder #sp-main-body {
  padding: 0;
}
#sp-left .sp-module:first-child, #sp-right .sp-module:first-child {
  margin-top: 0;
}
#sp-left .sp-module ul, #sp-right .sp-module ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sp-left .sp-module ul > li, #sp-right .sp-module ul > li {
  display: block;
}
#sp-left .sp-module ul > li:last-child, #sp-right .sp-module ul > li:last-child {
  border-bottom: none;
}
#sp-left .sp-module .categories-module ul, #sp-right .sp-module .categories-module ul {
  margin: 0 10px;
}
#sp-left .sp-module .latestnews.recent-news > div, #sp-right .sp-module .latestnews.recent-news > div {
  overflow: hidden;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #dadada;
}
#sp-left .sp-module .latestnews.recent-news > div:last-child, #sp-right .sp-module .latestnews.recent-news > div:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
#sp-left .sp-module .latestnews.recent-news > div > a, #sp-right .sp-module .latestnews.recent-news > div > a {
  display: block;
  font-weight: 400;
}
#sp-left .sp-module .latestnews.recent-news > div div, #sp-right .sp-module .latestnews.recent-news > div div {
  float: left;
  margin-right: 20px;
}
#sp-left .sp-module .latestnews.recent-news > div div > img, #sp-right .sp-module .latestnews.recent-news > div div > img {
  width: 75px;
  height: 60px;
  border-radius: 3px;
}
#sp-left .sp-module .latestnews.recent-news > div h4 a, #sp-right .sp-module .latestnews.recent-news > div h4 a {
  font-size: 15px;
  color: #757575;
  font-weight: 400;
  line-height: 1.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  float: left;
  width: 60%;
}
#sp-left .sp-module .latestnews.recent-news > div h4 a:hover, #sp-right .sp-module .latestnews.recent-news > div h4 a:hover {
  color: #17715a;
}
#sp-left .sp-module .tagscloud, #sp-right .sp-module .tagscloud {
  margin: -2px 0;
}
#sp-left .sp-module .tagscloud .tag-name, #sp-right .sp-module .tagscloud .tag-name {
  display: inline-block;
  padding: 5px 10px;
  background: #808080;
  color: #fff;
  border-radius: 4px;
  margin: 2px 0;
}
#sp-left .sp-module .tagscloud .tag-name span, #sp-right .sp-module .tagscloud .tag-name span {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.login img {
  display: inline-block;
  margin: 20px 0;
}
.login .checkbox input[type="checkbox"] {
  margin-top: 6px;
}
.form-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search .btn-toolbar {
  margin-bottom: 20px;
}
.search .btn-toolbar span.icon-search {
  margin: 0;
}
.search .btn-toolbar button {
  color: #fff;
}
.search .phrases .phrases-box .controls label {
  display: inline-block;
  margin: 0 20px 20px;
}
.search .phrases .ordering-box {
  margin-bottom: 15px;
}
.search .only label {
  display: inline-block;
  margin: 0 20px 20px;
}
.search .search-results dt.result-title {
  margin-top: 40px;
}
.search .search-results dt, .search .search-results dd {
  margin: 5px 0;
}
.filter-search .chzn-container-single .chzn-single {
  height: 34px;
  line-height: 34px;
}
.form-search .finder label {
  display: block;
}
.form-search .finder .input-medium {
  width: 60%;
  border-radius: 4px;
}
.finder .word input {
  display: inline-block;
}
.finder .search-results.list-striped li {
  padding: 20px 0;
}
.article-list .article {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #f5f5f5;
  border-radius: 3px;
}
.article-list .article .article-intro-image, .article-list .article .article-featured-video, .article-list .article .article-featured-audio, .article-list .article .article-feature-gallery {
  margin: -20px -20px 20px -20px;
  border-radius: 3px 3px 0 0;
  border-bottom: 1px solid #f5f5f5;
  overflow: hidden;
}
.article-list .article .article-intro-image img, .article-list .article .article-featured-video img, .article-list .article .article-featured-audio img, .article-list .article .article-feature-gallery img {
  border-radius: 3px 3px 0 0;
}
.article-list .article .article-header h1, .article-list .article .article-header h2 {
  font-size: 1.375rem;
  margin: 0 0 1.25rem 0;
}
.article-list .article .article-header h1 a, .article-list .article .article-header h2 a {
  color: #757575;
}
.article-list .article .article-header h1 a:hover, .article-list .article .article-header h2 a:hover, .article-list .article .article-header h1 a:active, .article-list .article .article-header h2 a:active, .article-list .article .article-header h1 a:focus, .article-list .article .article-header h2 a:focus {
  color: #17715a;
}
.article-list .article .readmore {
  font-size: 0.875rem;
}
.article-list .article .readmore a {
  color: #757575;
  font-weight: 500;
}
.article-list .article .readmore a:hover, .article-list .article .readmore a:active, .article-list .article .readmore a:focus {
  color: #17715a;
}
.article-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.article-info > span {
  font-size: 0.813rem;
}
.article-info > span + span::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  content: "/";
}
.article-info > span a {
  color: #757575;
}
.article-info > span a:hover {
  color: #17715a;
}
.article-details .article-header {
  position: relative;
}
.article-details .article-header h1, .article-details .article-header h2 {
  font-size: 2.25rem;
}
.article-details .link-edit-article {
  position: absolute;
  right: 0;
  top: 10px;
}
.article-details .article-info {
  margin-bottom: 1rem;
}
.article-details .article-full-image {
  text-align: center;
  margin-bottom: 2rem;
}
.article-details .article-full-image img {
  display: inline-block;
}
.article-details .article-featured-video, .article-details .article-featured-audio, .article-details .article-feature-gallery {
  margin-bottom: 2rem;
}
.article-details .article-ratings-social-share {
  padding: 1rem 0;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 1rem;
}
.article-details .article-author-information {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #f5f5f5;
}
.tags {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: block;
}
.tags > li {
  display: inline-block;
}
.tags > li a {
  display: block;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 6.25rem;
}
.tags > li a:hover {
  color: #fff;
}
.pager {
  list-style: none;
  padding: 2rem 0 0 0;
  margin: 2rem 0 0 0;
  border-top: 1px solid #f5f5f5;
}
.pager::after {
  display: block;
  clear: both;
  content: "";
}
.pager > li {
  display: inline-block;
}
.pager > li.previous {
  float: left;
}
.pager > li.next {
  float: right;
}
.pager > li a {
  display: inline-block;
  font-size: 0.785rem;
  padding: 1rem 2.5rem;
  border-radius: 100px;
}
#article-comments {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #f5f5f5;
}
.article-ratings {
  display: flex;
  align-items: center;
}
.article-ratings .rating-symbol {
  unicode-bidi: bidi-override;
  direction: rtl;
  font-size: 1rem;
  display: inline-block;
  margin-left: 5px;
}
.article-ratings .rating-symbol span.rating-star {
  font-family: "FontAwesome";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
}
.article-ratings .rating-symbol span.rating-star.active:before {
  content: "\f005";
  color: #f6bc00;
}
.article-ratings .rating-symbol span.rating-star:before {
  content: "\f006";
  padding-right: 5px;
}
.article-ratings .rating-symbol span.rating-star:hover:before, .article-ratings .rating-symbol span.rating-star:hover ~ span.rating-star:before {
  content: "\f005";
  color: #e7b000;
  cursor: pointer;
}
.article-ratings .ratings-count {
  font-size: 0.785rem;
  color: #999;
}
.article-ratings .fa-spinner {
  margin-right: 5px;
}
.pagination-wrapper {
  align-items: center;
}
.pagination-wrapper .pagination {
  margin-bottom: 0;
}
.article-social-share {
  float: right;
}
.article-social-share .social-share-icon ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.article-social-share .social-share-icon ul li {
  display: inline-block;
}
.article-social-share .social-share-icon ul li:not(:last-child) {
  margin-right: 10px;
}
.article-social-share .social-share-icon ul li a {
  border: 1px solid #ededed;
  font-size: 1rem;
  border-radius: 50%;
  height: 34px;
  line-height: 34px;
  text-align: center;
  width: 34px;
  display: inline-block;
}
.article-social-share .social-share-icon ul li a:hover, .article-social-share .social-share-icon ul li a:focus {
  color: #fff;
}
.newsfeed-category .category {
  list-style: none;
  padding: 0;
  margin: 0;
}
.newsfeed-category .category li {
  padding: 5px 0;
}
.newsfeed-category #filter-search {
  margin: 10px 0;
}
.category-module, .categories-module, .archive-module, .latestnews, .newsflash-horiz, .mostread, .form-links, .list-striped {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-module li, .categories-module li, .archive-module li, .latestnews li, .newsflash-horiz li, .mostread li, .form-links li, .list-striped li {
  padding: 2px 0;
}
.category-module li h4, .categories-module li h4, .archive-module li h4, .latestnews li h4, .newsflash-horiz li h4, .mostread li h4, .form-links li h4, .list-striped li h4 {
  margin: 5px 0;
}
.article-footer-top {
  display: table;
  clear: both;
  width: 100%;
}
.article-footer-top .post_rating {
  float: left;
}
.contentpane:not(.com-sppagebuilder) {
  padding: 20px;
}
#sp-bottom {
  padding: 60px 0 30px;
  font-size: 14px;
  line-height: 1.6;
}
#sp-bottom .sp-module {
  margin-bottom: 30px;
}
#sp-bottom .sp-module .sp-module-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 30px;
}
#sp-bottom .sp-module ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sp-bottom .sp-module ul > li {
  display: block;
  margin-bottom: 15px;
}
#sp-bottom .sp-module ul > li:last-child {
  margin-bottom: 0;
}
#sp-bottom .sp-module ul > li > a {
  display: block;
}
#sp-bottom .sppb-addon-social-media a {
  display: inline-block;
}
#sp-bottom .sppb-addon-social-media a i {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  color: #fff;
  background: #000;
  transition: all 0.3s;
}
#sp-bottom .sppb-addon-social-media a i.fa-facebook {
  background: #3b5999;
}
#sp-bottom .sppb-addon-social-media a i.fa-twitter {
  background: #55acee;
}
#sp-bottom .sppb-addon-social-media a i.fa-google-plus {
  background: #dd4b39;
}
#sp-bottom .sppb-addon-social-media a i.fa-linkedin-square {
  background: #0077b5;
}
#sp-bottom .sppb-addon-social-media a i.fa-pinterest {
  background: #bd081c;
}
#sp-bottom .sppb-addon-social-media a i:hover {
  background: #000;
}
#sp-footer .container-inner {
  padding: 30px 0;
}
#sp-footer ul.menu {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0 -10px;
}
#sp-footer ul.menu li {
  display: inline-block;
  margin: 0 10px;
}
#sp-footer ul.menu li a {
  display: block;
}
#sp-footer ul.menu li a:hover {
  background: none;
}
#sp-footer #sp-footer2 {
  text-align: right;
}
html.coming-soon {
  width: 100%;
  height: 100%;
  min-height: 100%;
}
html.coming-soon body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  box-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 40%;
}
html.coming-soon .coming-soon-logo {
  display: inline-block;
  margin-bottom: 2rem;
}
html.coming-soon #coming-soon-countdown {
  margin-top: 4rem;
}
html.coming-soon #coming-soon-countdown .coming-soon-days, html.coming-soon #coming-soon-countdown .coming-soon-hours, html.coming-soon #coming-soon-countdown .coming-soon-minutes, html.coming-soon #coming-soon-countdown .coming-soon-seconds {
  margin: 0;
  float: left;
  width: 25%;
}
html.coming-soon #coming-soon-countdown .coming-soon-days .coming-soon-number, html.coming-soon #coming-soon-countdown .coming-soon-hours .coming-soon-number, html.coming-soon #coming-soon-countdown .coming-soon-minutes .coming-soon-number, html.coming-soon #coming-soon-countdown .coming-soon-seconds .coming-soon-number {
  width: 100%;
  font-size: 4.5rem;
  letter-spacing: -1px;
  line-height: 1;
}
html.coming-soon #coming-soon-countdown .coming-soon-days .coming-soon-string, html.coming-soon #coming-soon-countdown .coming-soon-hours .coming-soon-string, html.coming-soon #coming-soon-countdown .coming-soon-minutes .coming-soon-string, html.coming-soon #coming-soon-countdown .coming-soon-seconds .coming-soon-string {
  font-size: 1.5rem;
  letter-spacing: -1px;
  display: block;
  text-transform: uppercase;
}
html.coming-soon .coming-soon-position {
  margin-top: 2rem;
}
html.coming-soon .social-icons {
  margin-top: 4rem;
}
html.error-page {
  width: 100%;
  height: 100%;
}
html.error-page body {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  box-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 40%;
}
html.error-page .error-logo {
  display: inline-block;
  margin-bottom: 2rem;
}
html.error-page .error-code {
  margin: 0 0 1rem;
  font-size: 6rem;
  line-break: 1;
}
html.error-page .error-message {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
.sp-social-share ul {
  display: block;
  padding: 0;
  margin: 20px -5px 0;
}
.sp-social-share ul li {
  display: inline-block;
  font-size: 24px;
  margin: 0 5px;
}
.profile > div:not(:last-child) {
  margin-bottom: 30px;
}
.dl-horizontal dt {
  margin: 8px 0;
  text-align: left;
}
.page-header {
  padding-bottom: 15px;
}
table.category {
  width: 100%;
}
table.category thead > tr, table.category tbody > tr {
  border: 1px solid #f2f2f2;
}
table.category thead > tr th, table.category tbody > tr th, table.category thead > tr td, table.category tbody > tr td {
  padding: 10px;
}
.contact-form .form-actions {
  background: none;
  border: none;
}
@media print {
  .visible-print {
    display: inherit !important;
  }
  .hidden-print {
    display: none !important;
  }
}
.sp-preloader {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}
.sp-preloader > div {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  position: absolute;
  animation: spSpin 0.75s linear infinite;
}
.sp-preloader > div:after {
  content: '';
  position: absolute;
  width: 49px;
  height: 49px;
  top: 1px;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
}
.sp-scroll-up {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: #333;
  border-radius: 3px;
  z-index: 1000;
}
.sp-scroll-up:hover, .sp-scroll-up:active, .sp-scroll-up:focus {
  color: #fff;
  background: #444;
}
.control-group {
  margin-bottom: 1rem;
}
select.form-control:not([multiple]), select.inputbox:not([multiple]), select:not([multiple]) {
  height: calc(2.25rem + 2px);
}
input[type="text"]:not(.form-control), input[type="email"]:not(.form-control), input[type="url"]:not(.form-control), input[type="date"]:not(.form-control), input[type="password"]:not(.form-control), input[type="search"]:not(.form-control), input[type="tel"]:not(.form-control), input[type="number"]:not(.form-control), select:not(.form-control) {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
input[type="text"]:not(.form-control):focus, input[type="email"]:not(.form-control):focus, input[type="url"]:not(.form-control):focus, input[type="date"]:not(.form-control):focus, input[type="password"]:not(.form-control):focus, input[type="search"]:not(.form-control):focus, input[type="tel"]:not(.form-control):focus, input[type="number"]:not(.form-control):focus, select:not(.form-control):focus {
  border-color: transparent;
  outline: 0;
}
.chzn-select, .chzn-select-deselect {
  width: 100%;
}
.chzn-container.chzn-container-single .chzn-single {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  height: calc(2.25rem + 2px);
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  box-shadow: none;
}
.chzn-container.chzn-container-single .chzn-single div {
  width: 30px;
  background: none;
}
.chzn-container.chzn-container-single .chzn-single div > b {
  background: none;
  position: relative;
}
.chzn-container.chzn-container-single .chzn-single div > b:after {
  content: "\f0dc";
  font-family: FontAwesome;
  font-size: 0.875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.chzn-container.chzn-container-single.chzn-container-active.chzn-with-drop .chzn-single {
  border-radius: 0.25rem 0.25rem 0 0;
}
.chzn-container.chzn-container-single .chzn-search {
  padding: 0.625rem;
}
.chzn-container.chzn-container-single .chzn-search input[type="text"] {
  display: block;
  width: 100%;
  padding: 0.5rem 1.429rem 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25;
  height: calc(2rem + 2px);
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.chzn-container.chzn-container-single .chzn-search input[type="text"]:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}
.chzn-container.chzn-container-single .chzn-search:after {
  content: "\f002";
  font-family: FontAwesome;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, .2);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.chzn-container.chzn-container-single .chzn-drop {
  border-color: rgba(0, 0, 0, .15);
  border-radius: 0 0 0.25rem 0.25rem;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.chzn-container.chzn-container-single .chzn-results li.highlighted {
  background-image: none !important;
}
.chzn-container.chzn-container-multi .chzn-choices {
  display: block;
  width: 100%;
  padding: 0 0.75rem;
  min-height: calc(2.25rem + 2px);
  line-height: 1.25;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.chzn-container.chzn-container-multi .chzn-choices li.search-field input[type="text"] {
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.25;
  height: calc(2rem + 2px);
  background-color: #fff;
}
.chzn-container.chzn-container-multi .chzn-choices li.search-choice {
  margin: 5.5px 5px 0 0;
  padding: 5px 20px 5px 5px;
  background-image: none;
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, .1);
  box-shadow: none;
  -webkit-box-shadow: none;
}
.chzn-container.chzn-container-multi .chzn-choices li.search-choice .search-choice-close {
  background: none;
  top: 5px;
  color: rgba(0, 0, 0, .2);
}
.chzn-container.chzn-container-multi .chzn-choices li.search-choice .search-choice-close:hover {
  color: rgba(0, 0, 0, .5);
}
.chzn-container.chzn-container-multi .chzn-choices li.search-choice .search-choice-close:after {
  content: "\f00d";
  font-family: FontAwesome;
  font-size: 0.875rem;
  position: absolute;
  top: 0;
  right: 0;
}
.chzn-container.chzn-container-multi.chzn-with-drop.chzn-container-active .chzn-choices {
  border-radius: 0.25rem;
}
.chzn-container.chzn-container-multi.chzn-with-drop .chzn-drop {
  margin-top: -4px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.chzn-container.chzn-container-multi.chzn-with-drop .chzn-drop .chzn-results:not(:empty) {
  padding: 0.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .15);
  border-top: 0;
  border-radius: 0 0 0.25rem 0.25rem;
}
.chzn-container.chzn-container-multi.chzn-with-drop .chzn-drop .chzn-results li.no-results {
  background: none;
}
.form-horizontal .control-label {
  float: left;
  width: auto;
  padding-top: 5px;
  padding-right: 5px;
  text-align: left;
}
.form-horizontal .controls {
  margin-left: 220px;
}
.card-block {
  padding: 20px;
}
.card-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
.card-block ul li {
  display: block;
}
.alert.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
/* Modified SCSS */
.main-carousel.carousel-dark-bg .sppb-carousel-arrow {
  color: #fff;
}
.main-carousel .sppb-carousel-item-inner {
  z-index: 1;
}
@media (min-width: 1199px) {
  .main-carousel .sppb-carousel-item-inner {
    width: 1140px !important;
    padding: 0 15px !important;
    transform: translateX(-50%);
    left: 50% !important;
  }
}
.main-carousel .sppb-carousel-item-inner .sppb-row {
  align-items: center;
}
.main-carousel .sppb-carousel-inner .slider-black-color {
  color: #2e2c2d;
}
.main-carousel .sppb-carousel-inner .slider-orange-color {
  color: #fa6742;
}
.main-carousel .sppb-carousel-inner .slider-gray-color {
  color: #757575;
}
.main-carousel .sppb-carousel-inner .sppb-carousel-pro-content {
  color: #fff;
}
.main-carousel .sppb-carousel-arrow {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #000;
  left: 18px;
  margin-top: -25px;
  transition: all 0.3s ease;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.main-carousel .sppb-carousel-arrow.right {
  left: auto;
  right: 0px;
}
.main-carousel:hover .sppb-carousel-arrow {
  opacity: 1;
  visibility: visible;
}
.main-carousel:hover .sppb-carousel-arrow.left {
  left: 30px;
}
.main-carousel:hover .sppb-carousel-arrow.right {
  right: 30px;
}
@media (max-width: 767px) {
  .main-carousel .sppb-btn {
    margin-bottom: 40px;
  }
}
/* Revolution Slider Arrow */
.tparrows.preview2 {
  background: rgba(0, 0, 0, .5);
}
.tp-leftarrow.preview2:after {
  content: '\e875';
  font-family: "iconfont";
  color: #fff;
}
.tp-rightarrow.preview2:after {
  content: "\e876";
  font-family: "iconfont";
  color: #fff;
}
@media (max-width: 991px) {
  .slider-btn-1 {
    margin-left: -25px !important;
  }
}
@media (max-width: 767px) {
  .slider-btn-1 {
    margin-left: -25px !important;
  }
}
@media (max-width: 991px) {
  .rev_slider .sppb-btn {
    font-size: 12px !important;
  }
}
@media (max-width: 767px) {
  .rev_slider .sppb-btn {
    font-size: 12px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
/* Features
 ============================== */
.sppb-addon-content .features-text {
  padding-left: 43px;
  margin-left: 12px;
  border-left: 2px solid #fa6742;
  padding-right: 10px;
}
.features-box {
  transition: all 0.3s linear;
}
.features-box:hover {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1) !important;
}
.features-box .sppb-addon-text p {
  margin-bottom: 0;
}
/* Feature Box Classic */
.features-box-classic {
  position: relative;
  z-index: 1;
}
.features-box-classic .sppb-img-container img {
  height: 120px;
}
.features-box-classic:after {
  position: absolute;
  content: "";
  right: -15px;
  top: 50%;
  width: 1px;
  height: 50%;
  background: #eee;
  margin-top: -25%;
}
.ts-features [class*="sppb-col"]:last-child .features-box-classic:after {
  display: none;
}
/* Acymailing */
.newsletter-form .acymailing_form input {
  border-radius: 50px !important;
  padding: 16px 50px !important;
  color: #bbbfc4;
  border-color: transparent;
}
.newsletter-form .acymailing_form .acyfield_email, .newsletter-form .acymailing_form .acyfield_name {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-right: -48px;
}
.newsletter-form .acymailing_form .acyfield_email:after, .newsletter-form .acymailing_form .acyfield_name:after {
  position: absolute;
  content: "";
  width: 55px;
  height: 55px;
  background: #fa6742;
  display: block;
  border-radius: 100%;
  top: 0;
  right: 0;
}
.newsletter-form .acymailing_form .acysubbuttons .btn-primary {
  padding: 15px 50px !important;
  display: inline-block;
  z-index: 2;
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  background: #2f2c2c;
  color: #fff;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.ts-website-checker {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ts-website-checker:before {
  position: absolute;
  top: 50%;
  left: -50%;
  width: 150%;
  height: 100px;
  content: "";
  background: rgba(255, 255, 255, 0.541);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
  opacity: 0;
  visibility: hidden;
}
.ts-website-checker:after {
  position: absolute;
  top: 50%;
  left: -50%;
  width: 150%;
  height: 100px;
  content: "";
  background: rgba(255, 255, 255, 0.541);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
  opacity: 0;
  visibility: hidden;
  left: auto;
  right: -50%;
}
.ts-website-checker:hover:before {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.ts-website-checker:hover:after {
  right: 100%;
  visibility: visible;
  opacity: 1;
}
.ts-website-checker form {
  max-width: 80%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .ts-website-checker form {
    margin-left: 218px;
  }
}
.ts-website-checker form .control-group {
  float: left;
  width: 28%;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ts-website-checker form .control-group {
    width: 38%;
  }
}
.ts-website-checker form .control-group .controls {
  position: relative;
  margin-right: -30px;
}
@media (max-width: 991px) {
  .ts-website-checker form .control-group .controls {
    margin-right: 0;
  }
}
.ts-website-checker form .control-group .controls input {
  border-radius: 50px;
  padding: 15px 30px;
  border: none;
  position: relative;
}
.ts-website-checker form .control-group .controls input:after {
  position: absolute;
  top: -2px;
  right: -5px;
  width: 58px;
  height: 58px;
  background: #fa6742;
  display: block;
  content: "";
  border-radius: 100%;
}
.ts-website-checker form .control-group .controls:after {
  position: absolute;
  top: -4px;
  right: -18px;
  width: 58px;
  height: 58px;
  background: #fa6742;
  display: block;
  content: "";
  border-radius: 100%;
}
@media (max-width: 991px) {
  .ts-website-checker form .control-group .controls:after {
    display: none;
  }
}
.ts-website-checker form .control-group .controls label {
  display: none !important;
}
@media (max-width: 991px) {
  .ts-website-checker form .control-group {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .ts-website-checker form .controls {
    text-align: center;
  }
}
.ts-website-checker .control-group .alert {
  text-align: center;
  max-width: fit-content;
  margin: 0 auto;
}
.ts-website-checker .control-group .alert p {
  margin-bottom: 0;
  text-align: center;
}
.ts-website-checker .submit {
  font-size: 14px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  background: #2f2c2c;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border: none;
  position: relative;
  z-index: 2;
}
.ts-website-checker .submit span {
  display: none;
}
.ts-website-checker .submit.btn-primary:hover {
  background: #ffb72f;
}
/* Intro */
.intro-bg-pattern {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.intro-bg-pattern:after {
  position: absolute;
  content: "";
  top: -125px;
  left: 0;
  background: url('../images/intro/intro-pattern.png');
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 100%;
}
/* Fun Facts */
.sppb-addon-animated-number {
  font-weight: 700;
}
.animated-pattern {
  position: relative;
  z-index: 2;
}
.animated-pattern:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/funfacts/arrow_left.png);
  background-repeat: no-repeat;
  background-position: left center;
  z-index: -1;
}
.animated-pattern:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/funfacts/arrow_right.png);
  background-repeat: no-repeat;
  background-position: right center;
  z-index: -1;
}
@media (max-width: 767px) {
  .animated-pattern:after, .animated-pattern:before {
    display: none;
  }
}
/* Service */
.tw-services .sppb-addon-article {
  margin-bottom: 60px;
}
.tw-services .sppb-addon-article img {
  margin: 0 auto 30px;
  height: 110px;
}
.tw-services .sppb-addon-article h3 a {
  color: #2f2c2c;
  font-weight: 700;
}
.tw-services .sppb-addon-article .sppb-article-introtext {
  padding: 0 50px;
  margin-top: 15px;
}
.tw-services .sppb-addon-article .sppb-readmore {
  font-weight: 700;
  position: relative;
  font-size: 16px;
}
.tw-services .sppb-addon-article .sppb-readmore:after {
  content: "\f105";
  margin-left: 10px;
  position: relative;
  top: 1px;
  font-family: fontAwesome;
  font-weight: 300;
}
.tw-services .sppb-addon-article:hover h3 a {
  color: #fa6742;
}
/* Case Study
 =============================================*/
.tw-case-study .sppb-addon-article {
  transition: all 0.3s ease;
  background: #fff;
}
.tw-case-study .sppb-addon-article h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  padding: 20px 15px 0;
}
.tw-case-study .sppb-addon-article h3 a {
  color: #2f2c2c;
}
.tw-case-study .sppb-addon-article .sppb-article-introtext {
  margin-bottom: -20px;
  color: #b4b4b4;
}
.tw-case-study .sppb-addon-article:hover {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.06);
}
.tw-case-study .sppb-addon-article:hover h3 a {
  color: #fa6742;
}
.tw-case-study .sppb-btn {
  margin-top: 30px;
}
.ts-case {
  background-position: 50% 60% !important;
}
.ts-case .ts-single-case .sppb-addon-single-image {
  max-width: 410px;
}
.ts-case .ts-single-case .sppb-addon-single-image .sppb-addon-title {
  text-align: center;
}
.ts-case .ts-single-case .sppb-addon-single-image.case-img-right {
  margin-left: auto;
}
/* Work Process
 ====================================*/
.ts-work-process {
  background-image: url('../images/work_process_arrow.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: inherit;
  background-position: 50% 50%;
}
@media (max-width: 991px) {
  .ts-work-process {
    background-image: none;
  }
}
@media (max-width: 767px) {
  .ts-work-process {
    background-image: none;
  }
}
/* Work Process Classic */
.tw-work-process .sppb-row {
  counter-reset: work-count;
}
.work-process-classic [id*="sppb-addon"]:not(:last-child) {
  width: 225px;
  height: 225px;
  line-height: 225px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.work-process-classic [class*="sppb-col"] {
  position: relative;
  z-index: 1;
  counter-increment: work-count;
}
.work-process-classic [class*="sppb-col"]:after {
  position: absolute;
  top: 15px;
  right: 25px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  background: #fa6742;
  content: counter(work-count);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
/* Testimonial
 ===============================================*/
/* Testimonial bg*/
.testimonial-bg {
  position: relative;
  z-index: 2;
}
.testimonial-bg span.icon {
  position: absolute;
  right: 0;
  bottom: 40px;
  color: #663d32;
  font-size: 50px;
}
.testimonial-bg .sppb-text-center {
  text-align: left;
}
.testimonial-bg .sppb-carousel-inner p {
  padding: 10px 0;
}
.testimonial-bg .sppb-carousel-indicators {
  position: absolute;
  bottom: -85px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-bg .sppb-carousel-indicators li {
  width: 7px;
  height: 7px;
  display: inline-flex;
  background: #362f2d;
  border-radius: 50%;
  margin: 3px;
}
.testimonial-bg .sppb-carousel-indicators li.active {
  width: 11px;
  height: 11px;
  background: #fff;
  border-color: #fff;
}
.testimonial-bg .sppb-addon-testimonial-pro-footer {
  display: flex;
  align-items: center;
}
.testimonial-bg .sppb-addon-testimonial-pro-footer img {
  width: 65px;
  height: 65px;
}
.testimonial-bg strong {
  color: #ffb72f;
  font-weight: 600;
  font-size: 20px;
  margin-left: 5px;
}
.testimonial-bg strong span {
  display: block;
  font-size: 14px;
  color: #c3c1c0;
  font-weight: 400;
}
.testimonial-bg:before {
  position: absolute;
  top: 110px;
  left: 23px;
  width: 98%;
  height: 60%;
  content: "";
  background: #f46540;
  -webkit-transform: rotate(-6deg);
  transform: rotate(-7deg);
}
/* Testimonial Static */
.testimonial-static .sppb-addon-testimonial-review p {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.testimonial-static .sppb-addon-testimonial-review p:after {
  position: absolute;
  right: 0;
  content: "\e937";
  font-family: iconfont;
  color: #fbb2a0;
  font-size: 25px;
}
.testimonial-static .sppb-addon-testimonial-footer .sppb-addon-testimonial-client {
  margin-left: 20px;
}
.testimonial-static .sppb-addon-testimonial-footer .sppb-addon-testimonial-client strong {
  color: #fa6742;
  font-size: 20px;
}
.testimonial-static .sppb-addon-testimonial-footer .sppb-addon-testimonial-client span {
  display: block;
  font-size: 14px;
  color: #c3c1c0;
  font-weight: 400;
  margin-top: -5px;
}
/* Testimonial Secondary */
.testimonial-secondary .sppb-addon-testimonial-review p {
  font-style: italic;
}
.testimonial-secondary .sppb-addon-testimonial-client {
  padding-left: 13px;
}
.testimonial-secondary .sppb-addon-testimonial-client strong {
  font-size: 20px;
}
.testimonial-secondary .sppb-addon-testimonial-client span {
  font-size: 14px;
  color: #c3c1c0;
  font-weight: 400;
}
.testimonial-secondary .sppb-addon-testimonial-footer {
  margin-top: 25px;
}
.testimonial-secondary .sppb-addon-testimonial-footer {
  position: relative;
}
.testimonial-secondary .sppb-addon-testimonial-footer:after {
  content: "\e937";
  font-family: "iconfont";
  position: absolute;
  right: 0;
  font-size: 50px;
  color: #fa6742;
  top: 15px;
}
/* Testimonial Classic */
.testimonial-classic .sppb-carousel span {
  font-size: 50px;
  color: #fcccc0;
}
.testimonial-classic .sppb-testimonial-message {
  font-size: 18px;
  font-style: italic;
  padding: 10px 0;
  line-height: 28px;
}
.testimonial-classic .sppb-addon-testimonial-pro-footer {
  margin-bottom: 20px;
}
.testimonial-classic .sppb-addon-testimonial-pro-footer img {
  display: block;
  margin: 0 auto 20px;
}
.testimonial-classic .sppb-addon-testimonial-pro-footer strong {
  font-weight: 600;
  font-size: 20px;
  color: #fa6742;
}
.testimonial-classic .sppb-addon-testimonial-pro-footer strong small {
  display: block;
  font-size: 14px;
  color: #c3c1c0;
  font-weight: 400;
}
.testimonial-classic .sppb-carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-classic .sppb-carousel-indicators li {
  width: 7px;
  height: 7px;
  background: #cdcbca;
  border: none !important;
  display: inline-block;
  margin: 4px;
}
.testimonial-classic .sppb-carousel-indicators li.active {
  width: 11px;
  height: 11px;
  background: #362f2d !important;
  margin: 4px;
}
/* Tab */
.pricing-tab .sppb-nav.sppb-nav-pills {
  width: 350px;
  margin: 0 auto 80px;
  border: 1px solid #e9e9e9;
  border-radius: 50px;
  display: flex;
}
.pricing-tab .sppb-nav.sppb-nav-pills > li {
  width: 50%;
  text-align: center;
}
.pricing-tab .sppb-nav.sppb-nav-pills > li > a {
  border-radius: 25px;
  position: relative;
  padding: 14px 0;
  display: block;
  color: #2f2c2c;
  font-weight: 700;
  border-radius: 50px;
}
.pricing-tab .sppb-nav.sppb-nav-pills > li.active a {
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1);
  background: #fa6742;
  color: #fff !important;
}
.pricing-tab .sppb-nav.sppb-nav-pills > li a {
  font-size: 16px;
}
.pricing-tab .sppb-tab-content > .active {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.pricing-tab .sppb-tab-content > .active div {
  width: 100%;
}
.pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"] {
  background-position: top 50px center;
  background-size: 35% !important;
  padding-top: 135px;
  padding-bottom: 40px !important;
  border-radius: 10px;
  transition: all 0.3s;
}
.pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"] .sppb-pricing-title, .pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"] .sppb-pricing-price {
  transition: all 0.3s;
}
.pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"] .sppb-addon-pricing-table {
  margin-top: 135px;
}
.pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"] .sppb-addon-pricing-table .sppb-pricing-price {
  font-weight: 700;
  color: #2f2c2c;
}
.pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"] .sppb-addon-pricing-table .sppb-pricing-price small {
  font-size: 14px;
  color: #757575;
}
.pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"] .sppb-addon-pricing-table .sppb-pricing-price .sppb-pricing-price-symbol {
  position: relative;
  top: -5px;
  left: -2px;
}
.pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"]:nth-child(2) {
  padding-bottom: 70px !important;
  position: relative;
}
.pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"]:hover {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1) !important;
}
.pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"]:hover .sppb-pricing-title {
  color: #fa6742 !important;
}
.pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"]:hover .sppb-pricing-price:not(small) {
  color: #fa6742;
}
.pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"]:hover .sppb-btn {
  border-color: #fa6742;
  background: #fa6742;
  color: #fff;
}
@media (max-width: 767px) {
  .pricing-tab .sppb-tab-content > .active div[id*="sppb-addon"] {
    margin-bottom: 40px !important;
    background-size: 115px !important;
    padding-top: 140px;
  }
}
@media (max-width: 767px) {
  .pricing-tab .sppb-tab-content > .active {
    flex-wrap: wrap;
  }
}
/* Team
 ===================================== */
.ts-team .sppb-addon-content:hover .sppb-person-name {
  color: #fa6742 !important;
}
.ts-team .sppb-person-information .sppb-person-name {
  font-size: 24px !important;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ts-team .sppb-person-information .sppb-person-designation {
  font-size: 16px !important;
}
.ts-team .sppb-person-social li a i {
  display: inline-block;
  margin: 0 7px;
  font-size: 20px;
}
.ts-team .sppb-person-social li a i.fa-facebook {
  color: #3b5998;
}
.ts-team .sppb-person-social li a i.fa-twitter {
  color: #55acee;
}
.ts-team .sppb-person-social li a i.fa-linkedin {
  color: #0976b4;
}
.ts-team .sppb-person-social li a i.fa-instagram {
  color: #b7242a;
}
/* Latest News */
.latest-news .sppb-addon-article {
  transition: all 0.3s linear;
  background: #fff;
  padding: 30px;
}
.latest-news .sppb-addon-article a img {
  margin-bottom: 20px;
}
.latest-news .sppb-addon-article h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}
.latest-news .sppb-addon-article h3 a {
  color: #2f2c2c;
}
.latest-news .sppb-addon-article .sppb-article-introtext {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-height: 85px;
}
.latest-news .sppb-addon-article .sppb-article-introtext p {
  margin-bottom: 0;
  font-size: 15px;
}
.latest-news .sppb-addon-article .sppb-article-meta span {
  font-size: 16px;
}
.latest-news .sppb-addon-article .sppb-article-meta .sppb-meta-author {
  color: #2f2c2c;
}
.latest-news .sppb-addon-article .sppb-article-meta .sppb-meta-date {
  color: #2f2c2c;
  font-weight: 400;
  margin-right: 5px;
  padding-right: 10px;
  border-right: 1px solid #ddd;
  line-height: 14px;
}
.latest-news .sppb-addon-article:hover {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}
.latest-news .sppb-addon-article:hover h3 a {
  color: #fa6742;
}
.latest-news .sppb-addon-article .article-img {
  display: block;
  margin: -30px -30px -10px -30px;
}
.latest-news .sppb-btn {
  width: fit-content;
  display: block;
  margin: 50px auto 0;
}
/* Footer */
.tw-footer-info-box {
  position: relative;
  z-index: 1;
}
.tw-footer-info-box .sppb-social-items-wrap {
  text-align: left;
  margin-top: 20px;
}
.tw-footer-info-box .sppb-social-items-wrap ul li {
  display: inline-block !important;
  margin: 0 !important;
  margin-right: 5px !important;
}
.tw-footer-info-box .sppb-social-items-wrap ul li a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  margin-right: 5px;
}
.footer-contact-info .sppb-img-container, .footer-contact-info .sppb-icon {
  float: left;
}
.footer-contact-info .sppb-addon-text {
  padding-left: 40px;
}
.footer-contact-info .sppb-addon-text h3 {
  margin-bottom: 0;
}
.footer-contact-info:after {
  content: "";
  display: block;
  clear: both;
}
.sppb-addon-header.title-border-black .animated-border:after {
  border-left-color: #171717;
  border-right-color: #171717;
}
.sppb-addon-header.title-border-black h2 {
  color: #fff;
}
.list-half ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.list-half ul li {
  width: 50%;
  margin-bottom: 18px !important;
}
.list-half ul li a {
  font-size: 16px;
}
.list-half ul li a:hover {
  color: #fa6742 !important;
}
.footer-subscriber .acymailing_form {
  position: relative;
  z-index: 2;
}
.footer-subscriber .acyfield_email input {
  padding: 14px 28px;
  border-radius: 50px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #868e96;
}
.footer-subscriber .acyfield_email input:focus {
  background: #2e2e2e;
  border-color: #2e2e2e;
}
.footer-subscriber .acysubbuttons {
  position: absolute;
  top: 0;
  right: 0;
}
.footer-subscriber .acysubbuttons input {
  padding: 12px 45px 12px 17px;
  border-radius: 0;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border: 1px solid #17715a;
  background: #17715a url(../images/newsletter-icon.png) no-repeat 40% 50%;
  color: #fff;
  text-indent: -999px;
}
.footer-subscriber .acysubbuttons input:focus {
  background: #17715a;
  border-color: transparent;
}
/* News Listing
 ============================================= */
.article-details h3 {
  padding: 20px 0;
}
.article-details .article-header {
  color: #2f2c2c;
}
.article-details .article-header h1 {
  font-size: 30px;
  margin: 25px 0;
}
.article-details .article-info span {
  color: #b4b4b4;
  font-size: 16px;
}
.article-details .article-info span a {
  color: #2f2c2c;
}
.article-details .article-info span a:hover {
  color: #fa6742;
}
.article-details .article-ratings {
  color: #b4b4b4;
}
.article-details .article-social-share a.facebook:hover {
  background: #3b5998;
}
.article-details .article-social-share a.twitter:hover {
  background: #00aced;
}
.article-details .article-social-share a.gplus:hover {
  background: #dd4b39;
}
.article-details .article-social-share a.linkedin:hover {
  background: #007bb6;
}
.article-details blockquote {
  background: #f5f5f5;
  padding: 80px 30px 30px 45px;
  position: relative;
  z-index: 2;
  margin-top: 40px;
}
.article-details blockquote p {
  font-size: 18px;
  color: #2f2c2c;
  line-height: 1.6;
  padding-top: 8px;
  padding-bottom: 20px;
}
.article-details blockquote cite {
  position: absolute;
  right: 25px;
  bottom: 25px;
  font-style: normal;
  color: #fa6742;
  font-weight: 700;
  font-size: 16px;
}
.article-details blockquote:after {
  position: absolute;
  top: 0;
  left: 40px;
  content: "\e937";
  font-family: iconfont;
  font-size: 60px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.article-details ul.list-round {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  border-bottom: 1px solid #f1f1f1;
}
.article-details ul.list-round li {
  padding-bottom: 15px;
}
.article-details ul.list-round li:before {
  font-family: fontAwesome;
  content: "\f111";
  font-size: 8px;
  color: #222;
  vertical-align: middle;
  margin-right: 15px;
  margin-top: -3px;
  display: inline-block;
}
#sp-right .sp-module, #sp-left .sp-module {
  padding: 40px;
  background: #f7f9f8;
  border-radius: 0;
  border: none;
  margin-bottom: 30px !important;
  margin-top: 0;
}
#sp-right .sp-module.search-module, #sp-left .sp-module.search-module {
  padding: 0 !important;
}
#sp-right .sp-module.search-module input, #sp-left .sp-module.search-module input {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 16px 25px;
  position: relative;
  z-index: 2;
  border: none;
}
#sp-right .sp-module.search-module .search, #sp-left .sp-module.search-module .search {
  position: relative;
}
#sp-right .sp-module.search-module .search:after, #sp-left .sp-module.search-module .search:after {
  content: "\e933";
  top: 50%;
  position: absolute;
  right: 15px;
  font-family: 'iconfont' !important;
  font-size: 20px;
  transform: translateY(-50%);
}
#sp-right .sp-module .animated-border.module-border, #sp-left .sp-module .animated-border.module-border {
  margin-top: 23px;
  margin-bottom: 50px;
}
#sp-right .sp-module .animated-border.module-border:after, #sp-left .sp-module .animated-border.module-border:after {
  border-left-color: #f7f9f8;
  border-right-color: #f7f9f8;
}
#sp-right .sp-module .sp-module-title, #sp-left .sp-module .sp-module-title {
  font-weight: 700;
  color: #2f2c2c;
  position: relative;
  z-index: 2;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: 28px;
}
#sp-right .sp-module .sp-module-content .categories-module li, #sp-left .sp-module .sp-module-content .categories-module li {
  display: block;
  border-bottom: 1px dashed #ddd;
  padding: 16px 0;
  position: relative;
}
#sp-right .sp-module .sp-module-content .categories-module li a, #sp-left .sp-module .sp-module-content .categories-module li a {
  color: #757575;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 400;
}
#sp-right .sp-module .sp-module-content .categories-module li a:hover, #sp-left .sp-module .sp-module-content .categories-module li a:hover {
  color: #fa6742;
}
#sp-right .sp-module .sp-module-content .categories-module li:last-child, #sp-left .sp-module .sp-module-content .categories-module li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
#sp-right .sp-module .sp-module-content .categories-module li:first-child, #sp-left .sp-module .sp-module-content .categories-module li:first-child {
  padding-top: 0;
}
#sp-right .sp-module.sidebar-ad, #sp-left .sp-module.sidebar-ad {
  padding: 0 !important;
}
#sp-right .sp-module.sidebar-ad img, #sp-left .sp-module.sidebar-ad img {
  width: 100%;
}
#sp-right .sp-module .tagspopular ul li, #sp-left .sp-module .tagspopular ul li {
  float: left;
  margin: 3px;
}
#sp-right .sp-module .tagspopular ul li a, #sp-left .sp-module .tagspopular ul li a {
  border: 1px solid #e2e2e2;
  color: #757575;
  display: inline-block;
  font-size: 14px;
  padding: 10px 20px;
  margin: 0 3px 3px 0;
  border-radius: 25px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#sp-right .sp-module .tagspopular ul li a:hover, #sp-left .sp-module .tagspopular ul li a:hover {
  background: #fa6742;
  color: #fff;
  border: 1px solid transparent;
}
#sp-right .sp-module .tagspopular:after, #sp-left .sp-module .tagspopular:after {
  display: block;
  content: "";
  clear: both;
}
#sp-right .sp-module .latestnews li, #sp-left .sp-module .latestnews li {
  margin-bottom: 15px;
  border-bottom: 1px dashed #dadada;
  padding-bottom: 15px;
}
#sp-right .sp-module .latestnews li a, #sp-left .sp-module .latestnews li a {
  font-size: 16px;
  color: #757575;
  font-weight: 400;
  line-height: 1.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#sp-right .sp-module .latestnews li a:hover, #sp-left .sp-module .latestnews li a:hover {
  color: #fa6742;
}
#sp-right .sp-module .latestnews li:last-child, #sp-left .sp-module .latestnews li:last-child {
  margin: 0;
  padding: 0;
}
.blog .article-list .readmore a {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 30px;
  border-radius: 50px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  position: relative;
  z-index: 99;
  background: #2e2c2d;
  border-color: #2e2c2d;
  color: #fff;
  font-weight: 700;
}
.blog .article-list .readmore a:hover {
  background: #ffb72f;
  border-color: #ffb72f;
  color: #fff;
}
/* Clients
 ==============================*/
.ts-client img {
  display: block !important;
  margin: 0 auto 40px;
}
/* Clients Carousel */
.clients-carousel .partner-logo {
  display: table;
  height: 100px;
  margin: 0 auto;
}
.clients-carousel .partner-logo a {
  display: table-cell;
  vertical-align: middle;
}
.clients-carousel .owl-dots {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.clients-carousel .owl-dots button {
  width: 7px;
  height: 7px;
  background: #cdcbca;
  display: inline-block;
  border-radius: 50%;
  margin: 4px;
}
.clients-carousel .owl-dots button.active {
  width: 11px;
  height: 11px;
  background: #362f2d;
}
/* Timeline
 ======================================= */
/* Timeline Default */
.sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper:before {
  border: 1px dashed #cbcbcb !important;
  background-color: transparent !important;
}
.sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-badge:after {
  display: none;
}
.sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-badge:before {
  width: 18px;
  height: 18px;
  background: #cbcbcb;
  border: none;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-date {
  font-size: 22px !important;
  line-height: 0 !important;
  transition: all 0.3s;
}
.sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-date span {
  display: block;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 60px;
  font-size: 22px;
}
.sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-movement .timeline-item .timeline-panel {
  width: 420px !important;
  margin-left: 30px !important;
}
.sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-movement .timeline-item .timeline-panel.left-part {
  margin-right: 30px !important;
}
.sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-movement .timeline-item .timeline-panel .details {
  font-size: 16px;
  line-height: 1.75;
  padding: 10px 10px 7px 20px;
}
.sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-movement:hover .timeline-badge:before {
  border: 8px solid #17715a !important;
  width: 28px !important;
  height: 28px !important;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(247, 102, 65, 0.4);
}
.sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-movement:hover .timeline-date {
  color: #17715a span;
  color-color: #17715a;
}
/* Faq
 ==================================== */
.ts-accordion .sppb-panel-modern {
  border-radius: 0;
  margin-bottom: 16px;
}
.ts-accordion .sppb-panel-modern > .sppb-panel-heading {
  background: none;
  padding: 10px 30px 10px 30px;
}
.ts-accordion .sppb-panel-modern .sppb-panel-body {
  padding-left: 30px;
  padding-top: 5px;
  border-top-color: transparent;
}
.ts-accordion .sppb-panel-modern .sppb-panel-heading .sppb-panel-title {
  color: #2f2c2c;
  font-size: 16px;
}
.ts-accordion .sppb-panel-modern .sppb-panel-heading.active .sppb-toggle-direction {
  transform: translateY(-50%) rotate(0deg);
}
.ts-accordion .sppb-panel-modern .sppb-panel-heading.active .sppb-toggle-direction i.fa-chevron-right:before {
  content: "\f068";
}
.ts-accordion .sppb-panel-modern .sppb-panel-heading .sppb-toggle-direction {
  margin-right: 15px;
}
.ts-accordion .sppb-panel-modern .sppb-panel-heading .sppb-toggle-direction i.fa-chevron-right:before {
  content: "\f067";
  color: #fa6742;
}
/* Contact Us */
.contact-us-form .sppb-form-group input {
  padding: 19px 30px;
  border-radius: 50px;
  border: 1px solid #f1f1f1;
}
.contact-us-form .sppb-form-group input:focus {
  border-color: #f1f1f1;
}
.contact-us-form .sppb-form-group textarea {
  padding: 19px 30px;
  border-radius: 25px;
  resize: none;
  border: 1px solid #f1f1f1;
}
.contact-us-form .sppb-form-group textarea:focus {
  border-color: #f1f1f1;
}
.contact-us-form .sppb-btn {
  margin-top: 30px;
  cursor: pointer;
}
/* Home  2
 ========================================= */
/* Top Bar */
#sp-top-bar.header-boxed-top {
  height: 90px;
  border-bottom: none;
}
/* Header */
#sp-header.header-boxed {
  position: absolute;
  top: 48px;
  width: 100%;
  background: none;
  box-shadow: none;
}
#sp-header.header-boxed.boxed-dark .container {
  background: #2f2c2c;
  border-radius: 4px;
}
#sp-header.header-boxed.boxed-dark .tw-search, #sp-header.header-boxed.boxed-dark #offcanvas-toggler {
  background: none;
}
#sp-header.header-boxed.boxed-dark .sp-megamenu-parent > li.active a {
  color: #fa6742;
}
#sp-header.header-boxed.boxed-dark .sp-megamenu-parent > li > a {
  color: #fff;
  line-height: 75px;
}
#sp-header.header-boxed.boxed-dark .sp-megamenu-parent > li > a:hover {
  color: #fa6742;
}
#sp-header.header-boxed.boxed-dark .sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
  color: #fff;
}
#sp-header.header-boxed.boxed-dark .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: #2f2c2c;
}
#sp-header.header-boxed.boxed-dark .sp-dropdown-mega.container {
  left: -285px;
  border-radius: 0;
  top: 70px;
}
#sp-header.header-boxed.boxed-dark .sp-dropdown-mega.container .sp-mega-group li a, #sp-header.header-boxed.boxed-dark .sp-dropdown-mega.container .sp-mega-group li p {
  color: #fff !important;
}
#sp-header.header-boxed.boxed-dark .sp-dropdown-mega.container .sp-mega-group li a:hover {
  color: #fa6742 !important;
}
@media (max-width: 1199px) and (min-width: 992px) {
  #sp-header.header-boxed.boxed-dark .sp-dropdown-mega.container {
    left: -240px;
  }
}
#sp-header.header-boxed.boxed-dark .tw-search {
  right: -27px;
  margin-top: 38px;
}
@media (max-width: 991px) {
  #sp-header.header-boxed.boxed-dark .tw-search {
    right: 70px;
  }
}
#sp-header.header-boxed.boxed-dark #offcanvas-toggler {
  right: -90px;
  margin-top: 13px;
}
@media (max-width: 991px) {
  #sp-header.header-boxed.boxed-dark #offcanvas-toggler {
    right: 7px;
  }
}
#sp-header.header-boxed.header-sticky {
  position: fixed;
  top: 0;
}
#sp-header.header-boxed .logo {
  height: 0;
  padding: 35px 0;
}
#sp-header.header-bg-white .tw-search {
  background: none;
}
#sp-header.header-bg-white .tw-search:after {
  height: 18px;
  top: 50%;
  transform: translateY(0);
  background: #e0e0e0;
  margin-top: -9px;
}
#sp-header.header-bg-white .tw-search i {
  color: #2f2c2c;
}
#sp-header.header-bg-white #offcanvas-toggler {
  background: none;
}
#sp-header.header-bg-white #offcanvas-toggler i {
  background: url("../images/menu_bar_dark.png");
}
.header-absolute.header-boxed {
  position: absolute;
  top: 95px;
  width: 100%;
  background: none;
  box-shadow: none;
  z-index: 2;
}
@media (max-width: 991px) {
  .header-absolute.header-boxed {
    top: 385px;
  }
}
@media (max-width: 767px) {
  .header-absolute.header-boxed {
    top: 350px;
  }
}
.header-absolute.header-boxed.boxed-dark .container {
  background: #2f2c2c;
  border-radius: 4px;
  height: 75px;
}
.header-absolute.header-boxed.boxed-dark .tw-search, .header-absolute.header-boxed.boxed-dark #offcanvas-toggler {
  background: none;
}
.header-absolute.header-boxed.boxed-dark .sp-megamenu-parent > li.active a {
  color: #fa6742;
}
.header-absolute.header-boxed.boxed-dark .sp-megamenu-parent > li > a {
  color: #fff;
  line-height: 75px;
}
.header-absolute.header-boxed.boxed-dark .sp-megamenu-parent > li > a:hover {
  color: #fa6742;
}
.header-absolute.header-boxed.boxed-dark .sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
  color: #fff;
}
.header-absolute.header-boxed.boxed-dark .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  background: #2f2c2c;
  box-shadow: none;
}
.header-absolute.header-boxed.boxed-dark .sp-megamenu-parent .ts-megamenu .sp-dropdown-inner {
  margin-left: -15px;
  margin-right: -15px;
}
.header-absolute.header-boxed.boxed-dark .sp-dropdown-mega.container {
  left: -285px;
  border-radius: 0;
  top: 70px;
}
.header-absolute.header-boxed.boxed-dark .sp-dropdown-mega.container .sp-mega-group li a, .header-absolute.header-boxed.boxed-dark .sp-dropdown-mega.container .sp-mega-group li p {
  color: #fff !important;
}
.header-absolute.header-boxed.boxed-dark .sp-dropdown-mega.container .sp-mega-group li a:hover {
  color: #fa6742 !important;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .header-absolute.header-boxed.boxed-dark .sp-dropdown-mega.container {
    left: -240px;
  }
}
.header-absolute.header-boxed.boxed-dark .tw-search {
  right: 64px;
  margin-top: 25px;
  color: #fff;
  position: absolute;
  cursor: pointer;
  padding-right: 23px;
}
@media (max-width: 991px) {
  .header-absolute.header-boxed.boxed-dark .tw-search {
    right: 70px;
  }
}
.header-absolute.header-boxed.boxed-dark .tw-search:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  background: #4e4b4b;
  width: 1px;
  height: 50%;
  margin-top: -25%;
}
.header-absolute.header-boxed.boxed-dark #offcanvas-toggler {
  right: -190px;
  margin-top: 13px;
  z-index: 2;
}
@media (max-width: 991px) {
  .header-absolute.header-boxed.boxed-dark #offcanvas-toggler {
    right: 7px;
  }
}
@media (min-width: 1200px) {
  .header-absolute.header-boxed.boxed-dark .sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-full {
    right: -426px !important;
  }
}
@media (max-width: 1199px) {
  .header-absolute.header-boxed.boxed-dark .sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-full {
    right: -344px !important;
  }
}
.header-absolute.header-boxed.header-sticky {
  position: fixed;
  top: 0;
}
.header-absolute.header-boxed .logo {
  height: 0;
  padding: 35px 0;
}
/* Home 3
 ============================================== */
/* Header */
#sp-header.header-boxed.header-full {
  background: #2f2c2c;
  height: auto;
}
/* Back to top */
.sp-scroll-up {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2e2e2e;
  border-color: #2e2e2e;
  display: none;
  z-index: 999;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sp-scroll-up span {
  font-size: 10px;
  display: inline-block;
  position: relative;
  top: -2px;
}
.sp-scroll-up:hover {
  background: #fa6742;
}
/* Home 4
 ===================================== */
#sp-top-bar.top-dark-bg {
  background: #1b1b21;
  color: #fff;
}
#sp-top-bar.top-dark-bg .social-icons li a {
  color: #fff;
}
#sp-top-bar.top-dark-bg .sp-contact-info a {
  color: #fff;
}
.top-bar-social {
  padding-top: 7px;
}
.top-bar-social a {
  font-size: 14px;
  padding-left: 20px;
}
@media (min-width: 992px) {
  #sp-header-right [class*="sppb-col"] {
    padding: 0;
  }
}
#sp-header-right .sppb-media-heading {
  margin-bottom: 2px;
}
/* Home 6
 ======================================== */
.top-social-links a {
  font-size: 14px;
  padding-left: 6px;
}
.top-bg-white {
  border-bottom: 1px solid #f2f2f2;
}
.header-absolute.header-boxed.header-full {
  background: #2f2c2c;
  top: 122px;
}
.header-absolute.header-boxed.header-full.header-sticky {
  top: 0;
}
.header-absolute.header-boxed.header-full .container {
  height: 70px;
}
.header-absolute.header-boxed.header-full .sp-megamenu-parent > li > a {
  line-height: 70px;
}
.header-absolute.header-boxed.header-full #offcanvas-toggler {
  margin-top: 10px;
}
.header-absolute.header-boxed.header-full .tw-search {
  margin-top: 23px;
}
/* Home 7
 ============================================== */
.header-absolute.header-boxed.boxed-dark.header-borderd .container {
  height: 70px;
}
.header-absolute.header-boxed.boxed-dark.header-borderd #sp-search {
  flex-basis: 160px;
  background: #fa6742;
  margin-left: 30px;
  border-left: 8px solid #f7f9f8;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.header-absolute.header-boxed.boxed-dark.header-borderd #offcanvas-toggler {
  margin-top: 10px;
}
.header-absolute.header-boxed.boxed-dark.header-borderd .tw-search {
  padding-right: 30px;
  margin-top: 23px;
  right: 70px;
}
.header-absolute.header-boxed.boxed-dark.header-borderd .tw-search:after {
  background: rgba(255, 255, 255, 0.5);
}
.header-absolute.header-boxed.boxed-dark.header-borderd .sp-megamenu-parent > li > a {
  line-height: 70px;
}
/* Home 8
 =============================================== */
.ts-website-checker.website-check-box form .control-group .controls {
  margin-right: 10px;
}
.ts-website-checker.website-check-box form .control-group .controls:after {
  display: none;
}
/*Module Variations
 ==================================*/
.module-variation {
  padding: 25px;
}
.variation-dark-bg {
  background: #2e2c2d;
}
.variation-dark-bg .sp-module-title {
  color: #fff;
}
.variation-dark-bg .animated-border:after {
  border-left-color: #2e2c2d;
  border-right-color: #2e2c2d;
}
.variation-dark-bg .sp-module-content p {
  color: #fff;
}
.variation-gray-bg {
  background: #f7f9f8;
}
.variation-gray-bg .sp-module-title {
  color: #2f2c2c;
}
.variation-gray-bg .animated-border:after {
  border-left-color: #f7f9f8;
  border-right-color: #f7f9f8;
}
.variation-gray-bg .sp-module-content p {
  color: #757575;
}
.variation-border {
  border: 5px dashed #f7f9f8;
}
.variation-border .sp-module-title {
  color: #2f2c2c;
}
.variation-border .sp-module-content p {
  color: #757575;
}
.variation-color {
  background: #fa6742;
}
.variation-color .sp-module-title {
  color: #fff;
}
.variation-color .animated-border {
  background: #fff;
}
.variation-color .animated-border:after {
  border-left-color: #fa6742;
  border-right-color: #fa6742;
}
.variation-color .sp-module-content p {
  color: #fff;
}
/******************** Start Page Builder Addons ***********************/
/**********************************************************************/
/* Pricing Table */
.sppb-addon-pricing-table .sppb-pricing-box .sppb-pricing-price {
  font-weight: 700;
}
.sppb-addon-pricing-table .sppb-pricing-box .sppb-pricing-price .sppb-pricing-price-symbol {
  font-size: 26px;
}
#sp-main-body.main-body-no-container {
  padding: 0;
}
#sp-main-body.main-body-no-container .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
#sp-main-body.main-body-no-container .container .sppb-row-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
#sp-main-body.main-body-no-container .container .article-details h3 {
  padding: 0;
}
.com-media.contentpane {
  padding: 10px !important;
}
.com-media .well {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.com-media .well .row {
  margin: 0;
  padding: 0;
}
.com-media .well .row > div:first-child {
  width: calc(100% - 200px);
}
.com-media .well .row > div:last-child {
  width: 200px;
  float: right;
  text-align: right;
  padding-top: 30px;
}
.com-media .well .row #folderlist {
  display: inline-block;
}
.com-media .well .row #upbutton {
  display: none;
}
.com-media.view-imagesList {
  padding: 0px 0px 10px 0 !important;
}
.com-media.view-imagesList:before {
  content: " ";
  display: table;
}
.com-media.view-imagesList:after {
  display: block;
  clear: both;
  content: "";
}
.com-media.view-imagesList ul.manager {
  list-style: none;
  padding: 0;
  margin: 0;
}
.com-media.view-imagesList ul.manager > li.thumbnail {
  width: 110px;
  float: left;
}
.com-media.view-imagesList ul.manager > li.thumbnail > a > div:first-child {
  height: 60px;
  margin-bottom: 10px;
  text-align: center;
}
.com-media.view-imagesList ul.manager > li.thumbnail > a > div:first-child > span {
  display: inline-block;
  width: 60px;
  height: 40px;
  margin: 0 auto;
  margin-top: 25px;
  position: relative;
  background-color: #92ceff;
  border-radius: 0 5px 5px 5px;
}
.com-media.view-imagesList ul.manager > li.thumbnail > a > div:first-child > span:before {
  content: '';
  width: 50%;
  height: 12px;
  border-radius: 0 20px 0 0;
  background-color: #92ceff;
  position: absolute;
  top: -12px;
  left: 0px;
}
.com-media.view-imagesList ul.manager > li.thumbnail > a > div:first-child img {
  display: inline-block;
}
#sp-menu {
  display: flex;
}
@media (min-width: 992px) {
  #sp-menu {
    position: relative !important;
  }
}
#offcanvas-toggler {
  position: absolute;
  right: -98px;
  margin-left: 0 !important;
  height: 50px !important;
  width: 63px;
  text-align: center;
  background: #000;
  float: none !important;
  line-height: 53px !important;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  margin-top: 25px;
}
#offcanvas-toggler i {
  color: #fff !important;
  text-indent: -9999px;
  width: 18px;
  height: 18px;
  background: url("../images/menu_bar.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
@media (max-width: 991px) {
  #offcanvas-toggler {
    right: 0px;
  }
}
#sp-header .tw-search {
  position: absolute;
  right: -35px;
  top: 0;
  transform: translateY(-50%);
  margin-top: 50px;
  width: 63px;
  height: 50px;
  line-height: 55px;
  text-align: center;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  background: #000;
  color: #fff;
}
#sp-header .tw-search i {
  cursor: pointer;
}
@media (max-width: 991px) {
  #sp-header .tw-search {
    right: 63px;
  }
}
#sp-header .tw-search:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50%;
  content: "";
  background: #4d4b4c;
  transform: translateY(50%);
}
.nav-search-form {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  height: 100%;
  z-index: 99;
  display: block !important;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}
.nav-search-form .inputbox.search-query {
  width: 50%;
  position: absolute;
  left: 50%;
  margin-left: -25%;
  top: 50%;
  padding: 15px 0px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 700;
  color: #fff;
  border-radius: 0;
}
.nav-search-form .inputbox.search-query:focus {
  border-color: #fff;
}
.nav-search-form .search-close {
  position: absolute;
  right: 40px;
  top: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  font-family: 'iconfont';
}
.nav-search-form.show {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.sp-megamenu-parent {
  list-style: none;
  padding: 0;
  margin: 0 -15px;
  z-index: 99;
  display: block;
  float: right;
  position: relative;
}
.sp-megamenu-parent > li {
  display: inline-block;
  position: relative;
  padding: 0;
}
.sp-megamenu-parent > li.menu-justify {
  position: static;
}
.sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
  display: inline-block;
  padding: 0 15px;
  line-height: 100px;
  font-size: 14px;
  margin: 0;
}
.sp-megamenu-parent > li .sp-menu-badge {
  height: 20px;
  line-height: 20px;
  padding: 0 5px;
  font-size: 10px;
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
  background: #d60000;
  color: #fff;
  border-radius: 3px;
}
.sp-megamenu-parent .sp-module {
  padding: 10px;
}
.sp-megamenu-parent .sp-mega-group {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-megamenu-parent .sp-mega-group > li > a {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}
.sp-megamenu-parent .sp-mega-group .sp-mega-group-child {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-megamenu-parent .sp-dropdown {
  margin: 0;
  position: absolute;
  z-index: 10;
  display: none;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner > .row:not(:first-child) {
  margin-top: 20px;
}
.sp-megamenu-parent .sp-dropdown .sp-dropdown-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-main {
  top: 100%;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-sub {
  top: 0;
}
.sp-megamenu-parent .sp-dropdown.sp-dropdown-sub .sp-dropdown-inner {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item {
  display: block;
  padding: 0;
  position: relative;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a, .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
  font-size: 14px;
  line-height: 1;
  display: block;
  padding: 8px 0;
  cursor: pointer;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a.sp-group-title, .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge).sp-group-title {
  text-transform: uppercase;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
  font-weight: 500 !important;
}
.sp-megamenu-parent .sp-dropdown .sp-module {
  padding: 0;
}
.sp-megamenu-parent .sp-dropdown .sp-module .sp-module-title {
  font-size: 14px;
  margin: 0 0 15px;
  text-transform: uppercase;
}
.sp-megamenu-parent .sp-dropdown .sp-module .latestnews {
  margin: 0;
}
.sp-megamenu-parent .sp-dropdown .sp-module .latestnews > li:not(:last-child) {
  margin: 0 0 15px;
}
.sp-megamenu-parent .sp-dropdown .sp-module .latestnews > li a {
  font-size: 14px;
}
.sp-megamenu-parent .sp-dropdown .sp-module .latestnews > li a span {
  opacity: 0.8;
}
.sp-megamenu-parent .sp-dropdown-mega > .row {
  margin-top: 30px;
}
.sp-megamenu-parent .sp-dropdown-mega > .row:first-child {
  margin-top: 0;
}
.sp-megamenu-parent .ts-megamenu .sp-dropdown-mega .sp-dropdown-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-left: 40px;
  padding-right: 40px;
}
.sp-megamenu-parent .ts-megamenu .sp-dropdown-mega .sp-dropdown-inner:after {
  position: absolute;
  right: -50px;
  content: "";
  bottom: -220px;
  height: 100%;
  width: 100%;
  background: url("../images/mega_menu/mega_menu.png");
  background-repeat: no-repeat;
  background-position: center right;
  z-index: -1;
}
.sp-megamenu-parent .item-header > a {
  font-size: 20px !important;
  color: #2e2c2d !important;
  padding-bottom: 3px;
  text-transform: capitalize !important;
}
.sp-megamenu-parent .sp-has-child:hover > .sp-dropdown {
  display: block;
}
.sp-megamenu-parent.menu-animation-fade .sp-has-child:hover > .sp-dropdown {
  animation: spFadeIn 600ms;
}
.sp-megamenu-parent.menu-animation-fade-up .sp-has-child:hover > .sp-dropdown {
  animation: spFadeInUp 400ms ease-in;
}
.sp-megamenu-parent.menu-animation-fade-down .sp-has-child:hover > .sp-dropdown {
  animation: spFadeInDown 400ms ease-in;
}
.sp-megamenu-parent.menu-animation-zoom .sp-has-child:hover > .sp-dropdown {
  animation: spZoomIn 300ms;
}
.sp-megamenu-parent.menu-animation-rotate .sp-has-child:hover > .sp-dropdown {
  animation: spRotateIn 300ms;
}
.sp-megamenu-parent.menu-animation-pulse .sp-has-child:hover > .sp-dropdown {
  animation: spPulse 300ms;
}
body.ltr .sp-megamenu-parent > li.sp-has-child > a:after, body.ltr .sp-megamenu-parent > li.sp-has-child > span:after {
  font-family: "FontAwesome";
  content: "\f107";
  float: right;
  margin-left: 7px;
}
body.ltr .sp-megamenu-parent > li .sp-menu-badge.sp-menu-badge-right {
  margin-left: 5px;
}
body.ltr .sp-megamenu-parent > li .sp-menu-badge.sp-menu-badge-left {
  margin-right: 5px;
}
body.ltr .sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child > a:after {
  font-family: "FontAwesome";
  content: "\f105";
  float: right;
  margin-left: 7px;
}
body.ltr .sp-megamenu-parent .sp-dropdown.sp-menu-center {
  margin-left: 45px;
}
body.ltr .sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-right {
  left: 0;
}
body.ltr .sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-full {
  left: auto;
  right: 0;
}
@media (min-width: 1199px) {
  body.ltr .sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-full {
    right: -160px;
  }
}
@media (min-width: 992px) {
  body.ltr .sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-full {
    right: -150px;
  }
}
body.ltr .sp-megamenu-parent .sp-dropdown.sp-dropdown-main.sp-menu-left {
  right: 0;
}
body.ltr .sp-megamenu-parent .sp-dropdown.sp-dropdown-sub {
  left: 100%;
}
@media (min-width: 576px) {
  .sp-menu-full.container {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .sp-menu-full.container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .sp-menu-full.container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .sp-menu-full.container {
    width: 1140px;
  }
}
/*Menu Active Hover*/
@media (min-width: 992px) {
  .sp-megamenu-parent > li > a {
    position: relative;
    z-index: 1;
  }
  .sp-megamenu-parent > li > a:before {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 3px;
    background: #17715a;
    bottom: 0;
    transition: all 0.3s;
  }
  .sp-megamenu-parent > li.active > a:before {
    content: "";
    position: absolute;
    left: 0;
    width: 98%;
    height: 3px;
    background: #17715a;
    bottom: 0;
  }
  .sp-megamenu-parent > li:hover > a:before {
    content: "";
    position: absolute;
    left: 0;
    width: 98%;
    height: 3px;
    background: #17715a;
    bottom: 0;
  }
}
/*Home Variation Menu Hover*/
#sp-header.header-boxed.boxed-dark .sp-megamenu-parent .sp-dropdown-inner .sp-dropdown-items li.active a {
  color: #17715a;
}
#sp-header.header-boxed.boxed-dark .sp-megamenu-parent > li.active a:hover, .header-absolute.header-boxed.boxed-dark .sp-megamenu-parent .sp-dropdown li.sp-menu-item > a:hover {
  color: #17715a;
}
.header-absolute.header-boxed.boxed-dark .sp-megamenu-parent .sp-dropdown li.sp-menu-item.active > a {
  color: #17715a;
}
#offcanvas-toggler {
  display: block;
  height: 100px;
  line-height: 100px;
  font-size: 20px;
}
#offcanvas-toggler > span:hover {
  color: #fff;
}
.offcanvas-init {
  overflow-x: hidden;
  position: relative;
}
.offcanvas-active .offcanvas-overlay {
  visibility: visible;
  opacity: 1;
}
.offcanvas-overlay {
  background: rgba(0, 0, 0, .5);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
  visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.body-wrapper {
  position: relative;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  backface-visibility: hidden;
}
.close-offcanvas {
  position: absolute;
  top: 15px;
  z-index: 1;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 22px;
}
.close-offcanvas span:before {
  content: "\e870";
  font-family: 'iconfont';
  color: #2e2c2d;
}
.offcanvas-menu {
  width: 300px;
  height: 100%;
  position: fixed;
  top: 0;
  overflow: inherit;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 10000;
}
.offcanvas-menu .offcanvas-inner {
  padding: 30px;
}
.offcanvas-menu .offcanvas-inner .sp-module {
  padding: 0;
  margin: 0;
}
.offcanvas-menu .offcanvas-inner .sp-module .sp-module-title {
  font-size: 1rem;
  font-weight: bold;
}
.offcanvas-menu .offcanvas-inner .sp-module:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas-menu .offcanvas-inner .sp-module ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li {
  border: 0;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: block;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li a, .offcanvas-menu .offcanvas-inner .sp-module ul > li span {
  display: block;
  font-size: 1rem;
  padding: 0.125rem 0;
  position: relative;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > a > .menu-toggler, .offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > .menu-separator > .menu-toggler {
  display: block;
  position: absolute;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-family: FontAwesome;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > a > .menu-toggler:after, .offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > .menu-separator > .menu-toggler:after {
  content: "\f105";
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent.menu-parent-open > a > .menu-toggler:after, .offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent.menu-parent-open > .menu-separator > .menu-toggler:after {
  content: "\f107";
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li ul {
  display: none;
}
.offcanvas-menu .offcanvas-inner .sp-module ul > li ul li a {
  font-size: 0.875rem;
}
body.ltr #offcanvas-toggler.offcanvas-toggler-right {
  float: right;
  margin-left: 20px;
}
body.ltr #offcanvas-toggler.offcanvas-toggler-left {
  float: left;
  margin-right: 20px;
}
body.ltr.offcanvs-position-left .body-wrapper {
  left: 0;
}
body.ltr.offcanvs-position-left .offcanvas-menu {
  left: -300px;
}
body.ltr.offcanvs-position-left.offcanvas-active .offcanvas-menu {
  left: 0;
}
body.ltr.offcanvs-position-left.offcanvas-active .body-wrapper {
  left: 300px;
}
body.ltr.offcanvs-position-right .body-wrapper {
  right: 0;
}
body.ltr.offcanvs-position-right .offcanvas-menu {
  right: -300px;
}
body.ltr.offcanvs-position-right.offcanvas-active .offcanvas-menu {
  right: 0;
}
body.ltr.offcanvs-position-right.offcanvas-active .body-wrapper {
  right: 300px;
}
body.ltr .close-offcanvas {
  right: 15px;
}
body.ltr .offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > a > .menu-toggler, body.ltr .offcanvas-menu .offcanvas-inner .sp-module ul > li.menu-parent > .menu-separator > .menu-toggler {
  right: 0;
}
body.ltr .offcanvas-menu .offcanvas-inner .sp-module ul > li ul {
  margin-left: 10px;
}
@keyframes spFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spFadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spZoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
@keyframes spRotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
@keyframes spPulse {
  from {
    opacity: 0;
    transform: scale3d(1, 1, 1);
  }
  50% {
    opacity: 0.5;
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes spSpin {
  to {
    transform: rotate(360deg);
  }
}
/* Responsive styles
 ================================================== */
/* Large Devices, Wide Screens */
/* Medium Devices, Desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Search */
  /* Top Bar */
  /* Menu */
  /* Slider */
  /* Work Process */
  /* Home 4 */
  .header-absolute.header-boxed.boxed-dark.header-borderd .tw-search, .header-absolute.header-boxed.boxed-dark.header-borderd #sp-search {
    display: none;
  }
  .sp-contact-info li {
    margin: 0 5px;
  }
  .sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span {
    padding: 0 10px;
  }
  .sp-megamenu-parent > li > a, .sp-megamenu-parent > li > span, .sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
    font-size: 16px !important;
  }
  .main-carousel .sppb-item.sppb-item-has-bg > img {
    min-height: 800px;
  }
  .work-process-classic [class*="sppb-col"]:after {
    display: none;
  }
  .header-absolute.header-boxed.boxed-dark #offcanvas-toggler {
    right: -160px;
  }
  .header-absolute.header-boxed {
    top: 120px;
  }
}
/* Small Devices, Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  /* Search */
  /* Slider */
  /* Call to Action */
  /* Case Study */
  /* Work Process */
  /* Timeline */
  /* Footer */
  /* Home 2 */
  /* Home 6 */
  .header-absolute.header-boxed.boxed-dark.header-borderd .tw-search, .header-absolute.header-boxed.boxed-dark.header-borderd #sp-search {
    display: none;
  }
  .main-carousel .sppb-item.sppb-item-has-bg > img {
    min-height: 450px;
  }
  .call-to-action .sppb-text-right {
    text-align: center;
  }
  .sppb-addon-content .features-text {
    margin-left: 5px;
  }
  .tw-services .sppb-addon-article .sppb-article-introtext {
    padding: 0;
  }
  .tw-case-study .sppb-addon-article h3 {
    padding: 15px 7px 0;
    font-size: 15px;
  }
  .tw-case-study .sppb-addon-article .sppb-article-introtext {
    font-size: 14px;
  }
  .tw-case-study .sppb-addon-article .sppb-article-introtext p {
    margin: 0;
  }
  .work-process-classic [class*="sppb-col"]:after {
    display: none;
  }
  .sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-movement .timeline-item .timeline-panel {
    width: 310px !important;
  }
  #sp-footer .sp-column {
    text-align: center !important;
  }
  #sp-top-bar.header-boxed-top {
    margin-bottom: 30px;
  }
  #sp-header.header-boxed {
    top: 75px;
  }
  .header-absolute.header-boxed.header-full {
    top: 385px;
  }
}
/* Small Devices Potrait */
@media (max-width: 767px) {
  /* Search */
  /* Slider */
  /* Call to Action */
  /* Testimonial */
  /* Case Study */
  /* Pricing */
  /* Work Process */
  /* Timeline */
  /* Footer */
  /* Home 2 */
  /* Home 6 */
  .header-absolute.header-boxed.boxed-dark.header-borderd .tw-search, .header-absolute.header-boxed.boxed-dark.header-borderd #sp-search {
    display: none;
  }
  .main-carousel .sppb-item.sppb-item-has-bg > img {
    min-height: 950px;
  }
  .sppb-item.sppb-item-has-bg .sppb-carousel-item-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .call-to-action .sppb-text-right {
    text-align: center;
  }
  .sppb-addon-content .features-text {
    margin-left: 5px;
  }
  .tw-services .sppb-addon-article .sppb-article-introtext {
    padding: 0;
  }
  .testimonial-static .sppb-addon-testimonial-footer .sppb-addon-testimonial-client {
    margin-left: 0px;
  }
  .tw-case-study .sppb-addon-article {
    max-width: 350px;
    margin: 0 auto 40px;
  }
  .pricing-tab .sppb-nav.sppb-nav-pills {
    width: 280px;
  }
  .work-process-classic [class*="sppb-col"]:after {
    display: none;
  }
  .sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-movement .timeline-item .timeline-panel {
    width: 230px !important;
  }
  .sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper:before {
    display: none;
  }
  .sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-badge:before {
    display: none;
  }
  #sp-footer .sp-column {
    text-align: center !important;
  }
  #sp-top-bar.header-boxed-top {
    margin-bottom: 30px;
  }
  #sp-header.header-boxed {
    top: 85px;
  }
  .header-absolute.header-boxed.header-full {
    top: 350px;
  }
}
/* Extra Small Devices, Phones */
@media (max-width: 479px) {
  /* Timeline */
  /* Home 2 */
  /* Home 6 */
  .timeline-movement.even:before {
    display: none;
  }
  .timeline-movement.even:after {
    display: none;
  }
  p.timeline-date {
    text-align: center !important;
  }
  .sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-movement .timeline-item .timeline-panel.left-part {
    margin: 0 auto !important;
  }
  .sppb-addon-timeline.ts-timeline .sppb-addon-timeline-wrapper .timeline-movement .timeline-item .timeline-panel {
    margin: 0 auto !important;
    margin-top: 30px !important;
  }
  #sp-top-bar.header-boxed-top {
    margin-bottom: 50px;
  }
  #sp-header.header-boxed {
    top: 120px;
  }
  .header-absolute.header-boxed.header-full {
    top: 380px;
  }
}
/* Custom, iPhone Retina */
