@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');
@import url('color.css');

/* Font Management */
:root {
    --font-default: 'Archivo', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-avenir: 'Avenir', 'Avenir Next', system-ui, sans-serif;
}

.use-avenir {
    font-family: var(--font-avenir);
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-default);
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--color-bg);
    background-image: url('../img/background/BACKGROUND-MOBILE.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

main.container{
    padding: 0px !important;
    margin: 0px !important;
    min-width: 100%;
    max-width: 100%;
}

.read-more{
    color: grey;
}

section#hero {
    position: relative;
    align-items: flex-start !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    padding-top: 40px!important;
}

section {
    max-width: 100%;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-gap: 40px;
}

main section {
    padding-top: 0px !important;
    padding-bottom: 40px !important;
    padding-left: 8% !important;
    padding-right: 8% !important;
    overflow: hidden;
}

/* PAGE TRANSITIONS */
.page-view {
    opacity: 1;
    transition: opacity 0.25s ease;
}

.page-view.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* HEADER */
.site-header {
    background: linear-gradient(135deg, #1b1464, var(--color-main));
}

/* STICKY HEADER — GLOBAL (MOBILE + DESKTOP) */
.site-header {
    position: relative;
    transition: all 0.3s ease;
    z-index: 999;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.navbar-brand img {
    height: 28px;
}

.navbar,
.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
}

.navbar button.navbar-toggler {
    border: 0px !important;
}

.navbar .nav-link.text-success{
    color: var(--color-text-special)!important;
}

.nav-link.active {
    color: #7dff00 !important;
    font-weight: 600;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* HERO */
section#hero .tablet-container {
    position: relative;
    left: 0px;
    bottom: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0px!important;
    padding: 0px;
}

.hero {
    padding: 2rem 1rem;
    font-family: var(--font-default);
    border-bottom: 4px solid var(--color-text-special);
    min-width: 100%;
    max-width: 100%;
    margin: 0px !important;
}

.hero h1 {
    font-size: 7vw;
    font-weight: 700;
    color: var(--color-text-special);
}

.hero p {
    color: var(--color-light);
    margin-top: 1rem;
    font-size: 5vw;
}

.tablet-mockup {
    position: relative;
    width: 100%;
    justify-content: flex-start;
    display: flex;
    align-items: center;
    min-width: 100%;
    max-width: 100%;
}

.tablet-mockup img.img-fluid{
    object-position: left;
    object-fit: fill;
    min-width: 150vw;
    margin-left: -13vw;
}

.tablet-content {
    position: absolute;
    top: 25%;
    left: 12%;
    right: 10%;
    text-align: left;
    font-family: var(--font-avenir);
    color: #ffffff;
}

.tablet-content h3 {
    font-size: 5vw;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--color-text-special);
}

.tablet-content p {
    font-size: 4vw;
    line-height: 1.4;
    color: var(--color-light);
}

/* GET STARTED SECTION */
.started {
    padding: 3rem 1rem;
}

.started-box {
    border-radius: 12px;
    padding: 2rem 1.5rem;
    max-width: 680px;
}

.started-box .row {
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    grid-gap: 40px;
}

.started-item h5 {
    margin-top: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    font-family: var(--font-heading);
}

.started-icon img {
    width: 60px;
    height: 60px;
}

.btn-started {
    background-color: var(--color-buttons-special);
    color: var(--color-text-dark);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-size: 1.5rem;
    min-width: 100%;
}

.btn-started:hover {
    background-color: #6be600;
    color: #141414;
}

/* WORLDCLASS SECTION */
.worldclass {
    padding: 3rem 1rem;
}

.worldclass-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
}

.worldclass .worldclass-block {
    display: flex;
    grid-gap: 40px;
}

.worldclass-block h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.worldclass-block p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--color-light);
}

/* ATHENA WORKS */
.athenaWorks {
    padding: 3rem 1rem;
}

.athenaWorks-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
}

.athena-row {
    margin-bottom: 4rem;
}

.athena-step {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
    background: transparent;
    border-radius: 12px;
    padding: 1.5rem;
    justify-content: flex-start;
}

.athena-icon img {
    width: 88px;
    height: 88px;
}

.athena-content h5 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--color-text-special);
}

.athena-content p {
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--color-light);
    margin: 0;
}

#athena-works .d-lg-none .athena-row {
    flex: 0 0 85%;
    border: 2px solid #fff;
    border-radius: 13px;
}

/* WHY ATHENA */
.whyAthena {
    padding: 3rem 1rem;
}

.whyAthena-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
}

