@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url(../../../plugins/lightbox2/css/lightbox.min.css);
: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: #004C3F;
    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: #115274;
}
.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;
}
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 .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;
}

/* ==============================================
TOP MENU 
================================================*/

.full-width-header .rs-header .menu-area {
	transition: all 0.3s ease 0s;
	background: var(--color-content-secondary-grad);
}

.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;
}
.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 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;
    text-align: left;
}

.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;
}


/*** 
=====================================================
	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: #FC6441;
    border-color: #FC6441;
}
/*** 
=====================================================
	Home : Main Slider style
=====================================================
***/
.main-slider {
    position: relative;
    display: block;
    background: #ffffff;
    z-index: 10;
}
.main-slider.style1 {}
.main-slider .slide {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 150px 0px 150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.main-slider .slide .image-layer{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	-webkit-transform: scale(1);
	-ms-transform:scale(1);
	transform:scale (1);
    transition: all .8s ease-in-out .4s;
    z-index: 1;
}
.main-slider .slide .image-layer:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}
.main-slider .active .slide .image-layer{
    /*
	-webkit-transform:scale(1.05);
	-ms-transform:scale(1.05);
	transform:scale(1.05);
    */
}
.main-slider .content{
	position:relative;
	z-index:11;
}

.main-slider.style1 .slide {
    padding: 136px 0px 140px;
}
.main-slider.style1 .slide .image-layer:before{
    background-color: rgba(15, 11, 11, 0.35);
    z-index: 1;
}
.main-slider.style1 .slide.slide.slide-only .image-layer:before{
    z-index: -1;
}
.main-slider.style1 .slide .image-layer{
    filter: grayscale(0);
}
.main-slider.style1 .content{
    position: relative;
    display: block; 
    max-width: 80%;
    z-index: 10;
    margin-top: 80px;
}

.main-slider .auto-container{
    position: relative;
}

.main-slider .content h3{
    position: relative;
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.4em;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.025em;
	opacity: 0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(-100);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(-100);
    transform: perspective(400px) rotateX(0deg) translateY(-100px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    font-family: var(--thm-pony-tale-font);
}
.main-slider .active .content h3{
	opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg) translateY(0);
    -ms-transform: perspective(400px) rotateX(0deg) translateY(0);
    transform: perspective(400px) rotateX(0deg) translateY(0);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;    
}


.main-slider .content .big-title{
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 7px;
    margin-bottom: 25px;
	opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.main-slider .active .content .big-title{
	opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;   
}
.main-slider .content .big-title h2{
	color: #ffffff;
	font-size: 70px;
	line-height: 1.10em;
	font-weight: 700;
    text-transform: none;
}


.main-slider .content .border-box{
    position: relative;
    display: block;
    max-width: 600px;
    width: 0%;
    height: 2px;
    background: #ffffff;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.main-slider .active .content .border-box{
    width: 100%;
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;   
}
.main-slider .content .border-box:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0px;
    background: var(--thm-primary);
    -webkit-transition: all 2000ms ease;
    -moz-transition: all 2000ms ease;
    -ms-transition: all 2000ms ease;
    -o-transition: all 2000ms ease;
    transition: all 2000ms ease;
}
.main-slider .active .content .border-box:before{
    width: 80px;
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;   
}


.main-slider .content .text{
    position: relative;
    display: block;
    padding-top: 34px;
	opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}
.main-slider .active .content .text{
	opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms; 
}
.main-slider .content .text p{
    color: #ffffff;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin: 0;
}



.main-slider .content .btns-box{
	position: relative; 
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 43px;
	opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}
.main-slider .content .btns-box a.marlft15{
    margin-left: 15px;
}
.main-slider .active .content .btns-box{
	opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms; 
}

.main-slider .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    line-height: 0;
    opacity: 0;
    transform: scaleX(1.0) translateY(-30px);
    z-index: 3;
}
.main-slider:hover .owl-theme .owl-nav{
    opacity: 1;
    transform: scaleX(1.0) translateY(-30px);
}
.main-slider .owl-theme .owl-prev span, 
.main-slider .owl-theme .owl-next span{
    display: block;
}
.main-slider .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 50px;
    top: 0;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.30);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 0.20);
    font-size: 25px;
    line-height: 56px;
    font-weight: 400;
    opacity: 1;
    margin: 0;
    padding: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-slider .owl-theme .owl-prev span:before { }
.main-slider .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 50px;
    top: 0;
    transform: rotate(0deg);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.30);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 0.20);
    font-size: 25px;
    line-height: 56px;
    font-weight: 400;
    opacity: 1;
    margin: 0;
    padding: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.main-slider .owl-theme .owl-next span:before{}


.main-slider .owl-theme .owl-nav .owl-prev:hover,
.main-slider .owl-theme .owl-nav .owl-next:hover{
    color: #ffffff;
    border-color: var(--thm-primary);
}

.banner-carousel .owl-dots {
    display: none;
}
.main-slider.style1 .owl-theme .owl-nav{
    display: none;
}
.main-slider.style1 .banner-carousel.owl-carousel .owl-dots {
    position: absolute;
    top: 0;
    left: 50px;
    bottom: 0;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    counter-reset: count;
}
.main-slider.style1 .banner-carousel.owl-carousel button.owl-dot{
    position: relative;
    display: block;
    height: 25px;
    width: 25px;
    background: transparent;
    border-radius: 50%;
    margin: 5px 0;
    z-index: 1;
}
.main-slider.style1 .banner-carousel.owl-carousel button.owl-dot:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border-radius: 50%;
    z-index: -1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    transform: scale(0);
}
.main-slider.style1 .banner-carousel.owl-carousel button.owl-dot.active:after{
    transform: scale(1.0);
}

