@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700&display=swap');

:root{
    --primary-color: #005FB3;
    --secondary-color:#fff;
    --white-color:#fff;
    --font-secondary-color: #393939;
    --font-color:#000000;
    --border-color:#E0E0E0;
    --accent-color: #BA0083;
    --fonts: "Barlow Condensed", sans-serif;
    --fonts-darker: "Darker Grotesque", sans-serif;
	--font26: 26px;
    --font24: 24px;
    --font22: 22px;
    --font20: 20px;
    --font18: 18px;
    --sidebar-width: 280px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: var(--fonts);
    color: var(--font-color);
    background: var(--white-color);
    min-height: 100vh;
}
section{
    padding: 0;
}
.wrapper {
    display: flex;
    min-height: 100vh;
}
.paddinTop0{
    padding-top: 0 !important;
}
.marginTop20{
    margin-top: 20px !important;
}
.displayFlex{
    display: flex;
    align-items: center;
    gap: 10px;
}
sub{
    font-weight: 500;
}

.editor-content em,
.editor-content i {
    font-style: italic;
}

/* Gallery slider for mobile */

.gallery-swiper--mobile {
    display: none;
}

@media (max-width: 768px) {
    .gallery-swiper--desktop {
        display: none;
    }
    .gallery-swiper--mobile {
        display: block;
    }
}

/* Sidebar */

