/*
	Theme Name: HUB ID
	Theme URI: https://hub.id
	Description: Custom WP Theme for HUB ID
	Version: 1.0.06.2026
	Author: @harmonicnoise
	Author URI: http://www.deusain.com
	Tags: Event
*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
:root {
	--green: #16b187;
	--red: #ff3500;
	--orange: #ff7200;
	--dark: #1c1c1c;
	--black: #000;
	--grey: #989898;
	--body-color: #ccc;
	--light: #f3f2ee;
	--white: #fff;
}
body {
	font-family: 'DM Sans', -apple-system,BlinkMacSystemFont,segoe ui,helvetica neue,sans-serif;
	font-weight: 400;
	line-height: 1.6;
	font-size: clamp(16px, 2vw, 18px);
	color: rgba(255,255,255, .7);
	width: 100%;
	position: relative;
	background:
        radial-gradient(
            circle at 20% 20%,
            rgba(0, 0, 0, 0.08),
            transparent 65%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(0, 0, 0, 0.05),
            transparent 40%
        ),
        linear-gradient(
            90deg,
            #000 0%,
            #191919 35%,
            #1c1c1c 50%,
            #191919 65%,
            #000 100%
        );

    background-attachment: fixed;
}

/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
a {
	color: var(--green);
	text-decoration:none;
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
}
a:hover {
	color: var(--orange);
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

strong {
	font-weight: 700;
}
h1, h2, h3 {color: var(--white); font-family: 'Anton'; line-height: 1.4; font-weight: 400;}
h1 {font-size: clamp(30px, 5vw, 50px);}
h2 {font-size: clamp(27px, 4vw, 40px);}
h3 {font-size: clamp(24px, 3vw, 30px);}
h4, h5, h6 {color: var(--white); font-weight: 400;}
h4 {font-size: clamp(18px, 2vw, 21px);}
h5 {font-size: clamp(15px, 1.5vw, 18px);}
h6 {font-size: clamp(12px, 1vw, 15px);}

.main-btn a {
    position: relative;
    display: inline-block;
    border-radius: 5px;
    padding: 15px 30px;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    height: auto;
    background: linear-gradient(120deg, #152721 0%, #16b187 40%, #73f2bc 50%, #16b187 60%, #152721 100%);
    background-size: 250% auto;
    animation: shine 2s ease-in-out infinite alternate;
    box-shadow: 0 10px 25px rgba(177, 148, 91, .35), inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: .2s ease;
}
.main-btn a i {
	color: var(--white);
	fill: var(--white);
}
.main-btn a:hover {
    transform: translateY(-2px);
    color: var(--white);
}

@keyframes shine {
    0%{
        background-position:0% center;
    }

    100%{
        background-position:100% center;
    }
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
	z-index: 9;
}

main {
	position: relative;
	z-index: 9;
}

/* header */
.header {
	width: 100%;
	margin: 0 auto;
    position: fixed;
	top: 20px;
	z-index: 99;
}
.header .container {
	width: 100%;
	max-width: 1540px;
	margin: 0 auto;
	padding: 0;
	height: 100px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.header .container .logo {
    padding: 0;
    width: 130px;
    position: relative;
    line-height: 0;
    top: 0;
}
.header .container .logo a {
	line-height: 0;
}
.header .container .logo img {
	width: 100%;
	height: auto;
}
.header .container .topright {
	position: relative;
}
.header .container .topright ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.header .container .topright ul li {
	margin: 0;
	padding: 0;
	display: inline-block;
	position: relative;
}
.header .container .topright ul li a {
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    line-height: 1;
    height: auto;
    background: linear-gradient(120deg, #152721 0%, #16b187 40%, #73f2bc 50%, #16b187 60%, #152721 100%);
    background-size: 250% auto;
    animation: shine 2s ease-in-out infinite alternate;
    box-shadow: 0 10px 25px rgba(177, 148, 91, .35), inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: .2s ease;
    border-radius: 5px;
    padding: 10px 20px;
}
.header .container .topright ul li a i {
	margin-right: 10px;
}
.header .container .topright ul li a:hover {
	background-color: var(--red);
	color: var(--white);
	transition: .2s ease-in-out;
}
.header .container .topright ul li .sub-menu {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 35px;
	width: 350px;
	backdrop-filter: blur(20px);
    box-shadow: rgba(0, 0, 0, 0.18) 0px 8px 32px 0px;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: rgba(143, 143, 143, 0.3) !important;
    border-image: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
	padding: 15px 20px;
	border-radius: 5px;
	right: 0;
}
.header .container .topright ul li .sub-menu li {
	margin: 5px 0;
	float: right;
	width: 100%;
	text-align: center;
}
.header .container .topright ul li .sub-menu li a {
	font-size: 14px;
	box-shadow: none;
	background: #f1f1f130;
	display: block;
	width: 100%;
	font-weight: 500;
}
.header .container .topright ul li .sub-menu li a:hover {
	background-color: var(--green);
}
.header .container .topright ul li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
}

.nav {
	z-index: 999;
	position: relative;
}
.nav ul {
	-webkit-font-smoothing:antialiased;
	padding: 0;
	margin: 0;
	list-style: none;
}
.nav ul li {
	display: inline-block;
	margin: 0;
	position: relative;
	padding: 0 25px;
}
.nav ul li.menu-item-has-children:hover a {
	color: var(--green);
}
.nav ul li a {
	display: block;
    font-size: 17px;
    font-weight: 600;
    padding: 0;
	color: var(--white);
	transition: .2s ease-in-out;
}
.nav ul li a:hover {
	color: var(--green);
	transition: .2s ease-in-out;
}
.nav ul li.current_page_item {
	position: relative;
}
.nav ul li.current_page_item a {
	color: var(--green);
}
.nav ul li.current_page_item a:hover {
	color: var(--green);
}
.nav ul li.current_page_item:hover a {
	color: var(--green);
}

.header.scrolled {
	position: fixed;
	width: 100%;
	top: 0;
	height: 80px;
    animation: smoothScroll 1s forwards;
    background: rgb(0 0 0 / 20%);
	backdrop-filter: blur(20px) saturate(120%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 0;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-90px);
	}
	100% {
		transform: translateY(0px);
	}
}
.header.scrolled .container {
	height: 80px;
}
.header.scrolled .container .logo {
	width: 130px;
}
.header.scrolled .container .logo img {
	display: block;
	-webkit-animation: smoothshow .4s;
}
.header.scrolled .container .nav {
	position: relative;
}
.header.scrolled .container .nav ul li a {
	line-height: 80px;
	border-bottom: 0;
}

