/*=====================================================
Template: Artha Inti Raharja - Coal Trading & Mining
Colors:   Gold #c8963e, Dark #19232B
=======================================================*/

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

:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Yantramanav', sans-serif;
  --theme-color: #c8963e;
  --theme-color2: #a87a2e;
  --theme-bg-light: #F2F3F5;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #19232B;
  --hero-overlay-color: #000000;
  --footer-bg: #19232B;
  --footer-bg2: #161E25;
  --footer-text-color: #F5FAFF;
  --box-shadow: 0 0 40px 5px rgba(0,0,0,.05);
  --border-info-color: rgba(0,0,0,0.08);
  --border-white-color: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body-font); font-size: 16px; color: var(--body-text-color); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: var(--theme-color); transition: all .3s; }
a:hover { color: var(--theme-color2); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 { font-family: var(--heading-font); color: var(--color-dark); font-weight: 700; }
.py-120 { padding: 120px 0; }
.pt-120 { padding-top: 120px; }
.pb-120 { padding-bottom: 120px; }
.pb-50 { padding-bottom: 50px; }
.pb-80 { padding-bottom: 80px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }

/* SITE TITLE */
.site-title-tagline {
  text-transform: uppercase; letter-spacing: 4px; font-size: 18px;
  font-weight: 700; color: var(--theme-color); position: relative;
  display: inline-block; padding-bottom: 10px; border-bottom: 2px solid var(--theme-color);
}
.site-title { font-weight: 800; font-size: 48px; color: var(--color-dark); margin-top: 10px; margin-bottom: 15px; }
.site-title span { color: var(--theme-color); }
.site-heading { margin-bottom: 60px; text-align: center; }
.site-heading p { max-width: 600px; margin: 0 auto; color: var(--body-text-color); }

/* THEME BUTTON */
.theme-btn {
  font-size: 14px; color: var(--color-white); padding: 14px 28px;
  transition: all 0.5s; text-transform: uppercase; position: relative;
  font-weight: 600; letter-spacing: 1px; cursor: pointer; text-align: center;
  overflow: hidden; border: none; background: var(--theme-color);
  display: inline-block; z-index: 1;
}
.theme-btn::before {
  content: ""; height: 300px; width: 300px; background: var(--color-dark);
  border-radius: 50%; position: absolute; top: 50%; left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25,0.46,0.45,0.94); z-index: -1;
}
.theme-btn:hover { color: var(--color-white); }
.theme-btn:hover::before { transform: translateY(-50%) translateX(-50%) scale(1); }
.theme-btn2 { background: var(--color-dark); }
.theme-btn2::before { background: var(--theme-color); }

/* SCROLL TOP */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px;
  background: var(--theme-color); color: var(--color-white); border: none;
  border-radius: 4px; font-size: 20px; cursor: pointer; z-index: 999;
  opacity: 0; visibility: hidden; transition: all .3s; display: flex;
  align-items: center; justify-content: center;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--color-dark); }

/* PRELOADER */
.preloader {
  position: fixed; z-index: 99999; width: 100%; height: 100%;
  background: var(--theme-color); display: flex; align-items: center; justify-content: center;
  transition: opacity .3s;
}
.loader { width: 50px; height: 50px; border: 3px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* TOP HEADER */
.header-top { background: var(--color-dark); padding: 10px 0; font-size: 14px; }
.header-top-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.header-top-contact ul { display: flex; gap: 25px; flex-wrap: wrap; }
.header-top-contact ul li { color: rgba(255,255,255,.7); }
.header-top-contact ul li i { color: var(--theme-color); margin-right: 6px; }
.header-top-contact ul li a { color: rgba(255,255,255,.7); }
.header-top-social { display: flex; align-items: center; gap: 12px; }
.header-top-social span { color: rgba(255,255,255,.7); }
.header-top-social a { color: rgba(255,255,255,.7); font-size: 14px; transition: all .3s; }
.header-top-social a:hover { color: var(--theme-color); }

/* NAVBAR */
.main-navigation { background: rgba(25,35,43,.95); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,.1); }
.navbar { padding: 0; }
.navbar-brand img { height: 42px; width: auto; max-width: 170px; object-fit: contain; }
.navbar .nav-link {
  color: rgba(255,255,255,.85) !important; font-size: 14px;
  font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  padding: 25px 16px !important; transition: all .3s;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--theme-color) !important; }
