* {
    font-family: 'Programme', Arial, sans-serif;
    font-weight: normal;
    text-size-adjust: 100%;
    line-height: 1.45;
}

body {
    background: #e9e9e9;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 20px;
}

p {
    font: 100 1.125rem / 1.5 'Programme', Arial, sans-serif;
}

.nav-item {
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 14px;
}

footer {
    background: #121212;
    color: #fff;
}

.footer-heading {
    font-size: 1.25rem;
}

.search-box:focus {
    outline: none;
    box-shadow: none;
}

.site-btn {
    border: 2px solid #000;
    background: transparent;
    padding: 10px 30px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.site-btn:hover {
    background: #000;
    color: #fff;
}

.search-box {
    width: 0;
    overflow: hidden;
    transition: width 0.4s ease;
}

.search-box.open {
    width: 250px;
    /* you can increase this */
}

.search-box input {
    border-radius: 0;
    height: 30px;

}

.font_12{
    font-size: 12px;
}
.font_14{
    font-size: 14px;
}

@media (max-width: 992px) {

    .search-box:focus {
        outline: none;
        box-shadow: none;
    }

    .site-btn {
        border: 2px solid #000;
        background: transparent;
        padding: 10px 30px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .site-btn:hover {
        background: #000;
        color: #fff;
    }

    /* Large screen search box */
    .search-box {
        width: 0;
        overflow: hidden;
        transition: width 0.4s ease;
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 1000;
        background: white;
    }

    .search-box.open {
        width: 250px;
    }

    .search-box input {
        border-radius: 0;
        height: 30px;
    }

    /* Mobile search box */
    .search-box-mobile {
        height: 0;
        overflow: hidden;
        transition: height 0.4s ease;
    }

    .search-box-mobile.open {
        height: 50px;
        margin-top: 10px;
    }

    .search-box-mobile input {
        border-radius: 0;
        height: 40px;
        width: 100%;
    }

    .border-b {
        border-bottom: 2px solid black;
    }
}

.navbar-toggler {
    border: none !important;
}


.mobile-menu .nav-link {
    font-weight: bold !important;
    font-size: 1.1rem;
}

.btn-join {
    background-color: white;
    color: black;
    transition: all 0.3s ease;
    font-weight: bold;
    cursor: pointer;
}

.btn-join:hover {
    background-color: black;
    color: white;
    border-color: black !important;
}

/* Ensure input and button height match */
.d-flex.mb-5 input.form-control,
.d-flex.mb-5 button.btn-join {
    min-height: 54px;
    /* Minimum height to match */
    border: 1px solid #000 !important;
    border-radius: 0 !important;
}
.hero-section h1 {
    font-weight: bold;
    font-size: 50px;
    line-height: 140%;
    color: #000000;
}
#slide-text {
    height: 45px;
    overflow: hidden;
    margin-bottom: 10px;
}
#slide-text > div > div {
    color: #ffffff;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0px auto 15px;
}
#slide-text .slideMe {
    animation: h1-slide-text 5s linear infinite;
}
#slide-text div div {
    background: #000000;
    color: #ffffff;
}
.slide-text {
    width: auto;
}
.slide-text {
    position: relative;
    height: 45px;
    text-align: center;
    overflow: hidden;
    display: inline-block;
    top: 20px;
}
.slide-text-item {
    white-space: nowrap;
    height: 45px;
    opacity: 0;
    line-height: 1;
}
@keyframes h1-slide-text {
    0%, 20% {
        margin-top: 0px;      /* Word 1 is visible */
    }
    45%, 70% {
        margin-top: -60px;   /* Word 2 is visible */
    }
    95%, 100% {
        margin-top: 0px;      /* Back to Word 1 */
    }    
}