/*  General CSS  */
body {
  font-size: 14px;
  font-family: lato-regular;
  background-color: #000000;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.24px;
  /* color: white; */
}
strong, b {
  font-family: lato-bold;
  font-weight: normal;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
  line-height: 1.5;

}
.btn {
  font-family: lato-regular;
  text-transform: uppercase;
  font-size: 12px;
}
.btn:hover,
.btn:focus,
.btn:active {
  box-shadow: none;
}
.form-control {
  font-size: 14px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #E8D781;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}
img {
  max-width: 100%;
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: rgba(255,255,255,0.95);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
a:hover,
a:focus,
a:active {
  text-decoration: none;
}
@media (max-width: 767px) {
  body {
    font-size: 0.7rem;
  }
  .btn {
    font-size: 12px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  h5 {
    font-size: 0.9rem;
  }
  h6 {
    font-size: 0.7rem;
  }
}
/*  Reuseable CSS  */
/*  Image Banner  */
.image-banner {
  position: relative;
}
.image-banner img {
  width: 100%;
}
.image-banner .overlay {
  background: linear-gradient(to right, #000 40%, transparent);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.image-banner .overlay > .container,
.image-banner .overlay > .container > .row {
  height: 100%;
}
@media (max-width: 767px) {
  .image-banner {
    margin-top: 70px;
  }
}

/*  Grid  */
.grid-wrapper .grid-col {
  padding: 10px;
}
.grid-wrapper .grid-col .grid-item {
  border: 1px solid transparent;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.grid-wrapper .grid-col:hover .grid-item,
.grid-wrapper .grid-col:focus .grid-item,
.grid-wrapper .grid-col:active .grid-item {
  border-color: #E8D781;
}
.grid-wrapper .grid-col .grid-item > img {
  width: 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.grid-wrapper .grid-col:hover .grid-item > img,
.grid-wrapper .grid-col:focus .grid-item > img,
.grid-wrapper .grid-col:active .grid-item > img {
  border-color: #E8D781;
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -o-transform: scale(0.95);
}
.grid-wrapper .grid-col .grid-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
  padding: 1.5rem;
}
.grid-wrapper .grid-col .grid-item .overlay > div {
  position: absolute;
  max-width: calc(100% - 3rem);
}
.grid-wrapper .grid-col .grid-item .overlay .title {
  top: 50%;
  font-family: lato-bold;
  letter-spacing: 0.5px;
  font-size: 1.6rem;
  color: #E8D781;
  line-height: 1.25;
  transform: translateY(-100%);
  width: 75%;
}
.grid-wrapper .grid-col .grid-item .overlay .title span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.grid-wrapper .grid-col .grid-item .overlay .title:after {
  content: '';
  height: 1px;
  width: 50%;
  background: #E8D781;
  display: block;
  margin-top: 1rem;
}
.grid-wrapper .grid-col .grid-item .overlay .link {
  bottom: 1.5rem;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.grid-wrapper .grid-col:hover .grid-item .overlay .link,
.grid-wrapper .grid-col:focus .grid-item .overlay .link,
.grid-wrapper .grid-col:active .grid-item .overlay .link {
  /* bottom: calc(25% + 1rem); */
  /* transform: translateY(100%); */
}
/* .top-section {
  margin-top: 90px;
} */
.section-heading .heading {
  font-family: lato-bold;
  letter-spacing: 0.5px;
  font-size: 3rem;
  color: #E8D781;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.section-heading .subheading {
  font-family: lato-bold;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
  color: #E8D781;
  margin-bottom: 1rem;
  line-height: 1.25;
}
@media(max-width: 991px) {
  .section-heading .heading {
    font-size: 1.6rem;
  }
  .section-heading .subheading {
    font-size: 0.9rem;
  }
}
.content .image img {
  width: 100%;
}
.content .text .title,
.content .text .title a,
.content .text .title a:focus {
  font-family: lato-bold;
  letter-spacing: 0.5px;
  font-size: 3rem;
  color: #E8D781;
  margin-bottom: 1rem;
  line-height: 1.25;
  text-decoration: none;
}
.content .text .title a:hover {
  color: #fff;
  text-decoration: none;
}
.content .text .subtitle {
  font-family: lato-bold;
  letter-spacing: 0.5px;
  font-size: 1.6rem;
  color: #E8D781;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.content .text .separator {
  height: 1px;
  width: 125px;
  background: #E8D781;
  margin-bottom: 2rem;
}
.content .text .desc {
  line-height: 1.5;
}
.content .text .desc ~ .link {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .content .text .title {
    font-size: 1.6rem;
  }
  .content .text .subtitle {
    font-size: 1.2rem;
  }
}
.arrows-link:before {
  content: '';
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url(../images/arrows_link.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.3rem;
  vertical-align: middle;
}
.arrows-link:hover,
.arrows-link:focus,
.arrows-link:active {
  color: #E8D781;
}
.arrows-link:hover:before,
.arrows-link:focus:before,
.arrows-link:active:before {
  background-image: url(../images/arrowsbrown_link.png);
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.back-link {
  color: #E8D781;
  padding: 6px 10px;
  border-bottom: 1px solid #E8D781;
}
.back-link:before {
  content: '';
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url(../images/arrowsbrown_link.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.3rem;
  vertical-align: middle;
}
.back-link:hover,
.back-link:focus,
.back-link:active {
  border-color: #fff;
  color: #fff;
  padding: 6px 15px;
}
.back-link:hover:before,
.back-link:focus:before,
.back-link:active:before {
  background-image: url(../images/arrows_link.svg);
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

/*  -- Slick  */
.slick-dots {
  bottom: 1.5rem;
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li {
  width: 10px;
  height: 10px;
}
.slick-dots li button {
  background: white;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.slick-dots li.slick-active button {
  background: #660000;
}
.slick-custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.slick-custom-arrow img {
  height: 20px;
}
.slick-custom-arrow-left {
  left: 100px;
}
.slick-custom-arrow-left img {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.slick-custom-arrow-right {
  right: 100px;
}
@media (max-width: 991px) {
  .slick-custom-arrow-left {
    left: 0;
    position: absolute;
    top: 0;
    transform: translateY(0);
    z-index: 1;
    height: 100%;
    width: 30px;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, white, transparent);

  }
  .slick-custom-arrow-right {
    right: 0;
    position: absolute;
    top: 0;
    transform: translateY(0);
    z-index: 1;
    height: 100%;
    width: 30px;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to left, white, transparent);
  }
}
.form-col {
  margin-bottom: 1.5rem;
}
.form-group label {
  color: #E8D781;
  padding-left: 12px;
}
.form-group .form-control::placeholder {
  color: rgba(232, 215, 129, 0.4);
}
.form-group .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #E8D781;
  border-radius: 0;
  color: #E8D781;
  font-family: lato-italic;
}
.form-group .form-control:hover,
.form-group .form-control:focus,
.form-group .form-control:active {
  box-shadow: none;
}
@media (max-width: 991px) {
  .form-col {
    margin-bottom: 0.5rem;
  }
}

/*  Custom CSS  */
.section.with-border .container:before {
  content: '';
  position: absolute;
  top: 75px;
  left: 125px;
  bottom: 75px;
  right: 125px;
  border: 1px solid rgba(232, 215, 129, 0.5);
}
@media (max-width: 767px) {
  .section.with-border .container:before {
    top: 3rem;
    left: 3rem;
    bottom: 3rem;
    right: 3rem;
  }
}
/*  -- Onepage Scroll  */
#fullpage .section {
  overflow: hidden;
}
.onepage-pagination {
  right: 1rem !important;
  width: 43px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.onepage-pagination li {
  display: flex;
  justify-content: center;
}
.onepage-pagination li a {
  position: relative;
  width: 24px !important;
  height: 24px !important;
  padding: 7px !important;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  border-color: #DBC868 !important;
}
.onepage-pagination li a:before {
  width: 10px !important;
  height: 10px !important;
  border: 1px solid #DBC868;
  position: inherit;
  background: transparent !important;
  display: block;
  margin: 0 auto;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.onepage-pagination li a.active {
  padding: 9px !important;
  width: 30px !important;
  height: 30px !important;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border: 1px solid #DBC868;
  margin: 0.5rem 0;
}
.onepage-pagination li a.active:before {
  width: 10px !important;
  height: 10px !important;
  left: inherit !important;
  margin-top: 0 !important;
  border-color: #DBC868 !important;
  background: #DBC868 !important;
}
@media (max-width: 767px) {
  .onepage-pagination {
    right: 0.24rem !important;
  }
}

/*  -- Navigation  */
.top-menu {
  top: 0;
  position: absolute;
  width: 100%;
  z-index: 1031;
  left: 0;
  right: 0;
}
.top-menu > img {
  height: 90px;
  object-fit: cover;
  width: 100%;
  object-position: bottom;
}
.top-menu .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.top-menu .navbar {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.top-menu .navbar-brand img {
  height: 45px;
  max-width: none;
}
.top-menu .navbar-brand {
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}
.top-menu .navbar-nav {
  width: 100%;
}
.navbar-nav .nav-item .nav-link {
  font-family: lato-regular;
  color: #fff;
  opacity: 0.8;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.25px;
}
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus,
.navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #fff;
}
.navbar-nav .nav-item.active .nav-link {
  opacity: 1;
  background: linear-gradient(90deg, #E7D67F 40% , #755229);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar-toggler .navbar-toggler-icon {
  background: transparent;
  height: auto;
  width: auto;
}
.navbar-toggler .navbar-toggler-icon:before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f0c9";
  color: #DBC868;
}
@media (max-width: 1199px) {
  .top-menu .navbar-brand {
    padding-left: 0;
    padding-right: 0;
  }
  .top-menu .overlay {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  .top-menu .navbar-collapse {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 88px;
    background: rgb(0, 0, 0);
    padding-bottom: 1rem;
  }
  .top-menu .navbar-collapse::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    height: 3px;
    background: linear-gradient(90deg, #755229, #E7D67F 40% , #755229);
  }
}
@media (max-width: 767px) {
  .top-menu > img {
    height: 80px;
  }
  .top-menu .navbar-brand img {
    height: 30px;
  }
  .top-menu .navbar-collapse {
    top: 70px;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .top-menu .navbar-collapse {
    top: 63px;
  }
}

/*  Homepage  */
#home #mainmenu,
#home #footermenu {
  display: none;
}
.video-banner {
  position: relative;
  overflow: hidden;
}
.video-banner video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
.video-banner .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  cursor: pointer
}
.video-banner .play-button img {
  height: 80px;
}
.video-banner .play-button.paused {
  opacity: 1;
}
.nextsection {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  text-align: center;
  background: linear-gradient(transparent, #000 70%);
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.nextsection img {
  cursor: pointer;
  height: 35px;
}
.home-onepage .section .section-container {
  position: relative;
  z-index: 1;
}
.home-onepage .section .section-container,
.home-onepage .section .section-container .container,
.home-onepage .section .section-container .container > .row {
  height: 100%;
}
.home-onepage .section:nth-child(1) .container:before,
.home-onepage .section:nth-child(4) .container:before {
  display: none;
}

/*  -- 1st Section  */
.home-onepage .section:nth-child(1) {
  padding: 0 !important;
}

/*  -- 2nd Section  */
.home-onepage .section:nth-child(2):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  background-image: url('../images/homeabout_background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home-onepage .section:nth-child(2) .content .text {
  position: relative;
  margin-left: -1rem;
}
@media (max-width: 767px) {
  .home-onepage .section:nth-child(2) .content .text {
    margin-left: 0;
  }
}

/*  -- 3rd Section  */
.home-onepage .section:nth-child(3) {
  overflow: hidden;
}
.home-onepage .section:nth-child(3):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.8;
  background-image: url('../images/homeproduct_background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home-onepage .section:nth-child(3) .row > .col-12 {
  height: 100%;
}
.homeproduct-slide {
  counter-reset: my-badass-counter;
}
.homeproduct-slide .slick-custom-arrow.slick-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.homeproduct-slide .slick-custom-arrow img {
  height: 40px;
  width: 40px;
  padding: 0.8em;
  border-radius: 100%;
  border: 1px solid transparent;
  transition:  all 0.5s;
  -webkit-transition:  all 0.5s;
  -moz-transition:  all 0.5s;
  -o-transition:  all 0.5s;
}
.homeproduct-slide .slick-custom-arrow:hover img,
.homeproduct-slide .slick-custom-arrow:focus img,
.homeproduct-slide .slick-custom-arrow:active img {
  border-color: #E8D781;
}
.homeproduct-slide > .slick-list {
  overflow: auto;
}
.homeproduct-slide > .slick-list > .slick-track > .slick-slide {
  position: relative;
}
.homeproduct-slide > .slick-list > .slick-track > .slick-slide > div > .borderaround > .product-item > .row {
  height: 100vh;
}
.homeproduct-slide .borderaround:before {
  content: '';
  position: absolute;
  top: 75px;
  left: 40px;
  bottom: 75px;
  right: 40px;
  border: 1px solid rgba(232, 215, 129, 0.5);
  border-left: none;
  border-top: none;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: 0;
}
.homeproduct-slide .borderaround:after {
  content: '';
  position: absolute;
  top: 75px;
  left: 170px;
  right: 40px;
  background-color: rgba(232, 215, 129, 0.5);
  height: 1px;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: 0;
}
.homeproduct-slide .borderaround .product-item:before {
  content: '';
  position: absolute;
  left: 40px;
  top: 97px;
  bottom: 75px;
  background-color: rgba(232, 215, 129, 0.5);
  width: 1px;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: 0;
}
.homeproduct-slide .borderaround .product-item:after {
  /*content: counter(my-badass-counter, decimal-leading-zero);*/
  /*counter-increment: my-badass-counter;*/
  content: 'Products';
  position: absolute;
  top: 50px;
  left: 36px;
  color: #E8D781;
  /*font-size: 4rem;*/
  font-size: 30px;
  /*font-family: playfair-regular;*/
  font-family: lato-bold !important;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: 0;

}
.homeproduct-slide .slick-slide.slick-active .borderaround:before {
  opacity: 1;

}
.homeproduct-slide .slick-slide.slick-active .borderaround:after {
  opacity: 1;

}
.homeproduct-slide .slick-slide.slick-active .borderaround .product-item:before {
  opacity: 1;

}
.homeproduct-slide .slick-slide.slick-active .borderaround .product-item:after {
  opacity: 1;
}

/*  -- 4th Section  */
.home-onepage .section:nth-child(4):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  background-image: url('../images/homecontact_background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.btn-submit {
  background: transparent;
  padding: 6px 45px;
  border: 1px solid #E8D781;
  color: #E8D781;
  border-radius: 0;
}
.btn-submit:hover,
.btn-submit:focus,
.btn-submit:active {
  background: #E8D781;
  color: #000;
}

/*  About Us  */
#about .section {
  position: relative;
}
#about .image-banner img {
  max-height: 100vh;
  width: 100%;
  object-fit: contain;
  object-position: right;
}
#about .section .container > .row {
  min-height: 100vh;
}
/*  -- Section 1 */
#about .section:nth-child(1):before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  background-image: url('../images/about1_background.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
/*  -- Section 2 */
#about .section:nth-child(2):before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  background-image: url('../images/about2_background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
/*  -- Section 3 */
#about .section:nth-child(3):before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  background-image: url('../images/about3_background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: 0;
}
#about .section:nth-child(3):after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(transparent -20%, black 70%);
  z-index: 1;
}
#about .section:nth-child(3) .container {
  position: relative;
  z-index: 2;
}
/*  -- Distributor  */
.distributor-slide {
  position: relative;
}
.distributor-item {
  padding: 5px;
}
.distributor-item img {
  background: #fafafa;
  padding: 1rem 2.5rem;
  height: 150px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.distributor-slide .slick-custom-arrow {
  top: 0;
  bottom: 0;
  transform: translate(0);
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -o-transform: translate(0);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
}
.distributor-slide .slick-custom-arrow-left {
  left: -2px;
  background:linear-gradient(to right, rgba(0,0,0,.1), transparent);
}
.distributor-slide .slick-custom-arrow-right {
  right: -2px;
  background:linear-gradient(to left, rgba(0,0,0,.1), transparent);
}
@media (max-width: 991px) {
  .distributor-slide .slick-custom-arrow-left {
    width: auto;
  }

  .distributor-slide .slick-custom-arrow-right {
    width: auto;

  }
    
}

/*  Product  */
#product {
  padding-top: 80px;
  min-height: calc(100vh - 54px);
  display: flex;
  display: -ms-flex;
  flex-wrap: wrap;
  align-items: center;
}
#product #product_view {
  flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  max-width: 100%;
}
#product .product-empty {
  font-family: lato-bold;
  font-size: 2rem;
  padding: 25vh 0;
  text-align: center;
  color: rgba(219,200,104,0.8)
}

/*  -- Product Category Menu  */
.btn-category {
  border-radius: 6px;
  background-color: transparent;
  color: #E8D781;
  font-size: 0.85rem;
  padding: 6px 15px;
  border: 1px solid #E8D781;
  width: 100%;
}
.category-toggler {
  display: none;
  margin-bottom: 1.5rem;
}
.category-wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.category-wrapper .category-item:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.subcategory-wrapper .subcategory-item a {
  color: rgba(219,200,104,0.64);
  text-transform: capitalize;
  font-size: 1.3rem;
  display: block;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.subcategory-wrapper .subcategory-item a span {
  padding: 0.3rem 0.5rem;
  display: inline-block;
  background: #000;
  position: relative;
  z-index: 1;
}
.subcategory-wrapper .subcategory-item.active a {
  color: #DBC868 !important;
  text-transform: capitalize;
  font-size: 1.8rem !important;
  display: block;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.subcategory-wrapper .subcategory-item a:after {
  content: "";
  height: 1px;
  width: 0;
  background: #E8D781;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  vertical-align: middle;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.subcategory-wrapper .subcategory-item.active a:after {
  width: 100% !important;
  background: #E8D781;
}
.subcategory-wrapper .subcategory-item a:hover,
.subcategory-wrapper .subcategory-item a:focus,
.subcategory-wrapper .subcategory-item a:active {
  color: white;
  font-size: 1.5rem;
}
.subcategory-wrapper .subcategory-item a:hover:after,
.subcategory-wrapper .subcategory-item a:focus:after,
.subcategory-wrapper .subcategory-item a:active:after {
  width: 100%;
  background: rgba(255,255,255,0.8) !important;
}

.header-halal h3 {
  color: #E8D781;
  margin-bottom: 20px;
}

@media (max-width: 1200px) and (min-width: 991px) {
  .subcategory-wrapper .subcategory-item.active a:after {
    width: 50px !important;
    background: black !important;
  }
  .subcategory-wrapper .subcategory-item a:hover:after,
  .subcategory-wrapper .subcategory-item a:focus:after,
  .subcategory-wrapper .subcategory-item a:active:after {
    width: 35px;
    background: rgba(0,0,0,0.6);
  }
}
@media (max-width: 1200px) {
  .subcategory-wrapper .subcategory-item a:after {
    right: 0;
  }
  .product-slide  {
    position: relative;
  }
}
@media (max-width: 991px) {
  .category-wrapper {
    padding-bottom: 1rem;
  }
  .category-toggler {
    display: block;
  }
  .category-list {
    display: none;
    height: 0;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition-delay: opacity 0.5s;
    -webkit-transition-delay: opacity 0.5s;
    -moz-transition-delay: opacity 0.5s;
    -o-transition-delay: opacity 0.5s;
  }
  .category-list.show {
    display: block;
    height: 100%;
    opacity: 1;
  }
  .subcategory-wrapper .subcategory-item.active a {
    font-size: 0.7rem;
  }
  .subcategory-wrapper .subcategory-item a {
    font-size: 0.7rem;
  }
}
/*  -- Product List Slider  */
.product-slide .slick-slide .product-item .image {
  padding: 0;
  border: 1px solid transparent;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.product-slide .slick-slide.slick-center.slick-current .product-item .image {
  border-color: #E8D781;
  padding: 15px;
}
.product-slide .slick-slide .product-item .image img {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  box-shadow: 0px 2px 10px rgba(0,0,0,0);
  width: 100%;
}
.product-slide .slick-slide.slick-center .product-item .image img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}
.product-slide .slick-slide .product-item .text {
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  padding: 1rem;
}
.product-slide .slick-slide.slick-center .product-item .text {
  opacity: 1;
}
.product-slide .slick-customvertical-arrow.slick-disabled {
  opacity: 0.2;
}
.product-slide .slick-customvertical-arrow img {
  height: 50px;
  padding: 16px 0;
}
.product-slide .slick-customvertical-arrow {
  position: absolute;
  width: 41.667%;
  text-align: center;
  z-index: 3;
  height: 50px;
  font-size: 1.2rem;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.product-slide .slick-customvertical-arrow-up {
  top: 0;
  /* background: white; */
  background-image: linear-gradient(to bottom, #000, transparent);
  -webkit-background-image: linear-gradient(to bottom, #000, transparent);
  -moz-background-image: linear-gradient(to bottom, #000, transparent);
  -o-background-image: linear-gradient(to bottom, #000, transparent);
}
.product-slide .slick-customvertical-arrow-up img {
  transform: rotate(-90deg);
}
.product-slide .slick-customvertical-arrow-down {
  bottom: 0;
  background-image: linear-gradient(to bottom, transparent, #000);
  -webkit-background-image: linear-gradient(to bottom, transparent, #000);
  -moz-background-image: linear-gradient(to bottom, transparent, #000);
  -o-background-image: linear-gradient(to bottom, transparent, #000);
}
.product-slide .slick-customvertical-arrow-down img {
  transform: rotate(90deg);
}
@media (max-width: 991px) {
  .product-slide .slick-customvertical-arrow {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .product-slide .slick-customvertical-arrow {
    width: 100%;
  }
}
/*  -- Product Detail  */
#product_detail .section {
  padding-top: 150px;
}
#product_detail .content .image {
  margin-bottom: 1.5rem;
}
#product_detail .content .image img {
  border: 1px solid #E8D781;
  padding: 15px;
}
#product_detail .content .text .title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
#product_detail .content .text .desc {
  font-size: 16px;
}
#product_detail .content .text .list {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E8D781;
}
#product_detail .content .text .list li:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E8D781;
}
#product_detail .content .text .list li {
  display: flex;
  align-items: center;
  font-size: 12px;
}
#product_detail .content .text .list li .label {
  margin-right: 1.5rem;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  max-width: 120px;
  color: #E8D781;
  font-family: lato-bold;
}
#product_detail .content .text .list li .value {
  width: 100%;
  overflow-x: auto;
}
#product_detail .content .text .list li .value ul {
  padding-left: 0;
}
#product_detail .content .text .list li .value table td {
  padding: 0 10px;
}
@media (max-width: 991px) {
  #product_detail .content .text .title {
    font-size: 1.2rem;
  }
  #product_detail .content .text .desc {
    font-size: 13px;
  }
  #product_detail .content .text .list li  {
    font-size: 10px;
  }
}

/*  Highlights  */
#highlights_detail .section > img {
  height: 100vh;
  width: 50vw;
  object-fit: cover;
}
#highlights_detail .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#highlights_detail .overlay > .container,
#highlights_detail .overlay > .container > .row {
  height: 100%;
}
#highlights_detail .overlay .content {
  padding: 0 3rem;
}
@media (max-width: 991px) {
  #highlights_detail .section > img {
    width: 100vw;
  }
  #highlights_detail .overlay {
    background: linear-gradient(to bottom , rgba(0,0,0,0.5), rgba(0,0,0,0.2))
  }
}
@media (max-width: 576px) {
  #highlights_detail .overlay .content {
    padding: 0 1.5rem;
  }
}

