body {
	font-family: "Manrope", sans-serif;
}

.animate__hidden {
	opacity: 0;
}

.btn-theme {
	color: #fff;
	background-color: #150043;
	border-color: #150043;
}

.text-theme {
	color: #150043;
}

.rounded-4 {
	border-radius: .4rem !important;
}

.rounded-5 {
	border-radius: .5rem !important;
}

.rounded-10 {
	border-radius: 1rem !important;
}

footer {
	padding: 4rem 3rem;
}

/* Navbar Custom */
.navbar-custom {
	position: fixed;
	top: 15px;
	right: 0;
	left: 0;
	z-index: 1030;
	width: 70%;
	margin: 0 auto;
	background: #f8f8f8;
	border-radius: 7px;
	box-shadow: rgb(0 0 0 / 31%) 0px 3px 5px;
	opacity: 0.8;
}

.navbar-custom .nav-item .nav-link {
	font-size: 11pt;
	color: #150043;
	font-weight: 500;
	padding: 1rem;
}

.navbar-custom .nav-item .nav-link.active {
	font-weight: bold;
}

.navbar-custom .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Main Index */

.content > section#main-index {
	text-align: center;
	padding: 10rem 0 5rem;
	position: sticky;
	top: 0px;
}

.content > section#main-index h1 {
	font-size: 3.2rem;
	font-weight: 600;
}

.content > section#main-index .subtitle {
	max-width: 530px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.content > section#main-index {
		padding: 8rem 0;
	}
}

/* Service */

.content > section#service {
	background: #150043;
	color: #fff;
	text-align: center;
	position: relative;
	margin-top: 20vw;
    padding: 35vw 0 0 0;
	z-index: 1;
}

.content > section#service .main-img {
	position: absolute;
	width: 100%;
	max-width: calc(100vw - 150px);
	left: 0;
	right: 0;
	top: -18vw;
	margin: auto;
	transition: .2s;
}

.content > section#service h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.content > section#service h3 {
	font-size: 1rem;
}

.content > section#service .subtitle {
	max-width: 350px;
	margin: 0 auto;
}

.content > section#service img.icon {
	height: 50px;
	width: auto;
}

.content > section#service .service-list {
	max-width: 950px;
	margin: 0 auto;
}

.content > section#service .service-btn {
	position: absolute;
	transform: translate(-50%, 0);
	bottom: -19px;
	white-space: nowrap;
}

/*@media screen and (min-width: 1201px) {
	.content > section#service {
		margin-top: 20rem;
	}

	.content > section#service .main-img {
		top: -20rem;
	}
}

@media screen and (max-width: 1200px) {
	.content > section#service {
		margin-top: 15rem;
	}

	.content > section#service .main-img {
		top: -15rem;
	}
}

@media screen and (max-width: 992px) {
	.content > section#service {
		margin-top: 10rem;
		padding: 18rem 0 6rem 0;
	}

	.content > section#service .main-img {
		top: -10rem;
	}
}

@media screen and (max-width: 768px) {
	.content > section#service {
		margin-top: 5rem;
		padding: 18rem 0 6rem 0;
	}

	.content > section#service .main-img {
		top: -5rem;
	}
}

@media screen and (max-width: 576px) {
	.content > section#service {
		margin-top: 5rem;
		padding: 10rem 0 6rem 0;
	}

	.content > section#service .main-img {
		top: -5rem;
	}
}*/


/* Why Choose Us */
.content > section#why-choose-us {
	color: #150043;
	text-align: center;
	padding-top: 5rem;
	padding-bottom: 5rem;
	background: #fff;
	position: relative;
}

.content > section#why-choose-us h2 {
	font-size: 4rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.content > section#why-choose-us .subtitle {
	max-width: 500px;
	margin: 0 auto;
}

.content > section#why-choose-us .step-box-container {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: nowrap;
}

