/*
default savista
*/
:root{
	--color-primary: #2264D2;
	--color-sekunder: #c0c4c9;
	--color-three: #FFA600;
	--color-four: #ffffff;
	--color-five: #9c155f;
	--color-bg-one: #f3f3f3;
	--color-line-1: #e9e9e9;
	--gradien-pack-a : linear-gradient(133deg, rgb(255 193 7), rgb(251 223 2), #ffc107);
	--font-family--manrope: "Manrope", sans-serif;
	--font-family--potta-one: "PottaOne", system-ui;
	--font-family--poppins: "Poppins", serif;
	--font-family--nunito-sans: "NunitoSans", sans-serif;
	--font-family--inter: "Inter", sans-serif;
	--var-fontsize-menu: 18px;
	--var-fontsize-submenu: 16px;
	--var-fontweight-menu: 600;
	--bg-menu-color: #ecfae5;
	--bg-card-color: #ffffff;
	--font-menu-color: #087c6c;
}
.site-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh; /* full viewport height */
}

.site-content {
	flex: 1; /* isi mendorong footer ke bawah */
	margin-top: 80px; /* sesuaikan tinggi header */
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: transparent;
	transition: all 0.3s ease-in-out;
	transform: translateY(0);
}

#header.scrolled {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#header.hide {
	transform: translateY(-100%);
}

/* Header container */
.header_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	width: 100%;
	z-index: 3;
	flex-wrap: wrap;
	position: relative; /* penting untuk dropdown desktop */
}

/* Logo */
.header_container .logo img {
	height: 80px;
	padding: 10px;
	width: auto;
}

/* Menu */
.header_container .menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	transition: max-height 0.3s ease-out;
}

.header_container .menu li a {
	position: relative;
	padding: 20px 15px;
	text-decoration: none;
	display: block;
	color: #333;	
	transition: color 0.3s ease;
}
.sub-menu li a{
	padding: 5px 15px!important;
}
.header_container .menu li:last-child a {
	border-right: none;
}
.menu li{
	position: relative;
	color: #333;
	text-decoration: none;
	padding: 8px 0;
	display: inline-block;
	transition: color 0.3s ease;
}
/* Hover: ubah warna teks */
.menu li a:hover {
	color: var(--var-color-a);
}

/* Tambahkan pseudo-element ::after untuk underline */
.menu li a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	height: 2px;
	width: 100%;
	background-color: var(--color-sekunder);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease;
}
@media(max-width: 768px){
	.menu li a::after {
		bottom: 0;
	}
}
/* Hover: garis memanjang dari kiri ke kanan */
.menu li a:hover::after {
	width: 100%;
}

/* Halaman aktif: garis tetap muncul */
.menu li.current-menu-item > a::after,
.menu li.current-menu-parent > a::after,
.menu li.current-menu-ancestor > a::after {
	width: 100%;
	background-color: var(--color-sekunder); /* warna garis untuk active */
}

.menu li a:hover::after,
.menu li.current-menu-item > a::after {
	transform: scaleX(1);
}

/* Hamburger menu */
.header_container .menu-icon {
	display: none;
	cursor: pointer;
	padding: 20px;
	position: relative;
	user-select: none;
}

.header_container .menu-icon .navicon {
	background: #333;
	display: block;
	height: 2px;
	width: 18px;
	position: relative;
	transition: all 0.3s ease-out;
}

.header_container .menu-icon .navicon:before,
.header_container .menu-icon .navicon:after {
	content: '';
	background: #333;
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	transition: all 0.3s ease-out;
}

.header_container .menu-icon .navicon:before { top: 5px; }
.header_container .menu-icon .navicon:after { top: -5px; }

/* Checkbox for mobile toggle */
.header_container .menu-btn {
	display: none;
}

.header_container .menu-btn:checked ~ .menu {
	max-height: 500px; /* cukup untuk submenu */
	padding-bottom: 20px;
}

.header_container .menu-btn:checked ~ .menu-icon .navicon {
	background: transparent;
}

.header_container .menu-btn:checked ~ .menu-icon .navicon:before {
	transform: rotate(-45deg);
	top: 0;
}

.header_container .menu-btn:checked ~ .menu-icon .navicon:after {
	transform: rotate(45deg);
	top: 0;
}

.menu li.current-menu-item > a,
.menu li.current-menu-parent > a,
.menu li.current-menu-ancestor > a {
	color: var(--var-color-a);
	background-color: none; /* lebih gelap dari hover */
	font-weight: 600;
	border-radius: 4px;
}
.menu li.menuactive > a {
    font-weight: 700;
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
	.header_container .menu {
		flex-direction: column;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		background-color: white;
	}

	.header_container .menu li a {
		border-right: none;
		border-bottom: 1px solid #f4f4f4;
	}

	.header_container .menu li:last-child a {
		border-bottom: none;
	}

	.header_container .menu-icon {
		display: block;
	}

	/* Submenu toggle di mobile */
	.menu li.has-children > .sub-menu {
		display: none;           /* default hidden */
		max-height: 0;           /* animasi max-height */
		overflow: hidden;
		padding-left: 15px;
		transition: max-height 0.3s ease, display 0.3s ease;
	}

	.menu li.has-children.menuactive > .sub-menu {
		display: flex;
		flex-flow: column;
		max-height: 500px;       /* sesuaikan jumlah submenu */
	}

	/* Toggle arrow */
	.menu li.has-children > a > .submenu-toggle {
		display: inline-block;
		float: right;
		transform: rotate(0deg);
		transition: transform 0.3s ease;
	}

	.menu li.has-children.menuactive > a > .submenu-toggle {
		transform: rotate(180deg);
	}
}


