@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Black.ttf?5ebb24ee1112dd9562629375c387879a) format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Roboto";
  src: url(/fonts/Roboto-Regular.ttf?11eabca2251325cfc5589c9c6fb57b46) format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "play", serif;
  src: url(/fonts/PlayfairDisplay-Regular.ttf?b3721ba3bde34e5b38b0e1523cccfd7f) format("truetype");
}

* {
  text-decoration: none;
  padding: 0;
  margin: 0;
  outline: 0;
  outline: none;
  box-sizing: border-box;
}

.section-title {
  margin: 0px 0px 50px;
  font-size: 70px;
  font-weight: 200;
  color: #8f8f8f;
}

.section-title.small {
  font-size: 54px;
}

.totop {
  position: fixed;
  bottom: 20%;
  right: 30px;
  z-index: 10;
}

.logo {
  position: fixed;
  z-index: 10;
  top: 20px;
  left: 40px;
  height: 80px;
  width: 80px;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.share {
  z-index: 10;
  position: fixed;
  bottom: 20%;
  left: 40px;
}

.share a {
  margin-top: 20px;
  display: block;
}

.share a:hover {
  opacity: 0.7;
}

.menu {
  position: fixed;
  top: 40px;
  z-index: 10;
  right: 40px;
}

.menu a {
  margin-left: 24px;
  color: #e9a35f;
  font-family: Roboto;
  font-weight: 900;
  display: inline-block;
  font-size: 22px;
}

.more {
  display: block;
  text-align: right;
  margin-top: 75px;
}

.more img {
  display: inline-block !important;
  pointer-events: none;
}

.par p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 30px;
  color: #555;
}

.par p:last-child {
  margin-bottom: 0;
}

.par ul {
  font-family: "Roboto";
  color: #555;
  line-height: 30px;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 30px;
  margin-left: 15px;
}

.owl-dot {
  width: 15px;
  height: 15px;
  margin-top: 16px;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #bdbdbd;
}

.owl-dot.active {
  background: #e9a35f;
  border-color: #e9a35f;
}

body {
  background: #fff;
  overflow-x: hidden;
}

.menu-a {
  position: fixed;
  width: 0;
  transition: all 0.7s ease-out;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  right: 0;
  z-index: 11;
  overflow: hidden;
}

.menu-a.show {
  width: 100vw;
  transition: all 0.7s ease-out;
}

.menu-a.show .menu-b {
  width: 25vw;
  transition-delay: 0.1s;
  transition-duration: 1s;
  transition-property: width;
  position: relative;
  transition-timing-function: ease-in-out;
}

.menu-a.show .menu-b * {
  opacity: 1;
  transition: all 1s;
  transition-delay: 0.5s;
}

.menu-a.show .menu-b .menu-d {
  transition-delay: 1s;
}

.menu-a .menu-b {
  transition-delay: 0.2s;
  position: relative;
  transition-duration: 1s;
  transition-property: width;
  transition-timing-function: ease-in-out;
  width: 0;
  height: 100vh;
  float: right;
  background: #5c68ae;
}

.menu-a .menu-b * {
  opacity: 0;
  transition: all 0.5s;
}

.menu-a .menu-b .menu-c {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.menu-a .menu-b .menu-c a {
  display: block;
  color: #fff;
  text-align: right;
  font-family: "Playfair Display", serif;
  font-weight: 200;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  font-size: 30px;
  transition: all 0.3s;
}

.menu-a .menu-b .menu-c a:last-child {
  border: 0;
}

.menu-a .menu-b .menu-c a.active {
  color: #223066;
}

.menu-a .menu-b .menu-c a.active:hover {
  opacity: 1;
}

.menu-a .menu-b .menu-c a:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

.menu-a .menu-b .menu-d {
  position: absolute;
  bottom: 0;
  background: #bcc5fb;
  align-items: center;
  box-sizing: border-box;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  width: 100%;
  padding: 20px 30px;
}

.menu-a .menu-b .menu-d span {
  font-size: 18px;
  color: #223066;
  font-family: "play", serif;
}

.menu-a .menu-b .menu-d div {
  text-align: right;
}

.menu-a .menu-b .menu-d div a {
  display: inline-block;
  margin-left: 20px;
}

.menu-a .menu-b .menu-d div a img {
  height: 26px;
}

.menu-a .menu-b .close-menu {
  margin-top: 20px;
  display: block;
  margin: 30px;
  position: relative;
  text-align: right;
  padding-right: 30px;
  padding-top: 20px;
}

.menu-a .menu-b .close-menu span {
  display: inline-block;
  width: 27px;
  height: 5px;
  background: #e9a35f;
  border-radius: 3px;
  position: absolute;
}

.menu-a .menu-b .close-menu span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-a .menu-b .close-menu span:nth-child(2) {
  transform: rotate(-45deg);
}

.section-1 {
  width: 100%;
  height: 100vh;
  z-index: 1;
  background: url("/img/home_purple_bg.jpg");
  background-size: cover;
  position: relative;
  display: grid;
  justify-content: center;
  align-content: center;
}

.section-1 .arrow-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}