.dropdown-menu { background: var(--color-dark); border: none; border-radius: 0; padding: 0; margin-top: 0; }
.dropdown-item { color: rgba(255,255,255,.85) !important; font-size: 13px; padding: 10px 20px; font-weight: 500; transition: all .3s; }
.dropdown-item:hover { background: var(--theme-color); color: #fff !important; }
.dropdown-toggle::after { font-size: 10px; margin-left: 4px; }
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }

@media(max-width:991px){
  .navbar .nav-link { padding: 12px 16px !important; }
  .navbar-nav { padding: 15px 0; }
  .dropdown-menu { background: rgba(255,255,255,.03); padding-left: 15px; }
  .dropdown-item { padding: 8px 20px; }
}

/* BREADCRUMB */
.site-breadcrumb {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; background: linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),url('https://images.unsplash.com/photo-1578496479914-7ef3b0193be3?w=1400') no-repeat center/cover;
  position: relative; padding-top: 170px; padding-bottom: 150px; z-index: 1;
}
.breadcrumb-title { font-size: 42px; font-weight: 800; color: var(--color-white); margin-bottom: 10px; }
.breadcrumb-menu { display: flex; gap: 8px; color: rgba(255,255,255,.8); font-size: 15px; }
.breadcrumb-menu a { color: var(--theme-color); }
.breadcrumb-menu span { color: rgba(255,255,255,.5); }

/* HERO */
.hero-section { position: relative; overflow: hidden; }
.hero-single {
  padding: 200px 0 180px; position: relative;
  background-size: cover; background-position: center; z-index: 1;
}
.hero-single::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.85), rgba(0,0,0,.4));
  z-index: -1;
}
.hero-title { font-size: 60px; font-weight: 900; color: var(--color-white); line-height: 1.15; margin-bottom: 20px; }
.hero-title span { color: var(--theme-color); }
.hero-subtitle {
  color: var(--theme-color); font-size: 18px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 4px; margin-bottom: 12px;
}
.hero-text { color: rgba(255,255,255,.7); font-size: 17px; max-width: 520px; margin-bottom: 35px; }
.hero-btn { margin-right: 12px; }
.hero-img { text-align: right; }
.hero-img img, .hero-right-img { max-width: 320px; height: auto; }

