.button-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background-color: #000;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;   
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: height 0.3s ease;
    padding: 0 20px;
    box-sizing: border-box;
}

.header-inner {
    max-width: 95%;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
}

.mobile-separator {
    display: none;
}

.button-section .logo {
    height: 80px;
    transition: height 0.3s ease;
}

#logo-txt {
    font-family: Quicksand, sans-serif;
    font-weight: semibold;
    font-size: 40px;
    text-decoration: none;
    padding-left: 20px;
    transition: font-size 0.3s ease;
}

#logo-txt a:link,
#logo-txt a:visited,
#logo-txt a:hover,
#logo-txt a:active {
    color: #fff;
    text-decoration: none;
}


.button-section .pcbuttons {
    display: flex;
    gap: 20px;
}

.button-section .pcbuttons img {
    height: 80px;
    transition: height 0.3s ease;
}

.mid-text {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0px;
    transition: font-size 0.5s ease;
    pointer-events: none;
}

@media (max-width: 768px) {

    .button-section .pcbuttons {
        display: none !important;
    }

    .header-inner {
        grid-template-columns: max-content max-content max-content 1fr;
        gap: 10px;
    }

    .mid-text {
        position: static;
        transform: none;
    }

    #logo-txt {
        padding-left: 5px;
    }

    .mobile-separator {
        display: inline;
    }

}