@charset "UTF-8";
/* 
$content-width will be the max width of the content within the navigation bar. 
$breakpoint determines at which width the media query breakpoint will take effect.
*/
body {
  background-color: #63D6E0;
}

nav {
  float: right;
}

.menu-inn { width: 100%; }
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  float: left;
  position: relative;
  text-transform: uppercase;
}
  nav ul li a {
    display: block;
    padding: 0 20px;
    line-height: 50px;
    /* background: #ffffff; */
    color: #fff !important;
    text-decoration: none;
    /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
  }


nav ul li a:active{color: #fff;}

nav ul li a:hover {
  color: #fff;
}
nav ul li a:focus {
  background: #fff;
  color: #C91429;
}


nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}

nav ul li ul li {
  min-width: 190px;
}

  nav ul li ul li a {
    padding: 10px;
    line-height: 20px;
    color: #000 !important;
    font-size: 14px
  }

nav ul li ul li a:hover{ color: #000; }
.nav-dropdown {
  position: absolute;
  z-index: 1;
  /* Guarantees that the dropdown will display on top of any content. */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
  background: #fff;
  /* color: #000 !important; */
  z-index: 99;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 10px;
  right: 0;
  /* background: #fff; */
  height: 70px;
  width: 70px;
  z-index: 9999;
}

@media only screen and (max-width: 1200px) {
	.brand { padding-left: 20px;}
	.brand img{ width: 190px !important; height: auto;}	
	
}

@media only screen and (max-width: 800px) {
		.navigation { height: 80px !important}
	
  .nav-mobile {
    display: block;
  }
	
	.menu-inn {width: 100%;/* display: flex; *//* flex-wrap: wrap; */align-items: flex-start;height: 100%;text-align: center;margin-top: 100px;}


  nav {
    width: 100%;
    padding: 70px 0 15px;
  }

  nav ul {
    display: none;
    background: #fff;
    height: 100vh;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1;
  }

  nav ul li {
    float: none;
    width: 100%;
    justify-content: center;
    flex: 1;
    align-self: center;
    /* width: 100%; */
  }

  nav ul li a {
    padding: 15px;
    line-height: 20px;
    color: #000 !important;
    width: 100%;
    /* text-align: left; */
  }

  nav ul li ul li a {
    /* padding-left: 30px; */
  }
	
	
	.nav-dropdown {position: relative;/* width: 90%; *//* margin: 0 auto; */box-shadow: 0 2px 8px rgb(0 0 0 / 10%);}
	nav ul li a:hover {color: #000;}
	nav ul ul { height: auto;}
	
}
#nav-toggle {
  position: absolute;
  right: 8px;
  top: 22px;
  cursor: pointer;
  padding: 5px 35px 16px 0px;
  z-index: 9999999;
  /* color: #000 !important; */
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 25px;
  background: #ffffff;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
  z-index: 99999;
}

#nav-toggle span:before {
  top: -8px;
}

#nav-toggle span:after {
  bottom: -8px;
}

#nav-toggle.active span {
  background-color: transparent;
}

#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
  background-color: #000 !important;
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
  background-color: #000 !important;
}

@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
	
	
}
/* 
.navigation – the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/
.navigation {background: rgb(201,20,41);border-color: #6a4742;-ms-transition: all 0.3s ease-in-out;-webkit-transition: all 0.3s ease-in-out;transition: all 0.3s ease-in-out;height: 90px;margin: 0;}

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'PF Encore Sans Pro Book';
  font-weight: 500;
  font-size: 15px;
}

.brand {
  position: absolute;
  /* padding-left: 20px; */
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
  top: 12px;
}

.brand img{ width: 100%; height: auto;}

.brand a,
.brand a:visited {
  color: #463f3f;
  text-decoration: none;
}

@media screen and (max-width: 800px) {

	
	.brand{ top:6px !important}
	
}







			