.bg-glass {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgb(143 143 143 / 30%) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
    background: rgb(255 255 255 / 5%) !important;
}

.typewriter-loop .elementor-heading-title{
    display:inline-block;
    overflow:hidden;
    border-right:1px solid currentColor;
    animation: typing 5s steps(40,end) infinite;
}

@keyframes typing {
    0% {
        width: 0;
    }
    50% {
        width: 100%;
    }
    90% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

#typing-headline .elementor-heading-title {
    display: inline;
}
#typing-headline .elementor-heading-title::after{
    content: "|";
    animation: blink .8s infinite;
}

@keyframes blink{
    50%{
        opacity:0;
    }
}

@keyframes blink{
    50%{opacity:0;}
}

@keyframes blink{
    50%{
        opacity:0;
    }
}

.future-glow-section{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}
.future-glow{
    position: absolute;
    width: 1180px;
    height: 300px;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;

    background:
      radial-gradient(circle at center,
        var(--orange) 0%,
        var(--red) 100%
      );

    filter: blur(20px);

    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 0;
}
@keyframes pulseGlow{
    0%{
        transform: translateX(-50%) scale(1);
        opacity: .8;
    }
    50%{
        transform: translateX(-50%) scale(1.08);
        opacity: 1;
    }
    100%{
        transform: translateX(-50%) scale(1);
        opacity: .8;
    }
}

/* Mobile */
@media(max-width:768px){
    .future-content h1{
        font-size: 34px;
    }

    .future-glow{
        width: 400px;
        height: 150px;
        bottom: -120px;
    }
}

#testimony {
	margin: 0;
	padding: 25px;
	list-style: none;
	display: block;
	border-radius: 15px;
	border: 1px solid rgba(255,255,255, .1);
	position: relative;
	background-color: #ffffff0f;
}
#testimony:after {
	content: '';
	background-image: url(img/icon-quote.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 50px;
	height: 40px;
	position: absolute;
	top: 10px;
	right: 10px;
	opacity: .2;
}
#testimony .owl-wrapper-outer {
	overflow: hidden !important;
}
#testimony .owl-item {
    float: left;
}
#testimony .item {
    display: block !important;
    width: 100%;
    box-sizing: border-box;
}
#testimony .item .section {
	width: 100%;
	margin-top: 25px;
}
#testimony .item .section .thumb {
	float: left;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	margin-right: 15px;
	overflow: hidden;
	position: relative;
	top: -10px;
}
#testimony .item .section .thumb img {
	object-fit: cover;
	height: 60px;
}
#testimony .item .section h4 {
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	color: var(--green);
	text-transform: uppercase;
}
#testimony .item .section h5 {
	font-size: 12px;
	margin: 2px 0 0 0;
	font-weight: 400;
	font-style: italic;
}
#testimony .item p {
	font-size: 15px;
	margin: 0;
}

#testimony-2 {
	margin: 0;
	padding: 25px;
	list-style: none;
	display: block;
	border-radius: 15px;
	border: 1px solid rgba(255,255,255, .1);
	position: relative;
	background-color: #ffffff0f;
}
#testimony-2:after {
	content: '';
	background-image: url(img/icon-quote.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 50px;
	height: 40px;
	position: absolute;
	top: 10px;
	right: 10px;
	opacity: .2;
}
#testimony-2 .owl-wrapper-outer {
	overflow: hidden !important;
}
#testimony-2 .owl-item {
    float: left;
}
#testimony-2 .item {
    display: block !important;
    width: 100%;
    box-sizing: border-box;
}
#testimony-2 .item .section {
	width: 100%;
	margin-top: 25px;
}
#testimony-2 .item .section .thumb {
	float: left;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	margin-right: 15px;
	overflow: hidden;
	position: relative;
	top: -10px;
}
#testimony-2 .item .section .thumb img {
	object-fit: cover;
	height: 60px;
}
#testimony-2 .item .section h4 {
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	color: var(--green);
	text-transform: uppercase;
}
#testimony-2 .item .section h5 {
	font-size: 12px;
	margin: 2px 0 0 0;
	font-weight: 400;
	font-style: italic;
}
#testimony-2 .item p {
	font-size: 15px;
	margin: 0;
}