/*  News  */
#news .headline-wrapper {
  margin-top: 120px;
}
.headline-wrapper {
  position: relative;
}
.headline-wrapper img {
  width: 100%;
}
.headline-wrapper .overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem 1rem;
  background: rgba(0,0,0,0.6);
}
.headline-wrapper .overlay > .container,
.headline-wrapper .overlay > .container > .row {
  height: 100%;
}
.headline-wrapper .category {
  font-size: 12px;
  margin-bottom: 1rem
}
.headline-wrapper .title {
  margin-bottom: 1rem;
  font-family: lato-bold;
  letter-spacing: 0.5px;
  font-size: 1.8rem;
  color: #E8D781;
  line-height: 1.25;
}
.headline-wrapper .title a {
  font-family: lato-bold;
  letter-spacing: 0.5px;
  font-size: 1.8rem;
  color: #E8D781;
  line-height: 1.25;
}
.headline-wrapper .separator {
  height: 1px;
  width: 125px;
  background: #E8D781;
  margin-bottom: 1rem;
}
.headline-wrapper .detail {
  font-size: 12px;
}

.color-primary {
  color: #E8D781 !important;
}

@media (max-width: 991px) {
  .headline-wrapper .overlay {
    padding: 1rem 0.5rem;
  }
  .headline-wrapper .category {
    margin-bottom: 0.5rem;
  }
  .headline-wrapper .title {
    margin-bottom: 0.5rem;
  }
  .headline-wrapper .title a {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {

  .headline-wrapper .category,
  .headline-wrapper .detail {
    font-size: 10px;
  }
}
.news-list {
  margin-top: 2rem;
}
.news-list .news-item {
  /* border-top: 1px solid rgba(232, 215, 129, 0.5); */
  border-top: 1px solid #E8D781;
  padding-top: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.news-list .news-item:hover,
.news-list .news-item:focus,
.news-list .news-item:active {
  /* border-color: #E8D781; */
}
.news-list .news-item .date {
  -ms-flex: 0 0 140px;
  flex: 0 0 140px;
  max-width: 140px;
  align-self: center;
  padding: 0 1rem;
  /* color: rgba(232, 215, 129, 0.5); */
  color: #E8D781;
  line-height: 1.25;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.news-list .news-item:hover .date,
.news-list .news-item:focus .date,
.news-list .news-item:active .date {
  color: #E8D781
}
.news-list .news-item .date span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.news-list .news-item .image {
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
  max-width: 300px;
  opacity: 0.6;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.news-list .news-item:hover .image,
.news-list .news-item:focus .image,
.news-list .news-item:active .image {
  opacity: 1;
}
.news-list .news-item .text {
  -ms-flex: 0 0 calc(100% - 440px);
  flex: 0 0 calc(100% - 440px);
  max-width: calc(100% - 440px);
  padding: 0 1.5rem;
}
.news-list .news-item .text .category {
  font-size: 12px;
  margin-bottom: 1rem;
}
.news-list .news-item .text .title a {
  font-family: lato-bold;
  letter-spacing: 0.5px;
  font-size: 1.4rem;
  color: #E8D781;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.news-list .news-item .text .shortdesc {
  margin-top: 1rem;
}
.news-list .news-item .text .shortdesc p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
@media (max-width: 991px) {
  .news-list .news-item .image {
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    max-width: 200px;
    align-self: center;
  }
  .news-list .news-item .text .shortdesc {
    margin-top: 1rem;
  }
  .news-list .news-item .text {
    -ms-flex: 0 0 calc(100% - 340px);
    flex: 0 0 calc(100% - 340px);
    max-width: calc(100% - 340px);
    padding: 0 1.5rem;
  }
}
@media (max-width: 767px) {
  .news-list .news-item .image {
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
    max-width: 150px;
  }
  .news-list .news-item .text {
    -ms-flex: 0 0 calc(100% - 150px);
    flex: 0 0 calc(100% - 150px);
    max-width: calc(100% - 150px);
    padding: 0 1.5rem;
    align-self: center;
  }
  .news-list .news-item .text .title a {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .news-list .news-item .image {
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    max-width: 100px;
  }
  .news-list .news-item .text {
    -ms-flex: 0 0 calc(100% - 100px);
    flex: 0 0 calc(100% - 100px);
    max-width: calc(100% - 100px);
    padding: 0 1.5rem;
  }
  .news-list .news-item .text .category {
    margin-bottom: 0.5rem;
    font-size: 10px;
  }
  .news-list .news-item .text .title a {
    font-size: 1rem;
  }
}
/*  -- News Detail  */
@media (min-width: 768px) {
  #news_detail .content .text {
    margin-top: 3rem;
  }
}
@media(max-width: 767px) {
  #news_detail .headline-wrapper {
    margin-top: 70px;
  }
  #news_detail .headline-wrapper .overlay {
    position: initial;
    padding-left: 0;
    padding-right: 0;
  }
}

/*  Agent  */
#agent .image-banner img {
  max-height: 100vh;
  width: 100%;
  object-fit: contain;
  object-position: left;
}
#agent .image-banner .overlay {
  background: linear-gradient(to left, #000 40%, transparent);
}
#agent section {
  position: relative;
}
#agent .section .section-container {
  position: relative;
  z-index: 1;
}
#agent .section .section-container,
#agent .section .section-container > .container,
#agent .section .section-container > .container > .row {
  height: 100%;
}
#agent section:nth-child(2) {
  height: 100vh;
  background-image: url('../images/agent2_background.png');
  background-repeat: no-repeat;
  background-size: cover;
}
#agent section:nth-child(2) .section-container {
  background: linear-gradient(to bottom, #000, rgba(0,0,0,0.5) 50%);
}

