.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spacer-div {
    width: 50%;
}

.header_logo_div.bg-on {
    width: 100%;
    background: #111111;
    z-index: 9999;
    position: fixed;
    background-color: #111111;
    height: 60px;
}

@media screen and (max-width: 768px) {
    .spacer-div {
        width: 10%;
    }
}

#know-more {
    display: inline-block;
    padding: 15px 30px;
    background: url('../img/button.jpg') center/cover;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#know-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
}

#know-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    background: url('../img/button.jpg') center/cover, linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    filter: brightness(1.1) contrast(1.05);
}

#know-more:hover::before {
    left: 100%;
}

#know-more:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.5);
    filter: brightness(0.95);
}