.why-card {
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
}

.whyAthena .slider-track .col-12.col-lg {
    background: var(--color-special);
    border-radius: 12px;
}

.why-card h5 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-special);
}

.why-card p {
    font-size: 1.4rem;
    color: var(--color-light);
    margin: 0;
}

.whyAthena-subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.whyAthena-text {
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--color-grey);
}

.athena-why-icon img{
    width: 37px;
    height: auto;
}

/* FULL STACK MEDIA */
.fullStackMedia {
    padding: 3rem 1rem;
}

.fullStackMedia-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
}

.stack-card {
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
    border: 2px solid #fff;
    border-radius: 13px;
    justify-content: center;
}

.stack-icon {
    margin-bottom: 0.75rem;
}

.stack-icon img {
    width: 60px;
    height: 60px;
}

.stack-card h5 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.stack-card p {
    font-size: 1.4rem;
    color: var(--color-light);
    margin: 0;
}

.stack-final {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--color-grey);
}

section#full-stack {
    border-bottom: 4px solid var(--color-text-special);
}

#full-stack .slider-track .col-12.col-lg {
    margin-bottom: 4rem;
}

/* CONTACT SECTION */
.mainFormContact {
    padding: 3rem 1rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-align: left;
}

.contact-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
}

.contact-intro {
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--color-grey);
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.85rem;
    padding: 0.6rem 0.75rem;
}

.contact-form .form-control::placeholder {
    color: var(--color-light);
}

.contact-form .form-control:focus {
    background: transparent;
    border-color: var(--color-main);
    box-shadow: none;
    color: #ffffff;
}

.btn-send {
    width: 100%;
    background-color: var(--color-buttons-special);
    color: var(--color-text-dark);
    font-weight: 600;
    padding: 0.65rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

.btn-send:hover {
    background-color: #6be600;
    color: #141414;
}

.contact-image {
    border-radius: 12px;
    overflow: hidden;
}

.contact-t-container{
    display: none;
}

/* MOBILE SLIDER BASE */
.slider-wrapper {
    position: relative;
}

/* TRACK */
.slider-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

/* CARDS SNAP */
.slider-track > * {
    scroll-snap-align: start;
    flex: 0 0 85%;
}

/* HIDE SCROLLBAR */
.slider-track::-webkit-scrollbar {
    display: none;
}

/* ARROWS */
.slider-arrow {
    position: absolute;
    bottom: -10px;
    z-index: 2;
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: transparent;
}

.slider-arrow.left { left: -10px; }
.slider-arrow.right { right: 10px; }

.slider-arrow img {
    width: 40px;
}

/* CAREERS */
.careers-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
}

.careers-subtitle {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
}

.careers-text {
    font-size: 1.2rem;
    color: var(--color-light);
    line-height: 1.5;
}

.careers-image {
    border-radius: 12px;
}

.careers-section-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
}

.value-card {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
}

.value-dot {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
}

.value-card h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--color-light);
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.position-item {
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
    border-radius: 12px;
    grid-gap: 10px;
    position: relative;
    min-height: 104px;
}

.position-item span {
    font-size: 0.8rem;
    color: var(--color-light);
}

.position-location {
    font-size: 0.85rem;
    color: var(--color-light);
    min-width: 100px;
    max-width: 100px !important;
    width: 100px;
}

.jobsCardTitle {
    min-width: 200px;
    max-width: 200px;
    width: 200px;
}

main#careers-content div {
    max-width: 100%;
}

section.careers-positions {
    margin-bottom: 3rem;
}

main.container section.careers-why .row.mb-5 {
    margin-top: 3rem;
}

section.careers-why {
    padding-top: 40px !important;
}