.section-1 .slider {
  width: 70vw;
  height: 60vh;
}

.section-2 {
  background: white;
  padding: 100px 40px;
  height: 100vh;
  box-sizing: initial;
}

.section-2 h3 {
  text-align: center;
  margin-bottom: 60px;
}

.section-2 .satu {
  width: 85%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
}

.section-2 .satu p b {
  display: block;
  color: #aaa;
  font-weight: 900;
  margin-bottom: 8px;
}

.section-2 .satu .kiri {
  padding-right: 80px;
}

.section-2 .satu .kanan div {
  padding-bottom: 30px;
  padding-left: 80px;
  border-left: 1px solid #e9a35f;
}

.section-3 {
  min-height: 170vh;
  max-width: 100%;
  background: url("/img/about-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}

.section-3 * {
  position: absolute;
  display: none;
}

.section-3 .bar {
  background: #5c68ae;
  width: 150px;
  height: 780px;
  right: 0;
  top: -27%;
  z-index: 7;
  display: block;
}

.section-3 .e {
  height: 300px;
  z-index: 8;
  left: 10%;
  top: -100px;
  width: 1px;
  background: #e9a35f;
  position: absolute;
  display: block;
}

.section-3 .d {
  left: 15%;
  bottom: -10%;
  width: 40vw;
  display: block;
  z-index: 7;
}

.section-3 .c {
  left: 0;
  bottom: 15%;
  width: 22vw;
  display: block;
  z-index: 8;
}

.section-3 .b {
  top: 50%;
  z-index: 8;
  display: block;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-3 .a {
  width: 50vw;
  right: 0;
  z-index: 8;
  top: -22%;
  display: block;
}

.section-4 {
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  margin: 200px auto;
  grid-column-gap: 80px;
}

.section-4 .kiri {
  padding-left: 150px;
  padding-top: 240px;
}

.section-4 .kiri h3 {
  margin-bottom: 75px;
}

.section-4 .kanan {
  position: relative;
}

.section-4 .kanan img {
  width: 100%;
  max-width: 100%;
}

.section-5 {
  display: grid;
  position: relative;
  width: 85vw;
}

.section-5 > img {
  width: 90%;
}

.section-5 .kiri {
  height: 130vh;
}

.section-5 .kiri .a {
  width: 80%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 6;
}

.section-5 .kanan {
  padding-top: 30px;
  position: absolute;
  right: 0;
  top: 0;
  width: 320px;
}

.section-6 {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  margin-top: 320px;
  grid-template-rows: 50vh 50vh 50vh;
}

.section-6 .locations {
  display: grid;
  height: 100vh;
  background: #000 url("/img/locations.jpg");
  grid-template-columns: 1fr auto 1fr;
  grid-column: 2/-1;
  background-size: 100% 100%;
  grid-row: 1/3;
  color: white;
  z-index: 7;
  padding: 8%;
  grid-gap: 50px 100px;
  box-sizing: inherit;
}

.section-6 .locations h3 {
  grid-column: 2/-1;
  color: white;
  margin-bottom: 0;
}

.section-6 .locations h4 {
  text-align: right;
  font-family: "Roboto";
  padding-top: 40px;
  font-size: 20px;
  font-weight: 900;
}

.section-6 .locations div {
  font-family: "Roboto";
  font-weight: 400;
  line-height: 30px;
}

.section-6 .locations div b {
  display: block;
}

.section-6 .a {
  grid-column: 1/-1;
  grid-row: 3/4;
  z-index: 7;
  align-self: center;
}

.section-6 .a .b {
  width: 80vw;
  margin: 0 auto;
}

.section-6 .a .b p a:hover {
  color: #e9a35f;
}

.section-6 .a .b p span,
.section-6 .a .b p a {
  color: white;
}

.section-6 .a .b p span:nth-child(3),
.section-6 .a .b p a:nth-child(3) {
  text-align: right;
}

.section-6 .a .b p span:nth-child(2),
.section-6 .a .b p a:nth-child(2) {
  text-align: center;
}

.section-6 .a .b p span i,
.section-6 .a .b p a i {
  margin-right: 5px;
}

.section-6 .a .b h3 {
  color: white;
}

.section-6 .a .b .c {
  width: 80vw;
  display: grid;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
}

.section-6 .a .b .c p {
  color: white;
  font-family: "Roboto";
}

.section-6 .a .b .c p a {
  font-size: 16px;
}

.section-6 .a .b .c p:last-child {
  text-align: right;
}

.section-6 .img {
  z-index: 6;
  grid-column: 1/-1;
  grid-row: 2/4;
}

.section-6 .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-7 {
  text-align: right;
}

.section-7 > div {
  display: inline-grid;
  grid-template-columns: 1fr 0.8fr;
  width: 90%;
  align-content: center;
}

.section-7 p:nth-child(1) {
  font-family: "Playfair Display", serif;
  text-align: left;
  align-self: center;
}

.section-7 p:last-child {
  font-family: "Playfair Display", serif;
  background: #000;
  padding: 25px 50px;
  color: white;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  grid-column-gap: 40px;
  align-items: center;
}

.product-item {
  margin-top: 222px;
  display: grid;
}

.product-item > div {
  display: grid;
  grid-column-gap: 100px;
  grid-template-columns: 1fr 0.8fr;
  width: 90vw;
}

.product-item > div > img {
  width: 100%;
}

.product-item > div > div {
  padding-top: 100px;
}

.product-item > div > div h3 {
  color: #e9a35f;
}

.product-item > div > * {
  grid-row: 1/2;
}

.product-item.right {
  justify-content: end;
}

.product-item.right > div {
  grid-template-columns: 0.8fr 1fr;
}

.product-item.right > div > img {
  grid-column: 2/-1;
  width: 100%;
}

.product-item.right > div > div {
  grid-column: 1/2;
}

.product-item.xservice_1 > div .a {
  position: relative;
}

.product-item.xservice_1 > div .a .b {
  padding-top: 50px;
  position: absolute;
  left: -300px;
  top: 0;
  width: 45vw;
}

.product-item.xservice_1 > div .a .b p {
  margin-left: 50px;
}

.product-item.xservice_1 > div .img {
  position: relative;
}

.product-item.xservice_1 > div .img img {
  width: 100%;
}

#accordion h3 {
  margin-bottom: 16px;
  color: #333;
  background: transparent;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  font-size: 18px;
  border-bottom: 1px solid #eee;
  padding: 10px 10px;
}

#accordion h3.ui-state-active {
  background: #eee;
}

#accordion .ui-widget-content {
  border: 0;
  padding-left: 20px;
}

