/**
 *  Template CSS 
 * */
:root {
  --primary: #034b63;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
  --bgwhite: #ffffff;
  --primary-light: #e8f0f6;
  --text-light2: #c8c8c8;
}

body {
  font-size: 1.1rem;
  overflow-x: hidden !important;
}


.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
.text-light2, a.text-light2 {
	color: var(--text-light2);
}
.text-light2:hover, a.text-light2:hover {
	color: white;
}

ul.bullet-none, ul.bullet-none li {
  list-style: none;
}
ul.bullet-none li {
  padding-left: 5rem;
  position: relative;
}
ul.bullet-none li > .fa {
  position: absolute;
  left: 3rem;
  top: 0.4rem;
}
ul.readable > li, ol.readable > li {
  margin-bottom: 20px;
}

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--bs-primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.home .container-fluid .container, 
.home .container-fluid .container-fluid, 
.home .container .container-fluid, 
.home .container .container {
    padding-left: 0;
    padding-right: 0;
}

@media screen and (max-width: 767px) {
    .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        padding-right: var(--bs-gutter-x, 1.2rem);
        padding-left: var(--bs-gutter-x, 1.2rem);
    }
	.page .container .container {
		margin: 0;
		padding: 0;
	}
}

/*** Heading ***/
h.home .home 1,
h2,
.fw-bold {
  font-weight: 400;
}
h1.entry-title, h1.archive-title, h2.entry-title, h2.heading-size-1 {
  text-align: left;
  letter-spacing: -0.05rem;
  line-height: 1;
  font-family: 'Barlow';
  font-weight: 300;
  color: var(--bs-primary);
}

h1 .color-accent {
  color: var(--primary) !important;
}
h2.entry-title > a, h2.heading-size-1 > a {
    color: var(--bs-primary);
}
h2.entry-title, h2.heading-size-1 {
  font-size: 32px;
}
body.home .navbar-dark .navbar-brand h1.logo__text, 
body:not(.home) .navbar-dark .navbar-brand h1.logo__text {
    color: var(--bs-primary);
}
body:not(.home) main#site-content {
    padding-top: 6rem;
}

body:not(.home) nav.navbar-dark {
    box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%) !important;
}

body:not(.home) .navbar-dark .navbar-nav .nav-link {
    color: var(--dark);
}

h3,
h4,
.fw-semi-bold {
  font-weight: 400;
}

h5,
h6,
.fw-medium {
  font-weight: 400;
}
h1.logo__text {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.05rem;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1;
}

a.text-underline {
	text-decoration: underline;
}
.hidden {
	display: none;
}

main#site-content, 
body:not(.category) article .post-inner > .entry-content {
	min-height: 50rem;
}

ul.post-meta, ul.post-meta li, .entry-categories-inner {
	list-style: none;
	text-align: left;
	font-size: 1rem;
}
.archive-subtitle, .section-inner, .intro-text {
	text-align: left;
}
.comments-wrapper {
	display: none;
}

img.alignleft {
  display: block;
  margin-right: 1rem;
  margin-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  float: none;
  margin-inline-end: 1rem;
}

img.alignright {
  display: block;
  margin-left: 1rem;
  margin-right: 0;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  float: none;
  margin-inline-start: 1rem;
}

img.aligncenter {
  display: block;
  margin: 0.5rem auto;
}

.icon-feature-item {
    margin: 0px 1rem 1rem 0;
    float: left;
}

@media (min-width: 768px) and (max-width: 1023px) {
.forminator-col.forminator-col-6, .forminator-col.forminator-col-6.col-md-6 {
    width: 100%;
}
}
/*** Button ***/
.btn {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  transition: 0.5s;
  text-transform: uppercase;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
  text-transform: uppercase;
}

.btn-primary:hover {
  box-shadow: outset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}
.btn-outline-light:hover {
  color: #000;
  text-transform: uppercase;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
button, .button, .faux-button, .wp-block-button__link, .wp-block-file .wp-block-file__button, input[type="button"], input[type="reset"], input[type="submit"], .bg-accent, .bg-accent-hover:hover, .bg-accent-hover:focus, :root .has-accent-background-color, .comment-reply-link {
    background-color: var(--bs-primary);
	color: white;
}
input[type="search"], input[type="submit"], input[type="submit"].search-submit.btn-primary {
    padding: 0.3rem 0.5rem;
    border: 1px solid var(--bs-primary);
}
.error404 input[type="submit"].search-submit.btn-primary {
	position: relative;
	top: -3px;
}

/*** Scrollbar ***/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #ccc;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 0;
}
::-webkit-scrollbar-button {
  background: #999;
  border: 1px solid #888;
}
::-webkit-scrollbar-track {
  background: #aaa;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: 'Barlow', sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: var(--bs-primary);
  border: none !important;
}

/**
 * company
 * */
