:root {
    --primary-green: #7CB342;
    /* Adjust based on image if needed */
    --secondary-green: #558B2F;
    --text-dark: #2F2F2F;
    --text-light: #F5F5F5;
    --font-main: 'Noto Sans JP', sans-serif;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;

}


body {
    overflow-x: clip;
    font-family: var(--font-main);
    color: var(--text-dark);
    width: 100%;
    position: relative;
}



/* Top Bar */
#topBar {
    position: sticky !important;
    top: 0;
    width: 100% !important;
    z-index: 1040;
    height: 3.375rem;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    justify-content: space-between;
}


#topBar .topbar-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;

}

#topBar .topbar-image img {
    height: 100%;
    width: auto;
    display: block;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


/* Replace topbar-image on mobile */
@media (max-width: 576px) {
    #topBar .topbar-image img {
        content: url("../img/topbar-m.svg");
        display: block !important;
        visibility: visible !important;

    }
}






/* Add spacing between menu items (desktop only) */
@media (min-width: 992px) {
    .navbar-nav .nav-item {
        margin-left: 2rem;
    }

    /* Optional: remove margin from the first item */
    .navbar-nav .nav-item:first-child {
        margin-left: 0;
    }
}






/* Desktop padding */
@media (min-width: 768px) {
    #topBar {
        padding: 0 2rem;
    }
}

/* Navbar */
#mainNavbar {
    position: sticky;
    top: calc(3.375rem + 1rem);
    z-index: 1050;
}

/* Desktop gap */
@media (min-width: 768px) {
    #mainNavbar {
        top: calc(3.375rem + 1.25rem);
    }
}

/* Hero Section Behind Bars */
.hero-section {
    position: relative;
    margin-top: calc(-2 * (3.375rem + 1rem));
    padding-top: calc(3.375rem + 1rem + 2rem);
    background-size: cover;
    background-position: center;
}

/* Desktop adjustment */
@media (min-width: 768px) {
    .hero-section {
        margin-top: calc(-2 * (5.375rem + 1.25rem));
        padding-top: calc(3.375rem + 1.25rem + 3rem);
    }
}










/* Rounded Navbar Container */
.rounded-navbar {
    background-color: #ffffff;
    border-radius: 100px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Optional padding for top/bottom */
.rounded-navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Ensure navbar-wrapper takes container width */
.navbar-wrapper {
    width: 100%;
    margin: 0 auto;
}






.hero-text-shadow {
    text-shadow: 2px 2px 4px #086C2A;
}












/* Navbar */


.nav-link {
    color: var(--text-dark);
    font-weight: 400;
    padding: 0.5rem 2rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link.active {
    color: var(--primary-green) !important;
    font-weight: 700;
    border: 2px solid var(--primary-green);
    border-radius: 50px;
}


/* Scroll Offset for Sticky Navbar */
section {
    scroll-margin-top: 110px;
}



/* Hero Section */
.hero-section {
    background-color: var(--primary-green);
    background-image: url(img/main-hero-bg.png);

}

.hero-section h1 {
    line-height: 1.4;
}







/* Company Table */
.company-table th {
    width: 30%;
    vertical-align: middle;
}

.company-table td {
    vertical-align: middle;
}

.company-table .spacer td {
    padding: 5px;
    background: transparent;
}

/* Recruit Section */
.recruit-hero {
    background-color: var(--primary-green);

}

.hero-btn {
    background-color: #DCE100 !important;
    border: none;
    color: #013312 !important;
}

.hero-btn:hover {
    background-color: #E7EA4D !important;
    transform: translateY(-3px);
}

/* Buttons */
.btn {
    transition: all 0.2s ease;
}


.btn:active {
    transform: scale(0.98);
}


/* Scroll to Top */
#scrollToTopBtn {
    background-color: var(--primary-green);
    border: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

#scrollToTopBtn:hover {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }

    .nav-link.active {
        display: inline-block;

    }



    .hero-section .row {
        flex-direction: column;
        height: 100%;
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        border-radius: 0 !important;
    }

    .company-table th {
        margin-bottom: 0;
    }

    .company-table td {
        margin-bottom: 1rem;
    }
}


/* --- CUSTOM HERO LAYOUT FIXES FOR IMAGE/TEXT PLACEMENT --- */

/* Mobile (up to 767.98px) */
@media (max-width: 767.98px) {
    .hero-text-col {
        text-align: center !important;
    }

    .hero-text-col h1 {
        font-size: 1.8rem;
    }

    #jobs h3,
    p {
        text-align: center !important;
    }

    .hero-subtext {
        font-size: 1.15rem;
        margin-bottom: 2rem !important;
    }

    .hero-image {
        max-width: 80%;
        height: auto;
        margin-top: -1.5rem;
    }

    .hero-section .pb-5 {
        padding-bottom: 4rem !important;
    }
}

/* Tablet/Intermediate Desktop Font Size Adjustment (Fix for 1024x600, 950x1280, etc.) */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .hero-text-col h1 {
        font-size: 2rem !important;
    }

    .hero-subtext {
        /* Reduced font size for better fit */
        font-size: 1.1rem !important;
    }
}

