header {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: var(--h-main);
    top: 0;
    z-index: 2;
}

.edm-h-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1360px;
    width: 100%;
    height: 80px;
    position: relative;
    padding: 0 20px;
}

.edm-h-cont {
    display: flex;
    flex-direction: column;
}

.edm-h-logo a{
    font-size: 32px;
    font-family: "Frank Ruhl Libre", serif;
}

.edm-h-cont a {
    font-size: 18px;
}

.edm-h-sec {
    width: 100%;
    background: var(--h-sec);
    text-align: center;
    padding: 10px 0;
}

.edm-h-map a{
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    color: var(--text);
}

.edm-h-map {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    width: 1360px;
}

@media(max-width: 768px) {
    .edm-h-sec {
        display: none;
    }
    
    .edm-h-cont {
        display: none;
    }
    
    .edm-h-main {
        justify-content: center;
    }
}