@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic);


/*  ==================
    2. RESET
    ==================  */

/** 2.1. Body reset ***************/

body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
}

/** 2.2. Gallery reset ************/

#maximize * {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif; /* Edit this if you want to match the font with your template design */
	vertical-align: baseline;
	line-height: normal;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#maximize > ol,
#maximize > ul,
#maximize > li {
	list-style: none;
}
/* Note: If you experience issues with reset above, please adjust the selectors and values according to your template/webgallery. When adjusting the reset is adviced to check up the elements on your page, as they might distort. */


/*  ==================
    3. FADE IN EFFECT
    ==================  */

/** 3.1. Preloader ************/

#preloader {
	width: 300px;
	height: 4px;
	overflow: hidden;
	background-color: #555; /* Preloader line color */
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 48%;
	bottom: auto;
	margin: 0 auto;
	/* Hide preloader after first image starts to fade in */
	-webkit-animation: hide 0.8s ease-out 1 forwards;
	-moz-animation: hide 0.8s ease-out 1 forwards;
	-ms-animation: hide 0.8s ease-out 1 forwards;
	-o-animation: hide 0.8s ease-out 1 forwards;
	animation: hide 0.8s ease-out 1 forwards;
}
@-webkit-keyframes hide {
	0%    { opacity: 1; }
	40%   { opacity: 1; }
	100%  { opacity: 0; }
}
@-moz-keyframes hide {
	0%    { opacity: 1; }
	40%   { opacity: 1; }
	100%  { opacity: 0; }
}
@-ms-keyframes hide {
	0%    { opacity: 1; }
	40%   { opacity: 1; }
	100%  { opacity: 0; }
}
@-o-keyframes hide {
	0%    { opacity: 1; }
	40%   { opacity: 1; }
	100%  { opacity: 0; }
}
@keyframes hide {
	0%    { opacity: 1; }
	40%   { opacity: 1; }
	100%  { opacity: 0; }
}
.preloader {
	width: 300px;
	height: 4px;
	background-color: #f0f0f0; /* Preloader background color */
	margin-top: 0;
	margin-left: -300px;
	/* Preloader bar animation // preload = animation name ; 0.5s = animation duration ; cubic-bezier = animation effect ; 1 = iteration count ; forwards = last keyframe value */
	-webkit-animation: preload 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) 1 forwards;
	-moz-animation: preload 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) 1 forwards;
	-ms-animation: preload 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) 1 forwards;
	-o-animation: preload 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) 1 forwards;
	animation: preload 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) 1 forwards;
}
@-webkit-keyframes preload {
	0%    { margin-left: 0; }
	100%  { margin-left: 300px; }
}
@-moz-keyframes preload {
	0%    { margin-left: 0; }
	100%  { margin-left: 300px; }
}
@-ms-keyframes preload {
	0%    { margin-left: 0; }
	100%  { margin-left: 300px; }
}
@-o-keyframes preload {
	0%    { margin-left: 0; }
	100%  { margin-left: 300px; }
}
@keyframes preload {
	0%    { margin-left: 0; }
	100%  { margin-left: 300px; }
}

/** 3.2. Gallery fade-in on page load ************/

.fade-in {
	opacity: 0;
	/* First image fade in animation // fadeIn = animation name ; 0.6s = animation duration ; ease-in = animation effect ; 1 = iteration count ; forwards = last keyframe value ; 1.2s = animation delay */
	-webkit-animation: fadeIn 0.6s ease-in 1 forwards 0.6s;
	-moz-animation: fadeIn 0.6s ease-in 1 forwards 0.6s;
	-ms-animation: fadeIn 0.6s ease-in 1 forwards 0.6s;
	-o-animation: fadeIn 0.6s ease-in 1 forwards 0.6s;
	animation: fadeIn 0.6s ease-in 1 forwards 0.6s;
}
@-webkit-keyframes fadeIn {
	0%    { opacity: 0; }
	100%  { opacity: 1; }
}
@-moz-keyframes fadeIn {
	0%    { opacity: 0; }
	100%  { opacity: 1; }
}
@-ms-keyframes fadeIn {
	0%    { opacity: 0; }
	100%  { opacity: 1; }
}
@-o-keyframes fadeIn {
	0%    { opacity: 0; }
	100%  { opacity: 1; }
}
@keyframes fadeIn {
	0%    { opacity: 0; }
	100%  { opacity: 1; }
}