/* Tablet (768px to 991.98px) - Retain existing layout rules */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero-text-col {
        text-align: left !important;
    }

    .hero-image {
        max-width: 112%;
        height: auto;
    }

    .company-table tr:last-child th:first-child {
        border-bottom-left-radius: 12px !important;
    }
}

/* Desktop (992px and up) */
@media (min-width: 992px) {
    .hero-text-col {
        text-align: left !important;
    }

    .hero-text-col h1 {
        font-size: 3rem;
    }

    .hero-row {
        min-height: 450px;
    }

    .hero-image {
        max-width: 100%;
        height: auto;
    }
}

/* --- END CUSTOM HERO LAYOUT FIXES --- */






/* Mobile Menu Modal */
.mobile-menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1060;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.mobile-menu-modal .modal-content {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mobile-menu-list li {
    margin-bottom: 1rem;
}

.mobile-menu-list li:last-child {
    margin-bottom: 0;
}

#mobileMenuClose {
    background: none;
    border: none;
    font-size: 1.25rem;
}

#mobileMenuCloseText {
    border-radius: 24px;
    padding: 0.5rem 1rem;
}







@media (max-width: 1209px) {

    /* lg breakpoint */
    #navbarNav {
        display: none !important;
    }
}




/* Parallax Background for Hero Section */
.hero-section {
    background-image: url("../img/main-hero-bg.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Parallax Background for HR Section */
.hr-section {
    background-image: url("../img/recruit-hero-bg.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important;
}



/* Make service cards smaller on desktop */
@media (min-width: 768px) {
    #jobs .row.g-4>.col-12 .card {
        transform: scale(0.9);
        margin: 0 auto;
        padding: 15px;
        box-sizing: border-box;
    }
}

/* Desktop-only card border + shadow */
@media (min-width: 768px) {
    #jobs .row.g-4 .card {
        border: 1px solid #0F291A;
        box-shadow: 0px 8px 0px #D9FF00;
        border-radius: 12px;
    }
}



/* Make service cards smaller on desktop */
@media (min-width: 768px) {
    #jobs .row.g-4>.col-12 .card {
        transform: scale(0.9);
        margin: 0 auto;
    }
}



/* Remove card borders on mobile only */
@media (max-width: 767px) {
    #jobs .row.g-4 .card {
        border: none !important;
        box-shadow: none !important;
    }
}



/* Make service cards smaller on desktop */
@media (min-width: 768px) {
    #recruit .row.g-4>.col-12 .card {
        transform: scale(0.9);
        margin: 0 auto;
        padding: 15px;
        box-sizing: border-box;
    }
}

/* Desktop-only card border + shadow */
@media (min-width: 768px) {
    #recruit .row.g-4 .card {
        border: 1px solid #0F291A;
        box-shadow: 0px 8px 0px #D9FF00;
        border-radius: 12px;
    }
}



/* Make service cards smaller on desktop */
@media (min-width: 768px) {
    #recruit .row.g-4>.col-12 .card {
        transform: scale(0.9);
        margin: 0 auto;
    }
}



