/* Regular weight */
@font-face {
    font-family: 'HafferSQ';
    src: url('../fonts/WEB/HafferSQ-Regular.woff2') format('woff2'),
        url('../fonts/WEB/HafferSQ-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Medium weight */
@font-face {
    font-family: 'HafferSQ';
    src: url('../fonts/WEB/HafferSQ-Medium.woff2') format('woff2'),
        url('../fonts/WEB/HafferSQ-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

/* SemiBold weight */
@font-face {
    font-family: 'HafferSQ';
    src: url('../fonts/WEB/HafferSQ-SemiBold.woff2') format('woff2'),
        url('../fonts/WEB/HafferSQ-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

/* Regular weight for Haffer */
@font-face {
    font-family: 'Haffer';
    src: url('../fonts/WEB/Haffer-Regular.woff2') format('woff2'),
        url('../fonts/WEB/Haffer-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Medium weight for Haffer */
@font-face {
    font-family: 'Haffer';
    src: url('../fonts/WEB/Haffer-Medium.woff2') format('woff2'),
        url('../fonts/WEB/Haffer-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

/* SemiBold weight for Haffer */
@font-face {
    font-family: 'Haffer';
    src: url('../fonts/WEB/Haffer-SemiBold.woff2') format('woff2'),
        url('../fonts/WEB/Haffer-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}


/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Haffer", sans-serif;
    background-color: white;
    color: black;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.no-scroll {
    overflow: hidden;
}

/* ==========================================================================
   Common CSS
   ========================================================================== */

a {
    text-decoration: none;
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

a[href^="tel"]:hover,
a[href^="tel"]:focus {
    color: inherit;
    text-decoration: underline;
}


ul,
li {
    list-style: none;
}

hr {
    border: none;
    height: 1px;
    background-color: var(--Grey-2, #D0D0D0);
}

h1,
.h1 {
    font-size: 98px;
    font-style: normal;
    font-weight: 500;
    line-height: 108px;
    letter-spacing: 2.94px;
}

h3,
.h3 {
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: 0.92px;
}

h4,
h4 a,
h4 span,
.h4 {
    font-size: 38px;
    font-style: normal;
    font-weight: 430;
    line-height: 48px;
    letter-spacing: 0.76px;
}

h5,
.h5 {
    font-size: 19px;
    font-style: normal;
    font-weight: 430;
    line-height: 29px;
    letter-spacing: 0.38px;
}

h6,
.h6 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0.48px;
}

.rounded-10 {
    border-radius: 10px;
}

.font-weight-normal {
    font-weight: normal !important;
}

span,
ul,
li,
a,
p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.32px;
}

.p2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0.48px;
}

.p3,
.p3 * {
    font-size: 12px;
}

.no-br {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.px-10 {
    padding-left: 40px;
    padding-right: 40px;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
}

.py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pb-10 {
    padding-bottom: 40px;
}

.px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.px-5 {
    padding-left: 20px;
    padding-right: 20px;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.mb-3 {
    margin-bottom: 12px;
}

.mb-6 {
    margin-bottom: 24px !important;
}

.mb-10 {
    margin-bottom: 40px;
}

.w-100 {
    width: 100%;
}

.w-70 {
    width: 70%;
}

.w-60 {
    width: 60%;
}

.w-50 {
    width: 50%;
}

.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}

.max-w-360 {
    max-width: 360px;
}

.max-w-720 {
    max-width: 720px;
}

.max-w-845 {
    max-width: 845px;
}


.g-4 {
    gap: 16px;
}

.g-8 {
    gap: 32px;
}

.g-10 {
    gap: 40px;
}

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

.d-block {
    display: block;
}

.d-none {
    display: none;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.justify-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.text-dark {
    color: black !important;
}

.text-white {
    color: white !important;
}

.overflow-y-hidden {
    overflow-y: hidden !important;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

a.link {
    color: var(--950, #062A4B);
    display: inline-block;
    text-decoration: underline;
}

.breadcrumb {
    display: flex;
    margin-top: 100px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    list-style: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 430;
    line-height: 22px;
    letter-spacing: 0.28px;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #A6A6A6;
    content: "/";
}

.breadcrumb-item a {
    color: #A6A6A6;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #A6A6A6;
}

.es-header-btn,
.theme-btn {
    display: inline-block;
    text-align: center;
    padding: 13px 26px;
    color: #F0F8FF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid #062A4B;
    background: #0D2A4A;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background: transparent;
    color: #062A4B;
}

.theme-btn-outline {
    border-radius: 100px;
    border: 1px solid black;
    background: rgba(0, 0, 0, 0.00);
    color: #062A4B;
}

.theme-btn-sm {
    display: inline-block;
    color: #F0F8FF;
    /* font-family: "PP Radio Grotesk"; */
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 100px;
    border: 0px solid;
    background: #005EA5;
    transition: all 0.5s ease;
    padding: 4px 14px;
    font-size: 11.235px;
    font-weight: 400;
    line-height: 17.654px;
}

.theme-btn-sm.purchase {
    padding: 12px 26px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: normal !important;
}

.theme-btn-sm:hover {
    background: var(--100, #DFF0FF);
    color: black;
}

.bg-white {
    background-color: white;
}

.cursor-pointer {
    cursor: pointer;
}

.building-tag {
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.80);
    outline: 3px solid rgba(255, 255, 255, 0.3);
    border: 0px solid rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    white-space: nowrap;
    color: black;
    cursor: pointer;
    animation: glowing-outline 2s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: outline 0.5s ease;
    font-family: "Haffer";
}

.building-tag:hover {
    outline: 3px solid rgba(255, 255, 255, 0.3);
    animation: none;
}

.icon.building-tag {
    padding: 8px;
}


@keyframes glowing-outline {
    0% {
        outline-color: rgba(255, 255, 255, 0.3);
    }

    50% {
        outline-color: rgba(255, 255, 255, 1);
    }

    100% {
        outline-color: rgba(255, 255, 255, 0.3);
    }
}

.ellipse-43 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

.building-card {
    width: 195px;
    border-radius: 6px;
    overflow: hidden;
    position: absolute;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 3;
    top: calc(100% + 20px);
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.building.active .building-card {
    display: block;
    opacity: 1;
    pointer-events: unset;
}

.liberty .building-card,
.church .building-card,
.memorial .building-card,
.oculus .building-card,
.arts .building-card {
    top: unset;
    bottom: calc(100% + 20px);
}

.building-card .card-header {
    background: #062A4B;
    color: white;
    font-style: normal;
    font-weight: 400;
    padding: 12px;
    font-size: 11.235px;
    font-weight: 400;
    line-height: 17.654px;
    letter-spacing: 0.225px;
}

.building-card .card-img {
    height: 110px;
}

.building-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.building-card .card-body {
    background: white;
    padding: 14px 11px 16px 11px;
    border-radius: 0 0 6px 6px;
}

.building-card .card-body p {
    font-style: normal;
    font-weight: 400;
    font-size: 11.235px;
    line-height: 17.654px;
    letter-spacing: 0.225px;
    margin-bottom: 14px;
}

span.route-icon-subway {
    color: #FFF;
    border-radius: 22px;
    width: 22px;
    display: inline-block;
    height: 22px;
    line-height: 22px;
    text-align: center;
}

span.route-icon-subway.red {
    background-color: #EE352E;
}

span.route-icon-subway.yellow {
    background-color: #FCCC0A;
    color: #000;
}

span.route-icon-subway.green {
    background-color: #00933C;
}

span.route-icon-subway.gold {
    background-color: #996633;
}

span.route-icon-subway.blue {
    background-color: #0039A6;
}

/* ==========================================================================
   Container
   ========================================================================== */

.container {
    max-width: 1560px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}

/* Adjust padding for smaller screens if needed */
@media (max-width: 1440px) {
    .container {
        padding: 0 20px;
    }
}

/* Adjust max-width for larger screens if needed */
@media (min-width: 1920px) {
    .container {
        max-width: 1360px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0px;
    }
}

/* ==========================================================================
   Header Styling
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    pointer-events: none;
    z-index: 3;
    transition: all 0.5s ease-in-out;
}

header.hidden {
    top: -116px;
    /* Adjust based on your header height */
}

header.visible {
    top: 0;
}

header .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(0);
    z-index: 999;
    /* display: none; */
    transition: all 1s ease;
    pointer-events: none;
}

header .overlay.active {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

header .header-wrapper {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-wrapper>a:first-child {
    pointer-events: all;
}

header ul.desktop-menu {
    display: flex;
    height: 46px;
    padding: 0px 12px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 4px;
    background: rgba(240, 248, 255, 0.80);
    pointer-events: all;
}

header ul.desktop-menu ul.desktop-menu {
    background: none;
}

header ul.desktop-menu li {
    background-color: transparent;
    border-radius: 3px;
    transition: all 0.5s ease;
}

header ul.desktop-menu li:hover {
    background-color: #B8E1FF;
}

header ul.desktop-menu li a {
    display: flex;
    height: 29px;
    padding: 0px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #062A4B;

}

header ul.desktop-menu .menu-btn div {
    width: 20px;
    height: 10px;
    border-top: 2px solid #062A4B;
    border-bottom: 2px solid #062A4B;
}

header .sidebar-menu {
    position: fixed;
    height: calc(100vh - 32px);
    padding: 30px;
    background: #5BBEFF;
    top: 16px;
    right: -600px;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    background: #67B0FF;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 1s ease;
    z-index: 1000;
}

header .sidebar-menu.active {
    right: 16px;
    transition: all 0.5s ease;
    pointer-events: all;
}

header .sidebar-menu ul li {
    margin-bottom: 20px;
}

header .sidebar-menu ul li a {
    font-size: 46px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0.92px;
    color: white;
}

header .sidebar-menu ul li:hover a {
    color: #0D2A4A;
    transition: all 0.3s ease;
}

header .sidebar-menu .socials {
    display: flex;
    gap: 20px;
    justify-content: start;
}

.socials a svg {
    transition: all 0.5s ease;
}

.socials a:hover svg {
    transform: scale(1.3);
}

header .sidebar-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    padding: 12px;
}

.explore-lp-animation {
    padding: 71px 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.explore-lp-animation.no-animation {
    padding: 0 !important;
    animation: none;
    /* Disable the animation */
}

.explore-lp-animation {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.explore-lp-animation.no-animation {
    padding: 0 !important;
    animation: none;
    /* Disable the animation */
}

/* .explore-lp-animation .frame-01 {
    width: 4px;
    height: 80%;
    background: #D9D9D9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: showFrame01 1s forwards;
} */

.explore-lp-animation img {
    width: 4px;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: showImage 1.5s 0s forwards;
}

.explore-lp-animation .frame-03 {
    color: white;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1170px;
    opacity: 0;
    animation: showFrame03 1s 1.5s forwards;
}

.explore-lp-animation .overlay {
    width: 100%;
    height: 100%;
    background: #D7D7D7;
    mix-blend-mode: multiply;
    position: absolute;
    opacity: 0;
    animation: showOverlay 1s 1s forwards;
}

.explore-lp-animation .overlay-vertical {
    width: 100%;
    height: 100%;
    background: #D7D7D7;
    mix-blend-mode: multiply;
    position: absolute;
    opacity: 0;
    animation: showOverlay 1s 1s forwards;
}

.explore-lp-animation .frame-03 h1 {
    font-size: 98px;
    font-style: normal;
    font-weight: 500;
    line-height: 108px;
    letter-spacing: 2.94px;
    padding: 0 32px;
}

.explore-lp-animation .frame-03 p {
    margin-bottom: 50px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

@keyframes showImage {
    0% {
        opacity: 0.2;
        width: 4px;
        /* Start thin */
    }

    100% {
        opacity: 1;
        width: 100%;
        /* Stretch to full width */
    }
}
@keyframes showImageVertical {
    0% {
        opacity: 0.2;
        width: 4px;
        /* Start thin */
    }

    100% {
        opacity: 1;
        width: 100%;
        /* Stretch to full width */
    }
}

@keyframes showOverlay {
    to {
        opacity: 1;
    }
}

@keyframes showFrame03 {
    to {
        opacity: 1;
    }
}

.explore-lp-animation,
#home-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 20 / 11;
    min-height: 100vh;
}


#home-slider.fade-out {
    opacity: 0.4;
}

#home-slider.fade-in {
    opacity: 1;
}

#home-slider .gradient-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(314deg, rgba(217, 217, 217, 0.00) 13.51%, rgba(115, 115, 115, 0.40) 76.36%);
    mix-blend-mode: multiply;
    z-index: -2;
}

#home-slider .tag-line {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    display: flex;
    align-items: start;
    pointer-events: none;
    flex-wrap: wrap;
}

#home-slider .tag-line span {
    color: white;
    font-size: 68px;
    font-style: normal;
    font-weight: 670;
    line-height: 108px;
    letter-spacing: 2.04px;
}

#slider-text-2 {
    transition: opacity 1s ease-in-out;
}

.slider-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.3s ease-in-out;
    z-index: -3;
}

.slider-image.active {
    opacity: 1;
}

.slider-text-container {
    height: 108px;
    width: 400px;
    position: relative;
    display: inline-block;
}

.slider-text-2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.3s ease-in-out;
}

.slider-text-2.active {
    opacity: 1;
}

#home-img-sec img {
    height: 100vh;
    object-fit: cover;
}

#introduction {
    position: relative;
    z-index: 1;
    background: white;
    overflow: hidden;
    height: 100vh;
}

#introduction.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

#introduction p {
    margin: 0 auto;
    max-width: 1040px;
    color: #000;
    text-align: center;
    font-weight: 400;
    z-index: 2;
    position: relative;
    opacity: 0;
    transition: all 2s ease, transform 2s ease;
    padding: 0 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

#introduction img {
    position: absolute;
    border-radius: 10px;
    object-fit: cover;
    opacity: 0;
    transition: all 2s ease, transform 2s ease;
}

#introduction .img-1 {
    width: 395px;
    height: 300px;
    left: 40%;
    bottom: 155px;
}

#introduction .img-2 {
    width: 494px;
    height: 327px;
    bottom: 356px;
    right: 30%;
}

#introduction .img-3 {
    width: 363px;
    height: 284px;
    left: 30%;
    top: 152px;
}

.intro-animation #introduction p,
.intro-animation #introduction img {
    opacity: 1;
    transition: all 2s ease, transform 2s ease;
}

.intro-animation #introduction .img-1 {
    left: 16px;
    bottom: 16px;
}

.intro-animation #introduction .img-2 {
    right: 16px;
    bottom: 16px;
}