#testimony-3 {
	margin: 0;
	padding: 25px;
	list-style: none;
	display: block;
	border-radius: 15px;
	border: 1px solid rgba(255,255,255, .1);
	position: relative;
	background-color: #ffffff0f;
}
#testimony-3:after {
	content: '';
	background-image: url(img/icon-quote.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 50px;
	height: 40px;
	position: absolute;
	top: 10px;
	right: 10px;
	opacity: .2;
}
#testimony-3 .owl-wrapper-outer {
	overflow: hidden !important;
}
#testimony-3 .owl-item {
    float: left;
}
#testimony-3 .item {
    display: block !important;
    width: 100%;
    box-sizing: border-box;
}
#testimony-3 .item .section {
	width: 100%;
	margin-top: 25px;
}
#testimony-3 .item .section .thumb {
	float: left;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	margin-right: 15px;
	overflow: hidden;
	position: relative;
	top: -10px;
}
#testimony-3 .item .section .thumb img {
	object-fit: cover;
	height: 60px;
}
#testimony-3 .item .section h4 {
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	color: var(--green);
	text-transform: uppercase;
}
#testimony-3 .item .section h5 {
	font-size: 12px;
	margin: 2px 0 0 0;
	font-weight: 400;
	font-style: italic;
}
#testimony-3 .item p {
	font-size: 15px;
	margin: 0;
}

.owl-theme .owl-controls {
	position: relative !important;
	bottom: -20px;
}
.owl-theme .owl-controls .owl-page span {
	background-color: rgba(255,255,255, .3);
	width: 6px;
	height: 6px;
	cursor: pointer;
	margin: 0 5px;
}
.owl-theme .owl-controls .owl-page.active span {
	background-color: var(--white);
}

.logo-participants img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border: 0 !important;
    filter: grayscale(100%);
    transition: filter .3s ease;
    border-radius: 10px !important;
}
.logo-participants img:hover {
	border: 0 !important;
    filter: grayscale(0);
    transition: filter .3s ease;
}

.speaker-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.8);
    z-index:99999;
}

.speaker-modal-content{
    background: rgb(131 131 131 / 55%);
    backdrop-filter: blur(60px) saturate(500%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgb(143 143 143 / 30%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
    width:90%;
    max-width:700px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px;
    position:relative;
    overflow-y:auto;
    border-radius: 10px;
}
.speaker-modal-content h2 {
	font-family: 'DM Sans';
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
}
.speaker-modal-content h4 {
	margin: 5px 0 0 0;
	font-size: 16px;
	font-style: italic;
}
.speaker-modal-content h5 {
	margin: 5px 0 0 0;
	font-size: 14px;
	color: var(--green);
}
.speaker-modal-content #modal-content {
	font-size: 14px;
	margin-top: 20px;
}

.speaker-modal .close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:32px;
    cursor:pointer;
}

.elementor-widget-image-box .elementor-image-box-wrapper {display: flex; text-align: left;}
.elementor-widget-image-box .elementor-image-box-content {text-align: left !important; margin-left: 10px;}

ul#media {
	margin: 30px 0 0 0;
	padding: 0;
	list-style: none;
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
ul#media li {
	position: relative;
	padding-bottom: 0;
	overflow: hidden;
	border-radius: 15px;
}
ul#media li a {
	display: block;
}
ul#media li a:after {
	content: '';
	background-color: rgba(0,0,0, .2);
    transition: all .3s linear;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
ul#media li a:hover:after {
	content: '';
	background-color: rgba(0,0,0, .1);
    transition: all .3s linear;
}
ul#media li a .content {
	position: absolute;
	padding: 25px;
	z-index: 2;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
ul#media li .thumb {
    height: 250px;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--white);
    border-radius: 10px;
}
ul#media li .thumb a {
	display: block;
}
ul#media li .thumb a img {
	width: 100%;
    object-fit: cover;
    height: 250px;
    margin: 0;
}
ul#media li .content h4 {
	margin: 15px 0 0 0;
    line-height: 1.3;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}
ul#media li .content h5 {
	line-height: 1.4;
	font-size: 12px;
	margin: 0;
}
ul#media li .content .cta-btn {
	display: inline-block;
	padding: 8px 20px;
	font-size: 12px;
	font-weight: 700;
	margin-top: 20px;
	background-color: var(--green);
	border-radius: 5px;
	color: var(--white);
	position: absolute;
	bottom: 25px;
}
ul#media li .content .cta-btn:hover {
	background-color: var(--orange);
}

