/*!
Theme Name: obm
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: obm
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

obm is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
# Base Styling
--------------------------------------------------------------*/

:root {
    --red: #C1190A;
    --red-dark: #9B1B1B;
    --red-light: #B52020;
    --cream: #FAF7F2;
    --cream-dark: #F0EAE0;
    --ink: #231815;
    --ink-light: #7A6055;
}

* {
    outline: none!important;
}

body {
    font-family: "Figtree", sans-serif;
    font-size: 16px;
    color: var(--ink-light);
    font-weight: 400;
    line-height: 150%;
}

a {
    text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.material-symbols-rounded {
  --icon-fill: 0;
  --icon-wght: 300;
  --icon-grad: 0;
  --icon-opsz: 18;
  font-variation-settings:
    'FILL' var(--icon-fill),
    'wght' var(--icon-wght),
    'GRAD' var(--icon-grad),
    'opsz' var(--icon-opsz);
  font-size: calc(var(--icon-opsz) * 1px);
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  color: inherit;
  transition: font-variation-settings 0.2s ease;
}

.btn.btn-red {
	display: inline-flex;
	align-items: center;
	gap: 8px;
    background: var(--red);
    border: 1px solid var(--red);
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
    padding: 14px 24px;
    line-height: 100%;
}

.btn.btn-transparent {
	display: inline-flex;
	align-items: center;
	gap: 8px;
    background: transparent;
    border: 1px solid var(--ink);
    font-size: 18px;
    color: var(--ink);
    font-weight: 600;
    padding: 14px 24px;
    line-height: 100%;
}

.btn-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
    font-size: 18px;
    color: var(--red-light);
    font-weight: 600;
    margin-top: 8px;
}

.badge-category {
	background: var(--red);
	font-size: 12px;
	color: #FFFFFF;
	border-radius: 100px;
	padding: 5px 8px;
}

.object-cover {
	object-fit: cover;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex-grow: 1;
}

.error-404.not-found {
    padding-top: 10%;
}


/* Header Footer
--------------------------------------------- */

.page-default {
	margin-top: 94px;
}

body.admin-bar .page-default {
	margin-top: 62px;
}

.site-header {
	background: var(--ink);
	padding: 20px 0;
	position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.site-header .site-brand img {
	max-height: 55px;
}

.site-header .brand-text {
	display: flex;
	flex-direction: column;
	color: #FFFFFF;
    gap: 8px;
}

.site-header .brand-text .brand-large {
	color: #FFFFFF;
    font-weight: 600;
    line-height: 100%;
    font-size: 23px;
}
.site-header .brand-text .brand-small {
	font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 100%;
}
ul.main-navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

ul.main-navigation li {
    position: relative;
}

ul.main-navigation li a {
    font-size: 17px;
    color: #FFFFFF;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    display: block; 
    padding: 15px 0;
}

ul.main-navigation li a:hover {
    color: var(--red);
}

ul.main-navigation li.menu-item-has-children a > i {
    font-size: 14px;
    margin-left: 8px;
}

ul.main-navigation .sub-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    z-index: 999;
    background-color: var(--ink-light); 
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}

ul.main-navigation li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

ul.main-navigation .sub-menu li a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
}

ul.main-navigation .sub-menu li a:hover {
    background-color: var(--red);
    color: #FFF;
}


.site-header .btn.btn-red {
	font-size: 16px;
	padding: 8px 20px;
}

.site-header .mobile-header .hamburger-menu {
	display: inline-block;
	width: 32px;
	height: 22px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    position: relative;
    top: 8px;
}

