/*!
Theme Name: OJA Theme
Description: A modern, clean, and flexible WordPress theme built for full compatibility with the Gutenberg block editor. Ideal for creating visually rich, fast, and accessible websites with ease. Includes support for custom blocks, wide and full alignments, and all core Gutenberg features.
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: oja-theme
Tags: Custom-Background, Custom-Logo, Custom-Menu, Featured-Images, Threaded-Comments, Translation-Ready, Block-Styles, Wide-Alignments, Editor-Style



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

oja-theme is based on Webytude https://webytude.com/, (C) 2012-2020 Automattic, Inc.
Webytude 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/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

@font-face {
    font-family: 'Campton';
    src: url('assets/fonts/Campton-Medium.woff') format('woff2'),
        url('assets/fonts/Campton-Medium.woff2') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Campton Book';
    src: url('assets/fonts/Campton-Book.woff2') format('woff2'),
        url('assets/fonts/Campton-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --container-width: 1472px;

  /* Colors */
  --color-brand: #CC4806;
  --color-brand-hover: #AD3100;

  /* From Figma */
  --color-background-gray: #F5F3F0;
  --color-background-white: #FAF9F7;
  --color-black: #373737;
  --color-light-black: #404040;
  --color-oja-blue: #007BA1;
  --color-oja-light-blue: #E9F3F6;
  --color-oja-orange: #F05A28;
  --color-oja-turquoise: #4DABC2;
  --color-oja-yellow: #F1C945;
  --color-oja-blue-hover: #00556F;
  --color-button-gray: #A8A8A8;
  --color-oja-red: #6D1612;
  --color-medium-blue: #3C9FB7;
  --color-deep-amber: #D07F18;
  --color-oja-burgundy: #6D1612;
  --color-medium-gray: #8E8E8E;
  /* End From Figma */

  --color-dark: #1f1f1f;
  --color-dark-2: #2b2b2b;
  --color-white: #ffffff;
  --color-light: #F2F2F2;
  --color-gray: #A8A8A8;
  --color-light-blue: #E9F3F6;
  --color-light-gray: #FAF9F7;

  --color-text-dark: var(--color-black);
  --color-text-light: #ffffff;
  --color-text-muted: #6b6b6b;
  --color-text-blue: var(--color-oja-blue);

  /* Border */
  --border-dark: var(--color-button-gray);
  --border-light: #F2F2F2;
  --border-blue: var(--color-oja-blue);

  /* Radius */
  --radius-pill: 100px;
  --radius-sm: 5px;

  /* Font */
  --font-primary: "Plus Jakarta Sans", sans-serif;
  --font-campton: 'Campton';
  --font-campton-book: 'Campton Book';

  /* Transition */
  --transition: all 0.25s ease;

  --text-color-heading: #007BA7;
  --text-color-body: #333333;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: var(--font-primary);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
