/*****************************************************************************
    * This is a mobile-first stylesheet.
*****************************************************************************/

@font-face {
    font-family: 'montserratlight';
    src: url('../assets/fonts/Montserrat - Light/montserrat-light-webfont.eot');
    src: url('../assets/fonts/Montserrat - Light/montserrat-light-webfont.eot?#iefix') format('embedded-opentype'), url('../assets/fonts/Montserrat - Light/montserrat-light-webfont.woff2') format('woff2'), url('../assets/fonts/Montserrat - Light/montserrat-light-webfont.woff') format('woff'), url('../assets/fonts/Montserrat - Light/montserrat-light-webfont.ttf') format('truetype'), url('../assets/fonts/Montserrat - Light/montserrat-light-webfont.svg#montserratlight') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montserratregular';
    src: url('../assets/fonts/Montserrat - Regular/Montserrat-Regular.eot');
    src: url('../assets/fonts/Montserrat - Regular/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../assets/fonts/Montserrat - Regular/Montserrat-Regular.woff2') format('woff2'), url('../assets/fonts/Montserrat - Regular/Montserrat-Regular.woff') format('woff'), url('../assets/fonts/Montserrat - Regular/Montserrat-Regular.ttf') format('truetype'), url('../assets/fonts/Montserrat - Regular/Montserrat-Regular.svg#montserratregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montserratbold';
    src: url('../assets/fonts/Montserrat-Bold/montserrat-bold-webfont.eot');
    src: url('../assets/fonts/Montserrat-Bold/montserrat-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../assets/fonts/Montserrat-Bold/montserrat-bold-webfont.woff2') format('woff2'),
         url('../assets/fonts/Montserrat-Bold/montserrat-bold-webfont.woff') format('woff'),
         url('../assets/fonts/Montserrat-Bold/montserrat-bold-webfont.ttf') format('truetype'),
         url('../assets/fonts/Montserrat-Bold/montserrat-bold-webfont.svg#montserratbold') format('svg');
    font-weight: 700;
    font-style: normal;
}
/*=========================General Styles=========================*/
body {
    background-color: white;
    font-family: 'montserratlight';
    overflow-y: scroll;
}
h1 {
  font-weight: normal;
}
h2 {
  font-weight: normal;
}
h3 {
  font-weight: normal;
}
h4 {
  font-weight: normal;
}
h5 {
  font-weight: normal;
}
h6 {
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6, p {
	color: #3F3F3F;
}
.active-page {
    color: #CC523D !important;
}
.section-banner {
    box-sizing: border-box;
    padding: 0 15px;
    width: 100%;
    height: 44px;
    background-color: #CC523D;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.section-banner > h1 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: normal;
    color: white;
    width: 100%;
    text-align: center;
    margin-left: 55px;
}

@media screen and (min-width: 700px) {
    .section-banner {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

#container {
	width: 100%;
	background-image: url(../assets/imgs/landingImage.png);
	background-size: 100% auto;
	background-position: center top;
	background-repeat: no-repeat;
	height: auto;
	min-height: 500px;
	box-sizing: border-box;
	padding: 10%;
	margin-top: 41px;
	position: relative;
}

@media (max-width: 1289px) {
	#container {
		background-position: center bottom;
		padding: 10% 5%;
	}
}

@media (max-width: 900px) {
	#container {
		padding: 10% 20px;
	}
}

#newSearch:empty:before {
	content: attr(placeholder);
}



/*=========================/General Styles=========================*/


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

