.main-menu ul {
	list-style: none;
	margin: 0;
	padding: 2.5em 0 0;
}

.main-menu a {
	display: block;
	padding: .75em 15px;
	padding: 1em 15px 0.7em;
}

/* Screen reader only */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

@media (max-width: 991px) {

	/* Button styling */
	.menu-toggle {
		display: inline-block;
		padding: .75em 15px;
		line-height: 48px;
		font-size: 1.5em;
		color: white;
		right: 30px;
		top: 0;
		position: absolute;
	}

	.menu-toggle:hover,
	.menu-toggle:focus {
		color: #ff9900;
	}

	/*
 Default styles + Mobile first
 Offscreen menu style
*/
	.main-menu {
		position: absolute;
		display: none;
		right: -200px;
		top: 0;
		height: 100%;
		overflow-y: scroll;
		overflow-x: visible;
		transition: left 0.3s ease,
			box-shadow 0.3s ease;
		z-index: 999;
	}

	.main-menu ul {
		/* Hide shadow w/ -8px while 'closed' */
		-webkit-box-shadow: -8px 0 8px rgba(0, 0, 0, .5);
		-moz-box-shadow: -8px 0 8px rgba(0, 0, 0, .5);
		box-shadow: -8px 0 8px rgba(0, 0, 0, .5);
		min-height: 100%;
		width: 200px;
		background: #1a1a1a;
	}

	.main-menu a {
		display: block;
		padding: .75em 15px;
		line-height: 1em;
		font-size: 1em;
		color: #fff;
		text-decoration: none;
		border-bottom: 1px solid #383838;
	}

	.main-menu li:first-child a {
		border-top: 1px solid #383838;
	}

	.main-menu a:hover,
	.main-menu a:focus {
		background: #333;
		text-decoration: underline;
	}

	.main-menu .menu-close {
		position: absolute;
		right: 0;
		top: 0;
	}

	/*
 On small devices, allow it to toggle...
*/
	/*
 :target for non-JavaScript
 [aria-expanded] will be used if/when JavaScript is added to improve interaction, though it's completely optional.
*/
	.main-menu:target,
	.main-menu[aria-expanded="true"] {
		display: block;
		right: 0;
		outline: none;
		-moz-box-shadow: 3px 0 12px rgba(0, 0, 0, .25);
		-webkit-box-shadow: 3px 0 12px rgba(0, 0, 0, .25);
		box-shadow: 3px 0 12px rgba(0, 0, 0, .25);
	}

	.main-menu:target .menu-close,
	.main-menu[aria-expanded="true"] .menu-close {
		z-index: 1001;
	}

	.main-menu:target ul,
	.main-menu[aria-expanded="true"] ul {
		position: relative;
		z-index: 1000;
	}

	/* 
 We could us `.main-menu:target:after`, but
 it wouldn't be clickable.
*/
	.main-menu:target + .backdrop,
	.main-menu[aria-expanded="true"] + .backdrop {
		position: absolute;
		display: block;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 998;
		background: #000;
		background: rgba(0, 0, 0, .85);
		cursor: default;
	}

	@supports (position: fixed) {

		.main-menu,
		.main-menu:target + .backdrop,
		.main-menu[aria-expanded="true"] + .backdrop {
			position: fixed;
		}
	}
}

/*
 Larger screen styling
 Horizontal menu
*/
@media (min-width: 992px) {

	.menu-toggle,
	.main-menu .menu-close {
		display: none;
	}

	/* Undo positioning of off-canvas menu */
	.main-menu {
		position: relative;
		left: auto;
		top: auto;
		height: auto;
		display: block;
	}

	.main-menu ul {
		display: flex;

		/* Undo off-canvas styling */
		padding: 0;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		height: auto;
		width: auto;
		background: none;
	}

	.main-menu a {
		color: #06c;
		border: 0 !important;
		/* Remove borders from off-canvas styling */
	}

	/*
    .main-menu a:hover,
    .main-menu a:focus {
        background: none;
         Remove background from off-canvas styling 
        color: #c00;
    }
*/
}

/*
 Demo purposes only
*/
*,
*:before,
*:after {
	box-sizing: border-box;
}

