@import '/styles/global.css';
@import '/styles/HeaderManager.css';
@import '/styles/FooterManager.css';



/*----  HOME PAGE HERO  ----*/
.hero__shape {
    width: 100%;
    min-height: 700px;
    margin-left: 0;
    margin-right: 0;
    opacity: 1;
    background-image: url("/assets/images-new/Hero_Yellow_Bottom_Left.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* background: radial-gradient( circle at 20% 80%, #60BB46, #87c041 );
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); */
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;   /* vertical center */
    justify-content: center; /* horizontal center */
}
.hero__shape--text {
    max-width: 1050px;
    text-align: center;
    padding-inline: 150px;
}
#hero-title {
    padding-bottom: 20px;
}
.hero__shape--text h1 {
    padding-top: 0px;
    line-height: 1.4;
}
.hero__shape--text h1,
.hero__shape--text p {
    width: 100%;
    color: var(--text-color-white);
    margin-left: 0;
    text-transform: none; 
}
.hero__shape--text p {
    font-size: 1.2rem;
    padding-top: 15px;
    padding-bottom: 0px;
}






/*------------------*/
/*  Removing Blind Spots for Full Transparency   */
.blind-spots {
    width: 100%;
}
.blind-spots__container {
    padding: 100px 0px 150px 120px;
    max-width: 1500px;
    margin: 0 auto;
    display: block;
}
.blind-spots__container h2 {
    padding-top: 100px;
    line-height: 1.4;
}
.blind-spots__text-container {
    padding-top: 30px;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative; /* key: allows child to break out */
    overflow: visible;
}
.blind-spots__text {
    width: 50%;
    margin-left: 0;
    padding-right: 0px;
}
.blind-spots__text h2 {
    line-height: 1.4;
}

.blind-spots__text img {
    display: none;
}


.blind-spots__img {
    width: 50%;
    position: relative;
    overflow: visible;
}
.blind-spots__img img {
    width: 70%;       /* zoom in: adjust % as needed */
    max-width: none;
    position: relative;
    right: -8%;
}

.how-it-works-btn-desktop {
    display: inline-block;
    margin-top: 40px;
}
.how-it-works-btn-mobile {
    display: none;
}



/*------------------*/
/*  From Data to Decisions  */
.data-decisions {
    width: 100%;
    background: var(--new-light-green-backgrd);
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    z-index: 10;
}
.data-decisions__container {
    padding: 230px 0px 200px 120px;
    max-width: 1500px;
    margin: 0 auto;
    display: block;
}
.data-decisions__text-container {
    padding-top: 30px;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative; /* key: allows child to break out */
    overflow: visible;
}
.data-decisions__text {
    width: 50%;
    margin-left: 0;
    padding-right: 0px;
}
.data-decisions__text h2 {
    line-height: 1.4;
}


/*--------- Data Accordion --------*/

.data-accordion-container {
    max-width: 1200px;
    padding-top: 15px;
}
.data__accordion {
    border-bottom: 1px solid #011038;
  }
  .data__accordion-item {
    margin-left: 0;
    margin-right: 0;
    padding: 15px 0px;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
  }
  .data__accordion-item h5 {
    text-transform: none;
    text-align: left;
    margin-left: 0;
    margin-right: 20px;
    font-weight: 700;
    color: var(--color-text)
  }
 
  .data__accordion-item svg {
    margin-left: auto;
    margin-right: 0%;
  }
  .data__accordion.active svg {
    transform: rotate(180deg);
  }
  svg {
    transition: transform 0.5s ease-in;
  }
  .panel {
    text-align: left;
    padding: 0px;
    margin: auto;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease-in;
  }
  .data__accordion.active .panel {
    max-height: 300px;
    animation: fade 0.5s ease-in-out;
  }
  .data__accordion .panel p {
    color: var(--color-text);
    padding: 0px 0px 35px 0px;
    
  }
  @keyframes fade {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }
 
  
/*  End of accordion  */


.data-decisions__img {
    width: 50%;
    position: relative;
    overflow: visible;
}
.data-decisions__img img {
    width: 100%;       /* zoom in: adjust % as needed */
    max-width: none;
    position: relative;
    right: -8%; 
}