header {
    margin: 0;
    padding: 0 15px;
    height: 42px;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1002;
    background-color: white;
    border-bottom: 1px solid #EAEAEA;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
header a {
    display: inline-block;
    padding: 0;
    color: #3F3F3F;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: color 400ms ease 0s;
    transition: color 400ms ease 0s;
}
@media (hover) {
    header a:hover {
        color: #CC523D;
    }
}
header > nav {
    width: 100%;
}
header > nav > ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    /* Mobile properties */
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
header > nav > ul > li {
    display: inline-block;
}
header > nav > ul > li > a > img {
    display: inline-block;
}
.logo img {
    padding-top: 4px;
}
header>form {
    display: none;
    width: 0;
}
@media screen and (min-width: 600px) {
    header a {
        padding: 0 10px;
    }
    header > nav > ul {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    #navSearchIcon img {
      width: 15px;
      /*margin-top: 5px;*/
      margin: 2px 2px 0 0;
    }
    #navSearch {
        /* Last-child is "search" */
        margin-left: auto;
        /* Floats don't work with flexbox, this is the workaround */
        display: inline-block;
    }
    #navSearch.hide-search {
        /*display: none;*/
        /*margin-left: 0;*/
    }
    /* The anchor tag padding defined earlier adds to the
        header padding, so let's remove it for first and last children... */
    header > nav > ul > li:first-child > a {
        padding-left: 0;
    }
    #navSearch > a {
        padding-right: 0;
    }
    #navSearchIcon > a {
      padding-right: 0;
    }
    /* End of padding removal */
    #navSearchForm {
      display: none;
      margin-left: auto;
    }
    #navSearchForm.search-toggle {
        opacity: 1;
        filter: alpha(opacity=100);
        display: inline-block;
    }
    header > form {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-left: auto;
        width: 0;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-transition: all 750ms ease 0s;
        transition: all 750ms ease 0s;
        opacity: 0;
        filter: alpha(opacity=0);
    }
    #navSearchForm > form > input {
        text-align: right;
    }
    header > form > input::-webkit-input-placeholder {
        font-size: 14px;
        color: black;
    }
    header > form > input:-moz-placeholder {
        /* Firefox 18- */
        font-size: 14px;
        color: black;
    }
    header > form > input::-moz-placeholder {
        /* Firefox 19+ */
        font-size: 14px;
        color: black;
    }
    header > form > input:-ms-input-placeholder {
        font-size: 14px;
        color: black;
    }
    header > form > input:focus {
        outline-style: none;
        box-shadow: none;
        border-color: transparent;
    }
}

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

main {
    width: 100%;
}

/*****************************************************************************
================================HOME PAGE=====================================
*****************************************************************************/


/*=========================Landing Display=========================*/

#landing {
    position: relative;
    overflow: hidden;
    max-height: 100vh;
}
#landing-image {
    width: 100%;
}
#landing-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 98;
    width: 100%;
    height: 100%;
    padding: 42px 0 0 0;
    /* 42px because header z-index throws off logo centering */
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
#landing-overlay>img {
    max-width: 48vw;
}
#landing-arrow {
    display: none;
}
@media screen and (min-width: 700px) {
    #landing-arrow {
        display: block;
        position: absolute;
        bottom: 60px;
        left: calc((100% / 2) - 7.5px);
        transform: rotate(90deg);
        z-index: 99;
        cursor: pointer;
    }
}

/*=========================/Landing Display=========================*/


/*=========================Summary Section=========================*/

#summary {
    width: 100%;
    padding: 10%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#summary > p {
    width: 100%;
    max-width: 620px;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    margin: 0 0 30px 0;
}
.red-button {
    background-color: transparent;
    border: 1px solid #CC523D;
    color: #CC523D;
    text-transform: uppercase;
    font-size: 14px;
    width: 200px;
    height: 70px;
    -webkit-transition: all 600ms ease 0s;
    transition: all 600ms ease 0s;
}
@media (hover) {
    .red-button:hover {
        background-color: #CC523D;
        color: white;
    }
}
@media screen and (min-width: 600px) {
    #summary > p {
        margin: 0 0 50px 0;
    }
}

/*=========================/Summary Section=========================*/


/*=========================Featured=========================*/

