/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Navigation
  ## Links
  ## Menus
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  text-decoration: none;
  color: rgba(34, 34, 34, 0.8);
}

a:hover, a :focus {
  color: #;
  text-decoration: underline;
}

a:visited {
  color: black;
}

/*--------------------------------------------------------------
# Menus
--------------------------------------------------------------*/


.menu-left a {
  display: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .35s ease;
  font-size: 1.1rem;
}

.menu-left a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  transition: width 0s ease, background .35s ease;
}

.menu-left a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #02b4a8;
  transition: width .35s ease;
}

.menu-left a:hover:before {
  width: 100%;
  background: #02b4a8;
  transition: width .35s ease;
}

.menu-left a:hover:after {
  width: 100%;
  background: transparent;
  transition: all 0s ease;
}


/* --------------- Logo -----------------*/
.site-branding {
  float: left;
  display: inline-block;
  width: 100%;
  margin: 0 auto;

}

.site-title {
  clear: none;
  color: #00b4a8;
  display: inline;
  float: right;
  font-family: 'Nunito', sans-serif;
  margin: 35px 0 0 15px;
}

.custom-logo {
  float: none;
  display: inline-block;
  padding: 0;
  font-size: 1.5rem;
  line-height: inherit;
  height: 150px !important;
  width: auto;
  margin: 0 auto;

}

.custom-logo:after {
  content: '';
  display: table;
  clear: both;
}

.custom-logo img {
  height: 100%;
  width: auto;
}

.site-header {
  text-align: center;
}
.site-header nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.site-header nav ul li {
  float: none;
  margin: 35px 0 0 0;
}


@media (min-width: 768px) {
  .site-header nav ul li {
    float: left;
    margin-left: 1rem;

  }
}

.site-header nav ul li a {
  display: block;
}

@media (min-width: 576px) {
  .site-header nav ul li a {
    display: block;
    padding: .425rem 0rem;
  }
}

/*
@media (max-width: 767px) {
  .site-header nav .logo {
    float: left;
    padding-top: .15rem;
    padding-bottom: .15rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    font-weight: 500;
    color: black;
    height: 90px;
}
*/
  ul {
    clear: both;
 }
  
  .site-header nav ul li {
    margin-top: inherit;
  }

  ul li {
    padding: .5em 0;
    line-height: 1  5px;
     margin-top: inherit;
    text-align: center; 
  }

  .site-header nav ul li a {
    font-size: 1.1rem !important;
  }

  .site-title {
    display: none;
  }
}

.hide-nav {
  transform: translateY(-120% !important);
  -webkit-transform: translateY(-120%) !important;
}

ul.menu-left {
  display: block;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 10;
}

@media (min-width: 768px) {
  ul.menu-left {
    display: block !important;
    float: right;
    max-height: none;
  }
}
ul.menu-left:before {
  content: '';
  display: table;
  clear: both;
}
ul.menu-left.collapse {
  max-height: 15em !important;
}

/*
.nav-toggle {
  display: block;
  border-radius: 5px;
  background-color: transparent;
  float: right;
  height: 38px;
  width: 38px;
  cursor: pointer;
  padding: 8px 8px;
  margin-top: 25px;
}
.nav-toggle.open span:first-child {
  transform: rotate(45deg) translate(4.4px, 4.4px);
}
.nav-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.nav-toggle.open span:last-child {
  transform: rotate(-45deg) translate(4.4px, -4.4px);
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 6px;
  background-color: #60269e;
  transition: all .25s;
}