.intro-animation #introduction .img-3 {
    top: -5px;
    left: -5px;
}

/* 
.intro-fixed:hover #introduction p,
.intro-fixed:hover #introduction img,
#introduction:hover p,
#introduction:hover img {
    opacity: 1;
    transition: all 2s ease, transform 2s ease;
}

.intro-fixed:hover #introduction .img-1,
#introduction:hover .img-1 {
    left: 75px;
    bottom: 100px;
}

.intro-fixed:hover #introduction .img-2,
#introduction:hover .img-2 {
    right: 30px;
    bottom: 88px;
}

.intro-fixed:hover #introduction .img-3,
#introduction:hover .img-3 {
    top: -5px;
    left: -5px;
} */

.below-introduction {
    z-index: 1;
    position: relative;
}

#page-link-sec {
    padding-top: 90px;
    padding-bottom: 70px;
}

#page-link-sec a {
    text-decoration: none;
}

#page-link-sec .link-item {
    padding: 60px 0;
    border-top: 1.5px solid black;
    position: relative;
    transition: all 0.3s ease;
}

#page-link-sec .link-item p {
    font-size: 68px;
    font-style: normal;
    font-weight: 570;
    line-height: 56px;
    letter-spacing: 1.36px;
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
}

#page-link-sec .link-item img {
    position: absolute;
    width: 344px;
    height: 229px;
    border-radius: 8px;
    object-fit: cover;
    z-index: 2;
    transition: all 0.3s ease;
    right: 5%;
    top: -90px;
    opacity: 0;
}

