.center-container {
    display: flex;
    align-items: center; 
    margin-left: 5vw;
    width: 60%;
    height: 210px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: row; 
    align-items: center;
    gap: 1vw;           
}

.fade-in-bottom.visible,
.fade-in-overview.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-bottom {
    opacity: 0;
    transform: translateY(20%);
    transition: opacity 0.6s ease-in, transform 0.6s ease-out;
}

.fade-in-overview {
    opacity: 0;
    transform: translateX(-20%);
    transition: opacity 0.6s ease-in, transform 0.6s ease-out;
}

.fade-in-overview:nth-child(1) {
  transition-delay: 0.1s;
}

.fade-in-overview:nth-child(2) {
  transition-delay: 0.2s;
}

.fade-in-overview:nth-child(3) {
  transition-delay: 0.3s;
}

.fade-in-overview:nth-child(4) {
  transition-delay: 0.4s;
}

.fade-in-overview:nth-child(5) {
  transition-delay: 0.5s;
}

.fade-in-overview:nth-child(6) {
  transition-delay: 0.6s;
}

.true-logo {
    width: 20vw;
    padding-bottom: 2rem;
}

.true-text {
    display: flex;
    align-items: center; 
    font-size: 3.8rem;
    color: #0A4769;
    font-family: 'AktivGrotesk-Bold';     
}

.text-image {
    width: 24%;        
    padding-left: 1vw;   
}

.text-wrapper {
    padding-left: 1vw;
}

.true-logo {
    width: 5vw;
    height: auto;
}

.expect_text {
    font-family: AktivGrotesk-Regular; 
    font-size: 1.6vw;
}

.experience-title {
    font-size: 2.7vw;
    line-height: 48px;
    color: #0A4769;
    max-width: 50%;
}

.sub-title {
    font-family: AktivGrotesk-Regular; 
    font-size: 1.5vw;
}

.landing-center {
    position: relative;
    background: linear-gradient(90deg, #F1F9FE 0%, #FFFFFF 100%);
    padding: 2vw 5vw;  
}

.overview-wrapper {
    width: 50%; 
    margin: 0 auto 0 0 ; 
    padding-top: 1vw;
}

.overview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw; 
    justify-content: center;
}

.overview-item {
    flex: 1 1 calc(45% - 2vw);
    box-sizing: border-box;
    color: #0A4769;
    background: #fff; 
    padding: 1vw; 
    text-align: left; 
}

.overview-item img {
    width: calc(100% + 2vw);
    height: auto;
    display: block;
    margin: 0 -1vw 1vw -1vw;
    left: -1vw;
}


.fade-in-bottom{
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 0.6s ease-in, transform 0.6s ease-out;
}
.fade-in-bottom.visible,{
    opacity: 1;
    transform: translateY(0);
}
.overview-title {
    padding-bottom: 1vw;
    font-size: 18px;
    font-weight: 700;
    font-family: HelveticaNeueMedium;
}

.overview-desc {
    color: black;
    font-family: AktivGrotesk-Regular;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 25px;
}

.true-text #changing-text {
    transition: opacity 0.2s;
    opacity: 1;
}

.true-text #changing-text.fade-out {
    opacity: 0;
}

.overview-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    overflow: hidden;
}

#popup-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1D1D1DE5;
    align-content: center;
    padding: 0 5%;
}

#popup-content {
    background: white;
    margin: auto;
    width: fit-content;
    border-radius: 16px;
    overflow: auto;
    max-height: 95%;
    max-width: 39rem;
}

#popup-content::-webkit-scrollbar {
  display: none;
}

#address-details {
    padding: 3%;
    font-family: HelveticaNeueLight;
    color: #04273B;
    font-size: 1.2rem;
}

