
/*..........top-menu.............*/

.top-menu {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    display: table;
    list-style: none;
    background: #690235;    
    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,.8);
}
.top-menu:after {
  bottom: 0;
  border-top: 1px dashed rgba(255,255,255,.8);
}
.top-menu ul {
  margin: 0;
  padding: 0;
}
.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#690235 ;
  border-bottom: 18px solid #690235;
  transform: rotate(360deg);
  z-index: -1;
}
.menu-main:before {
  left: -30px;
  border-left: 12px solid rgba(255, 255, 255, 0);
}
.menu-main:after {
    display: table;
  clear: both;
  right: -30px;
  border-right: 12px solid rgba(255, 255, 255, 0);
}
.menu-main li {
  display: inline-block;
  position: relative;
  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 li a.current,
.menu-main li a:hover,
.submenu li:hover {
    background: rgba(129, 4, 4, 0.89);
    color:cornsilk;
    
}

@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;}
}
.submenu-link:after {
    content: "▼";
    color: inherit;
    margin-left: 10px;
  }
  .submenu {
    background: #690235;
    position: absolute;
    left: 0;
    top: 100%;
    text-align: left;
    z-index: 5;
    width: 210px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: .5s ease-in-out;
  }
  .submenu li {
    position: relative;
   }
  .submenu a {
    width: 160px;
    color: white;
    padding: 12px 20px 12px 30px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .submenu li:last-child a { border-bottom: none; }
  .menu-main > li:hover .submenu {
    opacity: 1;
    transform: scaleY(1);
  }
  /* ......footer..............*/
footer {
  position: relative;
}
  .footer {
    position: relative;
    margin: 0;
    padding: 20px;
    font-size: 12px;
    background: #57022c;
    color: white;
    font-weight: 500;
    justify-content: center;
    align-items: center;
  }
  .counter {
    position: absolute;
    bottom: 0;
    right: 0;
  }