#page-link-sec .link-item:hover p {
    color: #67B0FF;
}

#page-link-sec .link-item:hover img {
    opacity: 1;
}

#campus-sec {
    padding-bottom: 80px;
    padding-top: 80px;
}

#campus-sec .desc {
    max-width: 735px;
    margin: 0 auto;
}

#campus-sec .desc h4 {
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: 0.92px;
    margin-bottom: 40px;
}

#campus-sec .desc p {
    margin-bottom: 70px;
}

#campus-sec .slider-heading h4 {
    font-weight: 400;
    text-align: center;
}

#campus-map {
    max-height: 95vh;
    max-width: 912px;
    aspect-ratio: 0.8169;
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 119px auto 0 auto;
    position: relative;
    overflow: hidden;
    background-color: lightgray;
}

#campus-map .building {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all 0.5s ease;
}

#campus-map .building.hidden {
    opacity: 0;
    pointer-events: none;
}

#campus-map .building .line {
    width: 2px;
    height: 50px;
}

#campus-map .building .line>div {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(to bottom,
            white 0px,
            white 5px,
            transparent 5px,
            transparent 10px);
}

#campus-map .building.active .line>div {
    animation: fadeIn 1s forwards, growHeight 1s 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes growHeight {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

#campus-map .building.oculus .line {
    height: 90px;
}

#campus-map .building.arts .line {
    height: 50px;
}


.building.wtc1 {
    top: 14%;
    left: 17%;
}

.building.wtc3 {
    top: 30%;
    left: 62%;
}

.building.wtc4 {
    top: 23%;
    left: 83%;
}

.building.wtc7 {
    top: 47%;
    left: 32%;
}

.building.oculus {
    top: 62%;
    left: 53%;
}

.building.arts {
    top: 66%;
    left: 37%;
}

.building.memorial {
    top: 84%;
    left: 36%;
}

.building.liberty {
    top: 89%;
    left: 73%;
}

.building.church {
    top: 78%;
    left: 85%;
}


#social-slider-sec {
    padding-bottom: 50px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.social-slider {
    display: flex;
    gap: 20px;
    animation: scroll 45s linear infinite;
}

#social-slider-sec .social-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.social-slider:hover {
    animation-play-state: paused;
}

#social-slider-sec .social-slider img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-3200px);
    }
}

#social-slider-sec .slider-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 38px 0;
    border-top: 1px solid black;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    background-color: white;
}

#social-slider-sec .slider-heading h4 {
    font-weight: 400;
    text-align: center;
}

/*Tile Group Styling */

#tile-group .tile-group-header {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 100px;
}

#tile-group .tile-group-header h4 {
    font-weight: 400;
    margin-bottom: 40px;
}

#tile-group .tile-group-header p {
    margin: 0 auto;
    width: 100%;
    max-width: 680px;
}

.tile-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tile-card {
    background: #B8E1FF;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s ease;
    height: 100%;
}

.tile-card:hover {
    background-color: #062A4B;
    color: white;
}

.tile-card .tile-body {
    padding: 40px;
}

.tile-card .tile-body h4 {
    font-weight: 400;
}

.tile-card .tile-body h3 {
    margin-bottom: 30px;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: 0.92px;
}

.tile-card .tile-body p {
    margin-bottom: 30px;
}

.tile-card .tile-img {
    height: 330px;
    overflow: hidden;
}

.workplace .tile-card .tile-img {
/*     aspect-ratio: 335/238; */
    height: unset;
    overflow: hidden;
	flex-grow: 1;
}

.tile-card .tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
}

.tile-card:hover .tile-img img {
    transform: scale(1.2);
    transition: all 1s ease;
}

.tile-btn {
    background: #0D2A4A;
    border: none;
    transition: all 0.5s ease;
}

.tile-card:hover .tile-btn,
.tile-btn:hover {
    background: #0076CC;
    color: white;
}

.tile-card:hover .tile-btn.work,
.tile-btn.work:hover {
    background-color: #B8E1FF;
    color: #0D2A4A;
}

/* Styles for Fullscreen Transition Effect  */

/* Styles for the full-screen transition effect */
/* Styles for the full-screen transition effect */
.fullscreen-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: 9999;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    pointer-events: none;
    opacity: 1;
}

.fullscreen-transition.show {
    opacity: 1;
    transform: scale(1.05);
    /* Slight zoom effect */
}


/* ==========================================================================
   Plan Your Vist Styling
   ========================================================================== */

#plan-your-visit {
    padding-top: 70px;
    padding-bottom: 96px;
}

#plan-your-visit .visit-body {
    display: flex;
    align-items: stretch;
    cursor: pointer;
}

#plan-your-visit .visit-body .content {
    display: flex;
    padding: 60px 73px 60px 50px;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    border-radius: 10px 0px 0px 10px;
    background: #062A4B;
    color: white;
    width: 42%;
}

#plan-your-visit h4 {
    font-weight: 400;
    color: white;
}

#plan-your-visit .btn {
    background: white;
    color: #062A4B;
    transition: all 0.5s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
}

#plan-your-visit .visit-body:hover .btn,
#plan-your-visit .btn:hover {
    background: transparent;
    color: white;
    border: 1px solid white;
    transition: all 0.5s ease;
}

#plan-your-visit .img {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0px 10px 10px 0px;
}

#plan-your-visit .visit-body:hover img {
    transform: scale(1.2);
}


#plan-your-visit .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* ==========================================================================
   Getting Here Styling
   ========================================================================== */

#getting-here-desc {
    padding: 121px 16px;
}

#getting-here-desc .section-wrapper {
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 71px;
}

#getting-here-desc .section-wrapper h2 {
    font-size: 46px;
    font-style: normal;
    font-weight: 430;
    line-height: 56px;
    letter-spacing: 0.92px;
}

section.map {
    height: 600px;
    background-color: #e5e3df;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

#map {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

#information-box {
    background: #F0F8FF;
    padding-top: 53px;
    padding-bottom: 60px;
    position: relative;
}