.content > section#why-choose-us .step-box-container .step-box {
	background: #fff;
	color: #150043;
	width: 140px;
	padding: 15px;
	border-radius: 50px;
	position: relative;
	z-index: 2;
	flex-basis: 20%;
	border: 1px solid #150043;
}

.content > section#why-choose-us .step-box-container .step-box.dark-box {
	background: #150043;
	color: #fff;
}

.content > section#why-choose-us .step-box-container .step-box img {
	width: 150px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	margin-bottom: 1rem;
}

.content > section#why-choose-us .step-box-container .step-box h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

.content > section#why-choose-us .step-box-container .step-box h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

.content > section#why-choose-us .step-box-container .step-box .description {
	font-size: 0.9rem;
	margin: 0 auto 1rem;
}

@media screen and (max-width: 992px) {
	.content > section#why-choose-us .step-box-container {
		flex-wrap: wrap;
	}

	.content > section#why-choose-us .step-box-container .step-box {
		flex-basis: 33%;
	}
}

@media screen and (max-width: 768px) {
	.content > section#why-choose-us .step-box-container .step-box {
		flex-basis: 50%;
	}
}

@media screen and (max-width: 576px) {
	.content > section#why-choose-us .step-box-container .step-box {
		flex-basis: 70%;
	}
}


/* Article */
.content > section#article {
	text-align: center;
	position: relative;
	z-index: 1;
	font-size: 10pt;
}

.content > section#article .container {
	padding: 2rem 0;
	background: #150043;
	color: #fff;
	border-radius: 2.5rem;
	max-width: 1390px;
}

.content > section#article h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.content > section#article .card {
	text-align: left;
	border-radius: 1rem;
	overflow: hidden;
}

.content > section#article .card .card-header .card-title {
	font-weight: bold;
	margin-bottom: .25rem;
}

.content > section#article .card .card-header .dropdown-toggle::after {
	content: unset;
}

.content > section#article .card .card-body .card-title {
	font-weight: bold;
}

.content > section#article .card .card-body .card-subtitle {
	margin-bottom: .5rem;
}

.content > section#article .card .card-body .card-title,
.content > section#article .card .card-body .card-subtitle {
	font-size: 11pt;
}


/** Testimonial */
.content > section#testimonial {
	color: #150043;
	text-align: center;
	padding-top: 5rem;
	background: #fff;
	position: relative;
	z-index: 1;
}

.content > section#testimonial h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 3rem;
}

.content > section#testimonial .testimonial-item {
	background: #fff;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	clip-path: polygon(-12% 15%, 50% 0%, 100% 12%, 100% 25%,103% 110%, -3% 110%);
}

.content > section#testimonial .testimonial-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.content > section#testimonial .testimonial-item .testimonial-content {
	padding: 20px 25px;
}

.content > section#testimonial .testimonial-item .testimonial-content .message {
	font-size: 10pt;
	margin-bottom: 10px;
}

.content > section#testimonial .testimonial-item .testimonial-content .name {
	font-size: 12pt;
	font-weight: bold;
}


/* Join Us */
.content > section#join-us {
	color: #150043;
	background: #fff;
	text-align: center;
	padding: 2rem 0 3rem;
	position: relative;
	z-index: 1;
}

.content > section#join-us h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.content > section#join-us .subtitle {
	max-width: 500px;
	margin: 0 auto;
}


/** Our Partner */
.content > section#our-partner {
	background: #fff;
	/*margin-bottom: 5rem;*/
	position: relative;
	z-index: 1;
}

.content > section#our-partner > .our-partner-content {
	text-align: center;
	background: #fff;
	padding: 3rem 0rem 6rem 0;
}

.content > section#our-partner h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
	color: #150043;
}

.content > section#our-partner .subtitle {
	max-width: 500px;
	margin: 0 auto;
	color: #150043;
}

.content > section#our-partner .testimonial-item {
	background: #fff;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	clip-path: polygon(-12% 15%, 50% 0%, 100% 12%, 100% 25%,103% 110%, -3% 110%);
}

