
body {
    padding-top: 150px;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.border--bottom {
    border-bottom: none !important;
}

.h--1 {
    font-size: 40px;
    color: #222;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}


.feature-box {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    height: 180px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* No shadow initially */
    transition: box-shadow 0.3s ease, transform 0.6s ease;
}

    .feature-box h3 {
        color: black;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .feature-box:hover {
        box-shadow: 0 4px 15px rgba(240, 138, 86, 0.7); /* Highlighted shadow color */
        transform: scale(1.02); /* Slight zoom effect */
    }

    .feature-box p {
        font-size: 1rem;
        color: #555;
    }

.main-menu .brand-logo img {
    /*height: calc(25px +(34 - 25)*((100vw - 320px) /(1920 - 320))); */
    height: 60px;
}

.footer-theme .footer-logo img {
    height: 60px;
}

@media only screen and (min-width : 320px) and (max-width : 480px) {
    body {
        padding-top: 68px;
    }

    .logo {
        left: 25% !important;
    }

    .h--1 {
        font-size: 22px;
    }
}