/*  ==================
    4. GALLERY
    ==================  */

/** 4.1. Gallery styles ************/

#maximize {
	z-index: 2;
}
#maximize .gallery {
	width: 100%;
	height: 100%;
	position: absolute;
}
#maximize .fade {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	bottom: auto;
	background-size: cover;
	background-position: center center; 
	background-repeat: no-repeat;
	visibility: hidden;
	opacity: 0;
	z-index: 0;
	/* Transition effect for img */
	-webkit-transition: opacity 1s, visibility 1s;
	-moz-transition: opacity 1s, visibility 1s;
	-ms-transition: opacity 1s, visibility 1s;
	-o-transition: opacity 1s, visibility 1s;
	transition: opacity 1s, visibility 1s;
}
#maximize .gallery input {
	display: none;
}

/** 4.2. img ************/

.image-1 {
	background-image: url("../img/gallery/the-bay.001.png"); 
}
.image-2 {
	background-image: url("../img/gallery/the-bay.002.png"); 
}
.image-3 {
	background-image: url("../img/gallery/the-bay.003.png"); 
}
.image-4 {
	background-image: url("../img/gallery/the-bay.004.png"); 
}
.image-5 {
	background-image: url("../img/gallery/the-bay.005.png"); 
}
.image-6 {
	background-image: url("../img/gallery/the-bay.006.png"); 
}
.image-7 {
	background-image: url("../img/gallery/the-bay.007.png"); 
}
.image-8 {
	background-image: url("../img/gallery/the-bay.008.png"); 
}
.image-9 {
	background-image: url("../img/gallery/the-bay.009.png"); 
}
.image-10 {
	background-image: url("../img/gallery/the-bay.010.png"); 
}
.image-11 {
	background-image: url("../img/gallery/the-bay.011.png"); 
}
.image-12 {
	background-image: url("../img/gallery/the-bay.012.png"); 
}
.image-13 {
	background-image: url("../img/gallery/the-bay.013.png"); 
}
.image-14 {
	background-image: url("../img/gallery/the-bay.014.png"); 
}
.image-15 {
	background-image: url("../img/gallery/the-bay.015.png"); 
}
.image-16 {
	background-image: url("../img/gallery/the-bay.016.png"); 
}
.image-17 {
	background-image: url("../img/gallery/the-bay.017.png"); 
}
.image-18 {
	background-image: url("../img/gallery/the-bay.018.png"); 
}
.image-19 {
	background-image: url("../img/gallery/the-bay.019.png"); 
}
.image-20 {
	background-image: url("../img/gallery/the-bay.020.png"); 
}
.image-21 {
	background-image: url("../img/gallery/the-bay.021.png"); 
}
.image-22 {
	background-image: url("../img/gallery/the-bay.022.png"); 
}
.image-23 {
	background-image: url("../img/gallery/the-bay.023.png"); 
}
.image-24 {
	background-image: url("../img/gallery/the-bay.024.png"); 
}
.image-25 {
	background-image: url("../img/gallery/the-bay.025.png"); 
}
.image-26 {
	background-image: url("../img/gallery/the-bay.026.png"); 
}
.image-27 {
	background-image: url("../img/gallery/the-bay.027.png"); 
}
.image-28 {
	background-image: url("../img/gallery/the-bay.028.png"); 
}
.image-29 {
	background-image: url("../img/gallery/the-bay.029.png"); 
}
.image-30 {
	background-image: url("../img/gallery/the-bay.030.png"); 
}
.image-31 {
	background-image: url("../img/gallery/the-bay.031.png"); 
}
.image-32 {
	background-image: url("../img/gallery/the-bay.032.png"); 
}
.image-33 {
	background-image: url("../img/gallery/the-bay.033.png"); 
}
.image-34 {
	background-image: url("../img/gallery/the-bay.034.png"); 
}
.image-35 {
	background-image: url("../img/gallery/the-bay.035.png"); 
}
.image-36 {
	background-image: url("../img/gallery/the-bay.036.png"); 
}
.image-37 {
	background-image: url("../img/gallery/the-bay.037.png"); 
}
.image-38 {
	background-image: url("../img/gallery/the-bay.038.png"); 
}
.image-39 {
	background-image: url("../img/gallery/the-bay.039.png"); 
}
.image-40 {
	background-image: url("../img/gallery/the-bay.040.png"); 
}
.image-41 {
	background-image: url("../img/gallery/the-bay.041.png"); 
}
.image-42 {
	background-image: url("../img/gallery/the-bay.042.png"); 
}
.image-43 {
	background-image: url("../img/gallery/the-bay.043.png"); 
}
.image-44 {
	background-image: url("../img/gallery/the-bay.044.png"); 
}
.image-45 {
	background-image: url("../img/gallery/the-bay.045.png"); 
}
.image-46 {
	background-image: url("../img/gallery/the-bay.046.png"); 
}
.image-47 {
	background-image: url("../img/gallery/the-bay.047.png"); 
}
.image-48 {
	background-image: url("../img/gallery/the-bay.048.png"); 
}
.image-49 {
	background-image: url("../img/gallery/the-bay.049.png"); 
}
.image-50 {
	background-image: url("../img/gallery/the-bay.050.png"); 
}
.image-51 {
	background-image: url("../img/gallery/the-bay.051.png"); 
}
.image-52 {
	background-image: url("../img/gallery/the-bay.052.png"); 
}
.image-53 {
	background-image: url("../img/gallery/the-bay.053.png"); 
}
.image-54 {
	background-image: url("../img/gallery/the-bay.054.png"); 
}
.image-55 {
	background-image: url("../img/gallery/the-bay.055.png"); 
}
.image-56 {
	background-image: url("../img/gallery/the-bay.056.png"); 
}
.image-57 {
	background-image: url("../img/gallery/the-bay.057.png"); 
}
.image-58 {
	background-image: url("../img/gallery/the-bay.058.png"); 
}
.image-59 {
	background-image: url("../img/gallery/the-bay.059.png"); 
}
.image-60 {
	background-image: url("../img/gallery/the-bay.060.png"); 
}
.image-61 {
	background-image: url("../img/gallery/the-bay.061.png"); 
}
.image-62 {
	background-image: url("../img/gallery/the-bay.062.png"); 
}
.image-63 {
	background-image: url("../img/gallery/the-bay.063.png"); 
}
.image-64 {
	background-image: url("../img/gallery/the-bay.064.png"); 
}