.biz-dev-accent img {
	position: absolute;
	top: -150px;
	width: 400px;
	right: 0;
	z-index: 2;
}
.biz-dev-accent-2 img {
	position: absolute;
	top: -65px;
	width: 200px;
	left: -50px;
	z-index: 2;
}

.bg-visi {
	--color-start: #16b1879c;
	--color-end: #000;
	background: radial-gradient(
		circle at top left,
		var(--color-start) 0%,
		var(--color-end) 60%
	);
	padding: 1px;
}
.bg-misi {
	--color-start: #ff7200ab;
	--color-end: #000;
	background: radial-gradient(
		circle at bottom right,
		var(--color-start) 0%,
		var(--color-end) 60%
	);
}

.bg-stats {
	backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgb(143 143 143 / 30%) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
    background: rgb(255 255 255 / 5%) !important;
}

.timeline {
	position: relative;
}
.timeline .twae-wrapper .twae-content {
	box-shadow: none;
	background: #000000a3 !important;
}
.timeline .twae-wrapper .twae-media {
	height: 180px;
	width: 100%;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 15px;
}
.timeline .twae-wrapper .twae-media img {
	object-fit: cover;
	width: 100%;
	height: 180px;
}
.timeline .twae-horizontal-timeline.twae-wrapper .twae-button-next {
	font-size: 24px;
	color: var(--white);
}
.timeline .twae-horizontal-timeline.twae-wrapper .twae-button-next:hover {
	color: var(--green);
}
.timeline .twae-horizontal-timeline.twae-wrapper .twae-button-prev {
	font-size: 24px;
	color: var(--white);
}
.timeline .twae-horizontal-timeline.twae-wrapper .twae-button-prev:hover {
	color: var(--green);
}

.gallery,
.gallery * {
	box-sizing: border-box !important;
}
.gallery-columns-3 {
	column-count: 3;
	gap: 20px;
}
.gallery-item {
	padding: 0 !important;
	margin: 0 0 20px 0 !important;
	line-height: 0;
	overflow: hidden;
	width: 100% !important;
	max-width: 100% !important;
}
.gallery-item img {
	width: 100% !important;
	height: auto;
	border: 0 !important;
    filter: grayscale(100%);
    transition: filter .3s ease;
    border-radius: 10px !important;
}
.gallery-item img:hover {
    filter: grayscale(0%);
}
.gallery br {
	display: none !important;
	height: 0 !important;
}

.gallery-columns-6 {
	column-count: 6;
	gap: 20px;
}

.gal-col {
    filter: grayscale(100%);
    transition: filter .3s ease;
}

.gal-col:hover {
    filter: grayscale(0%);
    transition: filter .3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#speakers {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
#speakers .item {
	position: relative;
}
#speakers .item .section {
	position: absolute;
	bottom: 0;
	z-index: 2;
	background-color: rgb(53 53 53 / 70%);
	border-bottom: 0;
	border-radius: 10px 10px 0 0;
	padding: 10px;
	width: 90%;
	left: 50%;
	transform: translateX(-50%);
}
#speakers .item .section h4 {
	margin: 0;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 18px;
	line-height: 1.2;
}
#speakers .item .section h5 {
	margin: 5px 0 0 0;
	font-weight: 400;
	font-size: 14px;
	font-style: italic;
}
#speakers .item .section h6 {
	margin: 5px 0 0 0;
	font-weight: 400;
	font-size: 12px;
	color: var(--green);
}
#speakers .item .section p {
	display: none;
}
#speakers .item .thumb {
	overflow: hidden;
	width: 100%;
	height: 350px;
	border-radius: 10px;
}
#speakers .item .thumb img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	transform: scale(1.0);
	transition: all .3s linear;
}
#speakers .item:hover .thumb img {
	transform: scale(1.03);
	transition: all .3s linear;
}