header {
	padding: 20px;
	display: flex;
	align-items: baseline;
}

header h1 img {
	max-width: 250px;
}

body {
	font-size: 16px;
	line-height: 1.5em;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	color: #002169;
}

article h2 {
	font-weight: 500;
	font-size: 28px;
}

.logo {
	margin: 0 30px 0 10px;
}

nav li {
	font-weight: 900;
	letter-spacing: .1rem;
}

h1 {
	font-weight: 900;
	font-size: 40px;
	margin-bottom: 35px;
	text-align: center;
	margin-top: 0;
}

#hero {
	background-color: #02104c;
	background-image: url(../jpg/hero2.jpg);
	background-size: cover;
	height: 550px;
	padding: 0;
	color: white;
}

#hero .module-sh-copy {
	max-width: 380px;
	margin-top: 100px;
	margin-left: 100px;
}

#hero .module-sh-copy p {
	text-shadow: 2px 2px black;
}

#stem {
	max-width: 180px;

    left: -9px;
    position: relative;
}

#hero a {
	color: #002169;
	background-color: white;
	border-radius: 0;
	font-weight: bolder;
	letter-spacing: .5px;
	font-size: 18px;
	padding: 5px 20px;
	margin-top: 25px;
	box-shadow: -7px 7px 0 #5368a8;
	transition: box-shadow .4s;
}

#hero a:hover {
	color: blue;
	box-shadow: -7px 7px 0 #ff9900;
}

.module-sh {
	position: relative;
}

#ring {
	max-height: 500px;
	position: absolute;
	top: 0;
	right: 10%;
}

#about {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 540px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

section {
	padding-top: 60px;
	padding-bottom: 60px;
}

footer {
	font-weight: 900;
	background-color: #002169;
	padding: 2rem 20px;
	color: white;
	text-align: center;
	letter-spacing: .5px;
}

footer p {
	margin-bottom: 0;
}

#guides {
	background-color: #000;
	color: white;
}

.guide-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 1500px;
	margin: 0 auto;
	font-size: 20px;
}

h2,
.guide-list,
.soon {
	font-weight: 900;
	letter-spacing: .5px;
}

h2 {
	font-size: 24px;
}

/*
.guide-list>li {
    display: inline-block;
    width: 32%;
}
*/
@media (max-width:1200px) {
	.guide-list {
		max-width: 100%;
	}
}

@media (max-width: 850px) {
	.guide-list > li {
		width: 100%;
	}
}

.guide-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.guide-list > li li {
	width: auto;
	text-transform: uppercase;

}

.guide-list h2 {
	border-bottom: 8px solid white;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10px;
}

.guide-list a {
	border-bottom: 1px solid white;
	color: white;
	/*    line-height:1.8;*/
	padding-bottom: 2px;
	margin-bottom: 15px;
	display: inline-block;
	font-size: 22px;
}

.guide-list a:hover,
#questions a:hover,
.guide-list a:focus,
#questions a:focus {
	text-decoration: none;
	color: #f7d565;
	border-color: #f7d565;
}

.guide-list > li li:first-child {
	margin-top: 15px;
}

@media (min-width: 1500px) {
	/*.container {
		width: 1470px;
	}*/
}

#questions img {
	width: 380px;
	max-width: 100%;
}

#questions a {
	position: relative;
	display: inline-block;
}

#questions a span {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .6);
	padding: 25px;
	font-size: 24px;
	font-weight: bolder;
	color: white;
	transition: background-color .4s;
}

#questions a:before {
	content: '';
	width: 100%;
	display: block;
	height: 100%;
	position: absolute;
	background-color: transparent;
	transition: background-color .4s;
}

#questions a:hover:before,
#questions a:focus:before {
	/*    background-color: black;*/
	/* background-color: rgba(1, 26, 86, .5); */
    background-color: rgba(2, 53, 140, .5);
}

#questions a:hover span,
#questions a:focus span {
	background-color: rgba(0, 0, 0, .6);
}

.soon {
	font-size: 18px;
	margin-top: 50px;
}

header {
	background-color: #002169;
	color: white;
	border-bottom: 6px solid #ff9900;
}

