/**
 * Main Template File
 * @since 1.0
 * @author Fajar Chandra
 */
/* 
  Notice: Do not edit template.css file directly. Changes will be 
  lost when LESS files are compiled. Please locate source LESS file 
  for modifications, or add CSS on custom.css file for site-specific
  changes.
 */
/*******************************************************************/
/* BASE STYLES FOR EDITOR AND FRONTEND SITE
/* source: com_sppagebuilder.less
/*******************************************************************/
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVc.ttf) format('truetype');
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  background: #fff;
  color: #444;
}
a {
  color: #fd4f00;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}
a:hover {
  color: #972f00;
  text-decoration: none;
}
h1 {
  font-size: 24px;
  font-weight: normal;
  text-transform: uppercase;
}
h2 {
  font-size: 32px;
  font-weight: normal;
  color: #fd4f00;
}
h3 {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: normal;
  color: #000;
}
h4 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: normal;
  color: #000;
}
h5 {
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 14px;
}
p {
  margin: 0 0 20px;
}
p:last-child {
  margin-bottom: 0;
}
ul {
  margin: 5px 0 20px;
  padding-left: 20px;
}
ul li {
  position: relative;
  margin-bottom: 5px;
}
/*******************************************************************/
/* MAIN LAYOUT STYLESHEET
/* source: layout.less
/*******************************************************************/
/* Font fallbacks */
@font-face {
  font-family: 'Helvetica';
  src: local('Helvetica'), local('Roboto'), local('Open Sans'), local('Arial'), local('DejaVu Sans');
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background: #eee;
}
body.container-style-wide {
  background: #fff;
}
img {
  max-width: 100%;
  outline: none;
}
input {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.8;
}
select {
  padding: 0 8px;
}
.container {
  background: #fff;
  box-shadow: 0 3px 3px #aaa;
  padding: 15px;
}
.container-style-wide .container {
  box-shadow: none;
}
.container-style-fluid .container {
  max-width: none;
}
@media (min-width: 992px) {
  .container {
    padding: 30px;
  }
}
.fa {
  word-spacing: -1em;
}
.btn,
.sppb-btn {
  font-size: 13px;
}
.btn:focus,
.sppb-btn:focus,
.btn:not(:disabled):not(.disabled):active:focus,
.sppb-btn:not(:disabled):not(.disabled):active:focus {
  box-shadow: none;
}
.btn-primary,
.sppb-btn-primary {
  background-color: #fd4f00;
  border-color: #fd4f00;
  color: #fff;
}
.btn-primary:not(:disabled):not(.disabled):hover,
.sppb-btn-primary:not(:disabled):not(.disabled):hover,
.btn-primary:not(:disabled):not(.disabled):active,
.sppb-btn-primary:not(:disabled):not(.disabled):active {
  background-color: #972f00;
  border-color: #972f00;
  color: #fff;
}
.btn-primary.sppb-btn-outline,
.sppb-btn-primary.sppb-btn-outline {
  color: #fd4f00;
}
.modal-title {
  font-size: 1.2em;
  font-weight: bold;
}
/********************************************************************/
/* HEADER */
.sp-header > .container {
  display: grid;
  grid-gap: 30px;
  grid-auto-flow: column;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}