#featured-window {
    position: relative;
    background-color: rgb(35, 35, 35);
}
.featured-radio-btn {
    display: none;
}
#featured-images {
    margin: 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
}
#featured-images > figure {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 0 -4px 0;
    height: 500px;
    overflow: hidden;
    display: inline-block;
    -webkit-transition: -webkit-transform 600ms ease 0s;
    transition: -webkit-transform 600ms ease 0s;
    transition: transform 600ms ease 0s;
    transition: transform 600ms ease 0s, -webkit-transform 600ms ease 0s;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
}
#featured-images > figure > a > img {
    width: 100vw;
    display: block;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    object-fit:cover;
    height: 500px;
}
#featured-images > figure > a > figcaption {
    box-sizing: border-box;
    padding: 0 85px;
    position: absolute;
    z-index: 999;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    color: white;
    background-color: rgba(50, 50, 50, 0.85);
    cursor: pointer;
}
#featured-images > figure > a > figcaption {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#featured-images > figure > a > figcaption > p {
    white-space: normal;
    text-align: center;
    color: #fff;
}
#featured-arrows {
    position: absolute;
    z-index: 998;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none;
}
#featured-arrows label {
    display: none;
    pointer-events: auto;
    /* The following values add up to 70x70 pixels */
    width: 70px;
    height: 100%;
    cursor: pointer;
}
#featured1:checked ~ #featured-arrows label:nth-child(5), #featured2:checked ~ #featured-arrows label:nth-child(1), #featured3:checked ~ #featured-arrows label:nth-child(2), #featured4:checked ~ #featured-arrows label:nth-child(3), #featured5:checked ~ #featured-arrows label:nth-child(4) {
    background-color: transparent;
    background-image: url('../assets/svgs/PreviousArrow.svg');
    background-repeat: no-repeat;
    background-position: 50%;
    float: left;
    display: block;
}
#featured1:checked ~ #featured-arrows label:nth-child(2), #featured2:checked ~ #featured-arrows label:nth-child(3), #featured3:checked ~ #featured-arrows label:nth-child(4), #featured4:checked ~ #featured-arrows label:nth-child(5), #featured5:checked ~ #featured-arrows label:nth-child(1) {
    background-color: transparent;
    background-image: url('../assets/svgs/NextArrow.svg');
    background-repeat: no-repeat;
    background-position: 50%;
    float: right;
    display: block;
}
#featured-active {
    display: none;
}
#featured1:checked ~ #featured-images figure {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
#featured2:checked ~ #featured-images figure {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
#featured3:checked ~ #featured-images figure {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
}
#featured4:checked ~ #featured-images figure {
    -webkit-transform: translateX(-300%);
    transform: translateX(-300%);
}
#featured5:checked ~ #featured-images figure {
    -webkit-transform: translateX(-400%);
    transform: translateX(-400%);
}
@media screen and (min-width: 600px) {
    #featured-images > figure > a > figcaption {
        height: 70px;
        -webkit-transition: background-color 600ms ease 0s;
        transition: background-color 600ms ease 0s;
    }
@media (hover) {
    #featured-images > figure > a > figcaption:hover {
        background-color: rgba(204, 82, 61, 1);
    }
}
    #featured-arrows {
        top: auto;
        height: 70px;
    }
    #featured-arrows label {
        height: 70px;
        -webkit-transition: background-color 600ms ease 0s;
        transition: background-color 600ms ease 0s;
    }
@media (hover) {
    #featured-arrows label:hover {
        background-color: rgba(204, 82, 61, 1) !important;
    }
}
    #featured-active {
        position: absolute;
        z-index: 998;
        bottom: 70px;
        left: calc(50% - 70px);
        right: calc(50% - 70px);
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: rgba(50, 50, 50, 0.65);
    }
    #featured-active label {
        border-radius: 6px;
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.35);
        margin: 8px;
        cursor: pointer;
    }
    #featured1:checked ~ #featured-active label:nth-child(1), #featured2:checked ~ #featured-active label:nth-child(2), #featured3:checked ~ #featured-active label:nth-child(3), #featured4:checked ~ #featured-active label:nth-child(4), #featured5:checked ~ #featured-active label:nth-child(5) {
        background-color: white;
    }
    #featured1:checked ~ #featured-arrows label:nth-child(5), #featured2:checked ~ #featured-arrows label:nth-child(1), #featured3:checked ~ #featured-arrows label:nth-child(2), #featured4:checked ~ #featured-arrows label:nth-child(3), #featured5:checked ~ #featured-arrows label:nth-child(4) {
        background-color: rgba(50, 50, 50, 1);
    }
    #featured1:checked ~ #featured-arrows label:nth-child(2), #featured2:checked ~ #featured-arrows label:nth-child(3), #featured3:checked ~ #featured-arrows label:nth-child(4), #featured4:checked ~ #featured-arrows label:nth-child(5), #featured5:checked ~ #featured-arrows label:nth-child(1) {
        background-color: rgba(50, 50, 50, 1);
    }
}

