:root {
  --size-navbar-height: 60px;
  --size-sidebar-width: 80%;
  --size-max-width: 1200px;
  --size-max-width-mobile: 768px;
  --size-arrow-down-width: 50px;
  --size-arrow-down-height: 50px;
  --color-white-pure: #ffffff;
  --color-white: #fdfdfd;
  --color-border: #261e55;
  --color-text-secondary: #261e55;
  --color-blue-primary: #164375;
  --color-blue-secondary: #0e2a4a;
  --color-black-border: #1d1d1d;
  --color-grey-text: #59585d;
  --transform-banner-text-translate: translate(623px, 30px);
  --transform-arrow-down-translateY: translateY(-10px);
}

@font-face {
  font-family: "gol-kollektif";
  src: url("../font/Kollektif.ttf");
}

@font-face {
  font-family: "gol-kollektif-bold";
  src: url("../font/Kollektif-Bold.ttf");
}

@font-face {
  font-family: "gol-lato";
  src: url("../font/Lato-Regular.ttf");
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 0.375s ease;
  font-display: swap;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 18px;
  font-family: "gol-kollektif";
  padding-top: var(--size-navbar-height);
  background-color: var(--color-white);
}

.gol-navbar-wrapper {
  font-family: "gol-kollektif";
  position: fixed;
  display: block;
  background-color: var(--color-blue-primary);
  width: 100%;
  height: var(--size-navbar-height);
  top: 0;
  left: 0;
  z-index: 1000;
}

.gol-navbar-container {
  max-width: var(--size-max-width);
  height: var(--size-navbar-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50px 1fr;
}

.gol-navbar-logo-container {
  display: flex;
  align-items: center;
}

.gol-navbar-logo-container img {
  max-width: 100%;
  max-height: calc(var(--size-navbar-height) - 10px);
  object-fit: contain;
}

.gol-navbar-button-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  list-style: none;
  text-align: center;
}

.gol-navbar-button {
  text-decoration: none;
  color: var(--color-white-pure);
  cursor: pointer;
}

.gol-section {}

.gol-section.banner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../image/gol-banner-image.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gol-section-container {
  max-width: var(--size-max-width);
  margin: 0 auto;
}

.gol-section-container.banner {
  min-height: 500px;
  position: relative;
}

.gol-banner-text-container {
  position: absolute;
  text-align: center;
  /* background-color: #007565; */
  top: 200px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  color: var(--color-white-pure);
}

.gol-banner-text-container h1 {
  font-size: 2rem;
  /* font-weight: 100; */
  letter-spacing: 0.3rem;
  font-family: "gol-kollektif-bold";
  margin-bottom: 10px;
}