.sp-header .sp-header-logo img {
  max-height: 64px;
}
.sp-header .sp-search-btn {
  display: inline-block;
  width: 33px;
  height: 33px;
  background: #c1c1c1;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 33px;
}
.sp-header .sp-search-btn:hover {
  background: #fd4f00;
}
/********************************************************************/
/* SEARCH BAR */
.sp-search {
  display: none;
  /* Finder */
}
.sp-search.visible {
  display: block;
}
.sp-search.visible ~ .sp-menu-wrap {
  display: none;
}
.sp-search > .container {
  display: flex;
  justify-content: center;
  padding: 0;
  background: #222;
  color: #767676;
}
.container-style-wide .sp-search {
  background: #222;
}
.sp-search .grid-item {
  flex-grow: 1;
}
.sp-search .mod-finder__search {
  text-align: right;
}
.sp-search .mod-finder__search .awesomplete {
  flex-grow: 1;
}
.sp-search .mod-finder__search .element-invisible {
  display: none;
}
.sp-search .mod-finder__search .search-query {
  flex-grow: 1;
}
.sp-search .mod-finder__search label {
  padding: 20px 10px;
}
.sp-search .mod-finder__search input {
  background: rgba(127, 127, 127, 0.3);
  color: #fff;
  border: none;
  margin: 10px;
  padding: 10px;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 20px;
  box-shadow: none;
}
.sp-search .mod-finder__search button {
  margin: 10px;
  padding: 10px;
  line-height: 18px;
  transition: background-color 0.2s;
}
/********************************************************************/
/* MAIN MENU */
.sp-menu > .container {
  display: flex;
  justify-content: center;
  padding: 0;
  background: #222;
  color: #767676;
}
.container-style-wide .sp-menu {
  background: #222;
}
.sp-menu .nav {
  display: flex;
  margin: 0;
  padding: 0;
  border-right: 1px solid #333;
  list-style: none;
}
.sp-menu .nav li {
  margin: 0;
  border-left: 1px solid #333;
}
.sp-menu .nav li.deeper > a:after,
.sp-menu .nav li.deeper > .nav-header:after {
  margin: 0 0 0 5px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 8px;
  vertical-align: middle;
  content: '\f078';
}
.sp-menu .nav a,
.sp-menu .nav .nav-header {
  display: block;
  height: 100%;
  padding: 20px 17px;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.2s, background-color 0.2s;
}
.sp-menu .nav a:hover,
.sp-menu .nav .nav-header:hover {
  color: #fff;
}
.sp-menu .nav .nav-header {
  cursor: default;
}
.sp-menu .nav > li.active > a {
  color: #fff;
}
.sp-menu .nav li {
  position: relative;
}
.sp-menu .nav li ul {
  display: none;
  position: absolute;
  z-index: 1000;
  top: 100%;
  left: 0;
  width: 200px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.sp-menu .nav li ul li {
  border: none;
}
.sp-menu .nav li ul a {
  margin: 0;
  padding: 8px 20px;
  color: #767676;
}
.sp-menu .nav li ul a:hover {
  color: #fd4f00;
}
.sp-menu .nav li:hover ul {
  display: block;
}
.sp-menu-btn {
  display: none;
}
@media (max-width: 991px) {
  .sp-menu {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: -400px;
    bottom: 0;
    width: 400px;
    max-width: 80%;
    overflow: auto;
    transition: left 0.3s;
  }
  .sp-menu.visible {
    left: 0;
  }
  .sp-menu > .container {
    display: block;
    padding: 0;
  }
  .sp-menu .nav {
    display: block;
  }
  .sp-menu .nav li {
    border: none;
    border-bottom: 1px solid #333;
  }
  .sp-menu .nav a:after {
    display: none;
  }
  .sp-menu .nav li ul {
    position: static;
    width: auto;
    display: block;
    background: rgba(255, 255, 255, 0.1);
  }
  .sp-menu-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    color: #252525;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
  }
  body.menu-visible:before {
    position: fixed;
    display: block;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    content: '';
  }
}
/********************************************************************/
/* TOP */
.sp-top > .container {
  display: grid;
  grid-gap: 30px;
  grid-auto-flow: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #ccc8c0;
  color: #252525;
}
.container-style-wide .sp-top {
  background: #ccc8c0;
}
.sp-top .grid-item:nth-child(2) {
  text-align: center;
}
.sp-top .grid-item:last-child {
  text-align: right;
}
.sp-top h1 {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
}
/********************************************************************/
/* BODY */
.sidebar p {
  margin: 0 0 6px;
}
.sidebar .module {
  margin: 0 0 30px;
}
.sidebar .module-header {
  margin: 0;
  padding: 5px 0;
  border-bottom: 1px solid #444;
  font-size: 1em;
  text-transform: uppercase;
}
.sidebar .module-content {
  padding: 5px 0;
}
/********************************************************************/
/* BOTTOM */
.sp-bottom > .container {
  display: grid;
  grid-gap: 30px;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: #222;
  color: #767676;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.container-style-wide .sp-bottom {
  background: #222;
}
.sp-bottom a {
  color: inherit;
}
.sp-bottom a:hover {
  color: #fd4f00;
}
.sp-bottom .highlight {
  color: #fd4f00;
}
.sp-bottom .module-header {
  font-size: 13px;
  text-transform: uppercase;
  color: #fd4f00;
}
@media (max-width: 767px) {
  .sp-bottom > .container {
    display: block;
  }
  .sp-bottom .grid-item {
    margin: 0 0 20px;
  }
}
/********************************************************************/
/* FOOTER */
.sp-footer {
  font-size: 12px;
}
.sp-footer > .container {
  display: grid;
  grid-gap: 30px;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: #222;
  color: #767676;
}
.sp-bottom + .sp-footer > .container {
  border-top: 1px solid #333;
}
.container-style-wide .sp-footer {
  background: #222;
}
/********************************************************************/
/* TOOLTIP */
.tooltip {
  position: absolute;
  padding: 4px 15px;
  background: #252525;
  color: #ccc8c0;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
/*******************************************************************/
/* COM_CONTENT
/* source: com_content.less
/*******************************************************************/
.com_content .sp-component .item-wrap {
  display: flex;
  position: relative;
  margin: 0 0 80px;
}
.com_content .sp-component .item-category {
  position: absolute;
  width: 33.333333%;
  left: 0;
  top: 0px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  z-index: 2;
}
.com_content .sp-component .item-category dd {
  font-size: 0;
  display: inline;
  margin: 0;
}
.com_content .sp-component .item-category .icon-fw {
  display: none;
}
.com_content .sp-component .item-category a,
.com_content .sp-component .item-category span {
  font-size: 12px;
  background: #fd4f00;
  color: #fff;
  padding: 2px 10px;
  border-radius: 10px;
}
.com_content .sp-component .item-image-wrap {
  flex-shrink: 0;
  width: 33.333333%;
}
.com_content .sp-component .item-image {
  height: 180px;
  margin: 10px 20px 0 0;
  border: 2px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  padding: 10px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.com_content .sp-component .item-image a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.com_content .sp-component .item-image a:hover img {
  transform: scale(1.1);
}
.com_content .sp-component .item-image img {
  max-height: 100%;
  max-width: 100%;
  transition: transform 0.3s;
}
.com_content .sp-component .item-page .item-image {
  height: auto;
  margin: 0 0 20px;
}
.com_content .sp-component .item-page .item-image.float-start {
  margin-right: 20px;
}
.com_content .sp-component .item-page .item-image.float-end {
  margin-left: 20px;
}
.com_content .sp-component .item-info {
  margin: 0;
  color: #333;
  line-height: 20px;
  text-transform: uppercase;
}
.com_content .sp-component .item-info dd {
  display: inline;
  margin: 0;
}
.com_content .sp-component .item-info dd + dd:before {
  content: '|';
  font-size: 12px;
  margin: 0 3px;
}
.com_content .sp-component .item-info .createdby,
.com_content .sp-component .item-info .published {
  font-size: 0;
  line-height: 0;
}
.com_content .sp-component .item-info .createdby a,
.com_content .sp-component .item-info .published a,
.com_content .sp-component .item-info .createdby span,
.com_content .sp-component .item-info .published span,
.com_content .sp-component .item-info .createdby time,
.com_content .sp-component .item-info .published time {
  font-size: 12px;
  line-height: 20px;
}
.com_content .sp-component .page-header {
  margin: 0 0 10px;
}
.com_content .sp-component .page-header h2 {
  margin: 0;
  font-size: 24px;
  color: #111;
}
.com_content .sp-component .page-header a {
  color: inherit;
}
.com_content .sp-component .page-header a:hover {
  color: #fd4f00;
}
.com_content .sp-component .readmore .btn {
  margin-top: 0.5rem;
}
.com_content .sp-component .pagenav {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.com_content .sp-component .pagenav a {
  padding: 5px 30px;
  border: 1px solid #fd4f00;
  border-radius: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.com_content .sp-component .pagenav a:hover {
  border-color: #972f00;
}
.com_content .sp-component .pagenav .previous {
  float: left;
}
.com_content .sp-component .pagenav .next {
  float: right;
}
.com_content .sp-component .pagenav:after {
  content: '';
  clear: both;
  display: block;
}
.com_content .sp-component .items-more .nav {
  display: block;
  border: none;
}
.com_content .sp-component .pagination {
  display: block;
  margin: 30px 0;
}
.com_content .sp-component .pagination ul {
  list-style: none;
  padding: 0;
}
.com_content .sp-component .pagination .pull-right {
  float: right;
}
.com_content .sp-component .pagination li {
  display: inline-block;
}
.com_content .sp-component .pagination li span:after,
.com_content .sp-component .pagination li a:after {
  display: none;
}
.com_content .sp-component .pagination li a {
  border: 1px solid #fd4f00;
  transition: color 0.3s, border-color 0.3s;
}
.com_content .sp-component .pagination li a:hover {
  border-color: #972f00;
}
/*******************************************************************/
/* SP PAGE BUILDER
/* source: com_sppagebuilder.less
/*******************************************************************/
body.com_sppagebuilder.container-style-wide .sp-body > .container {
  max-width: none;
}
#sp-page-builder {
  margin: -15px;
}
#sp-page-builder .page-header {
  margin: 15px;
}
#sp-page-builder .sppb-section-title .sppb-title-heading {
  font-size: 26px;
  line-height: inherit;
}
@media (min-width: 768px) {
  .sppb-row-container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  #sp-page-builder {
    margin: -30px;
  }
  #sp-page-builder .page-header {
    margin: 30px 15px;
  }
  .sppb-row-container {
    width: 930px;
  }
}
@media (min-width: 1200px) {
  .sppb-row-container {
    width: 1110px;
  }
}
.sppb-addon-content img.pull-left {
  margin-right: 15px;
}
.sppb-addon-content img.pull-right {
  margin-left: 15px;
}
@media (max-width: 767px) {
  .sppb-addon-content img.pull-left,
  .sppb-addon-content img.pull-right {
    float: none !important;
    margin: auto;
    display: block;
  }
}
.sppb-form-control,
.sppb-form-group .sppb-form-control {
  font-size: 13px;
  line-height: 1.8;
}
.sppb-form-control:not([size]):not([multiple]),
.sppb-form-group .sppb-form-control:not([size]):not([multiple]) {
  height: 41.4px;
}
.sppb-btn {
  font-size: 13px;
  line-height: 1.8;
}
.sppb-btn-primary {
  background-color: #fd4f00;
  border-color: #fd4f00;
}
.sppb-btn-primary:hover {
  background-color: #972f00;
  border-color: #972f00;
}
/*******************************************************************/
/* BREADCRUMB MODULE
/* source: com_content.less
/*******************************************************************/
.breadcrumb {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent;
  text-align: center;
}
.breadcrumb li {
  display: inline-block;
  margin: 0;
}
.breadcrumb a {
  text-decoration: none;
  color: inherit;
}
.breadcrumb a:hover {
  color: #fd4f00;
}
.breadcrumb .icon-location {
  display: none;
}
/*******************************************************************/
/* COOKIE CONSENT PLUGIN
/* source: plg_system_cookieconsent.less
/*******************************************************************/
.cookieconsent .container {
  padding: 0;
  box-shadow: none;
  background: transparent;
}
.cookieconsent .btn {
  background-color: #fd4f00;
  color: #fff;
  border: none;
}
.cookieconsent .btn:hover {
  background-color: #972f00;
  color: #fff;
}