/** 4.3. Titles and paragraphs *********/

#maximize .caption {
	position: absolute;
	bottom: 7%;
	left: 5%;
	right: auto;
	top: auto;
	margin: 0 auto;
	width: 70%;
	color: #fff;
}
#maximize .caption h3 {
	font-weight: 700;
	font-size: 1.1em;
	text-transform: uppercase;
	letter-spacing: 1px;
	/* Transition effect and delay of H3 */
	-webkit-transition: all 0.6s ease-in-out 0.5s;
	-moz-transition: all 0.6s ease-in-out 0.5s;
	-ms-transition: all 0.6s ease-in-out 0.5s;
	-o-transition: all 0.6s ease-in-out 0.5s;
	transition: all 0.6s ease-in-out 0.5s;
}
#maximize .caption p {
	font-size: 0.8em;
	padding-top: 4px;
	/* Transition effect and delay of description paragraph */
	-webkit-transition: all 0.6s ease-in-out 0.8s;
	-moz-transition: all 0.6s ease-in-out 0.8s;
	-ms-transition: all 0.6s ease-in-out 0.8s;
	-o-transition: all 0.6s ease-in-out 0.8s;
	transition: all 0.6s ease-in-out 0.8s;
}
.caption a {
	display: inline;
	color: #fff;
	text-decoration: underline;
}
.caption a:hover {
	text-decoration: none;
}
#maximize .caption h3,
#maximize .caption p {
	display: block;
	opacity: 0;
	visibility: hidden;
}
#maximize p.info {
	position: absolute;
	right: auto;
	left: 5%;
	top: auto;
	bottom: 3%;
	margin: 0 auto;
	text-align: center;
	font-size: 10px;
	color: #fff;
}

/** 4.4. Selectors *************/

