@charset "utf-8";
/* CSS Document */

@import url("../../fonts/1. KB FONT_Bold(CI).otf");
@import url("../../fonts/KBFGDisplayL.ttf");
@import url("../../fonts/KBFGDisplayM.ttf");
@import url("../../fonts/KBFGDisplayMI.ttf");
@import url("../../fonts/KBFGTextL.ttf");
@import url("../../fonts/KBFGTextM.ttf");
@import url("../fontawesome/all.css");
@import url("../fontawesome/fontawesome.css");

@font-face {
  font-family: 'KBFG Text Light';
  src: url("../../fonts/KBFGTextL.ttf") format('truetype');
}
@font-face {
  font-family: 'KBFG Text Medium';
  src: url("../../fonts/KBFGTextM.ttf") format('truetype');
}
@font-face {
  font-family: 'KBFG Display Medium';
  src: url("../../fonts/KBFGDisplayM.ttf") format('truetype');
}
@font-face {
  font-family: 'KBFG Display Medium Italic';
  src: url("../../fonts/KBFGDisplayMI.ttf") format('truetype');
}
@font-face {
  font-family: 'KBFG Display Light';
  src: url("../../fonts/KBFGDisplayL.ttf") format('truetype');
}
@font-face {
  font-family: 'KB_Bold';
  src: url("../../fonts/1. KB FONT_Bold(CI).otf") format('opentype');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html, 
body {
  width: 100%;
  font-family: 'KBFG Text Medium';
  background-color: white;
  color: #121212;
  -webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header & Navbar
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
#header {
  width: 90%;
  height: 3em;
  top: 2.5em;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: fixed;
  background-color: rgba(255,255,255,.85);
  border-radius: 140px;
  z-index: 999;
  transition: all 0.5s linear;
  display: flex;
}

#header .container {
  display: flex;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  border-radius: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all .5s linear;
  position: fixed;
}

#header .logo {
  width: 20em;
  margin-right: 0.5em;
  padding: 5px 0 7px 0;
}

#header .logo img {
  width: 100%;
}

@media (max-width: 575px) {
  #header {
    width: 100%;
    height: 3.5em;
    top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
    margin: 0;
    padding: 0;
  }
  
  #header.header-scrolled {
    top: 0;
    position: fixed;
    width: 100%;
    height: 3.5em;
    margin: 0;
    padding: 0;
  }
  
  #header .logo {
    width: 11em;
    position: absolute;
    margin: 0;
  }
  
  #header .logo img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  width: 70%;
  justify-content: flex-end;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  font-family: "KBFG Text Medium";
  font-weight: 500;
  display: inline-block;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  margin-left: 5px;
  font-size: 0.95em;
  color: rgba(119, 108, 97, 1);
  white-space: nowrap;
  transition: all 0.3s linear;
  border-radius: 2em;
}

.navbar a svg {
  font-size: 0.95em;
  line-height: 0;
  margin-left: 0.5em;
  transition: all 0.25s linear;
}

.navbar a:focus,
.navbar a:focus-visible {
  color: rgba(119, 108, 97, 1);
}

.navbar a:hover, 
.navbar .active, 
.navbar li:hover > a {
  background: rgba(255, 214, 67, 1);
  color: rgba(119, 108, 97, 1);
}

.navbar a:hover svg {
  transform: rotate(-180deg);
  transition: all 0.25s linear;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 5px  0 0 0;
  padding: 25px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 0.15em 0.25em 0.15em rgba(119, 108, 97, 0.35);
  transition: all 0.3s linear;
  border-radius: 1em;
}

.navbar .dropdown ul.dropdownProducts {
  display: block;
  position: absolute;
  left: -100%;
  top: calc(100% + 30px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: all 0.25s ease;
  border-radius: 1em;
  padding: 2em;
  margin: 5px 0 0 -10px;
  column-count: 2;
  column-gap: 0.5rem;
  column-fill: balance;
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0,0,0,.25);
}

.navbar .dropdown ul.dropdownProducts li > .newItemHeaderIcon {
  position: absolute;
  top: -5px;
  right: 0;
  width: 35px;
  height: 35px;
}

.navbar .dropdown ul.dropdownProducts li > .newItemHeaderIcon img {
  position: absolute;
  width: 100%;
  transition: all 0.25s ease;
}

.navbar .dropdown ul.dropdownProducts li > .newItemHeaderIcon img.newProductIconHover {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: all 0.25s ease;
}

.navbar .dropdown ul.dropdownProducts li:hover > .newItemHeaderIcon img {
  opacity: 0;
  transition: all 0.25s ease;
}

.navbar .dropdown ul.dropdownProducts li:hover > .newItemHeaderIcon img.newProductIconHover {
  opacity: 1;
  transition: all 0.25s ease;
}

.navbar .dropdown ul > li {
  min-width: 100px;
  position: relative;
  border-left: #FFD643 solid 2px;
  color: rgba(119, 108, 97, 1);
  transition: all 0.25s ease;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: rgba(119, 108, 97, 1);
  margin: 0 5px;
  font-size: 0.95em;
  font-weight: 500;
}

.navbar .dropdown ul a:hover, 
.navbar .dropdown ul .active:hover, 
.navbar .dropdown ul li:hover > a {
  color: rgba(119, 108, 97, 1);
  transition: all 0.25s ease;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 110%;
  visibility: visible;
  transition: all 0.25s ease;
}

