@font-face{font-family:Gothan-light;src:url(../fonts/gotham-light-webfont.ttf);font-weight:400;font-style:normal}@font-face{font-family:Gothan-medium;src:url(../fonts/gotham-medium-webfont.ttf);font-weight:400;font-style:normal}

.main-nav,
.main-nav a,
.main-nav ul,
.main-nav li,
.main-nav div,
.main-nav form,
.main-nav input {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

.main-nav a { text-decoration: none; }

.main-nav li { list-style: none; }

/* Menu Container */
.main-nav {
  display: inline-block;
  border-bottom: none;
  padding-top: 15px;
  font-size: 20px;
  position: relative;
  cursor: default;
  z-index: 500;
  width: 100%;
}

/* Menu List */
.main-nav > li {
  padding:10px 15px;
}

/* Menu Links */
.main-nav > li > a {
  color: #007b5e;
}
.main-nav > li > a > span { display: block; font-family: "Gothan-medium";}

.main-nav > li:hover::after { 
    display: block;
    border-bottom-color: rgba(255, 255, 255, 1);
    margin: auto;
    content: "";
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #cbbca1;
    pointer-events: none;
    margin-top: -13px;
    display: block;
}

.main-nav > li:hover > a { background: #4b4441; }

.main-nav > li:first-child > a {
  border-radius: 3px 0 0 3px;
  border-left: none;
}
/* Menu Dropdown */
.main-nav > li > div {
  position: absolute;
  display: block;
  width: 100%;
  /*top: 86%;*/
  top: 60px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;

  background: #fff;
  border-radius: 0 0 3px 3px;

  -webkit-transition: all .3s ease .15s;
  -moz-transition: all .3s ease .15s;
  -o-transition: all .3s ease .15s;
  -ms-transition: all .3s ease .15s;
  transition: all .3s ease .15s;
}

.main-nav > li:hover > div {
  opacity: 1;
  visibility: visible;
  overflow: visible;
}

/* Menu Content Styles */
.main-nav .nav-column {
  float: left;
  width: 33%;
  padding: 0 2.5% 20px;
  line-height: 1;
}

.main-nav .nav-column h3 {
  margin-bottom: 10px;
  line-height: 18px;
  
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #372f2b;
  text-transform: uppercase;
}

.main-nav .nav-column h3.orange { color: #ff722b; }

.main-nav .nav-column li a {
  display: inline-flex;
  line-height: 1;
  
  /*font-family: Helvetica, Arial, sans-serif;*/
  /*font-weight: bold;*/
  font-size: 16px;
  color: #888888;
}

.main-nav .nav-column li a::before {
  content: '\f068' !important;
  font-family: icomoon !important;
  color: rgba(50, 50, 50, .5);
  padding: 0 4px;
}

.main-nav .nav-column li a:hover { color: #007b5e; }

.main-nav .nav-column li li a {
  padding-left: 15px;
}
.main-nav .nav-column li li a::before {
  /*content: '\f192' !important;*/
  content: '\f105' !important;
  color: rgba(85, 85, 85, .25);
}


#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-transform: normal;
}
#cssmenu {
  width: 100%;
  color: #4B4B4F;
}
#cssmenu ul ul {
  display: none;
}
#cssmenu > ul > li.active > ul {
  display: block;
}
.align-right {
  float: right;
}

.mobile-sub-head {
    background-color: #cbbca1;
    color: #fff !important;
    font-family: Gothan-medium !important;
    margin: 8px 0 20px !important;
    font-weight: 400 !important;
}

.mobile-sub-foot {
    margin-bottom: 20px !important;
}

#cssmenu > ul > li > a, #cssmenu ul ul li a {
  padding: 7px 20px;
  /*border-bottom: 1px solid #DDDDDD;*/
  cursor: pointer;
  z-index: 2;
  font-size: 14px;
  text-decoration: none;
  /*color: #4B4B4F;
  background: #3ab4a6;*/
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu > ul > li > a:hover {
  color: #d8f3f0;
}
#cssmenu ul > li.has-sub > a:after {
  position: absolute;
  right: 26px;
  top: 9px;
  z-index: 5;
  display: block;
  height: 10px;
  width: 2px;
  background: #15491E;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