.btn-apply {
    border: 1px solid #7dff00;
    color: #7dff00;
    background: transparent;
    border-radius: 999px;
    padding: 0.25rem 0.9rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.position-item .btn-apply {
    position: absolute;
    right: 10px;
}

.btn-apply:hover {
    background: #7dff00;
    color: #141414;
}

.job-modal {
    background: var(--color-white);
    color: var(--color-text-dark);
    border-radius: 14px;
}

.job-m-h {
    border-bottom: 1px solid grey;
}

.job-modal h6 {
    background: #F5F3F3;
    min-height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
}

.job-title {
    font-family: var(--font-heading);
    font-weight: 700;
}

.job-meta {
    font-size: 0.85rem;
    color: var(--color-grey);
}

.job-meta img {
    width: 16px;
    margin-right: 5px;
}

.job-modal hr {
    border-color: rgba(255,255,255,0.15);
}

.job-modal .form-control {
    background: transparent;
    border: 1px solid grey;
}

.job-modal .form-control::placeholder {
    color: var(--color-light);
}

.btn-primary {
    background-color: #7dff00;
    border: none;
    color: #141414;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #6be600;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(180deg, #1b1464, #120c3a);
    padding: 2.5rem 1rem 1.5rem;
    color: var(--color-light);
}

.footer-top {
    margin-bottom: 2rem;
    grid-gap: 20px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 0.75rem;
    object-position: left;
    object-fit: contain;
    margin-left: -20px;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

.footer-cta {
    background-color: #7dff00;
    color: #141414;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.footer-cta:hover {
    background-color: #6be600;
    color: #141414;
}

.footer-email {
    margin-top: 0.5rem;
}

.footer-email a {
    color: #ffffff;
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1rem;
}

.footer-link {
    color: var(--color-light);
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 0.8rem;
}

/* BACK TO TOP BUTTON */
#backToTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-buttons-special);
    color: var(--color-text-dark);
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: #6be600;
}

.job-form input::placeholder,
.job-form textarea::placeholder {
    color: var(--color-black) !important;
    opacity: 1;
}

/* WebKit (Chrome, Safari) */
.job-form input::-webkit-input-placeholder,
.job-form textarea::-webkit-input-placeholder {
    color: var(--color-black) !important;
}

/* Firefox */
.job-form input::-moz-placeholder,
.job-form textarea::-moz-placeholder {
    color: var(--color-black) !important;
    opacity: 1;
}

/* Internet Explorer */
.job-form input:-ms-input-placeholder,
.job-form textarea:-ms-input-placeholder {
    color: var(--color-black) !important;
}

/* Legacy Edge */
.job-form input::-ms-input-placeholder,
.job-form textarea::-ms-input-placeholder {
    color: var(--color-black) !important;
}

/* DESKTOP OVERRIDES */
@media (min-width: 992px) {
    body {
        background-image: url('../img/background/BACKGROUND-DESKTOP.png');
        background-position: top center;
        background-size: cover;
    }

    .site-header {
        background: transparent;
    }

    body.has-sticky-header {
        padding-top: 90px;
    }

    #backToTop {
        bottom: 32px;
        right: 32px;
    }

    .navbar .container {
        background: var(--color-header-gradient);
        border-radius: 200px;
        min-height: 80px;
        height: 1px;
        max-height: 80px;
        width: -webkit-fill-available;
    }

    .navbar .container div#mainMenu {
        justify-content: center;
        align-items: center;
    }

    .navbar .container div#mainMenu ul.navbar-nav {
        margin: 0px !important;
        padding: 0px !important;
        padding-right: 30px !important;
    }

    .navbar .container a.navbar-brand {
        max-height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 30px;
    }

    .navbar .container a.navbar-brand img {
        object-fit: fill;
        width: 100%;
        height: 100%;
        object-position: center center;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 3.5vw;
        margin-right: 20px;
    }

    .hero p{
        font-size: 2.5vw;
        margin-right: 20px;
    }

    .hero-content {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        min-height: 100%;
        height: 100%;
        margin-bottom: auto;
    }

    .tablet-mockup {
        max-width: 725px;
        min-width: 725px;
    }

    .tablet-mockup img.img-fluid {
        max-width: 81vw !important;
        min-width: 81vw !important;
        margin-left: -11vw;
    }

    .tablet-content{
        left: 3%;
    }

    .tablet-content h3 {
        font-size: 2.8vw;
    }

    .tablet-content p {
        font-size: 1.7vw;
    }

    .started {
        padding: 5rem 0;
    }

    .started-box {
        padding: 2.5rem 3rem;
        max-width: 900px;
    }

    .started-box .row{
        flex-direction: row;
        grid-gap: unset;
    }

    .started-item h5 {
        font-size: 1rem;
    }

    .btn-started {
        font-size: 0.95rem;
        min-width: unset!important;
    }

    .worldclass {
        padding: 5rem 0;
    }

    .worldclass .worldclass-block {
        flex-direction: row-reverse;
        flex-wrap: wrap;
        grid-gap: unset;
    }

    .worldclass .worldclass-block:last-of-type {
        flex-direction: row;
    }

    .worldclass-title {
        font-size: 2.2rem;
    }

    .worldclass-block h4 {
        font-size: 1.25rem;
    }

    .worldclass-block p {
        font-size: 1rem;
    }

    .athenaWorks {
        padding: 5rem 0;
    }

    .athena-why-icon img{
        width: 30px;
    }

    .athenaWorks-title {
        font-size: 2.2rem;
    }

    .athena-step {
        padding: 2rem;
        flex-direction: row;
        align-items: center;
    }

    .athena-content p {
        font-size: 0.95rem;
    }

    .whyAthena {
        padding: 5rem 0;
    }

    .whyAthena-title {
        font-size: 2.2rem;
    }

    .why-card {
        padding: 1rem;
        text-align: left;
        min-height: 200px;
        max-height: 200px;
        grid-gap: 10px;
    }

    .why-card h5 {
        font-size: 1.05rem;
        text-align: left;
    }

    .why-card p{
        font-size: 0.85rem;
        text-align: left;
    }

    .careers-title{
        font-size: 2.8rem;
    }

    .whyAthena-subtitle {
        font-size: 1.5rem;
    }

    .whyAthena-text {
        font-size: 1rem;
    }

    .fullStackMedia {
        padding: 5rem 0;
    }

    .fullStackMedia-title {
        font-size: 2.2rem;
    }

    .stack-card {
        padding: 1rem;
        border: unset!important;
    }

    .stack-card h5 {
        font-size: 1.05rem;
    }

    .stack-card p{
        font-size: 0.85rem;
    }

    .stack-final {
        font-size: 1.05rem;
    }

    section#full-stack{
        border-bottom: unset;
    }

    .slider-track {
        overflow: visible;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    }

    .slider-track > * {
        flex: unset;
    }

    .slider-arrow {
        display: none;
    }

    .mainFormContact {
        padding: 5rem 0;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-box {
        padding: 2.5rem;
    }

    .contact-intro {
        font-size: 0.95rem;
    }

    .contact-t-container{
        display: block;
    }

    .position-item{
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.15);
        flex-direction: row;
        justify-content: space-between;
    }

    .position-item .btn-apply {
        position: unset;
    }

    .site-footer {
        padding: 3.5rem 0 2rem;
    }

    .footer-desc {
        font-size: 0.9rem;
    }

    .footer-cta {
        font-size: 0.9rem;
    }

    .footer-top{
        grid-gap: unset;
    }

    .navbar .container {
        position: relative;
        display: flex;
        align-items: center;
    }

    .navbar-brand {
        flex: 0 0 140px;
        z-index: 2;
    }

    #mainMenu {
        position: absolute;
        inset: 0;
        display: flex !important;
        align-items: center;
        pointer-events: none;
    }

    #mainMenu > .navbar-nav:not(.external-route) {
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        white-space: nowrap;
        pointer-events: auto;
    }

    #mainMenu > .navbar-nav.external-route {
        position: absolute;
        right: 0;
        flex: 0 0 114px;
        display: flex;
        justify-content: flex-end;
        pointer-events: auto;
    }
}

