@import url("filter-menu.css");
/* ====================================================================================================
 * Fonts
   ==================================================================================================== */

@font-face {
    font-family: 'nexa_rust_script';
    src: url('../assets/fonts/nexaRustScript/nexarustscriptl-1-webfont.woff2') format('woff2'),
         url('../assets/fonts/nexaRustScript/nexarustscriptl-1-webfont.woff') format('woff'),
         url('../assets/fonts/nexaRustScript/nexarustscriptl-1-webfont.ttf') format('truetype'),
         url('../assets/fonts/nexaRustScript/nexarustscriptl-1-webfont.svg#nexa_rust_script_l1') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family:'Montserrat-Regular';
    src:url(../assets/fonts/montseratt/Montserrat-Regular.eot);
    src:url(../assets/fonts/montseratt/Montserrat-Regular.eot?#iefix) format("embedded-opentype"),url(../assets/fonts/montseratt/Montserrat-Regular.ttf) format("truetype"),url(../assets/fonts/montseratt/Montserrat-Regular.svg#Montserrat-Regular) format("svg");
}

/* ====================================================================================================
 * Fonts End
   ==================================================================================================== */




/* ====================================================================================================
    * GENERAL STYLES
  ==================================================================================================== */
body {
    -webkit-font-smoothing: antialiased;
    background: #303A56;
}

h1 {
    margin: 0;
    font-weight: normal;
}

h2 {
    font-family: 'Montserrat-Regular';
    font-weight: normal;
}

h3 {
  font-weight: normal;
}

a {
    text-decoration: none;
    color: #E0624C;
}

ul {
    margin: 0;
    list-style: none;
}

.noFloat {
    float: none;
}

input {
    border-radius: 0;
      -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.button {
    margin: 0 auto;
    width: 200px;
    background: #DD5E4E;
    transition: all .2s ease;
    color: #FFFAF3;
    border: 1px solid transparent;
    padding: 20px;
    cursor: pointer;
    text-align: center;
}

.button p {
    font-family: 'Montserrat-Regular','sans-serif';
    margin: 0;
}

.button:hover {
    background: transparent;
    color: #DD5E4E;
    border: 1px solid #DD5E4E;
}

.navLinks li a.current {
	color: #DD5E4E;
}

.clear {
	clear:both;
}

hr {
	border-top: 1px solid #FFFAF3;
	border-bottom: none;
	border-left: none;
	border-right: none;
	margin: 50px 12%;
}

p.notice {
	color: #FFFAF3;
	font-family: 'Montserrat-Regular','sans-serif';
}

/* Naming convention for button classes: [background-color]-[border-color] */

.button.transparent-blue {
   background: transparent;
   border: 1px solid #303A56;
   color: #303A56;
}

.button.blue-blue {
   background: #303A56;
   border: 1px solid #303A56;
}

.button.transparent-orange {
    background: transparent;
    border: 1px solid #DD5E4E;
    color: #DD5E4E;
}

.button.transparent-white {
   background: transparent;
   border: 1px solid #FFFAF3;
}

.button.white-blue {
   background: #FFFAF3;
   border: 1px solid #FFFAF3;
   color: #303A56;
   width: auto;
   text-transform: uppercase;
}

/* Turn off hover on mobile */
@media all and (min-width: 765px){
  .button.transparent-blue:hover {
     border: 1px solid #E0624C;
     color: #E0624C;
  }

  .button.blue-blue:hover {
     border: 1px solid #E0624C;
     background: #E0624C;
     color: #FFFAF3;
  }

  .button.transparent-orange:hover {
    border: 1px solid #DD5E4E;
    background: #DD5E4E;
    color: #FFFAF3;
  }

  .button.transparent-white:hover {
     border: 1px solid #E0624C;
  }

	.button.white-blue:hover {
		background: transparent;
		border: 1px solid #FFFAF3;
		color: #FFFAF3;
	}
}

/* End of button classes */

/*** Loading Image ***/
div#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    z-index: 100;
    text-align: center;
    background: #D6E4EE;
}

div#loading img#loading-image {
    position: absolute;
    top: 270px;
    left: 43%;
    z-index: 101;
}

/* Search-bar */

.searchbar-wrapper{
  background-color: #858894;
  width: 100%;
  height: 69px;
  margin-top: 69px;
}

.searchbar-wrapper>form{
  height: 69px;
}

.searchbar-wrapper>form>input{
  z-index: 998;
  position: relative;
  border: none;
  text-align: left;
  height: 100%;
  padding: 0 35px;
  font-size: 20px;
  -webkit-transition: font 0.5s ease;
  -moz-transition: font 0.5s ease;
  -o-transition: font 0.5s ease;
  -ms-transition: font 0.5s ease;
  transition: font 0.5s ease;
}

@media all and (max-width: 680px){
  .searchbar-wrapper>form>.search{
    padding: 20px 20px;
    font-size: 22px;
    -webkit-transition: font 0.5s ease;
    -moz-transition: font 0.5s ease;
    -o-transition: font 0.5s ease;
    -ms-transition: font 0.5s ease;
    transition: font 0.5s ease;
    text-overflow: ellipsis;
  }
  .searchbar-wrapper>form>input{
    -webkit-padding: 0;
  }
}

@media all and (max-width: 565px){
  .searchbar-wrapper>form>.search{
    font-size: 16px;
  }
}

@media all and (max-width: 500px){
  .searchbar-wrapper>form>.search{
    font-size: 12px;
  }
}

.search {
  background-color: rgba(234, 230, 227, 1.0);
  box-sizing: border-box;
  color: #303A56;
  width: calc(100% - 91px);
  float: left;
}

.search::-webkit-input-placeholder {
    color: #303A56;
}

.search:-moz-placeholder {
 /* Firefox 18- */
    color: #303A56;
}

.search::-moz-placeholder {
  /* Firefox 19+ */
    color: #303A56;
}

.search:-ms-input-placeholder {
    color: #303A56;
}

.submit {
  color: #FFFAF3;
  height: 68px;
  background-color: #50566B;
  -webkit-appearance: none;
  border-radius: 0;
  border: 0;
  margin-bottom: -1px;
}

/* End of search-bar */

/***************** TILE GRID *****************/
/* Used on pages: Identify, Browse, */

section.grid {
   background: #FFFAF3;
}

ul.grid {
   padding: 0;
}

.gridItem {
   display: inline-block;
   margin: 10px;
   height: 250px;
   width: 250px;
   position: relative;
   border: 1px solid rgba(48, 58, 86, 0.75);
   cursor: pointer;
   overflow: hidden;
   transition: all 1s ease;
   text-align: center;
}