.agent-wrapper ul {
  padding-left: 0;
  list-style-type: none;
}
.agent-wrapper .agent-item {
  border: 1px solid #E8D781;
  text-align: center;
  margin-bottom: 1rem;
}
.agent-wrapper .agent-item .title {
  border-bottom: 1px solid #E8D781;
  font-family: lato-bold;
  font-size: 1.8rem;
  padding: 1.5rem 1rem;
  letter-spacing: 2px;
  color: #E8D781;
}
.agent-wrapper .agent-item .list {
  padding: 1rem 1.5rem;
}
.agent-wrapper .agent-item .list li {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.agent-wrapper .agent-item .list li:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E8D781;
}
#agent section:nth-child(3) {
  min-height: 100vh;
}
#agent section:nth-child(3):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  background-image: url('../images/homecontact_background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#agent section:nth-child(3) .form-group.required label:before {
  content: '*';
  display: inline-block;
  color: #fff;
  margin-right: 0.25rem;
}
#agent section:nth-child(3) .form-group.required label:after {
  content: '(Required)';
  display: inline-block;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  margin-left: 0.25rem;
}


section.partner-bg1 { 
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

section.partner-bg1:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url('../images/agent2_background.png');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}

section.partner-bg2 { 
  height: 100vh;
  position: relative;
}