/* Captions */
#maximize input#image-1:checked ~ .image-1 > .caption h3, /* <-- H3 title visibility for image 1 */
#maximize input#image-2:checked ~ .image-2 > .caption h3, /* <-- H3 title visibility for image 2 */
#maximize input#image-3:checked ~ .image-3 > .caption h3, /* <-- H3 title visibility for image 3 */
#maximize input#image-1:checked ~ .image-1 > .caption p,  /* <-- paragraph visibility for image 1 */
#maximize input#image-2:checked ~ .image-2 > .caption p,  /* <-- paragraph visibility for image 2 */
#maximize input#image-3:checked ~ .image-3 > .caption p,  /* <-- paragraph visibility for image 3 */
/* img */
#maximize input#image-1:checked ~ .image-1,
#maximize input#image-2:checked ~ .image-2,
#maximize input#image-3:checked ~ .image-3,
#maximize input#image-4:checked ~ .image-4,
#maximize input#image-5:checked ~ .image-5,
#maximize input#image-6:checked ~ .image-6,
#maximize input#image-7:checked ~ .image-7,
#maximize input#image-8:checked ~ .image-8,
#maximize input#image-9:checked ~ .image-9,
#maximize input#image-10:checked ~ .image-10,
#maximize input#image-11:checked ~ .image-11,
#maximize input#image-12:checked ~ .image-12,
#maximize input#image-13:checked ~ .image-13,
#maximize input#image-14:checked ~ .image-14,
#maximize input#image-15:checked ~ .image-15,
#maximize input#image-16:checked ~ .image-16,
#maximize input#image-17:checked ~ .image-17,
#maximize input#image-18:checked ~ .image-18,
#maximize input#image-19:checked ~ .image-19,
#maximize input#image-20:checked ~ .image-20,
#maximize input#image-21:checked ~ .image-21,
#maximize input#image-22:checked ~ .image-22,
#maximize input#image-23:checked ~ .image-23,
#maximize input#image-24:checked ~ .image-24,
#maximize input#image-25:checked ~ .image-25,
#maximize input#image-26:checked ~ .image-26,
#maximize input#image-27:checked ~ .image-27,
#maximize input#image-28:checked ~ .image-28,
#maximize input#image-29:checked ~ .image-29,
#maximize input#image-30:checked ~ .image-30,
#maximize input#image-31:checked ~ .image-31,
#maximize input#image-32:checked ~ .image-32,
#maximize input#image-33:checked ~ .image-33,
#maximize input#image-34:checked ~ .image-34,
#maximize input#image-35:checked ~ .image-35,
#maximize input#image-36:checked ~ .image-36,
#maximize input#image-37:checked ~ .image-37,
#maximize input#image-38:checked ~ .image-38,
#maximize input#image-39:checked ~ .image-39,
#maximize input#image-40:checked ~ .image-40,
#maximize input#image-41:checked ~ .image-41,
#maximize input#image-42:checked ~ .image-42,
#maximize input#image-43:checked ~ .image-43,
#maximize input#image-44:checked ~ .image-44,
#maximize input#image-45:checked ~ .image-45,
#maximize input#image-46:checked ~ .image-46,
#maximize input#image-47:checked ~ .image-47,
#maximize input#image-48:checked ~ .image-48,
#maximize input#image-49:checked ~ .image-49,
#maximize input#image-50:checked ~ .image-50,
#maximize input#image-51:checked ~ .image-51,
#maximize input#image-52:checked ~ .image-52,
#maximize input#image-53:checked ~ .image-53,
#maximize input#image-54:checked ~ .image-54,
#maximize input#image-55:checked ~ .image-55,
#maximize input#image-56:checked ~ .image-56,
#maximize input#image-57:checked ~ .image-57,
#maximize input#image-58:checked ~ .image-58,
#maximize input#image-59:checked ~ .image-59,
#maximize input#image-60:checked ~ .image-60,
#maximize input#image-61:checked ~ .image-61,
#maximize input#image-62:checked ~ .image-62,
#maximize input#image-63:checked ~ .image-63,
#maximize input#image-64:checked ~ .image-64
{
	visibility: visible;
	opacity: 1;
	z-index: 10;
}

/** 4.5. Navigation arrows ************/

#maximize .nav-arrows {
	position: absolute;
	right: 5%;
	bottom: 5%;
	left: auto;
	top: auto;
	margin: 0 auto;
	width: 20%;
	text-align: right;
	z-index: 999;
}
#maximize .nav-arrows label {
	font-size: 60px;
	cursor: pointer;
	color: #fff;
	padding: 0 10px;
	display: inline-block;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#maximize .nav-arrows label:hover,