#cssmenu ul > li.has-sub > a:before {
  position: absolute;
  right: 22px;
  top: 13px;
  display: block;
  width: 10px;
  height: 2px;
  background: #15491E;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
#cssmenu ul > li.has-sub.open > a:after,
#cssmenu ul > li.has-sub.open > a:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cssmenu ul li {
  padding-left: 10px;
} 
#cssmenu ul ul li a:hover {
  color: #333;
}
#cssmenu ul ul > li.has-sub > a:after {
  top: 6px;
  right: 26px;
  background: #A8C4AD;
}
#cssmenu ul ul > li.has-sub > a:before {
  top: 10px;
  background: #A8C4AD;
}

#accordion {
	list-style: none;
	padding: 0 0 0 0;
	width: 170px;
}
#accordion li{
	display: block;
	background-color: #FF9927;
	font-weight: bold;
	margin: 1px;
	cursor: pointer;
	padding: 5 5 5 7px;
	list-style: circle;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
#accordion ul {
	list-style: none;
	padding: 0 0 0 0;
	display: none;
}
#accordion ul li{
	font-weight: normal;
	cursor: auto;
	background-color: #fff;
	padding: 0 0 0 7px;
}
#accordion a {
	text-decoration: none;
}
#accordion a:hover {
	text-decoration: underline;
}

#homemenu ul li{
    /*padding: 10px 30px;*/
    /*border-bottom: solid 1px #ddd;*/
    width: 100%;
    text-align: center;
    display: inline-block;
}

#homemenu {
  width: 100%;
  color: #4B4B4F;
}

#homemenu ul ul {
  display: none;
}

#homemenu > ul > li.active > ul {
  display: block;
}

.first-sub {
    border-bottom: solid 1px #ddd; 
    font-size: 20px !important; 
    color: #007b5e !important;
    font-family: gothan-medium;
}

.first-sub:hover {
    color: #cbbca1 !important;
}

#homemenu .sub-class2 {
    background-color: #007b5e;
}

#homemenu .sub-class2 a {
    color: #cbbca1;
    font-size: 16px;
}

#homemenu .sub-class3 {
    background-color: #cbbca1;
}

#homemenu .sub-class3 a {
    color: #007b5e;
}

#homemenu .sub-class4 {
    background-color: #dfd8cc;
}

#homemenu .sub-class4 a {
    color: #007b5e;
}

#homemenu > ul > li > a, #homemenu ul ul li a {
  padding: 7px 20px;
  /*border-bottom: 1px solid #DDDDDD;*/
  cursor: pointer;
  z-index: 2;
  font-size: 14px;
  text-decoration: none;
  width: 100%;
  display: inline-block;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#homemenu > ul > li > a:hover {
  color: #d8f3f0;
}

#homemenu ul > li.has-sub > a:after {
  position: absolute;
  right: 26px;
  top: 9px;
  z-index: 5;
  display: block;
  height: 10px;
  width: 2px;
  background: #15491E;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
#homemenu ul > li.has-sub > a:before {
  position: absolute;
  right: 22px;
  top: 13px;
  display: block;
  width: 10px;
  height: 2px;
  background: #15491E;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
#homemenu ul > li.has-sub.open > a:after,
#homemenu ul > li.has-sub.open > a:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#homemenu ul li {
  padding-left: 0px;
} 
#homemenu ul ul li a:hover {
  /*color: #cbbca1;*/
  font-weight: bold;
}
#homemenu ul ul > li.has-sub > a:after {
  top: 6px;
  right: 26px;
  background: #A8C4AD;
}
#homemenu ul ul > li.has-sub > a:before {
  top: 10px;
  background: #A8C4AD;
}