* {
    cursor: crosshair;
}

a {
    cursor: pointer;
}

input,
textarea {
    cursor: text;
}

.language-toggle {
    position: fixed;
    bottom: 10px;
    /* Adjust as needed */
    right: 10px;
    /* Adjust as needed */
    z-index: 1000;
    /* Ensure it stays on top of other elements */
}

.language-toggle .bubble:hover {
    width: 8rem;
    transition: width 0.3s, height 0.3s, transform 0.3s;
    border-radius: 20px;
}

.language-toggle .bubble {
    transition: 2.5s;
    background-color: #fc9d0f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.language-toggle .options {
    display: none;
    flex-direction: column;
    position: absolute;
    bottom: 60px;
    /* Adjust as needed */
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.language-toggle .options button {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.language-toggle .options button:hover {
    background-color: #f0f0f0;
}

#contact-address {
    display: block;
}

.logo {
    margin: 0 0 0 0 !important;
    padding: 0 0 0 0 !important;
    width: 10%;
    cursor: pointer;

}

.logo :hover {
    cursor: crosshair;
}

.borderlogo {
    border: solid 10px;
    border-color: #9EB0C8 !important;
}

@font-face {
    font-family: 'SiemensGhost';
    src: url('../fonts/siemens-gost-type-a.woff.ttf') format('truetype');
}

.siemens-ghost {
    font-family: 'SiemensGhost', Fallback, sans-serif;
}

.brand {
    font-size: 11rem;
    color: black;
    font-weight: bold;
    margin-bottom: -5rem;
    z-index: 2;

}

.theme {
    color: #fc9d0f;
    font-size: 6rem;
    font-weight: bold;

}

.orange-btn {
    background-color: #fc9d0f;
    color: white;
    border: none;
    border-radius: 0.3rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

/* Media Phone */
@media screen and (max-width: 600px) {
    #contact-address {
        display: none;
    }

    #logo {
        margin: 0 0 0 0 !important;
        padding: 0 0 0 0 !important;
        width: 20%;
    }

    .brand {
        font-size: 20vw;
        margin-bottom: -1rem;
    }

    .theme {
        font-size: 10vw;
    }

}