#maximize .nav-arrows label:focus {
	color: #ccc;
}


/*  ==================
    5. HIDDEN MENU
    ==================  */

/** 5.1. Main styles ************/

#hidden-menu {
	z-index: 999;
	position: fixed;
	height: 100%;
}
#hidden-menu article {
	margin: 0;
	overflow: hidden;
	width: 20%;
	height: 100%;
	left: -20%;
	position: fixed;
	z-index: 9999;
	background: #282828;
	visibility: hidden;
	-webkit-backface-visibility: hidden; /* Webkit transition fix */
	/* Expanded menu animation */
	-webkit-transition: left 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0s, visibility 0.8s;
	-moz-transition: left 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0s, visibility 0.8s;
	-ms-transition: left 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0s, visibility 0.8s;
	-o-transition: left 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0s, visibility 0.8s;
	transition: left 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0s, visibility 0.8s;
}
#hidden-menu input#menu-open:checked ~ article.expanded {
	left: 0;
	visibility: visible;
}
#hidden-menu input#menu-close:checked ~ article.expanded {
	left: -20%;
	visibility: hidden;
}

/** 5.2. Open/close label ********/

#hidden-menu label.open,
#hidden-menu label.close {
	cursor: pointer;
	font-weight: 300;
	font-size: 40px;
	text-align: center;
	width: 36px;
	top: 42%;
	padding: 10px 0;
	position: absolute;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#hidden-menu label.open {
	color: #999;
	background: #ff0;
	left: 0;
}
#hidden-menu label.close {
	color: #222;
	background: silver;
	right: 0;
}
#hidden-menu label.open:hover{
	background: silver;
	color: #fff;
}
#hidden-menu label.close:hover{
	background: #666;
}
#hidden-menu input#menu-close:checked ~ label.open {
	-webkit-animation: open 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) 1 forwards;
	-moz-animation: open 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) 1 forwards;
	-ms-animation: open 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) 1 forwards;
	-o-animation: open 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) 1 forwards;
	animation: open 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) 1 forwards;
}
@-webkit-keyframes open {
	0%     { left: -100px; }
	100%   { left: 0; }
}
@-moz-keyframes open {
	0%     { left: -100px; }
	100%   { left: 0; }
}
@-ms-keyframes open {
	0%     { left: -100px; }
	100%   { left: 0; }
}
@-o-keyframes open {
	0%     { left: -100px; }
	100%   { left: 0; }
}
@keyframes open {
	0%     {left: -100px; }
	100%   {left: 0; }
}
#hidden-menu input#menu-open:checked ~ article.expanded > label.close {
	-webkit-animation: close 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) 1 forwards;
	-moz-animation: close 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) 1 forwards;
	-ms-animation: close 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) 1 forwards;
	-o-animation: close 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) 1 forwards;
	animation: close 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) 1 forwards;
}
@-webkit-keyframes close {
	0%     { right: -100px; }
	100%   { right: 0; }
}
@-moz-keyframes close {
	0%     { right: -100px; }
	100%   { right: 0; }
}
@-ms-keyframes close {
	0%     { right: -100px; }
	100%   { right: 0; }
}
@-o-keyframes close {
	0%     { right: -100px; }
	100%   { right: 0; }
}
@keyframes close {
	0%     {right: -100px; }
	100%   {right: 0; }
}
#hidden-menu input {
	display: none;
}

/** 5.3. Menu elements ********/