@media (max-width: 991px) {
	#questions a {
		margin-bottom: 30px;
	}

	#questions .col-md-4:last-child a {
		margin-bottom: 5px;
	}

	.guide-list > li {
		margin-bottom: 30px;
	}

	.guide-list > li:last-child {
		margin-bottom: 5px;
	}
}

@media (min-width: 768px) {
	header {
		background-color: #002169;
		background: url('../png/swoosh.png') #002169 center 4px no-repeat;
		background-size: cover;
	}

	header .main-menu a,
	header h1 {
		color: white;
	}

	header .main-menu a span {
		border-bottom: 4px solid transparent;
		/*		border-top: 4px solid transparent;*/
		/*		padding: 4px;*/
		padding-bottom: 4px;
	}

	header .main-menu a:hover,
	header .main-menu a:focus {
		text-decoration: none;
	}

	header .main-menu a:hover span,
	header .main-menu a:focus span {
		border-bottom: 4px solid #ff9900;
		/*		border-top: 4px solid #ff9900;*/
		transition: border .5s;
	}

	nav.main-menu {
		margin-left: auto;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	#ring {
		max-height: 450px;
	}

	#hero .module-sh-copy {
		margin-top: 80px;
	}

	#hero {
		height: 490px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
.container {width: 98%;}
#ring {right: 5%;}
#hero .module-sh-copy {
margin-left: 5%;
}
}
@media (min-width: 768px) and (max-width: 880px) {
#ring {
    left: 75%;
    transform: translateX(-50%);
    max-width: 285px;
}
#hero .module-sh-copy {
     margin-top: 40px;
    margin-left: 3%;
}
#stem {
    max-width: 160px;
}
#hero {
    height: 410px;
}
}

@media (max-width: 767px) {
    #ring {
    max-height: 240px;
    left: 37%;
    transform: translateX(-50%);
    z-index: 0;
    }
    #hero .module-sh-copy {
    max-width: 380px;
    margin-top: 71px;
    margin-left: 100px;
    z-index: 2;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
#hero .module-sh-copy h1 {
    position: relative;
    left: 25px;
    
}
#hero {
    height: 470px;
    
}
#stem {
    
    background-color: #020f4c;
    padding: 5px 4px 5px 0px;
    border-radius: 18% 0% 3% 8%;
    
}
.container {
    overflow: hidden;
    margin-left: 0;
}
}

@media (max-width: 450px) {
    .logo {margin: 0;}
    header h1 img {
    max-width: 200px;
}
.menu-toggle {right: 15px;}
#hero {
    background-position: 26% bottom;
}

}



/******* BEGIN SCHEDULE *********/
#schedule {
	padding-top: 0;	
	padding-bottom: 0;
	position:relative;
}
#schedule ul {color: white; list-style: none;}
#schedule li {
    font-size: 20px;
    line-height: 2;
}
#schedule .view {height: 470px;}
#schedule h1 {
    margin: 6rem auto;
}
#schedule .tabsnav {
    margin-top: -90px;
}
#schedule .tabsnav--ibai .tabsnav__bar {
    background: #1e56e4;
}
#schedule .tabsnav__item:nth-child(2) .tabsnav__bar {
    background: #153fa9;
}
#schedule .tabsnav__item:nth-child(3) .tabsnav__bar {
    background: #03247d;
}
#schedule .tabsnav__item:nth-child(4) .tabsnav__bar {
    background: #041b56;
}
#schedule .tabsnav--ibai a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.tabsnav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

/*
.tabsnav--hidden {
	pointer-events: none;
	visibility: hidden;
}
*/

.tabsnav__item {
	height: 50px;
	position: relative;
	cursor: pointer;
}

.tabsnav__bar {
	background: currentColor;
	width: 100%;
	height: 100%;
	position: absolute;
	pointer-events: none;
}

.tabsnav__title {
	position: relative;
	cursor: pointer;
	margin: 0;
	height: 100%;
	font-weight: normal;
	line-height: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}

/* Vertical Menu */
.tabsnav--vertical {
	display: flex;
	width: auto;
	height: 100%;
}

.tabsnav--vertical .tabsnav__item {
	flex: none;
	width: 50px;
	height: 100%;
}

.tabsnav--vertical .tabsnav__title {
	transform: rotate(-90deg);
}

