/* === Google Fonts ===*/
@import url('https://fonts.googleapis.com/css2?family=Charm&family=Open+Sans:wght@300&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
/* === Css Variables ===*/
:root{
	--white-color: #fff;
	--dark-color: #222;
	--grey-color: #939598;
	--red: #D52020;
	--red-hover: #FAEBEB;
	--body-bg-color: #fff;
	--section-about-color : #f7faff;
	--section-bg-color: #f9fafb;
	--navigation-item-hover-color: #3b5378;

	--blue: #34bbad;
	--yellow: #f5bf23;
	--text-shadow: 0 5px 25px rgba(0, 0, 0, 0,1);
	--box-shadow: 0 5px 25px rgba(0 0 0 / 20%);

	--scroll-bar-color: #fff;
	--scroll-thumb-color: #282f4e;
	--scroll-thumb-hover-color: #454f6b;
}

/* === Scroll Bars ===*/
::-webkit-scrollbar{
	width: 11px;
	background: var(--scroll-bar-color);

}

::-webkit-scrollbar-thumb{
	width: 100%;
	background: var(--scroll-thumb-color);
	border-radius: 2em;
}

::-webkit-scrollbar-thumb:hover{
	background: var(--scroll-thumb-hover-color);
}
/* === Main Css ===*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-family: 'Poppins', sans-serif;*/
	font-family: 'Noto Sans', sans-serif;
}

body{
	background:	var(--body-bg-color);
}


/* ===== Header Navigation Start =====*/
header{
	z-index: 999;
	position: fixed;
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: baseline;
	padding: 15px 0px;
	padding-top: 30px;
	transition: 0.5s ease;
	transition-property: height, background;
}

header.sticky{
	background-color: var(--white-color);
}

header .brand img{
    position: relative;
}

header .brand .logo-black{
	display: none;
}

header.sticky .brand .logo-black{
	display: inline-block;
}

header.sticky .brand .logo-white{
	display: none;
}

header .brand a{
	display: none;
}

header .navigation{
	display: flex;
	/*width: 50%;*/
	position: relative;
}

header .navigation a{
	position: relative;
	color: var(--white-color);
	font-size: 1em;
	/*font-weight: 700;*/
	text-decoration: none;
	margin-left: 50px;
	transition: 0.3s ease;
}

header.sticky .navigation a{
	color: var(--dark-color);
}

header .navigation .dropbtn {
  color: var(--white-color);
  background-color: transparent;
  margin-left: 50px;
  border: none;
  cursor: pointer;
}

header.sticky .navigation .dropbtn{
	color: var(--dark-color);
}

header .navigation .dropdown {
  position: relative;
  display: inline-block;
}

header .navigation .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white-color);
  margin-top: 20px;
  padding: 10px 10px;
  left: -100%;
  min-width: 550px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 20px;
  z-index: 1;
}

header .navigation .dropdown .dropdown-content a {
  color: black;
  padding: 12px 10px;
  text-decoration: none;
  display: block;
}

header .navigation .dropdown .dropdown-content .column {
  /*float: left;*/
  width: 50%;
  padding: 5px;
}

header .navigation .dropdown .dropdown-content .column h3 {
	font-size: 1rem;
	margin-top: 1rem;
	margin-left: 2rem;
	display: block;
	padding: 0.25rem 0;
	color: #D90404;
}

header .navigation .dropdown .dropdown-content .column a {
  float: none;
  color: black;
  /*padding: 16px 0;*/
  margin-left: 20px;
  text-decoration: none;
  display: block;
  text-align: left;
}

header .navigation .dropdown .dropdown-content .column a:hover {
	background-color: #FAEBEB;
	color: var(--red);
	border-radius: 20px;
	transition: 1s ease;
	transform: translateX(5px);
}

header .navigation .dropdown .show {
	display:block;
}

header .languange select {
	border: 0px;
	outline: 0px;
}
/* ===== Header Navigation End =====*/

/* ===== Home Slider Navigation Start =====*/
.home .slideshow-container {
	/*max-width: 100%;*/
	height: 628px;
	margin: auto;
	position: relative;
	position: relative;
	width: 100%;
}
.home .slideshow-container .mySlides{
	display: none;
}

.home .slideshow-container .mySlides.active{
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1s;
}

.home .slideshow-container .mySlides .text{
	z-index: 100;
 	position: absolute;
 	top: 0;
 	color: var(--white-color);
 	padding: 40px 120px;
 	width: 70%;
	margin-top: 320px;
}

.home .slideshow-container .mySlides .numbertext{
	color: var(--white-color);
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0
}

.home .slideshow-container .mySlides img{
	vertical-align: middle;
	width: 100%;
	border-radius: 1px;
	height: 628px;
}

