@charset "UTF-8";

body {
  font-family: "Oswald-ExtraLight";
  font-size: 18px;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 12px);
  padding-left: var(--bs-gutter-x, 12px);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

.ratio {
  position: relative;
  width: 100%;
  display: inline-block;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-all-team {
  --bs-aspect-ratio: calc(6 / 16 * 100%);
}

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-our-works {
  --bs-aspect-ratio: calc(6 / 16 * 100%);
}

.ratio-our-works-lightbox {
  --bs-aspect-ratio: calc(5 / 6 * 100%);
}

.ratio-our-works-lightbox-cus {
  --bs-aspect-ratio: calc(4 / 3 * 100%);
  height: 300px;
}

.ratio-our-works-lightbox-cus img {
  margin-top: 10%;
  width: 400px;
}

.ratio-our-works-lightbox-pot {
  --bs-aspect-ratio: calc(4 / 3 * 100%);
}

.ratio-our-clients {
  --bs-aspect-ratio: calc(1 / 4 * 100%);
}

.ratio-news {
  --bs-aspect-ratio: 100%;
}

.ratio-ceo {
  --bs-aspect-ratio: calc(6.15 / 10 * 100%);
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 992px) {
  .ratio-our-works-lightbox {
    --bs-aspect-ratio: calc(4 / 3 * 100%);
  }

  .ratio-news {
    --bs-aspect-ratio: calc(12 / 16 * 100%);
  }
}

.navbar {
  padding: 0 1.5rem;
  min-height: 70px;
  top: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
}

.navbar-expand-lg .navbar-collapse {
  padding-bottom: 0 !important;
}

.navbar-nav .nav-link {
  font-size: 18px;
}

.navbar-nav a#search img {
  width: 18px;
}

.navbar-nav .dropdown-menu {
  background-color: #00000033 !important;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
}

.navbar-nav .dropdown-item {
  color: #fff;
  font-size: 16px;
}

.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:hover {
  color: #111;
}

.brand-header {
  height: 2rem;
  margin-left: 0;
}

.navbar-dark .navbar-brand {
  margin-right: 0;
}

#form-search-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.form-search {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  top: 100%;
  top: calc(100% + 1rem);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem !important;
  -webkit-box-shadow: 0 1rem 4rem -0.5rem #0001;
  box-shadow: 0 1rem 4rem -0.5rem #0001;
  border-radius: 5rem;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 300ms ease;
  -o-transition: 300ms ease;
  transition: 300ms ease;
}

.open-search .form-search {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

.form-search form {
  width: 100%;
}

.form-search .input-group {
  position: relative;
}

.form-search .form-control {
  border: 0;
  background-color: transparent;
  border-radius: 5rem !important;
  padding: 0 1rem !important;
  height: 3rem;
  border: solid 1px #eee !important;
}

.form-search .btn-submit-search {
  position: absolute;
  z-index: 10;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 5rem;
  background-color: #05173f;
  padding: 0;
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#form-search-wrap .btn-toggle-search {
  border-radius: 5rem;
  background: transparent;
  padding: 0;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#sidebar {
  height: 100%;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#sidebar ul.components {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 0;
  border-bottom: 0;
  padding-left: 0;
}

#sidebar ul.components>li[style*="margin-top"] {
  margin-top: auto !important;
}

#sidebar ul.components>li>a {
  padding-left: 24px;
}

#sidebar.active+#content {
  position: relative;
  z-index: 0;
}

.overlay.active {
  z-index: 2000;
}

