.main {
  position: relative;
}

.header {
  display: flex;
  text-align: center;
  position: relative;
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  padding-bottom: 0;
}

.header__navtoggle {
  display: block;
  height: 18px;
  width: 18px;
  padding: 2px;
  margin: 0;
  background: center / contain no-repeat url('/images/icons/menu.svg'); 
}

.header__navtoggle--active {
  background: center / contain no-repeat url('/images/icons/close.svg'); 
}

.header__link {
  flex: 1;
	text-decoration: none;
}

.header__logo{
  text-align: center;
	max-height: 150px;
	max-width: 80%;
}

.nav {
  position: absolute;
  overflow: hidden;
  width: 210px;
  left: 0;
  height: 100%;
  z-index: 50;
}

.nav .nav__list {
  position: absolute;
  margin-top: 10px;
  width: 100%;
  height: 100%;
  background: #fff;
  border-right: 1px solid #f2f2f2;
  left: -210px;
  list-style-type: none;
  transition: left .25s ease-out;
}

.nav .nav__list--active {
  left: 0px;
}

.nav .sub__list {
  list-style-type: none;
}

.nav .nav__item {
  padding-left: 2rem;
  font-weight: bold;
}

.nav .nav__item--sub {
  font-weight: normal;
}

.nav .nav__link {
  text-decoration: none;
}

.nav .nav__link:not(.nav__link--has-children):hover {
  text-decoration: underline;
}


.navdesktop {
  max-width: 500px;
  margin: 0 auto;
  text-transform: uppercase;
}

.navdesktop .nav__item {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}

.navdesktop .nav__link {
  padding-bottom: .5rem;
  display: block;
}

.navdesktop .nav__list {
  display: flex;
  margin: 0 auto;
  width: 100%;
  justify-content: space-around;
  z-index: 50;
  list-style-type: none;
}

.navdesktop .nav__link--has-children {
  padding-right: 15px;
  position: relative;
}

.navdesktop .nav__link--has-children::before {
  content: "";
  position: absolute;
  right: 45px;
  top: 3px;
  display: block;
  width: 7px;
  height: 12px;
  z-index: -1;
  background: right no-repeat url('/images/icons/caret.svg'); 
  transform: rotate(-90deg);
  transition: transform .2s ease-out;
}

.navdesktop .nav__link--has-children:hover::before {
  transform: rotate(90deg);
}

.navdesktop .sub__list {
  display: none;
  position: absolute;
  z-index: 100;
  background: #fff;
  list-style-type: none;
  padding: 1rem 2rem;
  border-radius: 0px 0px 4px 4px;
  border-top: 1px solid #aaa;
}

.navdesktop .nav__link {
  text-decoration: none;
}

.navdesktop .nav__link:not(.nav__link--has-children):hover {
  text-decoration: underline;
}



.series {
  padding: 0 2rem;
}

.series__image {
  display: block;
  max-width: 100%;
  margin: 2rem auto;
  max-height: 80vh;
  border-radius: 3px;
}

.series__title {
  margin: 2rem;
  text-align: center;
}

.series__desc {
  text-align: center;
  font-size: 18px;
  margin: 2rem auto;
  max-width: 40rem;
}





.footer {
	position: relative;
  text-align: center;
}

.footer__links{
	font-family: 'Oswald', sans-serif;
	font-size: 11px;
	line-height: 50px;
	padding-left: 10px;
	padding-right: 10px;
}
.footer__links a {
	text-decoration: none;
}

.footer__links a:hover{
	text-decoration: underline;
}

@media (min-width: 768px) {
	.header__navtoggle {
    display: none;
  }
  .nav {
    display: none;
  }
}	

@media (max-width: 767px) {
  .navdesktop {
    display: none;
  }
}	