.sidebar__nav {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sidebar__nav::-webkit-scrollbar {
    width: 0px;
}

.sidebar__nav:hover {
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.sidebar__nav:hover::-webkit-scrollbar {
    width: 3px;
}

.sidebar__nav::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar__nav::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.sidebar__nav::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.home .sidebar{
	background: none;
	border-right: 0;
	transition: background 0.3s ease;
}

.home .sidebar:hover{
	background: rgba(250, 250, 250, 0.8);
}


.sidebar {
    width: var(--sidebar-width);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-right: 1px solid var(--border-color);
    background: var(--white-color);
    position: fixed;
    top: 0;
    left: 0;
	z-index: 10;
}

.navbar-toggler{
    display: none;
    background-color: var(--white-color);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding:5px;
    cursor: pointer;
}

.sidebar__header{
    display: flex;
    align-items: center;
    gap:10px;
}

.sidebar__toggle-icon-wrap{
        height: calc(100vh - 51px);
    flex-direction: column;
    justify-content: start;
    display: flex;
}

.sidebar__toggle-icon{
    width: 18px;
    height: 2px;
    background: var(--font-color);
    border-radius: 50%;
    display: block;
    margin: 3px 0;
}

.sidebar__close-btn{
    display: none;
}

.sidebar__title {
    margin: 0;
    font-size: var(--font26);
    font-weight: 600;
    letter-spacing: auto;
    text-transform: uppercase;
    color: var(--primary-color);
    line-height: 1.2;
    padding: 1rem 1.5rem;
}

.sidebar__title a {
    text-decoration: none;
    color: var(--primary-color); /* change to whatever color you want */
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;    
    max-height: calc(100vh - 160px);
    overflow-y: auto;
}
.sidebar__item {
    margin: 0;
    padding: 0rem 1.12rem;
}
.sidebar__item--expandable > .sidebar__link--toggle {
    margin-bottom: 0;
}
.sidebar__link {
    color: var(--font-secondary-color);
    text-decoration: none;
    font-size: var(--font18) !important;
    transition: color 0.25s ease, background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--fonts-darker) !important;
    padding: 0.25rem 0;
    padding-left: 0;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    text-align: left;
}

.sidebar__link-text--navigable {
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.sidebar__item--notexpandable{
    padding-left: 20px;
}
.sidebar__link:hover {
    color: var(--primary-color);
}
a.sidebar__link {
    padding-left: 1.5rem;
}
.sidebar__link--toggle {
    padding-left: 0;
}
.sidebar__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-size: 0.85em;
    color: var(--primary-color);
}
.sidebar__arrow::before {
    content: '';
    background-image: url("../image/leftArrowSidebar.svg");
	color: var(--primary-color);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
}
.sidebar__item--expandable.is-open > .sidebar__link--toggle .sidebar__arrow {
    transform: rotate(90deg);
}
.sidebar__item--expandable.is-open > .sidebar__link--toggle {
    color: var(--primary-color);
    font-weight: 400;
}
.sidebar__link--active,
.sidebar__link--sub.sidebar__link--active {
    color: var(--primary-color);
	font-weight: 600;
}
.sidebar__submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
.sidebar__item--expandable.is-open > .sidebar__submenu {
    max-height: 1200px;
}
.sidebar__submenu-item {
    margin: 0;
}
.sidebar__link--sub {
    padding-left: 1.5rem;
    font-size: var(--font18);
    color: var(--font-secondary-color);
}
.sidebar__submenu .sidebar__submenu .sidebar__link--sub {
    padding-left: 3rem;
}

.sidebar__link--sub-deep {
    padding-left: 4rem !important;
}

.sidebar__link--sub-deep {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.4;
}

.menu-item__title {
    display: block;
}

.menu-item__author {
    display: block;
    font-size: 0.9em;
    opacity: 1;
	margin-top: -15px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.sidebar__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: auto;
    padding: 1rem 1.5rem;
}
.sidebar__footer-link {
    color: var(--font-color);
    text-decoration: none;
    font-size: var(--font18);
    display: inline-flex;
    align-items: center;
    transition: color 0.25s ease;
}
.sidebar__footer-link:hover,
.sidebar__footer-link:focus-visible {
    color: var(--primary-color);
}

.sidebar__footer-link--active {
    color: var(--primary-color);
}

.sidebar__footer-link--active:hover,
.sidebar__footer-link--active:focus-visible {
    color: var(--primary-color);
}
.sidebar__footer-link svg {
    display: block;
}
/* Main content + Slider */
.home .main {
    flex: 1;
	width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    position: relative;
    margin-left: 0px;
    padding: 0;
}
.gallery-swiper {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
    background-color: var(--border-color);
}
.gallery-swiper .swiper-slide{ 
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}
.gallery-swiper .swiper-slide img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}
/* Swiper pagination + arrows: arrows left/right of dots at bottom center */
.gallery-swiper .swiper-pagination {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}
.gallery-swiper .swiper-pagination-bullet {
    background: var(--font-color);
    opacity: 0.6;
    width: 5px;
    height: 5px;
}
.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}
/* Arrows immediately left and right of pagination dots */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
    top: auto;
    bottom: -9px;
    margin-top: 0;
    left: 50%;
    width: 28px;
    height: 28px;
    margin-bottom: 0;
    color: var(--primary-color);
    --swiper-navigation-size: 22px;
    transform: translateY(-50%);
}
.gallery-swiper .swiper-button-prev {
    transform: translate(calc(-50% - 64px), -50%);
}
.gallery-swiper .swiper-button-next {
    right: auto;
    left: 50%;
    transform: translate(calc(-50% + 64px), -50%);
}
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}
/* Search Modal */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.search-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.search-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}
.search-modal__box {
    position: relative;
    width: 30%;
    max-width: 768px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1rem 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    z-index: 1;
}
.search-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    width: 25px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: none;
    color: var(--font-secondary-color);
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.search-modal__close:hover,
.search-modal__close:focus-visible {
    color: var(--primary-color);
    background: rgba(144, 34, 0, 0.06);
}
.search-modal__close svg {
    display: block;
}
.search-modal__title {
    margin: 0 0 1rem;
    font-size: var(--font20);
    font-weight: 700;
    color: var(--font-color);
}
.search-modal__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-modal__input-wrap:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(144, 34, 0, 0.12);
}
.search-modal__search-btn {
    position: absolute;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: none;
    color: var(--font-secondary-color);
    cursor: pointer;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.search-modal__search-btn:hover,
.search-modal__search-btn:focus-visible {
    color: var(--primary-color);
    background: rgba(144, 34, 0, 0.06);
}
.search-modal__search-btn svg {
    display: block;
}
.search-modal__input {
    width: 100%;
    padding: 0.875rem 3.25rem 0.875rem 1rem;
    font-family: var(--fonts);
    font-size: 1rem;
    color: var(--font-color);
    border: none;
    background: transparent;
    outline: none;
}
.search-modal__input::placeholder {
    color: var(--font-secondary-color);
    opacity: 0.8;
}
/* Inner page */
main{
    padding: 3.5rem 15rem;
    width: 80%;
    margin-left: var(--sidebar-width);
}

/* Slider Progress Bar */

.pagination-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
}

