@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');

/*removes user agent (browser default) margins<--Davide added*/
body {margin: 0px;}




/***********************************Menu*************************************/
.animenu {
    display: block;
    width: 98%;
    padding-left: 16px;
    padding-top: 3px;}

.animenu ul {
    padding: 0;
    list-style: none;
    font-size: 0px; /*removes spacing between li<--Davide added*/
}

.animenu li, .animenu a {
    display: inline-block;}

.animenu a {
    text-decoration: none; 
    color: #45413d;
    font-size: 12px;
    font-family: 'Merriweather', Georgia, Helvetica, Arial;
    font-weight: 400;}

.menu_cap {font-size: 15px;}




/********************************Top Level********************************/
.animenu__nav {
  /*background-color: #111;*/
    background-image: url(../images/bg_marble_square.jpg);}

.animenu__nav > li {
    position: relative;
    border-right: 1px solid #888888;
    border-left: 1px solid #CCCCCC;}

.animenu__nav > li > a {
      padding: 10px 30px;
      /*text-transform: uppercase;*/ }

.animenu__nav > li:hover > ul {
      opacity: 1;
      visibility: visible;
      margin: 0; }

.animenu__nav > li:hover > a {
      color: #f3f3f3; }

.animenu__nav > li:focus-within > ul {
      opacity: 1;
      visibility: visible;
      margin: 0; }

.animenu__nav > li:focus-within > a {
      color: #f3f3f3; }

.animenu__nav__hasDropdown:before {
    content: "";
    position: absolute;
    border: 4px solid transparent;
    border-bottom: 0;
    border-top-color: currentColor;
    top: 50%;
    margin-top: -2px;
    right: 10px; }



/********************************Drop Down******************************/
/*****Transition*****/
.animenu__nav__dropdown {
  min-width: 140%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  opacity: 0; /* starting opacity */
  visibility: hidden;
  margin: 70px 0 0 0;
    background-image: url(../images/bg_marble_square.jpg);
  transition: margin .15s, opacity .5s; /*transition effect*/}
 

.animenu__nav__dropdown > li {
    width: 100%;
    border-bottom: 1px solid #666666; /*border in drop-down*/
    border-top: 1px solid #BBBBBB; /*border in drop-down*/}

.animenu__nav__dropdown > li:first-child > a:after {
      content: '';
      position: absolute;
      height: 0;
      width: 0;
      left: 1em;
      top: -6px;
      border: 6px solid transparent;
      border-top: 0;
      border-bottom-color: inherit; }

.animenu__nav__dropdown > li:last-child {
      border: 0; }

.animenu__nav__dropdown a {
    padding: 15px; /*padding around drop-menu items*/
    width: 100%;
    border-color: #714444; }

.animenu__nav__dropdown a:hover {
        background-color: #732C2c;
		background-image: -moz-linear-gradient(#714444,  #732C2C);	
		background-image: -webkit-gradient(linear, left top, left bottom, from(#714444), to(#732C2C));
		background-image: -webkit-linear-gradient(#714444, #732C2C);
		background-image: -o-linear-gradient(#714444, #732C2C);
		background-image: -ms-linear-gradient(#714444, #732C2C);
		background-image: linear-gradient(#714444, #732C2C);
        color: #fff; }

.animenu__nav__dropdown a:focus-within {
      background-color: #0186ba;
      border-color: #0186ba;
      color: #f3f3f3; }




/***************************************Mobile Button********************************/
*, *:after, *:before {
  box-sizing: border-box; }

.animenu__btn {
  display: none;
  cursor: pointer;
  background-color: #6D3B3B;
  border: 0;
  padding: 20px;
  height: 60px;
  width: 60px; }
  .animenu__btn:hover {
    background-color: #F57979; }

.animenu__btn__bar {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #fff;
  transition: .5s cubic-bezier(0.75, -0.55, 0.25, 1.55); }
  .animenu__btn__bar + .animenu__btn__bar {
    margin-top: 4px; }

.animenu__btn--active .animenu__btn__bar {
  margin: 0;
  position: absolute; }
  .animenu__btn--active .animenu__btn__bar:nth-child(1) {
    transform: rotate(45deg); }
  .animenu__btn--active .animenu__btn__bar:nth-child(2) {
    opacity: 0; }
  .animenu__btn--active .animenu__btn__bar:nth-child(3) {
    transform: rotate(-45deg); }





@media screen and (max-width: 767px) {
  .animenu__btn {
    display: inline-block; }

  .animenu__nav,
  .animenu__nav__dropdown {
    display: none; }

  .animenu__nav {
    margin: 10px 0; }
    .animenu__nav > li {
      width: 100%;
      border-right: 0;
      border-bottom: 1px solid #515151; }
      .animenu__nav > li:last-child {
        border: 0; }
      .animenu__nav > li:first-child > a:after {
        content: '';
        position: absolute;
        height: 0;
        width: 0;
        left: 1em;
        top: -6px;
        border: 6px solid transparent;
        border-top: 0;
        border-bottom-color: inherit; }
      .animenu__nav > li > a {
        width: 100%;
        padding: 10px;
        border-color: #111;
        position: relative; }
    .animenu__nav a:hover {
      background-color: #0186ba;
      border-color: #0186ba;
      color: #fff; }

  .animenu__nav__dropdown {
    position: static;
    background-color: #373737;
    margin: 0;
    transition: none;
    visibility: visible;
    opacity: 1; }
    .animenu__nav__dropdown > li:first-child > a:after {
      content: none; }
    .animenu__nav__dropdown a {
      padding-left: 20px;
      width: 100%; } }
.animenu__nav--active {
  display: block !important; }
  .animenu__nav--active .animenu__nav__dropdown {
    display: block; }