/* Desktop submenu hover */
@media (min-width: 769px) {
	.header_container .menu {
		display: flex;
	}
	.menu li.has-children {
		position: relative; /* penting! agar submenu muncul di bawah item induk */
	}

	.menu li.has-children > .sub-menu {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		padding-left: 0;
		min-width: 200px;
		background: rgba(255,255,255,0.95);
		box-shadow: 0 2px 8px rgba(0,0,0,0.1);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease;
		z-index: 1000;
	}

	.menu li.has-children:hover > .sub-menu {
		opacity: 1;
		visibility: visible;
	}
	.menu li.has-children > a > .submenu-toggle {
		display: inline-block;
		opacity: 0.6;
		font-size: 0.75em;
		margin-left: 6px;
		transition: transform 0.3s ease;
	}
	.menu li.has-children:hover > a > .submenu-toggle {
		transform: rotate(180deg);
	}
}

/* Button style */
.menu li.btn-default a.btn {
	background-color: #0073e6;
	color: #fff !important;
	padding: 10px 20px;
	border-radius: 4px;
	margin-left: 10px;
	transition: background 0.3s ease;
}

.menu li.btn-default a.btn:hover {
	background-color: #005bb5;
}
/*sect-1*/
.images__hero_box{
	width: 100%;
}
.images__hero_box img{
	width: 100%;
}
.ta-center{
	text-align: center!important;
}
.ttl-primary .style-ttl-1{
	font-weight: 700;
	color: #000;
}
.ttl-primary .style-ttl-2,
.ttl-secondary .style-ttl-2{
	font-weight: 700;
	color: #fff;
}
.ttl_bg{    
	background-color: var(--var-color-b);
}
#back-to-top {
	display: none;
	position: fixed;
	bottom: 30px;
	left: 10px;
	background: var(--var-color-a);
	opacity: .3;
	color: #fff;
	padding: 10px 14px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	transition: opacity 0.3s ease;
	z-index: 9999;
}
#back-to-top:hover {
	opacity: 1;
}
/*general*/
#plane_area {
	position: relative;
	overflow: hidden;
}
.plane {
	position: absolute;
	z-index: 9;
	width: 100px;
	transform: translate(-50%, -50%) rotate(0deg);
	transition: opacity 0.2s linear;
}
.sav-ttl{
	width: 100%;
	min-height: 100px;
	background-position: bottom;
	background-size: cover;
	background-repeat: no-repeat;
}
.sav-ttl .ttl-secondary{
	padding: 5px 0;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}
.ttl-secondary h1, .ttl-secondary h3, .ttl-secondary h5{
	color: #fff;
	max-width: 1100px;
}

.grid-card-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	justify-content: center;
	align-content: start;
	align-items: stretch;
}
#section-two{
	height: auto;
	display: flex;
	align-items: center;
}

.grid-card {
	max-width: 1200px;
	margin: 0 auto;
}

.grid-card-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 40px;
	padding-bottom: 2rem!important;
	background: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-sizing: border-box;
	height: 100%;
	grid-row-gap: 1rem;
}

.grid-card-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.grid-card-item img {
	width: 100%;
	max-height: 250px;
	object-fit: contain;
	object-position: center;
	margin-bottom: 15px;
}

#section-three{
	height: auto;
	display: flex;
	align-items: center;
}
#section-four{
	height: auto;
	display: flex;
	align-items: center;
}
@media(min-width: 768px){
	#section-four{
		height: 30vh;
		min-height: 300px;
		max-height: 800px;
	}
}
.banner-bottom {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center; /* or right, if you prefer */
	background-attachment: scroll; /* safer for mobile, use fixed for desktop if needed */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative; /* Required for ::after overlay */
	overflow: hidden;
}

/* Overlay effect */
.banner-bottom::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(
		to right,
		rgba(34, 100, 210, 0.7),
		rgba(251, 223, 2, 0.1)
	);
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* Ensure content appears above overlay */
.banner-bottom > * {
	position: relative;
	z-index: 2;
}
.btn-default .btn {
	display: inline-block;
	padding: 12px 30px;
	background: var(--color-sekunder);
	color: #fff;
	text-decoration: none;
	border-radius: 2rem;
	font-weight: bold;
	transition: background 0.3s;
}

.btn-default .btn:hover {
	background: var(--var-color-b);
	color: #fff;
}

.outer {
	width: 1px;
	height: 100%;
	margin: auto;
	position: relative;
	overflow: hidden;
}
.inner {
	position: absolute;
	width:100%;
	height: 100%;
	background: grey;
	top: 30%;
	box-shadow: 0px 0px 30px 20px grey;
}

.grow-slider {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 40px;
}