/*=========================/Featured=========================*/


/*=========================Search=========================*/

#search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 10%;
    /* The bottom padding has an extra 10px from keyword buttons */
    padding-bottom: calc(10% - 10px);
    width: 100%;
}
#mobile-search-link {
    width: 100%;
    margin: 0 0 26px 0;
}
#mobile-search-link > button {
    background-color: transparent;
    border: 1px solid black;
    color: black;
    text-transform: uppercase;
    font-size: 14px;
    width: 100%;
    height: 70px;
    margin: 0;
    padding: 0;
    -webkit-transition: all 600ms ease 0s;
    transition: all 600ms ease 0s;
}
@media (hover) {
    #mobile-search-link:hover > button {
        color: #CC523D;
        border-color: #CC523D;
    }
}
#navSearchForm {
    display: none;
}
#search-form {
    display: none;
}
#search-keywords {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#search-keywords p {
    width: 100%;
    text-align: center;
}
.keyword-button {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: black;
    text-transform: uppercase;
    font-size: 14px;
    width: 100%;
    height: 40px;
    margin: 6px 0;
    padding: 0;
    -webkit-transition: all 600ms ease 0s;
    transition: all 600ms ease 0s;
}
@media (hover) {
    .keyword-button:hover {
        color: #CC523D;
        border-color: #CC523D;
    }
}
@media screen and (min-width: 725px) {
    #mobile-search-link {
        display: none;
    }
    #search-form {
        display: block;
        position: relative;
        margin: 0 0 30px 0;
        box-sizing: border-box;
        width: 620px;
    }
    #search-form > input {
        border: 1px solid black;
        box-sizing: border-box;
        padding: 25px 50px 25px 30px;
        width: 100%;
        -webkit-transition: all 600ms ease 0s;
        transition: all 600ms ease 0s;
        -webkit-appearance: none;
        border-radius: 0;
        text-align: center;
    }
    #search-form > input[disabled] {
        background-color: white;
        cursor: pointer;
    }
    #search-form > input::-webkit-input-placeholder {
        text-align: center;
        text-transform: uppercase;
        font-size: 14px;
        color: black;
        -webkit-transition: opacity 600ms ease 0s;
        transition: opacity 600ms ease 0s;
    }
    #search-form > input:-moz-placeholder {
        /* Firefox 18- */
        text-align: center;
        text-transform: uppercase;
        font-size: 14px;
        color: black;
        -webkit-transition: opacity 600ms ease 0s;
        transition: opacity 600ms ease 0s;
    }
    #search-form > input::-moz-placeholder {
        /* Firefox 19+ */
        text-align: center;
        text-transform: uppercase;
        font-size: 14px;
        color: black;
        -webkit-transition: opacity 600ms ease 0s;
        transition: opacity 600ms ease 0s;
    }
    #search-form > input:-ms-input-placeholder {
        text-align: center;
        text-transform: uppercase;
        font-size: 14px;
        color: black;
        -webkit-transition: opacity 600ms ease 0s;
        transition: opacity 600ms ease 0s;
    }
    #search-form > input:focus {
        outline-style: none;
        box-shadow: none;
        border-color: #CC523D;
    }
    #search-form > input:focus::-webkit-input-placeholder {
        opacity: 0.2;
        filter: alpha(opacity=20);
    }
    #search-form > input:focus:-moz-placeholder {
        opacity: 0.2;
        filter: alpha(opacity=20);
    }
    #search-form > input:focus::-moz-placeholder {
        opacity: 0.2;
        filter: alpha(opacity=20);
    }
    #search-form > input:focus:-ms-input-placeholder {
        opacity: 0.2;
        filter: alpha(opacity=20);
    }
    #search-form > img {
        display: block;
        position: absolute;
        right: 30px;
        top: calc(50% - 7px);
        /*opacity: 0;
        filter: alpha(opacity=0);*/
        -webkit-transition: opacity 600ms ease 0s;
        transition: opacity 600ms ease 0s;
    }
    #search-form > input:focus + img {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .keyword-button {
        width: 200px;
        margin: 6px 8px;
    }
}

/*=========================/Search=========================*/