.gridItemTitle {
   position: absolute;
   bottom: 0;
   width: 100%;
   background: rgba(48, 58, 86, 0.75);
   cursor: pointer;
   opacity: 1;
   transition: all 1s ease;
}

.gridItemTitle h3 {
   text-align: center;
   vertical-align: middle;
   color: #FFFAF3;
   font-family: 'Montserrat-Regular';
   font-size: 16px;
   padding: 5px;
   cursor: pointer;
   transition: all 1s ease;
}

.gridItemTitle h3:hover {
   color: #E0624C;
}

.mediumTitle {
  font-size: 14px!important;
}

.smallTitle {
  font-size: 12px!important;
}

figure , figcaption {
   position: relative;
   display: block;
   margin: 0;
}

.gridItem figure {
   position: relative;
   overflow: hidden;
}

.gridItem figure img {
   width: 100%;
   height: 100%;
   -webkit-transition: all 300ms ease-in-out;
   transition: all 300ms ease-in-out;
}

.gridItem figure:hover img, .gridItem figure:focus img {
   -webkit-transform: scale(1.1);
   -ms-transform: scale(1.1);
   transform: scale(1.1);
}

.gridItem figcaption {
   position: absolute;
   top: 0;
   left: 0;
   width: 250px;
   height: 250px;
   text-align: center;
   font-size: 15px;
   opacity: 0;
   vertical-align: middle;
   -webkit-transition: all 300ms ease-in-out;
   transition: all 300ms ease-in-out;
   background: rgba(48, 58, 86, 0.95);
}

.gridItem figcaption a {
   color: #FFFAF3;
}

.gridItem figcaption a:hover, .gridItem figcaption a:focus {
   color: #FFFAF3;
}

.gridItem figure:hover figcaption, .gridItem figure:focus figcaption {
   opacity: 1;
}

.visible {
   opacity: 1;
}

.gridItem figure.cs-hover figcaption {
   opacity: 1;
}

.gridItem figcaption i {
   font-size: 35px;
}

.gridItem figcaption .caption-content {
   position: absolute;
   top: 55%;
   left: 50%;
   margin-top: -70px;
   margin-left: -100px;
   width: 200px;
   -webkit-transform: translate(0px, 15px);
   -ms-transform: translate(0px, 15px);
   transform: translate(0px, 15px);
   -webkit-transition: all 300ms ease-in-out;
   transition: all 300ms ease-in-out;
}

.gridItem figure:hover figcaption .caption-content, .gridItem figure:focus figcaption .caption-content {
   -webkit-transform: translate(0px, 0px);
   -ms-transform: translate(0px, 0px);
   transform: translate(0px, 0px);
}

.view {
   position: fixed;
   top: 30px;
   left: 32px;
   font-size: 13px;
   font-family: 'Montserrat-Regular', sans-serif;
   padding: 10px 0 0 0;
   font-weight: 300;
   color: #FFFAF3;
   margin: 100px 0 0 0;
   border-top: 1px solid #FFFAF3;
   transition: all .5s ease;
}

.view:hover {
   color: #E0624C;
   border-top: 1px solid #E0624C;
}

.caption {
   font-size: 11px;
   line-height: 15px;
   font-family: 'Montserrat-Regular', sans-serif;
   padding-bottom: 10px;
   font-weight: 300;
   color: #FFFAF3;
   margin: -40px 0 0 0;
   position: absolute;
   top: 50%;
   text-overflow: ellipsis;
   height: 140px;
   overflow: hidden;
   width: 100%;
}

.pageHead {
	font-family: 'Montserrat-Regular';
	font-size: 45px;
	text-align: center;
	color: #242B46;
	text-transform: uppercase;
	padding: 10% 10% 0 10%;
}

@media (max-width: 500px) {
	.pageHead {
		font-size: 26px;
	}
}

/***************** END OF GRID *****************/

/***************** MODAL *****************/

.modalOverlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(48, 58, 86, 0.95);
	transition: all 0.3s;
}

.modalCont {
	position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    max-width: 630px;
    min-width: 320px;
    height: auto;
    z-index: 2000;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
}

.showMod .inner {
	visibility: visible;
	opacity: 1;
}

.modalCont.showMod {
	visibility: visible;
}

.showMod~ .modalOverlay {
	opacity: 1;
	visibility: visible;
}

.modalCont .inner {
	-webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-100px) translateX(30%) rotateY(-90deg);
    -moz-transform: translateZ(-100px) translateX(30%) rotateY(-90deg);
    -ms-transform: translateZ(-100px) translateX(30%) rotateY(-90deg);
    transform: translateZ(-100px) translateX(30%) rotateY(-90deg);
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    transform-origin: 100% 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background: #FFFAF3;
    position: relative;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
    border: 1px solid #242B46;

}

.showMod .inner {
	-webkit-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-moz-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-ms-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	transform: translateZ(0px) translateX(0%) rotateY(0deg);
	opacity: 1;
}

.modalCont .inner h3 {
	margin: 0;
	padding: 15px 20px;
	text-align: left;
	font-size: 20px;
	border-bottom: 1px solid #242B46;
	font-family: 'Montserrat-Regular', sans-serif;
}

.modalCont .inner h3 span {
	float: right;
	text-transform: uppercase;
	font-size: 14px;
	cursor: pointer;
	line-height: 26px;
}

.modalCont .inner div {
	padding: 10px;
	margin: 0;
}




/***************** END MODAL *****************/

/* =====================================================================================================
 * GENERAL STYLES END
   ===================================================================================================== */




/* =====================================================================================================
 * Header
   ===================================================================================================== */
#header {
    background: #303A56;
    margin: 0;
    width: 100%;
    position: fixed;
    top: 0;
    padding: 0;
    z-index: 999;
}

.logo {
    padding: 20px;
}

.logo,.nav {
    display: inline-block;
    vertical-align: middle;
}

.nav {
    float: right;
    display: inline;
    right: 0;
}

.navLinks {
    padding: 25px 20px;
    display: inline-block;
    position: relative;
    right: 0;
}

.navLinks li {
    list-style: none;
    font-size: 13px;
    display: inline-block;
    padding: 0 10px;
    font-family: 'Montserrat-Regular','sans-serif';
    text-transform: uppercase;
}

.navLinks a {
    color: #FFFAF3;
    transition: all .5s ease;
}

.navLinks a:hover {
    color: #E0624C;
}


/* ======================
 * PURE CSS MENU */