.roadmap-box {
	position: relative !important;
    padding: 20px; 
    border-radius: 35px !important;
	border: 1px solid transparent !important;
	background:
        linear-gradient(rgb(43 43 43 / 70%), rgb(41 41 41 / 70%)) padding-box,
		linear-gradient(90deg, rgba(255, 255, 255, .3), transparent) border-box;
    overflow: hidden !important;
}
.roadmap-box img {
	position: relative;
    border-radius: 34px !important;
    border: 2px solid transparent !important;
	background:
        linear-gradient(rgba(0,0,0, .7), rgba(0,0,0, .7)) padding-box,
        linear-gradient(-45deg, rgba(255,255,255, .9), #333, rgba(255,255,255, .9)) border-box;
    overflow: hidden !important;
}
.roadmap-box img:after {
	content: "";
	position: absolute;
	z-index: 1;
	background: linear-gradient(0deg, rgba(255,255,255, .7), transparent) border-box;
	bottom: 0;
	width: 100%;
}

.mpm-box {
	position: relative !important;
    padding: 20px; 
    border-radius: 35px !important;
	border: 2px solid transparent !important;
	background: #696766;
	background:
        linear-gradient(rgba(0,0,0, .27), rgba(0,0,0, .27)) padding-box,
        linear-gradient(0deg,rgba(105, 103, 102, 1) 0%, rgba(253, 114, 1, 1) 48%, rgba(56, 56, 56, 1) 100%) border-box;
    overflow: hidden !important;
}

.participant-logo {
	position: relative;
}
.participant-logo img {
    width: 100%;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.participant-logo img:hover {
    filter: none;
    transform: scale(1.03);
}

.footer {
	position: relative;
	z-index: 9 !important;
}
.footer-socmed {
	position: relative;
}
.footer-socmed .elementor-icon-list-items li a svg {
	width: 18px !important;
	height: 18px !important;
}
.footer ul.socmed {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer ul.socmed li {
	margin-bottom: 15px;
}
.footer ul.socmed li a {
	color: var(--white);
	display: block;
}
.footer ul.socmed li a i {
	width: 18px;
	font-size: 18px;
	margin-right: 10px;
	color: var(--white);
}
.footer ul.socmed li a:hover {
	color: var(--green);
}
.footer ul.socmed li a svg {
	width: 18px;
	height: 18px;
	fill: var(--white);
	color: var(--white);
	margin-right: 10px;
	position: relative;
	top: 2px;
}
.footer ul.socmed li a:hover svg {
	fill: var(--white);
	color: var(--white);
}
.copyright {
	width: 100%;
	overflow: hidden;
	padding: 0 20px;
	position: relative;
	z-index: 9;
}
.copyright .inner {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	padding: 20px 20px;
	line-height: 1.2;
	color: var(--white);
	position: relative;
}

#big-title {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding-top: 300px;
}
#big-title .container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	text-align: center;
}
#big-title .container h1 {
	color: var(--white);
    margin: 0;
    line-height: 1.2;
    display: block;
    padding: 0;
    position: relative;
}
#big-title img {
	width: 100%;
	height: auto;
}
#big-title.post {
	position: relative;
	padding-top: 200px;
}
#big-title.post .container {
	position: relative;
}
#big-title.post .container img {
	height: auto;
	width: 100%;
	border-radius: 10px;
}

#main-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
#main-wrapper .container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 80px 0;
	position: relative;
}
#main-wrapper .container.small {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 40px 0 80px 0;
	position: relative;
}
#main-wrapper .container.small .metadata {
	font-size: 16px;
	margin-bottom: 40px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	align-items: center;
	position: relative;
}
#main-wrapper .container.small .metadata .share {
	position: relative;
}
#main-wrapper .container.small .metadata .infoauthor {
	display: block;
	font-weight: 600;
}
#main-wrapper .container.small .metadata .infoauthor h6 {
	margin: 0;
	font-size: 12px;
	color: var(--grey);
}
#main-wrapper .container.small .metadata .infodate {
    display: block;
    font-weight: 600;
}
#main-wrapper .container.small .metadata .infodate h6 {
	margin: 0;
	font-size: 12px;
	color: var(--grey);
}
#main-wrapper .container.small .metadata .infocategory {
	display: block;
    font-weight: 600;
}
#main-wrapper .container.small .metadata .infocategory h6 {
	margin: 0;
	font-size: 12px;
	color: var(--grey);
}
#main-wrapper .container article h1 {
	margin: -25px 0 30px 0;
	line-height: 1.2;
}
#main-wrapper .container .body-content article.full {
	width: 100%;
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
	padding: 0;
	overflow: hidden;
	float: none;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
}
#main-wrapper .container .body-content article.full img {
	border-radius: 10px;
	margin: 0;
	width: 100% !important;
}
#main-wrapper .container .body-content article.full h1 {
	margin: 20px 0 30px 0;
	line-height: 1.4;
}
#main-wrapper .container .body-content article.full h2 {
	line-height: 1.4;
}
#main-wrapper .container .body-content article.full h3 {
	line-height: 1.4;
}
#main-wrapper .container .body-content article.full p.cat-tag a {
	font-size: 14px;
	margin: 3px 0;
	border: 1px solid var(--green);
	border-radius: 70px;
	padding: 2px 10px;
	display: inline-block;
	margin-left: 7px;
}
#main-wrapper .container .body-content article.full p.cat-tag a:hover {
	background-color: var(--green);
	color: var(--white);
}
#main-wrapper .container .body-content article.full p {
	position: relative;
}
#main-wrapper .container .body-content article.full ul li {
	line-height: 1.6;
}
#main-wrapper .container .body-content article.full ol li {
	line-height: 1.6;
}
#main-wrapper .container .body-content article.full .source {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#main-wrapper .container .body-content article.full .source span {
	display: inline-block;
}