section.partner-bg2:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url('../images/homecontact_background.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
}

@media (max-width: 991px) {
  #agent section:nth-child(2) .content {
    margin-top: 1.5rem;
  }
  #agent section:nth-child(2) {
    height: auto;
    /* min-height: 100vh; */
  }
  .agent-wrapper .agent-item .title {
    font-size: 1.2rem;
  }
}

/*  Contact  */

#contact .section:nth-child(1) {
  padding-top: 150px;
  background-image: url("../images/contact_background.png");
  background-size: cover;
  background-position: center;
  padding-bottom: 70px;
  position: relative;
}
#contact .section:nth-child(1):before {
  content: "";
  position: absolute;
  background: linear-gradient(to top, #000, rgba(0,0,0,0.5), #000);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#contact .section-heading .heading {
  margin-bottom: 2.5rem;
}
#contact .maps {
  border: 1px solid #E8D781;
  padding: 2rem;
}
#contact .maps iframe {
  height: 300px;
  width: 100%;
}
#contact .detail .contact-wrapper {
  border: 1px solid #E8D781;
  margin-bottom: 50px;
}
#contact .detail .contact-wrapper li {
  display: flex;
  flex-wrap: wrap;
  color: #E8D781;
}
#contact .detail .contact-wrapper li:not(:last-child) {
  border-bottom: 1px solid #E8D781;
}
#contact .detail .contact-wrapper li .label {
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  max-width: 100px;
  padding: 1rem;
  border-right: 1px solid #E8D781;
}
#contact .detail .contact-wrapper li .value {
  font-family: lato-bold;
  -ms-flex: 0 0 calc(100% - 100px);
  flex: 0 0 calc(100% - 100px);
  max-width: calc(100% - 100px);
  padding: 1rem;
}
#contact .detail .contact-wrapper li .value a {
  color: #E8D781;
}