.banner-prev,
.banner-next {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
	opacity : 1;
    transition: color 0.2s ease;
}

.banner-prev:hover,
.banner-next:hover {
    color: var(--primary-color);

}

.banner-progress {
    width: 15%;
    height: 1px;
    background: #e0e0e0;
    position: relative;
    flex-shrink: 0;
}

.banner-progress__fill {
    position: absolute;
    top: 0;
	left: 0;
    height: 100%;
	width: 0%; /* will be set by JS */
    background: var(--primary-color);
    transition: left 0.4s ease;
}

/* Slider Pagination ends */

/* Fullscreen light box */
/* Fullscreen button on slide */
.slide-canvas {
    position: relative;
}

.slide-fullscreen-btn {
    margin-left: auto; /* pushes to right */
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #b0b0b0;
    padding: 0;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.slide-fullscreen-btn:hover {
    color: var(--primary-color);
}

/* Always visible on mobile */
@media (max-width: 768px) {
    .slide-fullscreen-btn {
        opacity: 1;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__img-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.lightbox__img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 1rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 1;
}

.lightbox__prev {
    left: 1rem;
}

.lightbox__next {
    right: 1rem;
}

.lightbox__counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: var(--fonts);
    font-size: 14px;
    opacity: 0.7;
}
/* Fullscreen light box  ends*/

/* Banner Slider */
.banner-slider {
    width: 100%;
}

.banner-slider .swiper,
.banner-slider .inner-page-swiper {
    width: 100%;
}


.banner-slider .swiper-wrapper {
    height: auto !important;
}

.banner-slider .swiper-slide {
    width: 100%;
}

.banner-slider .slide-canvas {
    width: 100%;
    aspect-ratio: 3 / 2 !important;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 1rem;
	/* iOS Safari fix */
    -webkit-aspect-ratio: 3 / 2;
}

.banner-slider .slide-canvas img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block;
	object-fit: contain;
}

.banner-slider .banner-swiper .swiper-slide {
    height: auto !important;
    min-height: 0 !important;
}

.banner-slider .banner-swiper .swiper-wrapper {
    height: auto !important;
    align-items: stretch;
}

/* Banner Ends */

.img-fluid{
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
	width : 50%;
}

/*  Story Content */

.story-page-title{
	font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.2;
    text-transform: uppercase;
    margin: 3rem 0 1rem;
}

.story-content {
    transition: max-height 0.4s ease;
}

.story-content p {
    margin: 0 0 1.5rem 0 !important;
    padding: 0;
}

.story-content p:last-child {
    margin-bottom: 0 !important;
}

.read-more-btn {
    display: block;
    margin-top: 1rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: 16px;
    color: var(--primary-color);
    letter-spacing: auto;
	text-transform: uppercase;
}

.read-more-btn:hover {
    opacity: 0.6;
}


/* Story content ends */

.inner-page-content{
    width: 100%;
    padding: 1rem 0;
}
.inner-page-title{
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    text-transform: uppercase;
    margin: 3rem 0 1rem;
}

.inner-page-subtitle{
    font-size: var(--font22);
    font-weight: 500;
    color: var(--font-color);
    line-height: 1.2;
    text-transform: uppercase;
    margin: 1rem 0;
    font-family: var(--fonts);
}
p{
    font-family: var(--fonts-darker);
    font-size: 18px;
    color: var(--font-color);
    line-height: 1.5;
    font-weight: 500;
    margin: 1rem 0;
}
.sent_letter p, .glossary p{
    text-indent: 2em;
}

