@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");

body {
  font-family: "Manrope", sans-serif;
  color: #444444;
  background-color: #f1f1f1;
}


a {
  color: #ffc451;
  text-decoration: none;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  color: #4d4d4d;
}

/*--------------------------------------------------------------
	# Back to top button
	--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffc451;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #ffc451;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
	# Preloader
	--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: ;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
	# Disable nos animation delay on mobile devices
	--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-nos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
	# Header
	--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.7);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #ffc451;
}

#header .logo img {
	width: 170px; 
}

#footer .logo img{
	width: 170px;  
 }
 

/*--------------------------------------------------------------
	#  Get Startet Button
	--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #ffc451;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 991px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
	# Navigation Menu
	--------------------------------------------------------------*/
/**
	* Desktop Navigation 
	*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #ffc451;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #fff;
  background-color: #ffc451;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
  #b-lg {
	display: none;
	}      
}

/**
	* Mobile Navigation 
	*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.prd-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .poglar-info {
    margin-top: -20px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .prd-nav-toggle {
    display: block;
  }
  
  .navbar ul {
    display: none;
  }
  .poglar-prd {
    margin-top: -50px;
  }
  .vid-prd {
    margin-top: -40px;
  }

}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.5s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: none;
  overflow-y: auto;
  transition: 0.5s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #151515;
  background-color: #ffc451;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  background-color: #ffc451;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}



.navbar-produk {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.5s;
  z-index: 999;
}

.navbar-produk .prd-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-produk ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: none;
  overflow-y: auto;
  transition: 0.5s;
}

.navbar-produk a,
.navbar-produk a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-produk a:hover,
.navbar-produk .active,
.navbar-produk li:hover > a {
  color: #151515;
  background-color: #ffc451;
}

.navbar-produk .getstarted,
.navbar-produk .getstarted:focus {
  margin: 15px;
}

.navbar-produk .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-produk .dropdown ul li {
  min-width: 200px;
}

.navbar-produk .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-produk .dropdown ul a i {
  font-size: 12px;
}

.navbar-produk .dropdown ul a:hover,
.navbar-produk .dropdown ul .active:hover,
.navbar-produk .dropdown ul li:hover > a {
  background-color: #ffc451;
}

.navbar-produk .dropdown > .dropdown-active {
  display: block;
}




/*--------------------------------------------------------------
	# aboels Section
	--------------------------------------------------------------*/
#aboel {
  width: 100%;
  height: 100vh;
  background: url("../../aset/gbr/bg_2.jpg") top center;
  background-size: cover;
  position: relative;
}  
#aboel:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#aboels {
  width: 100%;
  height: 50vh;
  background: url("../../aset/gbr/bg_4.jpg") top center;
  background-size: cover;
  position: relative	;	  
  
}

#aboels:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#aboels .container {
  position: relative;
  text-align: center;
}

#aboels h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

#aboels h1 span {
  color: #ffc451;
}

#aboels h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#poglar .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(163, 163, 163, 0.3);
  height: 100%;
  text-align: center;
}

#poglar .icon-box i {
  font-size: 50px;
  line-height: 1;
  color: red;
}

#poglar .icon-box p {
  font-weight: 400;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 12px;
  line-height: 26px;
}

#poglar .icon-box small {
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 12px;
}


#poglar .icon-box p {
  color: #000;
  transition: ease-in-out 0.3s;
}

#poglar .icon-box h3:hover {
  color: #ffc451;
}

#poglar .icon-box:hover {
  border-color: #ffc451;
}

@media (min-width: 1024px) {
  #aboels {
    background-attachment: fixed;
  }

  .menu {
    display: block;
  }

 #b-lg  {
  display: block;	
 }
 
 #b-sm  {
  display: none;	
 }
  
}

@media (max-width: 768px) {
  #aboels {
    height: auto;
  }
  
 #b-lg  {
  display: none;	
 }
 #b-sm  {
  display: block;	
 } 
 
  #aboels h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #aboels h2 {
    font-size: 20px;
    line-height: 24px;
  }
  #header .logo img {
    width: 150px;
  }

  #footer .logo img {
    width: 150px;
  }

  .geser {
    overflow: auto;
  }
  .prfl {
	  margin-top: -40px;
  }
  .map {
	  margin-top: -40px;
  }
  .art {
	  margin-top: -40px;
  }   
  #isi_artikel {
    display: none;
  }

  #tgl_update {
    display: none;
  }

  #judul {
    font-size: 11px;
  }

  #deskripsi {
    font-size: 9px;
  }
}

/*--------------------------------------------------------------
	# kontak Section
	--------------------------------------------------------------*/
#kontak {
  margin-top: -40px;
  width: 100%;
  height: 300px;
}

#kontak .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#kontak h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #4b4b4b;
  font-family: "Manrope", sans-serif;
}

#kontak h1 span {
  color: #ffc451;
}

#kontak h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#kontak .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid #bdbdbd;
  height: 100%;
  text-align: center;
}

#kontak .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#kontak .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#kontak .icon-box h3 a {
  color: #4b4b4b;
  transition: ease-in-out 0.3s;
}

#kontak .icon-box h3 a:hover {
  color: #ffc451;
}

#kontak .icon-box:hover {
  border-color: #ffc451;
}

/*--------------------------------------------------------------
	# Sections General
	--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Manrope", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
  color: #151515;
}

.judul {
  padding-bottom: 40px;
}

.judul h2 {
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Manrope", sans-serif;
}

.judul h2::after {
  content: "";
  width: 60px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.judul h2::before {
  content: "";
  width: 60px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.judul p {
  margin: 0;
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
	# About
	--------------------------------------------------------------*/
.about .konten h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Manrope", sans-serif;
}

.about .konten ul {
  list-style: none;
  padding: 0;
}

.about .konten ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .konten ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

.about .konten p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
	# Video slider
	--------------------------------------------------------------*/
.video {
  padding-top: 20px;
}
.video .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.video .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.video .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

/*--------------------------------------------------------------
	# Features
	--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #ffc451;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
	# Article
	--------------------------------------------------------------*/

#article-slide {
  margin-top: -50px;
}
.article-slide {
  max-width: 320px;
}
.article .art-box {
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 20px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.article .art-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.article .art-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.article .art-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 14px;
}

.article .art-box h4 p {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.article .art-box h4 a:hover {
  color: #ffc451;
}

.article .art-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.article .art-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
	# Karir
	--------------------------------------------------------------*/

.article .karir-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 20px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.article .karir-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}

.article .karir-box p {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.article .karir-box p:hover {
  color: #ffc451;
}

.article .karir-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.article .karir-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
	# poglar
	--------------------------------------------------------------*/
.poglar .poglar-item {
  padding: 10px 10px;
}

.poglar #poglar-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.poglar #poglar-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.poglar #poglar-flters li:hover,
.poglar #poglar-flters li.filter-active {
  color: #151515;
  background: #ffc451;
}

.poglar #poglar-flters li:last-child {
  margin-right: 0;
}