/**
* Navbar Language Menu 
*/
.navbar ul > li.IdEnBil {
  text-decoration: none;
  position: absolute;
  left: 0;
  color: rgba(119, 108, 97, 1);
}

.navbar ul > li.IdEnBil > a {
  text-decoration: none;
  padding: 5px 0;
}

.navbar li.IdEnBil:hover > a,
.navbar ul > li.IdEnBil > a:hover {
  background-color: transparent !important;
}

/**
* Desktop Navigation Dropdown - Dropdown 
*/

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
  transition: all 0.25s ease;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
  transition: all 0.25s ease;
}

@media (max-width: 575px) {
  .navbar {
    width: auto;
    position: absolute;
    right: 15px;
    top: 12px;
  }
}

@media (max-width: 1280px) {
  .navbar a {
    font-size: 0.75em;
  }
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  z-index: 9999;
}

@media (max-width: 575px) {
  .mobile-nav-toggle {
    display: block;
    color: rgb(119, 108, 97, 1);
  }
  .navbar ul {
    display: none;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    color: rgb(119, 108, 97, 1);
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  z-index: 999;
  width: 100%;
}

.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;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 1);
  overflow-y: auto;
  transition: all 0.3s ease;
}

.navbar-mobile ul > li.IdEnBil {
  padding: 10px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-mobile a {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: rgba(119, 108, 97, 1);
}

.navbar-mobile a:hover, .navbar-mobile .active, 
.navbar-mobile li:hover > a {
  background-color: rgba(255, 214, 67, 1);
  color: rgba(119, 108, 97, 1);
  width: 95%;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile a > svg {
  right: 2em;
  position: absolute;
}

.navbar-mobile a:hover > svg {
  margin-top: 0.25em;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 10px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul.dropdownProducts {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 10px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  column-count: 1;
  column-gap: 0 !important;
  column-fill: balance;
}

.navbar-mobile .dropdown ul.dropdownProducts li > .newItemHeaderIcon {
  position: absolute;
  top: 0;
  right: 0.5em;
  width: 35px;
  height: 35px;
}

.navbar-mobile .dropdown ul.dropdownProducts li > .newItemHeaderIcon img {
  position: absolute;
  width: 100%;
  transition: all 0.25s ease;
}

.navbar-mobile .dropdown ul.dropdownProducts li > .newItemHeaderIcon img.newProductIconHover {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: all 0.25s ease;
}

.navbar-mobile .dropdown ul.dropdownProducts li:hover > .newItemHeaderIcon img {
  opacity: 0;
  transition: all 0.25s ease;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i{
  font-size: 12px;
  float: right;
}

.navbar-mobile .dropdown ul a:hover, 
.navbar-mobile .dropdown ul .active:hover, 
.navbar-mobile .dropdown ul li:hover > a {
  color: #fff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
  visibility: visible !important;
}

.navbar-mobile .dropdown  > .dropdownProducts.dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Button WA
--------------------------------------------------------------*/
#buttonWA {
  position: fixed;
  bottom: 3em;
  right: 3em;
  z-index: 98;
}

#buttonWA .nav-item {
  width: 5em;
  height: 5em;
  background: linear-gradient(0deg, #25CF43 0%, #61FD7D 100%);
  border-radius: 50%;
  border: 5px solid white; 
  box-shadow: 0 2px 0.15em 0 rgba(0,0,0,.5);
}

#buttonWA .nav-item ul {
  padding: 0.25rem;
  margin: 0 auto;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 5px;
  position: absolute;
}

#buttonWA .nav-item ul > li {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  align-content: center;
  align-items: center;
  text-align: center;
  display: flex;
}

#buttonWA .nav-item ul > li > a {
  color: #ffffff;
  font-size: 3em;
  line-height: 1em;
  text-align: center;
  padding: 0;
  margin: 0;
  display: inline-flex;
  position: relative;
  top: 2px;
}

@media (max-width: 575px) {
  #buttonWA {
    position: fixed;
    bottom: 1em;
    right: 1em;
    display: block;
    z-index: 999;
  }
  
  #buttonWA .nav-item {
    width: 3.5em;
    height: 3.5em;
    border: 2px solid white;
    box-shadow: 0 0 0.35em 0 rgba(0,0,0,.5);
  }
  
  #buttonWA .nav-item ul > li > a {
    font-size: 2em;
  }
}

/*--------------------------------------------------------------
# heroSlider
--------------------------------------------------------------*/
#hero {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 120vh;
  position: relative;
  display: flex;
}

#hero .heroSlideContainer {
  width: 100%;
}

#hero .heroSlide {
  width: 100%;
  height: 100%;
  display: block;
}

#hero .heroSlideItem {
  box-sizing: content-box;
  display: flex;
  height: 120vh;
}

#hero .heroSlide .heroSlideItem img {
  object-fit: cover;
  display: block;
  width: 100%;
  border-bottom-left-radius: 3em;
  border-bottom-right-radius: 3em;
}

#hero .hero-container .heroCarousel.owl-carousel .owl-stage-outer {
  width: 100%;
}

#hero .owl-carousel > .owl-nav {
  width: 100%;
  z-index: 5;
  position: absolute;
  top: 40%;
}

#hero .owl-carousel > .owl-nav .owl-prev {
  left: 1em;
  position: absolute;
}

#hero .owl-carousel > .owl-nav .owl-prev span {
  font-size: 2.25em;
  opacity: .75;
}

#hero .owl-carousel > .owl-nav .owl-next {
  right: 1em;
  position: absolute;
}