/* Remove card borders on mobile only */
@media (max-width: 767px) {
    #recruit .row.g-4 .card {
        border: none !important;
        box-shadow: none !important;
    }
}


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none !important;
    }
}


@media (max-width: 1209px) {
    .navbar-expand-lg .navbar-toggler {
        display: block !important;
    }
}


/* Desktop: Company Table Redesign */
@media (min-width: 992px) {
    .company-table {
        width: 100%;
        border-collapse: collapse;
    }

    .company-table th,
    .company-table td {
        border: 1px solid #E9E9E9;
        padding: 12px 16px;
        vertical-align: middle;
        border-radius: 0 !important;
    }

    .company-table th {
        background-color: #95CA00 !important;
        color: #ffffff;
        width: 30%;
        text-align: left;
        font-weight: 500;
    }


    .company-table td {
        background-color: #ffffff;
        color: #000000;
    }

    /* Remove spacing rows if any */
    .company-table .spacer {
        display: none;
    }

    .company-table tr:last-child th:first-child {
        border-bottom-left-radius: 12px !important;
    }
}






@media (max-width: 767px) {
    .company-table tr th {
        border-radius: 12px 12px 0 0 !important;
    }

    .company-table tr td {
        border-radius: 0 0 12px 12px !important;
    }

    /* Add spacing between each row */
    .company-table tr {
        margin-bottom: 12px;
        display: block;
    }

    /* Make rows display as blocks so rounding applies cleanly */
    .company-table th,
    .company-table td {
        display: block;
        border: 1px solid #E9E9E9;
        border-bottom: none;
    }

    /* Restore bottom border only for td */
    .company-table tr td {
        border-bottom: 1px solid #E9E9E9;
    }

    /* Remove the outer table border on mobile so rows look separate */
    .company-table {
        border: none !important;
        border-radius: 0 !important;
    }
}









/* Apply outer rounded corners only */
.company-table tr:first-child th:first-child {
    border-top-left-radius: 12px !important;
}

.company-table tr:first-child td:last-child {
    border-top-right-radius: 12px !important;
}

.company-table tr:last-child td:last-child {
    border-bottom-right-radius: 12px !important;
}





.company-table th,
.company-table td {
    border-radius: 0 !important;
    border: 1px solid #E9E9E9;
    border-left: none;
    border-top: none;
    border-right: none;
}


.company-table tr th:first-child,
.company-table tr td:first-child {
    border-left: none;
    border-right: none;
}

.company-table tr:first-child th,
.company-table tr:first-child td {
    border-top: none;
}


/* Remove bottom border of the last row */
.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none !important;
}



/* Mobile: retain existing design but apply new colors */
@media (max-width: 991.98px) {
    .company-table th {
        background-color: #95CA00 !important;
        color: #ffffff;
        text-align: center;
    }

    .company-table td {
        background-color: #ffffff;
        color: #000000;
        text-align: center;
    }
}




/* Map Container */
.map-wrapper {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

/* Label (top-left) */
.map-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
}

