@import url('../../../global/css/main.css');

@media 
screen and (max-width: 672px) {
        /* Header start */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 4rem;
        background-color: var(--background-color);
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        z-index: 50000;
    }
        
    .header .logo {
        position: relative;
        top: .5rem;
        left: 1rem;
        height: 3rem;
    }
        
    .header .contact-button-list {
        list-style: none;
        position: absolute;
        top: 0;
        right: 1rem;
        width: 10rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 10px;
    }
        
    .contact-button-list li {
        position: relative;
        width: 3rem;
        height: 3rem;
        background-color: var(--primary);
        color: white;
        text-align: center;
        line-height: 3rem;
        font-size: 1.2rem;
    }
    /* Header end */
}