#hero .owl-carousel > .owl-nav .owl-next span {
  font-size: 2.25em;
  opacity: .75;
}

#hero .owl-carousel > .owl-nav .owl-prev,
#hero .owl-carousel > .owl-nav .owl-next {
  color: rgba(82,82,82,1.00);
  background-color: rgba(255,255,255,.75);
  width: 3.25em;
  height: 3.25em;
  border-radius: 50%;
}

#hero .owl-carousel > .owl-nav .owl-prev:hover,
#hero .owl-carousel > .owl-nav .owl-next:hover {
  background-color: rgba(255, 214, 67, 1);
  color: rgba(119, 108, 97, 1);
  transition: .2s ease;
}

.heroSlide .owl-nav {
  position: absolute;
  z-index: 1;
}

#hero .heroSlideItem .slideText {
  z-index: 2;
  position: absolute;
  display: inline-block;
}

#hero .heroSlideItem > .centerContent{
  align-content: center;
  align-items: center;
  display: block;
  text-align: center;
  margin: 0 auto;
  top: 10em;
  left: 0;
  right: 0;
  padding: 0 20em;
}

#hero .heroSlideItem > .centerContent h1 {
  font-size: 2em;
  font-weight: 600;
  color: #000000;
}

#hero .heroSlideItem > .centerContent p {
  font-size: 1em;
  font-weight: 500;
  padding: 0.5em 0;
  margin: 0 auto;
  color: #776C61;
}

#hero .heroSlideItem > .centerContent a {
  width: 10em;
  height: 2em;
  display: block;
  position: relative;
  background-color: #FFD643;
  color: #776C61;
  margin: 1em auto;
  padding: 2px;
  border-radius: 1em;
  text-decoration: none;
  text-align: center;
}

#hero .heroSlideItem > .centerContent a > span {
  font-size: 1.15em;
  line-height: 1.5em;
  text-decoration: none;
  font-weight: 600;
}

#hero .heroSlideItem > .rightContent {
  align-content: end;
  align-items: end;
  justify-content: flex-end;
  display: block;
  text-align: right;
  float: right;
  margin: 1em auto;
  top: 10em;
  right: 5em;
  padding-left: 15em;
}

#hero .heroSlideItem > .rightContent h1 {
  font-size: 2em;
  font-weight: 600;
  color: #000000;
}

#hero .heroSlideItem > .rightContent p {
  font-size: 1em;
  font-weight: 500;
  margin: 0 auto;
  color: #776C61;
  padding: 0.5em 0;
}

#hero .heroSlideItem > .rightContent a {
  width: 10em;
  height: 2em;
  display: block;
  position: relative;
  background-color: #FFD643;
  color: #776C61;
  margin: 1em auto;
  padding: 2px;
  border-radius: 1em;
  text-decoration: none;
  text-align: center;
}

#hero .heroSlideItem > .rightContent a > span {
  font-size: 1.15em;
  line-height: 1.5em;
  text-decoration: none;
  font-weight: 600;
}

#hero .heroSlideItem > .leftContent {
  align-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  display: block;
  text-align: left;
  float: left;
  margin: 0 auto;
  top: 10em;
  left: 5em;
  padding-right: 15em;
}

#hero .heroSlideItem > .leftContent h1 {
  font-size: 2em;
  font-weight: 600;
  color: #000000;
}

#hero .heroSlideItem > .leftContent p {
  font-size: 1em;
  font-weight: 500;
  margin: 0 auto;
  color: #776C61;
  padding: 0.5em 0;
}

#hero .heroSlideItem > .leftContent a {
  width: 10em;
  height: 2em;
  display: block;
  position: relative;
  background-color: #FFD643;
  color: #776C61;
  margin: 1em auto;
  padding: 2px;
  border-radius: 1em;
  text-decoration: none;
  text-align: center;
}

#hero .heroSlideItem > .leftContent a > span {
  font-size: 1.15em;
  line-height: 1.5em;
  text-decoration: none;
  font-weight: 600;
}

#hero .heroSlideItem > .centerContent a:hover,
#hero .heroSlideItem > .rightContent a:hover,
#hero .heroSlideItem > .leftContent a:hover {
  background-color: #776C61;
  color: #ffffff;
  transition: .25s ease;
}