input:focus {
  outline: none;
}
ul li {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.b-radius {
  border-radius: 5px;
}
/* --- Global Typography --- */

.h-xxxl, .h-xxl, .h-xl, .h-l {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
}

.h-m, .h-s, .h-xs {
  font-family: var(--font-campton);
  line-height: 1.3;
}
.h-s-book {
  font-family: var(--font-campton-book);
}
.campton {
  font-family: var(--font-campton);
}
.campton-book {
  font-family: var(--font-campton-book);
}

[class^="body-"] {
    font-family: var(--font-primary);
    line-height: 1.5;
}

/* --- Font Weights --- */
.h-m, .h-s, .h-xs, .body-s-med, .body-xs { font-weight: 500; } 
.h-s-book, .body-l, .body-s-reg { font-weight: 400; }
.body-s-bold { font-weight: 700; }


/* --- Font Sizes (Mobile Base) --- */
.h-xxxl   { font-size: 57px; }
.h-xxl    { font-size: 46px; }
.h-xl     { font-size: 37px; }
.h-l      { font-size: 29px; }
.h-m      { font-size: 26px; }
.h-s, .h-s-book { font-size: 23px; }
.h-xs     { font-size: 19px; }

.body-l      { font-size: 19px; }
.body-s-reg, .body-s-med, .body-s-bold { font-size: 15px; }
.body-xs     { font-size: 12px; }


/* --- Desktop Sizes --- */
@media (min-width: 1024px) {
  .h-xxxl   { font-size: 112px; }
  .h-xxl    { font-size: 86px; }
  .h-xl     { font-size: 65px; }
  .h-l      { font-size: 50px; }
  .h-m      { font-size: 38px; }
  .h-s, .h-s-book { font-size: 29px; }
  .h-xs     { font-size: 22px; }

  .body-l      { font-size: 22px; }
  .body-s-reg, .body-s-med, .body-s-bold { font-size: 17px; }
  .body-xs     { font-size: 13px; }
}

/* ========== Base ========== */
.site-topbar {
  background: var(--color-background-white); /* #FAF9F7; */
  position: relative;
  z-index: 1000;
}
.topbar-inner {
  max-width: var(--container-width);
  margin: auto;
  padding: 13px 20px;
}
.topbar-center {
  grid-column: 2;
  text-align: center;
}
.topbar-right {
  grid-column: 3;
  text-align: right;
}
.site-header {
  width: 100%;
  background: var(--color-white);
  color: var(--text-color);
  /* border-bottom: 1px solid var(--border-color); */
  position: sticky;
  top: 0;
  z-index: 1000;
  /* box-shadow: 0px 1px 5px #00000010; */
  transition:
    transform 0.45s ease,
    background-color 0.35s ease,
    /* border-color 0.35s ease,
    box-shadow 0.35s ease, */
    color 0.25s ease;
}
.site-header.is-sticky .header-inner {
  padding: 20px; 
}
.site-header.nav-hidden {
  transform: translateY(-100%);
}
.header-inner {
  max-width: var(--container-width);
  margin: auto;
  padding: 45px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}
.header-center {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}
.mega-menu-active .site-header.is-sticky,
.mega-menu-active .site-header {
  background: var(--color-text-dark);
}

/* ========== Navigation ========== */
.main-navigation {
  transition: opacity 0.25s ease;
}
.main-navigation ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
.main-navigation a {
  text-decoration: none;
  /* color: var(--text-color); */
  font-weight: 500;
  font-size: 17px;
}
.main-navigation a:hover {
  color: var(--color-brand);
}
/* .main-navigation ul .sub-menu {
  display: none;
} */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cursor-pointer {
  cursor: pointer;
}
.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
}
.search-submit,
.search-toggle {
  color: var(--color-text-dark);
}
.search-submit:hover,
.search-toggle:hover {
  color: var(--color-text-blue);
}