/*------------------*/
/*  LIVE Data Without Limits   */
.live-data-shape {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background-image: url("/assets/images-new/Green_Background.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-top: -170px;
    z-index: 22;
}
.live-data {
    max-width: 1500px;
    padding: 300px 120px;
}
.live-data__text {
    width: 100%;
    margin-left: 0;
    text-align: center;
}
.live-data__text h2 {
    line-height: 1.4;
}
.live-data__text h2 {
    padding-right: 20px;
    color: var(--text-color-white);
    text-transform: none;    
}
.live-data__text ul {
    padding-top: 10px;
    margin-bottom: 30px;
}
.live-data__text ul li {
    color: var(--text-color-white);

}

ul.data-white-checks {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.data-white-checks li {
    display: block;         /* let icon + text stay together */
    align-items: center;          /* vertical centering */
    gap: 20px;                    /* <-- this is your 20px spacing */
    margin-bottom: 10px;
    color: var(--text-color-white);
  }
  ul.data-white-checks li::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 15px;
    background-image: url("/assets/icons/White_Check_Mark.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }



/*------------------*/
/*  Beyond Passenger Counting   */

.beyond-counting {
    max-width: 1500px;
    padding: 80px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}
.beyond-counting--text {
    width: 40%;
}
.beyond-counting--text h2 {
    line-height: 1.4;
}
.beyond-counting--text h2,
.beyond-counting--text p {
    padding-right: 20px;
}

.beyond-counting--table {
    width: 60%;
}
/*---   Table   -----*/
caption {
    caption-side: top;
    padding: 10px;
    font-weight: bold;
}
table {
    border-collapse: separate;
    border-spacing: 0; /* prevent gaps */
    border: 1px solid var(--light-grey-divider);
    border-radius: 10px;
    overflow: hidden; /* makes the radius clip child backgrounds */
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
/* Default: show text, hide logo */
.brand-logo {
    display: none;
    height: 20px; /* adjust as needed */
}
thead th {
    font-weight: 700;
    height: 50px;
    background-color: white;
    padding-inline: 5px;
}
tbody th {
    font-size: .85rem;
    font-weight: 500;
    color: var(--color-text);
    min-height: 40px;
    padding: 20px 10px;
}

tr:nth-last-of-type(odd){
    background-color: var(--new-light-green-backgrd);
}
td {
    text-align: center;
}
th[scope="row"] {
    text-align: left;
    padding-left: 30px;
}

.beyond-counting--img {
    width: 50%;
}
.beyond-counting--img img {
    width: 100%;
}
/*------------------*/
/*----  Works Fully Offline  ----*/
/* .offline__shape {
    position: relative;
    background-color: #EEF7E6;
    clip-path: polygon(0 8vw, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
    z-index: 1;
} */
/* .offline--split {
    max-width: 1500px;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 120px 80px 120px;
}
.offline--text-l {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.offline--text-l h2,
.offline--text-l p {
    padding-right: 20px;
    width: 100%;
    margin-left: 0;
}
.offline--text-l h2 {
    padding-top: 0px;
    line-height: 1.4;
    margin-left: 0;
}
.offline--text-l p {
    font-size: 1rem;
    padding-top: 0px;
    padding-bottom: 10px;
}
ul.green-play {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 40px;
}
ul.green-play li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 10px;
    padding-bottom: 0;
    
}
ul.green-play li::before {
    content: "";
    position: absolute;
    left: 0;
    
    width: 20px;
    height: 20px;
    
    background-image: url("/assets/icons/Green_Ticket.svg");
    background-repeat: no-repeat;   
}

.offline--text-r {
    width: 50%;
    padding-inline: 30px;
}
.offline--text-box-container {
    background-color: var(--accent-color);
    padding: 60px;
    border-radius: 10px;
}
.offline--text-box-content h3 {
    color:var(--text-color-white);
    padding-bottom: 30px;
    text-transform: none;
    font-weight: 700;
    line-height: 1.5;
}
ul.white-checks {
    list-style: none;
    padding-left: 0;
}
ul.white-checks li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-color-white);
}
ul.white-checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em;
    width: 20px;
    height: 20px;
    background-image: url("/assets/icons/White_Check_Mark.svg");
    background-repeat: no-repeat;   
} */










/*------------------*/
/*----  Supports All Transit Environments  ----*/
.environments__shape {
    position: relative;
}

.transit-environments {
    max-width: 1500px;
    padding: 160px 120px 0px 120px;
}

/*-------------*/
.content-section {
    margin-top: 20px;
    height: fit-content;
}

/* .content-item {
    display: none;
} */
.content-item img{
    width: 100%;
    margin: auto;
}

.content-item.active {
    display: block;
}
.content-item-mobile-title {
    display: none;
}
/*-------------*/
.environment-slide {
    max-width: 1500px;
    padding: 50px 120px;
    display: none; /* Hide all by default */
    margin-bottom: 30px;
}
.environment-slide:first-child {
    display: block; /* Show first on page load (as a fallback) */
}
.environments-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.environment-left {
    width: 50%;
    
}
.environment-left h4 {
    color: var(--accent-color);
    text-transform: none;
}
.environment-left p {
    padding-block: 30px;
    line-height: 1.6;
}
.slide-controls {
    margin-top: 0px;
    padding-block: 10px;
    display: flex;
    align-items: left;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
.environment-left .slide-controls p {
    padding-top: 5px;
    margin-left: 0;
}
.control-btns {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    width: 80px;
    margin-right: 5px;
}
.slide-title {
    margin-left: 0;
}
.slide-title p {
    font-size: 1rem;
    color: var(--accent-color);
    margin-left: 25px;
    padding-bottom: 0;

}


.environment-right {
    width: 50%;
}
.environment-right img {
    margin-top: 0px;
    padding-left: 20px;
    width: 80%;
}



/*------------------*/
/*----  AI-Ready for Smarter Transit  ----*/

.ai-ready {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background-image: url("/assets/images-new/Light_Green_Background_one_angle.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.ai-ready--split {
    max-width: 1500px;
    display: flex;
    column-gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 200px 120px 100px 120px;
}
.ai-ready--text {
    max-width: 1500px;
    width: 60%;
    margin: 0 auto;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
}
.ai-ready--img {
    width: 40%;
}
.ai-ready--text h2 {
    line-height: 1.4;
}

.ai-ready--text h2,
.ai-ready--text p {
    width: 100%;
    margin-left: 0;
    text-transform: none;
    padding-right: 20px;
}

.ai-ready--text ul {
    margin-left: 0;
}
.ai-ready--text ul li {
    list-style: disc;
    list-style-position: outside; /* <-- change this */
    margin-left: 1.0rem; /* optional: add space between bullet and text */
}





  
/*  Frequently Asked Questions  Section  */
/*--------- Abstimmung Accordion --------*/
.faq {
    max-width: 1200px;
    padding: 150px 120px;
    text-align: center;
}
.accordion-container {
    max-width: 1200px;
    padding-top: 40px
}
.faq__accordion {
    border-bottom: 1px solid #011038;
  }
  .faq__accordion-item {
    margin-left: 0;
    margin-right: 0;
    padding: 18px 0px;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
  }
  .faq__accordion-item h5 {
    text-transform: none;
    text-align: left;
    margin-left: 0;
    margin-right: 20px;
    font-weight: 700;
    color: var(--color-text)
  }
 
  .faq__accordion-item svg {
    margin-left: auto;
    margin-right: 0%;
  }
  .faq__accordion.active svg {
    transform: rotate(180deg);
  }
  svg {
    transition: transform 0.5s ease-in;
  }
  .panel {
    text-align: left;
    padding: 0px;
    margin: auto;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease-in;
  }
  .faq__accordion.active .panel {
    max-height: 300px;
    animation: fade 0.5s ease-in-out;
  }
  .faq__accordion .panel p {
    color: red;
    padding: 0px 0px 35px 0px;
    
  }
  @keyframes fade {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }
  /*  End of  FAQ-ACCORDION  */
  
  .mobile-faq-container {
    display: none;
  }
  
/*  End of accordion  */

  






@media(max-width: 1400px) {  

    /*  Removing Blind Spots for Full Transparency   */
    .blind-spots__img img {
        width: 100%;       /* zoom in: adjust % as needed */
    }

}


@media(max-width: 1100px) {
    /*------------------*/
    /*  Beyond Passenger Counting   */
    /*---   Table   -----*/
    th[scope="row"] {
        width: 170px;
        text-align: left;
        padding-left: 10px;
    }
    
}



@media(max-width: 1024px) {  

    /*----  HOME PAGE HERO  ----*/
    .hero__shape--text {
        max-width: 900px;
        text-align: center;
        padding-inline: 80px;
    }

    /*------------------*/
    /*  Removing Blind Spots for Full Transparency   */
    .blind-spots {
        width: 100%;
        z-index: -10;
    }
    .blind-spots__container {
        padding: 100px 0px 200px 20px;
        max-width: 1500px;
        margin: 0 auto;
        display: block;
    }
    /*------------------*/
    /*  From Data to Decisions   */
    .data-decisions__container {
        padding: 230px 20px 200px 20px;
    }
    .data-decisions__text-container {
        max-width: 1300px;
        padding: 20px 0px 0px 0px;
        display: flex;
        align-items: center;
    }
    .data-decisions__text {
        width: 50%;
    }
    .data-decisions__img {
        width: 50%;
    }
    
    /*------------------*/
    /*  LIVE Data Without Limits   */
    .live-data-shape {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        background-image: url("/assets/images-new/Green_Background.webp");
        background-position: top center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }
    .live-data {
        padding: 300px 20px;
    }

    /*--------------*/
    /* Beyond Passenger Counting   */
    .beyond-counting {
        max-width: 1500px;
        padding: 80px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .beyond-counting--text h2,
    .beyond-counting--text p {
        padding-right: 0px;
    }
    th[scope="row"] {
        width: 160px;
        padding-left: 10px;
    }

    /*--------------*/
    /*----  Works Fully Offline  ----*/

    /* .offline--split {
        padding: 100px 20px;
    } */


    
    /*------------------*/
    /*----  Supports All Transit Environments  ----*/
   
    .transit-environments {
        max-width: 1500px;
        padding: 160px 20px 0px 20px;
    }
    .environments-flex {
        max-width: 1500px;
        padding: 0px 20px 80px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .environment-slide {
        max-width: 1500px;
        padding: 0px;
        display: none; /* Hide all by default */
        margin-bottom: 30px;
    }
    


    /*------------------*/
    /*----  AI-Ready for Smarter Transit  ----*/

    .ai-ready--split {
        max-width: 1500px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 300px 20px 200px 20px;
    }

  
    
    /*  Frequently Asked Questions  Section  */
    /*--------- Abstimmung Accordion --------*/
    .faq {
        max-width: 1200px;
        padding: 150px 20px;
        text-align: center;
    }

    /* End of 1024px */
}













@media(max-width: 900px) {
    /*----  HOME PAGE HERO  ----*/
    
    .hero__shape--text {
        max-width: 900px;
        text-align: center;
        padding-inline: 50px;
    }



    /*------------------*/
    /*  From Data to Decisions  */
    .data-decisions {
        margin-top: -120px;
        clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    }
    .data-decisions__text-container {
        max-width: 1300px;
        padding: 20px 0px 50px 0px;
        display: flex;
        align-items: center;
    }
   
}












@media(max-width: 768px) {

    /*----  HOME PAGE HERO  ----*/
    .hero__shape {
        width: 100%;
        min-height: 600px;
    }
    .hero__shape--text {
        max-width: 900px;
        text-align: center;
        padding-inline: 20px;
    }


    /*------------------*/
    /*  Removing Blind Spots for Full Transparency   */
    .blind-spots {
        margin-top: -120px;
        width: 100%;
        height: 1200px;
        background-image: none;
        
    }

    .blind-spots__text-container {
        flex-direction: column;
    }
    .blind-spots__text {
        width: 100%;
        padding-bottom: 40px;
    }
    .blind-spots__text h2 {
        line-height: 1.4;
    }
    .blind-spots__text h2,
    .blind-spots__text p {
        padding-right: 20px;
    }
    .blind-spots__text img {
        display: block;
        width: 50%;
        padding-top: 20px;
        padding-bottom: 40px;
    }
   
    .blind-spots__img {
        display: none;
    }
    



    /*------------------*/
    /*  From Data to Decisions   */
    
    .data-decisions {
        margin-top: -120px;
        width: 100%;
        height: 950px;
        background-image: none;
        background-color:var(--new-light-green-backgrd);
        clip-path: none;
    }
    
    .data-decisions__container {
        padding: 100px 20px 200px 20px;
    }
    .data-decisions__text-container {
        flex-direction: column;
    }
    .data-decisions__text {
        width: 100%;
        padding-bottom: 120px;
    }
    .data-decisions__text h2 {
        line-height: 1.4;
    }
    .data-decisions__text h2,
    .data-decisions__text p {
        padding-right: 20px;
    }
    .data-decisions__img {
        width: 100%;
    }
    .data-decisions__img img {
        width: 80%;
        position: relative;
        bottom: 70px;
        right: 0%;
    }

    /*------------------*/
    /*  LIVE Data Without Limits   */
    .live-data-shape {
        background-image: none;
        background: var(--green-radial-gradient);
        margin-top: 0px;
        z-index: 22;
    }
    .live-data {
        padding: 150px 20px;
    }
    /*------------------*/
    /*  Beyond Passenger Counting   */

    .beyond-counting {
        max-width: 1500px;
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .beyond-counting--text {
        width: 100%;
    }
    .beyond-counting--text h2 {
        line-height: 1.4;
    }
    .beyond-counting--text h2,
    .beyond-counting--text p {
        padding-right: 20px;
    }

    .beyond-counting--table {
        width: 100%;
        padding-top: 20px;
    }
    /*---   Table   -----*/
    caption {
        caption-side: bottom;
        padding: 10px;
        font-weight: bold;
    }
    table {
        border-collapse: separate;
        border-spacing: 0; /* prevent gaps */
        border: 1px solid var(--light-grey-divider);
        border-radius: 10px;
        overflow: hidden; /* makes the radius clip child backgrounds */
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    thead th {
        font-weight: 700;
        height: 50px;
        background-color: white;
    }
    tbody th {
        font-size: .8rem;
        font-weight: 500;
        color: var(--color-text);
        min-height: 40px;
        padding: 20px 10px;
    }

    tr:nth-last-of-type(odd){
        background-color: var(--new-light-green-backgrd);
    }
    td {
        text-align: center;
    }
    th[scope="row"] {
        width: 200px;
        text-align: left;
        padding-left: 30px;
    }


    

    /*------------------*/
    /*----  AI-Ready for Smarter Transit  ----*/
    .ai-ready {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        background-image: none;
        background-color:var(--new-light-green-backgrd);
        clip-path: none;
        margin-top: 100px;
    }
    .ai-ready--split {
        max-width: 1500px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding: 70px 20px 100px 20px;
    }
    .ai-ready--text {
        max-width: 1500px;
        width: 100%;
        margin: 0 auto;
        
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: baseline;
    }
    .ai-ready--img {
        width: 85%;
        margin-top: 0px;
        padding-bottom: 30px;
    }

    

    



    /*------------------*/
    /*  Beyond Passenger<br>Counting   */

    .beyond-counting {
        max-width: 1500px;
        padding: 80px 20px 0px 20px;
        display: block;
    }
    .beyond-counting--text {
        width: 100%;
    }
    .beyond-counting--text h2 {
        line-height: 1.4;
    }
    .beyond-counting--text h2,
    .beyond-counting--text p {
        padding-right: 0px;
    }
    .beyond-counting--img {
        width: 100%;
    }
    .beyond-counting--img img{
        padding-top: 40px;
        width: 40%;
    }

    /*------------------*/
    /*----  Works Fully Offline  ----*/
   
    /* .offline--split {
        max-width: 1500px;
        margin-top: 0px;
        display: block;
        padding: 20px 20px;
    }
    .offline--text-l {
        max-width: 1500px;
        width: 100%;
        margin: 0 auto;
        padding: 70px 0px;
        display: flex;
        flex-direction: column;
        
    }
    .side-by-side-buttons {
        margin-left: auto;
        margin-top: 30px;
    }
    .offline--text-r {
        width: 100%;
        display: flex;
        column-gap: 20px;
        padding-bottom: 30px;
    } */
    
    
  
    /*-----END OF 768PX -----*/
}


@media(max-width: 600px) {
    /*------------------*/
    /*  From Data to Decisions   */
    
    .data-decisions {
        height: 870px;
    }
    .data-decisions__text-container {
        max-width: 1300px;
        padding: 20px 0px 0px 0px;
        display: flex;
        align-items: center;
    }
    /*------------------*/
    /*  LIVE Data Without Limits   */
    .live-data {
        padding: 100px 20px;
    }
}


@media(max-width: 500px) {
    .blind-spots__text img {
        width: 75%;
    }
    .data-decisions__img img {
        width: 100%;
        bottom: 30px;
    }
    .data-decisions__text {
        padding-bottom: 70px;
    }
    .data-decisions__container {
        margin-top: 80px;
        padding: 50px 20px 0px 20px;
    }
    /*------------------*/
    /*----  AI-Ready for Smarter Transit  ----*/
    .ai-ready--split {
        padding:50px 20px 00px 20px;
    }
    .ai-ready--img {
        width: 100%;
        margin-top: 0px;
        padding-top: 40px;
    }

    th[scope="row"] {
        width: 200px;
        text-align: left;
        padding-left: 10px;
    }
    .brand-text {
        display: none;
    }

    .brand-logo {
        display: inline-block;
    }
}

@media(max-width: 400px) {
    /*------------------*/
    /*  Removing Blind Spots for Full Transparency   */
    .blind-spots {
        margin-top: -120px;
        width: 100%;
        height: 1300px;
        background-image: none;
        
    }
    
}