/*Special Thanks to CodyHouse (http://codyhouse.co/) 
for the filter design inspiration and development
*/
/* -------------------------------- 

Primary style

-------------------------------- */

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

html {
  font-size: 62.5%;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 1.6rem;
  font-family: "proxima-nova",sans-serif;
  color: #331d35;
  background-color: #e7e7e7;
}

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


/* -------------------------------- 

Main Components 

-------------------------------- */

.cd-header {
  position: relative;
  height: 150px;
  background-color: #331d35;
}
.cd-header h1 {
  color: #ffffff;
  line-height: 150px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 300;
}
@media screen and (min-width: 1251px)
.top {
    display: none;
}
@media only screen and (min-width: 1170px) {
  .cd-header {
    height: 180px;
  }
  .cd-header h1 {
    line-height: 180px;
  }
}

.cd-main-content {
  position: relative;
  min-height: 100vh;
}
.cd-main-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-main-content.is-fixed .cd-tab-filter-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.cd-main-content.is-fixed .cd-gallery {
  padding-top: 76px;
}
.cd-main-content.is-fixed .cd-filter {
  position: fixed;
  height: 100vh;
  overflow: hidden;
}
.cd-main-content.is-fixed .cd-filter  {
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.cd-main-content.is-fixed .cd-filter-trigger {
  position: fixed;
}
@media only screen and (min-width: 768px) {
  .cd-main-content.is-fixed .cd-gallery {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-main-content.is-fixed .cd-gallery {
    padding-top: 100px;
  }
}

/* -------------------------------- 

xtab-filter 

-------------------------------- */
.cd-tab-filter-wrapper {
      background-color: #181818;
    border-top: 1px solid #181818;
    border-bottom: 1px solid #181818;
    z-index: 1;
	    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.cd-tab-filter-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.cd-tab-filter {
  /* tabbed navigation style on mobile - dropdown */
  position: relative;
  height: 50px;
  width: 140px;
  margin: 0 auto;
  z-index: 1;
}
.cd-tab-filter::after {
  /* small arrow icon */
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/cd-icon-arrow.svg") no-repeat center center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.cd-tab-filter ul {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  /*box-shadow: inset 0 -2px 0 #F16272;*/
}
.cd-tab-filter li {
  display: none;
}
.cd-tab-filter li:first-child {
  /* this way the placehodler is alway visible */
  display: block;
}
.cd-tab-filter a {
    height: 50px;
    width: 50px;
    line-height: 50px;
  
}
.cd-tab-filter a.selected {
  background: #F16272;
  color: #ffffff;
}
.cd-tab-filter.is-open::after {
  /* small arrow rotation */
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.cd-tab-filter.is-open ul {
  box-shadow: inset 0 -2px 0 #F16272, 0 2px 10px rgba(0, 0, 0, 0.2);
}
.cd-tab-filter.is-open ul li {
  display: block;
}
.cd-tab-filter.is-open .placeholder a {
  /* reduces the opacity of the placeholder on mobile when the menu is open */
  opacity: .4;
}
@media only screen and (min-width: 0px) {
  .cd-tab-filter {
    /* tabbed navigation style on medium devices */
    width: auto;
    cursor: auto;
	    background-color: #000000;
    z-index: 1;
  }
  .cd-tab-filter li a.tabactive {border-left:1px solid rgba(197, 161, 108, 0.33); border-right:1px solid rgba(197, 161, 108, 0.33); color:#C9A470; background-color:#ffffff; font-weight:bold;  position:relative;}
  .cd-tab-filter::after {
    /* hide the arrow */
    display: none;
  }
  .cd-tab-filter ul {
    background: transparent;
    position: static;
    box-shadow: none;
    text-align: center;
	font-size: 12px;
  }
  .cd-tab-filter li {
    display: inline-block;
  }
  .cd-tab-filter li.placeholder {
    display: none !important;
  }
  .cd-tab-filter a {
 display: inline-block;
    text-transform: uppercase;
   
  }
  .no-touch .cd-tab-filter a:hover {
    color: #C9A470;
  }
  .cd-tab-filter a.selected {
    background: transparent;
    color: #F16272;
    /* create border bottom using box-shadow property */
    box-shadow: inset 0 -2px 0 #F16272;
  }
  .cd-tab-filter.is-open ul li {
    display: inline-block;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-tab-filter {
    /* tabbed navigation on big devices */
    width: 100%;
    float: right;
    margin: 0;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
	    background-color: #181818;
    z-index: 1;
  }
  .cd-tab-filter.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
}

/* -------------------------------- 

xgallery 

-------------------------------- */
.cd-gallery {
  padding: 60px 5%;
  width: 100%;
}
.cd-gallery li {
  margin-bottom: 1.6em;
/*  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);*/
  display: none;
}
.cd-gallery li.gap {
  /* used in combination with text-align: justify to align gallery elements */
  opacity: 0;
  height: 0;
  display: inline-block;
}
.cd-gallery img {
  display: block;
  width: 100%;
}
.cd-gallery .cd-fail-message {
  display: none;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cd-gallery {
    padding: 40px 3%;
  }
  .cd-gallery ul {
    text-align: justify;
  }
  .cd-gallery ul:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-gallery li {
    width: 48%;
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-gallery {
    padding: 30px 2%;
    float: right;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
  }
  .cd-gallery li {
    width: 23%;
  }
  .cd-gallery.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
}

/* -------------------------------- 

xfilter 

-------------------------------- */
.cd-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #ffffff;
  box-shadow: 4px 4px 20px transparent;
  z-index: 2;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s;
  -moz-transition: -moz-transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cd-filter::before {
  /* top colored bar */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background-color: #F16272;
  z-index: 2;
}
.cd-filter {
  padding: 70px 20px;
}
.cd-filter .cd-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  line-height: 50px;
  width: 60px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  background: #37296a;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 3;
}
.no-touch .cd-filter .cd-close:hover {
  background: #32255f;
}
.cd-filter.filter-is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
}
.cd-filter.filter-is-visible .cd-close {
  opacity: 1;
}
@media only screen and (min-width: 1170px) {
  .cd-filter {
    width: 20%;
  }
  .cd-filter form {
    padding: 70px 10%;
  }
}

.cd-filter-trigger {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  line-height: 50px;
  width: 60px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
  background: transparent url("../img/slide.svg") no-repeat center center;
  z-index: 3;
}

.cd-filter-trigger.filter-is-visible {
  pointer-events: none;
}
/*@media only screen and (min-width: 1170px) {*/
  @media only screen and (min-width: 1000px) {
  .cd-filter-trigger {
    width: auto;
    left: 2%;
    text-indent: 0;
    color: #9a9a9a;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 800;
    padding-left: 24px;
    background-position: left center;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
  }
  .no-touch .cd-filter-trigger:hover {
    color: #F16272;
  }
  .cd-filter-trigger.filter-is-visible, .cd-filter-trigger.filter-is-visible:hover {
    color: #ffffff;
  }
}

/* -------------------------------- 

xcustom form elements 

-------------------------------- */
.cd-filter-block {
  margin-bottom: 1.6em;
}
.cd-filter-block h4 {
  /* filter block title */
  position: relative;
  margin-bottom: .2em;
  padding: 10px 0 10px 0;
  color: #9a9a9a;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.3rem;

}


@-moz-document url-prefix() {
  /* hide custom arrow on Firefox - select element */
  .cd-filter-block .cd-select::after {
    display: none;
  }
}

/*GRATISOGRAPHY CUSTOM STYLES*/

/*TOP BAR*/


.help {
  background:#f16272;
}

.help h2 {

  text-align: left;
  color: white;
  font-size:.90em;
  text-transform: uppercase;
  margin:0;
  padding: 20px 2px 20px 25px;
  font-size: 1em;
  font-family: "proxima-nova",sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
}



.help h3 {
  float: right;
  color: white;
  font-size:.90em;
  text-transform: uppercase;
  margin:9px 40px 0 0;
  padding:10px 0 25px;
  font-size: 1em;
  letter-spacing: 1px;
  font-family: "proxima-nova",sans-serif;
  font-style: normal;
  font-weight: 400;
}

.help a {
  background-color: white;
  padding: 8px 15px;
}

/*GENERAL STYLES*/

body {
  background:white;
}

header.head {
  background: white;
}

/*ABOUT SECTION*/

.about {
  margin:50px 10%;
  text-align: center;
  font-size: 19px;
  line-height: 27px;
  color:#666;
  font-family: "proxima-nova",sans-serif;
  font-style: normal;
  font-weight: 400;
}


/*CUSTOM FILTER STYLES*/
.lazy {
  display: none;
}

@media (min-width: 1170px) and (max-width: 1600px) {
  .cd-gallery li {
    width: 48.5%;
    margin-bottom: 1.8em;
  }
  .cd-gallery ul {
    margin-left: 10%;
    margin-right: 10%;
  }
}
@media (min-width: 1601px) {
  .cd-gallery li {
    width: 32%;
    margin-bottom: 1.5em;
  }
}
@media (max-width: 760px) {

  .cd-gallery ul {
    text-align: center;
  }
}
.cd-gallery img.lazy {
  width: 100%;
  height: auto;
}



/*SLIDE CONTENT*/

.cd-filter-content p {
  font-size: 14px;
  line-height: 22px;
  color: #4c4c4c;
}

/*SHUTTERSTOCK*/

.shutterstock {
  font-family: "proxima-nova",sans-serif;
  font-style: normal;
  font-weight: 400;
  clear: both;
  background-color: #F7F6F6;
  text-align: center;
  padding: 100px 1em 80px;
}

.shutterstock h2 {
  font-size: 35px;
  color:#4c4c4c;

}

.shutterstock p {
  margin:20px 14% 30px;
  text-align: center;
  font-size: 20px;
  line-height:30px;
  color:#666;
}

.shutterstock p strong {
  font-weight: bold;
}

.supersearch input.submit {
  font-family: "proxima-nova",sans-serif;
  font-style: normal;
  font-weight: 800;
  background: #F16172;
  border: none;
  color: #fff;
  width: auto;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  padding: 1.2em 1.4em;
  font-size: 1.6rem;
  border-radius: 2px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.08s ease-in-out;
  -moz-transition: all 0.08s ease-in-out;
  -ms-transition: all 0.08s ease-in-out;
  -o-transition: all 0.08s ease-in-out;
  -webkit-appearance: none;

}

.supersearch input.submit:active, .supersearch input.submit:hover  {
  box-shadow: none;
  outline: none;
  background: #0099D7;
} 

.supersearch input[type="text"], .supersearch select, input[type=text] {
  padding: 30px;
  margin-top:5px;
  margin-bottom: 40px;
  width:50%;
  font-size: 2em;
  border: 1px solid #cfd9db;
  background-color: #F8F7F7;
  border-radius: 2em;
  box-shadow: inset 0 1px 15px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
}

input[type=text]:focus {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
  border-radius: 2em;
  outline:none;

}

input::-webkit-input-placeholder {
  color: #D8DFE1;
}
input::-moz-placeholder {
  color: #D8DFE1;
}
input:-moz-placeholder {   /* Older versions of Firefox */
  color: #D8DFE1;
}
input:-ms-input-placeholder { 
  color: #D8DFE1;
}


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

  .supersearch input[type="text"], .supersearch select, input[type=text] {
    width:70%;
  }
  .shutterstock p {
    margin:20px 9% 30px;
  }
}

@media only screen and (max-width: 950px) {
  .shutterstock {
    clear: both;
    background-color: #F7F6F6;
    text-align: center;
    padding: 75px .5em 60px;
  }

  .supersearch input[type="text"], .supersearch select, input[type=text] {
    padding: 20px;
    margin-bottom: 40px;
    width:80%;
    font-size: 1em;
  }
  .shutterstock h2 {
    font-size: 27px;
    line-height: 33px;
    color:#4c4c4c;
    padding-right: 15px;
    padding-left: 15px;

  }

  .shutterstock p {
    margin:20px 5% 30px;
    text-align: center;
    font-size: 16px;
    line-height:25px;
    color:#666;
  }
}

@media only screen and (max-width: 769px) {
  .supersearch input[type="text"], .supersearch select, input[type=text] {
    box-shadow: none;
    width:90%;
  }
  .shutterstock {
    padding: 60px .5em 45px;
  }

}

/*TWEAKS*/
.cd-gallery {
  padding-bottom: 15px;
  min-height: 600px;
}

/*FOOTER*/
footer {
  clear: both;
  background-color: #D0D0D0;
  padding: 3em 3em 2.5em;
  font-family: "proxima-nova",sans-serif;
  font-style: normal;
  font-weight: 400;
}


ul.footNav {
  text-align: center;
  margin-bottom: 25px;
}

ul.footNav li a {
  color: #f16272;
}

footer img {
 display: block;
 margin-left: auto;
 margin-right: auto;
 width:50px;
 margin-top: 35px;
 margin-bottom: 11px;
}

footer p {
  text-align: center;
  color: #A5A5A5;
  text-transform: uppercase;
}

footer p a {
  color: white;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

footer p a:hover {
  color: white;
  opacity: .80;
}

ul.footNav li {
  display: inline-block;
  margin: 0 5px;
  
}

ul.footNav li a {
  background-color: #fff;
  padding: 10px 1em;
  color: #f16272;
  margin-bottom: 0;
  letter-spacing: .0625em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

ul.footNav li a:hover {
  background-color: #259AD4;
  color: white;
}


/*TERMS*/

footer.terms {
  clear: both;
  background-color: #fff;
  padding: 3em 3em 2.5em;
  border-top: none;
  font-family: "proxima-nova",sans-serif;
  font-style: normal;
  font-weight: 400;
}

ul.footNav.terms li a {
  color: #fff;
}

ul.footNav.terms li {
  display: inline-block;
  margin: 0 5px;
  
}

ul.footNav.terms li a {
  background-color: #F16272;
  padding: 10px 1em;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: .0625em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

ul.footNav.terms li a:hover {
  background-color: #259AD4;
}



footer.terms p  {
  color: #F16272;
}

footer.terms p a {
  color: #F16272;
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

footer.terms p a:hover {
  color: #F16272;
  opacity: .80;
}


/*SIDEBAR*/

a.button {
  display: inline-block;
  background-color: #F16272;
  padding: 10px 1em;
  margin: 0 5px;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: .0625em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

a.button:hover {
  background-color: #259AD4;
}

.social img {
  display: inline-block;
  width: 40px;
  margin-right: 5px;
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}

.social img:hover {
  opacity:.90;
}

/*Slideout Search*/

.cd-filter form {
  padding: 0;
  padding-top: 15px;
}

input.button {
  font-family: "proxima-nova",sans-serif;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  font-size: 16px;
  display: inline-block;
  background-color: #F16272;
  padding: 10px 1em;
  border: none;
  margin: 0 5px;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}
input.button:hover {
  background-color: #259AD4;
}

form.sideS input[type="text"] {
  padding: 0;
  width: 95%;
  padding: .8em;
  font-size: 14px;
  box-shadow: none;
  outline: none;
  background-color: #ffffff;
  border-color: #9A9A9A;
  margin-bottom: 15px;
  border-radius: 0;
  margin-left: 5px;

}



/*DOWNLOAD ICON*/
li.lazy {
  position: relative;
}
li img.downIt {
  width:55px;
  position: absolute;
  bottom: 0;
  right:0;
  opacity: 0;
  -moz-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}

li:hover img.downIt {
  width:75px;
  position: absolute;
  bottom: 0;
  right:0;
  opacity: 1;
}



/*SUBSCRIBE */
.subscribe {
  position: absolute;
  top:0;
  right:0;
  height: 50px;
  line-height: 50px;
  padding: 0 30px 0 24px;
  background: transparent url("../img/coffee.svg") no-repeat left center;
  width: auto;
  color: #9a9a9a;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.3rem;
  z-index: 4;
  background-position: left center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;

}

.subscribe:hover {
  color: #F16272;
  background: transparent url("../img/heart.svg") no-repeat left center;
}

.cd-main-content.is-fixed .subscribe {
  position: fixed;
}

.sharecare {
  position: absolute;
  top:0;
  right:0;
  height: 50px;
  line-height: 50px;
  padding: 0 30px 0 24px;
  background: transparent url("../img/heart.svg") no-repeat left center;
  width: auto;
  color: #9a9a9a;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.3rem;
  z-index: 4;
  background-position: left center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;

}

.sharecare:hover {
 color: #F16272;
  background: transparent url("../img/sharecare.svg") no-repeat left center;
 
}

.cd-main-content.is-fixed .sharecare {
  position: fixed;
}

/*SLIDEOUT*/

.cd-filter::before {
  background-color: #F7F6F6;

}

.cd-filter-trigger.filter-is-visible, .cd-filter-trigger.filter-is-visible:hover {
 color: #F16272;
}

.cd-filter .cd-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  line-height: 50px;
  width: 60px;
  color: #ffffff;
  font-size: 1.3rem;
  text-align: center;
  background: #F16272;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 3;
}

.no-touch .cd-filter .cd-close:hover {
  background: #E25A6B;
}

/*HEADER & CAMERA */

h1.left {
  font-family: "proxima-nova",sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  color: black;
  float: left;
  font-size: 18px;
  padding: 45px;
  position: absolute;
  top:0;
  left:0;
}
h1.right {
  font-family: "proxima-nova",sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  color: black;
  float: right;
  padding: 45px;
  font-size: 18px;
  position: absolute;
  top:0;
  right:0;
}

h1.right a {
  color: black;
}

h1.right a:hover {
  color: #F16272;
}


.camera {
  height: 350px;
  margin-top: 125px;
  margin-bottom: 25px;
  width: 100%;
  background: #F16272;
  border-top: 68px solid #F7F6F6; 
  border-bottom: 68px solid #F7F6F6;
  position: relative; 
}
img.front  {
  position: absolute;
  margin: auto;
  text-align: center;
  width:300px;
  top: 0; left: 0; bottom: 0; right: 0;
}
img.top  {
  position: absolute;
  margin: auto;
  top: 0; left: 0;right: 0; 
  margin-top: -142px;
}
img.red  {
  position: absolute;
  top: 0; left: 165px;
  margin-top: -46px;
}
img.flash  {
  position: absolute;
  top: 0; right: 165px;
  margin-top: -60px;
}

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

  .camera {
    margin-top:100px;
  }
  h1.left, h1.right {
    padding: 35px 35px 0;
  }
  img.top  {
    width:250px;
    position: absolute;
    margin: auto;
    top: 0; left: 0;right: 0; 
    margin-top: -122px;
  }
  img.red  {
    position: absolute;
    top: 0; left: 45px;
    margin-top: -46px;
  }
  img.flash  {
    position: absolute;
    top: 0; right: 45px;
    margin-top: -60px;
  }


}

@media only screen and (max-width: 700px) {
  h1.left {
    text-align: center;
    text-transform: uppercase;
    color: black;
    padding: 40px 0 0;
    float: none;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  h1.right {
    display: none;
  }
  .camera {
    margin-top: 85px;
  }

}

@media only screen and (max-width: 500px) {
 img.red  {
  position: absolute;
  top: 0; left: 10px;
  margin-top: -46px;
}
img.flash  {
  margin-top: -48px;
  top: 0; right: 10px;
  width:50px;
}


}

/*BREAKPOINTS*/

@media only screen and (max-width: 998px) {
  .subscribe.hidden-xs {
    display: none;
  }
  .sharecare.hidden-xs {
    display: none;
  }
}

@media only screen and (max-width: 998px) {
  .subscribe .visible-xs {
    display: none;
  }
  .subscribe {
    padding: 0 30px 0 5px;
  }
  .sharecare .visible-xs {
    display: none;
  }
  .sharecare {
    padding: 0 30px 0 5px;
  }
}
@media only screen and (min-width: 999px) {
  .visible-xs {
    display: none;
  }

}

@media only screen and (max-width: 1135px) {
  br.hidden-xs {
    display: none;
  }
}

@media only screen and (max-width: 769px) {
  ul.footNav li  {
    display: block;
    margin:15px;
  }
  ul.footNav li a, ul.footNav.terms li a{
    display: block;
  }
  .about {
    margin: 35px 15px;

  }
  footer p {
    font-size: 12px;
  }
}

/*BACK TO THE TOP*/


.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(237,76,95, 0.8) url(../img/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: rgba(237,76,95, 1);
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

hr.light {
 opacity: .25;
}

.cd-filter {
  min-width: 280px;
}

.cd-filter-content p strong {
  font-weight: bold;
}