/* Accordion */

.accordion-section {
	margin-top: 50px;
}
.accordion-item {
    border: 1px solid var(--border-color);
    border-bottom: 0;
    padding: 1rem;
}
.accordion-item:last-child {
    border-bottom: 1px solid var(--border-color);
}
.accordion-item__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    color: var(--primary-color);
    font-size: var(--font18);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    padding-left: 0;
}
.accordion-item.is-open .accordion-item__header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}
.accordion-item__header:hover,
.accordion-item__header:focus-visible {
    color: var(--accent-color);
    outline: none;
}
.accordion-item__title {
    flex: 1;
    text-transform: uppercase;
}
.accordion-item__icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transform: none !important;
}
.accordion-item.is-open .accordion-item__icon {
    transform: none !important;
}
.accordion-item__icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translate(-50%, -50%);
}
.accordion-item__icon .icon-plus {
    opacity: 1;
}
.accordion-item__icon .icon-minus {
    opacity: 0;
}
.accordion-item.is-open .accordion-item__icon .icon-plus {
    opacity: 0;
}
.accordion-item.is-open .accordion-item__icon .icon-minus {
    opacity: 1;
}
.accordion-item__content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
.accordion-item__content a{
    text-decoration: none;
    color: var(--font-color);
}
.accordion-item__content a:hover{
    color: var(--primary-color);
    text-decoration: underline;
}
.accordion-item.is-open .accordion-item__content {
    max-height: fit-content;
}
.accordion-item__list {
    list-style: none;
    padding-left: 0;
    font-family: var(--fonts-darker);
    font-size: var(--font18);
    color: var(--font-color);
    font-weight: 500;
    line-height: 30px;
}
.accordion-item__list li {
    margin: 0.35rem 0;
}

/* Content slider (text slides) */
.content-slider {
    margin: 2rem 0 0;
    width: 100%;
}
.content-slider .swiper-wrapper {
    align-items: flex-start;
}
.content-slider .swiper-slide {
    height: auto;
    padding-bottom: 1rem;
    width: 100% !important;
}
.content-slider__title {
    margin: 0 0 1rem;
    font-size: var(--font20);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--primary-color);
}
.content-slider__body .paragraph-text {
    margin: 1rem 0;
}
.content-slider__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    width: fit-content;
}
.content-slider-prev,
.content-slider-next {
    padding: 0;
    border: none;
    background: none;
    font-family: var(--fonts);
    font-size: 12px;
    font-weight: 400;
    color: var(--font-secondary-color);
    cursor: pointer;
    transition: color 0.2s ease;
    flex-shrink: 0;
    position: relative;
    top: 11px;
}
.content-slider-prev::after,
.content-slider-next::after {
    display: none;
}
.content-slider-prev:hover,
.content-slider-next:hover,
.content-slider-prev:focus-visible,
.content-slider-next:focus-visible {
    color: var(--primary-color);
    outline: none;
}
.content-slider__pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: auto;
    order: 0;
    flex: 1;
    min-width: 0;
}
.content-slider-prev {
    order: -1;
}
.content-slider-next {
    order: 1;
}
.content-slider__pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    background: none;
    color: var(--font-secondary-color);
    font-family: var(--fonts);
    font-size: 12px;
    font-weight: 400;
    opacity: 1;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}
.content-slider__pagination .swiper-pagination-bullet:hover {
    color: var(--primary-color);
}
.content-slider__pagination .swiper-pagination-bullet-active {
    color: var(--primary-color);
    font-weight: 700;
    font-size: var(--font18);
}
.inner-page-swiper {
    height: 100%;
}
.inner-page-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    width: 100% !important;
    height: 400px;
}
.inner-page-swiper .swiper-wrapper{
    height: 85%;
}
.inner-page-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Swiper pagination + arrows: arrows left/right of dots at bottom center */

.inner-page-swiper .swiper-pagination {
    position: relative;
    top: 0;
    left: 0;
    bottom: auto;
    width: 80px !important;
    overflow: hidden;
    z-index: 10;
}