.poglar .poglar-wrap {
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.poglar .poglar-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.poglar .poglar-wrap img {
  transition: all ease-in-out 0.5s;
}

.poglar .poglar-wrap .poglar-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.poglar .poglar-wrap .poglar-info h4 {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.poglar .poglar-wrap .poglar-info p {
  color: #fff;
  font-size: 14px;
  padding: 0;
  margin: 0;
  font-weight: 600;
}

.poglar .poglar-wrap .poglar-links {
  text-align: center;
  z-index: 4;
}

.poglar .poglar-wrap .poglar-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 20px;
  display: inline-block;
  transition: 0.3s;
}

.poglar .poglar-wrap .poglar-links a:hover {
  color: #ffc451;
}

.poglar .poglar-wrap:hover::before {
  opacity: 1;
}

.poglar .poglar-wrap:hover img {
  transform: scale(1.2);
}

.poglar .poglar-wrap:hover .poglar-info {
  opacity: 1;
}


#poglar .section-produk {
	margin-top: -3%;	
}


.poglar-item .nama-produk {
	font-size: 12px;
	font-weight: 300;
	color: #3b3b3b;
}
.poglar-item .tipe-produk {
	font-size: 13px;
	font-weight: 400;
	color: #000;
}

/*--------------------------------------------------------------
	# poglar Details
	--------------------------------------------------------------*/

.poglar-info-alt {
  background: #fff;
  border: 1px solid #dcdcdc;
}

.poglar-details {
  margin-top: -20px;
}

.poglar-details .poglar-details-slider img {
  width: 100%;
}

.poglar-details .poglar-details-slider .swiper-pagination {
  margin-top: 20px;
  position: absolute;
}

.poglar-details
  .poglar-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffc451;
}

.poglar-details
  .poglar-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

.poglar-details .poglar-info {
  padding: 30px;
}

.poglar-details .poglar-info h3 {
  color: #333;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #bbb;
}

.poglar-details .poglar-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.poglar-details .poglar-info ul li + li {
  margin-top: 10px;
}

.poglar-details .poglar-description {
  padding-top: 30px;
}

.poglar-details .poglar-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.poglar-details .poglar-description p {
  padding: 0;
}


#poglar .grid{
	position: relative;
	display: none;
    left: 10px;	
}

/*--------------------------------------------------------------
	# video
	--------------------------------------------------------------*/
.vid {
  padding: 30px 0;
}

.video-slide {
  max-width: 220px;
}

.vid .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  box-shadow: ;
}

.vid .member .member-img {
  position: relative;
  overflow: hidden;
}

.vid .member .social {
  position: absolute;
  left: 0;
  top: 40%;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.vid .member .social a {
  transition: color 0.3s;
  color: #ed1c24;
  margin-top: 0 3px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.vid .member .social a:hover {
  color: #ffc451;
}
.vid .member .social i {
  font-size: 60px;
  line-height: 0;
}

.vid .member .member-info {
  padding: 15px 10px;
}

.vid .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 14px;
  color: #151515;
  text-align: center;
}

.vid .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
  text-align: center;
}

.vid .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.vid .member .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
	# video
	--------------------------------------------------------------*/
.vid-alt {
  padding: 30px 0;
}

.swiper-slide {
  width: ;
}

.vid-alt .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  box-shadow: ;
}

.vid-alt .member .member-img {
  position: relative;
  overflow: hidden;
}
.vid-alt .member .member-img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.vid-alt .member .member-img:hover img {
  transform: scale(1.2) rotate(5deg);
}

.vid-alt .member .social {
  position: absolute;
  left: 0;
  top: 40%;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.vid-alt .member .social a {
  transition: color 0.3s;
  color: #ed1c24;
  margin-top: 0 3px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.vid-alt .member .social a:hover {
  color: #ffc451;
}
.vid-alt .member .social i {
  font-size: 60px;
  line-height: 0;
}

.vid-alt .member .member-info {
  padding: 15px 10px;
}

.vid-alt .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 14px;
  color: #151515;
  text-align: center;
}

.vid-alt .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
  text-align: center;
}

.vid-alt .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.vid-alt .member .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
	# Contact
	--------------------------------------------------------------*/

#contact input,
textarea {
  background: #f1f1f1;
}
#contact textarea {
  background: #f1f1f1;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 30px;
  color: #ffc451;
  font-weight: 600px;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffc451;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #ffc451;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ffcd6b;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
	# Breadcrumbs
	--------------------------------------------------------------*/
	
	
.breadcrumbs {
  padding: 15px 0;
  background: $fff;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
  font-size: 14px;
  color: #828282;
}

.breadcrumbs i {
  padding-left: 10px;
  font-size: 18px;
  color: #ffc451;
}


.breadcrumbs i:hover {
  color: #828282;
   transition: 0.5s;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #828282;
  content: ">";
}

@media (max-width: 991px) {

  form.cari input[type="text"] {
	  width: 100%;
	}
		
 #poglar .grid {
	display: block; 
 }
 		
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
	# Footer
	--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffc451;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc451;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

p.paragraf {
  text-align: justify;
}

/*--------------------------------------------------------------
	# modal video
	--------------------------------------------------------------*/

.modal-dialog {
  padding-top: 100px;
  max-width: 1000px;
  margin: 30px auto;
}

.modal-body {
  position: relative;
  padding: 0px;
}

.btn-close {
  position: absolute;
  right: -30px;
  top: 0;
}

.close {
  position: absolute;
  right: 5px;
  top: 5;
  z-index: 999;
  font-size: 2rem;
  font-weight: normal;
  color: #000;
  opacity: 1;
}

form.cari input[type="text"] {
  padding: 2px;
  font-size: 17px;
  border: 1px solid #9e9e9e;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;  
  float: right;
  width: 80%;
  background: none;
  color: #9e9e9e;
}

form.cari button {
  float: right;
  width: 33px;
  padding: 2px;
  background: #9e9e9e;
  color: white;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid #9e9e9e;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  border-left: none;
  cursor: pointer;
}


form.cari button i {
	color: #fff;
	padding: 2px;
}

form.cari button i:hover {
	color: #ffc451;
	transition: ease-in-out 0.3s;
}
form.cari button:hover {
  background: grey;
   transition: ease-in-out 0.3s;
}

form.cari::after {
  content: "";
  clear: both;
  display: table;
}

.like {
  font-size: 1.5rem;
}

.sidebar {
  margin: 0;
  padding: 0;
  width: 250px;
  background-color: #f1f1f1;
  position: absolute;
  height: 650px;
  overflow: auto;
}

.sidebar a {
  display: block;
  color: black;
  padding: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.sidebar a.active {
  background-color: none;
  color: #ffc451;
}

.sidebar a:hover:not(.active) {
  background-color: #555;
  color: white;
}

div.content {
  margin-left: 250px;
  padding: 1px 16px;
  width: 100%;
  height: 650px;
  overflow: auto;
}



@media screen and (max-width: 780px) {
.poglar .section-produk {
		margin-top: -10%;  
	  }	
  #poglar .breadcrumbs{
	position: relative;
	margin-top: 12%;
	margin-bottom: 10%;
	}
  
.cari-produk {
	margin-right: 2%;
	display: block; 
 }
		
 #poglar .grid {
	display: block;
	left: 0;
	z-index: 99;
 }

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {
    float: left;
    margin: 5px;
  }
  div.content {
    margin-left: 0;
    margin-top: 30px;
  }
  .prd-size {
    max-width: 200px;
  }
  .prd-size-2 {
    height: 130px;
    width: 180px;
    margin: 8px 0 0 8px;
    margin-left: -2px;
  }

  .poglar .poglar-info p {
    display: none;
  }
  .poglar .poglar-info .poglar-links .hide-1 {
    display: none;
    font-size: 30px;
  }
  .aboels-bg {
    margin-top: -102px;
    left: 0;
    right: 0;
  }
  .mt {
    margin-top: -50px;
  }
  #kontak {
    height: 400px;
    margin-top: -120px;
  }
  #contact {
    margin-top: -60px;
  }
  #poglar-details .poglar-details {
    margin-top: -25px;
  }
  .footer-info a img {
    width: 100px;
  }

  .poglar #poglar-flters li {
    font-size: 11px;
  }
  .ktgr-prd {
    margin-top: -50px;
  }
	#poglar #layoutSidenav #layoutSidenav_nav {
	  margin-top: -7%;
	  
	}	
	
	#poglar #layoutSidenav #layoutSidenav_content {
	  margin-top: -7%;	
	}
	
	#poglar-details {
	 margin-top: 0;
	}  
  
}