@media (max-width: 575px) {
  #hero {
    width: 100%;
    height: 100vh;
    border-bottom-left-radius: 1.5em;
    border-bottom-right-radius: 1.5em;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  
  #hero .heroSlideContainer {
    width: 100%;
  }
  
  #hero .heroSlideItem {
    height: 100vh;
  }
  
  #hero .heroSlide .heroSlideItem img {
    border-bottom-left-radius: 1.5em;
    border-bottom-right-radius: 1.5em;
  }
  
  #hero .owl-carousel > .owl-nav {
    width: 99%;
    z-index: 999;
    position: absolute;
    top: 50vh;
    margin: 0 auto;
    left: 0;
    right: 0;
    justify-content: center;
  }

  #hero .owl-carousel > .owl-nav .owl-prev {
    left: 0.25em;
    position: absolute;
  }

  #hero .owl-carousel > .owl-nav .owl-next {
    right: 0.25em;
    position: absolute;
  }

  #hero .owl-carousel > .owl-nav .owl-prev span,
  #hero .owl-carousel > .owl-nav .owl-next span,
  #hero .owl-carousel > .owl-nav .owl-prev span > svg,
  #hero .owl-carousel > .owl-nav .owl-next span > svg {
    font-size: 1.5em;
    opacity: .95;
    text-shadow: 0 0 0.25em rgba(0, 0, 0, 0.5);
    stroke: rgba(255, 214, 67, 0.5);
    stroke-width: 20px;
    stroke-linecap: round;
  }
  
  #hero .owl-carousel > .owl-nav .owl-prev,
  #hero .owl-carousel > .owl-nav .owl-next {
    color: rgba(82,82,82,1.00);
    background-color: /*rgba(255,255,255,.5)*/ transparent;
    width: 2.15em;
    height: 2.15em;
    border-radius: 50%;
  }
  
  #hero .owl-carousel .owl-stage:after {
    display: none;
    visibility: hidden;
  }
  
  #hero .heroSlideItem .slideText {
    text-align: center;
    justify-content: center;
    align-content: center;
    align-items: center;
    top: 63vh;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 20em;
    display: block;
    padding: 1.25em 0;
    margin: 0 auto;
    background-color: rgba(0,0,0,0.25);
    /*background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.05) 100%);*/
    box-shadow: 0 0.5em 0.5em 0 rgba(0,0,0,.35);
    float: none;
  }
  
  #hero .heroSlideItem .slideText h1 {
    font-size: 1.35em;
    width: 90%;
    display: block;
    left: 0;
    right: 0;
    text-align: center;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 0;
    margin: 0 auto;
    float: none;
    color: rgba(255,255,255,1.00);
  }
  
  #hero .heroSlideItem .slideText p {
    font-size: 0.8em;
    width: 90%;
    max-height: 8em;
    text-align: justify;
    text-align-last: center;
    text-decoration: none;
    text-shadow: none;
    float: none;
    left: 0;
    right: 0;
    margin: 15px auto;
    padding: 0;
    justify-content: center;
    align-content: center;
    align-items: center;
    overflow: hidden;
    overflow-y: scroll;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    color: rgba(255,255,255,1.00);
    line-height: 1.25;
  }
  
  #hero .heroSlideItem .slideText .heroButton {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 5px auto;
    float: none !important;
  }
}

/*--------------------------------------------------------------
# Yellow Frame
--------------------------------------------------------------*/
#yellowFrameArea {
  width: 100%;
  position: relative;
  z-index: 2;
  display: block;
  top: -14em;
  margin-bottom: -10em;
}

#yellowFrameArea .yellowFrame {
  margin: 0 auto;
  margin-bottom: 3.5em;
  background-color: #FFD643;
  border-radius: 1.5em;
  position: relative;
  display: block;
  padding: 0 2em;
}

@media (max-width: 575px) {
  #yellowFrameArea {
    top: -5em;
    margin-bottom: -3em;
  }
  
  #yellowFrameArea .yellowFrame {
    padding: 0 0.5em;
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Main Area
--------------------------------------------------------------*/
/**
* Main Area 
*/
#mainArea {
  position: relative;
}

/**
* Home About
*/
#homeAbout {
  width: 100%;
  position: relative;
  z-index: 2;
  display: block;
  top: -16em;
  /*transform: translate(0, -10em);*/
  margin-bottom: -10em;
}

#homeAbout .homeAboutFrame {
  margin: 0 auto;
  background-color: #FFD643;
  border-radius: 1.5em;
  position: relative;
  display: block;
  padding: 0 2em;
}

#homeAbout .homeAboutFrame h1 {
  font-size: 2em;
  text-align: center;
  font-weight: 600;
  margin: 1em auto;
  margin-bottom: 1em;
  padding-top: 1em;
  position: relative;
}

#homeAbout .homeAboutFrame p {
  font-size: 1em;
  text-align: justify;
  text-align-last: center;
  font-weight: 500;
  margin: 1em 2em;
  padding: 0 7em;
  padding-bottom: 2.5em;
  position: relative;
  color: #776C61;
  border-bottom: 1px solid #776C61;
}

#homeAbout .homeAboutContent {
  width: 100%;
  display: flex;
  margin: 0 auto;
  padding: 2em 0;
  padding-bottom: 5rem;
}

#homeAbout .homeAboutContent > .homeAboutColumn {
  padding: 0 0.25em;
  display: inline-block;
  position: relative;
  text-align: center;
  color: #776C61;
  align-items: center;
}

#homeAbout .homeAboutContent > .homeAboutColumn .homeAboutIcon img {
  height: 3.5em;
  display: inline-block;
  position: relative;
}

#homeAbout .homeAboutContent > .homeAboutColumn .homeAboutScirpt {
  width: 100%;
  text-align: justify;
  text-align-last: center;
  padding: 5px;
}

#homeAbout .homeAboutContent > .homeAboutColumn .homeAboutScirpt h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin: .5em auto;
  text-align: center;
}

#homeAbout .homeAboutContent > .homeAboutColumn .homeAboutScirpt p {
  font-size: .95rem;
  padding: 0 0.5em;
  margin: 0 auto;
  border-bottom: none;
}

