@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.fade-in { 
  animation: fadeIn 1.2s; 
}

.fade-out { 
  animation: fadeOut 1.2s; 
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  display: table;
}

* {
  cursor: none;
}








/* GS3 */

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

body{
	font-family: 'GothamPro', sans-serif;
	font-weight: 300;
}





.masonry-photo {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}




.ocean-blue-light {
  color: #4ebef7;
}

.ocean-blue {
  color: #4292CF;
}

.bg-ocean-blue {
  background-color: #4292CF;
}

.ocean-purple {
  color: #48424e;
}

.bg-ocean-purple {
  background-color: #48424e;
}

.bg-black-03 {
  background-color: rgba(0, 0, 0, 0.03);
}