.toggle,[id^=drop] {
    display: none;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

[id^=drop] {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.userInfo {
	background: #474f67;
	padding: 10px 20px;
	overflow: hidden;
	font-family:'Montserrat-Regular';
}

.userInfo .userLinks {
	float: right;
}

.userInfo .userLinks div {
	display: inline-block;
}

.userInfo .userLinks div * {
	margin-left: 15px;
}

.userInfo .userLinks span {
	color: #fff;
	font-size: 12px;
}

.userInfo .userLinks a {
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
}

.loginLinks {
	display: none;
}

@media all and (min-width : 915px) {
    .navLinks {
        display: inline-block!important;
    };
}

@media all and (max-width : 915px) {
    .clicked {
        color: #E0624C!important;
    }

    .toggle + a,.navLinks {
        display: none;
    }

    .toggle {
        display: block;
        position: relative;
        float: right;
        top: 0;
        right: 0;
        padding: 25px;
        color: #FFF;
        font-size: 13px;
        text-decoration: none;
        border: none;
        z-index: 9999;
        font-family: 'Montserrat-Regular','sans-serif';
        cursor: pointer;
    }

    [id^=drop]:checked + ul {
        display: block;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .nav {
        float: none;
    }

    .navLinks {
        padding: 0 0 50px;
		max-height: 380px;
		overflow: auto;
    }

    .navLinks li {
        padding: 10px 0;
    }

    nav ul li {
        display: block;
        width: 100%;
        text-align: center;
    }
    .adminStart {
		border-top: 1px solid rgba(255,250,243,.1);
		margin-top: 60px;
	    padding-top: 60px !important;
	}
}

@media all and (max-width: 350px) {
	.navLinks {
        padding: 0 0 50px;
		max-height: 270px;
		overflow: auto;
    }
}

@media all and (max-height : 400px) {
    .navLinks {
        height: 200px;
        overflow: scroll;
    }
}

@media (max-width: 650px) {
	.userInfo .userLinks span {
		display: none;
	}
}

@media (max-width: 515px) {
	.loginLinks {
		display: block;
	}
}

@media (max-width: 300px) {
	.userInfo .userLinks {
		font-size: 10px;
	}
}

/* ======================
 * PURE CSS MENU END */


/* ======================
 * HEADROOM JS */
.slide {
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.slide--reset {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.slide--up {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
/* ====================
 * HEADROOMJS END */

/* ======================================================================================================
 * Header End
   ===================================================================================================== */




/* =====================================================================================================
 * INDEX
   ===================================================================================================== */

/* ===================
 * LANDING ZONE */
.landing {
    margin-top: 69px !important;
    background: rgba(48,58,86,.3);
    text-align: center;
}

.landingParallax {
    background: url(../assets/imgs/landingParallax.jpg) center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

/* WAA LOGO */
.landing img {
    margin: 0 auto;
    width: 350px;
    padding-bottom: 30px;
}

@media all and (max-width : 870px) {
    .landing img {
        width: 250px;
    };
}

@media all and (max-width : 770px) {
    .landing img {
        width: 200px;
    };
}

@media all and (max-width : 570px) {
    .landing img {
        width: 150px;
    };
}
/* WAA LOGO END */

/* WAA H1 */
.landingH1 {
    font-family: 'nexa_rust_script';
    font-size: 90px;
    color: #FFFAF3;
    line-height: 1;
}

@media all and (max-width : 870px) {
    .landingH1 {
        font-size: 60px;
    };
}

@media all and (max-width : 770px) {
    .landingH1 {
        font-size: 50px;
    };
}

@media all and (max-width : 670px) {
    .landingH1 {
        font-size: 45px;
    };
}

@media all and (max-width : 570px) {
    .landingH1 {
        font-size: 70px;
    };
}

@media all and (max-width : 430px) {
    .landingH1 {
        font-size: 55px;
    };
}
/* WAA H1 END */

.gridBox > a {
    display: block;
    height: 100%;
}

/* LANDING ZONE ON MOBILE */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 600px) {
    .landingParallax {
        background: url(../assets/imgs/landingParallax.jpg);
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        z-index: -1;
        min-height: 100%;
    }

}
/* LANDING ZONE ON MOBILE END */

/* ===================
* LANDING ZONE END */



/* ===================
 * ABOUT ZONE */

.aboutZone {
    background: #FFFAF3;
    padding: 5% 20%;
}

.aboutZoneP {
    font-family: 'Montserrat-Regular';
    font-size: 20px;
    color: #303A56;
    line-height: 2;
    padding-bottom: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .aboutZoneP {
      font-size: 16px;
    }

    .aboutZone {
      padding: 20% 7%;
    }
}

/* ===================
 * ABOUT ZONE END */



/* ===================
 * EXPLORE ZONE */

.exploreZone, .badgesZone {
    background: #303A56;
    padding: 5% 10%;
}

.exploreZoneH2 {
    font-family: 'Montserrat-Regular';
    font-size: 30px;
    color: #FFFAF3;
    padding-bottom: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.landingP {
	font-family: 'Montserrat-Regular';
    font-size: 18px;
    color: #FFFAF3;
    max-width: 1000px;
    margin: 0 auto;
}

.grid {
    list-style: none;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    z-index: -1;
    padding: 40px 0 40px 0;
}

.gridRow {
	width: 120%;
	margin-left: -10%;
}

.gridBox {
    display: inline-block;
	position: relative;
    margin: 10px;
    vertical-align: top;
    height: 286px;
    width: 286px;
    cursor: pointer;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    border: 2px solid #FFFAF3;
}

.gridBox.selected, .gridBox:hover {
	border: 2px solid #DD5E4E;
}

.gridBox img {
    width: 286px;
    height: 286px;
}

.grid .gridBox > img {
    border: none;
    outline: none;
    display: block;
    position: relative;
}
.imageFlexBox {
	padding-left: 45px;
	padding-right: 45px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	padding-bottom: 25px;
	max-width: 1000px;
	display: inline-block;
}
.imageContainer {
	padding: 20px;
}
.imageDiv {
	position:relative;
	cursor: pointer;
}
.sliderImage {
	width: 200px;
	height: 200px;
	max-width: 200px;
	max-height: 200px;
}
.TitleContainer {
	position:absolute;
	bottom:0px;
	background: rgb(0, 0, 0); /* fallback color */
	background: rgba(48, 58, 86, 0.75);
	/*background: rgba(95, 105, 122, 0.9);*/
	width:100%;
	max-width: 200px;
	margin:0;
}
.TitleText {
	color: #f9f9fb;
	font-family: "Open Sans",open-sans,sans-serif;
	font-size: 11px;
	letter-spacing: -1px;
	word-wrap: break-word;
	line-height: 17px;
	text-align: center;
	vertical-align: middle;
	margin:0;
}
.DescriptionText{
	color: #f9f9fb;
	font-family: "Open Sans",open-sans,sans-serif;
	font-size: 10px;
	letter-spacing: -1px;
	word-wrap: break-word;
	line-height: 17px;
	text-align: center;
	vertical-align: middle;
	margin:0;
}
.ViewFullRecordText{
	color: #f9f9fb;
	font-family: "Open Sans",open-sans,sans-serif;
	font-size: 12px;
	letter-spacing: -1px;
	word-wrap: break-word;
	line-height: 17px;
	text-align: center;
	vertical-align: middle;
	margin:0;

}
.TitleDescriptionHover {
	position: absolute;
	display: none;
	background: rgb(0, 0, 0);
	background: rgba(48, 58, 86, 0.75);
	/*background: rgba(95, 105, 122, 0.9);*/
	bottom:0;
	width: 100%;
	height: 100%;

	/*transition: all 1s ease;*/
}
.arrow-up1,
.arrow-up2,
.arrow-up3,
.arrow-up4 {
	position: absolute;
	left: 133px;
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 20px solid #DD5E4E !important;
	z-index: 1;
	bottom: -36px;

}


.arrow-up1:before,
.arrow-up2:before,
.arrow-up3:before,
.arrow-up4:before {
	content: "";
	position: absolute;
	height: 3px;
	left: -20px;
	z-index: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 20px solid #FFFAF3;
}

.navDots{
	position:absolute;
	display:block;
	left: 50%;
	bottom: -5px;
	transform: translate(-50%, -50%);
}
.navDot{
	width: 11px;
	height: 11px;
	margin: 0 2px;
	border-radius: 100%;
	display: inline-block;
	background-color: rgba(226, 214, 199, 1.0);
}
.sliderDescription{
	color: rgb(48,58,86);
	margin:10px auto;
	display: block;
	padding: 10px 80px;
	max-width: 870px;
	font-family:'Montserrat-Regular';
}
.learnMoreLnk {
	display: inline-block;
	text-align: center;
	color: #DD5E4E;
	text-transform: uppercase;
	font-size: 15px;
	margin: 10px 0 20px 20px;
    font-family:'Montserrat-Regular';
}

.learnMoreLnk:first-child {
	margin-right: 0;
}

.drawer {
	display: none;
	position: absolute;
	margin-top:25px;
	left:0;
	background-color:rgba(255,250,243,1.0);
	width:100%;
	border-top: 2px solid #DD5E4E;
	border-bottom: 2px solid #DD5E4E;
	padding-bottom: 30px;
}
.previousButton{
	position:absolute;
	display:inline-block;
	cursor:pointer;
	bottom: 21%;
	transform: translateY(-50%);
	left: 0;
	width: 77px;
	height: 153px;
	z-index: 1;
}
.nextButton{
	position:absolute;
	display:inline-block;
	cursor:pointer;
	bottom: 21%;
	transform: translateY(-50%);
	right: 0;
	width: 77px;
	height: 153px;
	z-index: 1;
}
.previousButton:hover, .nextButton:hover {
	opacity: .9;
}
.slider {
	position:relative;
	display: inline-block;
	width: 100%;
	background-color: rgba(255,250,243,1.0);
	padding: 25px 0;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);

}

.exploreByTitle {
    position: relative;
    bottom: 112px;
    width: 100%;
    height: 88px;
    background: rgba(48, 58, 86, 0.75);
    cursor: pointer;
}

.exploreByTitle h3 {
    text-align: center;
    vertical-align: middle;
    color: #FFFAF3;
    font-family: 'Montserrat-Regular';
    font-size: 20px;
    cursor: pointer;
    padding: 0 10px;
    font-weight: normal;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#exploreButton {
	margin-top: 40px;
}

@media (max-width: 1024px) {
	.gridBox {
		display: block;
		margin: 0 auto 40px auto;
		width: 75%;
	}
	
	.gridBox img {
		width: 100%;
		object-fit: cover;
		object-position: top;
	}

	.imageFlexBox {
		padding: 0 0 45px 0;
		max-width: 500px;
	}

	.navDots {
		bottom: 20px;
	}
	.previousButton, .nextButton {
		bottom: 7%;
	}
	.arrow-up1,
.arrow-up2,
.arrow-up3,
.arrow-up4 {
	position: absolute;
	left: 45% !important;
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 20px solid #DD5E4E !important;
	z-index: 1;
	bottom: -43px;

}
	
}

@media (max-width: 600px) {
	.exploreZoneH2 {
    padding: 25px 0 40px 0;
    margin: 0;
}
	.gridBox {
		display: block;
		margin: 0 auto 40px auto;
		width: 75%;
	}

	.gridBox img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

	.arrow-up1, .arrow-up2, .arrow-up3, .arrow-up4 {
		left: 110px;
	}
}

/* ===================
 * EXPLORE ZONE END */



 /* ===================
  * IDENTIFY ZONE */

.identifyZone {
    background: #FFFAF3;
    text-align: center;
    padding: 5% 20%;
}

.identifyZoneP img {
	width: 100%;
	max-width: 1000px;
}

.identifyZoneH2 {
    font-family: 'Montserrat-Regular';
    font-size: 30px;
    color: #303A56;
    padding-bottom: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.identifyZoneP {
  font-family: 'Montserrat-Regular';
  font-size: 20px;
  color: #303A56;
  line-height: 2;
  padding-bottom: 40px;
  max-width: 1000px;
  margin: 0 auto;
}


@media only screen and (max-width: 768px) {
    .identifyZoneP {
      font-size: 16px;
    }

    .identifyZone {
      padding: 40px 7%;
    }
}

/* ===================
 * IDENTIFY ZONE END */


 .badgesZone {
	 padding: 5% 20%;
 }

 .badgesZoneP {
  font-family: 'Montserrat-Regular';
  font-size: 20px;
  color: #FFFAF3;
  line-height: 2;
  padding-bottom: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.badgesZone .badgeBox {
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    margin: 0 auto 25px auto;
    width: auto;
}

.badgesZone .badgeBox .badgeH {
	padding: 20px;
}

.badgesZone .badgeBox .badgeH .bdg {
	height: 130px;
	width: 130px;
	background-position: center center;
	background-size: 160px;
	border-radius: 50%;
	border: 1px solid #FFFAF3;
}


@media (max-width: 1146px) and (min-width: 860px) {
	.badgesZone .badgeBox .badgeH {
		width: 200px;
	}

	.badgesZone .badgeBox .badgeH .bdg {
		margin: 0 auto;
	}
}

@media (min-width: 1500px) {
	.badgesZone .badgeBox .badgeH .bdg {
		height: 180px;
		width: 180px;
	}
}

/* =====================================================================================================
 * INDEX END
   ===================================================================================================== */




/* =====================================================================================================
 * ABOUT
 ===================================================================================================== */

 .aboutParallax {
     background: url(../assets/imgs/aboutParallax.jpg) center fixed;
     background-size: cover;
     -webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
     z-index: -1;
     min-height: 100%;
 }


 .aboutLanding {
     margin-top: 69px;
     background: rgba(48,58,86,.3);
     text-align: center;
 }

 .aboutH1 {
     font-family: 'Montserrat-Regular';
     font-size: 55px;
     color: #FFFAF3;
 }

 .aboutParagraph {
     background: #FFFAF3;
     padding: 2% 20%;
 }

.aboutParagraphP {
     font-family: 'Montserrat-Regular';
     font-size: 20px;
     color: #303A56;
     line-height: 2;
     max-width: 1000px;
     margin: 0 auto;
     text-align: left;
     padding: 15px 0;
 }

.aboutParagraph a {
	color: #E0624C;
}

h3.assocResourcesHead {
 	color: #303A56;
 	font-family: 'Montserrat-Regular';
 	font-size: 26px;
 	padding-top: 150px;
}

#assocResourcesBlock ul#results {
	margin-bottom: 150px;
}

 .aboutHeading {
     background: rgba(48,58,86,.3);
     text-align: center;
 }

 @media only screen and (max-width: 768px) {
     .aboutParagraphP {
       font-size: 16px;
     }

     .aboutParagraph {
       padding: 7%;
     }
 }

 .teamCont {
	 overflow: hidden;
	 text-align: center;
 }

 .teamCont hr {
	 border: none;
	 border-bottom: 1px solid #D9DDE2;
	 width: 50%;
	 margin: 50px auto;
 }

 .teamCont h3 {
	 text-align: center;
	 font-family: 'Montserrat-Regular';
	 color: #303A56;
	 font-size: 28px;
	 margin-bottom: 30px;
	 padding-top: 25px;
 }

.teamMember {
	 width: calc(50% - 25px);
	 display:inline-block;
	 font-family: 'Montserrat-Regular';
	 text-align: center;
	 color: #303A56;
	 padding: 30px 10px;
	 min-height: 100px;
	 vertical-align: top;
 }

 .teamMember h4 {
	 font-size: 22px;
	 font-weight: normal;
	 margin: 0 0 12px 0;
 }

 .teamMember h6 {
	 font-size: 14px;
	 font-weight: normal;
	 margin: 5px 0;
 }

 @media (max-width: 900px) {
	  .teamMember {
		  width: 100%;
		  padding: 30px 0;
	  }
 }

 /* ABOUT LANDING ZONE ON MOBILE */
 @media only screen
 and (min-device-width : 320px)
 and (max-device-width : 600px) {
     .aboutParallax {
         background: url(../assets/imgs/aboutParallax.jpg);
         background-size: 100%;
     }
 }
 /* LANDING ZONE ON MOBILE END */


/* =====================================================================================================
 * ABOUT END
   ===================================================================================================== */





   /* =====================================================================================================
    * IDENTIFY
    ===================================================================================================== */

   .identifyParallax {
       background: url(../assets/imgs/aboutParallax.jpg) center fixed;
       background-size: cover;
       -webkit-background-size: cover;
       -moz-background-size: cover;
       -o-background-size: cover;
       z-index: -1;
       min-height: 100%;
   }

   .identifyLanding {
       margin-top: 69px;
       background: rgba(48,58,86,.95);
       text-align: center;
   }

   .identifyH1 {
       font-family: 'Montserrat-Regular';
       font-size: 40px;
       color: #FFFAF3;
       line-height: 1;
       margin-bottom: 30px;
   }

   .identifyP {
       font-family: 'Montserrat-Regular';
       font-size: 18px;
       color: #FFFAF3;
       max-width: 1000px;
       margin: 0 auto;
       line-height: 1.7;
   }

   .identifyH3 {
       font-family: 'Montserrat-Regular';
       font-size: 25px;
       color: #FFFAF3;
       margin: 50px 0 0 0;
   }

   .button.identify {
       display: inline-block;
       margin: 30px 15px 0 15px;
   }

   .button.identify.two {
       background: transparent;
       border: 1px solid #FFFAF3;
   }

   .button.identify.two:hover {
       border: 1px solid #E0624C;
   }

   /* IDENTIFY GRID */

   section.grid {
       background: #FFFAF3;
   }

   ul.grid {
       padding: 0;
   }

   .gridItem {
       display: inline-block;
       margin: 10px;
       height: 250px;
       width: 250px;
       position: relative;
       border: 1px solid rgba(48, 58, 86, 0.75);
       cursor: pointer;
       overflow: hidden;
       transition: all 1s ease;
       text-align: center;
       vertical-align: top;
   }

   .gridItemTitle {
       position: absolute;
       bottom: 0;
       width: 100%;
       background: rgba(48, 58, 86, 0.75);
       cursor: pointer;
       opacity: 1;
       transition: all 1s ease;
   }

   .gridItemTitle h3 {
       text-align: center;
       vertical-align: middle;
       color: #FFFAF3;
       font-family: 'Montserrat-Regular';
       font-size: 16px;
       padding: 5px;
       cursor: pointer;
       transition: all 1s ease;
   }

   .gridItemTitle h3:hover {
       color: #E0624C;
   }

   figure , figcaption {
       position: relative;
       display: block;
       margin: 0;
   }

   .gridItem figure {
       position: relative;
       overflow: hidden;
   }

   .gridItem figure img {
       width: 100%;
       height: 100%;
       -webkit-transition: all 300ms ease-in-out;
       transition: all 300ms ease-in-out;
   }

   .gridItem figure:hover img, .gridItem figure:focus img {
       -webkit-transform: scale(1.1);
       -ms-transform: scale(1.1);
       transform: scale(1.1);
   }

   .gridItem figcaption {
       position: absolute;
       top: 0;
       left: 0;
       width: 250px;
       height: 250px;
       text-align: center;
       font-size: 15px;
       opacity: 0;
       vertical-align: middle;
       -webkit-transition: all 300ms ease-in-out;
       transition: all 300ms ease-in-out;
       background: rgba(48, 58, 86, 0.95);
   }

   .gridItem figcaption a {
       color: #FFFAF3;
   }

   .gridItem figcaption a:hover, .gridItem figcaption a:focus {
       color: #FFFAF3;
   }

   .gridItem figure:hover figcaption, .gridItem figure:focus figcaption {
       opacity: 1;
   }

   .visible {
       opacity: 1;
   }

   .gridItem figure.cs-hover figcaption {
       opacity: 1;
   }

   .gridItem figcaption i {
       font-size: 35px;
   }

   .gridItem figcaption .caption-content {
       position: absolute;
       top: 55%;
       left: 50%;
       margin-top: -70px;
       margin-left: -100px;
       width: 200px;
       -webkit-transform: translate(0px, 15px);
       -ms-transform: translate(0px, 15px);
       transform: translate(0px, 15px);
       -webkit-transition: all 300ms ease-in-out;
       transition: all 300ms ease-in-out;
   }

   .gridItem figure:hover figcaption .caption-content, .gridItem figure:focus figcaption .caption-content {
       -webkit-transform: translate(0px, 0px);
       -ms-transform: translate(0px, 0px);
       transform: translate(0px, 0px);
   }

   .view {
       position: fixed;
       top: 30px;
       left: 32px;
       font-size: 13px;
       font-family: 'Montserrat-Regular', sans-serif;
       padding: 10px 0 0 0;
       font-weight: 300;
       color: #FFFAF3;
       margin: 100px 0 0 0;
       border-top: 1px solid #FFFAF3;
       transition: all .5s ease;
   }

   .view:hover {
       color: #E0624C;
       border-top: 1px solid #E0624C;
   }

   .caption {
       font-size: 11px;
       line-height: 15px;
       font-family: 'Montserrat-Regular', sans-serif;
       padding-bottom: 10px;
       font-weight: 300;
       color: #FFFAF3;
       margin: -40px 0 0 0;
       position: absolute;
       top: 50%;
       text-overflow: ellipsis;
       height: 140px;
       overflow: hidden;
       width: 100%;
   }
   /* IDENTIFY GRID END */

   .button.identify.three {
       background: transparent;
       border: 1px solid #303A56;
       color: #303A56 !important;
   }

   .button.identify.three:hover {
       border: 1px solid #E0624C;
       color: #E0624C !important;
   }

   .button.identify.four {
       background: #303A56;
       border: 1px solid #303A56;
   }

   .button.identify.four:hover {
       border: 1px solid #E0624C;
       background: #E0624C;
       color: #FFFAF3 !important;
   }


   /* ABOUT LANDING ZONE ON MOBILE */
   @media only screen
   and (min-device-width : 320px)
   and (max-device-width : 600px) {
       .aboutParallax {
           background: url(../assets/imgs/aboutParallax.jpg);
       };
   }
   /* LANDING ZONE ON MOBILE END */



   /* =====================================================================================================
    * IDENTIFY END
      ===================================================================================================== */





/* =====================================================================================================
 * BROWSE
 ===================================================================================================== */

.browseWrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.descriptInfo {
	flex: 1 100%;
	background: #FFFAF3;
	font-family: 'Montserrat-Regular','sans-serif';
	text-align: left;
}

.descriptInfo p {
	font-size: 16px;
	line-height: 2;
	color: #303A56;
	margin: 0 auto 30px auto;
	word-wrap: break-word;
}

.descriptInfo p a {
	color: #E0624C;
}

.sideFilter::before {
  content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    left: 0;
    background: #FFFAF3;
}

.browseGrid, .collectionsGrid {
  width: 75%;
  padding: 40px 0 90px 0;
  background: #FFFAF3;
}

.collectionsGrid {
	width: 100%;
	padding: 75px 0 90px 0;
}

.collectionsGrid ul {
	display: flex;
	flex-wrap: wrap;
}

.collectionsGrid ul li.gridItem {
	margin: 0;
	width: calc(100% / 8);
	box-sizing: border-box;
	height: 350px;
	transition: all .25s ease;
}

.collectionsGrid ul li.gridItem figcaption {
	height: 350px;
	width: 100%;
}

.collectionsGrid ul li.gridItem figure img {
	object-fit: cover;
}

.collectionsGrid ul .gridItem figcaption .caption-content {
	top: 40%;
	width: 220px;
	margin-left: -110px;
}

.collectionsGrid ul .gridItem figcaption .caption-content .caption {
	height: 240px;
}

.collectionsGrid ul .gridItem figcaption .caption-content .view {
	top: 125px;
}

@media (max-width: 2100px) and (min-width: 1701px) {
	.collectionsGrid ul li.gridItem {
		width: calc(100% / 7);
	}
}

@media (max-width: 1700px) and (min-width: 1501px) {
	.collectionsGrid ul li.gridItem {
		width: calc(100% / 6);
	}
}

@media (max-width: 1500px) and (min-width: 1201px) {
	.collectionsGrid ul li.gridItem {
		width: calc(100% / 5);
	}
}

@media (max-width: 1200px) and (min-width: 1001px) {
	.collectionsGrid ul li.gridItem {
		width: calc(100% / 4);
	}
}

@media (max-width: 1000px) and (min-width: 901px) {
	.collectionsGrid ul li.gridItem {
		width: calc(100% / 4);
	}
}

@media (max-width: 900px) and (min-width: 751px) {
	.collectionsGrid ul li.gridItem {
		width: calc(100% / 3);
	}
}

@media (max-width: 750px) and (min-width: 551px) {
	.collectionsGrid ul li.gridItem {
		width: calc(100% / 2);
	}
}

@media (max-width: 550px) {
	.collectionsGrid ul li.gridItem {
		width: 100%;
	}
}

.browse-button {
  display: inline-block;
  margin: 30px 15px 0 15px;
}

@media only screen and (max-width: 768px) {
    .browseWrapper {
        display: block !important;
    }
    .browseGrid {
        display: block;
        float: none;
        width: 100%;
        padding: 0 0 30px 0;
    }
}

.sideFilter, .browseGrid, .collectionsGrid {
  display: inline-block;
}

/* =====================================================================================================
 * BROWSE END
===================================================================================================== */

/* =====================================================================================================
 * RECIPES
 ===================================================================================================== */

.recipesWrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
}
    .recipesWrapper .sideFilter {
        padding-top: 20px;
    }

    .recipesGrid {
        width: 75%;
        padding: 20px 0;
        background: #FFFAF3;
    }

.button.recipes-button {
    display: inline-block;
    margin: 30px 15px 0 15px;
}

@media only screen and (max-width: 768px) {

    .recipesWrapper {
        display: block !important;
    }

    .recipesGrid {
        display: block;
        float: none;
        margin-top: 0px;
        width: 100%;
        padding: 0 0 30px 0;
    }

    .recipesWrapper .filterMobileBarTop {
        z-index: 998;
        position: relative;
        top: 0px;
    }

    .recipesWrapper .sideFilter {
        top: 149px; /* Combined height of filter & nav & search */
    }

}

/* =====================================================================================================
 * RECIPES END
   ===================================================================================================== */

/* =====================================================================================================
* IDENTIFY
===================================================================================================== */

.identifyParallax {
   background: url(../assets/imgs/aboutParallax.jpg) center fixed;
   background-size: cover;
   -webkit-background-size: cover;
   -moz-background-size: cover;
   -o-background-size: cover;
   z-index: -1;
   min-height: 100%;
}

.identifyLanding {
   margin-top: 69px;
   background: rgba(48,58,86,.95);
   text-align: center;
}




.identifyH1 {
    font-family: 'Montserrat-Regular';
    font-size: 40px;
    color: #FFFAF3;
    line-height: 1;
    margin-bottom: 30px;
}

.identifyP {
    font-family: 'Montserrat-Regular';
    font-size: 18px;
    color: #FFFAF3;
    max-width: 1000px;
    margin: 0 auto;
}

.identifyH3 {
    font-family: 'Montserrat-Regular';
    font-size: 25px;
    color: #FFFAF3;
    margin: 50px 0 0 0;
}

.button.identify {
    display: inline-block;
    margin: 30px 15px 0 15px;
}

.button.identify.two {
    background: transparent;
    border: 1px solid #FFFAF3;
}

.button.identify.two:hover {
    border: 1px solid #E0624C;
}

/* IDENTIFY GRID */

section.grid {
    background: #FFFAF3;
    float: left;
}

.mobileDrawer {
	position: relative;
	margin-left: -9%;
	width: 118.5%;
	background: #FFFAF3;
	margin-top: 12px;
	border-top: 2px solid #DD5E4E;
	border-bottom: 2px solid #DD5E4E;
	margin-top: 33px;
	margin-bottom: 35px;
	overflow-x: hidden;
}



@media (max-width: 1024px) {
	.mobileDrawer {
		margin-left: -2% !important;
		width: 104% !important;
	}
}

@media (max-width: 770px) {
	.mobileDrawer {
		margin-left: -10%;
		width: 120%;
	}
}


@media (max-width: 600px) {
	.mobileDrawer {
		margin-left: -2%;
		width: 104%;
	}
}

ul.grid {
    padding: 0;
}

.gridItem {
    display: inline-block;
    margin: 10px;
    height: 280px;
    width: 210px;
    position: relative;
    border: 1px solid rgba(48, 58, 86, 0.75);
    cursor: pointer;
    overflow: hidden;
    transition: all 1s ease;
    text-align: center;
}

.gridItemTitle {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(48, 58, 86, 0.75);
    cursor: pointer;
    opacity: 1;
    transition: all 1s ease;
}

.gridItemTitle h3 {
    text-align: center;
    vertical-align: middle;
    color: #FFFAF3;
    font-family: 'Montserrat-Regular';
    font-size: 16px;
    padding: 5px;
    cursor: pointer;
    transition: all 1s ease;
    font-weight: normal;
}

.gridItemTitle h3:hover {
    color: #E0624C;
}

figure , figcaption {
    position: relative;
    display: block;
    margin: 0;
}

.gridItem figure {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gridItem figure img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.gridItem figure:hover img, .gridItem figure:focus img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.gridItem figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 210px;
    height: 280px;
    text-align: center;
    font-size: 15px;
    opacity: 0;
    vertical-align: middle;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background: rgba(48, 58, 86, 0.95);
}

.gridItem figcaption a {
    color: #FFFAF3;
}

.gridItem figcaption a:hover, .gridItem figcaption a:focus {
    color: #FFFAF3;
}

.gridItem figure:hover figcaption, .gridItem figure:focus figcaption {
    opacity: 1;
}

.visible {
    opacity: 1;
}

.gridItem figure.cs-hover figcaption {
    opacity: 1;
}

.gridItem figcaption i {
    font-size: 35px;
}

.gridItem figcaption .caption-content {
    position: absolute;
    top: 47%;
    left: 50%;
    margin-top: -70px;
    margin-left: -100px;
    width: 200px;
    -webkit-transform: translate(0px, 15px);
    -ms-transform: translate(0px, 15px);
    transform: translate(0px, 15px);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.gridItem figure:hover figcaption .caption-content, .gridItem figure:focus figcaption .caption-content {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

.view {
    position: fixed;
    top: 70px;
    left: 52px;
    font-size: 13px;
    font-family: 'Montserrat-Regular', sans-serif;
    padding: 10px 0 0 0;
    font-weight: 300;
    color: #FFFAF3;
    margin: 100px 0 0 0;
    border-top: 1px solid #FFFAF3;
    transition: all .5s ease;
} 

.view:hover {
    color: #E0624C;
    border-top: 1px solid #E0624C;
}

.viewAnnotate {
    position: fixed;
    top: 70px;
    left: 32px;
    font-size: 13px;
    font-family: 'Montserrat-Regular', sans-serif;
    padding: 10px 0 0 0;
    font-weight: 300;
    color: #FFFAF3;
    margin: 100px 0 0 0;
    border-top: 1px solid #FFFAF3;
    transition: all .5s ease;
}

.viewAnnotate:hover {
    color: #E0624C;
    border-top: 1px solid #E0624C;
}

.caption {
    font-size: 11px;
    line-height: 15px;
    font-family: 'Montserrat-Regular', sans-serif;
    padding: 0 10px 10px 10px;
    font-weight: 300;
    color: #FFFAF3;
    margin: -40px 0 0 0;
    position: absolute;
    top: 50%;
    text-overflow: ellipsis;
    height: 180px;
    overflow: hidden;
    width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.caption span {
  font-family: 'Montserrat-Regular', sans-serif !important;
  color: #FFFAF3 !important;
}
/* IDENTIFY GRID END */

.button.identify.three {
    background: transparent;
    border: 1px solid #303A56;
    color: #303A56 !important;
}

.button.identify.three:hover {
    border: 1px solid #E0624C;
    color: #E0624C !important;
}

.button.identify.four {
    background: #303A56;
    border: 1px solid #303A56;
}

.button.identify.four:hover {
    border: 1px solid #E0624C;
    background: #E0624C;
    color: #FFFAF3 !important;
}


/* ABOUT LANDING ZONE ON MOBILE */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 600px) {
    .aboutParallax {
        background: url(../assets/imgs/aboutParallax.jpg);
    };
}
/* LANDING ZONE ON MOBILE END */



/* =====================================================================================================
 * IDENTIFY END
   ===================================================================================================== */





/* =====================================================================================================
 * LOGIN
   ===================================================================================================== */

.loginParallax {
    background: url(../assets/imgs/aboutParallax.jpg) center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    z-index: -1;
    min-height: 100%;
}


/* LOGIN ZONE */
.login {
    margin-top: 69px;
    background: rgba(48,58,86,.9);
    text-align: center;
    padding-bottom: 0;
}

label {
    display: none;
}

input {
    color: #FFFAF3;
    font-family: 'Montserrat-Regular';
    font-size: 16px;
    text-align: center;
    padding: 30px;
}

input:focus {
    outline: none;
    border-color: #E0624C;
}

::-webkit-input-placeholder {
    color: #FFFAF3;
}

:-moz-placeholder {
 /* Firefox 18- */
    color: #FFFAF3;
}

::-moz-placeholder {
  /* Firefox 19+ */
    color: #FFFAF3;
}

:-ms-input-placeholder {
    color: #FFFAF3;
}

.loginField {
    background: none;
    border: 1px solid #FFFAF3;
    margin: 0 0 30px 0;
    width: 75%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all .5s ease;
}

.loginSubmit {
    background: #E0624C;
    margin: 0 0 40px 0;
    width: 75%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid transparent;
    transition: all .5s ease;
}

.loginSubmit:hover {
    background: transparent;
    color: #E0624C;
    border: 1px solid #E0624C;
}

@media screen and (max-width: 768px) {

    .loginField {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .loginSubmit {
        width: 100%;
    };
}

.forgotPassword {
    color: #FFFAF3;
    font-family: 'Montserrat-Regular';
    font-size: 16px;
    text-align: center;
    transition: all .5s ease;
}

.forgotPassword:hover {
    color: #E0624C;
}

/* LOGIN ZONE END */


/* SIGNUP ZONE */

.signup {
    background: rgba(48,58,86,.9);
    text-align: center;
}

.signUpForm {
    margin-top: 45px;
}

@media all and (max-width: 768px) {

    .signup {
        padding: 20% 15% 15% 15%;
    };
}

.signupH1 {
    font-family: 'Montserrat-Regular';
    font-size: 35px;
    color: #FFFAF3;
}

.signupP {
    font-family: 'Montserrat-Regular';
    font-size: 16px;
    color: #FFFAF3;
    line-height: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.loginField.split {
    width: 37.5%;
}

#captcha {
    width: 304px;
    margin: 0 auto;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {

    .loginField.split {
        width: 100%;
    }

    #captcha {
        width: 234px;
        margin-bottom: 0;
    }

    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: 0;
        -webkit-transform: scale(0.77);
        transform: scale(0.77);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
    };
}


/* SIGNUP ZONE */

/* LOGIN PARALLAX ON MOBILE */
@media only screen
  and (min-device-width : 320px)
  and (max-device-width : 600px) {
    .loginParallax {
        background: url(../assets/imgs/aboutParallax.jpg);
    }
}
/* LOGIN PARALLAX ON MOBILE */



/* =====================================================================================================
 * LOGIN END
   ===================================================================================================== */

/* =====================================================================================================
 * Profile
   ===================================================================================================== */

#profile-wrapper{
  background-color: #FFF9EF;
}


/* =====================================================================================================
 * Profile End
   ===================================================================================================== */

 .aboutParagraphP .authorLabel {
	display: block;
	color: #242B46;
	font-size: 22px;
	opacity: .8;
}

.aboutParagraphP .author {
	color: #242B46;
	font-size: 30px;
	margin: 0 0 20px 0;
	line-height: 22px;
}

.aboutParagraphP .author.collectionAuthor {
	margin: 0 0 50px 0;
}



/* =====================================================================================================
* Contact
  ===================================================================================================== */

.contactPage {
  margin-top: 69px;
  background: #FFFAF3;
  min-height: 400px;
  font-family: "Montserrat", sans-serif;
}

.contactInner {
  max-width: 690px;
  padding: 100px 50px;
  margin: 0 auto;
}

.contactHead {
  color: #303A56;
  font-size: 40px;
  text-align: left;
}

.contactP {
  color: #303A56;
  text-align: left;
  line-height: 40px;
  font-size: 20px;
  font-family: 'Montserrat-Regular','sans-serif';
}

@media (max-width: 310px) {
  .contactHead {
    font-size: 35px;
  }
}

/* =====================================================================================================
* Contact End
  ===================================================================================================== */



/* =====================================================================================================
 * FOOTER
   ===================================================================================================== */

footer {
    background: #2C3444;
    padding: 5% !important;
    text-align: center;
    z-index: 2;
    position: relative;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@media all and (min-width : 1500px) {
    footer {
        padding: 5%;
    };
}

.footerImg {
    padding: 1% 5%;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.footerImg img {

}

.matrix {
	margin-bottom: 12px;
}

.neh, .msuHist {
	width: 100%;
}

.msuHist {
	margin: 2.5% 0;
}

.footerImg h5 {
	color: #FFF;
	font-weight: normal;
	font-size: 26px;
	text-transform: uppercase;
	cursor: pointer;
	font-family: 'Montserrat-Regular';
	margin: 0;
}

.commons img {
	margin: 0 8px;
}

@media all and (max-width: 950px) {
	.msuHist img {
		width: auto;
		max-width: 80%;
	}
}

@media all and (max-width : 800px) {
    .footerImg img {
        width: 100%;
        max-width: 80%;
        height: auto;
        max-height: 175px;
    }

    .footerImg.commons img {
	    width: 50px;
    }

    .footerImg {
	    width: 100%;
    }
}

/* FOOTER ON MOBILE */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 600px) {
    .footerImg img {
		width: 100%;
		max-width: 85%;
		height: auto;
		max-height: 100px;
    }

    .footerImg {
	    margin-top: 20px;
	    margin-bottom: 20px;
    }

    .footerImg.commons img {
	    width: 30px;
	    margin: 0 5px;
    }

    .footerImg.matrix {
	    margin-top: 5px;
    }
}
/* FOOTER ON MOBILE END */

/* =====================================================================================================
 * FOOTER END
   ===================================================================================================== */


/* =====================================================================================================
* Sorting
  ===================================================================================================== */

#sortBy {
  margin: 0 auto;
}

.dropDown {
  color: #303A56;
  font-size: 16px;
  text-align: right;
  width: 210px;
  margin: 0 0 10px auto;
  padding-right: 10px;
  padding-top: 10px;
  height: 18px;
  border: 1px solid #FFFAF3;
  cursor: pointer;
  font-family: 'Montserrat-Regular','sans-serif';
}

.dropDown.open {
  /*height: 130px;*/
  /*border: 1px solid #303A56;*/
  border-left: 1px solid #303A56;
  border-top: 1px solid #303A56;
  border-right: 1px solid #303A56;
  overflow: visible;
  position: relative;
}

.dropDown > img {
  margin-left: 10px;
  transform: rotate(-180deg);
}

#sortOptions {
  display: none;
  position: absolute;
  z-index: 15;
}

.dropDown.open > #sortOptions {
  display: block;
  background-color: #FFFAF3;
  box-sizing: border-box;
  border-left: 1px solid #303A56;
  border-bottom: 1px solid #303A56;
  border-right: 1px solid #303A56;
  width: calc(100% + 2px);
  margin-left: -1px;
  margin-top: -1px;
  padding-right: 15px;
  padding-left: 0px;
  padding-bottom: 15px;
}

#sortOptions > li {
  margin-top: 10px;
}

/* =====================================================================================================
* Sorting End
  ===================================================================================================== */