/*  Footer  */
#footer-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 1;
  border-top: 1px solid rgba(232, 215, 129, 0.8);
}
footer {
  border-top: 1px solid rgba(232, 215, 129, 0.8);
  position: relative;
}
footer .copyright,
#footer-copy .copyright {
  color: #E8D781;
  padding: 1rem 0;
  text-align: right;
}
footer .socialmedia li:not(:last-child),
#footer-copy .socialmedia li:not(:last-child) {
  margin-right: 1rem;
}
footer .socialmedia a,
#footer-copy .socialmedia a {
  font-size: 1.5rem;
  color: #E8D781;
}

#slide-sertif .item {
  padding: 10px;
  background-color: #F4F4F4;
}

#slide-sertif .item img {
  height: 480px;
  object-fit: contain;
  object-position: center;
}

#slide-sertif .owl-nav {
  width: 100%;
  top: 50%;
  position: absolute;
  transform: perspective(1px) translateY(-50%);
  margin-top: -23px;
}

#slide-sertif .owl-nav button {
  display: inline-block;
  transition: .2s;
}

#slide-sertif .owl-nav button.owl-prev {
  color: #E8D781;
  left: -50px;
  position: absolute;
}

#slide-sertif .owl-nav button.owl-next {
  color: #E8D781;
  right: -50px;
  position: absolute;
}