/*=========================Collections=========================*/
#collections > .section-banner > div {
    display: none;
}
#collections-layout {
    background-color: rgba(40, 40, 40, 1.0);
    width: 100%;
}
.collection-image img {
    background-image: '../assets/imgs/placeholder.jpg';
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.collection-info p {
    margin: 0;
}
.collection-info a {
    text-decoration: none;
}

/*====================== Collections-grid Styling ======================*/
.collections-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.collections-grid .collection-container {
    position: relative;
    width: 50%;
    width: calc(100% / 2);
    overflow: hidden;
}
.collections-grid .collection-container:before{
	content: "";
	display: block;
	padding-top: 100%; 	/* initial ratio of 1:1*/
}
@media screen and (min-width: 550px) {
    .collections-grid .collection-container {
        width: 33.3333333333333333333333333333333%;
        width: calc(100% / 3);
    }
}
/* IE supports calc(), but it's rounding is terrible
So below I am forcing the width to be 33.3...%
through a media query only recognized in IE */
@media screen and (min-width: 550px) and
(-ms-high-contrast: none), (-ms-high-contrast: active) {
    .collections-grid .collection-container {
        width: 33.3333333333333333333333333333333%;
    }
}
@media screen and (min-width: 840px) {
    .collections-grid .collection-container {
        width: 20%;
        width: calc(100% / 5);
    }
}
@media screen and (min-width: 1400px) {
    .collections-grid .collection-container {
        width: 16.66666666666666666666666666666%;
        width: calc(100% / 6);
    }
}
@media screen and (min-width: 550px) and
(-ms-high-contrast: none), (-ms-high-contrast: active) {
    .collections-grid .collection-container {
        width: 16.66666666666666666666666666666%;
    }
}
.collections-grid .collection-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    box-sizing: border-box;
}
.collections-grid .collection-image img {
    height: 100%;
    width: 100%;
}
.collections-grid .collection-info {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    text-align: center;
    color: white;
    background-color: rgba(0,0,0,0.5);
    transition: background-color 600ms ease 0s;
    padding: 7.5%;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}
.collections-grid .collection-info h2 {
    color: inherit;
}
@media (hover) {
    .collections-grid .collection-info:hover {
        background-color: #CC523D;
    }
}
.collections-grid .collection-title {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
}
.collections-grid .projectTitle {
    font-size: 12px;
    color: white;
    position: absolute;
    bottom: 19px;
    text-align: center;
    width: 85%;
}
.collections-grid .collection-info p {
    display: none;
}
.collections-grid .collection-link {
    display: none;
    /*position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    margin: 20% 0 0 0;
    font-size: 14px;
    font-weight: normal;
    -webkit-transition: all 600ms ease 0s;
    transition: all 600ms ease 0s;
    text-transform: uppercase;*/
}
@media (hover) {
    /*.collections-grid .collection-info:hover .collection-link {
        opacity: 1;
        pointer-events: auto;
    }*/
}
/*====================== /Collections-grid Styling ======================*/

@media screen and (min-width: 700px) {
    #collections > .section-banner > div {
        display: inherit;
    }
    #collections > .section-banner > div > img {
        opacity: 0.5;
    }
    #collections > .section-banner > div > img:first-child {
        margin-right: 15px;
    }
    .view-active {
        opacity: 1 !important;
    }
    /*====================== Collections-list Styling ======================*/
    .collections-list .collection-container {
        position: relative;
        display: block;
        width: 100%;
        height: 300px;
        background-color: white;
        transition: all 400ms ease;
        cursor: pointer;
    }
    .collections-list > a > .collection-container {
        border-top: 1px solid #EAEAEA;
    }
    .collections-list .collection-image {
        overflow: hidden;
        height: 100%;
        width: 300px;
		    display: inline-block;
    }
    .collections-list .collection-image img {
        height: 100%;
    }
    .collections-list .collection-info {
        height: 100%;
        padding: 32px 38px;
        box-sizing: border-box;
        width: calc(100% - 307px);
        overflow-x: hidden;
        overflow-y: auto;
        position: static;
        text-align: left;
        color: black;
        display: inline-block;
        background-color: white;
        vertical-align: bottom;
        transform: translateY(-4px);
    }
    .collections-list .collection-container:hover {
        /*display: inline-block;*/
    	box-shadow: 0px 10px 25px rgba(0,0,0,.08);
    	z-index: 98;
    }
    .collections-list .collection-info * {
        padding: 10px 0;
    }
    .collections-list .collection-title {
        font-size: 18px;
        font-weight: normal;
        margin: 0;
        padding-top: 0;
        /*color: white;*/
    }
    .collections-list .collection-project {
        font-size: 16px;
    }
    .collections-list .collection-info p {
        display: block;
        font-size: 14px;
    }
    .collections-list .collection-link {
        display: block;
        font-size: 14px;
        text-transform: uppercase;
        text-decoration: none;
        color: #CC523D;
    }
    /*====================== /Collections-list Styling ======================*/
}