.grow-slider-a,
.grow-slider-b {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}
.grow-slider-a .ttl-primary,
.grow-slider-b .ttl-primary{
	min-height: 6rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.grow-slider-inner {
	flex: 0 0 2px;
	align-self: stretch;
}

.grow-wrapper {
	display: flex;
	gap: 30px;
	flex: 1;
	align-items: stretch;
}


.grow-content {
	flex: 1;
	display: flex;
}
.grow-slider-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	width: 100%;
	background: var(--var-color-a);
	padding: 30px 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	border-radius: 5rem;
}
.grow-slider-item h1{
	color: var(--color-sekunder);
	font-weight: 700;
	font-size: 3rem;
	margin: 0;
	padding: 10px 0;
}
.grow-slider-item p{
	color: white;
	margin: 0;
	padding: 10px 0;
}
@media(max-width: 991px){
	.grow-slider-item h1{
		font-size: 2rem;
	}
}
@media(max-width: 768px){
	.grow-slider {
		flex-direction: column;
		gap: 20px;
	}
	.grow-slider-item {
		border-radius: 40px;
	}
	.grow-slider-item h1{
		font-size: 2.2rem;
	}
	.grow-slider-inner {
		display: none;
	}
	.grow-wrapper {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.box-radius{
		justify-content: center!important;
	}
	.about-us{
		flex-direction: column-reverse;
	}
}
.box-desc p{
	text-align: justify;
}
.box-radius{
	display: flex;
	position: relative;
	justify-content: right;
	align-items: center;
}
.circle-bg{
	align-items: center;
	width: 300px;
	height: 300px;
	background: linear-gradient(
		312deg, #ffa900, #fbdf02);
	border-radius: 100%;
	position: absolute;
}
.circle-img{
	max-width: 380px;
}
.floating {  
	animation-name: floating;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	margin-right: 0;
}
@keyframes floating {
	from { transform: translate(0,  0px); }
	65%  { transform: translate(0, 15px); }
	to   { transform: translate(0, -0px); }    
}
/* ===== Section: Mengapa Memilih Travis ===== */
.why-choose {
	position: relative;
}

.why-choose .box-radius {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}



.why-choose .circle-img {
	position: relative;
	z-index: 2;
}

.why-choose .floating {
	animation: floating 3s ease-in-out infinite;
	max-width: 100%;
	height: auto;
}


/* ===== Right Side (Description) ===== */
.why-choose .box-desc {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.why-choose ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose ul li {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
    /*
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    */
}

.why-choose ul li img {
	width: 40px;
	height: 40px;
	margin-right: 15px;
	flex-shrink: 0;
}

.why-choose ul li p {
	margin: 0;
	font-size: 1.5rem;
	color: #333;
}
.why-choose ul li p span{
	color: var(--var-color-a);
	font-weight: 600;
}
.sev-article{
	padding: 5rem;
	background: linear-gradient(133deg, rgb(255 193 7), rgb(251 223 2), #ffc107);
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
	.why-choose {
		flex-direction: column;
	}

	.why-choose .circle-bg {
		width: 250px;
		height: 250px;
	}

	.why-choose .box-desc {
		margin-top: 30px;
	}

	.why-choose ul li {
		justify-content: left;
		text-align: center;
	}

	.why-choose ul li img {
		margin: 0 10px 0 0;
	}
	.sev-article{
		padding: 1rem;
	}
}

.two-btn-banner{
	display: flex;
	justify-content: center;
	column-gap: 2rem;
	grid-row-gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}
/* ================
Platform
================ */
.sect-splatform-top{
	background: linear-gradient(133deg, rgb(255 193 7), rgb(251 223 2), #ffc107);
	padding: 2.5rem 0;
	overflow: hidden;
}
.banners-on-top{
	column-gap: 2rem;
	align-items: center;
	justify-content: space-between;
}
.banners-on-testi{
	flex-wrap: wrap;
	flex-direction: column-reverse;
	grid-row-gap: 1.5rem;
	align-items: center;
	justify-content: center;
}
.banners-on-testi .hero-text p{
	text-align: center!important;
}
.hero-text{
	max-width: 60%;
}
.hero-text h2 span{
	color: var(--var-color-a);
}
.hero-text p{
	text-align: justify;
}
.hero-text h4,
.hero-text h2{
	margin-bottom: 1.5rem;
}
.hero-top-images img{
	max-width: 100%;
}
.bloghero-text{
	width: 100%;
}
.bloghero-text p{
	text-align: justify;
}
.blog-h4{
	font-weight: 600!important;
	color: #fff;
}
.bloghero-text h4,
.bloghero-text h2{
	margin-bottom: 1.5rem;
}
.bloghero-text h4 ul.post-categories,
.bloghero-text h4 ul.post-categories li,
.bloghero-text h4 ul.post-categories li a{
	text-decoration: none;
	list-style: none;
}
@media(max-width: 768px){
	.banners-on-top{
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.hero-text{
		max-width: 100%;
	}
}
.sect-splatform-two{
	padding: 1rem 0 4rem 0;
}
.s-icon{
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 4rem;
}
.s-icon img{
	max-height: 120px;
}
.s-text{
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 1rem;
	justify-content: center;
	align-items: center;
}
.s-text strong{
	color: var(--var-color-a);
}
.s-text h2, .s-text h4{
	font-weight: 600;
	text-align: center;
	max-width: 1100px;
}
.s-text p{
	text-align: center;
	font-size: 20px;
	max-width: 992px;
	margin: 0;
}
.s-text a{
	text-decoration: none;
	color: var(--var-color-a);
	font-weight: 500;
}
.one__{

}
.box_one__,
.box_two__{
	flex-wrap: nowrap;
	flex-direction: row;
	padding: 2.5rem;
	border-radius: 4rem;
	column-gap: 5rem;
}
.box_one__{
	background: linear-gradient(318deg, #ffebb0, #fff3ce);
}
.box_two__{
	background: white;
}
.box_one__img{
	max-width: 30%;
	display: flex;
	align-items: center;
	padding: 1rem;
}

.box_one__text{
	max-width: 70%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: baseline;
	grid-row-gap: 1.2rem;
}
.box_one__img img{
	max-width: 100%;
}
@media(max-width: 768px){
	.box_one__, .box_two__{
		flex-wrap: wrap;
		padding: 1rem;
	}
	.box_one__{
		flex-direction: column;
	}
	.box_two__{
		flex-direction: column-reverse;
	}
	.box_one__img, .box_one__text{
		max-width: 100%;
	}
}
.box_one__text ul{
	padding-left: 0;
}
.box_one__text h2{
	font-weight: 600;
	color: var(--var-color-a);
}
.box_one__text p{
	text-align: justify;
}
.list-style {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	list-style: none;
	margin-bottom: 10px;
}

.list-style img {
	max-width: 40px;
	flex-shrink: 0;
}

.list-style p {
	margin: 0;
	color: #000;
	line-height: 1.4;
}
.first__ttl{
	text-align: center;
	margin-bottom: 3.5rem;
	font-weight: 700;
}
.p-why-choose {
	padding: 60px 0;
	text-align: center;
}

.p-why-choose .section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 40px;
	color: #222;
}

.why-choose-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.grid-event-two {
	flex: 1 1 calc(33.333% - 30px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	align-items: center;
}
@media(max-width: 600px){
	.grid-event-two {
		flex: 1 1 calc(50% - 30px);
	}
}
@media(max-width: 480px){
	.grid-event-two {
		flex: 1 1 calc(100% - 30px);
	}
}
.grid-event-two img {
	max-width: 50px;
	flex-shrink: 0;
}

.grid-event-two h2 {
	font-size: 1.2rem;
	margin: 10px 0;
	color: #333;
}

.grid-event-two p {
	font-size: 1rem;
	color: #555;
	line-height: 1.5;
}
/* =======================
Studi Kasus
=======================*/
.sect-casestudy-top,
.sect-testimoni-top{
	background: linear-gradient(133deg, rgb(255 193 7), rgb(251 223 2), #ffc107);
	padding: 2.5rem 0;
	overflow: hidden;
	min-height: 420px;
	display: flex;
	align-items: center;
}
.opt-bg{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.case-study-wrapper {
	display: flex;
	justify-content: center;
}
.boxgrid-case-study {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	align-items: stretch;
	margin: 40px 0;
	width: 100%;
}
.grid-case-study {
	display: flex;
	flex-direction: column;
	flex: 1 1 280px;
	max-width: 300px;
	min-height: 350px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grid-case-study:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.grid-case-study img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 15px;
}
.tcasestudy_card_content {
	display: flex;
	flex-direction: column;
	flex-grow: 1; 
	justify-content: space-between;
	text-align: center;
}

.tcasestudy_card_content .btn-default{
	margin-bottom: 2rem;
}
.tcasestudy_card_content h4 {
	font-size: 1.25rem;
	margin-bottom: 10px;
	color: #333;
}

.tcasestudy_card_content p {
	font-size: 0.95rem;
	color: #666;
	margin-bottom: 15px;
}
.not__found_box_wrapper {
	text-align: center;
	margin: 50px 0;
}

.not__found_img img {
	max-width: 300px;
	margin: 0 auto 20px;
}

.not__found_ttl {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.not__found_text {
	font-size: 1rem;
	color: #666;
}
@media (max-width: 992px) {
	.grid-case-study {
		max-width: 45%; 
		flex: 1 1 45%;
	}
}

@media (max-width: 768px) {
	.grid-case-study {
		max-width: 90%;
		flex: 1 1 100%;
	}
}
.about-info{
	background: linear-gradient(133deg, rgb(255 193 7), rgb(251 223 2), #ffc107);
	padding: 2.5rem 0;
}
.about-ex{
	padding: 2.5rem 0;
}
.about-ex p strong,
.about-ex h4 strong{
	color: var(--var-color-a);
}
/*Blog
/**
 * Blog
 */
.section-blog-top,
.section-blogSingle-top{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.section-blog-top .box-overlay,
.section-blogSingle-top .box-overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.section-blog-top .box-overlay{
	background: linear-gradient(
		to right,
		rgba(34, 100, 210, 0.7),
		rgba(251, 223, 2, 0.1)
	);
}
.section-blogSingle-top .box-overlay{
	background: var(--var-color-a)
}
.section-blog-top .container,
.section-blogSingle-top .container{
	position: relative;
	z-index: 1;
}
.blog-banners{
	padding: 6rem 0 8rem 0;
}
/* --- RECENT BLOG SECTION --- */
#Recent-Blog {
	position: relative;
	width: 100%;
	margin-top: -5rem;
}

.recent-blog-one {
	display: flex;
	align-items: stretch; /* kiri & kanan sama tinggi */
	width: 100%;
	max-width: 992px;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.rtc-left {
	flex: 1 1 50%;
	display: flex;
	overflow: hidden;
}

.rtc-left img {
	width: 100%;          /* lebar penuh */
	height: 100%;         /* tinggi penuh parent */
	object-fit: cover;    /* crop agar menutupi area */
	object-position: center;
	display: block;       /* hilangkan spasi bawah */
}
.rtc-left img {
	transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.recent-blog-one:hover .rtc-left img {
	transform: scale(1.05);
	filter: brightness(1.1);
}

/* === KANAN (KONTEN) === */
.rtc-right {
	flex: 1 1 50%;
	background: linear-gradient(121deg, #f7f9f6 0%, #f0f6f6 46%, #e8f3f5 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 2rem;
}
.rtc-right-box {
	text-align: center;
}

/* Kategori */
.rtc-right-box .post-categories {
	margin-bottom: 1rem;
}
.rtc-right-box .post-categories,
.postcard-content .post-categories{
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
}
.rtc-right-box .post-categories a,
.postcard-content .post-categories a{
	text-decoration: none;
	padding: 5px 20px;
	border-radius: 20px;
	background-color: #00c6fb4f;
	color: #144354;
	display: inline-block;
}
.catblog{
	text-align: center!important;
}
.catblog h4{
	text-decoration: none;
	padding: 5px 20px;
	border-radius: 20px;
	background-color: #a6e7f8;
	color: #144354;
	display: inline-block;
}
.bloghero-text h4 .post-categories li a{
	text-decoration: none;
	padding: 5px 20px;
	border-radius: 20px;
	background-color: var(--color-sekunder);
	color: #fff;
	display: inline-block;
}
.bloghero-text h1, .bloghero-text p{
	color: #fff;
}
/* Judul & Teks */
.rtc-right-box h4{
	margin-bottom: 1rem;
}
.rtc-right-box h4, .postcard-title a {
	font-size: 1.8rem;
	color: #144354;
	text-decoration: none;
}
.rtc-right-box p.date{
	margin-bottom: 1.5rem;	
}
.rtc-right-box p.date,
.postcard-content p.date {
	font-size: 1rem;
	color: #666;
}

.rtc-right-box .excerpt {
	color: #333;
	margin-bottom: 2rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.recent-blog-one {
		flex-direction: column;
	}

	.rtc-left, .rtc-right {
		flex: 1 1 100%;
	}

	.rtc-right {
		padding: 2rem 1.5rem;
	}

	.rtc-right-box h4 {
		font-size: 1.2rem;
	}
}
#category-cards {
	padding: 4rem 0;
}

.category-card-wrapper {
	display: flex;
	gap: 3.1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.category-card {
	width: 350px;
	overflow: hidden;
	box-shadow: 0 6px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	position: relative;
}

.category-card:hover {
	box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.category-card a {
	color: inherit;
	text-decoration: none;
	display: block;
}

.category-card-image {
	position: relative;
	width: 100%;
	min-height: 250px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	transition: transform 0.5s ease;
}

/* Zoom hanya background image */
.category-card:hover .category-card-image {
	transform: scale(1.05);
}

/* Overlay di atas gambar */
.category-card-image::after {
	content: "";
	position: absolute;
	inset: 0; /* overlay gelap */
	pointer-events: none;
	background: rgba(34,100,210,.8);
	/* Transisi super smooth */
	transition: background 0.45s cubic-bezier(0.4, 0.0, 0.2, 1);
	will-change: background;
}
/* Overlay saat hover */
.category-card-image:hover::after {
	background: rgba(34,100,210,0.4);
}

/* Konten di atas overlay */
.category-card-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	padding: 1rem;
	z-index: 1;
	pointer-events: none;
	grid-row-gap: 1rem;
}
.category-card-content img{
	max-width: 80px;
}
/* Tombol tetap bisa di klik */
.category-card-content .btn-card {
	pointer-events: auto;
	margin-top: 0.5rem;
	padding: 0.5rem 1rem;
	background-color: #00c6fb;
	border-radius: 20px;
	color: #fff;
	text-decoration: none;
	transition: background 0.3s ease;
}

.category-card-content .btn-card:hover {
	background: rgba(34,100,210,.1);
}
#recent-posts{
	margin-bottom: 2rem;
}
#recent-posts-container,
#related-posts-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	column-gap: 5%;
	grid-row-gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.postcard {
	width: 45%;
	display: flex;
	flex-direction: column;
	background: #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	overflow: hidden;
	transition: transform 0.2s;
}
@media(max-width: 600px){
	.postcard {
		width: 100%;
	}
}
.postcard-content {
	flex-grow: 1;
	padding: 25px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-row-gap: 1rem;
}
.postcard-content p.date{
	margin: 0;
}
.postcard:hover { transform: translateY(-3px); }

.postcard-thumb img {
	width: 100%;
	height: auto;
	display: block;
}

#recent-posts-pagination,
#related-pagination{
	margin-top: 20px;
	text-align: center;
	justify-content: center;
}

#recent-posts-pagination .page-num,
#recent-posts-pagination .page-btn,
#related-pagination .page-num,
#related-pagination .page-btn {
	display: inline-block;
	margin: 0 4px;
	padding: 6px 12px;
	cursor: pointer;
	transition: background 0.2s;
}

#recent-posts-pagination .page-num:hover,
#recent-posts-pagination .page-btn:hover,
#related-pagination .page-num:hover,
#related-pagination .page-btn:hover {
	color: var(--var-color-a);
	opacity: .8;
}

#recent-posts-pagination .active,
#related-pagination .active {
	font-weight: bold;
	color: var(--var-color-a);
}

#recent-posts-pagination .disabled,
#related-pagination .disabled {
	opacity: 0;
	cursor: not-allowed;
}
/*post*/
/* === Layout utama === */
.layout {
	flex: 1;
	display: flex;
	margin: auto;
	padding: 20px;
	gap: 20px;
}

.sideSticky {
	flex: 1;
	background: none;
	padding: 0;
	border-radius: 5px;
	height: fit-content;
	position: sticky;
	top: 20px;
}

/* Konten tengah */
.content-sticky {
	flex: 2;
	padding: 15px;
	border-radius: 5px;
}
.content-sticky ul.uldefault-dummy{
	list-style: none;
	margin: 0;
	padding: 0;
}
.uldefault-dummy li{
	margin-bottom: 1.5rem;
}
.uldefault-dummy li h5{
	font-weight: 600;
	color: var(--var-color-a);
}
#Post-display{
	position: relative;
	width: 100%;
}
.layout2 {
	flex: 1;
	display: flex;
	margin: auto;
	padding: 0 20px;
	gap: 20px;
	margin-top: -5rem;
}
.sideSticky2 {
	flex: 1;
	background: #f0f0f0;
	height: fit-content;
}
.content-sticky2 {
	flex: 2;
}
/* === Responsif untuk mobile === */
@media (max-width: 768px) {
	.layout {
		flex-direction: column;
		position: relative;
	}
	.layout2{
		display: block;
	}
	.sideSticky {
		position: static; /* matikan sticky di mobile */
		top: auto;
	}
}
textarea{
	max-width: 100%;
}
.sideRight-a{
	display: flex;
	flex-flow: column;
	align-items: center;
}
.sideRight-a img{
	max-width: 80px;
}
.sideRight-a p{
	text-align: center;
}
.sideRight-a p strong{
	color: var(--var-color-a);
}
.sideRight-a .btn-default a{
	font-size: 14px;
}
.sideRight-b .related-posts{
	margin-top: 2rem;
}
.sideRight-b .related-posts h5{
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: center;
}
.sideRight-b .related-posts ul{
	list-style: disc;
	color: var(--var-color-a);
}
.sideRight-b .related-posts ul li a{
	text-decoration: none;
	color: var(--var-color-a);
}
.sideRight-b .related-posts ul li{
	font-weight: 400;
	transition: font-weight 0.2s ease-in-out;
}
.sideRight-b .related-posts ul li:hover{
	font-weight: 600;
}
.Stickyleft-two{
	display: none;
}
@media(max-width: 768px){
	.Stickyleft{
		display: none;
	}
	.Stickyleft-two{
		display: block;
		padding: 2rem 0;
	}
	.Stickyleft-two .layout-social-share ul{
		display: flex;
		column-gap: 10px;
		align-items: center;
	}
}
.Stickyleft h4{
	text-align: center;
	font-weight: 700;
}
.Stickyleft p{
	text-align: center;
}

/* ====== Layout dasar ====== */
.layout-social-share {
	text-align: center;
	margin-top: 25px;
}

.layout-social-share ul {
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}
@media(max-width: 768px){
	.layout-social-share ul {
		flex-flow: row;
	}
}
/* ====== Gaya ikon ====== */
.layout-social-share ul li a i {
	display: inline-block;
	font-size: 30px;
	color: #555;
	transition: transform 0.3s cubic-bezier(.28,.84,.42,1), color 0.3s ease, box-shadow 0.3s ease;
}

/* Efek umum hover (bounce + glow) */
.layout-social-share ul li a:hover i {
	transform: scale(1.3) translateY(-5px);
}

/* ====== Warna spesifik per platform ====== */
.bi-linkedin { color: #0077b5; }
.bi-facebook { color: #1877f2; }
.bi-whatsapp { color: #25d366; }
.bi-envelope { color: #ff5722; }

/* 
.bi-twitter-x::before {
  content: "";
  display: inline-block;
  width: 30px;
  aspect-ratio: 1 / 1;
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyBmaWxsPSIjMWRhMWYyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTguNzM1IDMuNzQ1aC0yLjM0NWwtNC4wNTUgNS4xODdsLTQuMTg3LTUuMTg3aC00LjQzM2w2LjM5OSA3LjgwNy02LjM5OSA4LjQ0Nmg0LjI5bDQuMTg3LTUuMTg3IDQuMDU1IDUuMTg3aDIuMzQ1bC02LjQ5Ny04LjQ0NCA2LjQ5Ny03LjgwN3oiLz48L3N2Zz4=') center/contain no-repeat;
  vertical-align: middle;
}
*/
.bi-twitter-x:before{
	content:'';
	background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9InN2ZzUiIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCgkgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI1MDBweCIgaGVpZ2h0PSI1MDBweCIKCSB2aWV3Qm94PSIwIDAgNTAwIDUwMCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNTAwIDUwMCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPGVsbGlwc2Ugc3Ryb2tlPSIjRkZGRkZGIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIGN4PSIyNTAiIGN5PSIyNTAiIHJ4PSIyNDkuNzM1IiByeT0iMjUwLjIzNSIvPgoJPGcgaWQ9ImxheWVyMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNTIuMzkwMDg4LC0yNS4wNTg1OTcpIj4KCQk8cGF0aCBpZD0icGF0aDEwMDkiIGZpbGw9IiNGRkZGRkYiIGQ9Ik00My43NzMsMTMwLjA4bDExOS4zNywxNTkuOTI2TDQzLjAyLDQyMC4wMzNoMjcuMDM3bDEwNS4xNy0xMTMuODQ0bDg0Ljk3MiwxMTMuODQ0aDkxLjk5OQoJCQlMMjI2LjExMSwyNTEuMTE0TDMzNy45MjEsMTMwLjA4aC0yNy4wMzdsLTk2Ljg1MywxMDQuODQ1TDEzNS43NzQsMTMwLjA4SDQzLjc3M3ogTTgzLjUzMiwxNTAuMDMzaDQyLjI2NUwzMTIuNDM0LDQwMC4wOEgyNzAuMTcKCQkJTDgzLjUzMiwxNTAuMDMzeiIvPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=');
	background-size: cover;
	width: 30px;
	aspect-ratio: 1 / 1;
}
/* Warna hover spesifik */
.layout-social-share ul li a:hover .bi-linkedin { color: #00a0dc; }
.layout-social-share ul li a:hover .bi-facebook { color: #1e90ff; }
.layout-social-share ul li a:hover .bi-whatsapp { color: #2ae26e; }
.layout-social-share ul li a:hover .bi-envelope { color: #ff7043; }
.layout-social-share ul li a:hover .bi-twitter-x::before {
	filter: brightness(1.5);
}
.box-newsletter{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	column-gap: 10px;
}
.box-newsletter input{
	line-height:30px;
	border-radius: 30px;
	padding: 6px 15px;
	outline: none;
	border: none;
	transition: 0.3s;
}
.box-newsletter input:focus{
	outline: none;
	border-color: var(--color-sekunder);
	box-shadow: 0 0 6px rgba(255, 166, 0, 0.6);
}
.box-newsletter .btn-default .btn{
	padding: 8px 15px;
}
@media(max-width: 768px){
	.box-newsletter .btn-default .btn{
		font-size: 12px!important;
	}
	.box-newsletter input{
		line-height:20px;
		padding: 5px 10px;
	}	
}
/*footer*/
.footer {
	background: var(--var-color-a);
}
.footer h5{
	color: var(--color-sekunder);
}
.footer-content p{
	color: white;
}
.box-footer-cp{
	background: none;
	padding: 1rem 0;
}
.footer-cp p {
	margin: 0;
	text-align: center;
	font-size: 8pt;
	padding: 4px 0;
}
.footer-cp hr{
	color: #fff;
}
.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.box-logo-bottom {
	display: flex;
	justify-content: flex-start; /* Pastikan logo tetap di kiri */
	align-items: center;
	margin-bottom: 1rem;
}

.box-logo-bottom .logo img {
	width: 100px;
	max-width: 180px; /* atau ukuran sesuai keinginan */
	height: auto;
}
@media(min-width: 768px){
	.box-logo-bottom .logo img {
		width: 150px;
	}
}
.social-media {
	color: #fff; /* Warna khas Instagram */
	font-size: 24px;
	margin: 0 10px;
	text-decoration: none;
	transition: transform 0.2s;
}
.social-media:hover {
	transform: scale(1.2);
	color: var(--var-color-b);
}
.contact-on-footer, .contact-on-footer li{
	text-decoration: none;
	list-style: none;
	color: white;
	margin: 0;
	padding: 0;
}
.teks-shadow {
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.white{
	color: white!important;
}
.hidden {
	display: none;
}
.sign-up-formbox-one{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;    
}
.form-column {
	box-sizing: border-box;
	padding: 10px;
	background: none;
	border: none;
}

.formbox-one, .formbox-two {
	flex: 1 1 calc(50% - 10px);
}

.formbox-three {
	flex: 1 1 100%; /* full width */
}
.formbox-two{
	background: #2264d214;
	display: flex;
	flex-flow: column;
	align-items: stretch;
	justify-content: center;
	padding: 5rem;
	border-radius: 3rem;
	row-gap: 2rem;
}
#sign-up-formbox .label-input input,
#sign-up-formbox .label-select select,
#sign-up-formbox .formbox-three textarea{
	width: 100%;
	background: linear-gradient(133deg, rgb(34 100 210 / 57%), rgb(34 100 210), #2264d2);
	border: none;
	padding: 10px;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#sign-up-formbox .label-input-other input{
	width: 100%;
	background: white;
	border: solid 1px #ccc;
	padding: 10px;
	color: black;
}
#sign-up-formbox .label-input input:focus,
#sign-up-formbox .label-input-other input:focus,
#sign-up-formbox .label-select select:focus,
#sign-up-formbox .formbox-three textarea:focus{
	outline: 2px solid var(--color-sekunder);
}
#sign-up-formbox .label-form{
	color: #003184;
	font-weight: 700;
}
#sign-up-formbox .human__verifikasi .label-input input{
	background: white;
	max-width: 100px;
	border: solid 1px var(--var-color-a);
	color: #000;
	text-shadow: none;
}
#sign-up-formbox .label-select select option{
	color: #000;
}
.tsignup__right{
	display: flex;
	flex-flow: column;
	grid-row-gap: 1.5rem;
}
.tsignup__right_content{
	display: flex;
	align-items: flex-start;
	column-gap: 1.5rem;
}
.tsignup__right h5{
	text-align: justify;
}
.formbox-two h4{
	font-weight: bold;
	color: #003184;
}
.tsignup__right h5 span{
	font-weight: bold;
}
.formbox-two p{
	font-weight: 500;
}
.formbox-two p span{
	font-weight: bold;
}
.tsignup__right_content img{
	max-width: 40px;
}
@media(max-width: 768px){
	.tsignup__right_content img{
		max-width: 30px;
	}
	.formbox-two{
		padding: 2rem 1rem;
	}
}
.human__verifikasi{
	display: flex;
	flex-wrap: wrap;
	max-width: 400px;
	align-items: center;
	column-gap: 10px;
}
.row-height-space{
	height: 80px;
	background: none;
	position: relative;
}
.blog-newsletter{
	padding: 4rem 0;
	margin: 0 auto;
	background: linear-gradient(133deg, rgb(255 193 7), rgb(251 223 2), #ffc107);
}
.container-blog-newsletter{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	grid-row-gap: 1.5rem;
}
.container-blog-newsletter .box-newsletter input{
	width: 100%;
	padding: 11px 20px;
}
.container-blog-newsletter .box-newsletter{
	max-width: 600px;
}
.container-blog-newsletter .box-newsletter .btn-default .btn{
	padding: 15px 20px;
}
.container-blog-newsletter h1{
	font-weight: bold;
	color: white;
}
.container-blog-newsletter p{
	font-weight: 500;
	color: white;
}

.news-resources-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	column-gap: 2.5rem;
}

/* CARD */
.news-resources-box {
	display: flex;
	flex-direction: column;
	background: #fff;
	overflow: hidden;
	height: 100%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);

	/* smooth hover */
	transition: transform .3s ease, box-shadow .3s ease;
}

/* Hover efek smooth & elegan */
.news-resources-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* IMAGE */
.news-resources-img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform .4s ease; /* efek smooth */
}

/* Image zoom on hover */
.news-resources-box:hover .news-resources-img img {
	transform: scale(1.06);
}

/* CONTENT */
.news-resources-item {
	padding: 20px 22px 2rem;
	display: flex;
	flex-direction: column;
	flex: 1;        /* penting agar card sama tinggi */
}

/* BUTTON stay at bottom */
.news-resources-item .btn-default {
	margin-top: auto;
}

.news-resources-item h4 {
	margin-top: 10px;
	margin-bottom: 15px;
	font-weight: 700;
}

.news-resources-item p {
	color: #666;
	line-height: 1.5;
}
.cat a{
	text-decoration: none;
	font-size: 1.2rem;
	color: var(--var-color-a);
}
.footer-kebijakan{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	column-gap: 2rem;	
}
.footer-kebijakan li a{
	text-decoration: none;
	color: #fff;
	font-size: 10pt;
	font-weight: 500;
	transition: all ease-in-out .3s;
}
.footer-kebijakan li a:hover{
	color: var(--var-color-b);
	font-weight: 600;
}.privacy-policy {
	position: relative;
	padding: 10px;
	color: #353535;
}

.privacy-policy::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.01);
	pointer-events: none;
	border-radius: 10px;
}
.privacy-policy h1{
	font-weight: 700;
	font-size: 1.5rem;
}
.privacy-policy h2{
	font-weight: 700;
	font-size: 1.2rem;
}
.privacy-policy p, .circle-li{
	font-weight: 600;
	font-size: .85rem;
}
.autonumber-1 {
	counter-reset: section;
}
.autonumber-1 .number_a::before {
	counter-increment: section;
	content: counter(section) ". ";
}
.alpha {
	list-style-type: lower-alpha;
}
.alpha .strong{
	font-weight: 700;
}
.pp-line{
	margin: 2rem 0;
}
.circle-li{
	font-weight: 500;
	list-style-type: disc;
}
.circle-ul{
	margin-bottom: 1rem;
}.pp-signForm{
	margin: 0;
}
.pp-ttl{
	font-weight: 700;
	font-size: 1rem;
}
.pp-bottom{
	text-align: justify;
	font-weight: 600;
	font-size: .75rem;
}
.cta-bottom{
	display: flex;
	justify-content: center;
	align-items: center;
}
.pp-tnc strong{
	font-size: .78rem;
}