.details hr {
    margin-top: 0.7rem;
    margin-bottom: 0.5rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.outlet-location-name {
    font-weight: bold;
    font-size: 1.25rem;
    color: #ED1A78;
}

.detail-image {
    width: 100%;
    margin-top: 0.4rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    height: auto;
}

.detail-image img {
    width: 100%;
    object-fit: contain;
    max-height: 18.5rem;
}

.opening-hours td:first-child {
    width: 45%;
}

.mrt-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mrt-text img {
    width: 7%;
}

img[src="/images/location/mrt-line-ewl.svg"] {
    width: 7.5%;
}

.nearestMRT {
    padding-top: 7px;
}

.nearestMRT td:first-child {
    padding-right: 4rem
}

.nearestMRT td:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nearestMRT table td img {
    width: 20%;
}

.bus-service-container {
    margin-top: 0.3rem;
}

.close-popup {
    float: right;
    font-size: 2rem;
    color: #ED1A78;
    font-family: 'HelveticaNeue';
    cursor: pointer;
}

.how-to-text {
    margin-bottom: 0 !important;
    display: flex; 
    align-items: center; 
    color: #ED1A78;
    cursor: pointer;
}

.how-to-text > img {
    margin-right: 0.2rem;
}
@media (min-width: 769px) {
    .opening-hours {
        padding-top: 7px;
        white-space: nowrap;
    }
}

@media(max-width: 1600px) {
    .overview-desc {
        font-size: .9rem;
        line-height: 20px;
    }
}

@media(max-width: 1024px) {
    .overview-title {
        font-size: 13px;
    }

    .true-text {
        font-size: 3rem;
    }

    .experience-title {
        font-size: 2rem;
        line-height: 30px;
    }
}

/*Mobile View */
@media (max-width: 880px) {
    .landing-center {
        background: #F1F9FE!important;
    }

    .overview-wrapper {
        width: 100%;
        margin: 0 auto;
    }

    .expect_text {
        font-family: AktivGrotesk-Regular; 
        font-size: 2rem;
        text-align: center;
        background-color: #F1F9FE;
        font-weight: 400;
        padding-bottom: 5vw;
    }

    .overview-container {
        flex-direction: column;
        gap: 1vw;
    }
    
    .overview-item {
        flex: 1 1 100%;
        margin-bottom: 6vw;
        border-radius: 8px;
    }

    .overview-title {
        font-size: 1.5rem;
        padding: 1rem
    }

    .overview-desc {
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 25px;
    }

    .overview-bg {
        display: none;
    }
    
    .experience-title {
        font-size: 3.25rem;
        line-height: 50px;
        text-align: center;
        font-weight: 900;
        padding-top: 5vw;
        max-width: 100% !important;
    }

    .center-container {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        align-items: center;
        height: auto;
    }
    
    .logo-text-wrapper {
        flex-direction: column; 
        align-content: center;    
        padding: 13vw 0;
        justify-content: left;
    }

    .true-logo {
        width: 20vw; 
    }

    .true-text {
        font-size: 10vw; 
        margin-left: 5vw;
    }
    .text-image {
        width: 25vw;  
    }

    .overview-desc {
        padding: 2vw 2.5vw;
    }
    .if-required {
        font-size: 1.25rem !important;
    }
    .text-wrapper {
    width: 60vw;
    padding-left: 3vw;
    }

    #changing-text {
        display: block;
    }

    #popup-content {
        width: fit-content;
    }

    #address-details {
        padding: 3% 6%;
        font-size: 1rem;
        line-height: 1.2rem;
    }

    .mrt-text img {
        width: 12%;
    }

    img[src="/images/location/mrt-line-ewl.svg"] {
    width: 13.9%;
    }

    .opening-hours td:first-child {
        width: 140%;
        display: flex;
        flex-wrap: nowrap;
        padding-right: 5rem;
    }

    .nearestMRT table td img {
        width: 17%;
    }
}

@media(max-width: 576px) {
    .experience-title {
        font-size: 2rem;
        line-height: 35px;
    }

    .expect_text {
        font-size: 1.45rem;
        line-height: 2rem;
    }

    .overview-title {
        font-size: 1.25rem;
    }

    .overview-desc {
        font-size: 1rem;
        line-height: 20px;
    }

    .detail-image div {
        flex: 1; 
        max-width: 48%;
    }

}

