/* Custom styles go here */


/* Animations */

/* Page Transitions */
.animate-in {
    -webkit-animation: fadeIn 1s ease-in;
			animation: fadeIn 1s ease-in;
}
.animate-out {
    -webkit-transition: opacity 1s;
			transition: opacity 1s;
    opacity: 0;
}
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animista.net Animation Home Page h1 */
.tracking-in-contract {
	-webkit-animation: tracking-in-contract 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-contract 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}
@keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

/* Customize animate.css */

/* Dog Icon */
.bounce {
  animation-duration: 2s;
  /*animation-delay: 2s;*/
  animation-iteration-count: 1;
}

/* Intro Arrow Icon */
.touch-intro .fadeInDown {
  animation-duration: 1s;
  animation-delay: 2s;
  animation-iteration-count: 1;
}


/* Smooth Scroll to Top */
html {
  scroll-behavior: smooth;
}


/* Typography */
.display-7 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1.2px;
}

.display-8 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1.2px;
}

.text-big-bold {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.6em;
  color: #3d3d3d;
}


/* Project Pages */
.project h2 {
font-weight: 300;
font-size: 2em;
color: #969696;
margin-top: -.22em;
}

.project .category  {
  color: #777;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
  margin-bottom: .15em;
}

.project-text {
line-height: 1.7;
}


/* SVG Project - Scrolling Code Images */
.code-img {
	height: auto;
	width: auto;
	overflow: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 14px;
    height: 9px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #c9c9c9;
    height: 80px;
}

::-webkit-scrollbar-track { 
    background-color: #eaeaea;
	border-radius: 0px;
}

::-webkit-scrollbar-corner { 
  display: none;
  height: 0px; 
  width: 0px; 
}


/* Gallery - Replaced Section Element with div for Validation
Line 1128 styles.css */
.gallery .mix {
  padding: 0;
  max-height: 200px;
  overflow: hidden;
}

.gallery a {
  outline: none;
  width: 100%;
  height: 100%;
}

.gallery a img {
  min-height: 100%;
  width: 100%;
}

.gallery .item {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery .item:hover .overlay {
  opacity: 1;
}

.gallery .item:hover i {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.gallery .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(153, 153, 153, 0.7);
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.gallery .overlay i {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  font-size: 2em;
}


/* Lists & Bullet */
ol {
	list-style: none;
}

ol li::before {
	content: "\2022"; 
	color: #ccc;
	font-size: 30px;
	display: inline-block; 
	width: 1em;
	margin-left: -1em;
	position: absolute;
}

ol li {
	padding-bottom: 1em;
}

.item-list li {
	font-size: .95em;
}

.item-list li::before {
	margin-top: -.35em;
}


/* Footer */
footer .footer-col-3 {
	color: #a8a8a8;
}


/* Scroll to Top Button  */
#toTop {
  display: block !important;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 48px;
  transition: all 0.5s ease-in-out .0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease 0s;
  opacity: 0.5;
  display: none;
  cursor: pointer;
}

#toTop:hover {
  opacity: 1;
}


/* Google Map - Move to separate stylesheet for demo purposes */
/*#map {
    width: 100%; 
	height: 500px; 
}

.info-window {
    font-family: 'Open Sans', sans-serif;
}
.info-content {
    color: #999;
}*/

.maps a {
	text-decoration: underline;
}

/* Sticky Social Share */
.icon-bar {
  position: fixed;
  top: 48%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 6px 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 18px;
  margin-bottom: 3px;
}

.icon-bar a:hover {
  background-color: #777;
}

.facebook {
  background: #444;
  color: white;
}

.twitter {
  background: #444;
  color: white;
}

.google {
  background: #444;
  color: white;
}

.linkedin {
  background: #444;
  color: white;
}

/* Hide Sticky Social Share iPad Landscape and Smaller */
@media (max-width: 1024px) {
	
.icon-bar {
    visibility: hidden;
}

}

/* WebVR page */
.carousel-item a {
  color: #fff;
}

.webvr a {
	text-decoration: underline;
}

/* Social Media Page */
.bg-diagonal {
	background-image: linear-gradient(135deg, #f8f9fa 50%, #ffd3a9 50%); 
	margin-bottom: -2px;
}

#crello a {
	text-decoration: underline;
}

/* Resources Page */
.resources-subheading-top {
	font-weight: 400;
	font-size: 1.75em;
	color: #717171;
	margin-top: 1.5em;
}

.resources-subheading {
	font-weight: 400;
	font-size: 1.75em;
	color: #717171;
	margin-top: 2.5em;
}

/* Parallax Page */
.parallax a {
	text-decoration: underline;
}

/* SVG Page */
#svg a {
	text-decoration: underline;
}