.content > section#our-partner .testimonial-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.content > section#our-partner .testimonial-item .testimonial-content {
	padding: 20px 25px;
}

.content > section#our-partner .testimonial-item .testimonial-content .message {
	font-size: 10pt;
	margin-bottom: 10px;
}

.content > section#testimonial .testimonial-item .testimonial-content .name {
	font-size: 12pt;
	font-weight: bold;
}


/* Tentang Kami Index */
.content > section#tentang-kami {
	background-image: url('../img/img-4.jpg');
	background-size: cover;
	background-position: center;
	height: 600px;
	width: 100%;
	position: sticky;
	top: 0px;
	z-index: 0;
}

/* Tentang Perusahaan */
.content > section#tentang-perusahaan {
	color: #150043;
	text-align: justify;
	padding: 2rem 0;
	/*margin-bottom: 5rem;*/
	position: relative;
	z-index: 1;
	background: #fff;
}

.content > section#tentang-perusahaan h2 {
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
}

/* Vission Mission */
.content > section#vision-mission {
	color: #fff;
	font-size: 1.5rem;
	text-align: center;
	position: relative;
	z-index: 1;
}

.content > section#vision-mission .vision,
.content > section#vision-mission .mission {
	min-height: 25vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-size: cover;
	flex-basis: 50%;
}

@media screen and (max-width: 768px) {
	.content > section#vision-mission .vision,
	.content > section#vision-mission .mission {
		flex-basis: 100%;
	}
}

.content > section#vision-mission h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

/* DNA Triputra */
.content > section#dna-triputra {
	color: #150043;
	padding: 6rem 0 1rem;
	/*margin-bottom: 5rem;*/
	position: relative;
	z-index: 1;
	background: #fff;
}

.content > section#dna-triputra h2 {
	font-size: 2.5rem;
	font-weight: 600;
}

.content > section#dna-triputra .dna-item img {
	height: 80px;
	object-fit: contain;
}

/* Sejarah */
.content > section#sejarah {
	background-color: #150043;
	padding: 6rem 0;
	color: #fff;
	text-align: justify;
	/*margin-bottom: 5rem;*/
	position: relative;
	z-index: 1;
}

.content > section#sejarah .sejarah-content {
	padding: 0 2rem;
	border-left: 2px solid white;
}

@media screen and (max-width: 992px) {
	.content > section#sejarah .sejarah-title {
		padding: 0px 2rem;
	}

	.content > section#sejarah .sejarah-content {
		padding: 2rem 0;
		margin: 2rem 2rem 0 2rem;
		border-left: unset;
		border-top: 2px solid white;
	}
}

.content > section#sejarah h2 {
	font-size: 2.5rem;
	font-weight: 600;
}

/* Struktur Board */
.content > section#struktur-board {
	color: #150043;
	padding: 6rem 0;
	/*margin-bottom: 5rem;*/
	position: relative;
	z-index: 1;
	background: #fff;
}

.content > section#struktur-board h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.content > section#struktur-board h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.board {
	width: 100%;
	height: 250px;
	background-size: cover;
	border-radius: 1rem;
	position: relative;
	overflow: hidden;
	margin-bottom: 1rem;
}