/* ========== Search ========== */
.header-search {
  position: absolute;
  top: -15px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.3s ease;
}
.search-inner {
  display: flex;
  align-items: center;
  gap: 25px;
}
.site-header.search-open .header-search {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header.search-open .main-navigation,
.site-header.search-open .search-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.header-search input {
  flex: 1;
  padding: 15px 32px;
  border-radius: 200px;
  border: 1px solid var(--border-dark);
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 24px;
  width: 687px;
}
.search-submit {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 32px;
}
.search-box {
  position: relative;
}
.search-close {
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle,
.menu-close {
  display: none;
}
@media (max-width: 1250px) {
  .main-navigation ul {
    gap: 15px;
  }
}

/* ========== Button ========== */
.btn,
.wpcf7-submit,
.addtoany_list.a2a_kit_size_32 a {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  padding: 15px 40px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary,
.wpcf7-submit {
  background: var(--color-brand);
  color: var(--color-white);
}

.btn-primary:hover,
.wpcf7-submit:hover {
  background: var(--color-brand-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-dark);
  border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
  color: var(--color-brand);
  border: 1px solid var(--color-brand);
}

.btn-secondary-light {
  background: transparent;
  color: var(--color-light);
  border: 1px solid var(--border-light);
}

.btn-secondary-light:hover {
  color: var(--color-brand);
  border: 1px solid var(--color-brand);
}

.btn-tertiary,
.btn-tertiary-icon,
.btn-anchor,
.addtoany_list.a2a_kit_size_32 a {
  background: transparent;
  color: var(--color-text-dark);
  border-bottom: 1px solid var(--border-dark);
  border-radius: 0;
  padding: 2px 0;
}
.btn-tertiary-icon{
  position: relative;
  padding-right: 20px;
  border: 1px solid transparent;
}
.btn-tertiary-icon::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);

}
.btn-tertiary-icon .icon-wrapper{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.btn-tertiary-icon svg path{
  fill:var(--color-text-dark);
  transition: var(--transition);
}
 .btn-anchor{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
  }
  .btn-anchor::after {
    content: "";
    -webkit-mask: url("assets/images/chevron.svg") no-repeat center / contain;
    mask: url("assets/images/chevron.svg") no-repeat center / contain;
    background-color: var(--color-black);
    width: 13px;
    height: 16px;
  }

  .btn-anchor:hover::after{
    background-color: var(--color-text-blue);
  }

.btn-tertiary:hover,
.btn-anchor:hover,
.addtoany_list.a2a_kit_size_32 a:hover {
  color: var(--color-text-blue);
  border-bottom: 1px solid var(--border-blue);
}
.btn-tertiary-icon:hover{
  color: var(--color-text-blue);
}
.btn-tertiary-icon:hover::before{
    width: calc(100% + 10px);
    border-bottom: 1px solid var(--border-blue);
}
.btn-tertiary-icon:hover svg path{
  fill:var(--color-text-blue);
}
.btn-tertiary-icon:hover .icon-wrapper{
  right: -10px;
}
.btn-white {
  color: var(--color-white);
}
.btn-search {
  background: var(--color-oja-blue);
  color: var(--color-white);
}
.btn-search:hover {
  background: var(--color-oja-blue-hover);
}
.addtoany_list.a2a_kit_size_32 a {
  font-size: 17px !important;
}
/* ========== Footer ========== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0px 20px;
}
.section {
  padding: 100px 0px;
}
.footer {
  background: var(--color-text-dark);
  overflow: hidden;
  position: relative;
}
.footer-wrapper {
  background: #2B2B2B99;
  backdrop-filter: blur(200px);
  position: relative;
  color: var(--color-light);
  padding: 70px 0px 30px;
}
.round-bg1,
.round-bg2,
.round-bg3 {
  position: absolute;
}
.round-bg1 {
  background: url(./assets/images/rount1.png) 0px 0px no-repeat;
  width: 896px;
  height: 380px;
  right: 118px;
  top: 0;
}
.round-bg2 {
  background: url(./assets/images/round2.png) 0px 0px no-repeat;
  width: 238px;
  height: 428px;
  right: 0;
  top: 145px;
}
.round-bg3 {
  background: url(./assets/images/round3.png) 0px 0px no-repeat;
  width: 302px;
  height: 151px;
  right: 276px;
  bottom: 0;
}
.footer-top {
  display: grid;
  align-items: end;
  gap: 24px;
}
.footer-divider {
  border: none;
  border-bottom:1px solid var(--color-light);
}
.footer-bottom {
  display: grid;
  gap: 60px;
  position: relative;
}
.footer-logos {
  margin-bottom: 20px;
}
.footer-description {
  margin-bottom: 50px;
  color: var(--color-light);
}
.footer-brand address {
  font-style: normal;
  font-size: 13px;
  line-height: 16px;
}
.footer-brand address strong {
  display: block;
}
.footer-brand address a {
  color: var(--color-light);
  text-decoration: none;
}
.footer-col h4 {
  margin-bottom: 21px;
  font-size: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 5px;
}
.footer-col ul li a {
  color: var(--color-light);
  text-decoration: none;
}
.footer-col ul li a:hover {
  color: #fff;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  margin: 28px 0px 24px;
}
.social-icons a {
  color: var(--color-light);
  text-decoration: none;
}
.footer-copy {
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
}
.footer-connected h3 {
  font-family: 'Campton';
  font-size: 29px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-connected p {
  font-size: 22px;
  line-height: 32px;
  max-width: 607px;
}
.wpcf7-text {
  width: 100%;
  border: 1px solid var(--color-light);
  background: none;
  font-size: 17px;
  line-height: 24px;
  color: var(--color-light);
  border-radius: 200px;
  padding: 23px 32px;
}
.footer-top .wpcf7-form {
  position: relative;
}
.wpcf7-spinner {
  display: none;
}
.footer-col .btn-secondary {
  color: var(--color-light);
  border-color: var(--color-light);
}
.artical-box {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.featured-box h3 {
  font-family: 'Campton';
  font-weight: normal;
}
.f_title {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 20px;
}
.menu_heading {
  font-size: 29px;
  line-height: 36px;
  /* padding: 40px 0px 30px; */
}
.menu-card-box .menu_heading {
  padding: 40px 0px 30px;
}
/* .featured-box .image-wrapper {
  margin: 20px 0px 30px;
} */
.border-orange {
  border-bottom: 16px solid var(--color-oja-orange);
}
.border-blue {
  border-bottom: 16px solid var(--color-oja-turquoise);
}
.border-yellow {
  border-bottom: 16px solid var(--color-oja-yellow);
}
.list-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.flex-actions {
  display: flex;
  justify-content: space-between;
}
.menu-contact {
  margin-top: 30px;
}
.menu-connect .social-icons {
  margin-top: 10px;
}
.image-caption {
  font-weight: 500;
  font-size: 13px;
  padding-top: 5px;
}
.btn-pill {
  min-width: 160px;
}
.support-text {
  width: 70%;
}
.heading-two {
  margin-bottom: 70px;
}
.heading-two h2 {
  margin-bottom: 22px;
}
.heading-two .caption {
  max-width: 670px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumb {
  padding: 30px 0px;
  display: flex;
  gap: 20px;
  color: var(--color-gray);
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; 
}
.breadcrumb span {
  font-weight: 500;
  color: var(--color-black);
}
.breadcrumb a {
  color: var(--color-gray);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--color-black);
}
@media (min-width: 1170px) {
  .hide-lg-up {
    display: none;
  }
  .mega-menu-overlay {
    position: fixed;
    inset: 0; 
    background: var(--color-text-dark);
    z-index: 999;
    opacity: 0;
    /* visibility: hidden; */
    pointer-events: none;
    transform: translateY(-170%);
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    padding-top: 235px;
    color: var(--color-light);
  }
  .mega-menu-overlay.is-open {
    opacity: 1;
    /* visibility: visible; */
    pointer-events: auto;
    transform: translateY(0);
  }

  .mega-menu-container {
      max-width: var(--container-width);
      margin: 0 auto;
      height: 100vh;
      display: grid;
      grid-template-columns: 45% 1fr;
      gap: 80px;
      padding: 0px 0px 0px 45px;
  }
  .mega-menu-active {
    overflow: hidden;
  }
  .main-navigation a {
    color: var(--color-text-dark);
  }
  .light-mode .main-navigation a,
  .light-mode .search-submit, 
  .light-mode .search-toggle,
  .light-mode .btn-tertiary,
  .light-mode .btn-anchor,
  .light-mode .btn-secondary,
  .mega-menu-overlay .btn-secondary,
  .light-mode .header-search input {
    color: var(--color-light);
  }
  .mega-menu-overlay .btn-secondary:hover,
  .light-mode .btn-secondary:hover {
    color: var(--color-brand);
  }
  .light-mode .btn-secondary {
    border-color: var(--border-light);
  }
  .light-mode .btn-secondary:hover {
    border-color: var(--color-brand);
  }
  .light-mode .header-search input {
    background: none;
    border-color: var(--border-light);
  }
  .light-mode .main-navigation a:hover,
  .light-mode .main-navigation .is-active a {
    color: var(--color-oja-orange);
  }
  .site-branding svg path {
    transition: fill 0.3s ease;
  }
  .light-mode .site-branding svg path[fill="#373737"]  {
    fill: var(--color-light);
  }
  .mega-left-col h2 {
    font-weight: 600;
    font-size: 50px;
    line-height: 56px;
    margin: 50px 0px;
  }
  .sub-menu li {
    font-size: 29px;
    font-family: 'Campton Book';
    line-height: 36px;
    padding: 20px 0px;
  }
  .sub-menu li a {
    text-decoration: none;
    color: var(--color-light);
  }
  .sub-menu li a:hover {
    color: var(--color-brand);
  }
  .mega-right-col .featured-box .template-2-image img {
    height: 270px;
    width: 100%;
    object-fit: cover;
  }
}
@media (min-width: 1024px) {
  /* ========== Mega Menu ========== */
  .hide-md-up {
    display: none;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .footer-copy {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
  .footer-top .wpcf7-submit {
    position: absolute;
    top: 8px;
    right: 8px;
  }
  .footer-divider {
    margin: 75px 0 82px;
  }
  .footer-links {
    display: flex;
    gap: 60px;
    justify-content: space-between;
  }
  .footer-logos {
    display: flex;
    gap: 20px;
  }
  .topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}
@media (max-width: 1170px) {
  .hide-lg-down {
    display: none;
  }
  .menu-toggle,
  .menu-close {
    display: block;
  }
  .menu-wrapper {
    display: none;
  }
  .menu-toggle,
  .menu-close {
    padding: 12px 7px;
    background: none;
    border: none;
  }
  .menu-toggle span {
    background: var(--color-text-dark);
    height: 2px;
    width: 28px;
    display: block;
    margin: 3px 0;
  }
  .site-branding svg {
    width: 187px;
  }
  .header-center {
    justify-content: end;
  }
  .site-header.is-sticky .header-inner {
    padding: 20px;
  }
  .menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--color-black);
    width: 100%;
    height: 100%;
  }
  .toggled .menu-wrapper {
    display: block;
  }
  .mobile-header-top {
    padding: 32px 20px;
  }
  .mobile-header-top .mobile-logo svg  {
    width: 187px;
  }
  .mobile-header-top svg path[fill="#373737"]  {
    fill: var(--color-light);
  }
  .menu-close {
    position: absolute;
    right: 20px;
    top: 40px;
    width: 42px;
    height: 42px;
  }
  .mobile-search {
    padding: 0px 20px;
  }
  .search-box input {
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-light);
    width: 100%;
    color: var(--color-light);
    font-size: 19px;
    font-family: var(--font-primary);
    height: 44px;
    padding-bottom: 8px;
  }
  .search-submit {
    top: 8px;
    right: 0;
  }
  .menu-primary-menu-container {
    padding: 47px 20px 0px;
  }
  .main-navigation ul {
    flex-direction: column;
    gap: 40px;
  }
  .main-navigation li a {
    color: var(--color-light);
    font-size: 29px;
    font-weight: 600;
    display: block;
    position: relative;
  }
  .main-navigation li a::after {
    content: '';
    position: absolute;
    right: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="18" viewBox="0 0 11 18" fill="none"><path d="M1 1L9 9L1 17" stroke="%23F2F2F2" stroke-width="2" stroke-linecap="round"/></svg>');
    width: 11px;
    height: 18px;
    top: 13px;
  }
  .mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
    justify-content: space-evenly;
  }
  .mobile-menu-footer .btn {
    width: 100%;
  }
  #primary-menu > li.fade-out {
    display: none;
  }
  #primary-menu > li.is-open {
    display: block;
  }
  .sub-menu {
    padding: 20px 0px 0px 40px;
  }
  .sub-menu li a::after {
    display: none;
  }
  .mega-menu-overlay {
    display: none;
  }
  .is-open .mega-menu-overlay {
    display: block;
  }
  .main-navigation li.is-open a::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="11" viewBox="0 0 18 11" fill="none"><path d="M17 1L9 9L1 0.999999" stroke="%23F05A28" stroke-width="2" stroke-linecap="round"/></svg>');
    width: 18px;
    height: 11px;
    top: 19px;
  }
}
@media (max-width: 1024px) {
  .hide-md-down {
    display: none;
  }  
  .section {
    padding: 50px 0px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .hide-mobile {
    display: none;
  }
  .section {
    padding: 32px 0px;
  }
  .btn,
  .wpcf7-submit {
    font-size: 15px;
    line-height: 20px;
    padding: 12px 32px;
  }
  .btn-tertiary, .btn-anchor {
    padding: 2px 0;
  }
 
  .heading-two {
    margin-bottom: 40px;
  }
  .footer-top .wpcf7-submit {
    width: 100%;
    margin-top: 16px;
  }
  .footer-divider {
    margin: 40px 0 30px;
  }
  .wpcf7-text {
    padding: 16px 24px;
    font-size: 15px;
  }
  .footer-col {
    display: flex;
    gap: 16px;
    padding-bottom: 28px;
  }
  .footer-col h4 {
    flex: 0.8;
  }
  .footer-col ul,
  .footer-col .connect {
    flex: 1;
  }
  .footer-brand {
    order: 2;
    text-align: center;
  }
  .footer-links {
    order: 1;
  }
  .footer-copy {
    order: 3;
    text-align: center;
  }
  .footer-logos img {
    margin: auto;
  }
  .foot-logo {
    margin-bottom: 45px;
    display: block;
  }
  .footer-brand address strong {
    display: none;
  }
  .footer-wrapper {
    padding: 50px 0px 40px;
  }
  .footer-bottom {
    gap: 40px;
  }
  .footer-logos {
    margin-bottom: 45px;
  }
  .footer-description {
    margin-bottom: 70px;
  }
  .social-icons {
    margin-top: 0;
  }
  .topbar-right {
    text-align: center;
  }
  .breadcrumb {
    gap: 8px;
  }
}
.info-box {
  display: flex;
  padding: 22px 31px 28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 5px;
  margin-bottom: 24px;
}
.light-blue {
  background: var(--color-light-blue);
}
.light-gray {
  background: var(--color-light-gray);
}
.admission-status {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="17" viewBox="0 0 26 17" fill="none"><path d="M0.90078 16.5L10.5008 16.5C10.7414 16.5 10.9008 16.3406 10.9008 16.1C10.9008 14.9797 11.7805 14.1 12.9008 14.1C14.0211 14.1 14.9008 14.9797 14.9008 16.1C14.9008 16.3406 15.0602 16.5 15.3008 16.5L24.9008 16.5C25.1414 16.5 25.3008 16.3406 25.3008 16.1L25.3008 0.899999C25.3008 0.659374 25.1414 0.499998 24.9008 0.499998L15.3008 0.499997C15.0602 0.499997 14.9008 0.659373 14.9008 0.899998C14.9008 2.02032 14.0211 2.9 12.9008 2.9C11.7805 2.9 10.9008 2.02032 10.9008 0.899997C10.9008 0.659373 10.7414 0.499997 10.5008 0.499997L0.900781 0.499996C0.660156 0.499996 0.50078 0.659372 0.50078 0.899996L0.500778 16.1C0.500778 16.3406 0.660154 16.5 0.90078 16.5ZM1.30078 1.3L10.1416 1.3C10.301 2.54064 11.3009 3.5 12.5009 3.65936L12.5009 4.1L13.3009 4.1L13.3009 3.65936C14.5416 3.49998 15.5009 2.5 15.6603 1.3L24.5011 1.3L24.5011 15.7L15.6603 15.7C15.5009 14.4594 14.5009 13.5 13.3009 13.3406L13.3009 12.9L12.5009 12.9L12.5009 13.3406C11.2603 13.5 10.3009 14.5 10.1416 15.7L1.30078 15.7L1.30078 1.3ZM13.3008 7.6204L12.5008 7.6204L12.5008 5.86104L13.3008 5.86104L13.3008 7.6204ZM13.3008 11.1407L12.5008 11.1407L12.5008 9.38136L13.3008 9.38136L13.3008 11.1407Z" fill="%23373737" stroke="%23373737"/></svg>');
  background-repeat: no-repeat;
  background-position: 0px 5px;
  padding-left: 36px;
}
.location {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M20 10C20 14.4183 12 22 12 22C12 22 4 14.4183 4 10C4 5.58172 7.58172 2 12 2C16.4183 2 20 5.58172 20 10Z" stroke="%23373737" stroke-width="2"/><path d="M12 11C12.5523 11 13 10.5523 13 10C13 9.44772 12.5523 9 12 9C11.4477 9 11 9.44772 11 10C11 10.5523 11.4477 11 12 11Z" fill="%23373737" stroke="%23373737" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: 0px 5px;
  padding-left: 40px;
  margin: 40px 0px;
}
.exhibition-date {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 18 18" fill="none"><path d="M2.25 6.75H15.75M5.25 2.25V3.75M12.75 2.25V3.75M4.5 9.75H6M4.5 12.75H6M8.25 9.75H9.75M8.25 12.75H9.75M12 9.75H13.5M12 12.75H13.5M4.65 15.75H13.35C14.1901 15.75 14.6102 15.75 14.931 15.5865C15.2132 15.4427 15.4427 15.2132 15.5865 14.931C15.75 14.6102 15.75 14.1901 15.75 13.35V6.15C15.75 5.30992 15.75 4.88988 15.5865 4.56902C15.4427 4.28677 15.2132 4.0573 14.931 3.91349C14.6102 3.75 14.1901 3.75 13.35 3.75H4.65C3.80992 3.75 3.38988 3.75 3.06902 3.91349C2.78677 4.0573 2.5573 4.28677 2.41349 4.56902C2.25 4.88988 2.25 5.30992 2.25 6.15V13.35C2.25 14.1901 2.25 14.6102 2.41349 14.931C2.5573 15.2132 2.78677 15.4427 3.06902 15.5865C3.38988 15.75 3.80992 15.75 4.65 15.75Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: 0px 4px;
  padding: 0px 0px 0px 37px;
}
@media (max-width: 768px) {
  .exhibition-date {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M2.25 6.75H15.75M5.25 2.25V3.75M12.75 2.25V3.75M4.5 9.75H6M4.5 12.75H6M8.25 9.75H9.75M8.25 12.75H9.75M12 9.75H13.5M12 12.75H13.5M4.65 15.75H13.35C14.1901 15.75 14.6102 15.75 14.931 15.5865C15.2132 15.4427 15.4427 15.2132 15.5865 14.931C15.75 14.6102 15.75 14.1901 15.75 13.35V6.15C15.75 5.30992 15.75 4.88988 15.5865 4.56902C15.4427 4.28677 15.2132 4.0573 14.931 3.91349C14.6102 3.75 14.1901 3.75 13.35 3.75H4.65C3.80992 3.75 3.38988 3.75 3.06902 3.91349C2.78677 4.0573 2.5573 4.28677 2.41349 4.56902C2.25 4.88988 2.25 5.30992 2.25 6.15V13.35C2.25 14.1901 2.25 14.6102 2.41349 14.931C2.5573 15.2132 2.78677 15.4427 3.06902 15.5865C3.38988 15.75 3.80992 15.75 4.65 15.75Z" stroke="%23373737" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: 0px 6px;
    padding: 0px 0px 0px 30px;
  }
}
.tour-details,
.timing {
  width: 100%;
}
.detail-item,
.timing-row {
  display: flex;
}
.detail-item .label,
.timing-row .label {
  flex: 1;
}
.detail-item .value {
  flex: 0 0 162px;
}
.timing-row .value {
  flex: 0 0 203px;
}
.content-wrapper .wp-block-heading {
  font-family: var(--font-campton);
  font-size: 29px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 52px;
}
.content-wrapper p {
  margin-bottom: 21px;
}
.inner-section {
  margin: 176px 0px;
}
.story-section {
  margin-bottom: 0;
}
.custom-section-desc,.custom-section-desc p{
  font-size: 29px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.custom-section-desc2,.custom-section-desc2 p{
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.container.blog-container{
  --container-width: 988px;
}
.container.blog-container .container{
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .site-main-wrapper {
    display: grid;
    grid-template-columns: 422px 1fr;
    gap: 163px;
    align-items: start;
    position: relative;
    padding: 90px 0px 176px;
  }
  .banner-content {
    color: var(--color-light);
    padding: 157px 56px 64px;
  }
  .featured-banner {
    border-radius: 5px;
    overflow: hidden;
  }
  .sticky {
    position: sticky;
    top: 0;
  }
  .f-post-title {
    line-height: 88px;
    width: 986px;
    padding: 26px 0px 29px;
  }
  .f-post-sort {
    width: 694px;
    line-height: 32px;
    margin-bottom: 76px;
  }
  .share {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .featured-banner {
    background: none !important;
  }
  .inner-section {
    margin: 64px 0px;
  }
  .book-tour {
    margin-right: 32px;
  }
  .book-tour,
  .share {
    display: inline-block;
  }
  .banner-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .banner-img {
    padding: 32px 0px 64px;
  }
  .banner-img img {
    border-radius: 5px;
  }
  .left-sidebar {
    padding-top: 43px;
  }
}
.oja_media_wrapper .caption{
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  color: var(--color-black);
  padding: 0;
}
.oja_media_wrapper .oja_video .plyr{
  border-radius: 5px;
  --plyr-color-main:var(--color-white)
}
.oja_media_wrapper .oja_video .plyr .plyr__progress__buffer{
  background: #525253;
}
.oja_media_wrapper .oja_video video,
.oja_media_wrapper .oja_video iframe{
  max-width: 100%;
}
.oja_media_wrapper .oja_video .plyr .plyr__controls{
    background: rgba(0,0,0,0.5) !important;
    margin: var(--plyr-control-spacing, 10px) !important;
    padding: 8px !important;
    margin-top: calc(var(--plyr-control-spacing, 10px) * 3.5) !important; 
    border-radius: 4px !important;
}
.oja_media_wrapper .oja_video .plyr .plyr__controls .plyr__controls__item:first-child{
  padding: 0 !important; 
  background: transparent !important;
  bottom: 0 !important;
  outline: 0 !important;
}
.plyr--full-ui.plyr--video .plyr__control--overlaid{
  padding: 0;
  background: transparent !important;
  top: calc(50% - 30px) !important;
}
.oja_media_wrapper .oja_video .video-block.autoplay{
  pointer-events: none;
}
.oja_media_wrapper .oja_video .plyr--full-ui.plyr--video .plyr__control--overlaid::before{
  content: 'Video Player';
  position: absolute;
  top: calc(100% + 6px);
  font-family: var(--font-campton);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  color: var(--color-white);
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}
.oja_media_wrapper .oja_video .plyr--full-ui.plyr--video .plyr__control--overlaid::after{
  content: 'Click to play video content';
  position: absolute;
  top: calc(100% + 36px);
  font-family: var(--font-primary);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  color: var(--color-white);
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}
.section-audio-player{
    padding: 0;
    padding-bottom: 40px;
}
.custom-audio-player{
    display:flex;
    align-items:center;
    gap:20px;
    background:var(--color-background-white);
    padding:30px 40px;
    border-radius:5px;
    
}
.custom-audio-player .player-left{
    width: 266px;
}
.custom-audio-player .player-right{
    flex-grow: 1;
}
.custom-audio-player .play-btn{
    max-width:18px;
    height:24px;
    cursor:pointer;
    font-size:18px;
    border: 0;
    outline: 0;
    box-shadow: unset;
}
.custom-audio-player .player-title{
    font-family: var(--font-campton);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    color: var(--color-black);
    margin-bottom: 8px;
}
.custom-audio-player .player-subtitle{
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black);
    margin-bottom: 0;
}
.custom-audio-player .progress-bar{
    width:100%;
    height:8px;
    background:var(--color-button-gray);
    border-radius:10px;
    position:relative;
    cursor:pointer;
    margin: 16px 0 8px 0;
}
.custom-audio-player .progress{
    height:100%;
    width:0%;
    background:var(--color-black);
    border-radius:10px;
}
.custom-audio-player .times{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.custom-audio-player .time{
    font-size: 13px;
    font-style: normal;
    color: var(--color-black);
    font-weight: 500;
    line-height: 16px;
}
.custom-audio-player .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.custom-audio-player .volume-wrap{
    position:relative;
    display:flex;
    align-items:center;
}
.custom-audio-player .volume-btn{
    border:none;
    background:none;
    cursor:pointer;
    font-size:18px;
    display: flex;
}
.custom-audio-player .volume-btn.muted{
    opacity: 0.2;
}
.custom-audio-player .volume-btn.half-muted{
    opacity: 0.6;
}
.custom-audio-player .volume-btn.full-vol{
    opacity: 1;
}
.custom-audio-player .volume-slider{
    position:absolute;
    right:30px;
    width:90px;
    opacity:0;
    transform:translateY(10px);
    transition:.2s;
    accent-color: var(--color-black);
}
.custom-audio-player .volume-wrap:hover .volume-slider{
    opacity:1;
    transform:translateY(0);
}
.custom-audio-player .right-inner-wrap{
    display:flex;
    align-items:center;
    column-gap: 20px;
}
.custom-audio-player .speed-btn{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-black);
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.custom-audio-player .icon-pause{
    font-size: 21px;
}

@media only screen and (max-width:992px){
  .container .container.blog-container{
    padding: 0;
  }
}
@media only screen and (max-width:768px){
  .btn-tertiary-icon{
    padding: 2px 0;
    padding-right: 20px;
  }
  .section-audio-player{
    padding-bottom: 32px;
  }
  .custom-audio-player{
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    row-gap: 20px;
  }
  .custom-audio-player .player-title{
    margin-bottom: 4px;
  }
}
@media only screen and (max-width:500px){
  
  .custom-section-desc, .custom-section-desc p{
    font-size: 23px;
    line-height: normal;
  }
  .custom-section-desc2, .custom-section-desc2 p{
    font-size: 15px;
    line-height: 23px;
  }
}
.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}
.hero-description{
    line-height:38px;
}
.additions-card {
  color: var(--color-text-dark);
  display: grid;
  gap: 40px;
}
.additions-card-content {
    margin: 16px 0px;
}
.card-addi h3 {
  font-family: 'Campton';
  font-weight: 500;
  font-size: 29px;
  margin-bottom: 4px;
}
.addi-card-des {
  max-width: 395px;
}
.additions-card .card-addi:nth-child(3n+1) .card-image {
    border-bottom: 18px solid #F05A28;
}
.additions-card .card-addi:nth-child(3n+2) .card-image {
    border-bottom: 18px solid #4DABC2;
}
.additions-card .card-addi:nth-child(3n) .card-image {
    border-bottom: 18px solid #F1C945;
}
.card-image {
  width: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.card-image a {
  display: contents;
}
.card-addi .card-image {
    overflow: hidden;
    height: 436px;
}
.card-addi:hover .card-image img {
    transform: scale(1.2);
}
@media (min-width: 768px) {
  .additions-card {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  } 
  .additions-card-content {
    margin: 30px 0px;
  }
}
.page-hero {
  padding: 73px 0px 200px;
}