.map .tab {
    position: relative;
    width: 150px;
    height: 58px;
    border-radius: 29px;
    outline: none;
    border: none;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    cursor: pointer;
    padding-left: 70px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.map .tab .icon {
    flex-shrink: 0;
    line-height: 0;
}

.map .tab .text {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
    letter-spacing: 0.28px;
}

.map .tab:hover,
.map .tab:focus,
.map .tab.active {
    width: 270px;
}

.map .tab:hover .text,
.map .tab:focus .text,
.map .tab.active .text {
    opacity: 1;
}

.map .tabs {
    padding-left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 60px
}

.map .tab {
    position: relative;
    left: -50px;
}

.map .tabs button:nth-child(1) {
    z-index: 6;
}

.map .tabs button:nth-child(2) {
    z-index: 5;
}

.map .tabs button:nth-child(3) {
    z-index: 4;
}

.map .tabs button:nth-child(4) {
    z-index: 3;
}

.map .tabs button:nth-child(5) {
    z-index: 2;
}

.map .tabs button:nth-child(6) {
    z-index: 1;
}

.info-wrapper {
    margin: 0 auto;
    max-width: 1282px;
    padding: 0 16px;
    gap: 80px;
    display: none;
}

.info-wrapper.active {
    display: flex;
}

.info-wrapper .title {
    width: 400px;
    min-width: 400px
}

.info-wrapper .title .title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 47px;
    background: #DFF0FF;
    padding: 12px 15px;
}

.info-wrapper .title .title-wrapper P {
    font-weight: 790;
    padding-left: 20px;
}

.info-wrapper .title .title-wrapper .icon {
    border-radius: 47px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-wrapper .content {
    padding: 35px 40px;
    border-radius: 10px;
    background: #DFF0FF;
    display: inline-block;
    flex-grow: 1;
}

.info-wrapper .content a {
    text-decoration: underline;
    color: black;
}

.info-wrapper .title img {
    width: 100%;
    border-radius: 10px;
    margin-top: 32px;
}

/* ==========================================================================
   Our Event Box Styling
   ========================================================================== */

#event-box {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #F0F8FF;
}

#event-box .event-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

#event-box .content {
    padding: 40px 50px;
    background: #B8E1FF;
    border-radius: 10px;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0.48px;
    display: none;
    width: 100%;
    max-width: 750px;
}

#event-box .content.active {
    display: block;
}

#event-box .tab {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    width: 410px;
    cursor: pointer;
    user-select: none;
}

#event-box .tab:hover,
#event-box .tab.active {
    border-radius: 100px;
    background: #B8E1FF;
    transition: all 0.5s ease;
}

#event-box .tab .icon {
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 40px;
}

#event-box .tab p {
    font-size: 21px;
    font-style: normal;
    font-weight: 430;
    line-height: 34px;
    letter-spacing: 0.48px;
}


.event-images {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.event-images img {
    border-radius: 10px;
    object-fit: cover;
    max-width: 650px;
}

.event-images .imgs-01 {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.event-images .imgs-02 {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 80px;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.event-images .imgs-03 {
    display: flex;
    justify-content: space-between;
    align-items: start;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.event-images .event-01 {
    margin-bottom: 140px;
    margin-left: 40px;
}

.event-images .event-02 {
    position: absolute;
    top: 150px;
    left: 250px;
}

.event-images .event-04 {
    margin-left: 90px;
}

.event-images .event-05 {
    margin-right: 90px;
    margin-bottom: -180px;
    z-index: 2;
}

.event-images .event-07 {
    margin-top: 40px;
}

/* Slider  */
.marquee {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee__inner {
    display: flex;
    animation: marquee 30s linear infinite;
    align-items: center;
}

.marquee:hover .marquee__inner {
    animation-play-state: paused;
}

.marquee__item {
    flex: 0 0 auto;
    padding-right: 100px;
}

.marquee img {
    vertical-align: middle;
}

.tenant-marquee {
  width: 100%;
  overflow: hidden;
}

.tenant-marquee .swiper-wrapper {
  transition-timing-function: linear !important;
}

.tenant-marquee .swiper-slide {
  width: auto; /* Let the content determine width */
  transition-timing-function: linear !important;
}

/* Keyframes for seamless marquee effect */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* blog items  */

.blog-item {
    width: 50% !important;
}

.blog-item img {
    object-fit: cover;
    /* max-height: 550px; */
    max-width: 100%;
}

.blog-item p {
    max-width: 450px;
}

.blog-item h4 {
    font-weight: normal;
}

#blog-cards .blog-item:nth-child(even) {
    margin-top: 320px;
}

.para-imgs .blog-item:nth-child(2) {
    text-align: right;
}

/* ==========================================================================
   Download brochure section
   ========================================================================== */

#download-brochure {
    padding-top: 180px;
    padding-bottom: 180px;
}

#download-brochure p {
    font-weight: 430;
    text-align: center;
    margin-bottom: 80px;
}


#download-brochure .btns {
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* ==========================================================================
   Getting here gallery
   ========================================================================== */

#gallery {
    padding-top: 120px;
    padding-bottom: 120px;
}

#gallery .image-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px
}

#gallery .image-wrapper img {
    border-radius: 10px;
}

#gallery .image-wrapper img {
    max-width: 50%;
    /* Ensure images do not exceed their container width */
    border-radius: 10px;
    object-fit: cover;
    /* Ensure images are resized nicely within their boxes */
}

#gallery .image-wrapper img:nth-child(1) {
    max-width: 750px;
    width: 65%;
}

#gallery .image-wrapper img:nth-child(3) {
    max-width: 440px;
    width: 30%;
}

/* ==========================================================================
   Contact Styling
   ========================================================================== */

.contact-banner {
    padding: 206px 0 86px 0;
}

.contact-banner h1 {
    font-size: 68px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 158.824% */
    letter-spacing: 2.04px;
    margin-bottom: 30px;
}

.contact-banner p {
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    /* 152.632% */
    letter-spacing: 0.38px;
}

.input-form p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.checkboxes label,
.input-form label {
    width: 260px;
    margin-right: 20px;
}

.input-form input:focus {
    border-bottom: 2px solid black;
    outline: none;
}

.input-form input::placeholder {
    color: #a5a5a5;
}

.input-form input {
    height: 54px;
    width: 500px;
    padding: 8px 8px 8px 16px;
    border: none;
    outline: none;
    border-bottom: 2px solid black;
    margin-top: 0;
}

.form-wrapper {
    display: flex;
    gap: 42px;
    margin-top: 110px;
}


.form-wrapper .checkboxes {
    width: 500px;
}

.submit-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submit-btn input[type="submit"] {
    cursor: pointer;
}

.submit-btn p {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.checkboxes .wpcf7-list-item {
    margin-left: 0;
}

.checkboxes span.checkboxes {
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 152.632% */
    letter-spacing: 0.38px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

input[type="checkbox"] {
    appearance: none;
    /* Remove default checkbox styling */
    width: 28px;
    height: 28px;
    border: 1px solid black;
    position: relative;
    cursor: pointer;
    border-radius: 3px;
    margin-right: 26px;
}

input[type="checkbox"]:checked {
    background-color: white;
}

input[type="checkbox"]:checked::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 2px;
    background-color: #a6a6a6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkboxes .wpcf7-form-control {
    align-items: start !important;
    margin-top: 30px;
}

.wpcf7-form-control {
    display: flex;
    flex-direction: column;
}

.wpcf7-list-item {
    margin-bottom: 14px;
}

.wpcf7-list-item label {
    display: flex;
}

.textarea {
    flex: 1;
    width: 100%;
    max-width: 670px;
}

textarea {
    width: 100%;
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 30px;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    font-family: "Haffer" !important;
    letter-spacing: 0.38px;
}

textarea::placeholder {
    color: black;
    font-size: 19px;
    font-style: normal;
    font-weight: 430;
    line-height: 29px;
    letter-spacing: 0.38px;
}

#partners {
    padding: 110px 0;
}

#partners p {
    margin-bottom: 37px;
}

