@font-face {
    font-family: 'PT Sans Caption';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/PT_Sans_Caption.ttf) format('truetype');
}
.top-menu {
    margin: 0 60px;
    position: relative;
    background: #5A394E;
    box-shadow:
            inset 1px 0 0 rgba(255,255,255,.1),
            inset -1px 0 0 rgba(255,255,255,.1),
            inset 150px 0 150px -150px rgba(255,255,255,.12),
            inset -150px 0 150px -150px rgba(255,255,255,.12);
}
.top-menu:before,
.top-menu:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    width: 100%;
    height: 3px;
}
.top-menu:before {
    top: 0;
    border-bottom: 1px dashed rgba(255,255,255,.2);
}
.top-menu:after {
    bottom: 0;
    border-top: 1px dashed rgba(255,255,255,.2);
}
.menu-main {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.menu-main:before,
.menu-main:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 0;
    top: 8px;
    border-top: 18px solid #5A394E;
    border-bottom: 18px solid #5A394E;
    transform: rotate(360deg);
    z-index: -1;
}
.menu-main:before {
    left: -30px;
    border-left: 12px solid rgba(255, 255, 255, 0);
}
.menu-main:after {
    right: -30px;
    border-right: 12px solid rgba(255, 255, 255, 0);
}
.menu-main li {
    display: inline-block;
    margin-right: -4px;
}
.menu-main a {
    text-decoration: none;
    display: inline-block;
    padding: 15px 30px;
    font-family: 'PT Sans Caption', sans-serif;
    color: white;
    transition: .3s linear;
}
.menu-main a.current,
.menu-main a:hover {background: rgba(0,0,0,.2);}
@media (max-width: 680px) {
    .top-menu {margin: 0;}
    .menu-main li {
        display: block;
        margin-right: 0;
    }
    .menu-main:before,
    .menu-main:after {content: none;}
    .menu-main a {display: block;}
}
