.heading {
  font-size: 36px;
  font-weight: 700;
  /*color: #fff;*/
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 30px;
  color: #45a44b;
  text-shadow: 2px 2px 4px #000000;
}

.subheading {
  font-size: 24px;
  font-weight: 700;
  /*color: #fff;*/
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: 30px;
  color: #45a44b;
  /* text-shadow: 2px 2px 4px #000000; */
}


/***
 *       _____       _      _
 *      / ___/( )   | |    | |
 *     | (___  _  __| | ___| |__   __ _ _ ___
 *      \___ \| |/ _` |/ _ | '_ \ / _` | '__/
 *      ____) | | (_| |  __| |_) | (_| | |
 *     /_____/|_|\__,_|\___|_.__/ \__,_|_|
 *
 *
 */
.sidebar {
  position: fixed;
  top: 60px;
  right: 0;
  width: 320px;
  max-width: 90%;
  height: 100%;
  color: #000;
  z-index: 500;
  background: #20409a;
  transition: visibility 0s, -webkit-transform 0.5s;
  transition: transform 0.5s, visibility 0s;
  transition: transform 0.5s, visibility 0s, -webkit-transform 0.5s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* ELEMENTS */
  /* menu items */
  /* social */
}

.sidebarShown .sidebar.visible {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  z-index: 9999999;
}

.sidebar .content {
  padding: 20px;
  overflow-y: auto;
  position: relative;
}

.sidebar.small .content {
  padding: 30px;
}

.sidebar .wrap {
  padding: 0;
}