/*=========================/Collections=========================*/


/*=========================Scroll-To-Top Arrow=========================*/

#scroll-to-top {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(50, 50, 50, 0.5);
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    transition: all 600ms ease 0s;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
}
.show-scroll-to-top {
    opacity: 1 !important;
    pointer-events: auto !important;
}
@media (hover) {
    #scroll-to-top:hover {
        background-color: rgba(204, 82, 61, 1);
    }
}
#scroll-to-top > img {
    width: 10px;
    transform: rotate(-90deg);
}

/*=========================/Scroll-To-Top Arrow=========================*/


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

/*=========================About Pages Navigation=========================*/
.about-main {
    min-height: 75vh;
}
#about-nav {
    text-align: center;
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
}
#current-page-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-bottom: 1px solid #EAEAEA;
    z-index: 999;
    height: 40px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
#about-nav-arrow {
  position: absolute;
  right: 15px;
  top: 18px;
  transition: transform 400ms ease-in 0s;
}
.rotate-arrow {
  transform: rotate(-180deg);
}
#about-nav > nav {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 998;
  background-color: white;
  width: 100%;
  transition: transform 400ms ease-in 0s;
  transform: translateY(-100%);
  border-bottom: 1px solid #EAEAEA;
  padding: 10px 0;
}
.about-nav-slider {
  transform: translateY(0%) !important;
}
#about-nav a {
    display: block;
    padding: 10px 0;
    color: #3F3F3F;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: color 400ms ease 0s;
    transition: color 400ms ease 0s;
}
#about-nav > nav > .active-page {
  display: none;
}
@media (hover) {
    #about-nav a:hover {
        color: #CC523D;
    }
}
@media screen and (min-width: 600px) {
    #about-nav {
        top: 0;
        left: 0;
        bottom: 0;
        width: 125px;
        padding: 90px 0 70px 4.5%;
        z-index: auto;
        background-color: white;
        border-bottom: 0;
        height: auto;
    }
    #current-page-box {
      display: none;
    }
    #about-nav-arrow {
      display: none;
    }
    #about-nav > nav {
        position: static;
        z-index: auto;
        width: 125px;
        text-align: right;
        transform: translate(0);
        border-bottom: 0;
        padding: 0;
    }
    #about-nav > nav > .active-page {
      display: block;
    }
}

/*=========================/About Pages Navigation=========================*/


/*=========================About Pages General Styling=========================*/
.about-content {
    padding: 100px 0 40px 0;
    margin: auto;
    max-width: 1000px;
    line-height: 2;
    font-size: 14px;
}
.about-content h1{
  line-height: 1.5;
  font-size: 30px;
  margin-bottom: 10px;
}
.about-content h2{
  line-height: 1.5;
  font-size: 25px;
  margin-bottom: 10px;
}
.about-content h3{
  line-height: 1.5;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: montserratlight;
}
.about-content span {
  font-family: 'montserratregular';
}
.about-content a {
  color: #CC523D;
  text-decoration: none;
}
.about-content a:hover {
  text-decoration: underline;
}
.about-content > section {
    margin: 0 10vw;
}
.about-content > section > p {
    line-height: 26px;
    margin: 18px 0;
}
.about-content > figure {
    margin: 36px 0;
    width: 100%;
}
.about-content > figure > img {
    width: 100%;
}
.about-content > figure > figcaption {
    margin: 8px 10vw 0 10vw;
    font-size: 14px;
}
.about-title {
    margin: 0;
}
.about-content span {
    font-family: montserratlight;
}
@media screen and (min-width: 600px) {
    .about-main {
        position: relative;
    }
    .about-content {
        padding: 85px 0 70px calc(4.5% + 170px);
    }
    .about-content > section {
        margin: 0 4.5vw 0 0;
    }
    .about-content > figure > figcaption {
        margin: 8px 0 0 0;
    }
}