.board .board-content {
	height: 100%;
	position: relative;
	overflow: visible;
	transform: translateX(40%);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.board .board-content .name {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 0rem;
	z-index: 200;
}

.board .board-content .position {
	font-size: 1rem;
	z-index: 200;
}

.board .board-content::before {
	position: absolute;
	content: "";
	background: #150043;
	height: 800px;
	width: 100vw;
	border-radius: 100%;
	transform: translateX(25%);
	transition: .5s;
	z-index: 100;
}

.board .board-content::after {
	position: absolute;
	content: "";
	background: #62b4da;
	height: 800px;
	width: 100vw;
	border-radius: 100%;
	transform: translateX(30%);
	transition: .5s;
	z-index: 101;
}

.board:hover .board-content::before {
	transform: translateX(-2%);
}

@media screen and (max-width: 992px) {
	.board {
		height: 180px;
	}

	.board .board-content {
		transform: translateX(50%);
	}

	.board .board-content .name {
		font-size: 2rem;
	}

	.board .board-content .position {
		font-size: 0.8rem;
	}

	.board .board-content::before {
		height: 576px;
		width: 100vw;
		transform: translateX(25%);
	}

	.board .board-content::after {
		height: 576px;
		width: 100vw;
		transform: translateX(30%);
	}
}

@media screen and (max-width: 576px) {
	.board {
		height: 100px;
	}

	.board .board-content {
		transform: translateX(45%);
	}

	.board .board-content .name {
		font-size: 1.2rem;
	}

	.board .board-content .position {
		font-size: 0.6rem;
	}

	.board .board-content::before {
		height: 320px;
		width: 100vw;
		transform: translateX(35%);
	}

	.board .board-content::after {
		height: 320px;
		width: 100vw;
		transform: translateX(40%);
	}
}

.board-2.board {
	height: 350px;
}

.board-2.board .board-content {
	transform: translateX(10%);
}

.board .title {
	position: relative;
	z-index: 200;
}

.board-2.board .board-content::before {
	transition: 1s;
	height: 1120px;
	transform: translateX(52%);
}

.board-2.board .board-content::after {
	height: 1120px;
	transition: 1s;
	transform: translateX(55%);
}

.board-2.board:hover .board-content::before {
	width: 100vw;
	opacity: 0.7;
	transform: translateX(-20%);
}

.board-2.board .board-content .title {
	font-size: 3rem;
	font-weight: bold;
	opacity: 0;
	transition: .5s;
}

.board-2.board:hover .board-content .title {
	opacity: 1;
}

@media screen and (max-width: 992px) {
	.board-2.board {
		height: 200px;
	}

	.board-2.board .board-content {
		transform: translateX(10%);
	}

	.board-2.board .board-content::before {
		height: 640px;
		width: 100vw;
		transform: translateX(52%);
	}

	.board-2.board .board-content::after {
		height: 640px;
		width: 100vw;
		transform: translateX(55%);
	}

	.board-2.board .board-content .title {
		font-size: 2rem;
	}
}

@media screen and (max-width: 576px) {
	.board-2.board {
		height: 130px;
	}

	.board-2.board .board-content {
		transform: translateX(10%);
	}

	.board-2.board .board-content::before {
		height: 416px;
		width: 100vw;
		transform: translateX(52%);
	}

	.board-2.board .board-content::after {
		height: 416px;
		width: 100vw;
		transform: translateX(55%);
	}

	.board-2.board .board-content .title {
		font-size: 2rem;
	}
}


/* Struktur Organisasi */
.content > section#struktur-organisasi {
	color: #150043;
	padding: 6rem 0;
}

.content > section#struktur-organisasi h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

/* Layanan Dan Produk */
.content > section#layanan-dan-produk {
	text-align: center;
	padding: 10rem 0 1rem 0;
}

.content > section#layanan-dan-produk h2 {
	font-size: 3.2rem;
	font-weight: 600;
	color: #150043;
}

.content > section#layanan-dan-produk .subtitle {
	max-width: 600px;
	margin: 0 auto;
}

/* Daftar Layanan */
.content > section#daftar-layanan {
	padding: 0;
}

.content > section#daftar-layanan h3 {
	font-size: 2.5rem;
	font-weight: 600;
	color: #150043;
}

/* Portfolio */
.content > section#portfolio-layanan {
	padding: 2.5rem 0;
}

.content > section#portfolio-layanan h3 {
	font-size: 2.5rem;
	font-weight: 600;
	color: #150043;
}

/* Layanan Foto */
.content > section#layanan-foto {
	background-color: #150043;
	padding: 6rem 0;
	color: #fff;
	text-align: justify;
}