/* Individual menu styles (Basque names) */

/* Ander */
/*
.tabsnav--ander {
	left: 45px;
}

.tabsnav--ander .tabsnav__bar {
	background: #fff;
}

.tabsnav--ander .tabsnav__title {
	color: #1d48f3;
}

.tabsnav--ander .tabsnav__item:not(:last-child) {
	margin: 0 10px 0 0;
}
*/

/* Zeru */
/*
.tabsnav--zeru {
	background: #222525;
}

.tabsnav--zeru .tabsnav__item:first-child .tabsnav__bar {
	background: #161919;
}

.tabsnav--zeru .tabsnav__item:nth-child(2) .tabsnav__bar {
	background: #222525;
}

.tabsnav--zeru .tabsnav__item:nth-child(3) .tabsnav__bar {
	background: #2e3131;
}

.tabsnav--zeru .tabsnav__title {
	color: #fff;
}
*/

/* Ibai */
.tabsnav--ibai {
	top: 50%;
	margin-top: -115px;
}

.tabsnav--ibai .tabsnav__item {
	height: 70px;
}

.tabsnav--ibai .tabsnav__bar {
	background: #414a52;
}

.tabsnav--ibai .tabsnav__title {
	color: #fc0;
	font-size: 31px;
}

.tabsnav--ibai .tabsnav__item:not(:last-child) {
	margin: 0 0 10px 0;
}

/*
@media screen and (max-width: 40em) {
	 don't show a background if on mobile 
	.tabsnav {
		background: none;
	}
}
*/

*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*
body {
	font-family: 'Avenir Next', Avenir, Helvetica, Arial, sans-serif;
	color: #393a3e;
	background: lavender;
}

a {
	text-decoration: none;
	color: #000;
	outline: none;
}

a:hover,
a:focus {
	color: #1d48f3;
}
*/

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

.view {
	position: relative;
	display: flex;
	justify-content: flex-end;
	overflow: hidden;
	height: 100vh;
/*	margin: 0 0 0 215px;*/
}

.deco__text {
	font-size: 0.8em;
	line-height: 1;
	margin: 0;
	color: #bcb8e8;
}

.tabscontent__item .btn {
	border: none;
	background: none;
}

.btn--back:focus {
	outline: none;
}
.btn--back:focus, .btn--back:active, .btn--back:hover {
    color: #fff;
}

.btn--back {
	font-size: 1.5em;
	position: absolute;
	z-index: 1002;
	top: 1em;
	right: 1em;
	opacity: 0;
	color: #1d48f3;
	color: #ff9900;
	transition: color 1s;
}
/*

.btn--menu {
	font-size: 0.85em;
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	display: none;
	margin: 10px 0 0 6px;
}
*/

/*
.btn--menu-active .icon--menu,
.icon--cross 
{
	display: none;
}
*/
/*

.btn--menu-active .icon--cross {
	display: block;
}
*/

/* Demo links */
/*
.demos {
	display: flex;
	align-items: center;
	margin: 2em 0 0 auto;
}

.demos__text {
	font-size: 0.8em;
	display: block;
	margin: 0 2em 0 0;
	color: #bcb8e8;
}

.demo {
	position: relative;
	display: block;
	margin: 0 0 0 1.5em;
}

.demo:hover,
.demo:focus {
	outline: none;
}

.demo--current {
	pointer-events: none;
	color: #fff;
}

.demo--current::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	margin: -17px 0 0 -16px;
	border-radius: 50%;
	background: #1d48f3;
}
*/
/* Content */
.tabscontent {
	pointer-events: none;
}

.tabscontent__item {
	position: absolute;
	z-index: 1001;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	opacity: 0;
	max-height: 470px;
}

.tabscontent__item--current,
.tabscontent__item--current ~ .btn--back {
	pointer-events: auto;
}

.poster {
	position: relative;
	height: 80vh;
	margin: 10vh auto;
	padding: 0 50px;
	pointer-events: none;
}

.poster__img {
	position: relative;
	display: block;
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
}

.poster__caption {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 100%;
	padding: 0 50px;
}

.poster__box {
	position: absolute;
	top: -50px;
	left: 0;
	width: 50%;
	height: 40%;
	border: 10px solid;
}