@media(max-width: 400px) {

    .opening-hours td:first-child {
        padding-right: 4rem;
    }

    .nearestMRT td:first-child {
        padding-right: 2rem
    }
    
}




/* faq */
.faq-section {
    /*margin: 0 5vw;*/
    padding: 2vw 0 2vw 5vw;
}
.faq-title {
    font-family: AktivGrotesk-Bold;
    font-size: 2.5rem;
    font-weight: 400;
    color: #0A4769;
    line-height: 45.6px;
    margin-bottom: 1.25rem;
}
.faq-item {
    margin-bottom: 10px;
    padding: 1.042vw;
    cursor: pointer;
}
.faq-item.active {
    background-color: #f1f9ff;
    border-radius: 6px;
}
.faq-question {
    font-family: HelveticaNeueLight;
    font-size: 1.25rem;
    font-weight: 400;
    color: #04273B;
    line-height: 23.4px;
    margin: 0;
    transition: color 0.3s ease-out;
}

.faq-question i {
    float: right;
}
.faq-item.active .faq-question {
    font-family: HelveticaNeueBold;
    color: #ED1A78;
    transition: color 0.3s ease-out;
}
.faq-icon::before {
    content: "";
    display: inline-block;
    /* fixed svg size */
    width: 21px;
    height: 15px;
    background: url(/images/bottom-landing/arrow-down.svg);
    background-repeat: no-repeat;
    transform: rotate(0deg);
    transition: transform 0.3s linear;
}
.faq-item.active .faq-icon::before {
    filter: invert(48%) sepia(84%) saturate(1888%)
            hue-rotate(306deg) brightness(97%) contrast(97%);
    transform: rotate(180deg);
    transition: transform 0.3s linear;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, visibility 0.2s;
    visibility: hidden;
    margin-top: 10px;
    padding-right: 2vw;

    font-family: HelveticaNeueLight;
    font-size: 1.125rem;
    font-weight: 400;
    color: #1D1D1D;
    line-height: 22.4px;
}
.faq-answer p {
    display: none;
    margin: 0;
    line-height: 20px;
}
.faq-item.active .faq-answer {
    max-height: 800px;
/*  overflow-y: auto;*/
    transition: max-height 0.3s ease-out, visibility 0.2s;
    visibility: visible;
    padding-right: 2vw;
}
.faq-item.active .faq-answer p {
    display: block;
    margin: 0;
}
.mobile-break {
    display: none;
}

/* location */
.location-section {
    display: flex;
    background: #f2f2f2;
}
.location-left-side{
    padding: 4vw 6vw;
}
.location-title {
    font-family: AktivGrotesk-Bold;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1D1D1D;
    line-height: 56px;
    margin-bottom: 1.25rem;
}
.location-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.location-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    align-items: flex-start;
}
.location-name {
    font-family: HelveticaNeueBold;
    font-size: 1.125rem;
    font-weight: 700;
    color: #04273B;
    line-height: 21.6px;
}
.location-street {
    font-family: HelveticaNeueLight;
    font-size: 1.125rem;
    font-weight: 400;
    color: #04273B;
    line-height: 25.2px;
}
.line {
    border-top: 1px solid #bbbbbb;
}
.location-card:nth-child(1) .custom-height,
.location-card:nth-child(2) .custom-height,
.location-card:nth-child(3) .custom-height,
.location-card:nth-child(4) .custom-height,
.location-card:nth-child(5) .custom-height,
.location-card:nth-child(6) .custom-height {
    height: 105px;
}

.location-card:nth-child(7) .custom-height,
.location-card:nth-child(8) .custom-height {
    height: 130px;
}
.location-city {
    font-family: HelveticaNeueLight;
    font-size: 1.125rem;
    font-weight: 400;
    color: #04273B;
    line-height: 28.8px;
}
.location-phone {
    font-family: HelveticaNeueLight;
    font-size: 1.125rem;
    font-weight: 500;
    color: #ed1a78;
    line-height: 28.8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-wrap: nowrap;
}
.location-phone a {
    color: #ed1a78;
}
.location-card a:hover {
    text-decoration: none;
}
.whatsapp-logo::before {
    content: "";
    display: inline-block;
    /* fixed svg size */
    width: 25px;
    height: 25px;
    background: url(/images/bottom-landing/call-logo.svg);
    background-repeat: no-repeat;
}
.maps {
    display: flex;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%;
    position: relative;
    margin: 0 auto;
}
.maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.breakline, .breakline-two, .breakline-third,
.faq-frame, .location-m-details, .appt {
    display: none;
}