.inner-page-swiper .swiper-pagination.swiper-pagination-bullets-dynamic {
    left: 0 !important;
    transform: none !important;
}

.inner-page-swiper .swiper-pagination-bullet {
    width: 3px;
    height: 3px;
    margin: 0 4px !important;
    background: var(--font-color);
    opacity: 0.7;
}

.inner-page-swiper .swiper-pagination-bullet-active {
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    opacity: 1;
}

/* tiny edge-like dots */
.inner-page-swiper .swiper-pagination-bullet-prev-prev,
.inner-page-swiper .swiper-pagination-bullet-next-next {
    width: 1px;
    height: 1px;
    opacity: 0.45;
}

/* Instanotes */
.instanotes {
    width: 100%;
    margin: 2rem 0;
}

/* Desktop grid */
.instanotes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.instanotes__item {
    cursor: zoom-in;
    overflow: hidden;
}

.instanotes__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.instanotes__item:hover img {
    transform: scale(1.02);
}

.instanotes__caption {
    font-family: var(--fonts-darker);
    font-size: 13px;
    color: var(--font-secondary-color);
    margin: 0.4rem 0 0;
    line-height: 1.4;
}

/* Mobile swiper — hidden on desktop */
.instanotes__swiper {
    display: none;
}

@media (max-width: 768px) {
    /* Hide grid on mobile */
    .instanotes__grid {
        display: none;
    }

    /* Show swiper on mobile */
    .instanotes__swiper {
        display: block;
    }

    .instanotes__swiper .swiper-slide {
        width: 85%;
    }

    .instanotes__swiper .swiper-slide img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* instanotes end */

.inner-image{
    height: 200px;
    margin-bottom: 10px;
	margin-top: 40px;
}
.inner-image img{
    height: 100%;
    object-fit: contain;
}
.single-book_timeline{
    width: 100%;
	padding-left : 4rem;
	padding-right : 4rem;
}
.single-book_timeline .inner-page-title {
    margin-bottom: 2rem;
    margin-top: 0;
}
.single-book_timeline .primary-text{
    font-weight: 700;
}
.primary-text{
    color: var(--primary-color);
}
.numbered-list{
    padding-left: 10px;
}
.single-book_stories p{
   text-indent: 2em;
}
.numbered-list li::marker{
    font-family: var(--fonts-darker);
    font-weight: 500;
    font-size: 18px;
}
.numbered-list li {
    font-family: var(--fonts-darker);
}
.numbered-list li p{
    font-size: 18px;
}
.subtitle{
    font-family: var(--fonts);
    font-size: 18px;
    font-weight: 500;
    color: var(--font-color);
    line-height: 1.2;
    margin: 0;
}
.single-boxes .subtitle{
    margin: 2rem 0 0;
    font-weight: 500;
}

.single-boxes {
/* 	padding: 0 4rem; */
}

.single-diys .img-fluid{
	width: 100%;
}
.text-primary{
    color: var(--primary-color);
}
.font18{
    font-size: var(--font18);
}
.inner-padding{
    padding: 1rem 9rem;
}
.post-padding{
    padding: 1rem 5rem;
}
.post-item{
    position: relative;
    margin-bottom: 20px;
}
.post-title-text{
    font-family: var(--fonts-darker);
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.single-news .post-title{
font-family: var(--fonts);
    font-size: 24px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 4rem 0 1.5rem;
}
.post-text{
    display: block;
    font-family: var(--fonts-darker);
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--font-color);
    margin: 5px 0;
}
.post-image{
  height: 395px;
  width: 100%; 
}
.post-image img{
max-width: 100%;
height: 100%;
object-fit:contain;
}
.single-news .post-text::first-child{
	margin: 1rem 0;
}
/* News tabs - match design */
.tabs-section {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0 1.5rem;
    flex-wrap: wrap;
}
.tab-btn {
    font-family: var(--fonts-darker);
    font-size: var(--font18);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--font-secondary-color);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0 0 0.25rem;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.tab-btn:hover {
    color: var(--font-color);
}
.tab-btn.is-active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 700;
}
.tabs-container {
    width: 90%;
}
.tab-content {
    display: none;
}
.tab-content.is-active {
    display: block;
}
/* News card: left panel (yellow) + right panel (blue) */
.post-item {
    position: relative;
    margin-bottom: 2rem;
}
.post-item .post-image img,
.post-item .post-image-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.post-item .post-image:not(.post-image-slider) {
    min-height: 200px;
}
.post-title
.post-item .post-title-text {
    font-family: var(--fonts-darker);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--font-color);
    margin: 0;
}
.post-item .post-programming {
    grid-column: 2;
    grid-row: 1 / -1;
    background: #1e3a5f;
    padding: 1.5rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
}
.post-item .post-programming .post-text {
    color: #fff;
    margin: 0;
    font-size: var(--font16);
    font-weight: 500;
    line-height: 1.4;
}
.post-item .post-programming .post-text:first-child {
    font-weight: 600;
    margin-top: 0;
}
.post-title-link{
    text-decoration: none;
}
.post-title-link:hover .post-title-text{
    text-decoration: underline;
}
.inner-post-subtitle{
    margin: 15px 0
}
.sidebar__footer li a{
    font-family: var(--fonts-darker);
    color: var(--font-color);
    font-size: 18px;
    font-weight: 400;
}
.sidebar__footer li a:hover{
    color: var(--primary-color);
}
.sidebar__footer li.active a{
    color: var(--primary-color);
    font-weight: 700;
}
@media (max-width: 768px) {
    .post-item {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .post-item .post-programming {
        grid-row: auto;
        grid-column: 1;
    }
    .single-book_timeline{
        width: 100%
    }
}
.imageHeight400{
    height: 400px;
}
.post-image-slider {
    width: 100% !important;
    background: var(--border-color);
}
.post-image-slider .swiper-slide{
    width: 100% !important;
}
.post-image-slider .swiper-slide img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}
.swiper-pagination-bullet{
    background: var(--white-color);
    opacity: 0.7;
}
.swiper-pagination-bullet-active{
    background: var(--white-color);
    opacity: 1;
}
.sidebar__menu{
    padding-left: 0;
    margin-top: 0;
}
.sidebar__footer li{
display:inline-block;
list-style:none;
}

