@charset "UTF-8";
.header-container {
    padding: 15px 15px 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}



.logo-container {
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.logo {
    height: 60px;
}

.registered-trademark {
    font-size: 0.8em;
    /* margin-left: 5px; */
}

.header-text {
    width: 60%;
    text-align: start;
    height: 100%;
    padding-top: 3px;
}

#changing-tagline span {
    transition: opacity 5s ease;
}

/* .burger-menu {
    display: flex;
    
    align-items: flex-start;
    text-align: start;

} */


.burger-menu img {
    /* width: 100%; */
    height: 30px;
    cursor: pointer;
}



/* SIDE-NAVIGATION */

.side-navigation {
   
    position: fixed;
    top: 0;
    right: -100%;
    /* Move the navigation off-screen by default */
    width: 30%;
    height: 100%;
    background-color: rgb(236, 236, 238);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
    padding-top: 60px;
    /* backdrop-filter: blur(10px); */
    transition: 0.5s;
    /* Add a smooth transition effect */
    z-index: 999;
    /* transition-timing-function: cubic-bezier(0.175, 0.885, 0.220, 1.275); */

}

.side-navigation a {
    padding: 15px;
    text-decoration: none;
    color: rgb(30, 29, 29);
    display: block;
    transition: 0.2s;
    font-size: 2rem;
    /* Add a smooth transition effect */
}

.side-navigation a:hover {
    background-color: #ffffff;
    font-weight: bold;
}

.close-icon {
    position: absolute;
    bottom: 20px;
    top: 10px;
    left: 20px;
    /* Adjust the position to the left */
    font-size: 40px;
    color: rgb(30, 29, 29);
    cursor: pointer;
    display: none;
    /* Initially hide the close icon on larger screens */
}


@media (max-width: 640px) {
    .side-navigation {
        width: 100%;
    }

}