#main-wrapper .container.blog-grid {
	margin: 0 auto;
	list-style: none;
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
#main-wrapper .container.blog-grid article {
	overflow: hidden;
	padding-bottom: 0;
	position: relative;
}
#main-wrapper .container.blog-grid article .post-category {
	font-weight: 700;
    line-height: 1;
    position: absolute;
    text-align: center;
    background-color: #ffffffdd;
    border-bottom: 0;
    padding: 7px 10px 5px 10px;
    display: block;
    top: 10px;
    z-index: 9;
    left: 10px;
    margin-top: 0;
    border-radius: 5px;
}
#main-wrapper .container.blog-grid article .thumb {
	width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    border-radius: 10px;
}
#main-wrapper .container.blog-grid article .thumb a {
	display: block;
}
#main-wrapper .container.blog-grid article .thumb a img {
	width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    transform: scale(1);
    transition: transform .5s;
}
#main-wrapper .container.blog-grid article .thumb a:hover img {
	transform: scale(1.1);
    transition: transform .5s;
}
#main-wrapper .container.blog-grid article .loop-content {
	position: relative;
}
#main-wrapper .container.blog-grid article .loop-content .metadata {
	position: relative;
}
#main-wrapper .container.blog-grid article .loop-content .metadata span {
	display: block;
	font-size: 13px;
	line-height: 1;
	color: var(--grey);
	margin-top: 15px;
}
#main-wrapper .container.blog-grid article .loop-content h2 {
	margin: 15px 0 0 0;
	line-height: 1.3;
	font-size: 21px;
	font-weight: 700;
}
#main-wrapper .container.blog-grid article .loop-content h2 a {
	color: var(--dark);
}
#main-wrapper .container.blog-grid article .loop-content h2 a:hover {
	color: var(--green);
}
#main-wrapper .container.blog-grid article .loop-content p {
	line-height: 1.4;
	margin-left:0;
	font-size: 15px;
	margin-bottom: 0;
}
#main-wrapper .container.blog-grid article .loop-content a.view-article {
	display: block;
	font-size: 12px;
	font-weight: 700;
	padding-top: 10px;
	text-transform: uppercase;
}
#main-wrapper .container.blog-grid article .loop-content a.view-article:hover {
	text-decoration: underline;
}

.pagination {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
}
.pagination span.page-numbers.current {
    background: var(--green);
    color: var(--white);
    padding: 7px 12px 8px 12px;
    border-radius: 4px;
}
.pagination a.page-numbers {
    padding: 7px 12px 8px 12px;
    color: var(--dark);
    border-radius: 4px;
}
.pagination a.page-numbers:hover {
    background: var(--green);
    color: var(--white);
    border-radius: 4px;
}

#related {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
#related .container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 0 80px 0;
	position: relative;
	overflow: hidden;
}
#related .container h3 {
	text-align: center;
	margin: 0 0 40px 0;
	font-size: 35px;
}
#related .container ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#related .container ul li {
	width: 31%;
}
#related .container ul li .the-thumb {
    height: 250px;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--white);
    border-radius: 10px;
}
#related .container ul li .the-thumb a img {
	width: 100%;
	height: 250px;
    object-fit: cover;
	margin: 0;
	transform: scale(1);
    transition: transform .5s;
}
#related .container ul li .the-thumb a:hover img {
	transform: scale(1.1);
    transition: transform .5s;
}
#related .container ul li .the-thumb .metadata {
	width: 70px;
    font-weight: 700;
    line-height: 1;
    float: left;
    position: absolute;
    text-align: center;
    background-color: #ffffff90;
    border-bottom: 0;
    padding: 10px 0;
    display: block;
    top: 10px;
    z-index: 9;
    left: 10px;
    margin-top: 0;
    border-radius: 7px;
    display: none;
}
#related .container ul li .the-thumb .metadata .day {
	display: block;
	font-size: 34px;
	color: var(--dark);
}
#related .container ul li .the-thumb .metadata .month {
	display: block;
	font-size: 13px;
	line-height: 1.5;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--dark);
}
#related .container ul li .the-thumb .metadata .year {
	display: block;
	font-size: 16px;
	color: var(--dark);
}
#related .container ul li a h4 {
	color: var(--white);
    margin: 15px 0 0 0;
    line-height: 1.3;
    font-weight: 700;
}
#related .container ul li a h4:hover {
	color: var(--green);
}
#related .container ul li p {
	font-size: 15px;
    line-height: 1.4;
    margin: 15px 0 0 0;
    max-width: 100%;
    max-height: 100%;
    word-break: keep-all;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: var(--grey);
}
#related .container ul li p a {
	display: block;
	font-size: 12px;
	font-weight: 700;
	padding-top: 10px;
	text-transform: uppercase;
}
#related .container ul li p a:hover {
	text-decoration: underline;
}

/* --- elementor override --- */
.elementor-slideshow__header>svg {padding: 0 !important;}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