@media(max-width: 1600px) {
    .faq-question {
        font-size: 1rem;
        line-height: 15px;
    }

    .faq-answer {
        font-size: .9rem;
        line-height: 15px;
    }

    .location-card:nth-child(1) .custom-height, .location-card:nth-child(2) .custom-height, .location-card:nth-child(3) .custom-height, .location-card:nth-child(4) .custom-height, .location-card:nth-child(5) .custom-height, .location-card:nth-child(6) .custom-height, .location-card:nth-child(7) .custom-height, .location-card:nth-child(8) .custom-height  {
        height: 80px;
    }

    .location-name, .location-street, .location-city, .location-phone {
        line-height: 20px;
        font-size: 1rem;
        margin-bottom: 11px;
    }
}

@media(max-width: 1300px) {
    .location-name {
        font-size: 1rem;
        line-height: 15px;
    }

    .location-street, .location-city, .location-phone {
        font-size: 1rem;
        line-height: 20px;
    }

    .location-card:nth-child(1) .custom-height, 
    .location-card:nth-child(2) .custom-height, 
    .location-card:nth-child(3) .custom-height, 
    .location-card:nth-child(4) .custom-height, 
    .location-card:nth-child(5) .custom-height, 
    .location-card:nth-child(6) .custom-height {
        height: 90px;
    }

    .location-card:nth-child(7) .custom-height, 
    .location-card:nth-child(8) .custom-height {
        height: 110px;
    }
    .breakline,
    .breakline-two {
        display: block;
    }
    .breakcrumb-tnc {
        display: none;
    }
    .tnc {
        display: flex;
        flex-direction: column;
    }
}

@media(max-width: 1270px) {
    .location-card:nth-child(7) .custom-height,
    .location-card:nth-child(8) .custom-height {
        height: 150px;
    }

    .location-name, .location-street, .location-city, .location-phone {
        font-size: 1rem;
    }
}
@media(min-width: 800px) and (max-width: 1199.5px) {
    .location-card:nth-child(7) .custom-height,
    .location-card:nth-child(8) .custom-height {
        height: 135px;
    }

    .location-name, .location-street, .location-city, .location-phone {
        font-size: 0.9rem;
    }
}
@media(max-width: 1199.5px) {
    .faq-section {
        margin: 0;
    }
    .faq-question {
        display: flex;
        justify-content: space-between;
    }
    .faq-question span {
        padding-right: 2vw;
    }
    .faq-answer {
        padding-right: 5vw;
    }
    .faq-item.active .faq-answer {
        padding-right: 5vw;
    }
    
    .location-phone {
        text-wrap: nowrap;
    }
    .mobile-break {
        display: block;
    }
}

@media(max-width: 1024px) {
    .faq-title, .location-title {
        font-size: 2.125rem;
    }
}

@media(max-width:991.5px) {
    .location-section {
        flex-direction: column;
    }
}
@media(min-width: 767.5px) and (max-width: 850px) {
    .faq-section {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 2vw 5vw;
    }
}

@media(max-width:  768px) {
     .location-card:nth-child(7) .custom-height, .location-card:nth-child(8) .custom-height {
        height: 90px;
    }
}

