/*@import "bourbon";*/

html {
  min-height: 100%;
}

body {
  height: 100%;
}

// length of each slide in seconds
$animation-delay: 6s;

.slideshow {
  list-style: none;
  z-index: 1;
  li {
    span {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0px;
      left: 0px;
      color: transparent;
      background-size: cover;
      background-position: 50% 50%;
      background-repeat: none;
      opacity: 0;
      z-index: 0;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      // multiply slide duration by the total number of slides
      @include animation(imageAnimation $animation-delay * 4 linear infinite 0s);
    }
    h3 {
      position: absolute;
      text-align: center;
      z-index: 2;
      bottom: 150px;
      left: 0;
      right: 0;
      opacity: 0;
      font-size: em(65px);
      font-family: "Josefin Sans", sans-serif;
      text-transform: uppercase;
      color: #fff;
      // multiply slide duration by the total number of slides
      @include animation(titleAnimation $animation-delay * 4 linear 1 0s);

      @media only screen and (min-width: 768px) {
        bottom: 30px;
        font-size: em(130px);
      }

      @media only screen and (min-width: 1024px) {
        font-size: em(175px);
      }
    }
  }
}

// add and remove new slides here, maintaning the animation-delay format
.slideshow li:nth-child(1) span {
  background-image: url(images/1.jpg);
}
.slideshow li:nth-child(2) span {
  background-image: url(images/2.jpg);
  @include animation-delay($animation-delay);
}
.slideshow li:nth-child(3) span {
  background-image: url(images/3.jpg);
  @include animation-delay($animation-delay * 2);
}
.slideshow li:nth-child(4) span {
  background-image: url(images4.jpg);
  @include animation-delay($animation-delay * 3);
}
.slideshow li:nth-child(5) span {
  background-image: url(images/5.jpg);
  @include animation-delay($animation-delay * 4);
}
.slideshow li:nth-child(6) span {
  background-image: url(images6.jpg);
  @include animation-delay($animation-delay * 5);
}