div.wpcf7 {position: relative;}
div.wpcf7 form {width: 100%;}
span.wpcf7-list-item {margin: 0; padding: 0;}
div.wpcf7 p {margin: 0; padding: 0; line-height: 1;}
div.wpcf7 label {display: block; overflow: hidden;}
div.wpcf7 .wpcf7-form input {
	width: 100%;
	outline: 0;
	border: 0;
	padding: 10px 20px;
	margin: 0;
	font-size: 16px;
	border-radius: 5px;
	color: var(--dark);
	background-color: var(--white);
	display: block;
}
div.wpcf7 .wpcf7-form input:hover,
div.wpcf7 .wpcf7-form input:focus {
	background-color: var(--light);
}
div.wpcf7 .wpcf7-form select,
div.wpcf7 .wpcf7-form textarea {
	width: 100%;
	float: left;
	outline: 0;
	font-size: 16px;
	padding: 10px 20px;
	margin: 0;
	color: var(--body-color);
	border: 0;
	background-color: var(--white);
	display: block;
	border-radius: 5px;
	height: 100px;
	box-shadow: 0 20px 20px rgb(0 0 0 / 8%);
}
div.wpcf7 .wpcf7-form select:focus,
div.wpcf7 .wpcf7-form select:hover,
div.wpcf7 .wpcf7-form textarea:focus,
div.wpcf7 .wpcf7-form textarea:hover {
	background-color: var(--light);
}
div.wpcf7 .wpcf7-form input[type="submit"] {
	width: 100%;
	outline: 0;
	border: 0;
	margin: 0 auto;
    position: relative;
    display: block;
    position: relative;
    border-radius: 5px;
    padding: 15px 40px;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    height: auto;
    background: linear-gradient(120deg, #152721 0%, #16b187 40%, #73f2bc 50%, #16b187 60%, #152721 100%);
    background-size: 250% auto;
    animation: shine 2s ease-in-out infinite alternate;
    box-shadow: 0 10px 25px rgba(177, 148, 91, .35), inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: .2s ease;
}
div.wpcf7 .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    color: var(--white);
}
.wpcf7 form .wpcf7-response-output {
    margin: 15px 0 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    width: 100% !important;
    float: left !important;
    font-size: 14px;
    line-height: 1.2;
    background-color: transparent !important;
}
div.wpcf7 img.ajax-loader {position: absolute;}
img.ajax-loader {width: auto;}
.wpcf7-spinner {position: absolute; top: 45%; left: 45%;}
.wpcf7-not-valid-tip {font-size: 12px;}


#megamenu {
	position: relative;
	font-size: 16px;
	line-height: 40px;
	text-transform: uppercase;
	z-index: 9999;
	float: right;
	cursor: pointer;
	top: 0;
	right: 0;
	display: none;
}
#megamenu i {
	font-size: 24px;
}
#nav-toggle {
	position: absolute;
}
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
	cursor: pointer;
	border-radius: 1px;
	height: 2px;
	width: 25px;
	background:var(--white);
	position: absolute;
	display: block;
	content: '';
	right: 0;
}
#nav-toggle span:before {
	top: -8px;
	background:var(--white);
	width: 30px;
}
#nav-toggle span:after {
	bottom: -8px;
	background:var(--white);
	width: 30px;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
	transition: all 500ms ease-in-out;
}
#nav-toggle.active span {
	background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
	top: 0;
}
#nav-toggle.active span:before {
	transform: rotate(45deg);
}
#nav-toggle.active span:after {
	transform: rotate(-45deg);
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
	background: var(--green);
}
.menu-dropdown {
	position: fixed;
	width: 100%;
	height: 100vh;
	border: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	padding: 30px;
}
.menu-dropdown .nav {
	position: relative;
	padding: 0;
	margin: 0;
	top: 50%;
	transform: translateY(-50%);
}
.menu-dropdown .nav ul {
	-webkit-font-smoothing:antialiased;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
}
.menu-dropdown .nav ul li {
	position: relative;
	margin: 0;
	padding: 0;
	display: block;
}
.menu-dropdown .nav ul li a {
	display: block;
	font-size: 24px;
	font-weight: 500;
	padding: 10px 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	border: 0;
	color: var(--white);
	line-height: normal;
}
.menu-dropdown .nav ul li a:hover {
	color: var(--green);
	border: 0;
}
.menu-dropdown .nav ul li.current_page_item a {
	color: var(--green);
}
.menu-dropdown .nav .widget_nav_menu {
	display: block;
}
.menu-dropdown .nav .widget_nav_menu ul {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
}
.menu-dropdown .nav .widget_nav_menu ul li a {
    font-weight: 500;
	font-size: 15px;
    color: var(--white);
    display: block;
    padding: 10px 0;
    background-color: var(--green);
    border-radius: 5px;
    text-align: center;
}
.menu-dropdown .nav .widget_nav_menu ul li a i {
	margin-right: 7px;
}
.menu-dropdown .nav .widget_nav_menu ul li.menu-item-has-children a {
	display: none;
}
.menu-dropdown .nav .widget_nav_menu ul li .sub-menu {
	display: block;
}
.menu-dropdown .nav .widget_nav_menu ul li .sub-menu li {
	margin: 15px 0;
}
.menu-dropdown .nav .widget_nav_menu ul li .sub-menu li a {
	display: block;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width:1600px) {
	.header .container {padding-left: 20px; padding-right: 20px;}
	.nav ul li {padding: 0 15px;}
}
@media only screen and (max-width:1180px) {
	.header .container,
	#big-title .container,
	#main-wrapper .container,
	#main-wrapper .container.small,
	.post-headline .container,
	#related .container,
	#cta .container,
	#foot .container {padding-left: 20px; padding-right: 20px;}
}
@media only screen and (max-width:1024px) {
	html {padding-top: 0 !important;}
	.header {display: block; z-index: 99; top: 0; overflow: visible;}
	.header .container {position: relative; background-color: transparent; height: 80px; overflow: hidden;}
	.header .container .logo {width: 110px; padding: 0; background: transparent;}
	.header.scrolled {transition: none; border-bottom: 0; animation: none;}
	.header.scrolled .container {height: 80px;}
	.header.scrolled .container .logo {width: 110px;}
	.header .container .topright {display: none;}

	.nav {display: none;}

	#megamenu {display: block;}
  	
  	.header .menu-dropdown {width: 100%; height: 100vh; padding: 30px; background-color: rgba(0,0,0, .9)}
  	.header .menu-dropdown .nav {display: block;}
}