#hidden-menu article .title {
	display: block;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	margin: 20%;
	font-weight: 700;
	position: relative;
}
#hidden-menu article .links {
	border-top: solid 1px #fff;
	padding: 20%;
	display: block;
}
#hidden-menu article .links a {
	display: inline-block;
	width: 100%;
	font-size: 13px;
	font-weight: 300;
	text-decoration: none;
	color: white;
	margin: 7% 0;
	clear: both;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
}
#hidden-menu article .links a:hover {
	color: #fff;
}
#hidden-menu article .links a span {
	padding-right: 6%;
}
#hidden-menu input#menu-open:checked ~ article.expanded > .links a:nth-child(1) { /* <-- Transition and animation for menu link 1 */
	-webkit-transition: opacity 0.6s ease-in-out 0.6s, color 0.2s;
	-moz-transition: opacity 0.6s ease-in-out 0.6s, color 0.2s;
	-ms-transition: opacity 0.6s ease-in-out 0.6s, color 0.2s;
	-o-transition: opacity 0.6s ease-in-out 0.6s, color 0.2s;
	transition: opacity 0.6s ease-in-out 0.6s, color 0.2s;
}
#hidden-menu input#menu-open:checked ~ article.expanded > .links a:nth-child(2) { /* <-- Transition and animation for menu link 2 */
	-webkit-transition: opacity 0.6s ease-in-out 0.7s, color 0.2s;
	-moz-transition: opacity 0.6s ease-in-out 0.7s, color 0.2s;
	-ms-transition: opacity 0.6s ease-in-out 0.7s, color 0.2s;
	-o-transition: opacity 0.6s ease-in-out 0.7s, color 0.2s;
	transition: opacity 0.6s ease-in-out 0.7s, color 0.2s;
}
#hidden-menu input#menu-open:checked ~ article.expanded > .links a:nth-child(3) { /* <-- Transition and animation for menu link 3 */
	-webkit-transition: opacity 0.6s ease-in-out 0.8s, color 0.2s;
	-moz-transition: opacity 0.6s ease-in-out 0.8s, color 0.2s;
	-ms-transition: opacity 0.6s ease-in-out 0.8s, color 0.2s;
	-o-transition: opacity 0.6s ease-in-out 0.8s, color 0.2s;
	transition: opacity 0.6s ease-in-out 0.8s, color 0.2s;
}
#hidden-menu input#menu-open:checked ~ article.expanded > .links a:nth-child(4) { /* <-- Transition and animation for menu link 4 */
	-webkit-transition: opacity 0.6s ease-in-out 0.9s, color 0.2s;
	-moz-transition: opacity 0.6s ease-in-out 0.9s, color 0.2s;
	-ms-transition: opacity 0.6s ease-in-out 0.9s, color 0.2s;
	-o-transition: opacity 0.6s ease-in-out 0.9s, color 0.2s;
	transition: opacity 0.6s ease-in-out 0.9s, color 0.2s;
}
#hidden-menu input#menu-open:checked ~ article.expanded > .links a:nth-child(5) { /* <-- Transition and animation for menu link 5 */
	-webkit-transition: opacity 0.6s ease-in-out 1s, color 0.2s;
	-moz-transition: opacity 0.6s ease-in-out 1s, color 0.2s;
	-ms-transition: opacity 0.6s ease-in-out 1s, color 0.2s;
	-o-transition: opacity 0.6s ease-in-out 1s, color 0.2s;
	transition: opacity 0.6s ease-in-out 1s, color 0.2s;
}
#hidden-menu input#menu-open:checked ~ article.expanded > .links a:nth-child(6) { /* <-- Transition and animation for menu link 6 */
	-webkit-transition: opacity 0.6s ease-in-out 1.1s, color 0.2s;
	-moz-transition: opacity 0.6s ease-in-out 1.1s, color 0.2s;
	-ms-transition: opacity 0.6s ease-in-out 1.1s, color 0.2s;
	-o-transition: opacity 0.6s ease-in-out 1.1s, color 0.2s;
	transition: opacity 0.6s ease-in-out 1.1s, color 0.2s;
}
#hidden-menu article p {
	color: #ffffff;
	position: absolute;
	bottom: 5%;
	font-size: 11px;
	padding: 0 20%;
}
#hidden-menu .pagination {
	display: block;
	width: 100%;
	padding: 20%;
}
#hidden-menu .pagination label {
	font-size: 13px;
	color: #fff;
	cursor: pointer;
	margin-right: 5%;
}
#hidden-menu .pagination label:hover {
	color: #fff;
}
#hidden-menu input#menu-open:checked ~ article.expanded > .pagination label { /* <-- Transition and animation pagination labels. Note: If you will add or remove any menu links, adjust the animation delay of labels here (currently is set to: 1.3s) */
	-webkit-transition: opacity 0.6s ease-in-out 1.3s, color 0.2s;
	-moz-transition: opacity 0.6s ease-in-out 1.3s, color 0.2s;
	-ms-transition: opacity 0.6s ease-in-out 1.3s, color 0.2s;
	-o-transition: opacity 0.6s ease-in-out 1.3s, color 0.2s;
	transition: opacity 0.6s ease-in-out 1.3s, color 0.2s;
}
#hidden-menu article .title,
#hidden-menu article .links a,
#hidden-menu article p,
#hidden-menu .pagination label {
	opacity: 0;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