/* ABOUT */
.about-left { position: relative; }
.about-left img { border-radius: 10px; width: 100%; }
.about-experience {
  position: absolute; bottom: -25px; right: -10px;
  background: var(--theme-color); color: #fff; padding: 25px 30px;
  border-radius: 10px; text-align: center;
}
.about-experience h2 { font-size: 42px; font-weight: 900; color: #fff; line-height: 1; }
.about-experience p { color: rgba(255,255,255,.9); margin: 5px 0 0; font-size: 14px; }
.about-right { padding-left: 30px; }
.about-list { margin-bottom: 25px; }
.about-list li { display: flex; gap: 10px; margin-bottom: 12px; color: var(--color-dark); font-weight: 500; }
.about-list li i { color: var(--theme-color); margin-top: 4px; }

/* FEATURES */
.feature-item {
  text-align: center; padding: 40px 25px; background: #fff;
  border-radius: 10px; box-shadow: var(--box-shadow); margin-bottom: 25px;
  transition: all .4s;
}
.feature-item:hover { transform: translateY(-8px); }
.feature-icon {
  width: 75px; height: 75px; line-height: 75px; text-align: center;
  font-size: 32px; background: rgba(200,150,62,.1); color: var(--theme-color);
  border-radius: 50%; margin: 0 auto 22px; transition: all .4s;
}
.feature-item:hover .feature-icon { background: var(--theme-color); color: #fff; }
.feature-item h4 { font-size: 19px; margin-bottom: 10px; }

/* ABOUT PAGE specifics */
.about-area .about-left { margin-bottom: 0; }
.about-area .about-right { padding-top: 30px; }

/* SERVICE */
.service-item {
  background: var(--color-dark); padding: 40px 30px; margin-bottom: 25px;
  border-radius: 10px; text-align: center; position: relative; overflow: hidden;
  transition: all .4s; z-index: 1;
}
.service-item::after {
  content: ''; position: absolute; width: 100%; height: 100%;
  top: 0; left: 0; background: var(--theme-color); z-index: -1;
  transform: translateY(100%); transition: all .4s;
}
.service-item:hover::after { transform: translateY(0); }
.service-item:hover .service-icon, .service-item:hover .service-title, .service-item:hover .service-text { color: #fff !important; }
.service-item:hover .service-arrow { color: #fff; border-color: #fff; }
.service-img { margin-bottom: 25px; }
.service-icon { font-size: 48px; color: var(--theme-color); margin-bottom: 20px; transition: all .4s; }
.service-title { font-size: 20px; color: var(--color-white); margin-bottom: 12px; transition: all .4s; }
.service-text { font-size: 14px; transition: all .4s; }
.service-arrow {
  display: inline-block; width: 40px; height: 40px; line-height: 40px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--theme-color);
  margin-top: 18px; font-size: 14px; transition: all .4s;
}
.bg { background: var(--theme-bg-light); }

/* COUNTER */
.counter-area {
  background: linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.8)),url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=1400') no-repeat center/cover;
  padding: 80px 0;
}
.counter-box { text-align: center; }
.counter-box .icon { font-size: 45px; color: var(--theme-color); margin-bottom: 10px; }
.counter-box .counter { font-size: 48px; font-weight: 900; color: #fff; }
.counter-box .counter + span { font-size: 48px; font-weight: 900; color: #fff; }
.counter-box h5 { font-size: 16px; color: rgba(255,255,255,.7); margin-top: 5px; text-transform: uppercase; letter-spacing: 1px; }

/* PROCESS */
.process-item {
  text-align: center; padding: 30px 20px; margin-bottom: 25px; position: relative;
}
.process-num {
  width: 65px; height: 65px; line-height: 65px; border-radius: 50%;
  background: var(--theme-color); color: #fff; font-size: 24px;
  font-weight: 800; margin: 0 auto 20px; position: relative;
}
.process-num::after {
  content: ''; position: absolute; top: 5px; left: 5px; right: 5px; bottom: 5px;
  border: 2px dashed rgba(255,255,255,.5); border-radius: 50%;
}
.process-item h4 { font-size: 20px; margin-bottom: 10px; }

/* CTA */
.cta-area {
  background: linear-gradient(135deg, var(--color-dark), #0d1520);
  text-align: center; padding: 80px 0;
}
.cta-area h2 { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-area h2 span { color: var(--theme-color); }
.cta-area p { color: rgba(255,255,255,.6); max-width: 650px; margin: 0 auto 30px; font-size: 16px; }

/* TEAM */
.team-item {
  text-align: center; margin-bottom: 25px; border-radius: 10px; overflow: hidden;
  box-shadow: var(--box-shadow); background: #fff; transition: all .4s;
}
.team-item:hover { transform: translateY(-8px); }
.team-img { position: relative; overflow: hidden; }
.team-img img { width: 100%; transition: all .4s; }
.team-item:hover .team-img img { transform: scale(1.05); }
.team-social {
  position: absolute; bottom: -50px; left: 0; right: 0; display: flex;
  justify-content: center; gap: 10px; transition: all .4s;
}
.team-item:hover .team-social { bottom: 20px; }
.team-social a {
  width: 38px; height: 38px; line-height: 38px; background: var(--theme-color);
  color: #fff; border-radius: 50%; font-size: 14px; transition: all .3s;
}
.team-social a:hover { background: var(--color-dark); }
.team-content { padding: 25px 20px; }
.team-content h4 { margin-bottom: 4px; }
.team-content p { color: var(--theme-color); font-size: 14px; }
.team-bio { padding: 0 20px 25px; font-size: 14px; }

/* GALLERY */
.gallery-item {
  position: relative; margin-bottom: 25px; border-radius: 10px; overflow: hidden;
}
.gallery-img img { width: 100%; transition: all .4s; }
.gallery-item:hover .gallery-img img { transform: scale(1.05); }
.gallery-content {
  position: absolute; inset: 0; background: rgba(200,150,62,.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all .4s;
}
.gallery-item:hover .gallery-content { opacity: 1; }
.gallery-link {
  width: 55px; height: 55px; line-height: 55px; background: #fff;
  color: var(--theme-color); text-align: center; border-radius: 50%; font-size: 20px;
}
.gallery-link:hover { background: var(--color-dark); color: #fff; }

/* BLOG */
.blog-item { margin-bottom: 25px; border-radius: 10px; overflow: hidden; box-shadow: var(--box-shadow); background: #fff; }
.blog-item-img { position: relative; overflow: hidden; }
.blog-item-img img { width: 100%; transition: all .4s; }
.blog-item:hover .blog-item-img img { transform: scale(1.05); }
.blog-date {
  position: absolute; bottom: 15px; right: 15px;
  background: var(--theme-color); color: #fff; padding: 8px 15px;
  border-radius: 5px; font-size: 13px; font-weight: 500;
}
.blog-item-info { padding: 25px 20px; }
.blog-item-meta { display: flex; gap: 15px; margin-bottom: 10px; font-size: 13px; }
.blog-item-meta a { color: var(--body-text-color); }
.blog-item-meta i { color: var(--theme-color); margin-right: 4px; }
.blog-title { font-size: 18px; margin-bottom: 12px; }
.blog-title a { color: var(--color-dark); }
.blog-title a:hover { color: var(--theme-color); }

/* SIDEBAR */
.sidebar { padding: 25px; background: #fff; box-shadow: var(--box-shadow); border-radius: 10px; margin-bottom: 30px; }
.sidebar h4 { font-size: 20px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--theme-color); }
.sidebar .form-control { height: 50px; border-radius: 6px; border: 1px solid #ddd; padding: 0 15px; }
.sidebar ul li { padding: 8px 0; border-bottom: 1px solid #eee; }
.sidebar ul li a { color: var(--color-dark); font-size: 14px; }
.sidebar ul li a:hover { color: var(--theme-color); padding-left: 5px; }
.sidebar ul li span { float: right; color: var(--theme-color); }
.sidebar .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar .tag-cloud a { padding: 6px 14px; background: var(--theme-bg-light); color: var(--color-dark); border-radius: 4px; font-size: 13px; }
.sidebar .tag-cloud a:hover { background: var(--theme-color); color: #fff; }

/* PAGINATION */
.pagination-area { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.pagination-area a, .pagination-area span {
  width: 42px; height: 42px; line-height: 42px; text-align: center;
  background: #fff; color: var(--color-dark); border-radius: 6px;
  box-shadow: var(--box-shadow); font-weight: 500; font-size: 15px;
}
.pagination-area a.active, .pagination-area a:hover { background: var(--theme-color); color: #fff; }

/* CONTACT */
.contact-wrapper { position: relative; }
.contact-content { margin-bottom: 30px; }
.contact-info {
  display: flex; gap: 15px; padding: 25px; background: #fff;
  border-radius: 10px; box-shadow: var(--box-shadow); margin-bottom: 25px;
  align-items: center;
}
.contact-info-icon {
  width: 55px; height: 55px; line-height: 55px; text-align: center;
  background: rgba(200,150,62,.1); color: var(--theme-color);
  border-radius: 50%; font-size: 22px; flex-shrink: 0;
}
.contact-info-content h5 { font-size: 17px; margin-bottom: 4px; }
.contact-info-content p { font-size: 14px; margin: 0; }
.contact-form { padding: 35px; background: #fff; border-radius: 10px; box-shadow: var(--box-shadow); }
.contact-form .form-control {
  height: 50px; border: 1px solid #eee; border-radius: 6px; padding: 0 15px;
  margin-bottom: 20px; font-size: 14px;
}
.contact-form textarea.form-control { height: auto; padding: 15px; }
.contact-form .form-control:focus { border-color: var(--theme-color); box-shadow: none; }
.contact-map { margin-top: 30px; }
.contact-map iframe { width: 100%; height: 400px; border: 0; border-radius: 10px; }

/* TESTIMONIAL */
.testimonial-item {
  background: #fff; padding: 30px; border-radius: 10px; box-shadow: var(--box-shadow);
  margin: 15px; text-align: center;
}
.testimonial-item .rating { color: var(--theme-color); margin-bottom: 10px; font-size: 14px; }
.testimonial-quote { font-size: 15px; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-author img { width: 55px; height: 55px; border-radius: 50%; }
.testimonial-author h5 { margin: 0; font-size: 16px; }
.testimonial-author p { margin: 0; font-size: 13px; color: var(--theme-color); }

/* PRICING */
.pricing-item {
  background: #fff; padding: 40px 30px; text-align: center;
  border-radius: 10px; box-shadow: var(--box-shadow); margin-bottom: 25px;
  transition: all .4s; position: relative; overflow: hidden;
}
.pricing-item:hover { transform: translateY(-6px); }
.pricing-item.active { border: 2px solid var(--theme-color); }
.pricing-header { margin-bottom: 25px; }
.pricing-header h3 { font-size: 22px; }
.pricing-amount { font-size: 48px; font-weight: 900; color: var(--theme-color); margin: 15px 0; }
.pricing-amount span { font-size: 18px; font-weight: 400; }
.pricing-feature { margin-bottom: 30px; }
.pricing-feature li { padding: 10px 0; border-bottom: 1px solid #eee; font-size: 14px; }
.pricing-feature li i { color: var(--theme-color); margin-right: 6px; }

/* FAQ */
.faq-item { margin-bottom: 15px; border: 1px solid #eee; border-radius: 8px; }
.faq-btn {
  width: 100%; padding: 16px 20px; text-align: left; background: #fff;
  border: none; font-size: 16px; font-weight: 600; color: var(--color-dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  border-radius: 8px; font-family: var(--heading-font);
}
.faq-btn i { color: var(--theme-color); transition: transform .3s; }
.faq-btn.collapsed i { transform: rotate(0); }
.faq-btn:not(.collapsed) i { transform: rotate(180deg); }
.faq-body { padding: 0 20px 20px; font-size: 14px; }

/* WHY-CHOOSE */
.choose-item {
  display: flex; gap: 15px; margin-bottom: 25px; padding: 20px;
  background: #fff; border-radius: 10px; box-shadow: var(--box-shadow);
  border-left: 4px solid var(--theme-color); transition: all .3s;
}
.choose-item:hover { transform: translateX(8px); }
.choose-icon { font-size: 28px; color: var(--theme-color); margin-top: 3px; }
.choose-item h5 { font-size: 17px; margin-bottom: 5px; }

/* PARTNER */
.partner-area { padding: 40px 0; background: var(--theme-bg-light); }
.partner-item { text-align: center; padding: 15px; }
.partner-item img { max-width: 140px; filter: grayscale(1); opacity: .5; transition: all .3s; }
.partner-item:hover img { filter: grayscale(0); opacity: 1; }

/* FOOTER */
.footer-area { background: var(--footer-bg); position: relative; }
.footer-top { padding: 100px 0 60px; }
.footer-widget { margin-bottom: 30px; }
.footer-widget img.logo { height: 40px; width: auto; max-width: 200px; margin-bottom: 18px; }
.footer-widget p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.8; }
.footer-widget-title {
  color: #fff; font-size: 19px; margin-bottom: 22px; padding-bottom: 12px;
  position: relative;
}
.footer-widget-title::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 40px;
  height: 2px; background: var(--theme-color);
}
.footer-list li { margin-bottom: 10px; }
.footer-list li a { color: rgba(255,255,255,.6); font-size: 14px; transition: all .3s; }
.footer-list li a:hover { color: var(--theme-color); padding-left: 5px; }
.footer-list li i { color: var(--theme-color); margin-right: 8px; font-size: 12px; }
.footer-newsletter .form-control {
  height: 48px; border-radius: 6px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05); color: #fff; padding: 0 15px; font-size: 14px;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.4); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: 14px; margin: 0; }
.footer-bottom p a { color: var(--theme-color); }

/* RESPONSIVE */
@media(max-width:991px){
  .hero-title { font-size: 38px; }
  .site-title { font-size: 32px; }
  .breadcrumb-title { font-size: 28px; }
  .py-120 { padding: 80px 0; }
  .site-breadcrumb { padding-top: 140px; padding-bottom: 120px; }
  .about-right { padding-left: 0; margin-top: 40px; }
  .hero-single { padding: 150px 0 100px; }
  .counter-box { margin-bottom: 25px; }
  .footer-widget { margin-bottom: 20px; }
  .header-top-wrapper { justify-content: center; gap: 10px; }
}
@media(max-width:767px){
  .hero-title { font-size: 28px; }
  .site-title { font-size: 26px; }
  .hero-single { padding: 130px 0 80px; }
  .breadcrumb-title { font-size: 24px; }
  .about-experience { display: none; }
  .header-top,
  .header-top-wrapper,
  .header-top-contact,
  .header-top-social { display: none !important; }
  .main-navigation .navbar > .container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .navbar-brand {
    display: flex !important;
    align-items: center !important;
  }
  .navbar-brand img {
    height: 26px !important;
    width: auto !important;
    max-width: 46px !important;
  }
  .navbar-brand-mobile-text {
    display: inline-block !important;
    font-family: var(--heading-font) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    color: #ffffff !important;
    letter-spacing: 1px !important;
    margin-left: 8px !important;
    white-space: nowrap !important;
  }
  .navbar-toggler {
    flex-shrink: 0 !important;
    padding: 4px 8px !important;
  }
}
.navbar-brand-mobile-text { display: none; }