@media screen and (min-width: 390px) and (max-width: 570px) {
	  #aboels_1 {
		  margin-top: 0;
		  position: relative;
		  background-repeat: no-repeat;
		  background-size: contain;
		  background-size: cover;	  
		  height: 820px;  
		}	
		
	  .poglars-area .poglars-slider .single-slider {
	   position: relative;
	   align-items: center;
	  }	  
	  
	  .poglars-area .poglars-slider .single-slider .konten h2 {
		  font-size: 30px;
		  font-weight: 800;
		  color: #fff;
		}


	  .poglars-area .poglars-slider .single-slider .konten h4 {
		  font-size: 16px;
		  font-weight: 400;
		  color: #fff;
		}	  
	  
	  .poglars-area .poglars-slider .single-slider .konten span {
		  font-size: 14px;
		  font-weight: 500;
		  color: #ffc451;
		}
	  .poglars-area .poglars-slider .single-slider .konten p {
		  margin-top: -20px;
		  font-size: 14px;
		  font-weight: 500;
		  color: #ffc451;
	  }	  
	  
	
	#poglar #layoutSidenav #layoutSidenav_nav {
	  margin-top: -7%;
	  
	}	
	
	#poglar #layoutSidenav #layoutSidenav_content {
	  margin-top: -7%;	
	}
	
	#poglar-details {
	 margin-top: 0;
	}
	
	 #aboels .container{
		padding-bottom: 40px; 

	 }
	 
	 
	 .poglar-details {
		position: relative;
		margin-top: 20%;
	 }
	 
	  #aboels .jdl h1 {
		display: none;    
	  }
	  
	  #aboels .jdl h2 {
		display: none;      
	  }
	  
	  .sidebar a {
		text-align: center;
		float: none;
	  }

	  .poglar .poglar-info p {
		display: none;
	  }


	  .cari-produk {
		display: none;  
	  }
	  
	  .breadcrumbs .menu-produk {
		display: block;	
			
		}
	  .breadcrumbs .cari-produk-alt {
		display: block;			
		}
	  
	  .poglar .section-produk {
		margin-top: -10%;  
	  }
	  
	  .cari-produk-alt .cari input[type="text"] {
		  width: 80%;
		}		
		
	  #aboel {
		display: none;	
		}
	  .aboels-bg {
		margin-top: -102px;
		left: 0;
		right: 0;
	  }
	  .mt {
		margin-top: -50px;
	  }
  
	  #kontak {
		height: 400px;
		margin-top: -100px;
	  }
	  
}

	.container-fluid {
	  display: flex;
	  flex-wrap: wrap;
	  align-items: center;
	  justify-content: space-between;
	}

	.mb-30 {
	  margin-bottom: 30px;
	}

	.pb-30 {
	  padding-bottom: 30px;
	}

	.p-30 {
	  padding: 30px;
	}

	.p-xl-5 {
	  padding: 3rem !important;
	}
	.px-xl-5 {
	  padding-left: 3rem !important;
	}
	.pt-4 {
	  padding-top: 2rem !important;
	}
	.pt-5 {
	  padding-top: 3rem !important;
	}

	.pb-3 {
	  padding-bottom: 1rem !important;
	}
	.pb-1 {
	  padding-bottom: 0.25rem !important;
	}
	.mb-4 {
	  margin-bottom: 1.5rem !important;
	}
	.mt--2 {
	  margin-top: -2rem !important;
	}
	.text-decoration-none {
	  text-decoration: none !important;
	}

	.cat-item {
	  background: #ffffff;
	  transition: 0.5s;
	}

	.cat-item:hover {
	  background: #ffc451;
	}

	.cat-item img {
	  transition: 0.5s;
	}

	.cat-item:hover img {
	  transform: scale(1.2) rotate(5deg);
	}
	.overflow-hidden {
	  overflow: hidden !important;
	}
	.flex-fill {
	  flex: 1 1 auto !important;
	}
	.text-body {
	  color: #6c757d !important;
	}
	.pl-3 {
	  padding-left: 1rem !important;
	}
	.flex-fill {
	  flex: 1 1 auto !important;
	}
	.box {
	  border: 1px solid #ffc451;
	}
	.tmbl-krm {
	  position: relative;
	  right: 15px;
	  bottom: 15px;
	  background: #ffc451;
	  width: 100px;
	  height: 40px;
	  border: 1px solid #ffc451;
	  border-radius: 7px;
	  color: #424242;
	  font-size: 20px;
	  font-weight: bold;
	}
	.tmbl-krm:hover {
	  color: #fff;
	}

	.jarak {
	  width: 100px;
	  display: inline-block;
	}

	.jarak_1 {
	  width: 180px;
	  display: inline-block;
	}
	.jarak_2 {
	  width: 100%;
	  display: inline-block;
	}

	.poglar-info h3 {
	  font-size: 36px;
	  color: #fff;
	  font-weight: 600;
	}

	.poglar-info h2 {
	  font-weight: 700;
	  font-size: 36px;
	  padding: 0;
	  line-height: 1;
	  font-size: 30px;
	  line-height: 26px;
	  font-family: "Manrope", sans-serif;
	}

	.paragraf {
	  text-align: justify;
	  line-height: 1.6;
	}

	div.enter {
	  text-align: justify;
	  text-justify: inter-word;
	  white-space: normal;
	  white-space: pre;
	}

	.desk-karir li strong {
	  font-size: 16px;
	}

	.w-25 {
	  width: 25% !important;
	}

	.w-50 {
	  width: 50% !important;
	}

	.w-75 {
	  width: 75% !important;
	}

	.w-100 {
	  width: 100% !important;
	}

	.w-auto {
	  width: auto !important;
	}

	.h-25 {
	  height: 25% !important;
	}

	.h-50 {
	  height: 50% !important;
	}

	.h-75 {
	  height: 75% !important;
	}

	.h-100 {
	  height: 100% !important;
	}

	.h-auto {
	  height: auto !important;
	}

	.mw-100 {
	  max-width: 100% !important;
	}

	.mh-100 {
	  max-height: 100% !important;
	}

	.min-vw-100 {
	  min-width: 100vw !important;
	}

	.min-vh-100 {
	  min-height: 100vh !important;
	}

	.vw-100 {
	  width: 100vw !important;
	}

	.vh-100 {
	  height: 100vh !important;
	}

	.m-0 {
	  margin: 0 !important;
	}

	.mt-0,
	.my-0 {
	  margin-top: 0 !important;
	}

	.mr-0,
	.mx-0 {
	  margin-right: 0 !important;
	}

	.mb-0,
	.my-0 {
	  margin-bottom: 0 !important;
	}

	.ml-0,
	.mx-0 {
	  margin-left: 0 !important;
	}

	.m-1 {
	  margin: 0.25rem !important;
	}

	.mt-1,
	.my-1 {
	  margin-top: 0.25rem !important;
	}
	.mt-110 {
	  margin-top: 110px;
	}
	.mr-1,
	.mx-1 {
	  margin-right: 0.25rem !important;
	}

	.mb-1,
	.my-1 {
	  margin-bottom: 0.25rem !important;
	}

	.ml-1,
	.mx-1 {
	  margin-left: 0.25rem !important;
	}

	.m-2 {
	  margin: 0.5rem !important;
	}

	.mt-2,
	.my-2 {
	  margin-top: 0.5rem !important;
	}

	.mr-2,
	.mx-2 {
	  margin-right: 0.5rem !important;
	}

	.mb-2,
	.my-2 {
	  margin-bottom: 0.5rem !important;
	}

	.ml-2,
	.mx-2 {
	  margin-left: 0.5rem !important;
	}

	.m-3 {
	  margin: 1rem !important;
	}

	.mt-3,
	.my-3 {
	  margin-top: 1rem !important;
	}

	.mr-3,
	.mx-3 {
	  margin-right: 1rem !important;
	}

	.mb-3,
	.my-3 {
	  margin-bottom: 1rem !important;
	}

	.ml-3,
	.mx-3 {
	  margin-left: 1rem !important;
	}

	.m-4 {
	  margin: 1.5rem !important;
	}

	.mt-4,
	.my-4 {
	  margin-top: 1.5rem !important;
	}

	.mr-4,
	.mx-4 {
	  margin-right: 1.5rem !important;
	}

	.mb-4,
	.my-4 {
	  margin-bottom: 1.5rem !important;
	}

	.ml-4,
	.mx-4 {
	  margin-left: 1.5rem !important;
	}

	.m-5 {
	  margin: 3rem !important;
	}

	.mt-5,
	.my-5 {
	  margin-top: 3rem !important;
	}

	.mr-5,
	.mx-5 {
	  margin-right: 3rem !important;
	}

	.mb-5,
	.my-5 {
	  margin-bottom: 3rem !important;
	}

	.ml-5,
	.mx-5 {
	  margin-left: 3rem !important;
	}

	.p-0 {
	  padding: 0 !important;
	}

	.pt-0,
	.py-0 {
	  padding-top: 0 !important;
	}

	.pr-0,
	.px-0 {
	  padding-right: 0 !important;
	}

	.pb-0,
	.py-0 {
	  padding-bottom: 0 !important;
	}

	.pl-0,
	.px-0 {
	  padding-left: 0 !important;
	}

	.p-1 {
	  padding: 0.25rem !important;
	}

	.pt-1,
	.py-1 {
	  padding-top: 0.25rem !important;
	}

	.pr-1,
	.px-1 {
	  padding-right: 0.25rem !important;
	}

	.pb-1,
	.py-1 {
	  padding-bottom: 0.25rem !important;
	}

	.pl-1,
	.px-1 {
	  padding-left: 0.25rem !important;
	}

	.p-2 {
	  padding: 0.5rem !important;
	}

	.pt-2,
	.py-2 {
	  padding-top: 0.5rem !important;
	}

	.pr-2,
	.px-2 {
	  padding-right: 0.5rem !important;
	}

	.pb-2,
	.py-2 {
	  padding-bottom: 0.5rem !important;
	}

	.pl-2,
	.px-2 {
	  padding-left: 0.5rem !important;
	}

	.p-3 {
	  padding: 1rem !important;
	}

	.pt-3,
	.py-3 {
	  padding-top: 1rem !important;
	}

	.pr-3,
	.px-3 {
	  padding-right: 1rem !important;
	}

	.pb-3,
	.py-3 {
	  padding-bottom: 1rem !important;
	}

	.pl-3,
	.px-3 {
	  padding-left: 1rem !important;
	}

	.p-4 {
	  padding: 1.5rem !important;
	}

	.pt-4,
	.py-4 {
	  padding-top: 1.5rem !important;
	}

	.pr-4,
	.px-4 {
	  padding-right: 1.5rem !important;
	}

	.pb-4,
	.py-4 {
	  padding-bottom: 1.5rem !important;
	}

	.pl-4,
	.px-4 {
	  padding-left: 1.5rem !important;
	}

	.p-5 {
	  padding: 3rem !important;
	}

	.pt-5,
	.py-5 {
	  padding-top: 3rem !important;
	}

	.pr-5,
	.px-5 {
	  padding-right: 3rem !important;
	}

	.pb-5,
	.py-5 {
	  padding-bottom: 3rem !important;
	}

	.pl-5,
	.px-5 {
	  padding-left: 3rem !important;
	}

	.m-n1 {
	  margin: -0.25rem !important;
	}

	.mt-n1,
	.my-n1 {
	  margin-top: -0.25rem !important;
	}

	.mr-n1,
	.mx-n1 {
	  margin-right: -0.25rem !important;
	}

	.mb-n1,
	.my-n1 {
	  margin-bottom: -0.25rem !important;
	}

	.ml-n1,
	.mx-n1 {
	  margin-left: -0.25rem !important;
	}

	.m-n2 {
	  margin: -0.5rem !important;
	}

	.mt-n2,
	.my-n2 {
	  margin-top: -0.5rem !important;
	}

	.mr-n2,
	.mx-n2 {
	  margin-right: -0.5rem !important;
	}

	.mb-n2,
	.my-n2 {
	  margin-bottom: -0.5rem !important;
	}

	.ml-n2,
	.mx-n2 {
	  margin-left: -0.5rem !important;
	}

	.m-n3 {
	  margin: -1rem !important;
	}

	.mt-n3,
	.my-n3 {
	  margin-top: -1rem !important;
	}

	.mr-n3,
	.mx-n3 {
	  margin-right: -1rem !important;
	}

	.mb-n3,
	.my-n3 {
	  margin-bottom: -1rem !important;
	}

	.ml-n3,
	.mx-n3 {
	  margin-left: -1rem !important;
	}

	.m-n4 {
	  margin: -1.5rem !important;
	}

	.mt-n4,
	.my-n4 {
	  margin-top: -1.5rem !important;
	}

	.mr-n4,
	.mx-n4 {
	  margin-right: -1.5rem !important;
	}

	.mb-n4,
	.my-n4 {
	  margin-bottom: -1.5rem !important;
	}

	.ml-n4,
	.mx-n4 {
	  margin-left: -1.5rem !important;
	}

	.m-n5 {
	  margin: -3rem !important;
	}

	.mt-n5,
	.my-n5 {
	  margin-top: -3rem !important;
	}

	.mr-n5,
	.mx-n5 {
	  margin-right: -3rem !important;
	}

	.mb-n5,
	.my-n5 {
	  margin-bottom: -3rem !important;
	}

	.ml-n5,
	.mx-n5 {
	  margin-left: -3rem !important;
	}

	.m-auto {
	  margin: auto !important;
	}

	.mt-auto,
	.my-auto {
	  margin-top: auto !important;
	}

	.mr-auto,
	.mx-auto {
	  margin-right: auto !important;
	}

	.mb-auto,
	.my-auto {
	  margin-bottom: auto !important;
	}

	.ml-auto,
	.mx-auto {
	  margin-left: auto !important;
	}

	.w-25 {
	  width: 25% !important;
	}

	.w-50 {
	  width: 50% !important;
	}

	.w-75 {
	  width: 75% !important;
	}

	.w-100 {
	  width: 100% !important;
	}

	.w-auto {
	  width: auto !important;
	}

	.h-25 {
	  height: 25% !important;
	}

	.h-50 {
	  height: 50% !important;
	}

	.h-75 {
	  height: 75% !important;
	}

	.h-100 {
	  height: 100% !important;
	}

	.h-auto {
	  height: auto !important;
	}

	.mw-100 {
	  max-width: 100% !important;
	}

	.mh-100 {
	  max-height: 100% !important;
	}

	.min-vw-100 {
	  min-width: 100vw !important;
	}

	.min-vh-100 {
	  min-height: 100vh !important;
	}

	.vw-100 {
	  width: 100vw !important;
	}

	.vh-100 {
	  height: 100vh !important;
	}

	.m-0 {
	  margin: 0 !important;
	}

	.mt-0,
	.my-0 {
	  margin-top: 0 !important;
	}

	.mr-0,
	.mx-0 {
	  margin-right: 0 !important;
	}

	.mb-0,
	.my-0 {
	  margin-bottom: 0 !important;
	}

	.ml-0,
	.mx-0 {
	  margin-left: 0 !important;
	}

	.m-1 {
	  margin: 0.25rem !important;
	}

	.mt-1,
	.my-1 {
	  margin-top: 0.25rem !important;
	}

	.mr-1,
	.mx-1 {
	  margin-right: 0.25rem !important;
	}

	.mb-1,
	.my-1 {
	  margin-bottom: 0.25rem !important;
	}

	.ml-1,
	.mx-1 {
	  margin-left: 0.25rem !important;
	}

	.m-2 {
	  margin: 0.5rem !important;
	}

	.mt-2,
	.my-2 {
	  margin-top: 0.5rem !important;
	}

	.mr-2,
	.mx-2 {
	  margin-right: 0.5rem !important;
	}

	.mb-2,
	.my-2 {
	  margin-bottom: 0.5rem !important;
	}

	.ml-2,
	.mx-2 {
	  margin-left: 0.5rem !important;
	}

	.m-3 {
	  margin: 1rem !important;
	}

	.mt-3,
	.my-3 {
	  margin-top: 1rem !important;
	}

	.mr-3,
	.mx-3 {
	  margin-right: 1rem !important;
	}

	.mb-3,
	.my-3 {
	  margin-bottom: 1rem !important;
	}

	.ml-3,
	.mx-3 {
	  margin-left: 1rem !important;
	}

	.m-4 {
	  margin: 1.5rem !important;
	}

	.mt-4,
	.my-4 {
	  margin-top: 1.5rem !important;
	}

	.mr-4,
	.mx-4 {
	  margin-right: 1.5rem !important;
	}

	.mb-4,
	.my-4 {
	  margin-bottom: 1.5rem !important;
	}

	.ml-4,
	.mx-4 {
	  margin-left: 1.5rem !important;
	}

	.m-5 {
	  margin: 3rem !important;
	}

	.mt-5,
	.my-5 {
	  margin-top: 3rem !important;
	}

	.mr-5,
	.mx-5 {
	  margin-right: 3rem !important;
	}

	.mb-5,
	.my-5 {
	  margin-bottom: 3rem !important;
	}

	.ml-5,
	.mx-5 {
	  margin-left: 3rem !important;
	}

	.p-0 {
	  padding: 0 !important;
	}

	.pt-0,
	.py-0 {
	  padding-top: 0 !important;
	}

	.pr-0,
	.px-0 {
	  padding-right: 0 !important;
	}

	.pb-0,
	.py-0 {
	  padding-bottom: 0 !important;
	}

	.pl-0,
	.px-0 {
	  padding-left: 0 !important;
	}

	.p-1 {
	  padding: 0.25rem !important;
	}

	.pt-1,
	.py-1 {
	  padding-top: 0.25rem !important;
	}

	.pr-1,
	.px-1 {
	  padding-right: 0.25rem !important;
	}

	.pb-1,
	.py-1 {
	  padding-bottom: 0.25rem !important;
	}

	.pl-1,
	.px-1 {
	  padding-left: 0.25rem !important;
	}

	.p-2 {
	  padding: 0.5rem !important;
	}

	.pt-2,
	.py-2 {
	  padding-top: 0.5rem !important;
	}

	.pr-2,
	.px-2 {
	  padding-right: 0.5rem !important;
	}

	.pb-2,
	.py-2 {
	  padding-bottom: 0.5rem !important;
	}

	.pl-2,
	.px-2 {
	  padding-left: 0.5rem !important;
	}

	.p-3 {
	  padding: 1rem !important;
	}

	.pt-3,
	.py-3 {
	  padding-top: 1rem !important;
	}

	.pr-3,
	.px-3 {
	  padding-right: 1rem !important;
	}

	.pb-3,
	.py-3 {
	  padding-bottom: 1rem !important;
	}

	.pl-3,
	.px-3 {
	  padding-left: 1rem !important;
	}

	.p-4 {
	  padding: 1.5rem !important;
	}

	.pt-4,
	.py-4 {
	  padding-top: 1.5rem !important;
	}

	.pr-4,
	.px-4 {
	  padding-right: 1.5rem !important;
	}

	.pb-4,
	.py-4 {
	  padding-bottom: 1.5rem !important;
	}

	.pl-4,
	.px-4 {
	  padding-left: 1.5rem !important;
	}

	.p-5 {
	  padding: 3rem !important;
	}

	.pt-5,
	.py-5 {
	  padding-top: 3rem !important;
	}

	.pr-5,
	.px-5 {
	  padding-right: 3rem !important;
	}

	.pb-5,
	.py-5 {
	  padding-bottom: 3rem !important;
	}

	.pl-5,
	.px-5 {
	  padding-left: 3rem !important;
	}

	.m-n1 {
	  margin: -0.25rem !important;
	}

	.mt-n1,
	.my-n1 {
	  margin-top: -0.25rem !important;
	}

	.mr-n1,
	.mx-n1 {
	  margin-right: -0.25rem !important;
	}

	.mb-n1,
	.my-n1 {
	  margin-bottom: -0.25rem !important;
	}

	.ml-n1,
	.mx-n1 {
	  margin-left: -0.25rem !important;
	}

	.m-n2 {
	  margin: -0.5rem !important;
	}

	.mt-n2,
	.my-n2 {
	  margin-top: -0.5rem !important;
	}

	.mr-n2,
	.mx-n2 {
	  margin-right: -0.5rem !important;
	}

	.mb-n2,
	.my-n2 {
	  margin-bottom: -0.5rem !important;
	}

	.ml-n2,
	.mx-n2 {
	  margin-left: -0.5rem !important;
	}

	.m-n3 {
	  margin: -1rem !important;
	}

	.mt-n3,
	.my-n3 {
	  margin-top: -1rem !important;
	}

	.mr-n3,
	.mx-n3 {
	  margin-right: -1rem !important;
	}

	.mb-n3,
	.my-n3 {
	  margin-bottom: -1rem !important;
	}

	.ml-n3,
	.mx-n3 {
	  margin-left: -1rem !important;
	}

	.m-n4 {
	  margin: -1.5rem !important;
	}

	.mt-n4,
	.my-n4 {
	  margin-top: -1.5rem !important;
	}

	.mr-n4,
	.mx-n4 {
	  margin-right: -1.5rem !important;
	}

	.mb-n4,
	.my-n4 {
	  margin-bottom: -1.5rem !important;
	}

	.ml-n4,
	.mx-n4 {
	  margin-left: -1.5rem !important;
	}

	.m-n5 {
	  margin: -3rem !important;
	}

	.mt-n5,
	.my-n5 {
	  margin-top: -3rem !important;
	}

	.mr-n5,
	.mx-n5 {
	  margin-right: -3rem !important;
	}

	.mb-n5,
	.my-n5 {
	  margin-bottom: -3rem !important;
	}

	.ml-n5,
	.mx-n5 {
	  margin-left: -3rem !important;
	}

	.m-auto {
	  margin: auto !important;
	}

	.mt-auto,
	.my-auto {
	  margin-top: auto !important;
	}

	.mr-auto,
	.mx-auto {
	  margin-right: auto !important;
	}

	.mb-auto,
	.my-auto {
	  margin-bottom: auto !important;
	}

	.ml-auto,
	.mx-auto {
	  margin-left: auto !important;
	}

	.garis-bawah {
	  border-bottom: 1px solid #ddd;
	}

	.nav-link {
	  color: #ffc451;
	}

	.nav-link:hover,
	.nav-link:focus {
	  color: #555;
	  text-decoration: none;
	}

	.nav-link.disabled {
	  color: #6c757d;
	  pointer-events: none;
	  cursor: default;
	}

	.nav-tabs {
	  border-bottom: 0;
	}

	.nav-tabs .nav-item {
	  margin-bottom: -1px;
	}

	.nav-tabs .nav-link {
	  border: 1px solid transparent;
	  border-top-left-radius: 0.25rem;
	  border-top-right-radius: 0.25rem;
	}

	.nav-tabs .nav-link:hover,
	.nav-tabs .nav-link:focus {
	  border-color: #e9ecef #e9ecef #dee2e6;
	}

	.nav-tabs .nav-link.disabled {
	  color: #6c757d;
	  background-color: transparent;
	  border-color: transparent;
	}

	.nav-tabs .nav-link.active,
	.nav-tabs .nav-item.show .nav-link {
	  color: #495057;
	  background-color: #fff;
	  border-color: #f1f1f1;
	  border-bottom: 1px solid #ffc451;
	}
	.kolom-detail {
	  width: 300px;
	}

	/* carousel fullscreen */

	.carousel-inner .carousel-item {
	  height: 100vh;
	  min-height: 600px;
	  background-position: center center;
	  background-repeat: no-repeat;
	  background-size: cover;
	}

	.carousel-item .carousel-caption {
	  top: 50%;
	  bottom: auto;
	  -webkit-transform: translate(0, -50%);
	  -ms-transform: translate(0, -50%);
	  transform: translate(0, -50%);
	}

	.super-heading h1{
	  font-size: 45px;
	  font-weight: 800;
	  color: #fff;
	  text-align: left;
	}

	.super-paragraph p{
	  margin-top: -10px;
	  font-size: 25px;
	  font-weight: 300;
	  color: #fff;
	  text-align: left;  
	}

	.carousel-caption .super-paragraph a,
	.carousel-caption .super-paragraph a:hover {
	  color: #fff;
	}

	#carouselExampleSlidesOnly {
	  margin: 40px 0;
	}

	.carousel-fade .carousel-inner .item {
	  -webkit-transition-property: opacity;
	  transition-property: opacity;
	}
	.carousel-fade .carousel-inner .item,
	.carousel-fade .carousel-inner .active.left,
	.carousel-fade .carousel-inner .active.right {
	  opacity: 0;
	}
	.carousel-fade .carousel-inner .active,
	.carousel-fade .carousel-inner .next.left,
	.carousel-fade .carousel-inner .prev.right {
	  opacity: 1;
	}
	.carousel-fade .carousel-inner .next,
	.carousel-fade .carousel-inner .prev,
	.carousel-fade .carousel-inner .active.left,
	.carousel-fade .carousel-inner .active.right {
	  left: 0;
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	}
	.carousel-fade .carousel-control {
	  z-index: 2;
	}


	.poglars-area {
	  position: relative;
	  background-color: #fff;
	}

	@media only screen and (min-width: 768px) and (max-width: 991px) {
	  .poglars-area .md-custom-padding {
		padding-right: 0 !important;
	  }
	}

	.poglars-area .custom-padding-right {
	  padding-right: 0;
	}

	@media only screen and (min-width: 768px) and (max-width: 991px) {
	  .poglars-area .custom-padding-right {
		padding-right: calc(var(--bs-gutter-x)/ 2);
	  }
	  .poglar .section-produk {
		margin-top: -10%;  
	  }	  
	}

	@media (max-width: 767px) {
	  .poglars-area .custom-padding-right {
		padding-right: calc(var(--bs-gutter-x)/ 2);
	  }
	}

	.poglars-area .slider-head {
	  position: relative;
	  overflow: hidden;
	}

	.poglars-area .slider-head:hover .tns-controls button:first-child {
	  left: 0;
	}

	.poglars-area .slider-head:hover .tns-controls button:last-child {
	  right: 0;
	}

	.poglars-area .tns-controls button {
	  width: 35px;
	  height: 60px;
	  cursor: pointer;
	  z-index: 2;
	  color: #fff;
	  font-size: 17px;
	  background: transparent;
	  border: none;
	  padding: 2px 5px;
	  border-radius: 4px;
	  -webkit-transition: all .3s ease-out 0s;
	  transition: all .3s ease-out 0s;
	  position: absolute;
	  z-index: 99;
	  top: 50%;
	  margin-top: -30px;
	  border-radius: 0;
	}

	.poglars-area .tns-controls button:hover {
	  color: #fff;
	}

	.poglars-area .tns-controls button:first-child {
	  left: -40px;
	  border-radius: 0 4px 4px 0;
	}

	.poglars-area .tns-controls button:last-child {
	  right: -40px;
	  border-radius: 4px 0px 0px 4px;
	}

	#aboels_1 {
	  background: url("../../aset/gbr/bg_2.jpg") top center;	
	  width: 100%;
	  height: 100vh;  
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;  
	  position: relative;
	}

	#aboels_1:before {
	  content: "";
	  background: rgba(0, 0, 0, 0.6);
	  position: absolute;
	  bottom: 0;
	  top: 0;
	  left: 0;
	  right: 0;
	}

	.poglars-area .poglars-slider .single-slider {
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  height: 900px;
	  position: relative;
	}

	@media only screen and (min-width: 768px) and (max-width: 991px) {
	  .poglars-area .poglars-slider .single-slider {
		height: 800px;
		margin-bottom: 12px;
	  }
	}

	@media (max-width: 767px) {
	  .poglars-area .poglars-slider .single-slider {
		height: 750px;
		margin-bottom: 12px;
	  }
	}

	.poglars-area .poglars-slider .single-slider .konten {
	  position: relative;
	  top: 50%;
	  -webkit-transform: translateY(-50%);
	  transform: translateY(-50%);
	}
	
	@media only screen and (min-width: 768px) and (max-width: 991px) {
	  .poglars-area .poglars-slider .single-slider .konten {
		padding-right: 300px;
	  }
	}

	@media (max-width: 767px) {
	  .poglars-area .poglars-slider .single-slider .konten {
		padding-right: 30px;
		padding-left: 30px;
	  }
	}

	.poglars-area .poglars-slider .single-slider .konten h2 {
	  margin-top: -10px;
	  font-size: 45px;
	  font-weight: 800;
	  color: #fff;
	}

	.poglars-area .poglars-slider .single-slider .konten span {
	  font-size: 15px;
	  font-weight: 200;
	  display: block;
	  color: #ffc451;
	  margin-bottom: 10px;
	}

	.poglars-area .poglars-slider .single-slider .konten h4 {
	  font-size: 20px;
	  font-weight: 400;
	  color: #fff;
	}
	
	.poglars-area .poglars-slider .single-slider .konten p {
		margin-top: -30px;
	  }
	  
	@media only screen and (min-width: 768px) and (max-width: 991px) {
	.poglars-area .poglars-slider .single-slider .konten h2 {
	  font-size: 20px;
	  font-weight: 800;
	  color: #fff;
	}

	.poglars-area .poglars-slider .single-slider .konten h4 {
	  font-size: 16px;
	  font-weight: 400;
	  color: #fff;
	}	  
	  
	  .poglars-area .poglars-slider .single-slider .konten span {
		font-size: 14px;
		font-weight: 500;
		color: #ffc451;
	  }
	  .poglars-area .poglars-slider .single-slider .konten p {
		margin-top: -20px;
		font-size: 14px;
		font-weight: 500;
		color: #ffc451;
	  }	   
	  
	}

	@media screen and (min-width: 768px) and (max-width: 991px) {
	  .poglars-area .poglars-slider .single-slider .konten h2 {
		font-size: 18px;
	  }
	}

	.poglars-area .poglars-slider .single-slider .konten p {
	  margin-top: 20px;
	  color: #fff;
	}

	@media only screen and (min-width: 768px) and (max-width: 991px) {
	  .poglars-area .poglars-slider .single-slider .konten p {
		margin-top: 10px;
	  }
	}

	@media (max-width: 767px) {
	  .poglars-area .poglars-slider .single-slider .konten p {
		margin-top: 10px;
	  }
	}

	.poglars-area .poglars-slider .single-slider .konten h3 {
	  margin-top: 20px;
	  font-size: 25px;
	  font-weight: 800;
	  color: #fff;
	}

	.poglars-area .poglars-slider .single-slider .konten h3 span {
	  display: inline-block;
	  margin-right: 12px;
	  font-size: 16px;
	  font-weight: 600;
	  color: #fff;
	}

	@media only screen and (min-width: 768px) and (max-width: 991px) {
	  .poglars-area .poglars-slider .single-slider .konten h3 span {
		margin-right: 10px;
		font-size: 14px;
	  }
	}

	@media (max-width: 767px) {
	  .poglars-area .poglars-slider .single-slider .konten h3 span {
		margin-right: 8px;
		font-size: 14px;
	  }
	}

	@media only screen and (min-width: 768px) and (max-width: 991px) {
	  .poglars-area .poglars-slider .single-slider .konten h3 {
		font-size: 20px;
	  }
	}

	@media (min-width: 390px) and (max-width: 768px){

	  .poglars-area .poglars-slider .single-slider .konten h2 {
		font-size: 35px;
	  }
	  .poglars-area .poglars-slider .single-slider .konten h4 {
		font-size: 18px;
	  }	  
	}

	.poglars-area .poglars-slider .single-slider .konten .button .btn{
	  margin-top: 30px;
	  background-color: #fff;
	  color: #000;
	}

	.poglars-area .poglars-slider .single-slider .konten .button .btn:hover{
	  margin-top: 30px;
	  background-color: #ffc451;
	  color: #fff;
	}

	.poglars-area .poglars-small-banner {
	  height: 244px;
	  position: relative;
	  background-repeat: no-repeat;
	  background-size: contain;
	  background-size: cover;
	}

	@media only screen and (min-width: 768px) and (max-width: 991px) {
	.cari-produk {
	  margin-right: 2%;
	}	
	  .poglars-area .poglars-small-banner {
		height: 240px;
	  }
	}

	@media (max-width: 767px) {
	  .poglars-area .poglars-small-banner {
		height: 240px;
	  }
	}

	.poglars-area .poglars-small-banner .konten {
	  padding: 30px;
	  position: absolute;
	  left: 0;
	  top: 30%;
	  -webkit-transform: translateY(-50%);
	  transform: translateY(-50%);
	}

	.poglars-area .poglars-small-banner .konten h2 {
	  font-size: 20px;
	  font-weight: 700;
	}

	.poglars-area .poglars-small-banner .konten span {
	  font-size: 15px;
	  font-weight: 500;
	  color: #fff;
	  display: block;
	}

	.poglars-area .poglars-small-banner .konten h3 {
	  color: #fff;
	  font-size: 20px;
	  font-weight: 800;
	  display: block;
	  margin-top: 7px;
	}


	.konten .review li {
		  display: inline-block;
		}

	.konten .review li i {		 
		  color: #fecb00;
		  font-size: 13px;
		}

	.konten .review li span {
		  display: inline-block;
		  color: #888;
		  font-size: 12px;
		}






	.poglars-area .poglars-small-banner.style2 {
	  margin-top: 12px;
	  background-image: url("../images/poglars/small-banner-bg.png");
	  background-color: #081828;
	}

	@media only screen and (min-width: 768px) and (max-width: 991px) {
	  .poglars-area .poglars-small-banner.style2 {
		margin-top: 0;
	  }
	}

	.poglars-area .poglars-small-banner.style2 .konten h2 {
	  color: #fff;
	}

	.poglars-area .poglars-small-banner.style2 .konten h2 span {
	  color: #fff;
	}

	.poglars-area .poglars-small-banner.style2 .konten p {
	  font-size: 15px;
	  color: #fff;
	  font-weight: 600;
	  margin-top: 15px;
	}

	.poglars-area .poglars-small-banner.style2 .konten .button {
	  margin-top: 20px;
	}

	.poglars-area .poglars-small-banner.style2 .konten .button .btn {
	  background-color: #fff;
	  color: #000;
	}

	.poglars-area .poglars-small-banner.style2 .konten .button .btn:hover {
	  background-color: #ffc451;
	  color: #fff;
	}



	#layoutAuthentication {
	  display: flex;
	  flex-direction: column;
	  min-height: 100vh;
	}
	#layoutAuthentication #layoutAuthentication_content {
	  min-width: 0;
	  flex-grow: 1;
	}
	#layoutAuthentication #layoutAuthentication_footer {
	  min-width: 0;
	}

	#layoutSidenav {
	  display: flex;
	}
	
	#layoutSidenav #layoutSidenav_nav {
	  margin-top: -1%;
	  flex-basis: 280px;
	  flex-shrink: 0;
	  transition: transform 0.40s ease-in-out;
	  z-index: 5;
	  transform: translateX(-300px);
	}
	
	#layoutSidenav #layoutSidenav_content {
	  margin-top: 10px;
	  position: relative;
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	  min-width: 0;
	  flex-grow: 1;
	  min-height: calc(100vh - 56px);
	  margin-left: -280px;
	}

	.sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
	  transform: translateX(0);
	}
	.sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
	  content: "";
	  display: block;
	  position: absolute;
	  top: -60px;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: #fff;
	  z-index: 4;
	  opacity: 0.9;
	  transition: opacity 0.3s ease-in-out;
	}

	@media (min-width: 992px) {

	  #layoutSidenav #layoutSidenav_nav {
		transform: translateX(0);
	  }
	  #layoutSidenav #layoutSidenav_content {
		margin-left: 0;
		transition: margin 0.25s ease-in-out;
	  }
	  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
		transform: translateX(-300px);
	  }
	  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content {
		margin-left: -300px;
	  }
	  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
		display: none;
	  }
	}

	@media screen and (max-width: 920px) {	
	
	#layoutSidenav #layoutSidenav_nav {
	  margin-top: -30px;
	}	
    #layoutSidenav #layoutSidenav_content {	
	  margin-top: 60px;
	}
	}

	.sb-nav-fixed .sb-topnav {
	  z-index: 5;
	}
	.sb-nav-fixed #layoutSidenav #layoutSidenav_nav {
	  width: 300px;
	  height: 100vh;
	  z-index: 2;
	}
	.sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav {
	  padding-top: 56px;
	}
	.sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav .sb-sidenav-menu {
	  overflow-y: auto;
	}
	.sb-nav-fixed #layoutSidenav #layoutSidenav_content {
	  padding-left: 300px;
	  top: 56px;
	}

	#layoutError {
	  display: flex;
	  flex-direction: column;
	  min-height: 100vh;
	}
	#layoutError #layoutError_content {
	  min-width: 0;
	  flex-grow: 1;
	}
	#layoutError #layoutError_footer {
	  min-width: 0;
	}

	.img-error {
	  max-width: 20rem;
	}

	.sb-sidenav {
	  display: flex;
	  flex-direction: column;
	  height: 100%;
	  flex-wrap: nowrap;
	  padding-right: 20px;
	}
	.sb-sidenav .sb-sidenav-menu {
	  flex-grow: 1;
	}
	.sb-sidenav .sb-sidenav-menu .nav {
	  flex-direction: column;
	  flex-wrap: nowrap;
	}
	.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading {
	  padding: 1.75rem 1rem 0.75rem;
	  font-size: 1rem;
	  font-weight: bold;
	  text-transform: none;
	}
	.sb-sidenav .sb-sidenav-menu .nav .nav-link {
	  color: #000;
	  font-size: 14px;
	  display: flex;
	  align-items: center;
	  padding-top: 0.35rem;
	  padding-bottom: 0.35rem;
	  position: relative;
	  cursor: pointer;
	}
	.sb-sidenav .sb-sidenav-menu .nav .nav-link:hover {
	  color: #ffc451;
	}	
	
	.sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-nav-link-icon {
	  font-size: 1.2rem;
	}
	.sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-sidenav-collapse-arrow {
	  font-size: 0.6rem;
	  color: #6c757d;
	  display: inline-block;
	  margin-left: auto;
	  transition: transform 0.15s ease;
	}
	.sb-sidenav .sb-sidenav-menu .nav .nav-link.collapsed .sb-sidenav-collapse-arrow {
	  transform: rotate(-90deg);
	}
	.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested {
	  margin-left: 2.2rem;
	  flex-direction: column;
	}
	.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested-sub {
	  margin-left: 0.8rem;
	  flex-direction: column;
	}	
	.sb-sidenav .sb-sidenav-footer {
	  padding: 0.75rem;
	  flex-shrink: 0;
	}

	.sb-sidenav-dark {
	  background-color: #3a3e42;
	  color: rgba(255, 255, 255, 0.25);
	}
	.sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading {
	  color: rgba(255, 255, 255, 0.25);
	}
	.sb-sidenav-dark .sb-sidenav-menu .nav-link {
	  color: #e0efef;
	}
	.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon {
	  color: e0efef;
	}
	.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
	  color: rgba(255, 255, 255, 0.25);
	}
	.sb-sidenav-dark .sb-sidenav-menu .nav-link:hover {
	  color: #fcc669;
	}
	.sb-sidenav-dark .sb-sidenav-menu .nav-link.active {
	  color: #fcc669;
	}
	.sb-sidenav-dark .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
	  color: #fcc669;
	}
	.sb-sidenav-dark .sb-sidenav-footer {
	  background-color: #343a40;
	}

	.sb-sidenav-light {
	  background-color: #f8f9fa;
	  color: #212529;
	}
	.sb-sidenav-light .sb-sidenav-menu .sb-sidenav-menu-heading {
	  color: #adb5bd;
	}
	.sb-sidenav-light .sb-sidenav-menu .nav-link {
	  color: #212529;
	}
	.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-nav-link-icon {
	  color: #adb5bd;
	}
	.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
	  color: #adb5bd;
	}
	.sb-sidenav-light .sb-sidenav-menu .nav-link:hover {
	  color: #15b6a5;
	}
	.sb-sidenav-light .sb-sidenav-menu .nav-link.active {
	  color: #15b6a5;
	}
	.sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
	  color: #15b6a5;
	}
	.sb-sidenav-light .sb-sidenav-footer {
	  background-color: #e9ecef;
	}
	
	.menu-btn {
		position: relative;
		width: 50px;
		height: 50px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.menu-btn:hover, .menu-btn:active, .menu-btn:focus {
		text-decoration: none;
	   
	}

	.menu-btn i {
		font-size: 30px;
		color: #a3a3a3;
	}
	
	.menu-produk {
		display: none;	
		
	}
	.cari-produk-alt {
		display: none;			
	}

	@media (max-width: 992px) {
			.menu-btn {
			display: -webkit-box;
			display: -webkit-flex;
			display: -ms-flexbox;
			display: flex;
		}
	}
/*======================================
		Item Details CSS
	========================================*/

	.poglar-details .top-area {
	  background-color: #fff;
	  padding: 30px;
	  border: 1px solid #eee;
	  border-radius: 4px;
	}

	.poglar-details .product-images img {
	  width: 100%;
	  cursor: pointer;
	  border: 1px solid #eee;
	  border-radius: 4px;
	  overflow: hidden;
	  padding: 5px;
	}

	.poglar-details .product-images .images {
	  display: -ms-grid;
	  display: grid;
	  grid-template-columns: repeat(4, 1fr);
	  grid-gap: 0.5em 0.5em;
	  margin-top: 0.5em;
	}

	@media (max-width: 767px) {
	  .poglar-details .product-images .images {
		grid-template-columns: repeat(4, 1fr);
	  }
	}

	@-webkit-keyframes fadeIn {
	  to {
		Opacity: 1;
	  }
	}

	@keyframes fadeIn {
	  to {
		Opacity: 1;
	  }
	}

	.poglar-details .product-images .fade-in {
	  -webkit-animation: fadeIn 0.5s ease-in 1 forwards;
	  animation: fadeIn 0.5s ease-in 1 forwards;
	}
	