@media screen and (min-width: 601px) {
	.border-left {
		border-left:1px solid #ddd;
		padding-left: 2rem;
	}
}
@media screen and (max-width: 600px) {
	.border-left {
		border-left:none
		padding-left: 0;
	}
}
@media screen and (max-width: 768px) {
	.co-about p {
		text-align: center;
		line-height: 1;
	}
	.col:last-child {
    	padding-bottom: 5rem;
	}
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--bs-primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  /* position: absolute;
  content: '';
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear; */
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

/* .section-title.text-center::after {
  -webkit-animation: section-title-run-center 5000s infinite linear;
  animation: section-title-run-center 5000s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5000s infinite linear;
  animation: section-title-run-sm 5000s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
} */

/*** Service ***/
.service-item {
  position: relative;
  min-height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 20px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/
.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}
/*
 *  Forms
 * */
#kontak
  .forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid='open']
  .forminator-row:not(:last-child) {
  margin-bottom: 20px !important;
}
#kontak
  .forminator-ui#forminator-module-35.forminator-design--flat
  .forminator-title {
  font-size: 42px !important;
  font-weight: 600 !important;
  text-align: center !important;
}
#kontak .btn,
#kontak .btn-primary {
  background-color: var(--primary) !important;
}

/*** Mobile menu ***/
.navbar-toggler {
    z-index: 10001;
}

@media (max-width: 1023px) {
	body:not(.home) main#site-content {
		padding-top: 2rem;
	}
	#navbarCollapse, .navbar-collapse {
		flex-basis: 100%;
		flex-grow: 1;
		align-items: center;
		position: fixed;
		bottom: 0;
		z-index: 1045;
		display: flex;
		flex-direction: column;
		max-width: 100%;
		background-clip: padding-box;
		color: #fff;
		padding-top: 4rem;
		transform: translateX(100%);
		transition: transform .2s ease-in-out;
		height: 100vh;
		background-color: var(--bs-primary);
		width: 100%;
		left: 0;
		top: 0;
	}
	#navbarCollapse a, .navbar-collapse a {
		color: #fff;		
	}
	#navbarCollapse.show, .navbar-collapse.show {
		transform: none;
	}
	.navbar-dark .navbar-toggler, .navbar-dark .navbar-toggler[aria-expanded="false"] {
		color: var(--bs-primary);
		border: none !important;
	}
	.navbar-dark .navbar-toggler[aria-expanded="true"] {
		border: none !important;
		color: #fff !important;
	}
	.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
  }
	
  .navbar-nav .dropdown-menu {
    display: block !important;
	border: none;
    background-color: transparent;
    color: #fff;
	padding: 0 0 0 1.5rem
  }
	
  .navbar-nav .dropdown-menu a {
    color: #fff;
  }
  .navbar-nav .dropdown-menu a:hover {
	background-color: transparent;
    color: #fff;
  }
  .navbar-toggler.hamburger-lines {
  height: 29px;
  width: 32px;
  padding: 0.25rem 0.2rem;
/*   display: block;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler.hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background-color: var(--bs-primary);
  box-shadow: 1px 1px 2px 0px rgb(0,0,0, 0.4);
}
 .navbar-toggler.hamburger-lines[aria-expanded="true"] .line {
		background-color: #fff;
 }

  .navbar-toggler.hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

  .navbar-toggler.hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

  .navbar-toggler.hamburger-lines .line3 {
	  transform-origin: 0% 100%;
	  transition: transform 0.3s ease-in-out;
	}

	 .navbar-toggler.hamburger-lines[aria-expanded="true"] .line1 {
	  transform: rotate(45deg);
	}

	 .navbar-toggler.hamburger-lines[aria-expanded="true"] .line2 {
	  transform: scaleY(0);
	}

	 .navbar-toggler.hamburger-lines[aria-expanded="true"] .line3 {
	  transform: rotate(-45deg);
	}

	.navbar-collapse .navbar-nav.ms-auto {
		margin-left: inherit !important;
	}
	#navbarCollapse a.btn.btn-primary {
		background-color: #fff;
		color: var(--bs-primary);
		border-radius: 7px;
	 }


	
}

/*** Miscellaneous ***/
blockquote {
    margin: 0;
}
blockquote.co-vision, blockquote.co-mission, blockquote.co-feature, blockquote.co-feature2 {
	padding: 2rem 4rem;
	border-radius: 0.5rem;
}
blockquote.co-vision, blockquote.co-mission, blockquote.co-feature2 {
	background-color: #e8e8e8;
}
blockquote.co-feature {
	background-color: var(--primary-light)/*#d7f5ff*/;
	color: black;
}
@media screen and (max-width: 767px) {
  blockquote.co-vision, blockquote.co-mission, blockquote.co-feature, blockquote.co-feature2 {
	padding: 1rem;
  }
}
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  left: 20px;
  bottom: 20px;
  z-index: 99;
  opacity: 0.8;
}

.bg-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

/**
 *  MC Mailchimp
 * */
#mc_embed_signup{
    background:#fff; 
    clear:left; 
    /*font:14px Helvetica,Arial,sans-serif;  */
    /*width:600px;*/
}

.featured-media img {
    max-width: 100%;
    height: auto;
}
	

/**
 *  WA
 * */
.terbuka-chat-el {
    display: inline-block;
}
button.terbuka-trigger-chat-btn.terbuka-chat-el {
    background: #74c162;
    color: #fff;
    padding: 15px 19px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 7px 16px rgb(46 46 46 / 15%);
    border: 0;
    outline: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    min-width: 160px;
	opacity: 0.8;
}
img.terbuka-chat-icon, video.terbuka-chat-icon {
    max-width: 100%;
    height: auto;
}
.terbuka-trigger-chat-btn.terbuka-chat-el>div.terbuka-chat-el {
    padding-left: 15px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}