#slide-sertif .owl-nav button.owl-prev i {
  font-size: 30px;
  /* margin-left: -2px; */
}

#slide-sertif .owl-nav button.owl-next i {
  font-size: 30px;
  /* margin-right: -2px; */
}

#slide-sertif .owl-nav button:hover {
  background-color: transparent;
  opacity: .5;
  outline: none !important;
  box-shadow: none !important;
}


@media (max-width: 991px) {
  footer .copyright,
  #footer-copy .copyright,
  footer .socialmedia,
  #footer-copy .socialmedia  {
    text-align: center;
  }
}

/*  Column Wrapper  */
.column-wrapper {
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .column-wrapper .column-col .column-item > div:not(:last-child) {
    margin-bottom: 1rem;
  }
  .column-wrapper .column-col .column-item .image {
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
  }
  .column-wrapper .column-col .column-item .image img {
    width: 100%;
  }
}
@media (max-width:991px) {

  .column-wrapper .column-col .column-item {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    align-items: center;
  }
  .column-wrapper .column-col .column-item .image {
    flex: 0 0 70px;
    -ms-flex: 0 0 70px;
    max-width: 70px;
    margin-bottom: 0;
  }
  .column-wrapper .column-col .column-item .desc {
    flex: 0 0 calc(100% - 70px);
    -ms-flex: 0 0 calc(100% - 70px);
    max-width: calc(100% - 70px);
    padding-left: 1.5rem;
    text-align: left;
  }
  .column-wrapper .column-col:not(:last-child) .column-item {
    margin-bottom: 1rem;
  }
}