.content > section#layanan-foto h2 {
	font-size: 2.5rem;
	font-weight: 600;
}

.content > section#layanan-foto .foto-atas,
.content > section#layanan-foto .foto-bawah {
	width: 100%;
	height: 100%;
}

.content > section#layanan-foto .foto-atas .item,
.content > section#layanan-foto .foto-bawah .item {
	/*width: 250px;*/
	height: 250px;
}

.content > section#layanan-foto .foto-atas img,
.content > section#layanan-foto .foto-bawah img {
	border-radius: 10px;
	width: 250px !important;
	height: 250px !important;
	object-fit: cover !important;
}

/* Portfolio Index */
.content > section#portfolio {
	background-image: url('../img/img-21.jpg');
	background-size: cover;
	background-position: center;
	height: 600px;
	width: 100%;
	position: sticky;
	top: 0px;
	z-index: 0;
	padding: 40px;
	display: flex;
	justify-content: space-between;
	align-items: end;
	color: white;
}

.content > section#portfolio h2 {
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
}

/* Portfolio Count */
.content > section#portfolio-count {
	color: #150043;
	text-align: justify;
	padding: 4rem 0;
	/*margin-bottom: 5rem;*/
	position: relative;
	z-index: 1;
	background: #fdfdfd;
	border-bottom: 1px solid #E3E3E3;
}

.content > section#portfolio-count h2 {
	font-size: 2.5rem;
	font-weight: 600;
}

@media screen and (max-width: 992px) {
	.content > section#portfolio-count * {
		text-align: center;
	}
}

/* Portfolio Ten Group */
.content > section#portfolio-ten-group {
	color: #150043;
	text-align: center;
	padding: 4rem 0;
	position: relative;
	z-index: 1;
	background: #fff;
}

.content > section#portfolio-ten-group h2 {
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 3rem;
}

.content > section#portfolio-ten-group .group-item {
	display: flex;
	flex-direction: column;
}

.content > section#portfolio-ten-group .group-item img {
	height: 150px;
	max-width: 100%;
	object-fit: contain;
	margin-bottom: 1rem;
}

.content > section#portfolio-ten-group .group-item .title {
	background: #150043;
	color: white;
	display: inline-block;
	border-radius: 6px;
	padding: 3px 10px;
	font-weight: bold;
	margin: 0 auto;
}

.content > section#portfolio-ten-group .group-item .link {
	
}


/* Portfolio Statistik */
.content > section#portfolio-statistik {
	color: #150043;
	text-align: center;
	padding: 4rem 0;
	position: relative;
	z-index: 1;
	background: #fff;
}

.content > section#portfolio-statistik h2 {
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 3rem;
}

.content > section#portfolio-statistik .statistik-item {
	width: 200px;
	height: 200px;
	border: 7px solid #5BA0D1;
	border-radius: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #5E5E5E;
}

.content > section#portfolio-statistik .statistik-item img {
	max-width: 50px;
	max-height: 50px;
}

.content > section#portfolio-statistik .statistik-item h3 {
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
}

.content > section#portfolio-statistik .subtitle {
	max-width: 600px;
	margin: 0 auto;
}

/* Portfolio Image Slide */
.content > section#portfolio-image-slide {
	color: #150043;
	background: #fff;
	text-align: center;
	padding: 2rem 0 3rem;
	position: relative;
	z-index: 1;
}

.content > section#portfolio-image-slide .portfolio-image-slide-item {
	height: 600px;
	width: 100%;
	object-position: center;
	object-fit: cover;
	border-radius: 30px;
	color: white;
}

.content > section#portfolio-image-slide .portfolio-image-slide-item h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
}


/* Portfolio Testimonial */
.content > section#portfolio-testimonial {
	color: #150043;
	background: #fff;
	text-align: center;
	padding: 2rem 0 3rem;
	position: relative;
	z-index: 1;
}