.sidebar__footer li a{
display:inline-flex;
align-items:center;
justify-content:center;
}
li.sidebar__item.sidebar__item--expandable {
    list-style: none;
}
.sidebar__footer li a {text-decoration: none;}
/* Responsive */
@media (min-width: 2500px) {
    :root {
        --sidebar-width: 360px;
        --font18: "22px";
    }
    .sidebar__title {
        font-size: 1.6rem;
        padding: 1.5rem 1rem;
    }
    .sidebar__link {
        font-size: 1.2rem;
    }
    .sidebar__footer-link {
        font-size: 1rem;
    }
    .search-modal__box {
        width: 30%;
    }
    main {
        padding: 2rem 4rem;
    }
    .gallery-swiper {
        height: calc(100vh - 100px);
    }
    .gallery-swiper .swiper-button-prev,
    .gallery-swiper .swiper-button-next {
        --swiper-navigation-size: 56px;
    }
}
@media (max-width: 992px) {
    :root {
        --sidebar-width: 240px;
    }
    .sidebar__title {
        font-size: 1.1rem;
        padding: 1rem 0.5rem;
    }
    .search-modal__box{
        width: 50%
    }
    .sidebar__footer{
        padding: 0.5rem;
    }
    .sidebar__item{
        padding: 0 0.5rem;
    }
    :root{
        --font18: "16px";
    }
}

