:root {
  --black: #000000;
  --dark: #121212;
  --medium-dark: #40484f;
  --medium: #6F7E8C;
  --medium-light: #939ea9;
  --light: #aeb6bf;
  --even-lighter: #c2c8cf;
  --white: #ffffff;
  --gold: #F6A620;
}
body {
  margin: 0;
  background-color:  var(--dark);
  color: var(--light);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 300;
}
iframe {
  border: none;
}
.bg-body-black{
  background: var(--black);
}
/* ////////////////// Hero ////////////////// */
.video-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
}
.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}
.hero {
  position:relative;
}
.hero .heading{
  display: block;
  text-align: center;
  position: absolute; 
  top: 40%; 
  left: 0;
  text-align: center; 
  width: 100%; 
 }
.hero .heading h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
  line-height: 1.2;
  text-shadow: 1px 2px 40px rgba(0,0,0,0.65); 
}
.hero .heading h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 1px 2px 30px rgba(0,0,0,0.65);
}
.mobile-hero { 
    background-image: url("https://tomspetter.com/images/site/hero-poster.jpg");
    width: 100%; 
    height: 0; 
    padding-bottom: calc(4 / 7 * 100%);
    background-size: 100% 100%;  
    background-repeat: no-repeat;
    position: relative;
} 
.mobile-hero .heading h2,
.mobile-hero .heading h3{
  color: #fff;
}

/* /////////////// NavBar /////////////// */
.navbar {
  width: 100%;
  background: var(--black);
  padding: 5px 19px;
}
.nav-item {
  margin-right:20px;
  margin-left: 20px;
}
.nav-link {
  color: white;
  font-size: 14px;
  padding-top:20px;
  padding-bottom:20px;
  b
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link  {
  color: #999999;
  border-radius: 8 px;
}
.nav-link:visited {
  color: #ffffff;
} 
.nav-link:hover {
  color: var(--gold);
} 
.logo {
  max-width: 170px;
}

/* /////////////// Custom Mobile Navbar Toggle/////////////// */
.navbar-toggler {
  width: 20px;
  height: 20px;
  position: relative;
  transition: .5s ease-in-out;
}
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}
.navbar-toggler span {
  margin: 0;
  padding: 0;
}
.toggler-icon {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}
.middle-bar {
  margin-top: 0px;
}

/* When navigation is clicked */
.navbar-toggler .top-bar {
  margin-top: 0px;
  transform: rotate(495deg);
} 
.navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
} 
.navbar-toggler .bottom-bar {
  margin-top: 0px;
  transform: rotate(-495deg);
} 
/* State when the navigation is collapsed */
.navbar-toggler.collapsed .top-bar {
  margin-top: -20px;
  transform: rotate(0deg);
}
.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
} 
.navbar-toggler.collapsed .bottom-bar {
  margin-top: 20px;
  transform: rotate(0deg);
}
.breadcrumb {
  margin: 15px 15px 15px 0;
}
.breadcrumb a{
  color: var(--gold);
}
.breadcrumb-item+.breadcrumb-item::before, .breadcrumb-item.active {
  color: var(--medium)
}

/* /////////////// Images /////////////// */
.img-16-9 {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(9 / 16 * 100%);
}
.img-7-5 {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(5 / 7 * 100%);
}
.img-square {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(1 / 1 * 100%);
}

.img-square > img,
.img-16-9 > img,
.img-7-5 > img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* /////////////// Sections /////////////// */
section.about, section.contact, section.blog {
  padding: 130px 0;
}
.about .col {
  padding: 0 30px;
  border: 1px solid red;
}
.about h2 {
  font-size: 3rem;
}

/* /////////////// Typography /////////////// */
h1, h2, h3, h4, h5, h6{
  color: var(--even-lighter);
  font-family: 'Raleway', sans-serif;
}
p.intro {
  font-size: 1.35rem;
  line-height: 180%;
  color: var(--even-lighter);
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-style: italic;
}
p {
  font-size: 1em;
  line-height: 200%;
}
strong {
font-weight: 600;
font-size: 110%;
}
blockquote {
	margin: 1em 3em;
	border-left: 2px solid var(--medium);
	padding-left: 1em; 
}    
hr {
  width:40%;
  margin:40px auto 40px 0;
  background-color: var(--light);
  height: 4px;
  border: none;
  opacity: 1;
}
hr.hr-full{
  width:100%;
  margin:40px 0 40px 0;
  background-color: var(--medium-dark);
  height: 2px;
  border: none;
  opacity: 1;
}
.body-wrap a,  .body-wrap a:visited{
	color: var(--gold);
    text-decoration: none;
}
.body-wrap a:hover {
	color: #fff;
    text-decoration: underline;
}
.btn-outline-light{
  background: rgba(0, 0, 0, .50)
}
.btn-outline-light:hover{
  border-color: var(--gold) !important;
  color: var(--gold);
  background-color: rgba(0, 0, 0, .50)!important;
}
.btn-outline-portfolio{
  background: rgba(0, 0, 0, 1);
  border-color: var(--medium);
  color: var(--medium);
}
.btn-outline-portfolio:hover, .btn-outline-portfolio.active{
  border-color: var(--gold) !important;
  color: var(--gold);
  background-color: rgba(0, 0, 0, 1)!important;
}

