/*Главное меню*/

nav {
  display: block;
  background: #143d7a;}
;
}
ul {
  list-style: circle;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  outline: none;
  transition: .4s ease-in-out;
  
}
a:hover {
			    background-color: #ffffff;}
.topmenu {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
.topmenu:after {
  content: ";
  display: table;
  clear: both;
}
.topmenu li {
  display: inline-block;
  position: relative;
}
.topmenu > li > a{
  display: block;
  padding: 12px 26px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bol;
  letter-spacing: 1px;
  position: relative;
  font-family: 'Exo 2', sans-serif;
}
.topmenu > li:after {
  content: "";
  position: absolute;
  right: 0;
  width: 0px;
  height: 0px;
  background: #d2d2d2;
  top: 16px;
  box-shadow: 4px -2px 0 #d2d2d2;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  transform: rotate(30deg);
}
.topmenu > li:last-child:after {
  background: none;
  box-shadow: none;
}
.topmenu > li:hover > a{color: #143d7a;}
.submenu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 210px;
  background: #fafafa;
  border: 1px solid #ededed;
  left: 50%;
  margin-left: -105px;
  z-index: 10;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  transform: scale(.8);
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}
.submenu > li {display: block;}
li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.submenu li a {
  padding: 10px 0;
  margin: 0 10px;
  border-bottom: 1px solid #143d7a;
  font-size: 12px;
  font-weight: 600;
  color: #143d7a;
  display: block;
  font-family: 'Tahoma', serif;
}
.submenu li a:hover {color: #aaaaaa;}