@media (max-width: 575px) {
  #homeAbout {
    top: -8em;
    margin-bottom: 3em;
  }
  
  #homeAbout .homeAboutFrame {
    border-radius: 1em;
    box-shadow: 0 2px 0.25em 0 rgba(0, 0, 0, 0.25);
    padding: 0 1.5em;
  }
  
  #homeAbout .homeAboutFrame h1 {
    font-size: 1.5em;
    padding-top: 1.25em;
  }
  
  #homeAbout .homeAboutFrame p {
    text-align: justify !important;
    text-align-last: center;
    padding: 0;
    padding-bottom: 2em!important;
    margin: 0 auto!important;
  }
  
  #homeAbout .homeAboutContent {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding-bottom: 1em;
  }
  
  #homeAbout .homeAboutContent > .homeAboutColumn {
    padding: 0 !important;
    margin: 0 auto !important;
    margin-bottom: 2em !important;
    display: block !important;
  }
  
  #homeAbout .homeAboutContent > .homeAboutColumn .homeAboutScirpt p {
    padding: 0;
  }
}

@media (max-width: 991px) {
  #homeAbout .homeAboutFrame p {
    text-align: justify;
    text-align-last: center;
    padding: 0;
    padding-bottom: 2em;
    margin: 0 auto;
  }
  
  #homeAbout .homeAboutContent {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding-bottom: 1em;
  }
  
  #homeAbout .homeAboutContent > .homeAboutColumn {
    margin: 0 auto;
    margin-bottom: 2em;
    display: block;
    width: 100%;
    padding: 0 1em;
  }
  
  #homeAbout .homeAboutContent > .homeAboutColumn .homeAboutScirpt p {
    padding: 0;
  }
}

/**
* Part BRAVO
*/
#partBravo {
  position: relative;
  width: 100%;
  display: block;
  background-color: #776C61;
  box-shadow: 0 0 1em .25em rgba(0,0,0,.5);
  margin: 0 auto;
  margin-top: -8em;
}

#partBravo .partBravoParalax {
  background-image: url("../../images/v126_1520.png");
  background-clip: border-box;
  background-attachment: fixed;
  background-size: cover;
  background-blend-mode: multiply;
  background-color: rgba(42,42,42,1);
}

#partBravo .partBravoLogo {
  align-content: center;
  align-items: center;
  align-self: center;
  margin: 1em auto;
  margin-top: 2.5em;
  padding: 5px;
  display: block;
  position: relative;
}
#partBravo .partBravoLogo img {
  height: 10em;
  margin: 0 auto;
  display: block;
}

#partBravo .partBravoContent {
  text-align: center;
  margin: 0 auto;
}

#partBravo .partBravoContent p {
  font-size: 1em;
  text-align: justify;
  text-align-last: center;
  color: #ffffff;
  padding: 0 5em;
  margin: 1em auto;
}

#partBravo .buttonSeeProduct {
  font-size: 1em;
  margin: 1em auto;
  width: 100%;
  position: relative;
  display: block;
  color: #FFD643;
  text-decoration: none;
}

#partBravo .buttonSeeProduct:hover {
  color: #ffffff;
  font-weight: bold;
  transition: .25s ease;
}

#partBravo .buttonSeeProduct span {
  margin-right: 1em;
}

#partBravo .buttonInvestNow {
  font-weight: 600;
  margin: 3.5em auto;
  padding: 0.5em;
  width: 15em;
  position: relative;
  display: block;
  background-color: #FFD643;
  color: #776C61;
  text-decoration: none;
  border-radius: 2em;
}

#partBravo .buttonInvestNow:hover {
  background-color: #776C61;
  color: #ffffff;
  transition: .15s linear;
  font-weight: bold;
}

@media (max-width: 575px) {
  #partBravo {
    width: 100%;
  }
  
  #partBravo .partBravoParalax {
    width: 100%;
  }
  
  #partBravo .partBravoLogo img {
    width: 80%;
    height: auto;
    padding: 1em;
  }
}

/*---=============== Home News Update ===============---*/
#partHomeUpdate {
  position: relative;
  display: block;
  width: 100%;
  margin: 1em auto;
  margin-bottom: 2em;
}

#partHomeUpdate .kbVamUpdate {
  display: block;
  position: relative;
  padding: 0 0.5em;
}

#partHomeUpdate .kbVamUpdateSlider {
  position: relative;
  border-radius: 1em;
  margin: 0 auto;
  width: 95%;
}

#partHomeUpdate .kbVamUpdateSlider:hover {
  box-shadow: 0 0 .5em .05em rgba(119, 108, 97, .75);
  transition: .3s ease;
}

#partHomeUpdate .vamUpdateItem {
  display: inline-block;
  position: relative;
  height: 39em;
  width: 100%;
  border-radius: 1em;
  transition: .5s ease;
  margin: 0 auto;
}

#partHomeUpdate .vamUpdateItem img {
  border-radius: 1em;
  display: flex;
  object-fit: cover;
  object-position: center;
  float: left;
  position: absolute;
  width: 100%;
  height: 100%;
}

#partHomeUpdate .vamUpdateItem a {
  text-decoration: none;
  color: rgba(0,0,0,1.00);
}

#partHomeUpdate .vamUpdateItem h6 {
  text-align: left;
  margin-right: 1.25em;
  margin-top: 2em;
  margin-left: 0;
  position: relative;
  left: 25px;
}

#partHomeUpdate .vamUpdateItem h1 {
  font-size: 2rem;
  text-align: left;
  margin-right: 1.25em;
  margin-top: .25em;
  margin-left: 0;
  position: relative;
  font-weight: 600;
  left: 25px;
  display: inline-block;
}

#partHomeUpdate .vamUpdateItem > .readMoreButton {
  background-color: #FFD643;
  color: #776C61;
  padding: .5em;
  padding-right: 3.5em;
  border-bottom-right-radius: 2em;
  border-top-right-radius: 2em;
  position: absolute;
  top: 16em;
  display: block;
  text-decoration: none;
  font-weight: 600;
}