.content > section#portfolio-testimonial h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.content > section#portfolio-testimonial .subtitle {
	max-width: 500px;
	margin: 0 auto;
}

.content > section#portfolio-testimonial .testimonial-item {
	background: #EEF8FC;
	width: 100%;
	/*max-width: 450px;*/
	padding: 1rem;
	border-radius: 10px;
}

.content > section#portfolio-testimonial .testimonial-item h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.content > section#portfolio-testimonial .testimonial-item .testimonial-img {
	height: 80px;
	width: 80px;
	border-radius: 80px;
	background: #C4C4C4;
}

/* Karier */
.content > section#karier-main {
	padding: 10rem 0 1rem 0;
}

.content > section#karier-main h2 {
	text-align: left;
	font-size: 2rem;
	font-weight: 400;
	color: #150043;
}

/* Karier Lowongan */
.content > section#karier-lowongan-pekerjaan {
	text-align: center;
	padding: 3rem 0 1rem 0;
}

.content > section#karier-lowongan-pekerjaan h2 {
	font-size: 3.2rem;
	font-weight: 600;
	color: #150043;
}

.content > section#karier-lowongan-pekerjaan .subtitle {
	max-width: 600px;
	margin: 0 auto;
	margin-bottom: 3rem;
}

.content > section#karier-lowongan-pekerjaan .nav {
	padding: 0 1rem;
}

.content > section#karier-lowongan-pekerjaan .nav .nav-item .nav-link {
	padding: .75rem 3rem;
	border-radius: 15px 15px 0 0;
	color: #150043;
}

.content > section#karier-lowongan-pekerjaan .nav .nav-item .nav-link.active {
	background: #150043;
	color: white;
}

/* Karier Employee Review */
.content > section#karier-employee-review {
	text-align: center;
	padding: 10rem 0 1rem 0;
}

.content > section#karier-employee-review h2 {
	font-size: 3.2rem;
	font-weight: 600;
	color: #150043;
}

.content > section#karier-employee-review .subtitle {
	max-width: 600px;
	margin: 0 auto;
	margin-bottom: 3rem;
}

.content > section#karier-employee-review .review-item {
	background: #EEF8FC;
	width: 100%;
	max-width: 450px;
	padding: 1rem;
	border-radius: 10px;
}

.content > section#karier-employee-review .review-item h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.content > section#karier-employee-review .review-item .review-img img {
	height: 60px;
	width: 60px;
	border-radius: 60px;
}

/* Hubungi Kami */
.content > section#hubungi-kami-main {
	padding: 10rem 0 1rem 0;
}

.content > section#hubungi-kami-main .contact {
	color: #fff;
	background: #150043;
	border-radius: 1rem;
}

.content > section#hubungi-kami-main .contact .card-body {
	padding: 3rem;
}

.content > section#hubungi-kami-main .nav {
}

.content > section#hubungi-kami-main .nav .nav-item .nav-link {
	padding: .75rem 3rem;
	border-radius: 15px 15px 0 0;
	color: #150043;
	background: #e9ecef;
}

.content > section#hubungi-kami-main .nav .nav-item .nav-link.active {
	background: #150043;
	color: white;
}



.underline-simple{
	border: none;
	border-bottom: 2px solid #cfcfcf; /* warna garis normal */
	padding: 8px 4px;
	background: transparent;
	outline: none;
	font-size: 16px;
	transition: border-color 0.18s ease;
	width: 100%;
}

.underline-simple:focus{
	border-bottom-color: #2b6cb0; /* warna saat fokus */
}

.btn-primary-alt {
	background: #150043 !important;
	color: #fff !important;
}

.text-primary-alt {
	color: #150043;
}

.stack-slider .slick-slide {
	opacity: 0.5;
	transform: scale(0.7);
	transition: all 0.3s ease;
}

.stack-slider .slick-center {
	opacity: 1;
	transform: scale(1);
	z-index: 2;
}