.products-s1 {
  background: url("/img/products_purple_bg-scaled.jpg");
  height: 100vh;
  background-size: cover;
  display: grid;
  position: relative;
}

.products-s1 .a {
  position: absolute;
  color: #e9a35f;
  font-family: "Playfair Display", serif;
  font-size: 120px;
  left: 10vw;
  bottom: -20px;
}

.products-s1 .content {
  width: 30vw;
  align-self: center;
  margin-left: 10vw;
}

.products-s1 .content p {
  color: white;
}

.products-s2,
.products-s4 {
  width: 90vw;
  margin-top: 300px;
  grid-column-gap: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.products-s2 .a h3,
.products-s4 .a h3 {
  padding-top: 40px;
  color: #e9a35f;
}

.products-s2 .a .b,
.products-s4 .a .b {
  padding-left: 15%;
}

.products-s2 > img,
.products-s4 > img {
  width: 100%;
}

.products-s3,
.products-s5 {
  margin-top: 300px;
  text-align: right;
}

.products-s3 .a,
.products-s5 .a {
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 80px;
  display: inline-grid;
  width: 90vw;
}

.products-s3 .a > img,
.products-s5 .a > img {
  width: 100%;
}

.products-s3 .a .b,
.products-s5 .a .b {
  text-align: left;
}

.products-s3 .a .b h3,
.products-s5 .a .b h3 {
  color: #e9a35f;
  margin-bottom: 80px;
}

.products-s4 .a {
  padding-top: 200px;
}

.products-s5 .a .b {
  padding-top: 222px;
}

.service {
  margin-bottom: 300px;
}

.service.s1 {
  background: url("/img/service_purple_bg-scaled.jpg");
  height: 100vh;
  background-size: cover;
  display: grid;
  position: relative;
}

.service.s1 .a {
  position: absolute;
  color: #e9a35f;
  font-family: "Playfair Display", serif;
  font-size: 120px;
  right: 15vw;
  bottom: 10px;
}

.service.s1 .content {
  width: 30vw;
  position: absolute;
  right: 15vw;
  bottom: 25vh;
}

.service.s1 .content p {
  color: white;
}

.service.s2 {
  text-align: right;
}

.service.s2 > div {
  width: 90vw;
  display: inline-grid;
  grid-template-columns: 0.8fr 1fr;
  text-align: left;
  align-content: center;
  align-items: center;
  grid-column-gap: 80px;
}

.service.s2 > div h3 {
  color: #e9a35f;
}

.service.s2 > div img {
  width: 100%;
}

.service.s3 {
  width: 90vw;
  display: grid;
  margin-top: 300px;
  grid-template-columns: 1fr 0.4fr;
}

.service.s3 h3 {
  color: #e9a35f;
}

.service.s3 .img {
  position: relative;
}

.service.s3 .img img {
  width: 100%;
}

.service.s3 .a {
  position: relative;
}

.service.s3 .a .b {
  padding-top: 50px;
  position: absolute;
  left: -300px;
  top: 0;
  width: 45vw;
}

.service.s3 .a .b p {
  margin-left: 50px;
}

.service.s4 {
  text-align: right;
}

.service.s4 .a {
  text-align: right;
  width: 90vw;
  position: relative;
  display: inline-block;
}

.service.s4 .a > img {
  display: inline-block;
  width: 75vw;
}

.service.s4 .a .b {
  top: 15%;
  text-align: left;
  width: 35vw;
  position: absolute;
}

.service.s4 .a .b h3 {
  color: #e9a35f;
}

.lets-connect {
  display: grid;
  margin-top: 200px;
}

.lets-connect > div {
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 2;
  align-self: center;
}

.lets-connect > div .as {
  font-size: 58px;
  font-family: "Playfair Display", serif;
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.lets-connect > div .b {
  width: 80%;
  display: grid;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
}

.lets-connect > div .b p {
  color: white;
  font-family: "Roboto";
}

.lets-connect > div .b p a {
  color: white;
}

.lets-connect > div .b p a:hover {
  color: #e9a35f;
}

.lets-connect > div .b p a i {
  margin-right: 5px;
}

.lets-connect > div .b p:last-child {
  text-align: right;
}

.lets-connect img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 1;
  width: 100%;
}

.owl-carousel,
.owl-stage-outer,
.owl-stage,
.owl-item {
  height: 100%;
}

.owl-item > div {
  position: relative;
  height: 100%;
}

.owl-item > div .text {
  position: absolute;
  top: 0;
  left: calc(70% - 50px);
  width: 30%;
  z-index: 10000;
  top: 10%;
}

.owl-item > div .text p {
  color: white;
  font-size: 65px;
  font-family: "play", serif;
  font-family: 500;
  margin-bottom: 0;
}

.owl-item > div .text .more img {
  width: auto !important;
}

.owl-item > div .img {
  width: 70%;
  height: 100%;
}

.owl-item > div .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h5 {
  font-family: "Playfair Display", serif;
  font-size: 55px;
  margin: 20px;
}

.h-100 {
  height: 100% !important;
}

.hide {
  display: none;
}

@media only screen and (min-width: 1400px) {
  .logo {
    width: 100px;
    height: 100px;
  }

  .more {
    margin-top: 105px;
  }

  .lets-connect {
    margin-top: 500px;
  }

  .lets-connect > div .as {
    font-size: 100px;
    margin-bottom: 50px;
  }

  .lets-connect > div .b p {
    font-size: 18px;
  }

  .lets-connect > div .b p a i {
    margin-right: 10px;
  }

  .products-s1 .a {
    font-size: 180px;
    bottom: 1%;
  }

  .products-s2,
  .products-s4 {
    grid-column-gap: 100px;
  }

  .products-s2,
  .products-s3 {
    margin-top: 500px;
  }

  .service {
    margin-bottom: 500px;
  }

  .service.s1 .a {
    font-size: 180px;
    bottom: 1%;
  }

  .service.s1 .content {
    bottom: 27vh;
  }

  .service.s3 .a .b {
    padding-top: 50px;
    left: -350px;
    top: 0;
    width: 35vw;
  }

  .service.s3 .a .b p {
    margin-left: 100px;
  }

  .service.s4 {
    text-align: right;
  }

  .service.s4 .a {
    text-align: right;
    width: 90vw;
    position: relative;
    display: inline-block;
  }

  .service.s4 .a > img {
    display: inline-block;
    width: 75vw;
  }

  .service.s4 .a .b {
    top: 15%;
    text-align: left;
    width: 35vw;
    position: absolute;
  }

  .service.s4 .a .b h3 {
    color: #e9a35f;
  }

  .menu-a .menu-b .menu-d span {
    font-size: 22px;
  }

  .menu-a .menu-c a {
    padding: 20px 50px;
    font-size: 40px;
  }

  .par p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 40px;
  }

  .par ul {
    line-height: 46px;
    font-size: 22px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 100px;
  }

  .section-title.small {
    font-size: 76px;
  }

  .section-5 {
    grid-column-gap: 150px;
  }

  .section-5 p {
    margin-top: 50px;
    margin-bottom: 100px;
  }

  .section-5 .kanan {
    width: 450px;
    padding-top: 70px;
  }

  .section-7 p:nth-child(1) {
    font-size: 20px;
  }

  .section-7 p:last-child {
    font-size: 20px;
    grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
    padding: 30px;
    padding-right: 10vw;
    grid-gap: 0;
    display: inline-grid;
  }

  .section-7 p:last-child a,
  .section-7 p:last-child span {
    text-align: right;
  }

  .section-6 .a .b .c {
    grid-template-columns: auto auto auto;
    justify-content: start;
    grid-column-gap: 150px;
  }

  .section-6 .a .b .c p {
    font-size: 18px;
  }

  .section-6 .a .b .c p a {
    font-size: inherit;
  }

  .section-6 .locations h4 {
    font-size: 24px;
  }

  .section-6 .locations div {
    line-height: 36px;
    font-size: 18px;
  }

  .section-4 {
    margin: 400px auto;
  }

  .section-4 .kiri {
    padding-left: 150px;
    padding-top: 400px;
    padding-right: 100px;
  }

  .section-3 .e {
    height: 350px;
    left: 10%;
    top: -120px;
  }

  .section-3 .bar {
    height: 1111px;
  }

  .section-2 {
    padding: 140px 40px;
  }

  .section-2 h3 {
    font-size: 100px;
    margin-bottom: 5vw;
  }

  .section-2 .satu {
    width: 75%;
  }

  .section-2 .satu .kiri {
    padding-right: 120px;
  }

  .section-2 .satu .kanan div {
    padding-left: 120px;
  }

  .owl-item > div .text p {
    font-size: 100px;
  }
}