#partHomeUpdate .vamUpdateItem > .readMoreButton:hover {
  background-color: #776C61;
  color: #ffffff;
  transition: .25s ease-out;
}

#partHomeUpdate .kbVamUpdateSlider > .kbVamUpdateSliderContent > .owl-nav {
  position: absolute;
  display: block;
  top: 20em;
  width: 100%;
}

#partHomeUpdate .kbVamUpdateSlider > .kbVamUpdateSliderContent > .owl-nav > .owl-prev,
#partHomeUpdate .kbVamUpdateSlider > .kbVamUpdateSliderContent > .owl-nav > .owl-next {
  background-color: rgba(255, 214, 67, 0.75);
  opacity: 1;
  color: #776C61;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  position: absolute;
}

#partHomeUpdate .kbVamUpdateSlider > .kbVamUpdateSliderContent > .owl-nav > .owl-prev:hover,
#partHomeUpdate .kbVamUpdateSlider > .kbVamUpdateSliderContent > .owl-nav > .owl-next:hover {
  background-color: #776C61;
  color: #ffffff;
  transition: .25s ease;
}

#partHomeUpdate .kbVamUpdateSlider > .kbVamUpdateSliderContent > .owl-nav > .owl-prev {
  left: 10px;
}

#partHomeUpdate .kbVamUpdateSlider > .kbVamUpdateSliderContent > .owl-nav > .owl-next {
  right: 10px;
}

#partHomeUpdate .kbVamUpdateSlider > .kbVamUpdateSliderContent > .owl-dots {
  position: absolute;
  display: block;
  bottom: 5px;
  width: 100%;
}

#partHomeUpdate .kbVamUpdateSlider > .kbVamUpdateSliderContent > .owl-dots > .owl-dot span {
  width: .25em;
  height: .25em;
  transition: .5s ease;
}

#partHomeUpdate .kbVamUpdateSlider > .kbVamUpdateSliderContent > .owl-dots > .owl-dot.active span {
  background-color: rgba(255, 214, 67, 1);
  width: 2em;
}

@media (max-width: 575px) {
  #partHomeUpdate .boxHomeUpdate {
    margin-bottom: 2em;
  }
}

@media (max-width: 991px) {
  #partHomeUpdate .boxHomeUpdate {
    margin-bottom: 2em;
  }
}

/*---=============== Home Video ===============---*/
#homeVideo {
  position: relative;
  display: block;
  background-color: rgba(119, 108, 97, 0.15);
  margin-top: 3em;
  padding-top: 0.5em;
  padding-bottom: 3em;
}

#homeVideo .container {
  padding: 2em 0;
  padding-bottom: 3.5em;
}

#homeVideo .homeVideoTitle {
  text-align: center;
  margin-top: 1em;
}

#homeVideo .homeVideoTitle h1 {
  font-size: 2.25em;
  font-weight: 600;
}

#homeVideo .homeVideoTitle p {
  font-size: 1em;
  margin: 0 auto;
  display: block;
  color: rgba(119, 108, 97, 1);
}

#homeVideo .homeVideoPlayer {
  height: 30em;
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 1em;
}

.homeVideoPlayer .videoContainer {
  background-color: rgba(0,0,0,0.25);
  background-blend-mode: multiply;
  border-radius: 2em;
  margin-top: 1.5em;
  box-shadow: inset 0 0 0.25em 0 rgba(0,0,0,0.5);
  transition: 0.25s ease;
}

.homeVideoPlayer .videoContainer svg {
  font-size: 10em;
  margin: 0 auto;
  top: 35%;
  left: 0;
  right: 0;
  display: flex;
  z-index: 3;
  color: rgba(255, 214, 67, 1);
  position: absolute;
  transition: 0.25s ease;
}

.homeVideoPlayer .videoContainer img {
  width: 100%;
  height: 30em;
  object-fit: cover;
  mix-blend-mode: multiply;
  border-radius: 2em;
}

.homeVideoPlayer .videoContainer:hover {
  background-color: rgba(0,0,0,0.75);
  transition: 0.25s ease;
  box-shadow: 0 0 0.25em 0 rgba(0,0,0,0.75);
}

.homeVideoPlayer .videoContainer:hover svg {
  opacity: 0.75;
  transition: 0.25s ease;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 30px;
  mix-blend-mode: hard-light;
}

@media (max-width: 575px) {
  #homeVideo {
    width: 100%;
    margin-top: 1.5em;
    padding-bottom: 1.5em;
  }
  
  #homeVideo .container {
    padding: 1.5em 1em;
  }
  
  #homeVideo .homeVideoTitle p {
    margin: 1em auto;
    margin-bottom: 0.5em;
    padding: 0 1em;
  }
  
  #homeVideo .homeVideoPlayer {
    height: 20em;
  }
  
  #homeVideo .videoContainer {
    margin: 0 auto;
    height: 100%;
  }
  
  #homeVideo .videoContainer img {
    height: 100%;
  }
  
  .homeVideoPlayer .videoContainer svg {
    top: 25%;
  }
}