#partners .partner-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns of equal width */
    gap: 18px;
    /* 20px gap between columns */
}

.partner-wrapper .partner {
    position: relative;
    overflow: hidden;
    padding: 30px 40px;
    height: 420px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-wrapper .partner p {
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    /* 121.739% */
    letter-spacing: 0.92px;
    position: relative;
    color: white;
    opacity: 0;
    transition: all 0.5s ease;
}

.partner-wrapper .partner a {
    position: relative;
    background: white;
    border-color: transparent;
    display: inline-block;
    color: #062A4B;
    opacity: 0;
    transition: all 0.5s ease;
}

.partner-wrapper .partner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
}

.partner-wrapper .partner:hover a,
.partner-wrapper .partner:hover p {
    opacity: 1;
}

.partner-wrapper .partner:hover img {
    transform: scale(1.2);
}

/* ==========================================================================
   Bookstore Styling
   ========================================================================== */

.host-your-event,
.bookstore-animation {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 213px 0;
    opacity: 0;
    transition: all 2s ease;
    animation: fadeIn 2s forwards;
}

.host-your-event {
    position: relative;
    height: 100vh;
    z-index: 1;
}

.host-your-event .host-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.host-your-event h1 {
    margin-bottom: 50px;
}

.host-your-event p,
.bookstore-animation p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 160% */
    letter-spacing: 0.45px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#more-bookstore {
    padding-bottom: 80px;
}

#event-venues {
    padding-top: 100px;
}

#image-slider {
    padding-top: 150px;
    padding-bottom: 60px;
}

#image-slider img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 80/43;
}

#explore-more h4,
#more-bookstore h4,
#event-venues h4 {
    margin-bottom: 40px;
}

.book-card {
    text-align: center;
    position: relative;
}

.book-card img {
    width: auto;
    height: 360px;
    object-fit: cover;
    margin-bottom: 10px;
}

.book-card img {
    padding: 0 30px;
}

.book-card a {
    position: absolute;
    z-index: 2;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #062A4B;
    opacity: 0;
    transition: all 0.5s ease;
}

.book-card:hover a {
    opacity: 1;
}

#explore-more {
    padding-top: 100px;
    padding-bottom: 100px;
}

.event-space-card {
    border-radius: 10px;
    overflow: hidden;
}

