/* Standard width of columns is 100% */
[class *= "col-"] {
	width: 100%;
	float: left;
	padding: 2px 0px;
}

/* Column widths for PCs */
@media only screen and (min-width: 768px) {
	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.col-3 {width: 25%;}
	.col-4 {width: 33.33%;}
	.col-5 {width: 41.66%;}
	.col-6 {width: 50%;}
	.col-7 {width: 58.33%;}
	.col-8 {width: 66.66%;}
	.col-9 {width: 75%;}
	.col-10 {width: 83.33%;}
	.col-11 {width: 91.66%;}
	.col-12 {width: 100%;}
	[class *= "col-"] {padding: 10px 0px;}
	
	.mobileNav{
		display: none;
	}
}

body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	margin-top: calc(1vh + 30px);
	background: url("https://www.sis.gov.uk/images/background.png") repeat fixed;
	max-width: 100vw;
}

h1{
	font-size: 6em;
	font-weight: 200;
	border-bottom: 4px black solid;
	text-align: center;
	margin: 0;
	min-height: 0.5em;
}

.dates{
	font-size: 2.5em;
	text-align: center;
	text-transform: uppercase;
}

.trip{
	background-color: rgba(28, 28, 28, .85); 
	color: white;
	padding: calc( 30px + 2.5em) 0 1.5em 0;
}
	.trip.alt{
		background-color: transparent;
		color: rgba(28,28,28,1);
	}
.content{
	padding: 1.5em 0;
	width: 84vw;
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.row::after {
  content: "";
  clear: both;
  display: table;
  margin: 0px;
}

.footer {
	background-color: #1c1c1c;
	color: #DCDEE2;
}

.footer td {
	color: #DCDEE2;
}
nav{
	Background-color: #1c1c1c;
	width: 100vw;
	max-width: 100vw;
	margin: 0;
	position: fixed;
	top: 0;
	height: calc( 30px + 1em ) ;
}
	.navList{
		margin: 0 7.5vw;
		list-style-type: none;
		display: flex;
		height: calc(30px + 1em);
		padding: 0;
	}
	.navElem{
		display: inline-block;
		Background-color: #1c1c1c;
		color: white;
		margin: 0;
		padding: 15px 0;
		width: calc( (85vw / 6) - 4px);
		text-align: center;
        transition: all .3s ease;
        transform-style: preserve-3d;
        transform: translateZ( calc(15px + 0.5em) );
	}
		.navWrap.first{
			border-left: 2px solid white;
		}
	.navWrap{
		cursor: pointer;
		max-width: calc( (85vw / 6) - 4px);
		border-right: 2px solid white;
	}
		.navWrap:hover .navCont{
			transform-style: preserve-3d;
			transition: all ease .3s;
			transform: rotateX(90deg);
		}
	.navCont{
		height: calc(30px + 1em);
		max-width: calc( (85vw / 6) - 4px);
		display: inline-block;
		font-size: 1em;
		line-height: 1em;
	}
	.rotator{
		transform: rotateX(-90deg);
		padding: 15px 0;
		width: calc( 85vw / 6);
		text-align: center;
		position: absolute;
		bottom: calc( -30px - 1em );
		background-color: white;
		color: #1c1c1c;
		font-weight: 700;
	}
.logo{
	max-width: 100vw;
	margin-top: -15%;
}
.sponsors{
	display: block;
	width: 40vw;
	margin-left: auto;
	margin-right: auto;
}
.imgLogo{
	padding: 9.5%;
	display: inline-block;
	vertical-align: middle;
}
a.navWrap{
	margin: 0;
}

/* BEGIN RESPONSIVE CODE FOR MOBILE DEVICES */

@media only screen and (max-width: 768px) {
	.mobileNav{
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		border-bottom-right-radius: 20%;
		width: 12vw;
		height: 12vw;
		cursor: pointer;
		background: #69e781 url("./menu-button.svg") no-repeat fixed 2vw 2vw;
		background-size: 8vw 8vw;
	}
		.mobileNav:focus + nav{
			left: 0;
		}
	nav{
		height: auto;
		left: -100vw;
		transition: 0.5s ease all;
	}
		nav .navList{
			height: auto;
			margin: 0;
			display: block;
		}
		nav .rotator{
			display: none;
		}
		nav .navElem{
			display: block;
			width: 100vw;
			transform: none;
		}
		nav .navCont{
			max-width: 100vw;
		}
		nav .navWrap{
			border: none;
			max-width: 100vw;
		}
			nav .navWrap.first{
				border: none;
			}
				nav .navWrap:hover .navCont{
					transform: none;
				}
	h1{
		font-size: 3em;
	}
	.sponsors{
		width: 80vw;
	}
	.footer table{
		text-align: center;
	}
	.trip{
		padding: 1.5em 0;
	}
}
@media only screen and (max-width: 260px){
	.imgLogo{
		padding: 10% auto;
		width: 80% !important;
	}
}