@media(max-width: 767.5px) {
    .faq-bg-cover {
        position: relative;
        overflow: hidden;
    }
    .faq-frame {
        display: block;
        position: absolute;
        left: 0;
        top: -40px;
        /*background: url(/images/bottom-landing/faq-frame.png);*/
        background-size: 30%;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
    }
    .faq-section {
        padding: 10vw 5vw 5vw;
    }
    .faq-title {
        text-align: center;
    }
    .breakline-third {
        display: block;
    }
    .faq-question span {
        padding-right: 5vw;
    }
    .faq-item.active .faq-answer {
        max-height: 1800px;
    }
    .location-title {
        text-align: center;
        margin-bottom: 0.4rem;
    }
    .chiropractor-appt {
        display: block;
    }
    .call-to-action {
        background: #f2f2f2;
        padding: 5vw;
        margin: 1rem 0 1.5rem;
    }
    .call-to-action p {
        font-family: AktivGrotesk-Bold;
        font-size: 1.75rem;
        font-weight: 400;
        color: #0A4769;
        line-height: 28.8px;
    }
    .appt-bg-cover {
        position: relative;
    }
    .cta-button {
        z-index: 1;
        position: absolute;
        left: 5vw;
        top: -25px;
        display: inline-block;
        background-color: #ed1a78;
        padding: 0.875rem;
        border-radius: 8px;
        text-decoration: none;
        color: #fff;

        font-family: AktivGrotesk-Bold;;
        font-size: 0.9rem;
        font-weight: 400;
    }
    .cta-button:hover {
        text-decoration: none;
        color: #fff;
    }
    .image-container {
        position: relative;
    }
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 50%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    }
}
@media(max-width: 700px) {
    .faq-question {
        display: flex;
        justify-content: space-between;
    }
}

@media(max-width: 576px) {
    .faq-title {
        line-height: 2.3rem;
    }

    .faq-question {
        line-height: 20px;
        font-size: 1rem !important;
    }
}
@media(max-width: 575.5px) {
    .faq-frame {
        background-size: 40%;
    }
    .faq-item {
        padding: 4vw;
    }
    .location-details {
        display: none;
    }
    .location-m-details {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    .location-m-card {
        background: #ffffff;
        border-radius: 8px;
        padding: 1.125rem 0.875rem;
    }
    .location-m-name {
        display: flex;
        justify-content: space-between;
        font-family: AktivGrotesk-Bold;
        font-size: 1rem;
        font-weight: 400;
        color: #04273B;
        line-height: 20px;
        margin: 0;
    }
    .faq-m-icon::before {
        content: "";
        display: inline-block;
        /* fixed svg size */
        width: 21px;
        height: 15px;
        background: url(/images/bottom-landing/arrow-down.svg);
        background-repeat: no-repeat;
        transform: rotate(0deg);
        transition: transform 0.3s linear;
    }
    .location-m-card.active .faq-m-icon::before {
        filter: invert(23%) sepia(83%) saturate(1437%)
        hue-rotate(174deg) brightness(70%) contrast(100%);
        transform: rotate(180deg);
        transition: transform 0.3s linear;
    }
    .location-m-dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s linear, visibility 0.3s;
        visibility: hidden;

        font-family: HelveticaNeueLight;
        font-size: 1rem;
        font-weight: 400;
        color: #1D1D1D;
        line-height: 22.4px;
    }
    .location-m-card.active .location-m-dropdown {
        max-height: 800px;
    /*  overflow-y: auto;*/
        transition: max-height 0.3s linear, visibility 0.3s;
        visibility: visible;
    }
    .location-m-street {
        margin-top: 1rem;
        font-family: HelveticaNeueLight;
        font-size: 1rem;
        font-weight: 400;
        color: #04273B;
        line-height: 20px;
    }
}

@media(max-width: 480px) {
    .faq-frame {
        background-size: 45%;
    }
    .faq-title, .location-title {
        font-size: 2rem;
    }
    .faq-question {
/*      font-family: HelveticaNeueLight;*/
    }
    .breakline-forth {
        display: none;
    }
    .location-m-name span {
        padding-right: 5vw;
    }
    .faq-answer {
       
    }
    .faq-item.active .faq-answer {
        margin-top: 0;
        padding-top: 3vw;
        padding-left: 0;
        padding-right: 5vw;
    }
    .faq-item {
        margin-bottom: 0;
    }
}
@media(max-width:340px) {
    .faq-frame {
        background-size: 50%;
    }
    .call-to-action p {
        font-size: 1.5rem;
    }
}