.hero-banner {
  --caption-padding-top: 2rem;
  --caption-padding-top-lg: 5rem;
  position: relative;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(var(--hero-banner-bg)),
      to(transparent));

  background: -o-linear-gradient(top, var(--hero-banner-bg), transparent);
  background: linear-gradient(180deg, var(--hero-banner-bg), transparent);
  color: var(--hero-banner-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-banner .hero-caption,
.hero-banner .hero-picture,
.hero-banner .hero-video {
  position: relative;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.hero-banner .hero-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
  z-index: 10;
}

.hero-banner .hero-caption [class*="col"] {
  padding-top: calc(var(--header-height) + var(--caption-padding-top));
  padding-bottom: var(--caption-padding-top);
  display: -webkit-box;
  display: -ms-flexbox;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.hero-banner .hero-caption [class*="col"] .btn-cta {
  position: relative;
  font-size: 16px;
  padding: 0.875rem 1.875rem;
}

@media only screen and (min-width: 576px) {
  .hero-banner .hero-caption [class*="col"] .btn-cta {
    font-size: calc(16px + 2 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {
  .hero-banner .hero-caption [class*="col"] .btn-cta {
    font-size: 18px;
  }
}

.hero-banner .hero-caption [class*="col"] .btn-cta::after {
  content: "";
  background-color: var(--bs-primary);
  display: block;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 95%;
  height: 90%;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 40%;
  border-radius: 5rem;
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
  opacity: 0.75;
}

.hero-banner .hero-caption [class*="col"]>*:last-child,
.hero-banner .hero-caption [class*="col"]>*:only-child {
  margin-bottom: 0;
}

.hero-banner .hero-caption .title {
  margin-bottom: 1.875rem;
  font-size: 32px;
}

@media only screen and (min-width: 576px) {
  .hero-banner .hero-caption .title {
    font-size: calc(32px + 20 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {
  .hero-banner .hero-caption .title {
    font-size: 52px;
  }
}

.hero-banner .hero-caption .subtitle {
  margin-bottom: 1rem;
  font-size: 24px;
}

@media only screen and (min-width: 576px) {
  .hero-banner .hero-caption .subtitle {
    font-size: calc(24px + 14 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {
  .hero-banner .hero-caption .subtitle {
    font-size: 38px;
  }
}

.hero-banner .hero-caption p {
  font-size: 14px;
}

@media only screen and (min-width: 576px) {
  .hero-banner .hero-caption p {
    font-size: calc(14px + 2 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {
  .hero-banner .hero-caption p {
    font-size: 16px;
  }
}

.hero-banner .hero-caption p.lead {
  font-size: 20px !important;
}

@media only screen and (min-width: 576px) {
  .hero-banner .hero-caption p.lead {
    font-size: 20px !important;
  }
}

@media only screen and (min-width: 1400px) {
  .hero-banner .hero-caption p.lead {
    font-size: 20px !important;
  }
}

.hero-banner .hero-picture {
  background-repeat: repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-banner .hero-picture>picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-banner .hero-picture img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.hero-banner .hero-caption+.hero-picture[style*="background-image"],
.hero-banner[data-height="use-caption"] .hero-caption+.hero-picture[style*="background-image"] {
  position: absolute;
}

.hero-banner .hero-caption+.hero-picture img,
.hero-banner[data-height="use-caption"] .hero-caption+.hero-picture img {
  -o-object-position: center;
  object-position: center;
}

.hero-banner[data-height="use-image"] {
  height: auto;
}

.hero-banner[data-height="use-caption"] .hero-caption+.hero-picture img {
  max-width: none !important;
  width: 100vw !important;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.hero-banner[data-height="use-caption"] .hero-caption+.hero-picture {
  position: absolute;
}

.hero-banner[data-height="use-image"] .hero-caption {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.hero-banner[data-height="use-image"] .hero-caption .hero-picture {
  position: relative;
}

.hero-banner[data-height="use-video"] .hero-caption {
  position: absolute;
  height: 100%;
  z-index: 10;
}

.hero-banner[data-height="use-video"] .hero-video {
  min-height: 600px;
  height: 100vh;
  overflow: hidden;
  width: 100vw;
}

.hero-banner[data-height="use-video"] .hero-video video {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-banner[data-height="use-video"] .hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  width: calc(100vw * 4);
  min-height: 100vh;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero-banner .hero-picture[use-masking] {
  background-color: #000;
  z-index: 0;
}

.hero-banner .hero-picture[use-masking]::before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #05183f77;
}

.hero-banner .hero-picture[use-masking] img {
  z-index: 0;
  opacity: 0.875;
}

@media screen and (min-width: 576px) {
  .hero-banner .hero-caption [class*="col"] {
    padding-top: calc(var(--header-height) + var(--caption-padding-top));
  }
}

@media screen and (min-width: 768px) {
  .hero-banner {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 992px) {

  .hero-banner .hero-caption+.hero-picture,
  .hero-banner[data-height="use-caption"] .hero-caption+.hero-picture {
    position: absolute;
  }

  .hero-banner[data-height="use-image"] .hero-caption {
    position: absolute;
    z-index: 20;
  }

  .hero-banner[data-height="use-image"] .hero-caption+.hero-picture {
    position: relative;
    height: 100vh;
    min-height: 700px;
  }

  .hero-banner[data-img-position] .hero-caption+.hero-picture img {
    width: auto;
    max-width: 60%;
  }

  .hero-banner[data-img-position="left"] .hero-picture,
  .hero-banner[data-img-position="left"] .hero-picture>picture {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .hero-banner[data-img-position="right"] .hero-picture,
  .hero-banner[data-img-position="right"] .hero-picture>picture {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .hero-banner[data-img-position="full"] .hero-picture,
  .hero-banner[data-img-position="full"] .hero-picture>picture {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero-banner[data-height="use-image"] .hero-caption+.hero-picture img {
    width: 100vw;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .hero-banner[data-height="use-video"] .hero-video iframe {
    height: calc(100vh * 2);
  }
}

.hero-slides {
  position: relative;
}

.hero-slides .swiper-button-next,
.hero-slides .swiper-button-prev {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 5rem;
  background-color: #fff3;
}

.hero-slides .swiper-button-next::after,
.hero-slides .swiper-button-prev::after {
  font-size: 24px;
  font-family: "fontello";
}

.hero-slides .swiper-button-prev::after,
.hero-slides .swiper-rtl .swiper-button-next::after {
  content: "";
}

.hero-slides .swiper-button-next::after,
.hero-slides .swiper-rtl .swiper-button-prev::after {
  content: "";
}

@media screen and (min-width: 768px) {

  .hero-slides .swiper-button-next,
  .hero-slides .swiper-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.hero-banner[data-img-position="full"] {
  min-height: 600px;
  height: 100vh;
}

.hero-banner .hero-caption {
  height: 100%;
}

.hero-banner .hero-caption .container,
.hero-banner .hero-caption .row,
.hero-banner .hero-caption [class*="col-"] {
  height: 100vh;
  min-height: 600px;
}

.hero-banner .hero-caption [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 600px;
  padding-top: 70px;
}

@media screen and (min-width: 992px) {
  .hero-banner .hero-caption [class*="col-"] {
    padding-top: 80px;
  }
}

.hero-banner .hero-caption .lead {
  font-size: 24px;
}

.hero-banner .hero-caption .title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 52px;
}

.hero-banner .hero-caption .title.made-of-indonesia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero-banner .hero-caption .title.made-of-indonesia span {
  font-family: "Oswald-SemiBold";
  font-weight: 900;
  font-size: 80pt;
}

.hero-banner .hero-caption .title.made-of-indonesia em {
  font-family: "NotoSerifDisplay-LightItalic";
  /* padding-bottom: 40px; */
  font-weight: lighter;
}

@media screen and (min-width: 576px) {
  .hero-banner .hero-caption .title.made-of-indonesia {
    font-size: calc(3.75rem + ((1vw - 4.8px) * 6.25));
    min-height: 0vw;
  }

  .hero-banner .hero-caption .title.made-of-indonesia em {
    font-size: calc(3.125rem + ((1vw - 4.8px) * 3.125));
  }
}

@media screen and (min-width: 992px) {
  .hero-banner .hero-caption .title.made-of-indonesia {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .hero-banner .hero-caption .title.made-of-indonesia>*+* {
    margin-left: 0;
  }

  .hero-banner .hero-caption .title.made-of-indonesia em {
    font-weight: 400;
    font-size: 80px;
  }

  .hero-banner .hero-caption .title.made-of-indonesia {
    font-size: 120px;
  }

  .hero-banner .hero-caption .title.made-of-indonesia span:first-child {
    -webkit-transform: translateX(0rem) translateY(-80px);
    -ms-transform: translateX(0rem) translateY(-80px);
    transform: translateX(0rem) translateY(-80px);
  }

  .hero-banner .hero-caption .title.made-of-indonesia span:last-child {
    -webkit-transform: translate(0, 80px);
    -ms-transform: translate(0, 80px);
    transform: translate(0, 80px);
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet {
  background-color: #0e245d;
  opacity: 0.75;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .banner-carousel-wrap .swiper-button-prev {
    margin-left: -3rem;
  }

  .banner-carousel-wrap .swiper-button-next {
    margin-right: -3rem;
  }
}

.card-transparent {
  background: transparent;
  border: 0;
}

.btn-toggle-search {
  border: 0;
  background: transparent;
  border-radius: 5rem;
  width: 40px;
  height: 40px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.btn-toggle-search:hover {
  background-color: #fff;
}

.btn-toggle-search:hover img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.news-header-image {
  padding-left: 0;
  padding-right: 0;
}

.news-description-mobile {
  font-size: 14px;
}

.news-item-content>*:last-child {
  margin-bottom: 0;
}

.header-panel {
  font-size: 36px;
}

#what-do-we-do .content-text {
  font-size: 24px;
}

a {
  color: inherit;
}

.row-masonry {
  position: relative;
}

.row-masonry .item {
  position: absolute;
  margin-bottom: 1.325rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  z-index: 1;
  left: 0px;
  right: 0px;
}

.row-masonry .item.muuri-item-dragging {
  z-index: 3;
}

.row-masonry .item.muuri-item-releasing {
  z-index: 2;
}

.row-masonry .item.muuri-item-hidden {
  z-index: 0;
}

.row-masonry .item[data-color="red"] .item-content,
.row-masonry item.red .item-content {
  background-color: #680000;
}

.row-masonry .item[data-color="yellow"] .item-content,
.row-masonry .item.yellow .item-content {
  background-color: #beb206;
}

.row-masonry .item[data-color="green"] .item-content,
.row-masonry .item.green .item-content {
  background-color: #0c9200;
}

.row-masonry .item-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;

  display: contents;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

.row-masonry .item-content img {
  width: 100%;
  height: auto;
}

.btn-filter-masonry button.active {
  background-color: var(--bs-primary);
}

.btn-filter-masonry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}

.btn-filter-masonry .btn {
  font-size: 1.125rem;
  background: transparent;
  color: #fff;
}

.btn-filter-masonry .btn.active {
  font-weight: 700;
}

.btn-filter-masonry .btn::after {
  content: "|";
  position: absolute;
  right: 0;
  font-weight: 400;
}

.btn-filter-masonry .btn:last-child::after {
  display: none;
}

.row-masonry .ourworks {
  font-size: 18px;
}

.row-masonry .ourworks hgroup {
  font-family: "Oswald-SemiBold";
  font-size: 24px;
}

.list-work {
  display: grid;
  margin-bottom: 20px;
  grid-template-columns: repeat(5, 1fr);
}

.list-work .foto-work {
  width: 100%;
  object-fit: cover;
  max-height: 200px;
  height: 200px;
}

.list-work h4 {
  font-family: "Oswald-SemiBold";
  font-size: 24px;
}

.no-more-data .loading,
.no-more-data .row-masonry-add,
.loading,
.loading .row-masonry-add {
  opacity: 0;
  visibility: hidden;
}

.ourworks-swiper .swiper-button-prev {
  left: 0;
}

.ourworks-swiper .swiper-button-next {
  right: 0;
}

.loading {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.show-loader .loading {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.row-masonry-add {
  text-align: center;
}

.title-work {
  margin-top: 1rem;
}

.title-work span {
  font-family: "Oswald-ExtraLight";
  font-weight: bold;
  font-size: 20px;
}

.title span {
  font-family: "Oswald-ExtraLight";
  font-weight: bold;
  font-size: 80px;
}

.btn-masonry-add {
  background-color: transparent;
  color: #FFF;
  font-family: "FormulaCondensed-Light";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media screen and (max-width: 178px) {
  .list-work {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: repeat(1, 1fr);
  }

  .list-work .foto-work {
    width: 100%;
    object-fit: cover;
  }

  .list-work h4 {
    font-family: "Oswald-SemiBold";
    font-size: 18px;
  }

  .list-work p {
    font-family: "Oswald-SemiBold";
    font-size: 10px;
  }

  .card-transparent {
    background: transparent;
    border: 0;
  }
}

@media screen and (max-width: 320px) {
  .list-work {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .list-work .foto-work {
    width: 100%;
    object-fit: cover;
    height: 150px;
  }

  .list-work h4 {
    font-family: "Oswald-SemiBold";
    font-size: 18px;
  }

  .list-work p {
    font-family: "Oswald-SemiBold";
    font-size: 10px;
  }

  .card-transparent {
    background: transparent;
    border: 0;
  }
}

@media screen and (min-width: 768px) {
  .row-masonry .item {
    width: 33.333%;
  }

  .list-work {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 932px) {
  .row-masonry .item {
    width: 33.333%;
  }

  .list-work {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 830px) {
  .row-masonry .item {
    width: 33.333%;
  }

  .list-work {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .list-work {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .list-work .foto-work {
    width: 100%;
    object-fit: cover;
    height: 200px;
  }
}

@media screen and (max-width: 485px) {
  .list-work {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .list-work .foto-work {
    width: 100%;
    object-fit: cover;
    max-height: 150px;
  }

  .list-work h4 {
    font-size: 15px;
  }

  .title-work {
    margin-top: 0.25rem;
  }
}

@media screen and (min-width: 490px) {
  .list-work {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .list-work .foto-work {
    width: 100%;
    object-fit: cover;
  }
}

@media screen and (min-width: 500px) {
  .list-work {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .list-work {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .row-masonry .item.col-lg-5 {
    width: 40%;
  }

  .list-work {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: repeat(5, 1fr);
  }
}

.glightbox-clean .gslide-description {
  max-width: 80% !important;
  background: #0005;
  color: #fff;
  text-align: center;
}

.glightbox-container .ginner-container {
  position: relative;
}

.glightbox-clean .gslide-title {
  color: #fff;
  margin-bottom: 0;
  font-family: "Oswald-SemiBold";
  font-size: 24px;
  font-weight: 400;
}

.gslide-image img {
  max-width: 20px;
}

.gloader {
  display: none !important;
}

.glightbox-clean .gdesc-inner {
  padding: 0.75rem;
}

.glightbox-clean .gslide-desc {
  font-family: "NotoSerifDisplay-MediumItalic";
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  #our-works .col-md-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .hero-banner .hero-caption .container,
  .hero-banner .hero-caption .row,
  .hero-banner .hero-caption [class*="col-"] {
    min-height: auto;
  }

  .hero-banner[data-height="use-image"] .hero-caption {
    padding-top: 260px;
    padding-top: calc(260px + 70px);
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 2rem;
    height: 2rem;
    border-radius: 5rem;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 17px;
  }

  .swiper-button-prev {
    left: -1rem;
    /*    top: 35%;*/
  }

  .swiper-button-next {
    /* position: relative; */
    right: -1rem;
    /*    top: 35%;*/
  }
}

.lightbox-ourwork {
  border: 0;
  color: #fff;
  font-family: "FormulaCondensed-Light";
  padding: 2rem !important;
}

.lightbox-ourwork>.row {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  align-content: flex-start;
}

.lightbox-ourwork hgroup {
  margin-bottom: 1.75rem;
  margin-top: 1rem;
}

.lightbox-ourwork hgroup .title {
  font-family: "FormulaCondensed-Bold";
  font-weight: 400;
  font-size: 38px;
  letter-spacing: 2px;
}

.lightbox-ourwork hgroup .subtitle {
  font-size: 28px;
}

.lightbox-ourwork .caption {
  font-size: 18px;
  font-family: "Oswald-ExtraLight";
  /* margin-bottom: 5rem; */
}

.lightbox-ourwork .ourworks-nav-mobile {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.lightbox-ourwork .ourworks-lighbox-prev,
.lightbox-ourwork .ourworks-lighbox-next {
  left: auto;
  right: auto;
  border: 0;
  background-color: transparent;
}

.ourworks-nav-mobile .ourworks-lighbox-prev,
.ourworks-nav-mobile .ourworks-lighbox-next {
  position: relative;
}

.lightbox-ourwork .ourworks-lighbox-prev::after,
.lightbox-ourwork .ourworks-lighbox-next::after {
  font-family: swiper-icons;
  font-size: 2rem;
  color: #fff;
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.lightbox-ourwork .ourworks-lighbox-prev::after {
  content: "prev";
}

.lightbox-ourwork .ourworks-lighbox-next::after {
  content: "next";
}

.glightbox-our-works .gslide-media {
  max-height: none;
  background: url(../img/background/background-modal.jpg) no-repeat 50% 50%;
  background-size: cover;
}

@media screen and (min-width: 992px) {

  /* .lightbox-ourwork hgroup .title {
    font-size: 42px;
  } */
  .lightbox-ourwork hgroup .subtitle {
    font-size: 32px;
  }

  .lightbox-ourwork {
    position: relative;
    min-width: 800px;
    width: 80vw;
    height: 80vh;
    min-height: 600px;
  }

  .lightbox-ourwork .ourworks-nav-mobile {
    right: 0;
    position: absolute;
    width: 50%;
    padding: 0 2rem 0 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 20;
  }

  .lightbox-ourwork .col-text {
    position: static;
  }

  .lightbox-ourwork hgroup {
    margin-top: 0;
  }
}

@media screen and (max-width: 991px) {

  .glightbox-our-works .gslide-media,
  .lightbox-ourwork {
    height: 90vh !important;
    height: calc(100vh - 30px) !important;
    width: 95vw !important;
    width: calc(100vw - 30px) !important;
    margin: auto;
    border-radius: 1rem;
  }
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
  animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(24px, 0);
    transform: translate(24px, 0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(24px, 0);
    transform: translate(24px, 0);
  }
}

body {
  background-color: #000;
  color: #fff;
}

.ratio>* {
  -o-object-fit: cover;
  object-fit: cover;
}

.timeline {
  --margin-left: 0.875rem;
  --margin-bottom: 1.5rem;
  --image-size: 60px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-left: solid 1px #fff;
}

.timeline .item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: var(--margin-left);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: var(--margin-bottom);
  position: relative;
}

.timeline .item::before,
.timeline .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 90px !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.timeline .item::before {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 5rem;
}

.timeline .item::after {
  width: 2rem;
  border-bottom: solid 1px #fff;
  z-index: 0;
}

.timeline .item picture img {
  border-radius: 5rem;
  border: solid 1px #fff;
  position: relative;
  z-index: 10;
  width: var(--image-size);
  height: var(--image-size);
}

.timeline .item .caption {
  padding-left: 1rem;
}

.timeline .item .caption .title {
  /* font-family: "Oswald-SemiBold"; */
  font-size: 1.525rem;
  margin-bottom: 0.125rem;
  font-weight: 900;
}

.timeline .item .caption li {
  list-style: none;
  padding-bottom: 20px;
}

.timeline .item .caption p {
  margin-bottom: 0;
}

.timeline-wrap.show-loader .timeline-more,
.timeline-wrap.no-more-data .timeline-more {
  display: none;
}

@media screen and (min-width: 480px) {
  .timeline {
    --image-size: 80px;
  }
}

@media screen and (min-width: 768px) {
  .timeline {
    --margin-left: 0rem;
    --margin-right: 1.5rem;
    --margin-bottom: 1.5rem;
    --image-size: 100px;
  }

  .timeline::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .timeline .item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .timeline .item picture img {
    width: var(--image-size);
    height: var(--image-size);
  }

  .timeline .item:nth-child(odd) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .timeline .item:nth-child(odd)::before {
    margin-left: auto;
    left: auto;
    -webkit-transform: translateX(50%) translateY(-50%);
    -ms-transform: translateX(50%) translateY(-50%);
    transform: translateX(50%) translateY(-50%);
  }

  .timeline .item:nth-child(odd)::after {
    left: auto;
  }

  .timeline .item:nth-child(odd) picture {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-right: var(--margin-right);
  }

  .timeline .item:nth-child(odd) .caption {
    padding-right: var(--margin-right);
    text-align: right;
  }

  .timeline .item:nth-child(even) {
    margin-left: auto;
    padding-left: var(--margin-right);
    width: calc(50% + var(--margin-right));
  }

  .timeline .item:nth-child(even)::before {
    margin-left: var(--margin-right);
  }

  .timeline .item:nth-child(even)::after {
    left: auto;
  }

  .timeline .item:nth-child(even) picture {
    margin-left: var(--margin-right);
  }
}

@media only screen and (max-width:768px) {
  .timeline::before {
    top: 90px !important;
  }

}



.timeline-more::before {
  content: "";
  display: inline-block;
  height: 1rem;
  border-left: dashed 1px #fff;
}

.timeline-more .btn.more {
  padding: 0;
  color: #fff;
  border-radius: 5rem;
  background: transparent;
  border: 0;
  margin-left: 10px;
}

@media screen and (min-width: 768px) {
  .timeline-more {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .timeline-more::before {
    height: 3rem;
  }

  .timeline-more .btn.more {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .start-journey {
    padding-bottom: 3rem;
  }

  .start-journey h2 {
    margin: 0;
  }
}

.grid-news .item {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid-news .item picture {
  width: 86px;
  height: 86px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.grid-news .item .caption {
  padding-left: 1rem;
}

@media (min-width: 576px) {
  .grid-news .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .grid-news .item .caption {
    padding-left: 0;
  }

  .grid-news .item picture {
    width: 100%;
    height: unset;
    margin-bottom: 1.25rem;
  }
}

.social-media {
  padding: 0;
  margin: 0 0 0.5rem;
  list-style: none;
  display: flex;
  justify-content: center;
}

.social-media li {
  margin-right: 0.5rem;
}

.social-media li a {
  display: flex;
  width: 30px;
  height: 30px;
  background: #fff;
  color: #05173f;
  border-radius: 5rem;
  align-items: center;
  justify-content: center;
}

.social-media li:last-child {
  margin-right: 0;
}

.social-media2 {
  padding: 0;
  margin: 0 0 0.5rem;
  list-style: none;
  display: flex;
  /* justify-content: center; */
}

.social-media2 li {
  margin-right: 0.5rem;
}

.social-media2 li a {
  display: flex;
  width: 30px;
  height: 30px;
  background: #fff;
  color: #05173f;
  border-radius: 5rem;
  align-items: center;
  justify-content: center;
}

.social-media2 li:last-child {
  margin-right: 0;
}

.footer {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  min-height: auto;
}

.footer .footer-logo {
  margin-bottom: 0.5rem;
}

.footer .copyright {
  font-size: 0.75rem;
}

.footer .footer-logo img {
  width: 7rem;
}

@media (min-width: 576px) {
  .footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .footer .group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
    margin-left: 1rem;
    border-left: solid 1px #fff5;
  }

  .footer .footer-logo {
    margin: 0;
  }
}

#post-content {
  font-size: 18px;
  margin-bottom: 3rem;
  line-height: 1.875;
}

@media only screen and (min-width: 576px) {
  #post-content {
    font-size: calc(16px + 0 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {

  #post-content,
  #post-content p {
    font-size: 18px;
  }
}

#post-content h1,
#post-content h2,
#post-content h3,
#post-content h4,
#post-content h5,
#post-content h6,
#post-content .h1,
#post-content .h2,
#post-content .h3,
#post-content .h4,
#post-content .h5,
#post-content .h6 {
  color: var(--bs-primary);
  position: relative;
}

#post-content>h1,
#post-content>h2,
#post-content>h3,
#post-content>h4,
#post-content>h5,
#post-content>h6,
#post-content>.post-title {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

#post-content h1,
#post-content .h1 {
  font-size: 32px;
}

@media only screen and (min-width: 576px) {

  #post-content h1,
  #post-content .h1 {
    font-size: calc(32px + 8 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {

  #post-content h1,
  #post-content .h1 {
    font-size: 40px;
  }
}

#post-content h2,
#post-content .h2 {
  font-size: 28px;
}

@media only screen and (min-width: 576px) {

  #post-content h2,
  #post-content .h2 {
    font-size: calc(28px + 18 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {

  #post-content h2,
  #post-content .h2 {
    font-size: 38px;
  }
}

#post-content h3,
#post-content .h3 {
  font-size: 24px;
}

@media only screen and (min-width: 576px) {

  #post-content h3,
  #post-content .h3 {
    font-size: calc(24px + 10 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {

  #post-content h3,
  #post-content .h3 {
    font-size: 28px;
  }
}

#post-content h4,
#post-content .h4 {
  font-size: 20px;
}

@media only screen and (min-width: 576px) {

  #post-content h4,
  #post-content .h4 {
    font-size: calc(20px + 10 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {

  #post-content h4,
  #post-content .h4 {
    font-size: 26px;
  }
}

#post-content h5,
#post-content .h5 {
  font-size: 18px;
}

@media only screen and (min-width: 576px) {

  #post-content h5,
  #post-content .h5 {
    font-size: calc(18px + 7 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {

  #post-content h5,
  #post-content .h5 {
    font-size: 22px;
  }
}

#post-content h6,
#post-content .h6 {
  font-size: 16px;
}

@media only screen and (min-width: 576px) {

  #post-content h6,
  #post-content .h6 {
    font-size: calc(16px + 4 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {

  #post-content h6,
  #post-content .h6 {
    font-size: 18px;
  }
}

#post-content img {
  max-width: 100%;
  height: auto;
}

#post-content>img {
  margin-bottom: 1rem;
}

#post-content blockquote {
  border-left: 0.15rem solid var(--bs-primary);
  padding-left: 1rem;
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 500;
}

#post-content blockquote footer {
  font-size: 14px;
  color: var(--bs-gray-500);
}

@media only screen and (min-width: 576px) {
  #post-content blockquote footer {
    font-size: calc(14px + 2 * ((100vw - 576px) / 824));
  }
}

@media only screen and (min-width: 1400px) {
  #post-content blockquote footer {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  #post-content img.img-full {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }

  #post-content img.img-responsive {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }

  #post-content img.img-left {
    float: left;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }

  #post-content img.img-right {
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
  }

  #post-content img.img-center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .g-custom .g-wrapper {
    position: relative;
  }

  .g-custom .g-wrapper .gslide-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: inherit;
    font-size: 1.5rem;
  }

  .g-custom .g-wrapper .description-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    background: #000 55;
  }
}

.navbar {
  transition: all 500ms;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  height: var(--header-height);
}

.header-prepair .navbar {
  transform: translateY(-100%);
}

.header-sticky .navbar {
  position: fixed;
  transform: translateY(0%);
  box-shadow: 0 1rem 1.5rem #0001;
  backdrop-filter: blur(4px);
  background-image: url("../img/header-stiky.png");
}

.row-our-team-ceil .team {
  padding: 0;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #fff !important;
  text-shadow: 1px 0px #f8ebeb;
}

@media screen and (min-width: 992px) {
  .row-our-team-ceil .ceo {
    order: 0;
  }

  .row-our-team-ceil .cco {
    order: 2;
  }

  .row-our-team-ceil .team {
    padding-right: 15px;
    padding-left: 15px;
    order: 1;
  }
}

@media screen and (max-width: 991px) {

  .glightbox-clean .gprev,
  .glightbox-clean .gnext,
  .glightbox-clean .gclose {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10rem;
    padding: 0;
    background-color: #0002;
  }

  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    top: auto;
    bottom: 2rem;
  }

  .gnext svg,
  .gprev svg {
    width: 16px;
  }
}

.glightbox-our-works .gslide-media {
  overflow-y: auto;
  max-height: 100vh;
}

.hero-banner-slider .swiper-button-next {
  right: 0;
}

.hero-banner-slider .swiper-button-prev {
  left: 0;
}

/* .filterDiv {
  padding: 20px;
} */
.show {
  display: block;
}

.swiper-button-prev.custom {
  left: -1rem;
}

.swiper-button-next.custom {
  right: -1rem;
}

.swiper-button-prev.client {
  left: +1rem;
}

.swiper-button-next.client {
  right: +1rem;
}

@media only screen and (min-width: 561px) {

  .hero-banner .hero-caption,
  .hero-banner .hero-picture,
  .hero-banner .hero-video {
    position: relative;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .hero-banner .hero-caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10;
  }

  .hero-banner .hero-caption .title2 {
    font-size: 20px;
    font-weight: 700;
  }

  .hero-banner .hero-caption p.lead2 {
    font-size: 20px;
  }

  .hero-banner[data-img-position="full"] {
    min-height: 100px;
    height: 90vh;
  }

  .hero-banner .hero-caption .container,
  .hero-banner .hero-caption .row,
  .hero-banner .hero-caption [class*="col-"] {
    height: 100vh;
    min-height: 90px;
  }

  .hero-banner .hero-caption [class*="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 90px;
    padding-top: 90px;
  }
}

@media only screen and (max-width: 660px) {

  .hero-banner .hero-caption,
  .hero-banner .hero-picture,
  .hero-banner .hero-video {
    position: relative;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .hero-banner .hero-caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10;
  }

  .hero-banner .hero-caption .title2 {
    font-size: 20px;
    font-weight: 700;
  }

  .hero-banner .hero-caption p.lead {
    font-size: 20px !important;
  }

  .hero-banner[data-img-position="full"] {
    min-height: 90px;
    height: 90vh;
  }

  .hero-banner .hero-caption .container,
  .hero-banner .hero-caption .row,
  .hero-banner .hero-caption [class*="col-"] {
    height: 90vh;
    min-height: 90px;
  }

  .hero-banner .hero-caption [class*="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 90px;
    padding-top: 70px;
  }
}

@media only screen and (min-width: 661px) {

  .hero-banner .hero-caption,
  .hero-banner .hero-picture,
  .hero-banner .hero-video {
    position: relative;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .hero-banner .hero-caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10;
  }

  .hero-banner .hero-caption .title2 {
    font-size: 20px;
    font-weight: 700;
  }

  .hero-banner .hero-caption p.lead2 {
    font-size: 20px;
  }

  .hero-banner[data-img-position="full"] {
    min-height: 100px;
    height: 100vh;
  }

  .hero-banner .hero-caption .container,
  .hero-banner .hero-caption .row,
  .hero-banner .hero-caption [class*="col-"] {
    height: 100vh;
    min-height: 100px;
  }

  .hero-banner .hero-caption [class*="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100px;
    padding-top: 70px;
  }
}

@media only screen and (max-width: 560px) {

  .hero-banner .hero-caption,
  .hero-banner .hero-picture,
  .hero-banner .hero-video {
    position: relative;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .hero-banner .hero-caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10;
  }

  .hero-banner .hero-caption .title2 {
    font-size: 20px;
    font-weight: 700;
  }

  .hero-banner .hero-caption p.lead2 {
    font-size: 10px;
  }

  .hero-banner[data-img-position="full"] {
    min-height: 65px;
    height: 65vh;
  }

  .hero-banner .hero-caption .container,
  .hero-banner .hero-caption .row,
  .hero-banner .hero-caption [class*="col-"] {
    height: 65vh;
    min-height: 65px;
  }

  .hero-banner .hero-caption [class*="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 50px;
    padding-top: 90px;
  }
}

.logo-clients {
  height: 100px;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner .hero-caption .title2 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 52px;
}

.hero-banner .hero-caption .title2.made-of-indonesia2 {
  display: -webkit-box;
  display: -ms-flexbox;

  font-size: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero-banner .hero-caption .title2.made-of-indonesia2 span {
  font-family: "Oswald-SemiBold";
  font-weight: 900;
  font-size: 80pt;
}

.hero-banner .hero-caption .title2.made-of-indonesia2 em {
  font-family: "NotoSerifDisplay-LightItalic";

  font-weight: lighter;
  margin-left: 200px;
  font-size: 80px;
  /* color: #000; */
  padding: 0;
}

.desc ul {
  margin-left: -40px;
}

@media screen and (max-width: 540px) {
  .hero-banner .hero-caption .title2.made-of-indonesia2 span {
    font-family: "Oswald-SemiBold";
    font-weight: 900;
    font-size: 40px;
  }

  .hero-banner .hero-caption .title2.made-of-indonesia2 em {
    font-family: "NotoSerifDisplay-LightItalic";

    font-weight: lighter;

    padding: 0;
    font-size: 40px;
  }

  .hero-banner .hero-caption .title.made-of-indonesia span {
    font-family: "Oswald-SemiBold";
    font-weight: 900;
    font-size: 40pt;
  }

  .hero-banner .hero-caption .title.made-of-indonesia em {
    font-family: "NotoSerifDisplay-LightItalic";
    padding-bottom: 0 !important;
    font-weight: lighter;
  }

  .hero-banner .hero-caption .title.made-of-indonesia p.lead {
    font-size: 20px;
  }
}

@media screen and (max-width: 410px) {
  .hero-banner .hero-caption .title2.made-of-indonesia2 span {
    width: 10%;
    font-family: "Oswald-SemiBold";
    font-weight: 900;
    margin-right: 900px;
    font-size: 40px;
  }

  .hero-banner .hero-caption .title2.made-of-indonesia2 em {
    font-family: "NotoSerifDisplay-LightItalic";
    width: 10%;
    font-weight: lighter;
    margin-right: 950px;
    padding: 0;
    font-size: 40px;
  }
}

.swiper-wrapper.disabled {
  transform: translate3d(0px, 0, 0) !important;
}

.swiper-pagination.disabled {
  display: none;
}

.iframe {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 540px) {
  .iframe {
    height: 200px;
  }
}