@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        border-left: 1px solid var(--accent-blue);
        border-right: 1px solid var(--accent-blue);
    }
    :root{
        --font18: 16px;
    }
	
	
    .banner-slider .slide-canvas {
        aspect-ratio: unset !important;
        height: 66.66vw !important; /* 3:2 ratio based on viewport width */
        padding: 0.5rem;
    }


	.navbar-toggler {
		display: block;
		background-color: transparent;
		border: none;
		padding: 5px;
		cursor: pointer;
		color: var(--primary-color) !important;
	}
	
	.navbar-toggler svg {
		display: block;
		color: var(--primary-color);
	}
	
	
	.sidebar__nav {
		width: 100%;
		flex: 1 1 auto;
		min-height: 0;
		max-height: none; /* override global max-height */
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-y: auto;
		margin: 0;
		gap: 0.25rem;
	}

  	.sidebar__footer {
		margin-top: 0;
		padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom));
		flex-wrap: nowrap;
		gap: 0.5rem;
		justify-content: space-around;
		position: sticky;
		bottom: 0;
		background: var(--white-color);
	 }
	
	.sidebar__header{
		display: flex;
		align-items: center;
		gap:10px;
		width: 100%;
	}

    .sidebar__overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        cursor: pointer;
    }
	
    .sidebar.is-open .sidebar__overlay {
        opacity: 1;
        visibility: visible;
    }
	
	.sidebar__toggle-icon-wrap {
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		width: 300px;
		max-width: 85vw;
		height: 100dvh;
		background: var(--white-color);
		z-index: 1001;

		transform: translateX(100%);
		transition: transform 0.3s ease;
		box-shadow: none;

		padding: 1rem 0.5rem 0;
		display: flex;
		flex-direction: column;

		overflow: hidden; /* important: outer wrapper should NOT scroll */
		pointer-events: none;
	  }

    .sidebar__close-btn {
        position: absolute;
        right: 8px;
        top: 7px;
        background: transparent;
        border: 0;
        cursor: pointer;
        display: block;
    }
	
	.sidebar__close-btn svg {
        stroke: var(--font-secondary-color);
    }
	
    .sidebar__close-btn:hover svg {
        stroke: var(--primary-color);
    }
	
    .sidebar.is-open .sidebar__toggle-icon-wrap {
        transform: translateX(0);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
		pointer-events: auto;
    }
	
	.sidebar__toggle-icon-wrap.is-open {
		transform: none;
		pointer-events: auto;
	 }
	
	.sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 1rem;
        border-right: none;
        gap: 1rem;
        position: relative;
    }
	
    .sidebar__title {
        width: 100%;
        margin-bottom: 0;
        font-size: 2rem;
    }
	
	.sidebar__link {
        font-size: 18px !important;
    }
	
	.gallery-swiper{
        height: calc(100vh - 84px);
    }
    
    .search-modal__box{
        width: 80%
    }
    
	.inner-page-title {
		margin: 1rem 0 1rem;
	}
	
	.numbered-list{
		padding-left: 15px;
	}
	
	.subtitle{
		font-size : 20px;
	}

    main{
        margin-left: 0 !important;
        padding: 1rem 1rem;
        width: 100%;
    }
    
    main {
        border-top: 1px solid var(--border-color);
        margin-left: 0;
    }
	
	.inner-page-swiper .banner-prev,
	.inner-page-swiper .banner-next,
	.inner-page-swiper .slide-fullscreen-btn{
		display: none !important;
	}

    .gallery-swiper .ab-prev,
    .gallery-swiper .swiper-button-next {
        --swiper-navigation-size: 36px;
    }
	
	.banner-slider .banner-swiper .swiper-slide {
		height: auto !important;
		align-self: flex-start;
	}

	.banner-slider .banner-swiper .swiper-wrapper {
		align-items: flex-start;
		height: auto !important;
	}
	
	.banner-image .img-fluid{
		width: 100%;
	}
	
	.single-book_stories p {
		text-indent: 1em;
	}
	
	.pagination-wrap{
		margin-top: 10px;
	}
	
	.single-book_timeline {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	
	.banner-progress {
		width: 25%;
		height: 2px;
	}
	
	
	

}
@media (max-width: 480px) {
    .sidebar__nav {
        gap: 0.5rem;
    }
    .sidebar__link {
        font-size: 0.9rem;
    }
    .sidebar__footer-link {
        font-size: 0.8rem;
    }
}