@import "GothamPro.css";
* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

button, 
button:active, 
button:focus {
    outline: none;
}

body{
    background-color: #EFF0F1;
}

nav.top_menu {
    position: fixed;
    z-index: 9;
    width: calc(100% - 20px);
    top: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    font-family: 'Gotham Pro';
    height: 15px;
}
nav.top_menu a{
    font-size: 4vw;
    font-weight: 600;
    color: #032041;
    text-align: center;
    text-decoration: none;
}
nav.top_menu a:last-child {
    font-weight: 500;
    color: transparent; /* прозрачный цвет букв */
    -webkit-text-stroke: 2px #032041;
}

nav.top_menu a{
    position: relative;
    text-align: center;
    top: -1vw;
    transform-style: preserve-3d;
    transition: all .3s ease;
}
nav.top_menu a img{
    padding-right: 8px;
    height: 2.8vw;
}

nav.top_menu.hover > a {
    top: 1vw;
}
nav.top_menu:hover > a {
    top: 1vw;
}
nav.top_menu.hover:hover > a {
    top: 1vw;
}
nav.top_menu a.active {
    top: 1vw;
}

@media only screen and (max-width:768px) {
    nav.top_menu a img {
        padding-right: 8px;
        height: 2.8vw;
    }
}