/* /////////////// Pagination /////////////// */

.pagination {
  margin-top: 20px;
  margin-bottom: 60px;
}
.pagination:first-child {
  border-radius: 8px 0 0 8px !important;
}
.pagination:last-child {
  border-radius: 0 8px 8px 0 !important;
}
.btn-next {
  float: right;
}
.btn-next > #icon-next{
  display: inline-block;
  width: 28px;
  fill:  var(--white);
  transition: 0.3s;
}
.btn-next:hover > #icon-next{
  fill:  var(--gold);
}
.btn-prev > #icon-prev{
  display: inline-block;
  width: 28px;
  fill:  var(--white);
  transition: 0.3s;
}
.btn-prev:hover > #icon-prev{
  fill:  var(--gold);
}

a.page-link.active{
  fill:  var(--gold);
  color: #000000 !important;
}

/* /////////////// Responsive Embed /////////////// */
.embed-container { 
  position: relative; 
  padding-bottom: 56.25%; 
  height: 0; 
  overflow: hidden; 
  max-width: 100%; 
} 
.embed-container iframe, 
.embed-container object, 
.embed-container embed { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}
/* /////////////// Parallax Slides /////////////// */
.side-parallax {
  background-color: #000000;
  min-height: 100px;
  padding: 180px 120px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-contemporary{
  background-image: url("https://tomspetter.com/images/site/raven-fire.jpg");
}
.parallax-indigenous{
  background-image: url("https://tomspetter.com/images/site/drum-art-rev.jpg");
}
.parallax-commissioned{
  background-image: url("https://tomspetter.com/images/site/imax3d.jpg");
}
.parallax-fun{
  background-image: url("https://tomspetter.com/images/site/turtle-island-rev.jpg");
}
.parallax-contact{
  background-image: url("https://tomspetter.com/images/site/turtle-island.jpg");
}
.parallax-blog{
  background-image: url("https://tomspetter.com/images/site/blog.jpg");
}
.parallax-indigenous,
.parallax-fun{
  text-align: right;
}
.slide-right-text{
  text-align: right;
}

/* /////////////// Instagram /////////////// */
section.instagram {
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
}
.instagram .h2 small{
  font-size: 1rem !important;
}
.instagram a {
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s;
}
.instagram a:hover {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  transition: 0.3s;
}
.instagram span{
  font-size: 3rem;
  margin-right: 40px;
  padding-right: 40px;
  border-right: 2px solid white;
}

/* /////////////// Portfolio /////////////// */
.parallax-portfolio {
  background-image: url("https://tomspetter.com/images/site/house-hippos.jpg");
}
.parallax-contemporary-portfolio {
  background-image: url("https://tomspetter.com/images/site/raven-fire.jpg");
}
.parallax-indigenous-portfolio{
  background-image: url("https://tomspetter.com/images/site/drum-art.jpg");
}
.parallax-commissioned-portfolio{
  background-image: url("https://tomspetter.com/images/site/imax3d.jpg");
}
.parallax-fun-portfolio{
  background-image: url("https://tomspetter.com/images/site/turtle-island.jpg");
}
.portfolio-wrap {
  margin-bottom: 100px;
}
.portfolio-buttons{
  text-align: center;
  margin: 60px 0 60px 0;
}
.glry-item {
  position: relative;
  margin-bottom: 25px;
}
.portfolio-post-image{
max-height: 80vh;
display: block;
margin: 0 auto 0 auto;
}
.portfolio-juxtapose{
max-height: 500px!important;
}
.glry-item .portfolio-item-img {
  position: relative;
  overflow: hidden;
  display: block;
}
.glry-item:hover .portfolio-item-img:after {
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
}
.glry-item:hover .portfolio-detail-title, .glry-item:hover .glry-item:hover .portfolio-item-img:after {
  opacity: 1;
  visibility: visible;
}
.glry-item:hover .portfolio-detail-title {
  top: 25%;
}
.glry-item .portfolio-item-img:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  opacity: 0;
  visibility: hidden;
  background: var(--gold);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: scale(0.95) translate(-50%, -50%);
          transform: scale(0.95) translate(-50%, -50%);
}
.glry-item .portfolio-detail-title {
  opacity: 0;
  left: 50%;
  position: absolute;
  visibility: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.glry-item .portfolio-detail-title {
  color: black;
  font-size: 1.5rem;
  text-align: center;
  top: 20%;
  z-index: 14;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.glry-item .portfolio-buttons a:last-child {
  margin-right: 0;
}
.glry-item:hover .portfolio-item-img:after {
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
}
.glry-item:hover .portfolio-detail-title, .glry-item:hover .portfolio-item-img:after {
  opacity: 1;
  visibility: visible;
}
.glry-item:hover .portfolio-detail-title {
  top: 25%;
}
.portfolio-title {
  font-size: 3.5rem;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  color: var(--medium-light);
}
.related-projects {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 30px;
  color: var(--medium-light);
}
.body-wrap {
  max-width: 75%;
  margin: 20px auto 40px auto;
}
.form-wrapper{
	background-color: #000000;
	border-radius: 8px;
  margin: 10px 0 20px 0;
	padding: 30px 20px 0 20px;
    
}
/* /////////////// Blog /////////////// */
.mb-80{
  margin-bottom: 80px;
}
.blog-post h2{
  color: var(--even-lighter)!important;
  transition: color 0.3s;
  margin-top: 1%;
  margin-bottom: 1%;
}
.blog-post p{
  color: var(--light)!important;
}
.blog-post:hover h2{
  color: var(--gold)!important;
}
.blog-post:hover span{
  border-color: var(--gold) !important;
  color: var(--gold);
  background-color: rgba(0, 0, 0, 1) !important;
}
.blog-post img{
  transition: 0.5s;
  border-radius: 8px;
}
.blog-post:hover img{
  transform: scale(1.05);
}
.blog-post-meta{
  color: var(--medium);
  text-align: right;
}

.text-right{
  text-align: right;
}
.recent-post{
  border-top: 1px solid var(--medium);
}
.recent-post-date{
  color: var(--medium);
}
.recent-post h6{
transition: color 0.3s;
}
.recent-post:hover h6{
  color: var(--gold);
}
.recent-post img{
  transition: 0.5s;
}
.recent-post:hover img{
  transform: scale(1.07);
}
/* /////////////// Pagination /////////////// */
a.page-link {
  color: var(--gold);
}
a.page-link:hover {
  color: var(--even-lighter);
}
a.page-link.active {
  background-color: var(--gold);
  colour: black;
}


/* /////////////// Footer /////////////// */

footer {
  background-color: var(--black);
  padding: 10px 30px;
}
.footer-logo {
  max-width: 170px;
}
.copyright{
  font-size: 14px;
  line-height: 1.5;
  margin-top: 24px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--medium);
  transition: color 0.3s;
}
.copyright a{
  color:  var(--medium);
  text-decoration: none;
}
.copyright a:hover{
  color:  var(--gold);
}
.social-media{
	text-align: right;
}
.social-icon{
  display: inline-block;
  width: 28px;
  margin-top: 30px;
  margin-right:20px;
  fill:  var(--mendium);
  transition: 0.3s;
}
.social-icon:hover{
  fill:  var(--gold);
}
.social-link{
  fill: var(--medium);
}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
  .about .col-sm-12 {
    padding: 0 20px;
  }
}
/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .about h2 {
    font-size: 2.5rem;
  }
}
/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .about h2 {
    font-size: 2rem;
  }
  .instagram span{
    font-size: 2.5rem;
    margin-right: 20px;
    padding-right: 20px;
  }
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .hero .heading h2 {
    font-size: 2.5rem;
    margin: 0;
  }
  .hero .heading h3 {
    font-size: .9rem;
  }
  .navbar-nav li:hover > a {
  background-color: var(--medium-dark);
  color: var(--white);
}
  .nav-link{
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px
  }
  .nav-link.active {
    background-color: var(--medium-dark);
    color: var(--white) !important;
  }
  section.about, section.contact {
    padding: 75px 0;
  }
  .side-sliding h2{
    font-size: 1.3rem;
    text-shadow: 0px 0px 9px rgba(0,0,0,0.88);
  }
  .side-parallax {
    padding: 75px 25px;
  }
  .instagram span{
    border-right: none;
  }
  .footer-logo{
    margin: 0 auto;
    display: block;
  }
  .social-media{
    text-align: center;
  }
  .social-icon{
    margin-right:15px;
    margin-left: 15px;
  }
}
/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .side-parallax {
    padding: 35px 15px;
  }
}