.main-slider.style1 .banner-carousel.owl-carousel button.owl-dot:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    text-align: center;
    color: #222222;
    font-size: 12px;
    line-height: 25px;
    font-weight: 500;
    counter-increment: count;
    content: "0" counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}


/* slide with no description (text) */
.main-slider .slide.slide-only{
    overflow: unset !important;
    padding: 0;
}
.main-slider .slide.slide-only .content .border-box {
    display: none;
}
.main-slider .slide.slide-only .image-layer { 
    height: auto !important;
}
.main-slider .slide.slide-only .auto-container{
    display: none !important;
}





/*** 
=====================================================
	HOME : Main 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;
}
.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;
}
/*** 
=====================================================
	HOME : Sambutan Pimpinan
=====================================================
***/
.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: 1.5rem;
    padding-bottom: 1.5rem;
    color: #004c3f;
}
.rector-speech .title > h4{
    color: #313131;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 0.5rem;

}
.rector-speech .title > h5{
    font-size: 1.5rem;
}
.rector-speech .foreword{ 
    font-size: 1.25rem;
    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: #004c3f;
    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;
}

/*** 
=====================================================
	HOME : Choose Area
=====================================================
***/
.choose-area {
    position: relative;
    padding-top: 75px;
    padding-bottom: 75px;
    overflow: hidden;
    background: #125875;
}
.choose-area .site_heading{
    position: relative;
    z-index: 1;
}
.choose-area .site-title-tagline {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #FF7350;
    position: relative;
    border-bottom: 2px solid #FF7350;
}
.choose-area .site-title-tagline i {
    line-height: 0;
    font-size: 20px;
}
.choose-area .site-title {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 48px;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}
.choose-area .site-title span {
    color: #FF7350;
}
.choose-area .choose-item {
    display: flex;
    gap: 20px;
    position: relative;
    margin-top: 25px;
    z-index: 1;
}
.choose-area .choose-icon {
    width: 80px;
    height: 80px;
    line-height: 70px;
    background: #FF7350;
    color: #ffffff;
    font-size: 45px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.choose-area .choose-icon::before {
    content: "";
    position: absolute;
    border: 2px dashed #FF7350;
    border-radius: 50px;
    left: -6px;
    right: -6px;
    top: -6px;
    bottom: -6px;
}
.choose-area .choose-icon img {
    width: 45px;
    filter: brightness(0) invert(1);
}
.choose-area .choose-item-content {
    flex: 1;
}
.choose-area .choose-item-content h4 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #ffffff;
}
.choose-area .choose-item-content p {
    color: #ffffff;
}
.choose-area .choose-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 49%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 5% 100%, 0 66%);
}
.choose-area .choose-img .img{
    max-width: 100%;
}


/*** 
=====================================================
	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: #FF7350;
    position: relative;
    border-bottom: 2px solid #FF7350;
}
.blog-area .site-title {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 36px;
    color: #19232B;
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}
.blog-area .site-title span {
    color: #FF7350;
}
.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 : Pengumuman & Informasi
=====================================================
***/
.info-area{
    position: relative;
    padding: 120px 0;
    background: #EBBB0F;
}
.carousel-item .announcement-image{
    border: 5px solid #e8e8e8;
}
.carousel-announcement-text .transparent-image{
    border: 5px solid #e8e8e8;
}
.carousel-announcement-text{
    background: linear-gradient(90deg, #0197b2, #00a3b5, #00afb3, #00b9aa, #00c39b, #00cc88, #50d471, #7dda57);
    display: flex !important;
    align-items: center;
}
.carousel-announcement-text .carousel-caption h5.title{
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(47, 45, 45, 0.5);
}
.carousel-announcement-text .carousel-caption a{
    color: #ffffff;
}
.carousel-announcement-text .carousel-caption p{
    font-size: 1rem;
}
.carousel-announcement-text .carousel-caption{
    position: absolute;
    right: 15%;
    left: 15%;
    bottom: auto;
    color: #ffffff;
    text-align: center;
}
#carouselAnnouncements .carousel-indicators {
    bottom: -4rem;
}
.carousel-announcement-text .link{
    color: #fff;
    background-color: #0092b2;
    border: 1px solid #05849f;
    padding: 0.375rem 1rem;
    border-radius: 0.35rem;
}
.carousel-announcement-text .link:hover{
    color: #fff;
    background-color: #05849f;
    border-color:#05849f;
}
/*** 
=====================================================
	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: 40px;
    font-size: 24px;
    width: 42px;
    border-radius: 0;
    color: #fff;
    line-height: 36px;
    transition: all 0.3s ease 0s;
    background: rgba(60,149,119,0.85);
    margin-left: 2px;
    box-shadow: 0 0 2px #54595F;
}
.leader-section{ 
    padding-top: 100px;
    padding-bottom: 100px;
    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: 300px;
    height: 300px;
    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: 1px solid #dedede;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    top: calc(50% - (50px/2));
}

/* STAFF */
.blog-staff .blog-item-img{
    max-height: 300px;
    overflow: hidden;
}
.blog-staff .blog-title.staff-name{
    max-height: 3rem !important;
}
.blog-staff .blog-title.staff-name a{
    font-size: 0.875rem;
    font-weight: 500;
    padding-top: 10px;
    display: block; 
}