.home .slideshow-container .prev, .next{
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: var(--white-color);
	font-weight: bold;
	font-size: 18px;
	transition: 0.6 ease;
	border-radius: 0 3px 3px 0;
	user-select: none; 
}

.home .slideshow-container .next{
	right: 0;
	border-radius: 3px 0 0 3px;
}

.home .slideshow-container .prev:hover, .next:hover{
	background-color: rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes fade{
	/*from {opacity: .4}
	to {opacity: 1}*/
	from {clip-path: circle(0% at 0 50%)}
	to {clip-path: circle(150% at 0 50%)}
}

@keyframes fade{
	/*from {opacity: .4}
	to {opacity: 1}*/
	from {clip-path: circle(0% at 0 50%)}
	to {clip-path: circle(150% at 0 50%)}
}
/* ===== Home Slider Navigation End =====*/

/* ===== About Section Start ===== */
.title-why{
	background-color: var(--section-about-color);
	padding: 80px 0 40px 80px;
	/*padding-top: 80px;
	padding-bottom: 40px;*/
	display: flex;
}

.title-why .heading {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: var(--dark-color);
	width: 50%;
}

.title-why .heading h1 {
	padding-left: 1rem;
	border-left: 0.7rem solid var(--red);
	border-radius: 5px;
	font-size: 1.5rem;
	margin-bottom: 50px;
}

.title-why .heading p {
	margin-bottom: 20px;
	font-family: 'Roboto Flex', sans-serif;
	width: 70%;
}

.title-why .heading .readbtn{
	display: flex;
	align-items: center;
	border: none;
	padding: 0 10px;
	right: 100%;
	background-color: transparent;
	color: var(--grey-color);
}

.title-why .heading .readbtn:hover{
	background-color: var(--red-hover);
	padding: 0 10px;
	border-radius: 5px;
	color: var(--red);
	transition: 1s ease;
}

.title-why .heading .readbtn:hover i{
	transform: translateX(8px);
	color: var(--red);
	transition: 1s ease;
}

.title-why .heading .readbtn i{
	font-size: 20px;
	margin-left: 5px;
}

.title-why img{
	width: 550px;
	float: left;
}
/* ===== About Section End ===== */

/* ==== Portfolio Section Start ==== */
.portfolio {
	padding: 80px;
}

.portfolio .heading {
	padding-left: 1rem;
	border-left: 0.7rem solid var(--red);
	border-radius: 5px;
	font-size: 1.5rem;
	margin-bottom: 50px;
}

.portfolio .heading h1 {
	font-size: 1.5rem;
}

.portfolio .heading span {
	color: var(--red);
}

.portfolio .container {
	display: flex;
	flex-wrap: wrap;
}

.portfolio .portfolio-items {
	display: flex;
	align-items: center;
	border: 1px solid var(--dark-color);
	border-radius:  20px;
	margin: 10px 10px;
	padding: 20px;
	box-shadow: 1px 5px rgba(0,0,0,0.1);
	width: 30%;
}

.portfolio .portfolio-items:hover {
	background-color: var(--red-hover);
	transition: 1s ease;
	transform: translateY(-10px);
}

.portfolio .portfolio-items img{
	height: 60px;
	width: 60px;
	margin-right: 20px; 
}

.portfolio .portfolio-items .title-items h1{
	font-size: 1.2rem;
	padding-bottom: 10px;
}

.portfolio .portfolio-items .desc-items p{
	font-size: 0.8rem;
}
/* ==== Portfolio Section End ==== */


/* ===== Partner Slider Start ===== */
.partner-slider {
	padding: 0 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.partner-slider .heading h1{
	display: flex;
	font-size: 1.5rem;
	margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 1rem solid var(--red);
    border-radius: 5px;
}

.partner-slider .marquee{
	width: 80vw;
	height: 20vh;
	overflow: hidden; 
	position: relative;
}

.partner-slider .marquee:before, .marquee:after{
	position: absolute;
	top: 0;
	width: 10rem;
	height: 100%;
	content: "";
	z-index: 1;
}

.partner-slider .marquee:before {
	left: 0;
	background: linear-gradient(to right, var(--white-color) 0%, transparent 100%);
}

.partner-slider .marquee:after {
	right: 0;
	background: linear-gradient(to left, var(--white-color) 0%, transparent 100%);
}

.partner-slider .marquee .marquee-content:hover{
	animation-play-state: paused;
}

.partner-slider .marquee .marquee-content{
	list-style: none;
	height: 100%;
	display: flex;
	animation: scrolling 10s linear infinite;
}

.partner-slider .marquee .marquee-content li{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20vw;
	flex-shrink: 0;
	white-space: nowrap;
}

.partner-slider .marquee .marquee-content .bigger img{
	width: 70%;
	transition: transform 1s;
}

.partner-slider .marquee .marquee-content img{
	width: 40%;
	transition: transform 1s;
}

.partner-slider .marquee .marquee-content img:hover{
	transform: translateZ(20px);
}

@keyframes scrolling{
	0% { transform: translateX(0vw); }
	100% { transform: translateX(-180vw); }
}

/* ===== Partner Slider End ===== */

.footer{
	padding: 80px 50px;
	position: relative;
}

.footer .box-container{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	/*grid-template-columns: repeat(auto-fit, minmax(25rem, 5fr));*/
   	gap: 5rem;
   	border-top: 2px solid #E6E6E6;
    border-bottom: 2px solid #E6E6E6;
    padding: 80px 10px;
    /*background-image: url("../images/peta-lokasi.png");
  	background-repeat: no-repeat;
  	background-position: 50% 0;*/
  	background: linear-gradient(rgba(255,255,255,.8), rgba(255,255,255,.8)), url("../images/peta-lokasi.png");
  	background-repeat: no-repeat;
  	background-position: 200% 0;
}

.footer .box-container .box-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer .box-container .box-logo .logo-klx img{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 50px;
	/*margin-left: 50px;*/
	width: 80%;
}

.footer .box-container .box-logo .logo-kl img {
	width: 120%;
}

.footer .box-container .box p {
	font-size: 1rem;
	color: var(--grey-color);
	/*font-style: italic;*/
	/*text-align: justify;*/
	line-height: 1.5rem;
}

.footer .box-container .box h3{
	font-size: 1.2rem;
	padding: 1.5rem 0;
	color: var(--red);
}

.footer .box-container .box .d-flex{
	display: flex;
	margin-bottom: 15px;
}
.footer .box-container .box .d-flex-center{
	display: flex;
	margin-bottom: 15px;
	align-items: center;
}

.footer .box-container .box .footer-icon{
	font-size: 30px;
	/*width: 150px;*/
	padding-right: 20px;
	color: var(--dark-color);
}

.footer .box-container .box .footer-address{
	font-size: 0.9rem;
	color: var(--dark-color);
}

.footer .box-container .box a{
   color: var(--dark-color);
   font-size: 0.9rem;
   padding-bottom: 1rem;
   display: block;
   text-decoration:	none;
}

.footer .box-container .box a:hover {
	color: var(--red)
}

.footer .box-container .box a:hover i{
	color: var(--red);
	transition: 0.7s;
	padding-right: 5px;
}

.footer .box-container .box a i {
	color: var(--green);
}

.footer-bottom .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom .container .links .nav{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.footer-bottom .container .links .nav .nav-items{
	list-style-type: none;
	padding: 0 10px;
}

.footer-bottom .container .links .nav .opacity{
	color: var(--dark-color);
	opacity: 0.6;
}

.footer-bottom .container .links .nav .nav-items a{
	text-decoration: none;
	color: var(--dark-color);
	display: block;
}

.footer-bottom .container .links .nav .nav-items:hover a{
	color: var(--red);
	/*transform: translateY(40px);*/
}

.footer-bottom .container .media-icons .nav{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.footer-bottom .container .media-icons .nav .nav-items{
	list-style-type: none;
	padding: 0 10px;
}

.footer-bottom .container .media-icons .nav .nav-items a{
	text-decoration: none;
	border-radius: 5px;
	padding: 10px 15px;
	background-color: rgba(113, 134, 157, 0.1);
	color: var(--red);
	font-size: 1.3rem;
	display: block;
	transition: 0.5s ease;
}

.footer-bottom .container .media-icons .nav .nav-items a:hover{
	background-color: var(--grey-color);
	transform: scale(1.3);
}

.footer-bottom .container-copy{
	text-align: center;
	color: var(--grey-color);
	padding-top: 30px;
}

/* ===== Footer Section End ===== */
.spacer{
	display: block;
    clear: both;
    height: 3rem;
}




/* === ABOUT PAGE === */
.about-page{
	padding: 80px;
}

.about-page .heading {
	background: linear-gradient(rgba(255,255,255,.8), rgba(255,255,255,.8)), url("../images/peta-lokasi.png");
  	background-repeat: no-repeat;
  	background-position: 200% 0;
}

.about-page .heading h1 {
	padding-left: 1rem;
	border-left: 0.7rem solid var(--red);
	border-radius: 5px;
	font-size: 1.5rem;
	margin-bottom: 50px;
}

.about-page .heading p{
	padding: 0 80px;
	font-size: 1rem;
}