.site-header .mobile-header .hamburger-menu span {
	position: absolute;
    right: 0;
    display: block;
    background-color: #FFFFFF;
    border-radius: 8px;
    width: 24px;
    height: 3px;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.site-header .mobile-header .hamburger-menu span:nth-child(1) {
    top: 0px;
}

.site-header .mobile-header .hamburger-menu span:nth-child(2),
.site-header .mobile-header .hamburger-menu span:nth-child(3) {
    top: 8px;
}

.site-header .mobile-header .hamburger-menu span:nth-child(4) {
    top: 16px;
}

.site-header .mobile-header .hamburger-menu.change span:nth-child(1) {
    top: 5px;
    width: 0%;
    right: 0;
}

.site-header .mobile-header .hamburger-menu.change span:nth-child(2) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.site-header .mobile-header .hamburger-menu.change span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.site-header .mobile-header .hamburger-menu.change span:nth-child(4) {
    top: 5px;
    width: 0%;
    right: 0;
}


.site-footer {
	background: var(--cream);
    padding: 40px 0 24px;
    overflow: hidden;
    position: relative;
}

.site-footer .footer-brand img {
	max-height: 45px;
}

.site-footer .brand-text {
	display: flex;
	flex-direction: column;
	color: var(--ink);
    gap: 8px;
}

.site-footer .brand-text .brand-large {
	color: var(--ink);
    font-weight: 600;
    line-height: 100%;
}

.site-footer .brand-text .brand-small {
	font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 100%;
}

.site-footer .footer-desc {
	font-size: 14px;
	color: #4A3428;
    line-height: 22px;
    margin-top: 12px;
}

ul.footer-socmed {
	list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

ul.footer-socmed li a {
	font-size: 20px;
    color: var(--ink);
}

.site-footer .footer-menu-title {
	font-size: 10px;
	color: var(--red-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-navigation {
	list-style: none;
    margin: 0;
    padding: 0;
}

.footer-navigation li {
	margin-bottom: 12px;
	line-height: 100%;
}

.footer-navigation li:last-child {
	margin-bottom: 0;
}

.footer-navigation li a {
	font-size: 14px;
	color:  var(--ink);
	line-height: 100%;
}

.footer-navigation li a:hover {
    color: var(--red);
}

.footer-navigation.footer-nav-info li a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.footer-navigation.footer-nav-info li a span {
	color:  var(--red-light);
}

.site-footer .footer-bottom {
	border-top: 1px solid var(--ink-light);
    padding-top: 24px;
    margin-top: 24px;
}

.site-footer .footer-bottom .footer-sub-nav {
	list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 24px;
}

.site-footer .footer-bottom .footer-sub-nav li {
	line-height: 1;
}

.site-footer .footer-bottom .footer-sub-nav li a {
	font-size: 12px;
	color:  var(--ink);
	line-height: 100%;
}

.site-footer .footer-bottom span {
	font-size: 12px;
	color:  var(--ink);
}

.site-footer .footer-graph { 
	position: absolute;
    bottom: 0px;
    right: 0;
    pointer-events: none;
    max-width: 400px;
    opacity: .3;
}


.site-header-mobile {
	display: none;
	background: var(--ink);
    padding: 20px 0;
    position: fixed;
    top: 93px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.site-header-mobile .main-menu-mobile {
	list-style: none;
    margin: 0;
    padding: 0;
}

.site-header-mobile .main-menu-mobile > li {
	border-bottom: 1px solid #ABB5C3;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.site-header-mobile .main-menu-mobile > li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.site-header-mobile .main-menu-mobile > li a {
	display: block;
	font-size: 20px;
    color: #FFFFFF;
    font-weight: 600;
}

.site-header-mobile .main-menu-mobile li.menu-item-has-children a {
	position: relative;
}

.site-header-mobile .main-menu-mobile li.menu-item-has-children a i {
	font-size: 24px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.site-header-mobile .main-menu-mobile ul.sub-menu li.menu-item-has-children a i {
	top: 12px;
    right: 12px;
    color: #FFF;
}

.site-header-mobile .main-menu-mobile li.menu-item-has-children ul.sub-menu {
	list-style: none;
    margin: 0;
    padding: 24px 0 0;
    display: none;
}

.site-header-mobile .main-menu-mobile li.menu-item-has-children ul.sub-menu.visible {
	display: block;
}

.site-header-mobile .main-menu-mobile li.menu-item-has-children ul.sub-menu li a {
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: none;
    padding: 0 0 16px;
    line-height: 125%;
}

.site-header-mobile .main-menu-mobile li.menu-item-has-children ul.sub-menu li:last-child a {
    padding: 0;
}


/* Content
--------------------------------------------- */

.box {
	padding: 64px 0;
}


.entry-header {
	margin-bottom: 40px;
}

.entry-header .entry-title {
	font-size: 26px;
    color: #1F1F1F;
    font-weight: 800;
    margin: 0;
    padding-bottom: 12px;
    position: relative;
}

.entry-content h3 {
    font-size: 32px;
    color: #1F1F1F;
    font-weight: 800;
    margin: 0;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 25px;
}

.entry-header .entry-title::after, .entry-content h3::after {
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background-color: var(--red);
    width: 42px;
    height: 2px;
}

.entry-header.text-center .entry-title::after {
	margin: auto;
}

.entry-header .entry-subtitle {
	font-size: 14px;
	color: var(--ink-light);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.entry-btn {
	display: flex;
    gap: 12px;
    margin-top: 32px;
}


.banner-frontpage {
	position: relative;
	height: 100vh;
	display: flex;
    align-items: flex-end;
}

.banner-frontpage .banner-overlay {
    background: linear-gradient(to bottom, transparent 40%, var(--ink) 100%);
    opacity: 0.75;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-frontpage .banner-image,
.banner-single .banner-image {
	position: absolute;
    width: 100%;
    height: 100%;
}

.banner-frontpage > .container,
.banner-single > .container {
	position: relative;
    z-index: 9;
    margin-bottom: 64px;
}

.banner-frontpage .banner-title {
	font-size: 56px;
	color: #FFFFFF;
	font-weight: 700;
}

.banner-frontpage .banner-subtitle {
    font-size: 24px;
	color: #FFFFFF;
    line-height: 1.5;
}

.banner-single {
	position: relative;
	height: 300px;
	display: flex;
    align-items: flex-end;
}

.banner-single .banner-overlay {
	background: var(--ink);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 25%;
}

.banner-single .banner-title {
	font-size: 56px;
	color: #FFFFFF;
	font-weight: 700;
}


.box-default img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.box-stats {
	background: var(--cream);
	padding: 32px 0;
}

.list-stats .stat-column {
	position: relative;
	text-align: center;
}

.list-stats .stat-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.1;
}

.list-stats .stat-accent-line {
	width: 28px;
	height: 2px;
	background-color: var(--red);
	margin-top: 6px;
	margin-bottom: 3px;
}

.list-stats .stat-label {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.5px;
	color: var(--ink-light);
	text-transform: uppercase;
}


.box-about .image-wrapper {
	position: relative;
}

.box-about .image-wrapper img {
    border-radius: 4px;
}

.box-about .image-wrapper .decor-box {
	position: absolute;
	bottom: -25px;
    left: -25px;
    width: 100px;
    height: 100px;
	background-color: rgba(193, 25, 10, 0.5);
	border-radius: 4px;
	z-index: 3;
}

.list-values {
	border: 1px solid #EDE8E1;
    border-radius: 6px;
}

.value-card {
    padding: 32px;
}

.value-number {
    font-size: 56px;
    font-weight: 800;
    color: #EDE8E1;
    line-height: 1;
}

.value-accent-line {
    width: 40px;
    height: 1px;
    background-color: var(--red);
    margin: 16px 0;
}

.value-title {
    font-size: 18px;
    color: var(--ink);
    font-weight: bold;
    margin-bottom: 0.85rem;
}

.value-desc {
    margin-bottom: 0;
}


.box-timeline {
	background: var(--cream);
	overflow: hidden;
}

.box-timeline .entry-desc {
	font-size: 20px;
}

.timeline-wrapper {
    position: relative;
    margin-top: 4rem;
}

.timeline-wrapper .timeline-line {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 0;
    height: 1px;
    background-color: var(--red-light);
    z-index: 1;
}

.timeline-wrapper .timeline-item {
    position: relative;
    z-index: 2;
    padding-right: 1.5rem;
}

.timeline-wrapper .timeline-marker {
    width: 40px;
    height: 40px;
    background-color: var(--red-light);
    border: 5px solid #FFFFFF; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.timeline-wrapper .timeline-marker.circle {
    border-radius: 50%;
}

.timeline-wrapper .timeline-marker::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.timeline-wrapper .timeline-year { 
	color: var(--red-light);
	font-weight: bold;
}
.timeline-wrapper .timeline-title { 
	font-size: 16px;
	color: var(--ink);
	font-weight: bold;
	margin: 2px 0 6px;
}
.timeline-wrapper .timeline-desc { 
	font-size: 14px;
	line-height: 1.5; 
}

.box-timeline > .container {
	position: relative;
}

.box-timeline .box-graph { 
	position: absolute;
    top: -64px;
    right: 0;
    pointer-events: none;
    max-width: 400px;
    opacity: .3;
}

.entry-milestone {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 15px 0;
}

.entry-milestone::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--red);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.entry-milestone .square {
    position: relative;
    background: inherit;
    width: 50%;
}

.entry-milestone .square-left {
    padding: 15px 60px 15px 0;
    left: 0;
}

.entry-milestone .square-right {
    padding: 15px 0 15px 60px;
    left: 50%;
}

.entry-milestone .square::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    top: calc(50% - 1px);
    right: 8px;
    background: var(--red);
    z-index: -1;
}

.entry-milestone .square .square-year {
    content: '';
    position: absolute;
    top: calc(50% - 16px);
    right: -42px;
    max-width: 88px;
    background: var(--red);
    border: 2px solid var(--red);
    border-radius: 20px;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    line-height: 100%;
    padding: 2px 20px;
    z-index: 1;
}

.entry-milestone .square-right::before {
    left: 8px;
}

.entry-milestone .square-right .square-year {
    left: -42px;
}

.entry-milestone .square .square-inner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-color: #eeeeee;
}

.entry-milestone .square .square-inner .overlay-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient( 180deg, rgba(0,0,0,0.00) 37%, #000000 100%);
    width: 100%;
    height: 100%;
}

.entry-milestone .square .square-inner .overlay-text {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    z-index: 2;
}

.entry-milestone .square .square-inner .overlay-text .text-date {
    font-size: 12px;
    color: #01a4e5;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.entry-milestone .square .square-inner .overlay-text .text-title {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 8px;
}

.entry-milestone .square .square-inner .text-image {
    width: 100%;
    display: block;
}

.entry-milestone .square .square-inner .text-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    border: none;
}

.entry-milestone .square .square-inner .overlay-text .text-subtitle {
    font-size: 14px;
    color: #000;
    line-height: 18px;
    display: block;
    width: 100%;
}

.entry-milestone .square .square-inner .overlay-text .text-subtitle p {
    margin-bottom: 8px;
}

.entry-milestone .square .square-inner .overlay-text .text-subtitle p:last-child {
    margin-bottom: 0;
}

.entry-milestone .square .square-inner .overlay-text .text-subtitle ul {
    padding-left: 1rem;
}

.entry-milestone .square .square-inner .overlay-text .text-subtitle ul li {
    padding-bottom: 4px;
}

.entry-milestone .square .square-inner .overlay-text .text-subtitle ul li:last-child {
    padding-bottom: 0;
}

.entry-milestone .square .square-inner .overlay-text .text-subtitle ul li::marker {
    color: var(--red);
}


.box-mentor .swiper,
.box-news .swiper {
	padding-bottom: 40px;
}

.box-about .swiper {
    padding-bottom: 48px;
}

.box-mentor .swiper-pagination,
.box-news .swiper-pagination {
	bottom: 0;
}

.testimonial-card {
    background-color: var(--cream);
    border-left: 4px solid var(--red-light);
    border-radius: 2px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.testimonial-card .quote-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 0;
    flex-grow: 1;
    min-height: 84px;
}

.testimonial-card .custom-divider {
    border: 0;
    border-top: 1px solid #E1D8CC;
    margin: 0;
    opacity: 1;
}

.testimonial-card .quote-info {
    min-height: 120px;
}

.testimonial-card .author-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #C8A96E;
    background-color: transparent;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-card .author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-card .author-name {
    font-size: 16px;
    font-weight: 700;
    color: #1A1614;
    margin-bottom: 4px;
}

.testimonial-card .author-title {
    font-size: 14px;
    color: var(--red);
    font-weight: 500;
    line-height: 1;
    margin: 0 0 4px;
}

.testimonial-card .author-position {
    font-size: 13px;
    color: #6B5F5B;
    padding-left: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}


.box-news {
	background: var(--cream);
}

.list-article .item-image {
    display: block;
    border-radius: 4px;
    border: 1px solid #eeeeee;
    overflow: hidden;
    width: 100%;
}

.list-article .item-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: .5s ease-in-out; 
}

.list-article .item-image:hover img {
    transform: scale(1.1); 
}

.list-article .item-date {
	font-size: 12px;
	color: var(--bs-secondary-color);
}

.list-article .badge.item-badge {
    background-color: var(--red); 
    color: #FFF; 
    padding: 5px 10px; 
    font-weight: normal;
}

.list-article .item-title {
    min-height: 50px;
} 

.list-article .item-title a {
	font-size: 20px;
	color: var(--ink);
    font-weight: bold;
    transition: .5s ease-in-out;
}

.list-article .item-title a:hover {
    color: var(--red);
}

.list-article .item-desc,
.featured-card .item-desc {
	font-size: 17px;
	color: var(--ink-light);
    line-height: 150%;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card {
    background: var(--cream);
    overflow: hidden;
}

.featured-card .item-title a {
    font-size: 30px;
	color: var(--ink);
    font-weight: bold;
    line-height: 140%;
    margin: 0 0 20px 0;
    display: block;
    transition: .5s ease-in-out;
}

.featured-card .item-title a:hover {
    color: var(--red);
}

.featured-card a {
    overflow: hidden;
}

.featured-card a > img {
    border-right: 1px solid #eeeeee;
    transition: .5s ease-in-out;
}

.featured-card a:hover > img {
    transform: scale(1.1);
}


.sidebar-category-widget {
    border-bottom: 1px solid #E7E5E4;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.sidebar-category-widget:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sidebar-category-widget .sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1C1917;
    margin-bottom: 1.25rem;
}

.custom-category-list {
    margin: 0;
    padding: 0;
}

.custom-category-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.custom-category-list li:last-child {
    margin-bottom: 0;
}

.custom-category-list li::before {
    content: '';
    background: #D4D4D4;
    width: 12px;
    height: 3px;
    border-radius: 4px;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.custom-category-list li a {
    font-size: 1.1rem;
    color: #57534E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom-category-list li:hover {
    transform: translateX(4px);
}

.custom-category-list li:hover a,
.custom-category-list li.current-cat a {
    color: var(--red);
    font-weight: 600;
}

.custom-category-list li:hover::before,
.custom-category-list li.current-cat::before {
    background: var(--red);
    width: 18px;
}


.box-cta .box-image {
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.box-cta .box-image .box-overlay {
	background: #23181599;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.box-cta .box-image .box-content {
	position: relative;
    z-index: 9;
}

.box-cta .box-image .entry-title {
	font-size: 42px;
    color: #FFFFFF;
    font-weight: 700;
    margin: 0 0 32px;
    padding: 0;
}

.box-cta .box-image .entry-title::after {
	display: none;
}

.box-cta .box-image .entry-subtitle {
	font-size: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.box-cta .box-image .entry-desc {
	font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.box-cta .box-image .entry-btn {
	justify-content: center;
}

.box-cta .box-image .entry-btn .btn.btn-red {
	font-size: 14px;
	border-radius: 0;
}

.entry-form {
    background: var(--cream);
    border: 1px solid #F1F1F1;
    border-radius: 24px;
    box-shadow: 0px 4px 12px 0px #0000001F;
    padding: 32px 24px;
}

.entry-form p {
    margin-bottom: 0;
}

.entry-form .form-label {
    font-weight: bold;
}

.entry-form .form-label span {
    color: var(--red);
}

body.page-id-192 .site-main > .container {
    max-width: unset;
}

.box-contact {
    position: relative;
}

.box-contact .box-graph { 
	position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    max-width: 400px;
    opacity: .3;
}

.list-contact {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-contact li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.list-contact li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    transition: .5s ease-in-out;
}

.list-contact li a:hover {
    color: var(--red);
}

.list-contact iconify-icon {
    color: var(--ink);
}


.box-logo-meaning {
    padding: 80px 0;
}

.title-separator {
    width: 32px;
    height: 2px;
    background-color: var(--red);
    margin-bottom: 32px;
}

.box-logo-meaning .entry-desc {
    color: var(--ink-light);
    font-size: 16px;
    padding: 0 12%;
}

.logo-circle-showcase {
    background-color: var(--red);
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.logo-circle-showcase img {
    width: 65%;
    height: auto;
}

.feature-item {
    align-items: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.feature-icon.bg-gold {
    background-color: #D4A843; 
}
.feature-icon.bg-dark {
    background-color: var(--ink); 
}
.feature-icon.bg-brown {
    background-color: var(--ink-light); 
}

.feature-icon .material-symbols-outlined {
    font-size: 24px;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    margin-top: 0;
}

.feature-text p {
    font-size: 14px;
    color: var(--ink-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.logo-footnote {
    font-size: 12px;
    color: var(--ink-light);
    line-height: 1.5;
}


.box-lyrics {
    padding: 80px 0;
}

.box-lyrics .entry-desc {
    color: var(--ink-light);
    font-size: 16px;
}

.lyric-card {
    background: var(--cream);
    padding: 24px;
    border-radius: 0;
}

.lyric-header {
    margin-bottom: 40px;
}

.lyric-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.lyric-credits {
    font-size: 13px;
    color: var(--ink-light);
    margin-bottom: 0;
}

.lyric-verse-block {
    margin-bottom: 32px;
}

.lyric-verse-block:last-child {
    margin-bottom: 0;
}

.verse-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.verse-text {
    font-size: 16px;
    color: var(--ink);
    line-height: 1.6;
    font-weight: 600;
}

.lyric-reff {
    border-left: 3px solid var(--red);
    padding-left: 20px;
    margin-left: 0;
}

.lyric-footer {
    border-top: 1px solid #EBE6DF;
    padding-top: 20px;
    margin-top: 48px;
    font-size: 11px;
    color: var(--ink-light);
}


.article-header .article-title {
	color: var(--ink);
	font-weight: bold;
}

.article-image img {
	/* max-height: 500px;  */
	object-fit: cover;
}

.article-content {
    line-height: 1.8;
}

.article-navigation hr {
    padding-top: 32px;
}

.article-navigation .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.article-navigation .nav-button {
    display: flex;
}

.article-navigation .nav-next {
    margin-left: auto;
}

.article-navigation .nav-button a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #FFFFFF;
    border: 1px solid #EDE8E1;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.article-navigation .nav-button a:hover {
    border-color: var(--red);
    color: var(--red);
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(35, 24, 21, 0.06);
}

.article-navigation .nav-button iconify-icon {
    display: inline-block;
    transition: transform 0.25s ease;
}

.article-navigation .nav-prev a:hover iconify-icon {
    transform: translateX(-4px);
}

.article-navigation .nav-next a:hover iconify-icon {
    transform: translateX(4px);
}


.sidebar-menu, 
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #F2F2F2;
    border-left: 8px solid var(--red);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.sidebar-menu li, 
.sidebar-menu li a, 
.woocommerce-MyAccount-navigation ul li {
	margin: 0;
}

#menu-sidebar.sidebar-menu li {
	display: none;
}

#menu-sidebar.sidebar-menu li.current_page_item ul.sub-menu li, 
#menu-sidebar.sidebar-menu li.current_page_item,
#menu-sidebar.sidebar-menu li.current_page_parent ul.sub-menu li, 
#menu-sidebar.sidebar-menu li.current_page_parent,
#menu-sidebar.sidebar-menu li.current-menu-parent ul.sub-menu li,
#menu-sidebar.sidebar-menu li.current-menu-parent {
	display: block;
}


.sidebar-menu li a, 
.woocommerce-MyAccount-navigation ul li a  {
    display: block;
    background: #FAFAFA;
    padding: 15px 32px;
    border-bottom: 1px solid #F2F2F2;
    font-size: 16px;
    color: #4D4D4D;
}

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

.sidebar-menu li.active a,
.sidebar-menu > li.current-menu-item > a,
.sidebar-menu li.menu-item-has-children ul.sub-menu > li.current-menu-item a,
.sidebar-menu li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    background: #FFFFFF;
    color: var(--red);
    font-weight: 700;
}

.sidebar-menu li ul.sub-menu {
	list-style: none;
    padding: 0;
    margin: 0;
}

.disable-parent .sidebar-menu .current-menu-parent > a {
	display: none;
}


.box-cabang .item-wrapper {
    border-radius: 16px;
    box-shadow: 0px 4px 12px 0px #0000001F;
    overflow: hidden;
}

.box-cabang .item-text {
    position: relative;
    padding: 16px;
    border: 1px solid #F1F1F1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-cabang .item-title {
    font-size: 18px;
    color: #1E1E1E;
    font-weight: 500;
    line-height: 135%;
}

.box-cabang .item-icon {
    line-height: 100%;
}

.box-cabang .item-icon a {
    color: var(--red);
}

.box-cabang .img-wrap {
    position: relative;
}

.box-cabang .img-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.box-cabang .image-wrap-title {
    position: absolute;
    bottom: 5px;
    left: 10px;
    z-index: 999;
    color: #fff;
    z-index: 11;
}

.box-cabang .image-wrap-title-2 {
    position: absolute;
    bottom: 5px;
    right: 10px;
    z-index: 999;
    color: #fff;
    z-index: 11;
}



/* Override
--------------------------------------------- */

.wpcf7-not-valid-tip {
    font-size: 14px;
    margin: 4px 0 0;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 14px;
    margin: 2em 0 1em;
}

.swiper-pagination .swiper-pagination-bullet {
    background: #E2D8CC;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 1;
    margin: 0 12px;
}

.swiper-pagination .swiper-pagination-bullet-active {
	background: var(--red-light);
    width: 25px;
    border-radius: 20px;
}


.wp-pagenavi {
  font-size: 16px;
    text-align: center;
    position: relative;
  margin-top: 24px;
}

.wp-pagenavi .pages {
    position: absolute;
    top: 0;
    left: 12px;
    border: none;
}

.wp-pagenavi .page {
  display: inline-block;
  border: 1px solid transparent;
  padding: 0;
}

.wp-pagenavi a.nextpostslink, 
.wp-pagenavi a.previouspostslink {
    display: inline-block;
    background: var(--red);
  border: 1px solid var(--red-light);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 10px 15px;
  line-height: 100%;
}

.wp-pagenavi a.nextpostslink:hover, 
.wp-pagenavi a.previouspostslink:hover {
    border: 1px solid transparent;
    opacity: .5;
}

.wp-pagenavi a.nextpostslink {
    margin: 0;
    margin-left: 24px;
}

.wp-pagenavi a.previouspostslink {
    margin: 0;
    margin-right: 24px;
}

.wp-pagenavi span.current, 
.wp-pagenavi a.page:hover {
  display: inline-block;
  font-weight: 700;
  color: var(--red);
  padding: 0 12px;
  border: none;
}

.wp-pagenavi a.page {
    color: var(--ink);
    padding: 0 12px;
}


/* Media Query
--------------------------------------------- */

@media (min-width: 992px) {
	
	.list-stats .stat-column:not(:last-child)::after {
		content: '';
		position: absolute;
		right: 0;
		top: 25%;
		height: 50%;
		width: 1px;
		background-color: #E2DCD5;
	}

	.value-card:not(:last-child) {
        border-right: 1px solid #EDE8E1;
    }

}


@media (max-width: 1399.98px) {

    .site-header .btn.btn-red {
        font-size: 14px;
        padding: 6px 12px;
    }

}

@media (max-width: 1199.98px) {

    .site-header .brand-text .brand-large {
        font-size: 20px;
    }
    .site-header .brand-text .brand-small {
        font-size: 12px;
    }

    ul.main-navigation {
        gap: 24px;
    }

}

@media (max-width: 991.98px) {

    .container .container {
        padding-left: 0;
        padding-right: 0;
    }

    .box {
		padding: 56px 0;
	}

	.site-footer .footer-bottom .footer-sub-nav {
		justify-content: flex-start;
	}
    
    .site-footer .footer-graph {
        top: unset;
        bottom: -24px;
    }

    .entry-header {
        margin-bottom: 32px;
    }
	.banner-frontpage .banner-title,
    .banner-single .banner-title {
		font-size: 32px;
	}
    .banner-frontpage .banner-subtitle {
        font-size: 20px;
        line-height: 1.3;
    }
    .banner-single {
        height: 240px;
    }
    .banner-single > .container {
        margin-bottom: 32px;
    }

	.list-stats {
		margin-bottom: -24px;
	}

    .box.box-values-only {
        padding-top: 0;
    }
	.value-card:not(:last-child) {
        border-bottom: 1px solid #EDE8E1;
    }

    .box-about .image-wrapper .decor-box {
        bottom: -10px;
        left: -10px;
    }

    .testimonial-card {
        gap: 24px;
    }
    .testimonial-card .quote-info {
        min-height: unset;
    }

    .box-timeline .entry-desc {
	    font-size: 16px;
	    margin-top: 16px;
	}
	.timeline-wrapper .timeline-line {
		display: none;
	}

    .box-logo-meaning .entry-desc {
        padding: 0 8%;
    }
    .logo-circle-showcase {
        max-width: 300px;
    }
    .logo-features-list {
        margin-top: 32px;
    }

    .featured-card .item-title a {
        font-size: 24px;
        line-height: 125%;
        margin: 16px 0;
    }
    .featured-card .item-desc {
        font-size: 16px;
        color: var(--ink-light);
        line-height: 150%;
        margin: 0 0 16px;
    }
    .featured-card a > img {
        border-right: unset;
        border-bottom: 1px solid #eeeeee;
    }

    .sidebar-menu li a, .woocommerce-MyAccount-navigation ul li a {
        font-size: 16px;
        padding: 12px 20px;
    }

    .entry-milestone::after {
        left: 40px;
    }
    .entry-milestone .square {
        width: 100%;
    }
    .entry-milestone .square-left,
    .entry-milestone .square-right {
        left: 0;
        padding: 15px 15px 15px 100px;
    }
    .entry-milestone .square::before,
    .entry-milestone .square-right::before {
        left: 40px;
        right: auto;
        width: 60px;
    }
    .entry-milestone .square .square-year,
    .entry-milestone .square-right .square-year {
        left: 40px;
        right: auto;
        transform: translateX(-50%);
        font-size: 16px;
        padding: 4px 15px;
    }

}

@media (max-width: 767.98px) { 

	.banner-frontpage {
		height: 600px;
	}
	.banner-frontpage > .container, 
    .banner-single > .container {
		margin-bottom: 32px;
	}

	.box-cta .box-image {
		padding: 64px 24px;
	}
	.box-cta .box-image .entry-subtitle {
		font-size: 14px;
		margin-bottom: 6px;
	}
	.box-cta .box-image .entry-title {
	    font-size: 32px;
	    margin: 0 0 24px;
	}
	.box-cta .box-image .entry-desc {
		font-size: 18px;
	}

}

@media (max-width: 575.98px) {

    .container {
		padding-right: calc(var(--bs-gutter-x) * .75);
    	padding-left: calc(var(--bs-gutter-x) * .75);
	}

	.btn.btn-red,
	.btn.btn-transparent {
		font-size: 14px;
	    padding: 8px 14px;
	}

	.box {
		padding: 40px 0;
	}

	.entry-header {
		margin-bottom: 24px;
	}
	.entry-header .entry-title {
		font-size: 24px;
	}
	.entry-header .entry-subtitle {
		margin-bottom: 0;
	}
	.entry-btn {
        display: inline-flex;
		margin-top: 24px;
	}

    .banner-frontpage .banner-title, 
    .banner-single .banner-title {
        font-size: 28px;
    }
	.banner-frontpage {
		height: 500px;
	}
    .banner-frontpage .banner-subtitle {
        font-size: 16px;
    }

    .list-stats .stat-number {
        font-size: 24px;
    }
    .list-stats .stat-label {
        letter-spacing: 0;
    }

	.box-about .image-wrapper .decor-box {
		bottom: -8px;
	    left: -8px;
	    width: 80px;
	    height: 80px;
	}

	.value-card {
		padding: 24px;
	}

    .article-navigation .nav-button a {
        gap: 6px;
        padding: 8px 16px;
    }

    .entry-form {
        padding: 24px 16px;
    }
}