.event-space-card .space-header {
    display: flex;
    padding: 26px 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 10px 10px 0px 0px;
    background: var(--100, #DFF0FF);
}

.event-space-card .space-header {
    background-color: #0076CC;
    color: white;
}

.event-space-card .space-header p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-space-card img {
    aspect-ratio: 113/56;
    width: 100%;
    object-fit: cover;
    border-radius: 0px 0px 10px 10px;
}

.event-space-card .space-header p {
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0.38px;
}

.explore-more .header {
    background-color: #0076CC;
    color: white;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 10px 10px 0px 0px;
    transition: all 0.5s ease;
}

.explore-more .img {
    aspect-ratio: 1.0;
    width: 100%;
    overflow: hidden;
    border-radius: 0px 0px 10px 10px;
    background-color: #D9D9D9;
}

.explore-more img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.explore-more:hover .header {
    background-color: #062A4B;
}

.explore-more:hover img {
    transform: scale(1.2);
}

.slider-handle {
    position: absolute;
    top: -55px;
    right: 16px;
}

.slider-handle.bottom {
    position: absolute;
    bottom: 10px;
    right: 16px;
    top: auto;
}

.slider-handle .glide__arrows {
    position: relative;
    display: flex;
    gap: 10px;
}


.slider-handle .glide__arrow {
    display: flex;
    width: 60px;
    padding: 9px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid var(--950, #062A4B);
    box-shadow: none;
    transition: all 0.5s ease-out;
    position: relative;
    right: unset;
    left: unset;
    top: unset;
}

.slider-handle.bottom .glide__arrow {
    border: 1px solid white;
}

.slider-handle.bottom .glide__arrow svg path {
    fill: white;
}

.slider-handle.bottom .glide__arrow:hover {
    background-color: white;
    opacity: 0.8;
}

.slider-handle.bottom .glide__arrow:hover svg path {
    fill: #062A4B;
}

.slider-handle.bottom .glide__arrow:hover {
    border: 1px solid #062A4B;
}

.glide__arrow:hover {
    background-color: #062A4B;
    opacity: 1;
}

.glide__arrow:hover svg path {
    fill: white;
}

.slider-handle .glide__arrow:hover {
    border-color: #062A4B;
}

.slider-handle .glide__arrow--right {
    /* left: 10px; */
}

.slider-handle .glide__arrow--left {
    /* right: 10px; */
}

.book-cover {
    display: flex;
    align-items: center;
    padding-top: 128px;
    padding-bottom: 110px;
    position: relative;
}

.book-cover .cover-img {
    width: 37%;
    margin-right: -70px;
    margin-left: 50px;
    z-index: 1;
}

.book-cover .cover-img img {
    border-radius: 10px;
}

.book-cover .content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    border-radius: 10px;
    background: var(--50, #F0F8FF);
    flex: 1;
    z-index: 2;
}

/* Tile Card -> Banner Transition */


/* things banners  */

.things-lp-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 2.5;
    position: relative;
}
.things-lp-animation img {
    object-fit: cover;
    opacity: 0; /* Start with opacity 0 */
    animation: fadeIn 1.5s forwards; /* Add fadeIn animation */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.things-lp-animation .overlay-things-1 {
    width: 50%;
    height: 100%;
    left: 0;
    background: white;
    position: absolute;
    animation: overlayShrink 1.5s forwards;
}

.things-lp-animation .overlay-things-2 {
    width: 50%;
    height: 100%;
    right: 0;
    background: white;
    position: absolute; 
    animation: overlayShrink 1.5s forwards;
}

@keyframes overlayShrink {
    to {
        width: 0;
    }
}

.things-lp-animation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* animation: showImage 1.5s 0s forwards; */
}



.things-banner h1 {
    color: #062A4B;
    margin-top: 50px;
}

.things-body {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 100px;
}

.things-body .things-left {
    max-width: 815px;
}

.things-body .things-left h4 {
    margin-bottom: 40px;
}

.things-body .things-left h5 {
    margin-bottom: 20px;
}

.things-body .work-right,
.things-body .things-right {
    padding-right: 20px;
    max-width: 400px;
    width: 100%;
}

.things-body .things-right h4 {
    margin-bottom: 20px;
}

.things-body .work-right h5 {
    padding-top: 20px;
    margin-bottom: 5px;
    border-top: 1px solid #D0D0D0;
}

.things-body .work-right p,
.things-body .things-right p {
    color: #A6A6A6;
    margin-bottom: 20px;
}

.things-body .work-right a,
.things-body .things-right a {
    font-size: 16px;
    font-style: normal;
    font-weight: 430;
    line-height: 24px;
    letter-spacing: 0.32px;
    color: var(--950, #062A4B);
    transition: all 0.5s ease;
    border: none !important;
    padding-bottom: 5px !important;
}

.things-body .work-right a:hover,
.things-body .things-right a:hover {
    border-bottom: 1px solid #062A4B !important;
}

/* ==========================================================================
   Footer Styling
   ========================================================================== */

footer {
    color: #fff;
    text-align: center;
    width: 100%;
    background: white;
    position: relative;
    z-index: 1;
}

footer>div {
    padding-bottom: 20px;
}

.footer-upper {
    background-color: #67B0FF;
    border-radius: 10px;
    padding: 30px 30px 25px 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-upper .links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: end;
    padding-left: 30px;
}

.footer-upper .socials {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    justify-content: end;
}

.footer-upper .links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.footer-upper .links a:hover {
    color: #0D2A4A;
}

.footer-lower {
    background-color: #0D2A4A;
    border-radius: 10px;
    padding: 20px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-lower .links {
    display: flex;
    gap: 30px;
}

.footer-lower .links a,
.footer-lower p {
    font-size: 14px;
    font-weight: 400;
    font-weight: 400;
    line-height: 22px;
    /* 150% */
    letter-spacing: 0.28px;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

/* ==========================================================================
   Google Map Styling
   ========================================================================== */
.gm-style-iw-d {
    max-height: unset !important;
}

.gm-style .gm-style-iw-c {
    max-width: 350px !important;
    max-height: unset !important;
    padding: 0;
}

.gm-style-iw-ch,
.gm-style .gm-style-iw-tc,
.gm-style .gm-style-iw-d::-webkit-scrollbar {
    display: none;
}

.g-header {
    padding: 9px 18px;
    padding-right: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #0076CC;

    font-size: 14px !important;
    line-height: 22px !important;
    letter-spacing: 0.28px !important;
    font-family: "Haffer", sans-serif !important;
    color: white;
}

.g-header>span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.g-header>div.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.g-header>div.icon svg {
    width: 15px;
    height: 15px;
}

.g-body {
    padding: 19px 18px;
    font-size: 14px !important;
    line-height: 22px !important;
    letter-spacing: 0.28px !important;
    font-family: "Haffer", sans-serif !important;
}

.g-body .btn-wrapper {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.g-body .link {
    padding: 5px 16px;
    color: var(--White, #FFF);
    font-family: "Haffer", sans-serif !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.28px;
    border-radius: 100px;
    border: 0px solid var(--800, #045088);
    background: var(--700, #005EA5);
    transition: all 0.5s ease;
    text-decoration: none;
}

.g-body .link:hover {
    border: 0px solid var(--800, #045088);
    background: var(--100, #DFF0FF);
    color: black;
}

.gm-ui-hover-effect {
    position: absolute !important;
    right: 2px;
    top: 6px;
    width: 30px !important;
    height: 30px !important;
    opacity: 1;
}

.gm-ui-hover-effect>span {
    background-color: white;
    margin: 0 !important;
}

/* ==========================================================================
   Mobile Styling
   ========================================================================== */

@media (max-width: 768px) {

    h1,
    .h1 {
        font-size: 46px;
        font-style: normal;
        font-weight: 570;
        line-height: 56px;
        letter-spacing: 0.92px;
    }

    h3,
    .h3 {
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 34px;
        letter-spacing: 0.48px;
    }

    h4,
    h4 span,
    .h4 {
        font-size: 24px;
        line-height: 34px;
        letter-spacing: 0.48px;
    }

    .px-md-0 {
        padding-left: 0px;
        padding-right: 0px;
    }

    .px-md-4 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .py-md-6 {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    /* common */
    .d-md-none {
        display: none;
    }

    .d-md-block {
        display: block;
    }

    .w-md-100 {
        width: 100%;
    }

    .flex-md-column {
        flex-direction: column;
    }


    /*    Mobile Sidebar Menu Styling */
    header .sidebar-menu {
        position: fixed;
        height: 100vh;
        padding: 30px 16px;
        top: 0px;
        right: -600px;
        width: 100%;
        max-width: 600px;
        border-radius: 0px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 1s ease;
    }

    header .sidebar-menu.active {
        right: 0px;
        transition: all 0.5s ease;
    }

    header .sidebar-menu ul li {
        font-size: 40px;
        line-height: 56px;
        /* 121.739% */
        letter-spacing: 0.92px;
        margin-bottom: 4px;
    }


    header .sidebar-menu .socials {
        justify-content: end;
    }

    header .sidebar-menu .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        padding: 12px;
    }

    /*    Mobile Header Styling */

    header .header-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    header ul.desktop-menu ul.desktop-menu {
        display: none !important;
    }

    header ul.desktop-menu {
        padding: 0 4px;
    }

    header ul.desktop-menu a.menu-btn {
        display: flex !important;
    }

    .explore-lp-animation {
        /* padding: 32px 16px; */
        height: 660px;
    }

    .explore-lp-animation .frame-03 {
        padding: 32px 16px;
    }

    .things-lp-animation {
        height: 660px;
        width: 100%;
    }

    .explore-lp-animation .frame-03 h1 {
        font-size: 48px;
        font-style: normal;
        font-weight: 670;
        line-height: 53px;
        /* 110.417% */
        letter-spacing: 1.44px;
    }

    .explore-lp-animation .frame-03 p {
        margin-bottom: 35px;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        /* 166.667% */
        letter-spacing: 0.36px;
    }

    .slider-handle {
        right: 0px;
    }

    #image-slider .slider-handle {
        right: 16px;
    }

    #home-slider {
        height: 880px;
    }

    #home-slider .slider-image {
    background-attachment: scroll;
    background-position: center center !important;
    height: 100vh;
    background-repeat: no-repeat !important;
    
		/* Change from contain to a hybrid approach */
		background-size: auto 100% !important; /* Height fills container, width scales proportionally */
		/* OR try this alternative */
		/* background-size: 100% auto !important; */ /* Width fills container, height scales proportionally */
	}
	
	.slider-images {
    overflow: hidden; /* Prevent potential overflow issues */
	}
	.slider-image:not(.active) {
		display: none; /* Hide non-active slides completely */
	}

    #home-slider .tag-line {
        padding-left: 32px;
        position: relative;
        transform: unset;
        top: unset;
        left: unset;
        padding-top: 300px;
    }

    #home-slider .tag-line span {
        font-size: 48px;
        font-style: normal;
        font-weight: 670;
        line-height: 50px;
        /* 104.167% */
        letter-spacing: 1.44px;
    }

    .slider-text-container {
        height: 50px;
        width: 300px;
    }

    .building-tag {

        padding: 5px 16px;
        font-size: 12.917px;
        font-weight: 400;
        line-height: 20.667px;
        letter-spacing: 0.388px;
    }

    .icon.building-tag {
        padding: 8.33px;
    }

    .ellipse-43 {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: white;
    }

    #introduction {
        padding: 160px 0;
    }


    #introduction:hover .img-1,
    #introduction .img-1 {
        width: 190px;
        height: 130px;
        left: -5px;
        bottom: 0;
    }

    #introduction:hover .img-2,
    #introduction .img-2 {
        width: 180px;
        height: 120px;
        right: -5px;
        bottom: 38px;
    }

    #introduction:hover .img-3,
    #introduction .img-3 {
        width: 160px;
        height: 105px;
        top: 20px;
    }

    #introduction img {
        opacity: 1;
    }

    #introduction p {
        opacity: 1;
        font-weight: 400;
        padding: 0 32px;
    }

    .intro-fixed:hover #introduction p,
    .intro-fixed:hover #introduction img,
    #introduction:hover p,
    #introduction:hover img {
        opacity: 1;
        transition: all 2s ease, transform 2s ease;
    }

    #campus-map .building .line {
        height: 50px;
    }

    #campus-map .building.arts .line {
        height: 30px;
    }

    #campus-map .building.oculus .line {
        height: 90px;
    }

    .building.wtc1 {
        left: 25%
    }

    .building.wtc7 {
        top: 43%;
    }

    .building.wtc4 {
        top: 21%;
        left: 76%;
    }

    .building.oculus {
        top: 58%;
    }

    #page-link-sec .link-item {
        padding: 39px 16px;
    }

    #page-link-sec .link-item p {
        font-size: 32px;
        font-style: normal;
        line-height: 50px;
        letter-spacing: 0.96px;
    }

    #page-link-sec .link-item img {
        display: none;
    }

    #home-img-sec img {
        height: 510px;
    }

    #social-slider-sec {
        padding-top: 50px;
    }

    #social-slider-sec .slider-heading {
        flex-direction: column;
        padding-left: 16px;
        padding-right: 16px;
    }

    #social-slider-sec .slider-heading h4 {
        font-size: 36px;
        line-height: 50px;
        letter-spacing: 1.08px;
    }

    #campus-sec {
        padding: 70px 0;
    }

    #campus-sec .desc {
        padding: 0 16px;
    }

    #campus-sec .desc h4 {
        margin-bottom: 46px;
        font-size: 36px;
        line-height: 50px;
        letter-spacing: 1.08px;
    }

    #campus-map {
        margin-top: 73px;
    }

    #campus-map {
        border-radius: 0;
    }

    .wtc1 .building-card {
        top: 0;
        left: calc(100% + 20px);
    }

    .wtc3 .building-card {
        top: 0;
        right: calc(100% + 5px);
    }

    .wtc4 .building-card {
        top: 0;
        right: calc(100% + 20px);
    }

    .wtc7 .building-card {
        top: -50px;
        left: calc(100% + 20px);
    }

    .liberty {
        z-index: 3;
    }

    .liberty .building-card {
        right: 100%;
    }

    .church .building-card {
        right: 100%;
    }

    .arts .building-card {
        left: calc(100% + 10px);
        bottom: 0;
    }

    #campus-map .active.building.oculus {
        flex-direction: column-reverse;
        top: 80% !important;
    }

    #campus-map .active.building.oculus .building-card {
        bottom: calc(100% + 5px);
    }

    .building-card {
        width: 195px;
        height: auto;
    }

    .ellipse-43 {
        width: 7px;
        height: 7px;
    }

    .building-card .card-header {
        padding: 12px;
        font-size: 11.235px;
        ;
        font-weight: 400;
        line-height: 17.654px;
        /* 157.143% */
        letter-spacing: 0.225px;
    }

    .building-card .card-img {
        height: 110px;
    }

    .building-card .card-body {
        background: white;
        padding: 14px 11px 16px 11px;
        border-radius: 0 0 6px 6px;
    }

    .building-card .card-body p {
        font-size: 11.235px;
        line-height: 17.654px;
        letter-spacing: 0.225px;
        margin-bottom: 14px;
    }

    .theme-btn-sm {
        padding: 4px 14px;
        font-size: 11.235px;
        font-style: normal;
        font-weight: 400;
        line-height: 17.654px;
        letter-spacing: 0.225px;
    }

    /* Tile Group Mobile Styling */

    #tile-group {
        padding-left: 16px;
        padding-right: 16px;
    }

    .tile-items {
        grid-template-columns: 1fr;
    }

    .tile-card .tile-body {
        padding: 32px 23px;
    }

    .tile-card .tile-body h3 {
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 40px;
        /* 125% */
        letter-spacing: 0.64px;
    }

    .tile-card .tile-body p {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        /* 157.143% */
        letter-spacing: 0.28px;
        margin-bottom: 30px;
    }

    .tile-card .tile-img {
        height: 240px;
    }


    /* Plan Your Visit - Mobile Styling */

    #plan-your-visit {
        padding: 24px 16px 44px 16px;
    }

    #plan-your-visit .visit-body {
        flex-direction: column;
    }

    #plan-your-visit .visit-body .content {
        padding: 60px 32px;
        gap: 40px;
        border-radius: 10px 10px 0px 0px;
        background: #062A4B;
        width: 100%;
    }

    #plan-your-visit h4 {
        font-size: 35px;
        line-height: 40px;
        /* 114.286% */
        letter-spacing: 0.7px;
    }

    #plan-your-visit .btn {
        background: white;
        color: #062A4B;
        transition: all 0.5s ease;
    }

    #plan-your-visit .btn:hover {
        background: transparent;
        color: white;
        border: 1px solid white;
        transition: all 0.5s ease;
    }

    #plan-your-visit .img {
        height: 275px;
        border-radius: 0px 0px 10px 10px;
    }

    #plan-your-visit .img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .info-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .info-wrapper .title {
        width: 100%;
        min-width: unset;
    }

    .info-wrapper .content {
        padding: 35px 26px 35px 27px;
    }

    #gallery {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .image-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;
    }

    .image-wrapper img:nth-child(1) {
        width: 100%;
    }

    .image-wrapper img:nth-child(2) {
        height: auto;
        width: 100%;
    }

    .contact-banner {
        padding: 172px 16px 100px 16px;
    }

    .contact-banner h1 {
        font-size: 48px;
        font-weight: 600;
        line-height: 50px;
        letter-spacing: 1.44px;
    }

    .contact-banner p {
        font-size: 12px;
        font-weight: 430;
        line-height: 29px;
        letter-spacing: 0.24px;
    }

    .contact-form {
        padding: 0 16px;
    }

    .input-form {
        display: flex;
        align-items: start;
        margin-bottom: 15px;
        flex-direction: column;
        gap: 30px;
    }

    .checkboxes label,
    .input-form label {
        font-size: 24px;
        font-weight: 400;
        line-height: 34px;
        /* 141.667% */
        letter-spacing: 0.48px;
        width: 260px;
        margin-right: 20px;
    }

    .input-form input:focus {
        border-bottom: 2px solid black;
        outline: none;
    }

    .input-form input::placeholder {
        color: #a5a5a5;
    }

    .input-form input {
        width: 100%;
        font-size: 24px;
        font-weight: 400;
        line-height: 34px;
        letter-spacing: 0.48px;
    }

    .form-wrapper {
        display: flex;
        gap: 42px;
        margin-top: 64px;
        flex-direction: column;
    }


    .form-wrapper .checkboxes {
        width: 100%;
    }

    .submit-btn {
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-direction: column;
        gap: 30px;
    }

    .submit-btn p {
        flex-direction: row;
    }

    label.checkbox {
        font-size: 19px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        /* 152.632% */
        letter-spacing: 0.38px;
        display: flex;
        align-items: center;
        margin-bottom: 14px;
        cursor: pointer;
    }

    .custom-checkbox {
        appearance: none;
        /* Remove default checkbox styling */
        width: 28px;
        height: 28px;
        border: 1px solid black;
        position: relative;
        cursor: pointer;
        border-radius: 3px;
        margin-right: 26px;
    }

    .custom-checkbox:checked {
        background-color: white;
    }

    .custom-checkbox:checked::before {
        content: '';
        display: block;
        width: 22px;
        height: 22px;
        border-radius: 2px;
        background-color: #a6a6a6;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .textarea {
        flex: 1;
        width: 100%;
        max-width: 670px;
    }

    textarea {
        width: 100%;
        border-radius: 10px;
        padding: 28px;
        margin-bottom: 30px;
        font-size: 19px;
        font-style: normal;
        font-weight: 400;
        line-height: 29px;
        letter-spacing: 0.38px;
    }

    #partners {
        padding: 40px 16px;
    }

    #partners p {
        font-size: 24px;
        font-weight: 400;
        line-height: 34px;
        /* 141.667% */
        letter-spacing: 0.48px;
        margin-bottom: 36px;
    }

    #partners .partner-wrapper {
        grid-template-columns: repeat(1, 1fr);
        /* Two columns of equal width */
    }

    .partner-wrapper .partner {
        padding: 30px 27px;
        height: 320px;
    }

    .partner-wrapper .partner p {
        font-size: 38px;
        font-weight: 400;
        line-height: 48px;
        /* 126.316% */
        letter-spacing: 0.76px;
        opacity: 1;
    }

    .partner-wrapper .partner a {
        opacity: 1;
    }


    #gallery .image-wrapper img:nth-child(1) {
        width: 100%;
        max-width: unset;
    }

    #gallery .image-wrapper img:nth-child(3) {
        width: 100%;
        max-width: unset;
    }

    /* ==========================================================================
       Bookstore Styling for mobile version
       ========================================================================== */

    .host-your-event,
    .bookstore-animation {
        padding: 170px 16px 100px 16px;
    }

    .host-your-event h1,
    .bookstore-animation h1 {
        font-size: 48px;
        font-weight: 600;
        line-height: 50px;
        letter-spacing: 1.44px;
    }

    .host-your-event p,
    .bookstore-animation p {
        font-size: 12px;
        letter-spacing: 0.36px;
        margin-bottom: 35px;
    }

    .host-your-event h1 {
        margin-bottom: 35px;
    }

    .event-space-card img {
        height: 320px;
    }

    #event-venues {
        padding-top: 40px;
        padding-left: 16px;
        padding-right: 16px;
    }

    #more-bookstore {
        padding-left: 16px;
        padding-right: 16px;
    }

    .book-cover {
        flex-direction: column;
        padding: 62px 16px 70px 16px;
    }

    .book-cover .cover-img {
        width: 100%;
        padding: 0 34px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: -30px;
    }

    .book-cover .cover-img img {
        border-radius: 10px;
    }

    .book-cover .content {
        flex: 1;
    }

    .book-cover .content {
        padding: 60px 16px;
        flex-direction: column;
        gap: 40px;
    }

    .book-cover .content h4 {
        font-weight: 400;
    }


    /* ==========================================================================
       Our Event Box Mobile Styling
       ========================================================================== */

    #event-box {
        background: #062A4B;
    }

    #event-box .event-wrapper {
        display: flex;
        gap: 24px;
        padding-right: 16px;
        padding-left: 16px;
        flex-direction: column;
    }

    #event-box .content {
        padding: 40px 16px;
        background: #DFF0FF;
    }

    #event-box .content.active {
        display: block;
    }

    #event-box .tabs {
        display: flex;
        justify-content: space-between;
    }

    #event-box .tab {
        padding: 0;
        width: auto;
    }

    #event-box .tab .icon {
        width: 60px;
        height: 60px;
        margin-right: 0px;
        background: #C7C8CD !important;
    }

    #event-box .tab.active .icon {
        background: #DFF0FF !important;
    }

    #event-box .tab p {
        display: none;
    }

    .event-images img {
        max-width: 100%;
    }

    .event-images .imgs-01 {
        display: flex;
        align-items: start;
        margin-bottom: 40px;
        flex-direction: column;
        position: relative;
        padding: 0 16px;
    }

    .event-images .imgs-02 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .event-images .imgs-03 {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: start;
    }

    .event-images .event-01 {
        margin-bottom: 40px;
        margin-left: 0px;
        width: 75%;
    }

    .event-images .event-02 {
        position: absolute;
        top: 5%;
        right: 0px;
        left: unset;
        width: 75%;
    }

    .event-images .event-04 {
        margin-left: 0px;
        margin-bottom: 20px;
    }

    .event-images .event-05 {
        margin-right: 0px;
        margin-bottom: 20px;
        z-index: 2;
    }

    .event-images .event-07 {
        margin-top: 40px;
    }


    /* ==========================================================================
       Download brochure section
       ========================================================================== */

    #download-brochure {
        padding: 80px 16px
    }

    #download-brochure p {
        font-size: 24px;
        font-weight: 400;
        line-height: 34px;
        letter-spacing: 0.48px;
        margin-bottom: 66px;
    }


    #download-brochure .btns {
        flex-direction: column;
    }

    #download-brochure .btns a {
        display: inline-block;
    }

    #image-slider {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    #explore-more {
        padding-right: 16px;
        padding-left: 16px;
    }

    .things-banner h1 {
        padding-right: 16px;
        padding-left: 16px;
        margin-bottom: 56px;
    }

    .breadcrumb {
        padding-right: 16px;
        padding-left: 16px;
        margin-bottom: 30px;
        margin-top: 60px;

    }

    .things-body {
        flex-direction: column;
        padding-right: 16px;
        padding-left: 16px;
        gap: 60px;
    }

    footer>div {
        padding-right: 16px;
        padding-left: 16px;
        padding-bottom: 16px;
    }

    .footer-upper .socials {
        display: none;
    }

    .footer-upper {
        flex-direction: column;
        align-items: start;
        margin-bottom: 10px;

    }

    .footer-upper img {
        margin-bottom: 35px;
    }

    .footer-upper .links {
        justify-content: start;
        padding-left: 0px;
        gap: 26px 17px;
    }

    .footer-upper .links a {
        color: #0D2A4A;
    }

    .footer-lower {
        flex-direction: column;
    }

    .footer-lower .links {
        margin-bottom: 37px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 23px;
    }

    #blog-cards .blog-item:nth-child(even) {
        margin-top: 0px;
    }

    .map .tab {
        left: -95px;
        justify-content: end;
    }

    .map .tab:hover,
    .map .tab:focus,
    .map .tab.active {
        width: 175px;
    }

    .map .tab .text {
        display: none;
    }

    .book-card a {
        opacity: 1;
    }

    #explore-more h4,
    #more-bookstore h4,
    #event-venues h4 {
        padding-right: 160px;
    }

}