.gol-section.arrow-down {
  background-image: url("../image/gol-round-arrow-down.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  z-index: 1;
  position: absolute;
  transform: var(--transform-arrow-down-translateY);
}

.gol-section-container.arrow-down {
  margin: 0 auto;
  min-height: 20px;
}

.gol-section.about-us {
  display: block;
}

.gol-section-container.about-us {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
}

.gol-about-info-group>ul {
  margin-left: 20px;
}

.gol-section-container.about-us>.gol-about-info-group {
  color: var(--color-white-pure);
  margin: 40px 0 40px 0px;
  background: linear-gradient(to left, var(--color-blue-primary), var(--color-blue-secondary));
  padding: 40px;
}

.gol-about-info-group>* {
  margin-bottom: 4px;
}

.gol-section-divider.blue {
  border-bottom: 3px solid var(--color-blue-secondary);
}

.gol-about-info-group>h1 {
  letter-spacing: 6px;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.gol-about-info-group>p {
  font-family: "gol-lato";
}

.gol-about-info-group>.gol-section-divider.white {
  width: 70%;
  margin-top: 5px;
  border: 1px solid var(--color-white-pure);
  margin-bottom: 15px;
}

.gol-section-about-us-image-container {
  padding: 30px 30px 30px 0;
}

.gol-section-about-us-image {
  width: 100%;
  height: 100%;
  content: url("../image/gol-about-us-image.webp");
  object-fit: cover;
}

.gol-section.services {
  display: block;
  position: relative;
  background: url("../image/gol-deco-services.png") no-repeat center,
    var(--color-blue-primary);
  background-size: cover;
}

.gol-section-container.services {
  position: relative;
  display: flex;
  justify-content: center;
}

.gol-services-background {
  display: grid;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  position: relative;
}

.gol-services-background-1 {
  position: relative;
  background-image: url("../image/gol-deco-services.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-blue-primary);
}


.gol-services-background-2 {
  background-color: var(--color-white-pure);
}

.gol-services-content {
  font-family: "gol-kollektif";
  position: relative;
  width: inherit;
  top: 0;
  z-index: 2;
  width: 60%;
}

.gol-services-content-title {
  text-align: center;
  text-decoration: underline;
  line-height: 2;
  letter-spacing: 0.3em;
  font-size: 1.5rem;
  text-underline-offset: 20px;
  color: var(--color-white-pure);
  padding: 25px;
}

.gol-services-content-services {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  height: 200px;
  top: 40px;
}

.gol-services-content-1 {
  background-image: url("../image/gol-trucking-thumbnail.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px;
}

.gol-services-content-2 {
  background-image: url("../image/gol-custom-clearance-thumbnail.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gol-services-content-button {
  display: flex;
  font-family: "gol-kollektif";
  cursor: pointer;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
  font-size: 2.3rem;
  text-align: center;
}

.gol-services-content-button:visited {
  color: var(--color-white);
}

.gol-services-content-button.selected {
  border-bottom: 5px solid var(--color-blue-primary);
}

.gol-services-content-button.trucking {
  background: linear-gradient(0deg,
      rgba(0, 0, 0, .6),
      rgba(0, 0, 0, .6)),
    url("../image/gol-trucking-thumbnail.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.gol-services-content-button.custom-clearance {
  background: linear-gradient(0deg,
      rgba(0, 0, 0, .6),
      rgba(0, 0, 0, .6)),
    url("../image/gol-custom-clearance-thumbnail.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.gol-section.service-content {}

.gol-section-container.service-content {
  padding-top: 100px;
  padding-bottom: 100px;
}

.gol-service-content {
  padding-top: 80px;
  margin: 0 auto;
}

.gol-service-content h1 {
  text-decoration: underline;
  text-underline-offset: 12px;
}

.gol-service-content p {
  margin-top: 20px;
}

.gol-service-content-info-group {
  color: #261e55;
  border-top: var(--color-border) 5px solid;
  border-bottom: var(--color-border) 5px solid;
}

.gol-service-content-image-container {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.gol-service-content.trucking {
  display: none;
}

.gol-service-content.custom-clearance {
  display: none;
}

.gol-service-content.trucking.selected {
  display: block;
}

.gol-service-content.custom-clearance.selected {
  display: block;
}

.trucking-image {
  background-image: url("../image/gol-trucking-image.webp");
  background-size: cover;
}

.export-image {
  background-image: url("../image/gol-export-image.webp");
  background-size: cover;
}

.import-image {
  background-image: url("../image/gol-import-image.webp");
  background-size: cover;
}

.inter-island-image {
  background-image: url("../image/gol-inter-island-image.webp");
  background-size: cover;
}

.image-left {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.image-right {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.text-left {
  border-left: var(--color-border) 5px solid;
  margin: 40px 0px 40px 40px;
  padding: 20px;
}

.text-right {
  border-right: var(--color-border) 5px solid;
  margin: 40px 40px 40px 0px;
  padding: 20px;
}

.gol-section.gallery {
  background-color: var(--color-blue-primary);
}

.gol-section-container.gallery {
  display: flex;
  flex-direction: column;

  margin: 0 auto;
  justify-content: center;
  min-height: 300px;
  position: relative;
  padding: 40px;
}

.gol-gallery-title {
  text-align: center;
  justify-content: center;
}

.gol-gallery-title h1 {
  display: inline-block;
  color: var(--color-white-pure);
  letter-spacing: 0.3rem;
  padding: 0px 40px 15px 40px;
  border-bottom: var(--color-white-pure) 5px solid;
}

.gol-gallery-content {
  min-height: 300px;
}

/* Slideshow container */
.gol-slideshow-container {
  position: relative;
  margin: auto;
  margin-top: 30px;
}

/* Hide the images by default */
.gol-slides {
  display: none;
  border-radius: 10%;
  justify-content: center;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.gol-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  margin-bottom: 30px;
}

.gol-gallery-image {
  display: grid;
  width: 60%;
  border-radius: 50px;
  justify-content: center;
  height: 100%;
}

.gol-gallery-image img {
  max-width: 100%;
  /* Mengatur maksimum lebar gambar menjadi 100% dari elemen parent */
  max-height: 450px;
  /* Mengatur maksimum tinggi gambar menjadi 100% dari elemen parent */
  object-fit: cover;
  border-radius: 10px;
}

.dot-active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.gol-section.contact {
  background-image: url("../image/gol-deco-contact-us.png"),
    url("../image/gol-deco-contact-us.png");
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  background-size: cover, cover;
  background-color: var(--color-white);
}

.gol-section-container.contact {
  display: grid;
  grid-template-columns: 1fr;
}

.gol-contact-office {
  display: grid;
  grid-template-columns: 1.8fr 2fr;
}

.gol-contact-pool {
  display: grid;
  grid-template-columns: 2fr 1.8fr;
  align-items: center;
}

.info-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--color-text-secondary);
}

.gol-contact-office.info-group {
  padding: 30px 0px 30px 30px;
}

.gol-contact-office.info-group h1 {
  display: inline-block;
  padding-right: 40px;
  padding-bottom: 10px;
  text-decoration: underline;
  text-underline-offset: 10px;
  letter-spacing: 0.2em;
}

.contact-info {
  background: linear-gradient(to left, var(--color-blue-primary), var(--color-blue-secondary));
  width: 100%;
  padding: 20px 10px 20px 20px;
  display: grid;
  grid-template-columns: 1fr 9fr;
  gap: 20px;
  color: var(--color-white-pure);
  align-items: center;
}

.contact-info a {
  color: var(--color-white-pure);
  text-decoration: none;
}

.gol-pin-contact {
  width: 50px;
  height: 50px;
  background-image: url("../image/gol-loc.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: center;
}

.gol-email-contact {
  width: 50px;
  height: 50px;
  background-image: url("../image/gol-email.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: center;
}

.gol-phone-contact {
  width: 50px;
  height: 50px;
  background-image: url("../image/gol-phone.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: center;
}

.gol-contact-pool.info-group {
  padding: 30px 30px 30px 0px;
}

.gol-contact-pool.contact-info {
  background: linear-gradient(to right, #8fc1b5, #589a8e);
  padding: 50px 30px 50px 10px;
}

.gol-contact-pool.social-media {
  display: none;
  align-self: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-left: 30px;
}

.gol-contact-facebook {
  width: 50px;
  height: 50px;
  background-image: url("../image/gol-fb.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
}

.gol-contact-twitter {
  width: 50px;
  height: 50px;
  background-image: url("../image/gol-twt.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
}

.gol-contact-instagram {
  width: 50px;
  height: 50px;
  background-image: url("../image/gol-ig.png");
  background-size: 50px 50px;
  background-repeat: no-repeat;
}

.gol-section.footer {
  font-family: "gol-kollektif-bold";
  color: var(--color-white-pure);
  display: block;
  background-color: var(--color-blue-primary);
  width: 100%;
  top: 0;
  left: 0;
}

.gol-section-container.footer {
  display: grid;
  grid-template-columns: 1fr 7fr 1fr;
  height: var(--size-navbar-height);
}

.gol-logo {
  background-image: url("../image/gol-logo_gol.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.gol-footer-logo-container {
  display: flex;
  align-items: center;
}

.gol-footer-logo-container img {
  max-width: 100%;
  max-height: calc(var(--size-navbar-height) - 10px);
  object-fit: contain;
}

.gol-footer-text-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.gol-footer-up-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.gol-footer-up-container a {
  display: block;
  background-image: url(../image/gol-up.png);
  background-color: var(--color-blue-6);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20%;
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {}

@media (max-width: 768px) {
  /* .gol-navbar-button-container.expanded {
    transform: translate3d(0, 0, 0);
  }

  .gol-navbar-button-container {
    display: block;
    position: fixed;
    width: 80%;
    background-color: var(--color-blue-primary);
    height: 100vh;
    text-align: left;
    top: var(--size-navbar-height);
    left: 0;
    padding: 0 20px;
    transform: translate3d(-100%, 0, 0);
  }

  .gol-navbar-button {
    display: block;
    padding: 20px;
  } */

  .gol-section-container.about-us {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .gol-section-container.about-us>.gol-about-info-group {
    color: var(--color-white-pure);
    margin: 0px 0 0px 0px;
    background: linear-gradient(to left, #8fc1b5, #589a8e);
    padding: 40px;
    text-align: center;
  }

  .gol-section-about-us-image-container {
    padding: 0;
  }

  .gol-services-content {
    padding-top: 20px;
    width: 70%;
  }

  .gol-services-content-title {
    text-decoration: none;
    line-height: 1.5;
    letter-spacing: 0.3em;
    font-size: 1rem;
    text-underline-offset: 10px;
    color: var(--color-white-pure);
    padding: 0px;
    border-bottom: var(--color-white-pure) 3px solid;
  }

  .gol-services-content-services {
    gap: 20px;
    min-height: 100px;
    justify-content: center;
  }

  .gol-services-content-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    text-align: center;
  }

  .gol-service-content {
    padding-top: 0;
  }

  .image-left,
  .image-right {
    padding: 20px;
    grid-template-columns: none;
    grid-template-rows: 2fr 1fr;
  }

  .gol-service-content-info-group.text-left {
    order: 2;
  }

  .text-left,
  .text-right {
    margin: 0;
    border-left: 5px solid var(--color-border);
    border-right: 5px solid var(--color-border);
    border-top: none;
  }

  .gol-contact-office {
    grid-template-columns: 1fr;
  }

  .gol-contact-office.info-group {
    padding: 20px;
  }

  .gol-contact-pool.info-group {
    padding: 20px;
    justify-content: center;
  }

  .gol-contact-pool {
    grid-template-columns: 1fr;
  }

  .pool-map-location {
    order: 2;
  }

  .gol-contact-pool.social-media {
    justify-content: center;
    padding: 0;
    align-self: center;
  }

  .gol-footer-text-container {
    font-size: 0.9rem;
  }
}

@media (max-width: 425px) {
  .gol-navbar-button-container.expanded {
    transform: translate3d(0, 0, 0);
  }

  .gol-navbar-button-container {
    display: block;
    position: fixed;
    width: 80%;
    background-color: var(--color-blue-primary);
    height: 100vh;
    text-align: left;
    top: var(--size-navbar-height);
    left: 0;
    padding: 0 20px;
    transform: translate3d(-100%, 0, 0);
  }

  .gol-navbar-button {
    display: block;
    padding: 20px;
  }

  .gol-banner-text-container {
    width: 100%;
    padding: 10px;
    top: 170px;
  }

  .gol-section-container.about-us {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .gol-section-container.about-us>.gol-about-info-group {
    color: var(--color-white-pure);
    margin: 0px 0 0px 0px;
    background: linear-gradient(to left, var(--color-blue-primary), var(--color-blue-secondary));
    padding: 40px;
    text-align: center;
  }

  .gol-section-about-us-image-container {
    padding: 0;
  }

  .gol-services-content {
    padding-top: 20px;
    width: 70%;
  }

  .gol-services-content-title {
    text-decoration: none;
    line-height: 1.5;
    letter-spacing: 0.3em;
    font-size: 1rem;
    text-underline-offset: 10px;
    color: var(--color-white-pure);
    padding: 0px;
    border-bottom: var(--color-white-pure) 3px solid;
  }

  .gol-services-content-services {
    gap: 20px;
    height: 100px;
    justify-content: center;
  }

  .gol-services-content-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    text-align: center;
  }

  .gol-service-content {
    padding-top: 0;
  }

  .image-left,
  .image-right {
    padding: 20px;
    grid-template-columns: none;
    grid-template-rows: 1fr 2fr;
  }

  .gol-service-content-info-group.text-left {
    order: 2;
  }

  .text-left,
  .text-right {
    margin: 0;
    border-left: 5px solid var(--color-border);
    border-right: 5px solid var(--color-border);
    border-top: none;
  }

  .gol-section-container.contact {
    font-size: 0.8rem;
  }

  .gol-contact-office {
    grid-template-columns: 1fr;
  }

  .gol-contact-office.info-group {
    padding: 20px;
  }

  .gol-contact-pool.info-group {
    padding: 20px;
    justify-content: center;
  }

  .gol-contact-pool {
    grid-template-columns: 1fr;
  }

  .pool-map-location {
    order: 2;
  }

  .gol-contact-twitter,
  .gol-contact-facebook,
  .gol-contact-instagram,
  .gol-phone-contact,
  .gol-email-contact,
  .gol-pin-contact {
    background-size: 40px;
  }

  .gol-contact-pool.social-media {
    justify-content: center;
    padding: 0;
    align-self: center;
  }

  .gol-footer-text-container {
    font-size: 0.7rem;
  }
}