.map-text-link {
    font-size: 14px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.map-text-link:hover {
    text-decoration: underline;
}



/* Mobile-specific adjustment for map placeholder */
@media (max-width: 767px) {
    .map-wrapper img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 6px;
    }

    .map-wrapper iframe {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .map-label {
        top: 12px;
        left: 12px;
    }
}






/* --- CRESS Organization Chart Styles --- */

.organization-chart {
    border-color: #E0E0E0 !important;
}

/* 1. Inner Logo Box (Fixed 300x70 with Shadow) */
.logo-box {
    padding: 0;
    border: none;
    background-color: #ffffff;

    /* Fixed size and shadow */
    width: 300px;
    height: 70px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border-radius: 6px;

    /* Content alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    flex-direction: column;
}

.logo-box span,
.logo-box small {
    display: block;
}

.logo-box img {
    margin-right: 0.5rem;
}

/* Specific styling for CRESS GROUP content inside the logo-box */
.logo-wrapper-group .logo-box {
    flex-direction: column;
    height: auto;
    padding: 0.5rem 1rem;
    box-shadow: none;
}

.logo-wrapper-group .logo-box span {
    font-size: 1.15rem;
}


/* 2. Outer Logo Wrapper (Fixed Width, Background, Border, Rounded Corners) */
.logo-wrapper {
    width: 324px;
    border: 1px solid #F0F0F0;
    background-color: #F7F7F7;
    border-radius: 6px;

    /* Center the inner .logo-box */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CRESS GROUP and CRESS UNITE Wrapper (96px height) */
.logo-wrapper-group,
.logo-wrapper-single {
    height: 96px;
}

/* CRESS TECH / FEED / INFO Wrapper (258px height) */
.logo-wrapper-triple {
    height: 258px;
}

.logo-wrapper-double {
    height: 176px;
}


/* Arrow Styles */
.arrow-horizontal,
.arrow-vertical {
    color: #9E9E9E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Desktop Specific Alignments (lg breakpoint) --- */
@media (min-width: 992px) {

    .organization-chart>.d-none.d-lg-flex {
        align-items: center;
    }

}

/* Intermediate Desktop Width Adjustments (prevent overlap at 1024px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .logo-wrapper {
        width: 270px;
    }

    .logo-box {
        width: 250px;
    }

    .organization-chart .me-4 {
        margin-right: 1rem !important;
    }
}

.logo-container {
    transition: border 0.3s ease, transform 0.3s ease;
    border: 1px solid transparent;
}

.logo-container:hover {
    border: 1px solid #558B2F;
    transform: translateY(-3px);
}






/* Custom CSS to match the CRESS LINK colors */
.bg-crees-link {
    background-color: #A1C913;
}

.text-crees-dark {
    color: #335300 !important;
    text-decoration: none !important;
}

.footer-text:hover {
    color: #F0F0F0 !important;
    text-decoration: underline !important;
}


.footer-text a {
    color: inherit;
    text-decoration: none;
}

.border-end {
    border-right: 1px solid rgba(51, 83, 0, 0.5) !important;
}

.border-end-0 {
    border-right: none !important;
}

.footer-with-top-border {
    border-top: 2px solid #D9FF00;
}

.bg-allrights {
    background-color: #0F291A;
}











.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 2rem;
}

/* New style for the year text */
.timeline-steps .timeline-content .year-text {
    font-weight: bold;
    margin-bottom: 1rem !important;
}


.timeline-steps .timeline-content .text-muted {
    margin-top: 1rem !important;
}

@media (min-width:768px) {

    /* Desktop/Tablet Horizontal Layout (Existing logic) */
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .20rem solid #ECEDEF;
        width: 4.8125rem;
        position: absolute;
        left: 7.5rem;
        top: 3.1rem;
    }

    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .20rem solid #ECEDEF;
        width: 4.46rem;
        position: absolute;
        right: 7.5rem;
        top: 3.1rem;
    }
}

@media (max-width:767px) {
    .recruiter-hero-img {
        max-width: 80%;
    }

    .timeline-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-steps .timeline-step {
        margin: 0rem;
    }

    .timeline-content {
        display: flex;
        align-items: center;
        text-align: left;
        width: 100% !important;
        margin-bottom: 4rem;
        position: relative;
    }

    .timeline-steps .timeline-content .year-text {
        font-weight: bold;
        margin-bottom: 0rem !important
    }

    .year-text {
        width: 60px;
        flex-shrink: 0;
        margin: 0 !important;
        text-align: center;
        font-weight: bold;
    }

    .inner-circle {
        margin: 0 1.5rem;
        flex-shrink: 0;
        z-index: 2;
    }

    .text-muted {
        margin: 0 !important;
        flex-grow: 1;
        text-align: left;
    }

    /* Mobile Vertical Connector Line */
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        position: absolute;
        top: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 3.5rem;
        background-color: #ECEDEF;
        z-index: 1;
        left: 96px;
        top: 44px;
    }

    .timeline-steps .timeline-content .text-muted {
        margin-top: -1rem !important;
    }
}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: 1.5rem;
    width: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3b82f6;
    z-index: 1;
}

.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: #E8E8E8;
    display: inline-block;
    height: 2rem;
    width: 2rem;
    min-width: 2rem;
    border-radius: 6.25rem;
    opacity: .5;



}







