@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
	--theme-color: #bb0b0b;
	--title-color: #0a0a0a;
	--body-color: #878D97;
	--smoke-color: #EFF1F5;
	--secondary-color: #EEF2FB;
	--black-color: #000000;
	--white-color: #ffffff;
	--yellow-color: #fec624;
	--success-color: #28a745;
	--error-color: #dc3545;
	--border-color: #E0E0E0;
	--title-font: "Poppins", sans-serif;
	--icon-font: "Font Awesome 5 Free";
    --color-content-secondary-grad1: linear-gradient(120deg,rgba(209,10,10,0.9),rgba(0,0,0,0.9));
    --color-content-primary-grad1:linear-gradient(235deg,rgba(209,10,10,0.9),rgba(0,0,0,0.9));
    
    --color-content-secondary-grad:linear-gradient(120deg,rgba(9, 134, 113, 0.9),rgba(0, 89, 141, 0.9));
    --color-content-primary-grad:linear-gradient(120deg,rgba(9, 134, 113, 0.9),rgba(0, 89, 141, 0.9));
    /* 
    --color-content-primary-grad:linear-gradient(235deg,rgba(0,105,92,0.9),rgba(0,0,0,0.9)); 
    --color-content-secondary-grad: linear-gradient(120deg,rgba(0,105,92,0.9),rgba(0,0,0,0.9));
    */
    
    --color-content-secondary-grad2: linear-gradient(120deg,rgba(0,77,64,0.9),rgba(0,0,0,0.9));
    --color-content-primary-grad2:linear-gradient(235deg,rgba(0,77,64,0.9),rgba(0,0,0,0.9));

    --thm-primary: #d53f34;
    --thm-primary-rgb: 213, 63, 52;
    --thm-color-2: #e5ac1b;
    --thm-color-2-rgb: 229, 172, 27;
    --thm-color-3: #34a3d5;
    --thm-color-3-rgb: 52, 163, 213;
    --thm-color-4: #46b3a8;
    --thm-color-4-rgb: 70, 179, 168;
    --thm-color-5: #922ecb;
    --thm-color-5-rgb: 150, 64, 205;
    --thm-gray: #555555;
    --thm-black: #222222;
    --thm-base: #ffffff;
}

html, body {
    font-size: 15px;
    color: #454545;
    font-family: 'Poppins', sans-serif;
    vertical-align: baseline;
    line-height: 1.7;
    font-weight: 400;
}
body.nav-expanded .offwrap {
	left: 0%;
	transition: all 0.8s ease-out 0s;
    color: rgb(0,77,64);
}
body.nav-expanded .offwrap {
    left: 0%;
    transition: all 0.8s ease-out 0s;
}
body .search-modal {
    padding: 0 !important;
    background: rgba(0, 0, 0, 0.85);
}
body .search-modal .close {
    position: fixed;
    right: 50px;
    top: 50px;
    background: #ffffff;
    color: #0a0a0a;
    width: 55px;
    height: 55px;
    line-height: 58px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all .5s ease;
    opacity: unset;
    box-shadow: unset;
    border: none;
}
body .search-modal .close {
    color: #0a0a0a;
    line-height: 58px;
    text-align: center;
    cursor: pointer;
}
body .search-modal .modal-content {
    position: initial;
    border: 0;
    background: unset;
}
body .search-modal .search-block form {
    position: relative;
}
body .search-modal .search-block ::placeholder {
    color: #fff;
    opacity: 0.3;
}
body .search-modal .search-block form input {
    background: none;
    border: none;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    font-size: 35px;
    border-radius: 0;
}
body .search-modal .search-block form input:focus{
    outline: none;
    box-shadow: none;
}
body .search-modal .search-block form button {
    background: transparent;
    border: none;
    padding: 5px 20px;
    color: #ffffff;
    border-radius: 0;
    font-size: 2rem;
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    height: 100%;
}
body.sticky-header{
    padding-top:95px;
}
.nav-expanded {
    position: relative;
}
.offwrap { 
    width: 100%;
    left: 100%;
    transition: all 0.8s ease-out 0s;
    position: fixed;
    background: #fff;
    height: 100vh;
    top: 0;
    bottom: 0;
    opacity: .6;
    z-index: 9999;
}
/* GLOBAL */
a {
    color: #073360;
    transition: all 0.3s ease;
    text-decoration: none !important;
    outline: none !important;
}
a:focus, a:hover{
    color: #e68c06;
}
.text-right {
    text-align: right;
}
.btn-one {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    padding-right: 30px;
    background-color: var(--thm-primary);
    color: #ffffff;
    font-size: 1rem;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1;
}