/*#homeVideo .homeVideoPlayer .videoPlay {
  position: absolute;
  display: block;
  z-index: 2;
  top: 35%;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 8em;
  text-align: center;
  width: 1em;
}

#homeVideo .homeVideoPlayer .videoPlay a {
  color: #ffffff;
}

#homeVideo .homeVideoPlayer .videoPlay svg {
  text-shadow: 0 0 .5em .15em rgba(0,0,0,.75);
}

#homeVideo .homeVideoPlayer .videoPlay:hover + .homeVideoFrame > .videoThumb {
  background-color: rgba(0,0,0,1.00);
  background-blend-mode: multiply;
  transition: .5s ease;
  animation-fill-mode: both;
  animation-duration: .35s;
  box-shadow: 0 0 .25em 0 rgba(0,0,0,.75);
}

#homeVideo .homeVideoPlayer .videoPlay:hover + .homeVideoFrame > .videoThumb img {
  opacity: .5;
  transition: .5s ease;
}

#homeVideo .homeVideoPlayer .videoPlay a:hover {
  color: rgba(255, 214, 67, 1);
  transition: .5s ease;
}

#homeVideo .homeVideoFrame {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1em;
  box-shadow: 0 0 .3em 0 rgba(0,0,0,.25);
  background-color: rgba(0,0,0,.75);
  transition: .25 ease;
}

#homeVideo .homeVideoFrame > .videoThumb img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: inline-block;
  transition: .25 ease;
  animation-fill-mode: both;
  animation-duration: .35;
}*/

/*--------------------------------------------------------------
# Footer Area
--------------------------------------------------------------*/

#footer {
  background-color: rgba(119, 108, 97, 1);
  width: 100%;
  display: block;
  position: relative;
  padding: 1em 0;
  padding-bottom: 0;
}

#footer .footerLogo {
  margin: 1em auto;
  margin-bottom: 0;
  margin-left: 0;
  width: 100%;
  display: block;
}

#footer .footerLogo img {
  left: 0;
  position: relative;
}

#footer .siteLinkHeader {
  margin: 1em auto;
  display: block;
  position: relative;
  float: left;
}

#footer .siteLinkColumn {
  float: left;
  margin: 0 auto;
  display: block;
}

#footer .siteLinkColumn a {
  display: block;
  width: 100%;
  position: relative;
  color: #ffffff;
  text-align: left;
  text-decoration: none;
  margin: 1em auto;
  transition: 0.1s ease;
}

#footer .siteLinkColumn a:hover {
  color: rgba(255, 214, 67, 1);
  transition: 0.1s ease;
  transition-property: all;
  animation: .2s;
  font-weight: 600;
}

#footer .footerContactUs {
  position: relative;
  float: left;
  margin: 1em auto;
  margin-top: 0.5em;
}

#footer .footerContactUsFrame {
  width: 100%;
  display: block;
  position: relative;
  left: 0;
}

#footer .footerContactUsFrame h2 {
  text-align: left;
  color: #ffffff;
  margin: 0.25em auto;
  margin-bottom: 0.5em;
}

#footer .footerContactUsContent {
  margin: 1em auto;
  width: 100%;
  display: block;
  float: left;
  margin-top: 0.25em;
}

#footer .footerContactUsContent img {
  width: 37.5%;
  float: left;
  position: relative;
  margin-bottom: 1em;
  margin-right: 1em;
}

#footer .footerContactImg {
    position: relative;
    float: left;
    display: block;
}

#footer .footerContactUsContent h6 {
  font-size: 1em;
  font-weight: 600;
  text-align: left;
  width: 100%;
  margin: 0.25em auto;
  margin-top: 0;
  color: #ffffff;
}

#footer .footerContactUsContent p {
  font-size: .95rem;
  text-align: left;
  color: #ffffff;
}

#footer .footerContactText {
  display: block;
  position: relative;
  float: left
}

#footer .footerSocmedSubs {
  display: block;
  position: relative;
  float: left;
  margin: 1em auto;
  margin-top: 0.5em;
}

#footer .footerSocmed {
  width: 100%;
  display: block;
  position: relative;
}

#footer .footerSocmed h2 {
  text-align: left;
  color: #ffffff;
  margin: 0.25em auto;
  margin-bottom: 0.5em;
}

#footer .footerSocmed .footerSocmedIcon {
  float: left;
  display: block;
  text-align: left;
}

#footer .footerSocmed .footerSocmedIcon a {
  color: #ffffff;
  width: 100%;
  display: inline-block;
  position: relative;
  font-size: 2em;
  padding: 0 0.5em;
}

#footer .footerSocmed .footerSocmedIcon a:hover {
  color: rgba(255, 214, 67, 1);
  transition: 0.2s ease;
}

#footer .footerSubscribe {
  width: 100%;
  display: inline-block;
  position: relative;
}

#footer .footerSubscribe h6 {
  font-weight: 600;
  text-align: left;
  color: #ffffff;
  margin: 0 auto;
  margin-bottom: 1em;
  margin-top: 2em;
}

#footer .footerSubscribe .footerSubsForm {
  width: 100%;
  display: block;
}

#footer .footerSubscribe .footerSubsForm input {
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
}

#footer .footerSubscribe .footerSubsForm input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

#footer .footerSubscribe .footerSubsForm button {
  font-weight: 600;
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
  background-color: rgba(255, 214, 67, 1);
  color: rgba(119, 108, 97, 1);
  border: none;
}

#footer .footerSubscribe .footerSubsForm button:hover {
  font-weight: 600;
  background-color: rgba(119, 108, 97, 1);
  color: #ffffff;
  transition: 0.3s ease;
  animation-duration: .25s;
  box-shadow: 0 0 .15em 0 rgba(0,0,0,.75);
}