/* Initial Hidden States */
.reveal-right,
.reveal-left {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-right {
    transform: translateX(100px);
}

.reveal-left {
    transform: translateX(-100px);
}

/* Active State (Triggered by JS) */
.reveal-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}





/* ================================================
   FIX FOR VERY SMALL SCREENS (320px and below)
   ================================================ */

/* Fix navbar overlap at 320px */
@media (max-width: 360px) {

    /* Reduce navbar container padding significantly */
    .rounded-navbar {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    /* Make navbar itself more compact */
    #mainNavbar .container,
    .navbar-wrapper .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    /* Make logo significantly smaller */
    .navbar-brand {
        padding: 0 !important;
        margin-right: 0.25rem !important;
    }

    .navbar-brand img {
        height: 28px !important;
        width: auto !important;
    }

    /* Make hamburger menu more compact */
    .navbar-toggler {
        padding: 0.2rem 0.4rem !important;
        margin-left: 0 !important;
        border: none !important;
        font-size: 1rem !important;
    }

    .navbar-toggler-icon {
        width: 1.2em !important;
        height: 1.2em !important;
    }

    /* Reduce topBar padding */
    #topBar {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .topbar-logo img {
        height: 24px !important;
    }

    /* Center hero content properly */
    .hero-text-col {
        text-align: center !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero-text-col h1 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }

    .hero-subtext {
        font-size: 0.95rem !important;
    }

    /* Ensure proper container width */
    .container,
    .container-fluid {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    /* Fix card spacing */
    .card-body {
        padding: 0.75rem !important;
    }
}







/* LOGO INTRO LOADER */
#intro-loader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
}

.intro-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* Ensure it has space to move within */
}

.cresslogo-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-circle {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

#intro-icon {
    position: absolute;
    width: 50px;
    height: auto;
    opacity: 0;
    transform: scale(0);
}

.intro-text-wrapper {
    width: 0;
    padding-left: 0;
    /* Reset this so GSAP can animate it */
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

#intro-text {
    display: block;
    opacity: 0;
    /* Let GSAP handle the fade-in */
    height: 35px;
}

.cresslogo-wrapper,
#intro-text {
    will-change: transform, opacity;
}

.intro-text-wrapper {
    padding-left: 20px;
    overflow: visible;
}


.circles-group {
    position: absolute;
    width: 45px;
    height: 45px;
}


/* --- RESPONSIVE ADJUSTMENTS --- */

@media (max-width: 768px) {
    .cresslogo-wrapper {
        width: 45px;
        height: 45px;
    }

    .intro-circle {
        width: 20px;
        height: 20px;
    }

    /* モバイル用に円の位置を調整 */
    .intro-circle[style*="left: 17px"] {
        left: 12px !important;
    }

    .circles-group {
        width: 38px;
        height: 38px;
    }

    #intro-icon {
        width: 40px;
    }

    #intro-text {
        height: 28px;
    }
}

/* Small Mobile (under 480px) */
@media (max-width: 480px) {
    .intro-container {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .intro-text-wrapper {
        margin-left: 0;
        padding-left: 0;
        max-width: 100%;
    }

    #intro-text {
        height: 24px;
        max-width: 100%;
    }

    .cresslogo-wrapper {
        width: 40px;
        height: 40px;
    }

    .circles-group {
        width: 35px;
        height: 35px;
    }

    .intro-circle {
        width: 18px;
        height: 18px;
    }

    .intro-circle[style*="left: 17px"] {
        left: 10px !important;
    }

    #intro-icon {
        width: 35px;
    }
}

/* --- Animation Initial States --- */

.hero-section {
    opacity: 0;
    will-change: opacity;
}


.hero-image {
    opacity: 0;
    will-change: transform, opacity;
}


.hero-text-col {
    opacity: 0;
    will-change: transform, opacity;
}


@media (min-width: 768px) {
    #topBar {
        padding: 0 2rem;
    }
}

#mainNavbar {
    position: sticky;
    top: calc(3.375rem + 1rem);
    z-index: 1050;
}