@media only screen and (max-width:768px) {
	html {padding-top: 0 !important;}

	.logo-client .swiper-slide-image {
		padding: 10px;
	}

	.icon-eksplorasi {
		left: 170px;
		position: absolute;
		top: 150px !important;
	}
	.icon-eksplorasi img {
		width: 150px !important;
	}

	ul#media {display: block; margin: 0;}
	ul#media li {width: 100%; margin-bottom: 25px;}
	ul#media li .thumb {height: 220px;}
	ul#media li .thumb a img {height: 220px;}

	.featured-logo .elementor-inner-column {width: 50%;}
	.featured-logo {padding: 70px 10px !important;}

	.gallery-slide .swiper .swiper-slide figure {height: 300px;}
	.gallery-slide .swiper .swiper-slide figure img {height: 300px;}

	.gallery-columns-3 {column-count: 2;}

	#speakers {
		grid-template-columns: repeat(2, 1fr);
	}
	#speakers .item .section h4 {font-size: 14px;}
	#speakers .item .section h5 {font-size: 12px; line-height: 1.2;}
	#speakers .item .section h6 {font-size: 11px; line-height: 1.2;}
	#speakers .item .thumb {height: 220px;}
	#speakers .item .thumb img {height: 220px;}

	#big-title {padding-top: 120px;}
	#big-title.post {padding-top: 120px;}
	
	#main-wrapper {margin-top: 0;}
	#main-wrapper .container {padding: 50px 20px;}
	#main-wrapper .container .blog-title {display: block;}
	#main-wrapper .container .blog-title h1 {font-size: 36px; margin: 0 0 20px 0;}
	#main-wrapper .container.blog-grid {display: block;}
	#main-wrapper .container.blog-grid article {width: 100%; margin: 0 0 25px 0;}
	#main-wrapper .container.blog-grid article .thumb {height: 200px;}
	#main-wrapper .container.blog-grid article .thumb a img {height: 200px;}
	#main-wrapper .container.small .metadata {margin-bottom: 10px; font-size: 14px; gap: 30px;}
	#main-wrapper .container .share {width: 100%; float: none; margin-top: 30px; text-align: center;}
	#main-wrapper .container .body-content article.full {margin-top: 10px;}
	.pagination {margin-bottom: 50px;}

	#related .container {padding: 0 20px 60px 20px;}
	#related .container h3 {font-size: 30px; margin-bottom: 30px;}
	#related .container ul {display: block;}
	#related .container ul li {width: 100%; margin: 0 0 25px 0;}
	#related .container ul li .the-thumb {height: 200px;}
	#related .container ul li .the-thumb a img {height: 200px;}

	div.wpcf7 .col > div {width: 100%;}
	div.wpcf7 .wpcf7-form .col-2 p {margin-bottom: 0;}
	div.wpcf7 .wpcf7-form .col-2 p label {width: 100%; margin-bottom: 20px;}
	div.wpcf7 .col-2 > div {width: 100%;}
	div.wpcf7 .wpcf7-form input[type="submit"] {
		width: 100%;
		display: block;
	}

	#foot .container {padding: 20px 20px 30px 20px; display: block;}
	#foot .container > div {width: 100% !important; padding-right: 0; margin-top: 30px;}
	#foot .container > div:nth-child(2) {padding-left: 0;}
	#foot .container p img {margin-right: 0; margin-bottom: 0; width: 70px; height: auto;}
	#foot .container h3 {margin-top: 30px; margin-bottom: 10px;}
	#foot .container h2 {font-size: 22px;}
	#foot .container .copyright {margin-top: 20px;}
}
@media only screen and (max-width:480px) {
}
/*------------------------------------*\
    MISC
\*------------------------------------*/

::-webkit-input-placeholder { /* Edge */
	color: var(--dark);
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: var(--dark);
}
::placeholder {
	color: var(--dark);
}

::selection {
	background:#00a1e9;
	color:var(--white);
	text-shadow:none;
}
::-webkit-selection {
	background:#00a1e9;
	color:var(--white);
	text-shadow:none;
}
::-moz-selection {
	background:#00a1e9;
	color:var(--white);
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	max-width:100%;
	padding: 0;
	font-size: 14px;
	font-style: italic;
	text-align:center;
}
.wp-caption.alignnone {
	margin:0 0 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:100%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size: 14px;
	line-height: 1.3;
	margin:0;
	text-align: left;
}
p.wp-caption-text {
	font-size: 14px !important;
	font-style: italic;
	padding-bottom: 0 !important;
	margin-bottom: 0;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:var(--dark) !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid var(--grey);
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}

::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background-color: var(--light);
}
::-webkit-scrollbar-thumb {
	background-color: var(--grey);
	border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
	background-color: var(--green);;
}