#hidden-menu input#menu-open:checked ~ article.expanded > .title, 
#hidden-menu input#menu-open:checked ~ article.expanded > .links a,
#hidden-menu input#menu-open:checked ~ article.expanded > p,
#hidden-menu input#menu-open:checked ~ article.expanded > .pagination label {
	opacity: 1;
}


/*  ==================
    6. MEDIA QUERIES
    ==================  */

/** 6.1. Max width 1366px ************/

@media screen and (max-width: 1366px) {
	#hidden-menu article {
		width: 30%;
	}
	#hidden-menu input#menu-close:checked ~ article.expanded {
		left: -30%;
	}
}

/** 6.2. Max width 1024px ************/

@media screen and (max-width: 1024px) {
	.image-1 {
	background-image: url("../img/gallery/the-bay.001.png"); 
}
.image-2 {
	background-image: url("../img/gallery/the-bay.002.png"); 
}
.image-3 {
	background-image: url("../img/gallery/the-bay.003.png"); 
}
.image-4 {
	background-image: url("../img/gallery/the-bay.004.png"); 
}
.image-5 {
	background-image: url("../img/gallery/the-bay.005.png"); 
}
.image-6 {
	background-image: url("../img/gallery/the-bay.006.png"); 
}
.image-7 {
	background-image: url("../img/gallery/the-bay.007.png"); 
}
.image-8 {
	background-image: url("../img/gallery/the-bay.008.png"); 
}
.image-9 {
	background-image: url("../img/gallery/the-bay.009.png"); 
}
.image-10 {
	background-image: url("../img/gallery/the-bay.010.png"); 
}
.image-11 {
	background-image: url("../img/gallery/the-bay.011.png"); 
}
.image-12 {
	background-image: url("../img/gallery/the-bay.012.png"); 
}
.image-13 {
	background-image: url("../img/gallery/the-bay.013.png"); 
}
.image-14 {
	background-image: url("../img/gallery/the-bay.014.png"); 
}
.image-15 {
	background-image: url("../img/gallery/the-bay.015.png"); 
}
.image-16 {
	background-image: url("../img/gallery/the-bay.016.png"); 
}
.image-17 {
	background-image: url("../img/gallery/the-bay.017.png"); 
}
.image-18 {
	background-image: url("../img/gallery/the-bay.018.png"); 
}
.image-19 {
	background-image: url("../img/gallery/the-bay.019.png"); 
}
.image-20 {
	background-image: url("../img/gallery/the-bay.020.png"); 
}
.image-21 {
	background-image: url("../img/gallery/the-bay.021.png"); 
}
.image-22 {
	background-image: url("../img/gallery/the-bay.022.png"); 
}
.image-23 {
	background-image: url("../img/gallery/the-bay.023.png"); 
}
.image-24 {
	background-image: url("../img/gallery/the-bay.024.png"); 
}
.image-25 {
	background-image: url("../img/gallery/the-bay.025.png"); 
}
.image-26 {
	background-image: url("../img/gallery/the-bay.026.png"); 
}
.image-27 {
	background-image: url("../img/gallery/the-bay.027.png"); 
}
.image-28 {
	background-image: url("../img/gallery/the-bay.028.png"); 
}
.image-29 {
	background-image: url("../img/gallery/the-bay.029.png"); 
}
.image-30 {
	background-image: url("../img/gallery/the-bay.030.png"); 
}
.image-31 {
	background-image: url("../img/gallery/the-bay.031.png"); 
}
.image-32 {
	background-image: url("../img/gallery/the-bay.032.png"); 
}
.image-33 {
	background-image: url("../img/gallery/the-bay.033.png"); 
}
.image-34 {
	background-image: url("../img/gallery/the-bay.034.png"); 
}
.image-35 {
	background-image: url("../img/gallery/the-bay.035.png"); 
}
.image-36 {
	background-image: url("../img/gallery/the-bay.036.png"); 
}
.image-37 {
	background-image: url("../img/gallery/the-bay.037.png"); 
}
.image-38 {
	background-image: url("../img/gallery/the-bay.038.png"); 
}
.image-39 {
	background-image: url("../img/gallery/the-bay.039.png"); 
}
.image-40 {
	background-image: url("../img/gallery/the-bay.040.png"); 
}
.image-41 {
	background-image: url("../img/gallery/the-bay.041.png"); 
}
.image-42 {
	background-image: url("../img/gallery/the-bay.042.png"); 
}
.image-43 {
	background-image: url("../img/gallery/the-bay.043.png"); 
}
.image-44 {
	background-image: url("../img/gallery/the-bay.044.png"); 
}
.image-45 {
	background-image: url("../img/gallery/the-bay.045.png"); 
}
.image-46 {
	background-image: url("../img/gallery/the-bay.046.png"); 
}
.image-47 {
	background-image: url("../img/gallery/the-bay.047.png"); 
}
.image-48 {
	background-image: url("../img/gallery/the-bay.048.png"); 
}
.image-49 {
	background-image: url("../img/gallery/the-bay.049.png"); 
}
.image-50 {
	background-image: url("../img/gallery/the-bay.050.png"); 
}
.image-51 {
	background-image: url("../img/gallery/the-bay.051.png"); 
}
.image-52 {
	background-image: url("../img/gallery/the-bay.052.png"); 
}
.image-53 {
	background-image: url("../img/gallery/the-bay.053.png"); 
}
.image-54 {
	background-image: url("../img/gallery/the-bay.054.png"); 
}
.image-55 {
	background-image: url("../img/gallery/the-bay.055.png"); 
}
.image-56 {
	background-image: url("../img/gallery/the-bay.056.png"); 
}
.image-57 {
	background-image: url("../img/gallery/the-bay.057.png"); 
}
.image-58 {
	background-image: url("../img/gallery/the-bay.058.png"); 
}
.image-59 {
	background-image: url("../img/gallery/the-bay.059.png"); 
}
.image-60 {
	background-image: url("../img/gallery/the-bay.060.png"); 
}
.image-61 {
	background-image: url("../img/gallery/the-bay.061.png"); 
}
.image-62 {
	background-image: url("../img/gallery/the-bay.062.png"); 
}
.image-63 {
	background-image: url("../img/gallery/the-bay.063.png"); 
}
.image-64 {
	background-image: url("../img/gallery/the-bay.064.png"); 
}
	}
	
}