/*=========================/About Pages General Styling=========================*/


/*=========================Loading Icon=========================*/
.loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -162px;
  margin-left: -20px;
  z-index: 1010;
}
.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #CC523D;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
/*=========================/Loading Icon Styling=========================*/


/*****************************************************************************
==============================MODAL & FOOTER==================================
*****************************************************************************/


/*=========================Modal=========================*/
.modal-open {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}
.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    -webkit-transition: all 600ms ease 0s;
    transition: all 600ms ease 0s;
    pointer-events: none;
    padding: 5%;
}
.displayModal {
    opacity: 1;
    pointer-events: auto;
}
.modal > div {
    position: relative;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    max-width: 700px;
    max-height: 480px;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
}
.modal-x-btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    height: 60px;
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: white;
    border-bottom: 1px solid white;
    transition: all 600ms ease;
}
.modal-x-btn > img {
    cursor: pointer;
}
.modal-x-btn-bdr {
    border-bottom: 1px solid #EAEAEA;
    /*box-shadow: 0px -10px 50px 5px rgba(0,0,0,0.5);*/
}
.modal-content {
    box-sizing: border-box;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    margin: 0 0 0 0;
    overflow-y: scroll;
    overflow-x: hidden;
    text-align: center;
}
.modal-content > h1 {
  width: 100%;
    font-size: 24px;
    margin: 0 0 20px 0;
}
.modal-content > p {
    text-align: center;
    max-width: 500px;
    font-size: 14px;
    line-height: 28px;
    margin: 20px auto 30px auto;
}
.modalCheckbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    margin: 0 0 10px 0;
}
.modalCheckbox > input[type="checkbox"] {
    display: none;
}
.modalCheckbox > input[type="checkbox"]:checked + .modalCheckboxBox {
    background-color: #CC523D;
}
.modalCheckbox > .modalCheckboxBox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #CC523D;
    background-color: transparent;
    transition: background-color 600ms ease 0s;
}
.modalCheckbox > .modalCheckboxText {
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    margin: 0 0 0 10px;
    font-size: 14px;
}
.modal-content > form > button {
    margin: 20px 0;
}
/*=========================/Modal=========================*/


/*=========================Footer=========================*/

footer {
    padding: 40px;
    color: white;
    background-color: #2F2F2F;
    position: relative;
    z-index: 998;
    box-shadow: 0px 500px 0px 500px #2F2F2F;
}
footer a {
    text-decoration: none;
    color: white;
}
footer img {
    margin: 20px 0;
}
footer > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    width: 100%;
    flex-direction: column;
    text-align: center;
}
#msu-info > ul {
    list-style-type: none;
    margin: 0 auto;
}
#msu-info-top {
    font-size: 12px;
    border-bottom: 1px dotted white;
    padding: 0 0 4px 0;
    max-width: 560px;
}
#msu-info-top > li {
    display: inline-block;
}
#msu-info-top > li+li:before {
    content: ' | ';
}
#msu-info-middle {
    padding: 4px 0 0 0;
    font-size: 12px;
}
#msu-info-bottom {
    padding: 0;
    font-size: 12px;
}
#landing-acknowledge {
    font-size: 8px;
    margin: 20px 0 0 0;
}
#landing-acknowledge a {
    text-decoration: underline;
}
@media screen and (min-width: 840px) {
    footer img {
        margin: 0;
    }
    footer > div {
        margin: 50px auto;
        width: 740px;
        justify-content: space-between;
        flex-direction: row;
        text-align: left;
    }
    #msu-info > ul {
        width: auto;
        margin: 0;
    }
    #msu-info > ul > li {
        display: inline-block;
    }
    #msu-info > ul > li+li:before {
        content: ' | ';
    }
    #msu-info-top {
        font-size: 10px;
    }
    #msu-info-middle {
        font-size: 8px;
    }
    #msu-info-bottom {
        font-size: 8px;
    }
    #landing-acknowledge {
        margin: 0;
    }
}

/*=========================/Footer=========================*/