#footer .footerSubscribe .footerSubsForm button.btn-close {
  font-weight: 600;
  border-radius: 2em;
  background-color: rgba(255, 214, 67, 1);
  color: rgba(119, 108, 97, 1);
  border: none;
  opacity: 1;
}

#footer .footerSubscribe .footerSubsForm button.btn-close:hover {
  font-weight: 600;
  background-color: rgba(119, 108, 97, 1);
  color: #ffffff;
  transition: 0.3s ease;
  animation-duration: .25s;
  box-shadow: 0 0 .15em 0 rgba(0,0,0,.75);
}

#footer .footerCopyRight {
  display: block;
  margin: 1em auto;
  padding: 0.5em 1em;
  border-top: 1px solid #ffffff;
  position: relative;
}

#footer .footerCopyRightText {
  text-align: center;
  display: inline-block;
  position: relative;
  margin: 0.5rem auto;
  margin-bottom: 1em;
  padding: 0.5em;
  color: #fffffff;
}

#footer .footerCopyRightText p {
  color: #ffffff;
  text-align: center;
  margin-top: 1em;
}

#footer .footerCopyRightText a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
}

#footer .footerCopyRightText img {
  width: 18em;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

#footer .footerCopyRightText img.imgOJK {
  width: 5em;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

@media (max-width: 575px) {
  #footer {
    padding-bottom: 0;
  }
  
  #footer .footerLogo {
    width: 100%;
    display: block;
    padding: 0 1.5em;
    left: 0;
  }

  #footer .footerLogo img {
    display: block;
  }
  
  #footer .siteLinkHeader {
    margin: 0.25em auto;
    margin-top: 0.5em;
  }
  
  #footer .siteLinkColumn {
    padding: 0 1em;
  }
  
  #footer .siteLinkColumn a {
    font-size: 0.75em;
    justify-content: space-between;
  }
  
  #footer .footerContactUs {
    margin: 0.25em auto;
  }
  
  #footer .footerContactUsFrame h2 {
    font-size: 1.15em;
    padding: 0 0.5em;
  }
  
  #footer .footerContactUsContent {
    font-family: "KBFG Text Medium";
    font-weight: 500;
    padding: 0 0.5em;
    margin: 0.25em;
  }
  
  #footer .footerContactUsContent .footerContactImg {
    margin-right: 1em;
  }
  
  #footer .footerContactUsContent img {
    width: 100%;
    margin: 0 auto;
  }
  
  #footer .footerContactUsContent h6 {
    font-size: 0.95em
  }
  
  #footer .footerContactText {
    padding-top: 5px;
    line-height: 1.75;
    margin-bottom: 0.25em;
  }
  
  #footer .footerSocmedSubs {
    margin: 0.25em auto;
  }
  
  #footer .footerSocmed h2 {
    font-size: 1.15em;
    padding: 0 0.5em;
  }
  
  #footer .footerSocmed {
    justify-content: space-between;
  }
  
  #footer .footerSocmed .footerSocmedIcon {
    justify-content: space-around;
  }
  
  #footer .footerSocmed .footerSocmedIcon a {
    padding: 0 0.35em;
    font-size: 1.25em;
  }
  
  #footer .footerSubscribe {
    padding: 0 0.75em;
  }
  
  #footer .footerSubscribe h6 {
    font-family: "KBFG Text Medium";
    font-weight: 400;
    font-size: 1.25em;
  }
  
  #footer .footerCopyRight {
    margin-bottom: 0;
  }
  
  #footer .footerCopyRightText {
    margin: 0.5em auto;
    margin-bottom: 1em;
    font-size: 0.8em;
  }
  
  #footer .footerCopyRightText p {
    margin: 0.5em auto;
    margin-bottom: 2em;
  }
}

/*--------------------------------------------------------------
# Button Invest Now
--------------------------------------------------------------*/
.buttonInvestNow {
  font-weight: 600;
  margin: 3.5em auto;
  padding: 0.5em;
  width: 15em;
  position: relative;
  display: block;
  background-color: #FFD643;
  color: #776C61;
  text-decoration: none;
  border-radius: 2em;
  text-align: center;
  transition: all 0.25s linear;
}

.buttonInvestNow:hover {
  background-color: #776C61;
  color: #ffffff;
  font-weight: bold;
  transition: all 0.25s linear;
}


/*--------------------------------------------------------------
# Load More Button
--------------------------------------------------------------*/
.loadMorePage {
  background-color: rgba(255, 214, 67, 1);
  padding: 0.5em 2.5em;
  margin: 2.5em auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  border-radius: 2em;
  display: block;
  color: rgba(119, 108, 97, 1);
  font-weight: 600;
}

.loadMorePage:hover {
  background-color: rgba(119, 108, 97, 1);
  color: rgba(255,255,255,1.00);
  box-shadow: 0 0 0.25em 0 rgba(0,0,0,.25);
}

/*--------------------------------------------------------------
# Subscribe Modal
--------------------------------------------------------------*/
.modal {
  top: 20vh;
}

.modal-content {
  padding: 2em;
  border-radius: 1em;
}

.modal-header {
  display: block;
}

.modal-header img {
  width: 65%;
  margin-bottom: 1em;
}

.modal-header h5 {
  color: rgba(119, 108, 97, 1);
}

.modal-header .btn-close {
  position: absolute;
  top: 1em;
  right: 1em;
}

.modal-body {
  padding-top: 2em;
  color: rgba(119, 108, 97, 1);
}