.sidebar.left {
  right: inherit;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.sidebar.top {
  top: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.sidebar.bottom {
  bottom: 0;
  top: inherit;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.sidebar .logo {
  padding: 0;
  font-size: 0;
  margin-bottom: 35px;
}

.sidebar .close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 14px;
  font-size: 0;
  opacity: 0.5;
  z-index: 101;
  transition: 0.25s;
}

.sidebar .close:hover {
  opacity: 1;
}

.sidebar .close svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.sidebar .close:active svg {
  -webkit-transform: scale(0.92);
  transform: scale(0.92);
}

.sidebar ul.mainMenu,
.sidebar ul.subMenu,
.sidebar ul.social {
  line-height: 1.9;
  margin-bottom: 30px;
  display: block;
}

.sidebar .mainMenu li {
  font-size: 20px;
  line-height: 48px;
}

.sidebar .mainMenu.small li {
  font-size: 18px;
  line-height: 46px;
}

.sidebar .subMenu li {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  font-size: 18px;
  line-height: 36px;
}

.sidebar .subMenu.small li {
  font-size: 16px;
  line-height: 34px;
}

.sidebar .social {
  margin-top: 40px;
}

.sidebar .social li {
  display: inline-block;
  margin-right: 20px;
}

.sidebar .social li:last-child {
  margin-right: 0;
}

.sidebar .social li a {
  font-size: 0;
  padding: 0;
}

.sidebar .social li a svg {
  width: 20px;
  height: 20px;
}

.sidebar .social.small li {
  margin-right: 12px;
}

.sidebar .social.small li a svg {
  width: 15px;
  height: 15px;
}

.sidebar .social.big li {
  margin-right: 12px;
}

.sidebar .social.big li a svg {
  width: 22px;
  height: 22px;
}

.sidebar.small .social {
  margin-top: 30px;
}

.sidebar .big li {
  font-size: 32px;
  line-height: 64px;
}

.sidebar .social.medium li a svg {
  width: 18px;
  height: 18px;
}

.sidebar .social.medium li {
  margin-right: 14px;
}

.sidebarShown .slide.selected .content {
  overflow: hidden;
}

/* SIDEBAR ANIMATION */
.page-loaded.sidebarShown .slide.selected {
  -webkit-transform: scale(0.95) !important;
  transform: scale(0.95) !important;
  pointer-events: none;
  opacity: 0.5 !important;
}

.sidebarShown .panel.top {
  opacity: 0;
}

.sidebarShown .panel.bottom {
  opacity: 0.5;
  -webkit-transform: scale(0.95) translateY(-10%);
  transform: scale(0.95) translateY(-10%);
}

.page-loaded.sidebarShown .panel,
.page-loaded.sidebarShown .slide.selected,
.page-loaded.sidebarShown .slide.selected:after,
.sidebar {
  transition: opacity 0.5s, -webkit-transform 0.5s !important;
  transition: transform 0.5s, opacity 0.5s !important;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s !important;
}



video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

#video:after {
  content: '';
  opacity: 0.75;
  background: #4096ee;
  /* Old browsers */
  background: -moz-linear-gradient(top, #4096ee 0%, #39ced6 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #4096ee 0%, #39ced6 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #4096ee 0%, #39ced6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4096ee', endColorstr='#39ced6', GradientType=0);
  /* IE6-9 */
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}












/*


  MENU HEX
*/
.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.hexagon-item:first-child {
  margin-left: 0;
}

/* End of container */
.hexagon-item {
  cursor: pointer;
  width: 200px;
  height: 173.20508px;
  float: left;
  margin-left: -29px;
  z-index: 0;
  position: relative;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}

.hexagon-item:first-child {
  margin-left: 0;
}

.hexagon-item:hover {
  z-index: 1;
}

.hexagon-item:hover .hex-item:last-child {
  opacity: 1;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.hexagon-item:hover .hex-item:first-child {
  opacity: 1;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.hexagon-item:hover .hex-item:first-child div:before,
.hexagon-item:hover .hex-item:first-child div:after {
  height: 5px;
}

.hexagon-item:hover .hex-item div::before,
.hexagon-item:hover .hex-item div::after {
  background-color: #45a44b;
}

.hexagon-item:hover .hex-content svg {
  -webkit-transform: scale(0.97);
  -moz-transform: scale(0.97);
  -ms-transform: scale(0.97);
  -o-transform: scale(0.97);
  transform: scale(0.97);
}

.hexagon-item:nth-last-child(1),
.hexagon-item:nth-last-child(2) {
  -webkit-transform: rotate(30deg) translate(87px, -80px);
  -moz-transform: rotate(30deg) translate(87px, -80px);
  -ms-transform: rotate(30deg) translate(87px, -80px);
  -o-transform: rotate(30deg) translate(87px, -80px);
  transform: rotate(30deg) translate(87px, -80px);
}

.hex-item {
  position: absolute;
  top: 0;
  left: 50px;
  width: 100px;
  height: 173.20508px;
}

.hex-item:first-child {
  z-index: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hex-item:last-child {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}

.hex-item div {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  width: 100px;
  height: 173.20508px;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

.hex-item div::before,
.hex-item div::after {
  background-color: #20409a;
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.hex-item div:before {
  top: 0;
}

.hex-item div:after {
  bottom: 0;
}

.hex-item div:nth-child(1) {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.hex-item div:nth-child(2) {
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  transform: rotate(60deg);
}

.hex-item div:nth-child(3) {
  -webkit-transform: rotate(120deg);
  -moz-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  -o-transform: rotate(120deg);
  transform: rotate(120deg);
}

.hex-content {
  color: #fff;
  display: block;
  height: 180px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  transform: rotate(-30deg);
  width: 156px;
}

.hex-content .hex-content-inner {
  left: 50%;
  margin: -3px 0 0 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hex-content .icon {
  display: block;
  font-size: 36px;
  line-height: 30px;
  margin-bottom: 11px;
}

.hex-content .title {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  /*line-height: 24px;*/
  line-height: normal;
  text-transform: uppercase;
}

.hex-content svg {
  left: -7px;
  position: absolute;
  top: -13px;
  transform: scale(0.87);
  z-index: -1;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.hex-content:hover {
  color: #fff;
}

.hexagon-item:nth-last-child(1),
.hexagon-item:nth-last-child(2) {
  -webkit-transform: rotate(30deg) translate(87px, -80px);
  -moz-transform: rotate(30deg) translate(87px, -80px);
  -ms-transform: rotate(30deg) translate(87px, -80px);
  -o-transform: rotate(30deg) translate(87px, -80px);
  transform: rotate(30deg) translate(87px, -80px);
}

/*------------------------------------------------
    Welcome Page
-------------------------------------------------*/


@media (min-width: 1200px) {
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-lg-8 {
    width: 66.66666667%;
  }
}

.hexagon-item:first-child {
  margin-left: 0;
}

.pt-table.desktop-768 .pt-tablecell {
  padding-bottom: 110px;
  padding-top: 60px;
}

.hexagon-item .icon i {
  color: #4096ee;

}

.hexagon-item:hover .icon i {
  color: #45a44b;
  transition: 0.6s;

}


.hexagon-item:hover .title {
  -webkit-animation: focus-in-contract 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: focus-in-contract 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/***************************/

@-webkit-keyframes focus-in-contract {
  0% {
    letter-spacing: 1em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes focus-in-contract {
  0% {
    letter-spacing: 1em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}





@media only screen and (max-width: 767px) {
  .hexagon-item {
    float: none;
    margin: 0 auto 50px;
  }

  .hexagon-item:first-child {
    margin-left: auto;
  }

  .hexagon-item:nth-last-child(1),
  .hexagon-item:nth-last-child(2) {
    -webkit-transform: rotate(30deg) translate(0px, 0px);
    -moz-transform: rotate(30deg) translate(0px, 0px);
    -ms-transform: rotate(30deg) translate(0px, 0px);
    -o-transform: rotate(30deg) translate(0px, 0px);
    transform: rotate(30deg) translate(0px, 0px);
  }

}

.changesize,
.changecolor,
.changefamily {
  padding: 5px;
  margin: 3px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
}

.changesize:hover,
.changecolor:hover,
.changefamily:hover {
  background-color: #D6D6D6;
  padding: 7px;
  user-select: none;
}

.navbar-expand-lg .navbar-nav li>a:before {
  bottom: 0;
  top: unset;
  left: 50%;
  margin-left: 0;
  width: 80%;
  -webkit-transform: scale3d(0, 1, 1) translateX(-50%);
  -moz-transform: scale3d(0, 1, 1) translateX(-50%);
  transform: scale3d(0, 1, 1) translateX(-50%);
}

.navbar-expand-lg .navbar-nav .active a:before {
  -webkit-transform: scale3d(1, 1, 1) translateX(-50%);
  -moz-transform: scale3d(1, 1, 1) translateX(-50%);
  transform: scale3d(1, 1, 1) translateX(-50%);
}

.navbar li.active a.nav-link {
  color: #fff !important;
}

#main-slide .carousel-caption {
  top: 30%;
}

#main-slide .carousel-item .carousel-caption p {
  text-shadow: none;
}

/** Custom CSS **/

.custom-bg-blue {
  background-color: #1d2958cb !important;
}

.custom-green-button {
  background-color: #0abb87 !important;
  border: none;
  border-radius: 5px;
}

.custom-green-button:hover {
  background-color: #078761 !important;
}

.custom-gap {
  gap: 30px;
}

.custom-header {
  font-size: 1.6em;
  font-weight: bold;
  text-transform: uppercase;
}

.custom-text-shadow-none {
  text-shadow: none !important;
}

.custom-container {
  margin-top: 160px;
  max-width: unset;
  text-align: center;
}

.custom-title {
  font-size: 3em;
  text-shadow: 2px 2px 2px #000;
  color: #fff;
  /* margin-left: 5%; */
}

.custom-pengenalan-container {
  /* height: calc(750px + 40px); */
  background-color: white;
  font-size: 1.5em;
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0;
  margin-top: 40px;
  max-width: unset;
  overflow-y: auto;
  width: 100%;
}

.custom-paragraph {
  margin-top: 5px;
  font-size: 0.8em;
  font-weight: bold;
  padding: 10px;
  width: 80%;
}

.custom-paragraph.active {
  background-color: #bfbfbf;
}

.custom-content-title {
  font-size: 1em;
}

.custom-content {
  margin-left: 50px;
  margin-top: 10px;
  width: 100%;
}

.custom-border-radius {
  border-radius: 25px;
}

.custom-contact-desc {
  font-size: 1.1em;
}

.about-item {
  padding: 0;
}

.about-item .about-text {
  padding: 30px;
}

.about-text.custom-bg-blue p {
  padding-top: 10px;
  font-size: 1em;
  color: white;
}

.accordion .card {
  color: #fff;
  background-color: #1d2958;
}

.custom-margin-left {
  margin-left: 6em;
}

.about-text.custom-bg-blue p {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.d-none {
  display: none;
}

@media only screen and (max-width: 767px) {
  .custom-content {
    margin-left: 0;
  }
}