/* MOBILE OFFCANVAS MENU (Bootstrap-safe) */
@media (max-width: 991px) {

    #mainMenu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 360px;
        height: 100vh;

        background: var(--color-mob-back);
        padding: 1.5rem;

        transform: translateX(100%);
        transition: transform 0.35s ease;

        visibility: visible !important;
        z-index: 9999;
        display: flex !important; /* override collapse */
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        grid-gap: 20px;
    }

    #mainMenu.show {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        padding-bottom: 20px;
        border-bottom: 2px solid var(--color-mob-border);
        min-width: 100%;
        padding-left: 30px;
    }
    
    ul.external-route.navbar-nav {
        border-top: 2px solid var(--color-mob-border);
    }

    .mobile-menu-close {
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: #fff;
        cursor: pointer;
    }

    #mainMenu .navbar-nav {
        flex-direction: column;
        gap: 1.25rem;
        justify-content: flex-start;
        align-items: flex-start;
        min-width: 100%;
        padding-left: 30px;
    }

    #mainMenu .nav-link {
        font-size: 1.1rem;
        font-weight: 500;
    }

    .mobile-menu-header .navbar-brandX img {
        height: 70px;
    }

    .athena-row .athena-content p,
    .why-card p,
    .stack-card p {
       /* display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: calc(1.5em * 3);  line-height × lines 
        line-height: 1.5;
        position: relative;
        cursor: pointer;*/
    }

    .athena-row .athena-content p:hover,
    .why-card p:hover,
    .stack-card p:hover {
    /*    -webkit-line-clamp: unset;
        max-height: none;
        overflow: visible;
        background: rgba(20, 20, 60, 0.95);
        padding: 12px;
        border-radius: 10px;
        z-index: 10; */
    }
}