@media (max-width: 461px) {
    #social-slider-sec {
        padding-top: 90px;
    }
}

@media (max-width: 425px) {

    /* common */
    .d-sm-none {
        display: none;
    }

    #social-slider-sec .social-slider img {
        width: 285px;
        height: 285px;
        object-fit: cover;
        border-radius: 10px;
    }

    #plan-your-visit .btn strong,
    #plan-your-visit .btn span {
        display: none;
    }

    .footer-upper .socials {
        display: none;
    }

    .footer-lower .splitter {
        display: none;
    }

    header .sidebar-menu {
        opacity: 0;
        right: 0;
        pointer-events: none;
    }

    header .sidebar-menu.active {
        opacity: 1;
    }

    header .sidebar-menu ul li {
        font-size: 35px;
        line-height: 56px;
        letter-spacing: 0.92px;
        margin-bottom: 4px;
    }

    .gm-style .gm-style-iw-c {
        max-width: 250px !important;
    }

    #explore-more h4,
    #more-bookstore h4,
    #event-venues h4 {
        padding-right: 160px;
    }

    .mb-sm-0 {
        margin-bottom: 0;
    }

    .marquee__item {
        padding-right: 40px;
    }
}

@media (max-width: 375px) {

    #explore-more h4,
    #more-bookstore h4,
    #event-venues h4 {
        padding-right: 110px;
    }

    /* .slider-handle {
        position: absolute;
        top: -60px;
        right: 50px;
    } */

    .slider-handle .glide__arrow {
        display: flex;
        width: 45px;
        padding: 10px 5px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        border-radius: 10px;
    }

    /* .slider-handle .glide__arrow--right {
        right: 5px;
    }

    .slider-handle .glide__arrow--left {
        left: 5px;
    } */

    .event-space-card .space-header {
        padding: 20px 18px;
    }

    .event-space-card .space-header p {
        font-size: 14px;
        font-style: normal;
        line-height: 29px;
        letter-spacing: 0.38px;
    }
}