.btn-one:before {
    position: absolute;
    left: 45%;
    bottom: 0px;
    right: 45%;
    height: 50%;
    border-radius: 8px;
    background: #191f2d;
    opacity: 0;
    content: "";
    z-index: -1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.btn-one:hover:before {
    opacity: 1;
    left: 0;
    height: 100%;
    right: 0;
    transition: all 400ms linear;
    transition-delay: 0.1s;
}

.btn-one .txt {
    position: relative;
    z-index: 1;
}

.btn-one .txt i.arrow1 {
    position: relative;
    top: 1px;
    display: inline-block;
    font-size: 18px;
    line-height: 0;
    padding-right: 10px;
    font-weight: 400;
    z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
    color: #ffffff;
    text-shadow: 0px 5px 3px rgba(12, 21, 41, 0.1);
}

.btn-one-style2{
    background-color: #004C3F;
}
.full-width-header {
    position: relative;
}
.full-width-header .rs-header.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.full-width-header .rs-header.style2 {
    position: static;
}
.full-width-header .rs-header .topbar-area.style1 {
    background: transparent;
    border-bottom: transparent;
}
.full-width-header .rs-header.style2 .topbar-area {
    background-color: #192a56;
}
.y-middle {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.full-width-header .rs-header .topbar-area.style1 .topbar-contact ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.full-width-header .rs-header .topbar-area.style1 .topbar-contact li {
    display: inline-block;
    color: #fefefe;
    font-size: 13px;
    line-height: 50px;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 20px;
    padding-right: 20px;
}
.full-width-header .rs-header .topbar-area.style1 .topbar-contact li i {
    margin-right: 5px;
}
.full-width-header .rs-header .topbar-area.style1 .topbar-contact li a {
    color: #fefefe;;
    font-size: 12px;
}
.full-width-header .rs-header .topbar-area.style1 .topbar-contact li:last-child {
    margin: 0;
    border: none;
}
.full-width-header .rs-header .topbar-area.style1 .toolbar-sl-share ul{
    list-style: none;
    padding: 0; 
    margin: 0;
}
.full-width-header .rs-header .topbar-area.style1 .toolbar-sl-share ul .opening {
    color: #fefefe;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 15px;
    padding-right: 40px;
}
.full-width-header .rs-header .topbar-area.style1 .toolbar-sl-share ul li {
    display: inline-block;
    font-size: 14px;
    line-height: 50px;
    margin-right: 12px;
}
.full-width-header .rs-header .topbar-area.style1 .toolbar-sl-share ul .opening em {
    font-size: 13px;
    font-style: normal;
}
.full-width-header .rs-header .topbar-area.style1 .toolbar-sl-share ul li a {
    font-size: 14px;
    color: #ffffff;
}
.full-width-header .rs-header .topbar-area.style1 .toolbar-sl-share ul li.dropdown .dropdown-menu li {
    line-height: 2;
    margin-right: 0;
    display: block;
}
/* ==============================================
TOP MENU 
================================================*/

.full-width-header .rs-header .menu-area {
	transition: all 0.3s ease 0s;
	background: linear-gradient(120deg,#192a56,#0f5884);
    padding: 0.85rem 0;
}

.full-width-header .rs-header .menu-area .row-table {
	display: flex;
	width: 100%;
	position: relative;
	align-items: center;
	justify-content: space-between;
}

.full-width-header .rs-header .menu-area .row-table .col-cell {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.full-width-header .rs-header .expand-btn-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.full-width-header .rs-header .menu-area .row-table .col-cell.header-logo {
	display: flex;
	flex: 1;
}
.full-width-header .rs-header .expand-btn-inner ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.full-width-header .rs-header .expand-btn-inner ul li {
    display: inline-block;
    margin-right: 22px;
}
.full-width-header .rs-header .expand-btn-inner ul li > a {
    color: #ffffff;
    display: inline-block;
    cursor: pointer;
}
.full-width-header .rs-header.style2 .expand-btn-inner ul li > a {
    color: #0a0a0a;
}
.full-width-header .rs-header.style2 .expand-btn-inner ul li:last-child {
    margin-right: 0;
}
.full-width-header .rs-header .expand-btn-inner ul .humburger .nav-expander .bar {
    padding: 16px 13px 16px;
    background: transparent;
    max-width: 50px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 2px;
    padding-right: 0;
    margin-right: -4px;
}
.full-width-header .rs-header .expand-btn-inner ul .humburger .nav-expander .bar span {
    height: 5px;
    width: 5px;
    display: block;
    background: rgb(255,255,255);
    border-radius: 50%;
    transition: none;
    list-style: none;
    transition: all 0.3s ease;
    margin: 2px 3px;
}
.full-width-header .rs-header .expand-btn-inner ul .humburger .nav-expander .bar span.dot2, .full-width-header .rs-header .expand-btn-inner ul .humburger .nav-expander .bar span.dot3, .full-width-header .rs-header .expand-btn-inner ul .humburger .nav-expander .bar span.dot4, .full-width-header .rs-header .expand-btn-inner ul .humburger .nav-expander .bar span.dot5, .full-width-header .rs-header .expand-btn-inner ul .humburger .nav-expander .bar span.dot6, .full-width-header .rs-header .expand-btn-inner ul .humburger .nav-expander .bar span.dot7, .full-width-header .rs-header .expand-btn-inner ul .humburger .nav-expander .bar span.dot8 {
    background: rgb(255,255,255);
}
.full-width-header .rs-header .menu-area .logo-area a .sticky-logo {
	display: none;
}

.full-width-header .rs-header .menu-area .logo-area img {
	transition: 0.4s;
	-webkit-transition: 0.4s;
	max-height: 70px;
}
.rs-header .menu-area .logo-area {
    position: relative;
}


/* ==============================================
RS MENU 
================================================*/
.full-width-header .rs-header .menu-area .rs-menu-area {
    display: flex;
    align-items: center;
    margin-right: 72px;
}
.full-width-header .rs-header .menu-area .main-menu {
    position: unset;
}
.rs-menu {
    float: left;
    clear: both;
    width: 100%;
    font-size: 0;
}
.rs-menu a{
    display: block;
}
.rs-menu ul, .rs-menu li, .rs-menu p, .rs-menu a, .rs-menu div, .rs-menu i {
    border: 0;
    margin: 0;
    padding: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li {
    display: inline-block;
    margin-right: 1rem;
    padding: 0;
}
.rs-menu li {
    font-size: 14px;
    position: relative;
}

.rs-menu li:hover>ul.mega-menu>li>ul {
	position: relative;
}

.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li.menu-item-has-children > a {
    padding-right: 17px;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li.menu-item-has-children > a::before {
    content: "+";
    position: absolute;
    left: auto;
    right: 0;
    top: 50%;
    text-align: center;
    font-size: 16px;
    display: block;
    cursor: pointer;
    transform: translateY(-50%);
    font-weight: 400;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li.menu-item-has-children:hover > a::before {
    content: "-";
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.menu-item-has-children a:before {
	/* display: none; */
    content: "+";
    position: absolute;
    left: auto;
    right: 10px;
    top: 50%;
    text-align: center;
    font-size: 16px;
    display: block;
    cursor: pointer;
    transform: translateY(-50%);
    font-weight: 400;

}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li.menu-item-has-children ul.sub-menu li  a:before {
    display: none;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.mega-menu {
    position: absolute;
    left: 0;
    min-width: 1210px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.015);
    padding: 20px 0;
}
.rs-header .menu-area .main-menu .rs-menu .nav-menu .mega-menu {
    position: absolute;
    right: 0;
    background-color: #ffffff;
    min-width: 1240px;
}
.rs-header .menu-area .main-menu .rs-menu .nav-menu .mega-menu .mega-menu-container {
    float: left;
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}
.rs-header .menu-area .main-menu .rs-menu ul.nav-menu li:last-child {
    margin-right: 0 !important;
}
.rs-header .menu-area .main-menu .rs-menu .nav-menu .mega-menu .single-megamenu {
    width: 25%;
    float: left;
}
.rs-header .menu-area .main-menu .rs-menu .nav-menu .mega-menu .sub-menu {
    display: block;
    position: relative;
    width: auto;
    min-height: initial;
    box-shadow: none;
}
.rs-header .menu-area .main-menu .rs-menu .nav-menu .mega-menu .single-megamenu .sub-menu {
    box-shadow: none;
    text-align: left;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu {
    background: #ffffff;
    margin: 0;
    padding: 20px 0;
    box-shadow: 0 0 20px rgba(0,0,0,.15);
    z-index: 99;
}
.rs-header .menu-area .main-menu .rs-menu .nav-menu .mega-menu .single-megamenu .sub-menu .menu-title {
    font-size: 15px;
    font-weight: 700;
    padding: 10px 30px;
    color: #0a0a0a;
}
.full-width-header .rs-header.style2 .menu-area .main-menu .rs-menu ul.sub-menu li {
    margin: 0 !important;
    border: none;
}
.rs-header .menu-area .main-menu .rs-menu .nav-menu .mega-menu .sub-menu li, 
.rs-header .menu-area .main-menu .rs-menu .nav-menu .mega-menu .sub-menu a {
    width: 100%;
}
.full-width-header .rs-header.style2 .menu-area .main-menu .rs-menu ul.nav-menu > li > a {
    color: #ffffff;
}
.full-width-header .rs-header.style2 .menu-area .main-menu .rs-menu ul.nav-menu > li > a:hover {
    color: #ffffff;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a {
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
    margin-right: 10px;
    height: 80px;
    line-height: 80px;
    padding: 0;
    color: #333333;
    position: relative;
    font-family: Poppins;
    text-transform: capitalize;
}

.full-width-header .rs-header .expand-btn-inner ul li > a {
    color: #ffffff;
    display: inline-block;
    cursor: pointer;
    font-size: 17px;
}
.full-width-header .rs-header.style2 .expand-btn-inner ul li > a {
    color: #ffffff;
    cursor: pointer;
}
.full-width-header .rs-header.style2 .expand-btn-inner ul li > a:hover {
    color: #f0f0f0;
}
.full-width-header .rs-header.style2 .expand-btn-inner ul li:last-child {
    margin-right: 0;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu li a {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0;
    font-family: Poppins;
    font-size: 14px;
    color: #101010;
    font-weight: 500;
    height: unset;
    line-height: 25px;
    text-transform: capitalize;
}

.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li .sub-menu li a:hover {
    color: #bb0b0b;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.sub-menu {
    background: #ffffff;
    margin: 0;
    padding: 20px 0;
}
.rs-menu ul ul.visible,
.rs-menu ul .rs-mega-menu ul.visible ul.sub-menu {
	display: block;
	z-index: 110;
}
.menu-sticky {
	background: #fff;
	margin: 0;
	width: 100%;
	top: 0;
	position: relative;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li:last-child .sub-menu{
    right:0;
    left: auto;
}
@-webkit-keyframes sticky-animation {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-100%);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}
@keyframes sticky-animation {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
/* Shine */
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}


/* Right Menu Toggle */
.full-width-header .right_menu_togle {
    background: #000000;
    padding: 40px 20px 50px 30px;
    font-size: 1.15em;
    max-width: 480px;
    width: 100%;
    right: -500px;
    z-index: 999999;
    transition: all 0.3s ease;
    position: fixed;
    overflow-y: auto;
} 
nav.right_menu_togle {
    background: rgba(0,0,0,0.9);
    display: block;
    height: 100%;
    overflow: auto;
    position: fixed;
    right: -520px;
    font-size: 15px;
    top: 0;
    width: 100%;
    max-width: 520px;
    z-index: 2000;
    transition: right 0.3s ease-in-out 0s;
    -webkit-transition: right 0.3s ease-in-out 0s;
    -moz-transition: right 0.3s ease-in-out 0s;
    -o-transition: right 0.3s ease-in-out 0s;
}
.nav-expanded nav {
    right: 0 !important;
}
.right_menu_togle .close-btn {
    overflow: hidden;
    padding: 20px 10px 20px;
}
.full-width-header .right_menu_togle .close-btn {
    overflow: visible;
}
.full-width-header .right_menu_togle .close-btn .nav-close {
    position: absolute;
    top: 25px;
    display: block;
    z-index: 99;
    right: 35px;
    cursor: pointer;
    transition: all .3s ease;
}
.full-width-header .right_menu_togle .close-btn .nav-close .line {
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.full-width-header .right_menu_togle .close-btn .nav-close .line span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 2px !important;
    height: 25px !important;
    background: #ffffff;
    border: none !important;
    transition: all 0.3s ease;
}
.full-width-header .right_menu_togle .close-btn .nav-close .line span.line2 {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.full-width-header .right_menu_togle .close-btn:hover .nav-close .line span {
    background: #bb0b0b;
}
.full-width-header .right_menu_togle .canvas-logo {
    padding-left: 0;
    padding-bottom: 25px;
}
.full-width-header .right_menu_togle .canvas-logo img {
    max-height: 50px;
}
.full-width-header .right_menu_togle .offcanvas-text p {
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    margin: 5px 0 45px;
}
.full-width-header .right_menu_togle .canvas-contact {
    padding: 30px 0 0;
}
.full-width-header .right_menu_togle .canvas-contact .address-area .address-list .info-icon i{
    font-size: 25px;
    color: #ffc107;
    margin-right: 20px;
}
.full-width-header .right_menu_togle .canvas-contact .address-area .address-list {
    display: flex;
    margin-top: 18px;
}
.full-width-header .right_menu_togle .canvas-contact .address-area .address-list .info-content .title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}
.full-width-header .right_menu_togle .canvas-contact .address-area .address-list .info-content em {
    display: block;
    font-style: normal;
    line-height: 22px;
    font-size: 15px;
    color: #ffffff;
}
.full-width-header .right_menu_togle .canvas-contact .address-area .address-list .info-content em a {
    color: #ffffff;
}
.full-width-header .right_menu_togle .canvas-contact .address-area .address-list .info-content em a:hover {
    color: #ffc107;
}
.full-width-header .right_menu_togle .canvas-contact .social {
    margin: 40px 0 0;
}
.full-width-header .right_menu_togle .canvas-contact .social li {
    display: inline-block;
}
.full-width-header .right_menu_togle .canvas-contact .social li a i {
    font-size: 15px;
    color: #fff;
    margin: 0 8px 0 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 0px;
}
.nav-expanded nav {
    right: 0 !important;
}


/* ==============================================
RS MENU MOBILE
================================================*/
.full-width-header .mobile-navbar-menu .nav-menu{
    list-style: none;
    padding: 0;
    margin: 0;
}
.full-width-header .mobile-navbar-menu .nav-menu li {
    position: relative;
}
.full-width-header .mobile-navbar-menu span.submenu-button {
    position: absolute;
    right: 0;
    top: 5px;
    display: block;
    height: 40px;
    width: 40px;
    cursor: pointer;
}
.full-width-header .mobile-navbar-menu .hash-has-sub span.submenu-button {
    width: 100%;
    cursor: pointer;
    top: 0;
    height: 50px;
}
.full-width-header .mobile-navbar-menu span.submenu-button em {
    display: block;
    position: absolute;
    right: 0;
    border-radius: 4px;
    top: 50%;
    transform: translateY(-50%);
}
.full-width-header .mobile-navbar-menu ul.nav-menu > li:first-child > span.submenu-button::after {
    top: 19px;
}
.full-width-header .mobile-navbar-menu span.submenu-button::before, 
.full-width-header .mobile-navbar-menu span.submenu-button::after {
    position: absolute;
    top: 24px;
    right: 10px;
    width: 20px;
    height: 1px;
    display: block;
    background: #fff;
    z-index: 2;
    content: '';
    right: 12px;
    width: 12px;
}
.full-width-header .mobile-navbar-menu .nav-menu li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: block;
    color: #fff;
    padding: 10px 0;
    line-height: 30px;
    width: 100%;
}
.full-width-header .mobile-navbar-menu .sub-menu {
    display: none;
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    list-style: none;
}

.full-width-header .mobile-navbar-menu ul.nav-menu > li:first-child > span.submenu-button::before {
    top: 13px;
}
.full-width-header .mobile-navbar-menu span.submenu-button::before {
    width: 1px;
    height: 12px;
    right: 17px;
    top: 18px;
}
.full-width-header .mobile-navbar-menu .submenu-button.submenu-opened::before {
    display: none;
}
.full-width-header .mobile-navbar-menu .nav-menu li li a {
    padding-left: 25px;
}
.full-width-header .mobile-navbar-menu .nav-menu li li li a {
    padding-left: 50px;
}


/*** 
=====================================================
	LPPM: GLOBAL
=====================================================
***/
.btn-theme{
    position: relative;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background: linear-gradient(235deg,rgba(0,76,63,0.9),rgba(0,0,0,0.9));
    border-color: rgba(1, 68, 57, 0.9);
    color: #ffffff;
}  
.btn-theme:hover {
    transition: opacity 0.3s;
    background: linear-gradient(235deg,rgba(0,0,0,0.9),rgba(0,76,63,0.9));
    color: #ffffff;
}
.btn-orange{
    background-color: #FF7350;
    border-color: #FF7350;
    color: #ffffff;
}
.btn-orange:hover, .btn-orange:focus{
    transition: opacity 0.3s;
    background-color: #cf3b16;
    border-color: #cf3b16;
    color: #ffffff;
}
.btn-green{
    background-color: #008060;
    border-color: #008060;
    color: #ffffff;
}
.btn-green:hover, .btn-green:focus{
    transition: opacity 0.3s;
    background-color: #037055;
    border-color: #037055;
    color: #ffffff;
}
.section .site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.section .site-title-tagline {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #FF7350;
    position: relative;
    border-bottom: 2px solid #FF7350;
}
.section .site-title {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 36px;
    color: #19232B;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}
.section .site-title span {
    color: #FF7350;
}
.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.page-item{
    margin-left: 4px;
}
.page-item .page-link {
    padding: 0.375rem 1rem;
    background: #E8E8F2;
    color: #313131;
}
.page-item .page-link:focus{
    outline: none;
    box-shadow: none;
}
.active > .page-link, .page-link.active {
    z-index: 3;
    color: #ffffff;
    background-color: #FCA500;
    border-color: #E69600;
}

/*** 
=====================================================
	LPPM : BANNERS
=====================================================
***/
/* tiny-slider */
.tns-outer{padding:0 !important}.tns-outer [hidden]{display:none !important}.tns-outer [aria-controls],.tns-outer [data-action]{cursor:pointer}.tns-slider{-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}.tns-slider>.tns-item{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tns-horizontal.tns-subpixel{white-space:nowrap}.tns-horizontal.tns-subpixel>.tns-item{display:inline-block;vertical-align:top;white-space:normal}.tns-horizontal.tns-no-subpixel:after{content:'';display:table;clear:both}.tns-horizontal.tns-no-subpixel>.tns-item{float:left}.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{margin-right:-100%}.tns-no-calc{position:relative;left:0}.tns-gallery{position:relative;left:0;min-height:1px}.tns-gallery>.tns-item{position:absolute;left:-100%;-webkit-transition:transform 0s, opacity 0s;-moz-transition:transform 0s, opacity 0s;transition:transform 0s, opacity 0s}.tns-gallery>.tns-slide-active{position:relative;left:auto !important}.tns-gallery>.tns-moving{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;transition:all 0.25s}.tns-autowidth{display:inline-block}.tns-lazy-img{-webkit-transition:opacity 0.6s;-moz-transition:opacity 0.6s;transition:opacity 0.6s;opacity:0.6}.tns-lazy-img.tns-complete{opacity:1}.tns-ah{-webkit-transition:height 0s;-moz-transition:height 0s;transition:height 0s}.tns-ovh{overflow:hidden}.tns-visually-hidden{position:absolute;left:-10000em}.tns-transparent{opacity:0;visibility:hidden}.tns-fadeIn{opacity:1;filter:alpha(opacity=100);z-index:0}.tns-normal,.tns-fadeOut{opacity:0;filter:alpha(opacity=0);z-index:-1}.tns-vpfix{white-space:nowrap}.tns-vpfix>div,.tns-vpfix>li{display:inline-block}.tns-t-subp2{margin:0 auto;width:310px;position:relative;height:10px;overflow:hidden}.tns-t-ct{width:2333.3333333%;width:-webkit-calc(100% * 70 / 3);width:-moz-calc(100% * 70 / 3);width:calc(100% * 70 / 3);position:absolute;right:0}.tns-t-ct:after{content:'';display:table;clear:both}.tns-t-ct>div{width:1.4285714%;width:-webkit-calc(100% / 70);width:-moz-calc(100% / 70);width:calc(100% / 70);height:10px;float:left}
/*# sourceMappingURL=sourcemaps/tiny-slider.css.map */

.home-slider-container{
    position: relative;
    margin-bottom: 0;
}
.home-slider .slide-item {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    outline: none !important;
    /* height:350px; */
    border-radius: 0;
}
.home-slider .slide-item .slide-image{
    /* height:350px; */
    text-align: center;
}
.home-slider .slide-item .slide-image img{
    width: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
}
.home-slider .slide-item .slide-text {
    width: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    padding: 15px;
    text-align: left;
    z-index: 10;
    cursor: pointer;
    margin-bottom: 2rem;
}
.home-slider .slide-item .slide-text .slide-title {
    color:rgb(255, 255, 255);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 600; 
    display: block;
    line-height: 24px;
    text-shadow: 0 .5px .5px rgba(30,30,30,0.4);
    margin: 1rem 0;
}
.home-slider .slide-item .slide-text .slide-title a{
    color: #fff;
}
.home-slider .slide-item .slide-text .slide-text-description {
    color: #f5f5f5;
}
.home-slider .slide-item .slide-text .slide-meta{
    font-size: .7rem;
    color: rgba(255,255,255, 0.85);
}
.home-slider .slide-item .slide-text .slide-meta .user{
    margin-right: .5rem;
}
.home-slider .slide-item .slide-text .category span{
    display: inline-block;
    background-color: #0494b1;
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    line-height: normal;
    margin-right: .135rem;
    padding: .15rem .5rem;
    border-radius: .125rem;
}
.home-slider .slide-item::after {
    background: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.9));
    width: 100%;
    height: 50%;
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    pointer-events: none;
}
.home-slider-container .tns-controls{
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    right: 0;
    margin: 0;
    z-index: 1;
}
.home-slider-container .tns-controls [data-controls="prev"] {
    position: absolute;
    left: .125rem;
}
.home-slider-container .tns-controls [data-controls="next"] {
    position: absolute;
    right: .125rem;
}
.home-slider-container .tns-controls [data-controls]{ 
    background:rgba(0,0,0,0.5);
    border: 1px solid rgba(0,0,0,0.5);
    color: #fff;
    padding: .35rem .75rem;
    border-radius: .125rem;
}
.home-slider-container .tns-controls [data-controls]:hover,
.home-slider-container .tns-controls [data-controls]:focus{
    background:rgba(0,0,0,0.85);
}
.tns-nav {
    text-align: center;
    margin: 10px 0;
}
.tns-nav > [aria-controls] {
    width: 9px;
    height: 9px;
    padding: 0;
    margin: 0 5px;
    border-radius: 50%;
    background: #ddd;
    border: 0;
}
.tns-nav > .tns-nav-active {
    background: #0a4d44;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
    cursor: pointer;
}
.home-slider-container .tns-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/*** 
=====================================================
	LPPM : Sambutan Ketua
=====================================================
***/
.rector-speech{
    padding: 5rem 0;
    background: #ffffff;
    /* background-color: #1f2f2d; */
}
.rector-speech .rector-image{
    border-radius: 0.25rem;
}
.rector-speech .title{
    border-bottom: 1px solid #ddd;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    color: #004c3f;
}
.rector-speech .title > h4{
    color: #313131;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 0.5rem;
}
.rector-speech .title > h5{
    font-size: 1.125rem;
}
.rector-speech .foreword{ 
    font-size: 1rem;
    color: #434343;
}
.rector-image{
    position: relative;
    padding-right: 30px;
    z-index: 1;
}
.rector-image::before{
    content: "";
    position: absolute;
    bottom: -20px;
    right: 10px;
    width: 250px;
    height: 250px;
    background: #134672;
    clip-path: polygon(100% 0,0% 100%,100% 100%);
    border-radius: 0 0 10px 0;
    z-index: -1;
}
.rector-image::after{
    content: "";
    position: absolute;
    top: -25px;
    left: -25px;
    width: 250px;
    height: 70%;
    border: 12px solid #FBBB41;
    border-radius: 20px;
    z-index: -1;
}
.rector-image .image img{
    width: 100%;
    border-radius: 10px;
}
/*** 
=====================================================
	LPPM : PIMPINAN
=====================================================
***/
.leader-section{ 
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../../../images/bg-leaders.png);
    position: relative;

} 
.carousel-leader .carousel-item .photo{
    display: block;
    text-align: center;
    overflow: hidden;
}
.carousel-leader .carousel-item .photo .frame{
    width: 220px;
    height: 220px;
    overflow: hidden;
    border: 5px solid #a90000;
    margin: auto;
    border-radius: 50%;
}
.carousel-leader .carousel-item .photo img{
    width: 100%
}
.carousel-leader .carousel-item .description .title{
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #a90000;
}
.carousel-leader .carousel-item .description .name{
    color: #000;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}
.carousel-leader .carousel-item .description .jabatan{
    font-size: 2rem;
    color: #c28605;
}
.carousel-leader .carousel-control-prev, 
.carousel-leader .carousel-control-next{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    top: calc(50% - (50px/2));
}


/*** 
=====================================================
	LPPM : HOME
=====================================================
***/
.section-header{
    padding: 1rem 0;
    margin: 0 0 1rem 0;
}
.section-header h2{
    position: relative;
    font-size: 1.25rem;
    font-weight: 500;
    color: #252525;
}
.section-header h2::after
{
    background-color: #ff9d00;
    bottom: -1rem;
    content: "";
    height: 3px;
    left: 0;
    width: 50px;
    position: absolute;
    z-index: 0;
}
.section-header h2 i{
    font-size: 1.45rem;
    margin-right: 0.235rem;
}
.post-inline .post-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 180px;
    background-image: none;
    background-size: cover;
    background-position: center;
}
.post-inline .image-overlay
{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0) 50%);
    bottom: 0px;
    z-index: 0;
    border-radius: 6px;
    opacity: 0;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.post-inline:hover .image-overlay{
    opacity: 1;
}
.post-inline:hover .post-image img {
	transform: scale(1.1)
}
.post-inline .post-image img {
    border-radius: 10px;
    max-width: 100%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    height: auto;
    opacity:0;
}
.post-inline .post-desc .post-title{
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.35rem;
    text-transform: capitalize;
    overflow: hidden;
    display: block;
    max-height: 2.85rem;
    -webkit-line-clamp: 2;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}
.post-inline .post-desc .post-title a{
    color: inherit;
}
.post-inline .post-desc .post-title a:hover{
    color: #c87b00;
} 

/* Post Full Width */
.post-blog-item.full-width{
    position: relative;
    margin-bottom: 1rem;
}
.post-blog-item.full-width .post-image{
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    text-align: center;
}
.post-blog-item.full-width .post-image img{
    width: 100%;
}
.post-blog-item.full-width .post-desc {
    transition: bottom .3s ease;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.5em;
    z-index: 99;
    padding: 2rem 2rem 0 2rem;
}
.post-blog-item.full-width .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 50%);
    bottom: 0px;
    z-index: 0;
    border-radius: 6px;
}
.post-blog-item.full-width .post-desc .title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.75rem;
    text-transform: capitalize;
    overflow: hidden;
    display: block;
    max-height: 3.5rem;
    -webkit-line-clamp: 2;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}
.post-blog-item.full-width .post-desc .title a{
    color: #ffffff;
}
.post-blog-item.full-width .post-desc .title a:hover{
    color: #fcb750;
} 
.post-blog-item.full-width .post-desc .post-category{
    margin-bottom: 0.5rem;
}
.post-blog-item.full-width .post-desc .post-category a{
    color: #ffffff;
}
.post-blog-item.full-width .post-desc .post-category .category{
    padding: 5px 8px;
    margin: 0 5px 0 5px;
    border-radius: 2px;
    font-size: 0.8rem;
    line-height: 1 !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    background-color: #ec3535;
    color: #ffffff;
}

/* BLOG POST LEFT */
.blog-post-left {
    position: relative;
    border-top: 1px solid #eee;
    margin-bottom: 1rem;
    padding-top: 1rem;
    width: 100%;
    float: left;
}
.blog-post-left .post-image {
    line-height: 0;
    margin-right: 2%;
    width: 40%;
    float: left;
    position: relative;
    background-color: #000000;
}
.blog-post-left .post-image img{
    width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}
.blog-post-left .post-desc {
    width: 58%;
    float: left;
    position: relative;
}  
.blog-post-left .post-desc h2 a {
    color: #111;
    float: left;
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    margin-bottom: 0.5rem;
}
.blog-post-left .post-desc .post-category{
    margin-bottom: 0.5rem;
}
.blog-post-left .post-desc .post-category .category{
    padding: 5px 8px;
    margin: 0 5px 0 0;
    border-radius: 2px;
    font-size: 0.8rem;
    line-height: 1 !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    background-color: #ec3535;
    color: #ffffff;
}
.blog-post-left .post-desc .post-category .category a{
    color: #ffffff;
}
.blog-post-left .post-desc .summary{
    margin-bottom: 15px;
    line-height: 1.75rem;
    text-transform: capitalize;
    overflow: hidden;
    display: block;
    max-height: 6rem;
    -webkit-line-clamp: 3;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}
.blog-post-left:hover .post-image img{
    opacity: 0.8;
}
.blog-post-left:hover .post-desc h2{
    opacity: 0.6;
}


/* FOTO KEGIATAN */
.photo-gallery .photo {
    position: relative;
    width: 33%;
    margin: 1px;
    float: left;
}
.photo-gallery .photo .imagepone {
    border-radius: 6px;
    width: 100%;
    height: 150px;
}
.photo-gallery .one-photo {
    position: relative;
    width: 66.2%;
    margin: 1px;
    float: left;
} 
.photo-gallery .one-photo .imagepone {
    display: block;
    width: 100%;
    height: 300px !important;
}
.photo-gallery > .photo > .one-overlay,
.photo-gallery > .one-photo > .one-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #000;
    cursor: pointer;
}
.photo-gallery .photo a, 
.photo-gallery .photo span, 
.photo-gallery .one-photo a, 
.photo-gallery .one-photo span {
    display: none;
}
.photo-gallery .photo .photo-overlay,
.photo-gallery .one-photo .photo-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #000;
    cursor: pointer;
}
.photo-gallery .photo:hover .photo-overlay,
.photo-gallery .one-photo:hover .photo-overlay {
    border-radius: 6px;
    opacity: 0.6;
}

.photo-gallery > .photo:hover a {
    text-align: left;
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    z-index: 99;
    display: inherit;
    height: 90%;
}
.photo-gallery > .one-photo:hover a {
    text-align: left;
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 99;
    display: inherit;
    height: 90%;
}
.photo-gallery > .photo:hover a h4{
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.2em;
}

.photo-gallery > .one-photo:hover a h4{
    color: white;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2em;
}
.lg-outer {
    z-index: 10000;
}
.lg-backdrop {
    z-index: 9999;
}

.video-lists .video-item .video-thumbnail{
    position:relative;
    border-radius: 0.35rem;
    overflow: hidden
}
.video-lists .video-item .video-thumbnail .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 50%);
    bottom: 0px;
    z-index: 0;
    border-radius: 6px;
}
.video-lists .video-item .video-thumbnail .title{
    transition: bottom .3s ease;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.5em;
    z-index: 99;
    padding: 0.5rem 1rem 0 1rem; 
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3rem;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}
.video-lists .video-item .video-thumbnail .icon-play{
    position: absolute;
    background: #fff;
    top: calc(50% - 30px/2);
    left: calc(50% - 30px/2);
    display: block;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.video-lists .video-item .video-thumbnail .icon-play i{
    font-size: 3.5rem;
    color: #f00;
    position: absolute;
    top: -11px;
    left: -10px;
    transition: all 0.3s ease-out 0s;
}
.video-lists .video-item .video-thumbnail .icon-play i::before{
    display: block; 
}
.video-lists .video-item:hover .video-thumbnail .icon-play i{
    color:rgb(182, 1, 1);
}

/*** 
=====================================================
	LPPM: WATCH VIDEO
=====================================================
***/ 
.watch-video .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.watch-video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*** 
=====================================================
	LPPM: POST READ
=====================================================
***/ 
.post-read{
    position: relative;
}
.post-read h1.title{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.post-read .meta{

}
.post-read .image{
    margin-bottom: 1rem;
}
.post-read .image img{
    width: 100%;
    display: block;
}

/*** 
=====================================================
	LPPM: SIDEBAR
=====================================================
***/ 
.sidebar-sticky .stuck-block{
    display: none;
    height: 80px;
    width:100%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.sidebar-sticky.is_stuck .stuck-block{
    display: block !important;
}
/* AGENDA SIDEBAR */
.event-list{
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 3px #dedede;
    border-radius: 0.25rem;
    position: relative;
}
.event-list::before {
    display: table;
    content: " ";
}
.event-list::after {
    display: table;
    content: " ";
    clear: both;
}
.event-list .date{
    float:left;
    width: 100px;
    background: #ff9d00;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}
.event-list .date.expire{
    background-color: rgba(174, 174, 174, 0.2);
    color: #888;
}
.event-list .date .day{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
}

.event-list .date .month-year{
    text-align: center;
    font-size: 0.85rem;
    line-height: 1rem;
}
.event-list .desc{
    float: left;
    width: calc(100% - 100px);
    padding: 0 10px;
}
.event-list .desc .title{
    font-size: 1rem;
    line-height: 1.30;
    overflow: hidden;
    max-height: 4.125rem;
    -webkit-line-clamp: 3;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}
.event-list .desc .status .badge{
    font-weight: 400;
    border-radius: 0.25rem;
}

.event-list.event-list-lg{
    position: relative;
    padding: 1rem;
    margin-bottom: 1rem;
}
.event-list.event-list-lg .date{
    width: 100%;
    padding: 1.5rem;
}
.event-list.event-list-lg .date .day {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.event-list.event-list-lg .date .month-year {
    font-size: 1.25rem;
    font-weight: 500;
}
.event-list.event-list-lg .desc{
    width: 100%;
}
.event-list.event-list-lg .desc .title {
    font-size: 1.25rem;
}



/* PENGUMUMAN */
.announcement-lists{
    list-style: none;
    padding:0;
}
.announcement-lists li{
    border-bottom:1px dashed #dedede;
}
.announcement-lists li a{
    line-height: 1.35;
    display: block;
    padding: 0.65rem 0;
}

.announcements-detail .title > h2{
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* POPULAR POSTS */
.widget-populer .side-post{
    margin-bottom: 1rem;
}
.widget-populer .side-post .image {
    border-radius: 0.25rem;
    overflow: hidden;
}
.widget-populer .side-post h4.title{
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    -webkit-line-clamp: 3;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}





















/*** 
=====================================================
	HOME : Blog Area
=====================================================
***/
.blog-area{
    position: relative;
    padding: 120px 0;
}
.blog-area .site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.blog-area .site-title-tagline {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #14416D;
    position: relative;
    border-bottom: 2px solid #FB9E00;
}
.blog-area .site-title {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 36px;
    color: #14416D;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}
.blog-area .site-title span {
    color: #FB9E00;
}
.blog-item {
    margin-bottom: 25px;
    padding: 20px 20px 15px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}
.blog-item-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.blog-item-img img {
    border-radius: 10px;
    max-width: 100%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    height: auto;
}
.blog-item:hover .blog-item-img img {
	transform: scale(1.1)
}
.blog-item .image::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    transition: 0.6s;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}
.blog-item .image:hover::before{
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.blog-date {
    position: absolute;
    padding: 4px 12px;
    right: 15px;
    bottom: 0;
    font-weight: 500;
    background: #008060;
    color: #ffffff;
    border-radius: 10px 10px 0 0;
    z-index: 2;
}
.blog-item-info {
    position: relative;
}
.blog-item-meta ul {
    margin: 0;
    padding: 0;
    margin: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 14px;
}
.blog-item-meta ul li {
    display: inline-block;
    margin-right: 15px;
    font-weight: 500;
    position: relative;
    color: #19232B;
}
.blog-item-meta ul li i {
    margin-right: 5px;
    color: #008060;
}

.blog-item-meta ul li a{
    color: #19232B;
}
.blog-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.35rem;
    text-transform: capitalize;
    overflow: hidden;
    display: block;
    max-height: 2.85rem;
    -webkit-line-clamp: 2;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}
.blog-item-info h4 a {
    color: #19232B;
} 

 
/*** 
=====================================================
	HOME : Galleries
=====================================================
***/
.gallery-area{
    position: relative;
    background: #f5f5f5;
    padding: 120px 0;
}
.w-grid-list{
    display: flex;
    flex-wrap: wrap;
    /* margin: calc(1.5rem * -1); */
}
.w-grid-list .w-grid-item{
    padding: 1.5rem;
    width: 33.3333%;
    flex-shrink: 0;
}
.w-grid-list .w-grid-item .w-grid-item-h{
    overflow: hidden;
    height: auto;
    position: relative;
}
.w-grid-list .w-grid-item .w-grid-item-h::before{
    content: '';
    float: left;
    height: 0;
    width: 1px;
    margin-left: -1px;
    padding-bottom: 100%;
}
.w-grid-list .w-grid-item .post-image{
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    transition-duration: 0.25s;
    transform-origin: 50% 50%;
    transform: scale(1) translate(0%,0%);
    overflow: hidden;
}
.w-grid-list .w-grid-item .post-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.w-grid-list .w-grid-item:hover .post-image img {
	transform: scale(1.1)
}
.w-grid-list .w-grid-item .post-desc{
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    padding: 4rem !important;
    justify-content: center;
    align-items: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.w-grid-list .w-grid-item .post-desc::before{
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #000000;
    transform: scale(0,1);
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    opacity: 0;
    transition: transform 0.5s,opacity 0.5s;
}
.w-grid-list .w-grid-item .post-desc::after{
    border-left: 1px solid;
    border-right: 1px solid;
    border-color: #000000;
    transform: scale(1,0);
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    opacity: 0;
    transition: transform 0.5s,opacity 0.5s;
    text-align: center;
}
.w-grid-list .w-grid-item .post-desc h5{
    transition-duration: 0.25s;
    transform-origin: 50% 50%;
    transform: scale(1) translate(0%,-50%);
    opacity: 0;
    padding: 0;
    color: #000000;
    overflow: hidden;
    display: block;
    max-height: 5.60rem;
    -webkit-line-clamp: 4;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;

}
.w-grid-item-h:hover .post-desc{
    background: rgba(255, 255, 255, 0.85);
}
.w-grid-item-h:hover .post-desc::before, 
.w-grid-item-h:hover .post-desc::after {
    opacity: 1;
    transform: scale(1);
}
.w-grid-item-h:hover .post-desc h5{
    opacity: 1;
    transform:scale(1) translate(0%,0%);
}
/* lighbox2 hack*/
.lightboxOverlay {
    opacity: 0.85;
}
.lb-data .lb-number {
    display: none !important;
}
.lb-data .lb-caption {
    font-size: 13px;
    font-weight: 400;
    line-height: 1em;
    color: #fff;
    text-shadow: 0 1px 2px #000000;

}

/*** 
=====================================================
	Berita 
=====================================================
***/
.news-detail{
    padding-top: 40px;
    padding-bottom: 100px;
}
.news-detail .title h2{
    font-size: 2rem !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.news-detail .image{
    background: #f5f5f5;
    border: 1px solid #f0f0f0;
    text-align: center;
    padding: 3px;
    margin-bottom: 1.5rem;
    transition: all ease .5s;
}
.news-detail ul.meta{
    padding-left: 0;
    margin-bottom: 20px;
    list-style: none;
}
.news-detail ul.meta li{
    display: inline-block;
}
.news-detail ul.meta li.category{
    line-height: 1;
    display: inline-flex;
    padding: 5px 6px;
    color: #7768E5;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    background: #ffffff;
    box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}
.news-detail ul.meta li > i{
    margin-right: 10px;
}
.news-detail .content h1 {
    font-size: 1.5rem;
    font-weight: 600;
}
.news-detail .content h2 {
    font-size: 1.35rem;
    font-weight: 600;
}
.news-detail .content h3 {
    font-size: 1.3rem;
    font-weight: 600;
}
.news-detail .announcement-detail .image:hover{
    background: #c76b03;
    border: 1px dashed #e63d0a;
    border-radius: .25rem;
    overflow: hidden;
}
.video-detail .video-content iframe{
    min-height: 500px !important;
}

.announcement-index {
    padding-top: 50px;
    padding-bottom: 50px;
}
.announcement-index .post-meta{
    font-size: 0.875rem;
}
span.small{
    font-size: 0.75rem;
}
.breadcrumb.bg-breadcrumb {
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 0.35rem;
    margin-bottom: 1.5rem;
}
/* SIDEBAR NEWS */ 
.widget-sidebar{
    border-color: #f8f8f8;
    background-color: #E8E9ED;
    padding: 30px 30px 30px 30px;
    margin-top: 0;
    margin-bottom: 1px;
}
.widget-sidebar ul{
    padding-left: 0;
    list-style-type: none;
    margin: 0;
}
.widget-search {
    border-color: #f8f8f8;
    background-color: #E8E9ED;
    padding: 30px 30px 30px 30px;
    margin-top: 0;
    margin-bottom: 1px;
}
.widget-sidebar h2.widget-title {
    color: #0D0D25;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}
.widget-search .blog-input {
    height: 70px;
    position: relative;
    margin-bottom: 15px;
}
.widget-search .search-form{
    position: relative;
}
.widget-search .search-form label {
    display: block;
}
.widget-search .blog-input .form-control {
    height: 70px;
    background: #ffffff;
    padding-left: 60px;
    border-radius: 0;
    font-size: 14px; 
    border: 1px solid #ECEDE5 !important;
    width: 100%;
    padding-right: 25px;
}
.widget-search .blog-input .search-btn {
    position: absolute;
    background: transparent;
    border: none;
    padding: 0;
    top: 50%;
    left: 20px;
    right: auto;
    transform: translateY(-50%);
}

.widget-categories ul.cat-list .cat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    height: 20px;
    width: 20px;
    transition: 0.6s;
    border: 1px solid #9B9BAD;
    background: #F3F3F6;
} 
.widget-categories ul.cat-list .cat-item {
    position: relative;
    padding-left: 35px !important;
    margin-bottom: 8px;
    font-weight: 500;
    overflow: hidden;
    width: 100%;
    display: inline-block;
    z-index: 1;
    transition: all ease .5s;
}
.widget-categories ul.cat-list .cat-item a{
    color: #525271;
}
.widget-categories ul.cat-list .cat-item a:hover {
    color: #FC6441;
}
.widget-categories ul.cat-list .cat-item:hover::before{
    background-color: #ff7658;
    border-color: #FC6441;
}
.widget-categories ul.cat-list .cat-item:hover a{
    color: #FC6441;
}
.widget-categories ul.cat-list .cat-item a span.count {
    position: absolute;
    top: 0;
    right: 0;
    color: #666;
    font-weight: 400;
}


.widget-news .news-item {
    overflow: hidden;
    margin-bottom: 15px;
}
.widget-news .news-item .cat li a {
    line-height: 1;
    display: inline-flex;
    padding: 5px 6px;
    color: #7768E5;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    background: #ffffff;
    box-shadow: 0px 4px 12px 0px rgba(119, 104, 229, 0.1);
}
.widget-news .news-item .news-title{
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
}
.widget-news .news-item .news-title a{ 
    color: #0D0D25;
}
.widget-news .news-item .news-title a:hover{
    background-color: #FC6441 ;
    color: #ffffff;
}
.widget-news .news-item .article-list li {
    font-size: 0.875rem;
}

.widget-announcement .ann-item{
    margin-bottom: 1.5rem;
}
.widget-announcement .ann-item .ann-list{
    font-size: 0.875rem;
}
.widget-announcement .ann-item .ann-title{
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
}
.widget-announcement .ann-item .ann-title a{
    color: #004C3F;
}
/*** 
=====================================================
	FOOTER
=====================================================
***/
.footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../../../images/footer-bg.jpg");
    position: relative;

}
.footer::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(15, 18, 33, 0.95);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.footer .container {
    position: relative;
    z-index: 1;
}
.footer-content{
    padding-top: 100px;
    padding-bottom: 100px;
    color: #ffffff;
}
.footer-logo-area > a > img{
    max-height: 50px;
}
.footer-logo-area .footer-social-area ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.footer-logo-area .footer-social-area ul li {
    display: inline-block;
}
.footer-logo-area .footer-social-area ul li span {
    color: #ffffff;
    margin-right: 10px;
    font-size: 15px;
    font-weight: 500; 
}
.footer-logo-area .footer-social-area ul li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00aa55;
    background-color: #ffffff;
}
.footer-logo-area .footer-social-area ul li span {
    color: #ffffff;
    margin-right: 10px;
    font-size: 1rem;
    font-weight: 700; 
}
.footer .footer-title{
    font-size: 1rem;
    font-weight: 700;
    color: #fefefe;
}

.footer-contact {
    padding-left: 0;
}
.footer-links h3 {
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    font-size: 22px;
    font-weight: 600;
}
.footer-links h3::before {
    content: "";
    width: 30%;
    height: 1px;
    background-color: #00aa55;
    position: absolute;
    left: 0;
    bottom: 0;
}
.footer-contact-card {
    position: relative;
    padding-left: 25px;
    margin-top: 10px;
}
.footer-contact-card i {
    position: absolute;
    left: 0;
    color: #00aa55;
}
.footer-contact-card h5 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}
.footer-contact-card p {
    font-size: 0.875rem;
    margin-bottom: 0;
}
.footer-contact-card p a {
    color: #ffffff;
    transition: var(--transition);
    text-decoration: none;
    outline: 0 !important;
}
.footer-quick-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-quick-links ul li {
    margin-top: 12px;
    color: #00aa55;
    font-size: 1rem;
}
.footer-quick-links ul li a {
    margin-left: 5px;
    color: #ffffff;
}
.footer-logo-area, .footer-links{
    margin-bottom: 1.5rem;
}
.copyright {
    text-align: center;
    color: #ffffff;
    position: relative;
    padding-top: 0;
    padding-bottom: 20px;
}
.copyright p {
    padding-top: 20px;
    color: #dfdfdf;
    border-top: 1px solid rgba(238, 238, 238, .1254901961);
    font-size: 15px;
}
#scrollUp {
    text-align: center;
    bottom: 40px;
    cursor: pointer;
    display: none;
    position: fixed;
    right: 20px;
    z-index: 999;
    border-radius: 50px 50px 4px 4px;
}
#scrollUp i {
    height: 50px;
    font-size: 2rem;
    width: 50px;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
    background: rgba(60,149,119,0.85);
    margin-left: 2px;
    display: inline-block;
}

/*** 
=====================================================
	LPPM : DOWNLOAD
=====================================================
***/
.download-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    border:1px solid #dedede;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    word-wrap: break-word;
}
.download-item div.icon {
    width: 75px;
    margin-right: 1rem;
}
.download-item div.desc{
    -ms-flex: 1;
    flex: 1;
}
.download-item div.desc a.url{
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1rem;
}
.download-item div.link {
    width: 150px;
}
/*** 
=====================================================
	LPPM : WIDGETS
=====================================================
***/
.wg-list-item .wg-title{
    position: relative;
    margin-bottom: 1rem;
}
.wg-list-item .wg-title h4::after {
    background-color: #ff9d00;
    bottom: -0.5rem;
    content: "";
    height: 3px;
    left: 0;
    width: 50px;
    position: absolute;
    z-index: 0;
}
.wg-list-item .wg-title h4{
	font-size: 1rem;
	font-weight: 600;
}


/*** 
=====================================================
	LPPM : POSTERS
=====================================================
***/
.card-poster{
    position: relative;
}
.card-poster .poster-image{
    max-height: 500px;
    overflow: hidden;
}
.card-poster .poster-image:hover img{
	transform: scale(1.1);
    transition: .5s ease;
}
.card-poster .poster-title{
    font-size: 1rem;
    overflow: hidden;
    display: block;
    height: 3.60rem;
    -webkit-line-clamp: 3;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}


/*** 
=====================================================
	FORM
=====================================================
***/
.form-control{
    border-radius: 0.125rem;
}
.form-control:focus{
    box-shadow: none;
}

.btn{
    border-radius: 0.125rem;
}


/*** 
=====================================================
    UPLOAD PROFILE IMAGE
=====================================================
***/
.nux-profile-upload{
	display:flex;
}
.profile-box {
	background-color: #fff;
	margin-top: auto;
	margin-bottom: auto;
	text-align: center;
	margin-right: 1rem;
}
.profile-box .wrapper {
	position: relative; 
	width: fit-content; 
}
.profile-box .avatar {
	width: 120px;
	height: 120px; 
	border-radius: 50%;
	overflow: hidden;
	border: 7px solid rgba(77, 138, 255, 0.2);
	margin-bottom: 0.5rem;
}
.profile-box .avatar img {
	width: 100%; 
	height: auto;
}
.profile-box .icon-upload {
	border-radius: 0.25rem;
	background-color: var(--bs-primary);
	color: var(--bs-white);
	cursor: pointer;
	overflow: hidden;
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	-webkit-box-shadow: 0 0 6px 3px rgba(68, 102, 242, 0.1);
	box-shadow: 0 0 6px 3px rgba(68, 102, 242, 0.1);
	border: 1px solid #eaeaea;
}
.profile-box .wrapper #progress{
	position: absolute;
	top: calc(50% - 20px/2);
	width: 100%;
	height: 20px;
	margin: auto;
}


/*** 
=====================================================
    HERO SECTION
=====================================================
***/
.hero_single.version_2 {
    height: 480px;
    background: #ededed url(../../../images/bg-search.jpg) center center no-repeat;
    background-size: auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.hero_single {
    width: 100%;
    position: relative;
    text-align: center;
    margin: 0;
    color: #fff;
}
.hero_single .opacity-mask {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
} 
.custom-search-input {
    background-color: #fff;
    padding: 5px 5px 5px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    margin-top: 10px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 30px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 30px 0 rgba(0,0,0,.3);
}
.custom-search-input select {
    border: 0;
    height: 50px;
    padding: 10px 13px 10px 15px;
    border-right: 1px solid #d2d8dd;
    font-weight: 500;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    font-size: 15px;
    font-size: .9375rem;
}
.custom-search-input input {
    border: 0;
    height: 50px;
    padding: 12px 10px 10px 20px;
    border-right: 1px solid #d2d8dd;
    font-weight: 500;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    font-size: 15px;
    font-size: .9375rem;
}
.custom-search-input input.no_border_r {
    border: none;
}
.custom-search-input button {
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    color: #fff;
    font-size: 1.5rem;
    border: 0;
    padding: 0 25px;
    height: 50px;
    cursor: pointer;
    outline: 0;
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    background-color: #589442;
    margin-right: -1px;
}
.custom-search-input select:focus,
.custom-search-input input:focus{
    box-shadow: none;
    outline: none;
    border-color: #d2d8dd;
}

.col-opt {
    max-width: 190px;
}
.col-btn {
    max-width: 120px;
}

/* SHORTCUT */
.bg-card-default {
    background-image: url("../../../images/bg-card.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-card-yellow {
    background-image: url("../../../images/bg-card-yellow.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-card-red {
    background-image: url("../../../images/bg-card-red.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.card-shortcut .stat-arrow {
    text-align: right;
    float: right;
    font-size: 1.25rem;
    margin-top: 12px;
}
.card-shortcut .stat-ic {
    position: absolute;
    font-size: 2.5rem;
    color: #dfdfdf;
}
.card-shortcut .stat-num {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1em;
    margin-left: 55px;
    margin-top: 5px;
}
.card-shortcut .stat-text {
    font-size: 0.875rem;
    margin-left: 55px;
}

.expert-list, .expert-list-count, .expert-list-authors {
    list-style: none;
    padding: 0;
    margin: 0;
}
.expert-list-authors .list-item {
    padding: 0;
    min-height: 70px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 0.5rem;
}
.expert-list-authors .list-item .profileset {
    padding: 10px 10px 3px;
    position: relative;
}
.expert-list-authors .list-item .profileset .user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    overflow: hidden;
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
}
.expert-list-authors .list-item .profileset .user-img img {
    margin-top: 0;
    width: 100%;
    height: auto;
}
.expert-list-authors .list-item .profileset .profilesets {
    margin-left: 50px;
}
.expert-list-authors .list-item .profileset h6.name {
    font-size: 14px;
    color: #212b36;
    font-weight: 500;
    margin-bottom: 0.25rem;
} 
.expert-list-authors .list-item .profileset .attr {
    font-size: 0.85rem;
    color: #121212;
    line-height: 15px;
    margin-bottom: 0.125rem;
}
.list-produk{
    padding: 0;
    list-style: none;
    margin: 0;
}
.list-produk li.list{
    margin-bottom: 1rem;
    border-bottom: 1px solid #dedede;
    padding-bottom: 1rem;
}
.list-produk li.list .title{
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.135rem;
}
.list-produk li.list .inventor{
    color: #131313;
    font-weight: 600;
}
.list-produk li.list .dept{
    color: #131313;
    font-weight: 400;
    font-size: 0.875rem;
}
.list-produk li.list .icon{
    width: 16px;
}

.expert-list-count li {
    border-bottom: 1px dotted #cecece;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}
.expert-list-count li .exp-title {
    padding-right: 0.5rem;
}
.expert-list-count li .badge-count {
    font-weight: 500;
    font-size: 0.75rem;
}
.badge-circle {
    border-radius: 50%;
    padding: 0;
    min-width: 1.25rem;
    min-height: 1.25rem;
    line-height: 1.25rem;
}
.flex-1{
    flex:1;
}

/* LIST INVENTOR */
.card-list-inventor .photo-frame{
    overflow:hidden;
    margin:auto;
    border-radius: 0.35rem;
}
.card-list-inventor a > h5.inv-name{
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
}
.list-inventor-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-inventor-info li{
    color: #6c757d;
}
.list-inventor-info li .icon{
    width: 18px;
}


.profile-product-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.profile-product-list > li {
    margin-bottom: 2rem;
}
.profile-product-list > li .pi-title a{
    font-size: 1;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.35rem;
    display: block;
    overflow: hidden;
    max-height: 3.90rem;
    -webkit-line-clamp: 3;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}
.profile-product-list > li .pi-meta{
    color: #888;
    font-size: 0.875rem;
}

.product-detail{
    position: relative;
}
.product-detail .title{
    font-size: 1.65rem !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.product-detail .desc-title{
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.product-detail .desc-content{
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.card-info-produk .meta-title-info-produk{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #454545;
}

.product-detail .card-inventor .photo-frame{
    overflow: hidden;
    margin-right: 1rem;
    border-radius: 0.35rem;
    width: 100px;
    height: 100px;
}
.product-detail .card-inventor .photo-frame img{
    width: 100%;
    height: auto;
}
.product-detail .meta-side-label{
    font-weight: 600;
    margin-bottom: 0;
}