// animation for the slideshow images
@include keyframes(imageAnimation) {
  0% {
    opacity: 0;
    @include animation-timing-function(ease-in);
  }
  12.5% {
    opacity: 1;
    @include animation-timing-function(ease-out);
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

// animation for the title
@include keyframes(titleAnimation) {
  0% {
    opacity: 0;
  }
  12.5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

// modernizr is used to show the first slide as a fallback for when css animations are not supported
.no-cssanimations .slideshow li span {
  opacity: 1;
}
html {
  min-height: 100%;
}

body {
  height: 100%;
}
.text-center {
    z-index: 1;
}
.slideshow {
  list-style: none;
  z-index: 0;
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
.slideshow li span {
  width: 100%;
  height: 100%;
  position: absolute;
  color: transparent;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
    min-height: 35rem;
    padding: 15rem 0;
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(22,22,22,.1)),color-stop(75%,rgba(22,22,22,.5)),to(#161616));
    background: linear-gradient(to bottom,rgba(22,22,22,.1) 0,rgba(22,22,22,.5) 75%,#161616 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
  -webkit-animation: imageAnimation 24s linear infinite 0s;
  -moz-animation: imageAnimation 24s linear infinite 0s;
  animation: imageAnimation 24s linear infinite 0s;
}
.slideshow li span:after {
  content:'';
  width: 100%;
  height: 100%;
  top: 0;left:0;
  position: absolute;
    background: -webkit-gradient(linear,left top,left bottom,from(rgba(22,22,22,.1)),color-stop(75%,rgba(22,22,22,.5)),to(#161616));
    background: linear-gradient(to bottom,rgba(22,22,22,.1) 0,rgba(22,22,22,.5) 75%,#161616 100%);
}
.slideshow li h3 {
  position: absolute;
  text-align: center;
  z-index: 2;
  bottom: 150px;
  left: 0;
  right: 0;
  opacity: 0;
  font-size: 4.0625em;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  color: #fff;
  -webkit-animation: titleAnimation 24s linear 1 0s;
  -moz-animation: titleAnimation 24s linear 1 0s;
  animation: titleAnimation 24s linear 1 0s;
}
@media only screen and (min-width: 768px) {
  .slideshow li h3 {
    bottom: 30px;
    font-size: 8.125em;
  }
}
@media only screen and (min-width: 1024px) {
  .slideshow li h3 {
    font-size: 10.9375em;
  }
}

.slideshow li:nth-child(1) span {
  background-image: url(images/1.jpg);
}

.slideshow li:nth-child(2) span {
  background-image: url(images/2.jpg);
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  animation-delay: 6s;
}

.slideshow li:nth-child(3) span {
  background-image: url(images/3.jpg);
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  animation-delay: 12s;
}

.slideshow li:nth-child(4) span {
  background-image: url(images/4.jpg);
  -webkit-animation-delay: 18s;
  -moz-animation-delay: 18s;
  animation-delay: 18s;
}

.slideshow li:nth-child(5) span {
  background-image: url(images/5.jpg);
  -webkit-animation-delay: 24s;
  -moz-animation-delay: 24s;
  animation-delay: 24s;
}

.slideshow li:nth-child(6) span {
  background-image: url(images/6.jpg);
  -webkit-animation-delay: 30s;
  -moz-animation-delay: 30s;
  animation-delay: 30s;
}

@-webkit-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }
  12.5% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes imageAnimation {
  0% {
    opacity: 0;
    -moz-animation-timing-function: ease-in;
  }
  12.5% {
    opacity: 1;
    -moz-animation-timing-function: ease-out;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  12.5% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes titleAnimation {
  0% {
    opacity: 0;
  }
  12.5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes titleAnimation {
  0% {
    opacity: 0;
  }
  12.5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes titleAnimation {
  0% {
    opacity: 0;
  }
  12.5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.no-cssanimations .slideshow li span {
  opacity: 1;
}
#logos{
  position: relative;
  display: inline-block;
  width: 100%;
    height: 100%;
    padding: 120px 60px 120px 60px;
}
.grid{
  width: 50%;
  height: 50%;
  float: left;
  background: red;
}
.align-items-center {
    -ms-flex-align: flex-end!important;
    align-items: flex-end!important;
    padding-bottom: 30px;
}
.btn-primary {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 0;
}
.fas.fa-arrow-down{
  line-height: 48px;
}
.about-section {
    padding-top: 2rem;}
.masthead{
  padding: 25rem 0 0rem 0;
}
.text-uppercase {
       color: #897447;
    padding-bottom: 30px;
}
#mainNav .navbar-brand {
    padding: .5rem 0;
    color: #b99b5c;
}
@media (min-width: 992px){
  #mainNav.navbar-shrink {
    background-color: #161616;
}
#mainNav.navbar-shrink .nav-link:hover {
    color: #897447;
}
#mainNav.navbar-shrink .navbar-brand {
    color: #b99b5c;
}
#mainNav.navbar-shrink .nav-link {
    color: #f8f9fa;
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: .25rem solid transparent;
}
#mainNav .nav-link {
    -webkit-transition: none;
    transition: none;
    padding: 2rem 1.5rem;
    color: rgb(255, 255, 255);
}
#mainNav.navbar-shrink .nav-link.active {
    color: #897447;
    outline: 0;
    border-bottom: .25rem solid #897447;
}}
.projects-section {
    padding: 5rem 0;
}
.projects-section .project-text hr {
    border-color: #897447;
    border-width: .25rem;
    width: 30%;
}
.mb-5:not(.text-white-50), .my-5 {
    margin-bottom: 0!important;
}
.about-section p {
    margin-bottom: 0;
}
.signup-section {
    padding: 10rem 0;
    background: -webkit-gradient(linear,left top,left bottom,from(rgb(69, 69, 69)),color-stop(75%,rgba(22,22,22,.5)),to(#161616)),url(img/IMG_1499-1.jpg);
    background: linear-gradient(to bottom,rgb(69, 69, 69) 0,rgba(22,22,22,.5) 75%,#161616 100%),url(img/IMG_1499-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
}
@media (max-width: 992px){.ml-0, .mx-0 {
     margin-left: auto!important; 
}

#mainNav {
    background-color: #232323;
}
.masthead{
  padding: 25rem 0 0rem 0;
  margin-top: 65px; */
}
.d-none {
    display: block!important;
}}
.bg-light {
    background-color: rgba(22,22,22,.8)!important;
}
.center-image{
  text-align: center;
  display: flex;
  justify-content: center;
      align-items: center;
          min-height: 300px;
              background-color: white;
}
.center-image img{
  max-height: 240px;
}
.mr-0, .mx-0 {
    margin-right: auto!important;
}
.contact-section .card hr {
    border-color: #b99b5c;
}
.text-primary {
    color: #b99b5c!important;
}
a {
    color: #b99b5c;
}
.contact-section .card {
    border: 0;
    border-bottom: .25rem solid #b99b5c;
        padding: 0!important;
}
h4.text-uppercase {
    color: #897447;
    padding-bottom: 0px;
}
#mainNav .navbar-toggler {
    font-size: 24px;
    padding: .75rem;
    color: #deb869;
    border: none;
}
.navbar-light .navbar-nav .nav-link {
    color: #ffffff;
}
.nav-link {
    display: block;
    padding: 1rem 1rem;
}