/* Export CSS */

/* Smooth Scroll */

html {
  scroll-behavior: smooth;
}

/* Animation of IFFT, and Text */


  .img2 {
    z-index: 2;
    display: block;
    width: 100%;
    position: absolute;
    top: 18rem;
    animation: fadeInLeft; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 1.5s; /* don't forget to set a duration! */
    
  }
  .box {
    transition: box-shadow .3s;
    width: 320px;
    height: 400px;
    margin: 50px;
    border-radius:10px;
    border: 1px solid #ccc;
    background: #fff;
    float: left;
    
  }
  .box:hover {
    box-shadow: 0 0 20px rgba(33,33,33,.2); 
  }



  a.states:link, 
  a.states:visited {
    
    color: black;
    text-decoration: none;
  }
  
  a.states:hover, 
  a.states:active {
    
    color: black;
    text-decoration: none;
  }
 

    
  


/* Featurettes
------------------------- */

.featurette-divider {
    margin: 3rem 0; /* Space out the Bootstrap <hr> more */
  }
  
  /* Thin out the marketing headings */
  .featurette-heading {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;
  }

  .fh2 {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;

  }

  /* Responsive CSS */

  @media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
      margin-bottom: 1.25rem;
      font-size: 1.25rem;
      line-height: 1.4;
    }
  
    .featurette-heading {
      font-size: 50px;
    }
  }

  @media (min-width: 320px) and (max-width:639px){
    .featurette-heading {
        font-size: 30px;
    }
  }
  
  @media (min-width: 62em) {
    .featurette-heading {
      margin-top: 7rem;
    }
    .fh2 {
        margin-top: 2rem;
      }
  }

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    bottom: 3rem;
    z-index: 10;
  }
  
  /* Declare heights because of positioning of img element */
  .carousel-item {
    height: 32rem;
    background-color: #777;
  }
  .carousel-item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 32rem;
  }
  
  
  /* EXPORT LOWER THE CAROUSEL
  -------------------------------------------------- */
  
  .carousel-indicators li {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  filter: invert(100%);
  }
  .carousel-indicators {
  bottom: -50px;
  }

  /* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .marketing h2 {
    font-weight: 400;
  }
  .marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
  }


    
    /* BOTTOM NAV */
    
    .bottom-navbar li {
      display: inline-block
    }
    
    .bottom-navbar ul {
      font-size: .75rem;
      text-transform: uppercase;
      list-style: none;
      padding: 1.5em 0;
      text-align: center;
      margin: 0;
    }
    
    .bottom-navbar a {
      color: rgba(0, 0, 0, .5)
    }
    
    .bottom-navbar a:focus,
    .bottom-navbar a:hover {
      color: rgba(0, 0, 0, .7);
      background-color: transparent;
      text-decoration: none
    }
    
    .bottom-navbar li:after {
      margin: auto .25rem auto .5rem;
      color: #ef4135;
      content: "\002f \002f"
    }
    
    
    .bottom-navbar li:last-child:after {
      margin: 0;
      content: ""
    }
    
    