/** 6.3. Max width 800px and Max height 640px ************/

@media screen and (max-width: 800px), (max-height: 640px) {
	#hidden-menu article {
		width: 50%;
	}
	#hidden-menu input#menu-close:checked ~ article.expanded {
		left: -50%;
	}
}

/** 6.4. Max height 800px ************/

@media screen and (max-height: 800px) {
	#hidden-menu article .links,
	#hidden-menu .pagination {
		padding: 10% 20%;
	}
	#hidden-menu article .title {
		margin: 10% 20%;
	}
}

/** 6.5. Max width 480px and Max height 480px ************/

@media screen and (max-width: 480px), (max-height: 480px) {
	#hidden-menu article {
		width: 100%;
	}
	#hidden-menu input#menu-close:checked ~ article.expanded {
		left: -100%;
	}
	#maximize .caption {
		bottom: 10%;
		width: 60%;
	}
	#maximize .caption h3 {
		font-size: 0.9em;
	}
	#maximize .caption p {
		font-size: 0.7em;
	}
	#maximize .nav-arrows {
		width: 30%;
		bottom: 10%;
	}
}

/** 6.6. Max height 640px ************/

@media screen and (max-height: 640px) {
	#hidden-menu article .links {
		padding: 8%;
	}
	#hidden-menu article .links a {
		width: auto;
		margin-right: 10px;
		overflow: visible;
		padding: 0;
		display: block;
		float: left;
		margin: 3% 5% 3% 0;
		clear: none;
	}
	#hidden-menu article .title {
		margin: 8%;
	}
	#hidden-menu article p {
		padding: 0 8%;
	}
	#hidden-menu article .pagination {
		padding: 15% 10%;
	}
}

/** 6.7. Max height 480px ************/

@media screen and (max-height: 480px) {
	#hidden-menu article .links,
	#hidden-menu .pagination {
		padding: 5% 10%;
	}
	#hidden-menu article .title {
		margin: 5% 10%;
	}
}