@media screen and (max-width: 499px) {
  .logo {
    width: 50px;
    height: 50px;
    left: 20px;
  }

  .owl-item > div {
    position: relative;
    height: 100%;
    background: #000;
  }

  .owl-item > div .text {
    position: absolute;
    top: 0;
    left: 16%;
    width: 30%;
    z-index: 10000;
    top: 10%;
  }

  .owl-item > div .text p {
    color: white;
    font-size: 65px;
    font-family: "play", serif;
    font-family: 500;
    margin-bottom: 0;
  }

  .owl-item > div .text .more {
    margin-top: 32px;
  }

  .owl-item > div .text .more img {
    width: auto !important;
  }

  .owl-item > div .img {
    width: 100%;
    height: 100%;
  }

  .owl-item > div .img img {
    opacity: 0.6;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .section-title {
    margin-bottom: 30px;
    font-size: 50px;
  }

  .section-1 {
    width: 100%;
    height: 100vh;
    z-index: 1;
    background: url("/img/home_purple_bg.jpg");
    background-size: cover;
    position: relative;
    display: grid;
    justify-content: center;
    align-content: center;
  }

  .section-1 .arrow-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }

  .section-1 .slider {
    width: 100vw;
    height: 60vh;
  }

  .section-1 .slider .owl-dots {
    margin-left: 20%;
  }

  .section-2 {
    background: white;
    height: auto;
    padding-bottom: 40px;
    padding: 0 15%;
    margin: 150px 0;
  }

  .section-2 h3 {
    text-align: center;
  }

  .section-2 .satu {
    width: 100%;
    display: grid;
    padding: 0 10%;
    grid-template-columns: 1fr;
    margin: 0 auto;
  }

  .section-2 .satu p b {
    display: block;
    color: #aaa;
    font-weight: 900;
    margin-bottom: 8px;
  }

  .section-2 .satu .kiri {
    padding-right: 0px;
    padding-bottom: 30px;
  }

  .section-2 .satu .kanan div {
    padding-bottom: 30px;
    padding-left: 0px;
    border-left: 0;
  }

  .section-3 {
    max-width: 100%;
    height: auto;
    background: url("/img/about-bg.jpg");
    background-attachment: fixed;
    background-size: cover;
    position: relative;
  }

  .section-3 * {
    position: static;
    display: none;
  }

  .section-3 .bar {
    display: none;
    background: #5c68ae;
    width: 150px;
    height: 780px;
    right: 0;
    top: -27%;
    z-index: 7;
  }

  .section-3 .e {
    height: 300px;
    z-index: 8;
    left: 10%;
    top: -100px;
    width: 1px;
    background: #e9a35f;
    position: absolute;
    display: none;
  }

  .section-3 .d {
    width: 100vw;
    display: block;
    z-index: 7;
  }

  .section-3 .c {
    left: 0;
    bottom: 15%;
    width: 100vw;
    display: block;
    z-index: 8;
  }

  .section-3 .b {
    z-index: 8;
    width: 70%;
    margin: 150px auto;
    display: block;
    transform: none;
  }

  .section-3 .a {
    width: 100vw;
    right: 0;
    z-index: 8;
    top: -22%;
    display: block;
  }

  .section-4 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin: 150px auto;
    grid-column-gap: 0px;
  }

  .section-4 .kiri {
    padding: 0 15%;
  }

  .section-4 .kiri h3 {
    margin: 75px;
    margin-bottom: 40px;
    text-align: center;
  }

  .section-4 .kanan {
    position: relative;
    grid-row: 1/2;
  }

  .section-4 .kanan img {
    width: 100%;
    max-width: 100%;
  }

  .section-5 {
    display: grid;
    position: relative;
    width: 100vw;
  }

  .section-5 > img {
    width: 100%;
  }

  .section-5 > img.a {
    display: none;
  }

  .section-5 .kanan {
    padding: 100px 15%;
    position: static;
    right: 0;
    top: 0;
    width: 100%;
  }

  .section-5 .kanan h3 {
    text-align: center;
  }

  .section-6 {
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    margin-top: 100px;
    grid-template-rows: auto auto auto;
  }

  .section-6 .locations {
    display: grid;
    height: auto;
    background: #000 url("/img/locations.jpg");
    grid-template-columns: 1fr;
    grid-column: 1/-1;
    background-size: 100% 100%;
    grid-row: 1/3;
    color: white;
    z-index: 7;
    padding: 8%;
    grid-gap: 20px 0px;
    box-sizing: inherit;
    padding: 100px 20%;
  }

  .section-6 .locations h3 {
    grid-column: 1/-1;
    color: white;
    text-align: center;
    margin-bottom: 0;
  }

  .section-6 .locations h4 {
    text-align: left;
    font-family: "Roboto";
    grid-column: 1/-1;
    font-size: 20px;
    font-weight: 900;
  }

  .section-6 .locations div {
    font-family: "Roboto";
    font-weight: 400;
    line-height: 30px;
  }

  .section-6 .locations div b {
    display: block;
  }

  .section-6 .a {
    grid-column: 1/-1;
    grid-row: 3/4;
    z-index: 7;
    align-self: center;
    padding: 100px 0;
  }

  .section-6 .a .b {
    width: 100vw;
    margin: 0 auto;
  }

  .section-6 .a .b p a:hover {
    color: #e9a35f;
  }

  .section-6 .a .b p span,
  .section-6 .a .b p a {
    color: white;
  }

  .section-6 .a .b p span:nth-child(3),
  .section-6 .a .b p a:nth-child(3) {
    text-align: right;
  }

  .section-6 .a .b p span:nth-child(2),
  .section-6 .a .b p a:nth-child(2) {
    text-align: center;
  }

  .section-6 .a .b p span i,
  .section-6 .a .b p a i {
    margin-right: 5px;
  }

  .section-6 .a .b h3 {
    color: white;
    text-align: center;
  }

  .section-6 .a .b .c {
    width: 100vw;
    display: grid;
    margin: 0 auto;
    padding: 0 15%;
    grid-template-columns: 1fr;
  }

  .section-6 .a .b .c p {
    color: white;
    font-family: "Roboto";
    margin-bottom: 40px;
  }

  .section-6 .a .b .c p a {
    font-size: 16px;
  }

  .section-6 .a .b .c p:last-child {
    text-align: left;
  }

  .section-6 .img {
    z-index: 6;
    grid-column: 1/-1;
    grid-row: 2/4;
  }

  .section-6 .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .section-7 {
    text-align: center;
  }

  .section-7 > div {
    display: inline-grid;
    grid-template-columns: 1fr;
    width: 100%;
    align-content: center;
  }

  .section-7 p:nth-child(1) {
    font-family: "Playfair Display", serif;
    text-align: center;
    align-self: center;
    font-size: 20px;
    padding: 40px 0;
  }

  .section-7 p:nth-child(1) span {
    display: block;
  }

  .section-7 p:last-child {
    font-family: "Playfair Display", serif;
    background: #000;
    padding: 25px 100px;
    color: white;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
  }

  .section-7 p:last-child span {
    white-space: pre;
    display: block;
    margin-bottom: 24px;
    grid-column: 1/-1;
    font-size: 20px;
    text-align: center;
  }

  .section-7 p:last-child a {
    text-align: center;
  }

  .section-7 p:last-child a:hover {
    opacity: 0.7;
  }

  .section-7 p:last-child a img {
    height: 28px;
  }

  .share {
    z-index: 10;
    position: fixed;
    bottom: 20%;
    left: 20px;
  }

  .share a {
    margin-top: 20px;
    display: block;
  }

  .share a:hover {
    opacity: 0.7;
  }

  .menu {
    position: fixed;
    top: 30px;
    z-index: 10;
    right: 20px;
  }

  .menu a {
    margin-left: 12px;
    color: #e9a35f;
    font-family: Roboto;
    font-weight: 900;
    display: inline-block;
    font-size: 16px;
  }

  .menu a img {
    height: 24px;
  }

  .owl-dot {
    width: 15px;
    height: 15px;
    margin-top: 16px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #bdbdbd;
  }

  .owl-dot.active {
    background: #e9a35f;
    border-color: #e9a35f;
  }

  .menu-a {
    position: fixed;
    width: 0;
    transition: all 0.7s ease-out;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    right: 0;
    z-index: 11;
    overflow: hidden;
  }

  .menu-a.show {
    width: 100vw;
    transition: all 0.7s ease-out;
  }

  .menu-a.show .menu-b {
    width: 100vw;
    transition-delay: 0.1s;
    transition-duration: 1s;
    transition-property: width;
    position: relative;
    transition-timing-function: ease-in-out;
  }

  .menu-a.show .menu-b * {
    opacity: 1;
    transition: all 1s;
    transition-delay: 0.5s;
  }

  .menu-a.show .menu-b .menu-d {
    transition-delay: 1s;
  }

  .menu-a .menu-b {
    transition-delay: 0.2s;
    position: relative;
    transition-duration: 1s;
    transition-property: width;
    transition-timing-function: ease-in-out;
    width: 0;
    height: 100vh;
    float: right;
    background: #5c68ae;
  }

  .menu-a .menu-b * {
    opacity: 0;
    transition: all 0.5s;
  }

  .menu-a .menu-b .menu-c {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-a .menu-b .menu-c a {
    display: block;
    color: #fff;
    text-align: right;
    font-family: "Playfair Display", serif;
    font-weight: 200;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    font-size: 30px;
    transition: all 0.3s;
  }

  .menu-a .menu-b .menu-c a:last-child {
    border: 0;
  }

  .menu-a .menu-b .menu-c a.active {
    color: #223066;
  }

  .menu-a .menu-b .menu-c a.active:hover {
    opacity: 1;
  }

  .menu-a .menu-b .menu-c a:hover {
    opacity: 0.5;
    transition: all 0.3s;
  }

  .menu-a .menu-b .menu-d {
    position: absolute;
    bottom: 0;
    background: #bcc5fb;
    align-items: center;
    box-sizing: border-box;
    left: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    width: 100%;
    padding: 20px 30px;
  }

  .menu-a .menu-b .menu-d span {
    font-size: 18px;
    color: #223066;
    font-family: "play", serif;
  }

  .menu-a .menu-b .menu-d div {
    text-align: right;
  }

  .menu-a .menu-b .menu-d div a {
    display: inline-block;
    margin-left: 20px;
  }

  .menu-a .menu-b .menu-d div a img {
    height: 26px;
  }

  .menu-a .menu-b .close-menu {
    margin-top: 20px;
    display: block;
    margin: 30px;
    position: relative;
    text-align: right;
    padding-right: 30px;
    padding-top: 20px;
  }

  .menu-a .menu-b .close-menu span {
    display: inline-block;
    width: 27px;
    height: 5px;
    background: #e9a35f;
    border-radius: 3px;
    position: absolute;
  }

  .menu-a .menu-b .close-menu span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-a .menu-b .close-menu span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .lets-connect {
    margin-top: 0px;
  }

  .lets-connect > div {
    grid-column: 1/-1;
    padding: 80px 0 60px;
    grid-row: 1/-1;
    z-index: 2;
    align-self: center;
  }

  .lets-connect > div .as {
    font-size: 30px;
    font-family: "Playfair Display", serif;
    color: white;
    text-align: center;
    margin-bottom: 40px;
  }

  .lets-connect > div .b {
    width: 100%;
    padding: 0 15%;
    display: grid;
    margin: 0 auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .lets-connect > div .b p {
    color: white;
    text-align: center;
    font-family: "Roboto";
    margin-bottom: 24px;
  }

  .lets-connect > div .b p a {
    color: white;
  }

  .lets-connect > div .b p a:hover {
    color: #e9a35f;
  }

  .lets-connect > div .b p a i {
    margin-right: 5px;
  }

  .lets-connect > div .b p:last-child {
    text-align: left;
  }

  .lets-connect img {
    grid-column: 1/-1;
    grid-row: 1/2;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    z-index: 1;
    width: 100%;
  }

  .service {
    margin-bottom: 150px;
  }

  .service.s1 {
    background: url("/img/service_purple_bg-scaled.jpg");
    height: 100vh;
    background-size: cover;
    display: grid;
    position: relative;
    grid-template-rows: -webkit-min-content;
    grid-template-rows: min-content;
  }

  .service.s1 .a {
    position: absolute;
    color: #e9a35f;
    font-family: "Playfair Display", serif;
    font-size: 60px;
    margin-top: 0%;
    padding: 0 15%;
    margin-bottom: 0;
    bottom: 5%;
    padding: 0;
    left: 15%;
  }

  .service.s1 .content {
    width: 100vw;
    position: static;
    left: 0;
    right: 0;
    grid-row: 1/2;
    padding: 0 15%;
    bottom: 15vh;
    margin-top: 30%;
  }

  .service.s1 .content p {
    color: white;
    line-height: 26px;
  }

  .service.s2 {
    text-align: right;
  }

  .service.s2 > div {
    width: 90vw;
    display: inline-grid;
    grid-template-columns: 0.8fr 1fr;
    text-align: left;
    align-content: center;
    align-items: center;
    grid-column-gap: 80px;
  }

  .service.s2 > div h3 {
    color: #e9a35f;
  }

  .service.s2 > div img {
    width: 100%;
  }

  .service.s3 {
    width: 100vw;
    display: grid;
    margin-top: 0;
    grid-template-columns: 1fr;
  }

  .service.s3 h3 {
    color: #e9a35f;
  }

  .service.s3 .img {
    position: relative;
  }

  .service.s3 .img img {
    width: 100%;
  }

  .service.s3 .a {
    position: relative;
  }

  .service.s3 .a .b {
    padding-top: 50px;
    position: static;
    left: 0px;
    top: 0;
    width: 100vw;
    padding: 0 15%;
  }

  .service.s3 .a .b h3 {
    font-size: 30px;
    text-align: center;
    margin-top: 40px;
  }

  .service.s3 .a .b p {
    margin-left: 0px;
  }

  .service.s4 {
    text-align: right;
  }

  .service.s4 .a {
    text-align: left;
    width: 100vw;
    position: relative;
    display: inline-block;
    display: grid;
  }

  .service.s4 .a > img {
    display: inline-block;
    width: 100vw;
    grid-row: 1/2;
    max-width: 100vw;
  }

  .service.s4 .a .b {
    grid-row: 2/3;
    padding: 0 15%;
    top: 15%;
    text-align: left;
    width: 100vw;
    position: static;
  }

  .service.s4 .a .b h3 {
    color: #e9a35f;
    margin-top: 40px;
    font-size: 30px;
    text-align: center;
  }

  .product-item {
    margin-top: 0;
    margin-bottom: 150px;
    display: grid;
  }

  .product-item > div {
    display: grid;
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
    width: 100vw;
  }

  .product-item > div > img {
    width: 100vw;
    grid-row: 1/2;
  }

  .product-item > div > div {
    padding: 0px 15%;
    grid-row: 2/3;
  }

  .product-item > div > div h3 {
    font-size: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
    text-align: center;
    color: #e9a35f;
  }

  .product-item > div > * {
    grid-row: 1/2;
  }

  .product-item.right {
    justify-content: end;
  }

  .product-item.right > div {
    grid-template-columns: 1fr;
  }

  .product-item.right > div > img {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 100%;
  }

  .product-item.right > div > div {
    grid-row: 2/3;
    padding: 0 15%;
    padding-top: 40px;
    grid-column: 1/2;
  }

  .product-item.right > div > div h3 {
    text-align: center;
    font-size: 30px;
  }

  .product-item.xservice_1 > div .a {
    position: relative;
  }

  .product-item.xservice_1 > div .a .b {
    padding-top: 50px;
    position: absolute;
    left: -300px;
    top: 0;
    width: 45vw;
  }

  .product-item.xservice_1 > div .a .b p {
    margin-left: 50px;
  }

  .product-item.xservice_1 > div .img {
    position: relative;
  }

  .product-item.xservice_1 > div .img img {
    width: 100%;
  }

  .products-s1 {
    background: url("/img/products_purple_bg-scaled.jpg") 100%;
    height: 100vh;
    grid-template-rows: -webkit-min-content;
    grid-template-rows: min-content;
    background-size: cover;
    display: grid;
    margin-bottom: 150px;
    position: relative;
  }

  .products-s1 .a {
    position: absolute;
    color: #e9a35f;
    font-family: "Playfair Display", serif;
    font-size: 120px;
    margin-top: 0%;
    padding: 0 15%;
    margin-bottom: 0px;
    font-size: 60px;
    /* grid-row: 2/3; */
    bottom: 5%;
    left: 0;
  }

  .products-s1 .content {
    grid-row: 1/2;
    width: 100vw;
    align-self: center;
    margin-left: 0;
    padding: 0 15%;
    margin-top: 30%;
  }

  .products-s1 .content p {
    color: white;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 16px;
  }
}