.poster__number {
	font-size: 5em;
	font-weight: bold;
	line-height: 0.7;
	position: absolute;
	bottom: 0;
	left: calc(100% - 50px + 5px);
	color: lavender;
}

.poster__title {
	font-size: 6em;
	line-height: 0.7;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin: 0 0 -0.25em 0.15em;
	text-indent: -0.75em;
}

.poster__deco {
	font-size: 2em;
	line-height: 1;
	margin: 0 -1.25em 0 auto;
	color: #1d48f3;

	writing-mode: vertical-rl;
}

.column {
	width: 30vw;
}

.column__title {
	color: #ff764b;
}

.column__text {
	font-size: 2em;
	font-weight: normal;
	margin: 0;
	color: #fff4d7;
}

/* Individual demos */


.demo-3 {
	color: #fc0;
	background: #2a3137;
}

.demo-3 a {
	color: #fff;
}

.demo-3 a:hover,
.demo-3 a:focus,
.demo-3 .btn--menu:hover {
	color: #fc0;
}

.demo-3 .view {
	margin: 0;
	padding: 5vw 5vw calc(10vw + 1em);
	
    max-height: 470px;
    overflow: hidden;
}

.demo-3 .content {
	padding: 0;
}

.demo-3 .codrops-header {
	justify-content: flex-end;
	align-items: flex-start;
	width: 100%;
	height: calc(100% + 3.25em);
	text-align: left;
}

.demo-3 .codrops-header__title {
	font-family: 'Poppins', sans-serif;
	font-size: 7em;
	line-height: 0.6;
	margin: auto 0 0 -40px;
	padding: 0.2em 0 0 0;
}

.demo-3 .codrops-header__tagline {
	font-size: 1.5em;
	margin: 0.25em 0 0 -0.3em;
}

.demo-3 .btn--menu {
	font-size: 1em;
	top: auto;
	bottom: 0;
	left: 50%;
	display: block;
	margin: 0 -0.75em 1em;
	color: #fbf9fa;
}

.demo-3 .content {
	background: url(../img4.html) no-repeat 50% 20%;
	background-size: cover;
}

.demo-3 .codrops-links {
	align-self: flex-end;
	margin: 1.5em 1.5em auto;
}

.demo-3 .demos {
	margin: 1em 0 0;
}

.demo-3 .demo:first-child {
	margin: 0;
}

.demo-3 .demo.demo--current {
	color: #2a3137;
}

.demo-3 .demo--current::before {
	background: #fc0;
}

.demo-3 .btn--back {
	color: #6c7d8c;
	color: #b5b5b5;
	top: 0.5em;
	right: 0.5em;
}

.demo-3 .btn--back .icon {
	transform: rotate(-90deg);
}

.demo-3 .codrops-header__deco {
	font-size: 2.25em;
	position: absolute;
	right: -0.575em;
	bottom: 2em;
	color: #fc0;
}

.demo-3 .codrops-header::after {
	content: '03';
	font-size: 5em;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: -40px;
	color: #fff;
}

.box {
	position: relative;
	width: 40vw;
	min-width: 300px;
	height: calc(90vh - 120px);
	height: 340px;
	margin-top: 100px;
	background-size: cover;
	background-position: 50% 0;    
	width: 1140px;
    max-width: 100%;
}

.box__title {
	font-size: 6em;
	position: absolute;
	bottom: 0;
	left: -1em;
	margin: 0;
	color: #fff;
	display: none;
}

.schedule ul {padding-left: 0;}
.schedule>ul {display: grid; font-size: 24px;}
.schedule h2 {display: inline-block; border-bottom: 2px solid white; padding-bottom: 5px; font-size: 28px;}

/*
#schedule .tabsnav__item .tabsnav__bar {
	transition: all .4s;
}
#schedule .tabsnav__item:hover .tabsnav__bar, #schedule .tabsnav__item:focus .tabsnav__bar {transform: scaleY(1.2);}
*/
@media (max-width: 1199px) {
	.box__title { left: 1rem; }
}

@media (max-width: 767px) {
	.box__title { font-size: 4em; }
}


/******** END SCHEDULE **********/