body {
    /* font-family: 'Inter', sans-serif; */
    /* font-family: 'Open Sans', sans-serif; */
    font-family: "Roboto", sans-serif;
}

/* Optional: Add a smooth scroll effect */
html {
    scroll-behavior: smooth;
}

/* Header 02 Section */

.menu-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.menu-bar-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.menu-link {
    text-decoration: none;
}

.menu-btn {
    padding: 10px 20px;
    background-color: white;
    color: black;
    border: 1px solid #31d2f2;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.menu-btn:hover {
    background-color: #31d2f2;
    color: white;
}

.menu-btn.active {
    background-color: #31d2f2;
    color: white;
}

.menu-select {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #31d2f2;
    background-color: white;
    cursor: pointer;
}

.menu-select:focus {
    border-color: #31d2f2;
}

.slg {
    text-align: left;
    font-size: 24px;
    margin-top: 30px;
}

.slg_mobile {
    text-align: left;
    font-size: 18px;
}

/* Header 02 Section */

/* Footer Section */

/*End  Footer Section */

/* Responsive  */

body {
    font-size: 12px;
}

@media (max-width: 780px) {
    #head_desktop {
        display: none;
    }
    #head_mobile {
        display: block;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 14px;
    }
    #head_mobile {
        display: none;
    }
}

@media (min-width: 1200px) {
    body {
        font-size: 18px;
    }
    #head_mobile {
        display: none;
    }
}
