/* COLORS
primary blue: #0076bb
primary green: #009447

*/



@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.intro-2 {
    background: url("../img/img/park-lg.jpg") no-repeat bottom center;
    background-size: cover;
    background-attachment:fixed;
}

.intro-3 {
    background: url("../img/img/bigparkBW2.jpg") no-repeat bottom left;
    background-size: cover;
    background-attachment:fixed;
}

.intro-8 {
    background: url("../img/img/bigparkBW2.jpg") no-repeat center center;
    background-size: cover;
    background-attachment:fixed;
}

html {
    scroll-behavior: smooth;
}

html,
body,
header,
.view {
    height: 100%;
    line-height: 1.7;
}
nav li a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    font-family: 'Lato', sans-serif;
}

h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color:  #fff;
}

h5 {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color:  #fff;
    padding-bottom: .4em;
}

.bigbold {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 5rem;
    line-height: .9em;
}

.featured {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    
    font-size: 2.5rem;
    color:  #444;
}

.featured-black {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    
    font-size: 2rem;
    color:  #009447;
}

.bg-semmens {
    background: #0076bb;
}

.bg-semmens2 {
    background: #009447;
}

.bg-biltmore-gold {
    background: #9c761c;
}

.footer-icon {
    width: 75px;
    height: auto;
    margin-bottom: 1em;
}

.arrow {
    width: 25px;
    height: auto;
}

.gold-icon {
    height: 50px;
    width: auto;
} 

.bottom {
    position: absolute;
    bottom: 0px;
    right: -80px;
    z-index: 4;
    max-height: 90vh;
    max-width: 50vw;
}

.bottom-tab {
    position: relative;
    bottom: 0px;
    max-height: 40vh;
}

.semlogo {
    height: 150px;
    position: fixed;
    top: 1em;
}

.quote-pic {
    width: 100px;
    height: auto;
}

.slide-indicator {
    margin-bottom: -25px;
}

.carousel-indicators li {
    background-color: #666;
    background-color: rgba(70, 70, 70, 0.5);
  }
  
.carousel-indicators .active {
    background-color: #444;
}

.quote-long {
    height: 350px;
}

.hover-fx:hover {
    opacity: 80%;
    transform: scale(1.01, 1.01);
    transition-duration: .5s;
}

.hvr-green {
    background-color:#0076bb !important;
}

.hvr-green:hover {
    background-color:#009447 !important;
}

.hvr-blue {
    background-color:#009447 !important;
}

.hvr-blue:hover {
    background-color:#0076bb !important;
}

.hvr-blue:focus {
    background-color:#0076bb !important;
}

.email-icon {
    font-size: 5em !important;
}

.email-icon:hover {
    opacity: 80% !important;
    transform: scale(1.1, 1.1) !important;
    transition-duration: .5s !important;
}

.more-roll {
    margin-top: -50px;
}

.issue-img {
    border-radius: 20% 0 0 0;
}

.issue-img:hover {
    opacity: .8;
}

.disclaimer {
    margin: 1em auto 0 auto;
    font-size: .85em;
}

#client-testimonial-carousel {
    min-height: 300px;
}

.slidein {
    animation-duration: 1s;
    animation-name: slidein;
}
      
@keyframes slidein {
    from {
        margin-left: -100%;
        width: 300%;
    }
      
    to {
        margin-left: 0%;
        width: 100%;
    }
}
      


/* Progress Bar */

  
  .progress-bg {
    margin: 0 auto;
    width: 90%;
    height: 78px;
    border-radius: 10px;
    text-align: center;
    -moz-box-shadow:    inset 0 0 10px #ccc;
    -webkit-box-shadow: inset 0 0 10px #ccc;
    box-shadow:         inset 0 0 10px #ccc;
  }
  
  .progress-bar {
    height: 78px;
    border-radius: 10px;
    float: left;
    width: 50%;
    background-color: #009447; 
  }
  
  .progress-bg h3.goal, .progress-bg h3.raised {
    font-family: Arial,sans-serif;
    font-size: 2em;
    font-weight: 600;
    line-height: 78px;
    margin: 0;
    padding: 0;
    text-align: center;
    display: inline;
  }
  
  
  .progress-bg h3.raised {
    color: #fff;
    margin: 14px 25px 0 50px;
    padding: 0 25px 0 0;
  }
  
  .progress-bg h3.goal {
    color: #b2b2b2;
    text-align: center;
  }
  
  body .progress-bg h3.raised {
      -webkit-animation: fadein 4s; /* Safari and Chrome */
         -moz-animation: fadein 4s; /* Firefox */
          -ms-animation: fadein 4s; /* Internet Explorer */
           -o-animation: fadein 4s; /* Opera */
              animation: fadein 4s;
  }
  
  @keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }
  
  /* Firefox */
  @-moz-keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }
  
  /* Safari and Chrome */
  @-webkit-keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }
  
  /* Opera */
  @-o-keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }​
  
  .progress-bg h3.goal {
      float: right;
      display: inline;
      padding: 0 25px 0 0;
    text-align: center;
  }
  
  body .progress-bg div {
      -webkit-animation: progress-bar 2s ease forwards;
      -moz-animation: progress-bar 2s ease forwards;
      -o-animation: progress-bar 2s ease forwards;
      animation: progress-bar 2s ease forwards;
  }
  
  @-webkit-keyframes progress-bar {
      from { width: 0%; }
      to { width: 22.5%; }
  }
  
  @-moz-keyframes progress-bar {
      from { width: 0%; }
      to { width: 22.5%; }
  }
  
  @-o-keyframes progress-bar {
      from { width: 0%; }
      to { width: 22.5%; }
  }
  
  @keyframes progress-bar {
      from { width: 0%; }
      to { width: 22.5%; }
  }
/* /PROGRESS BAR */


@media only screen and (min-width: 500px) and (max-width: 767px) {
    #issues {
      max-width: 65%;
    }
    #about {
        max-width: 65%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (min-width: 1600px) {
    .bottom {
        right: 0px;
    }
}

@media only screen and (min-width: 1800px) {
    #about {
        padding-left: 15%;
        padding-right: 15%;
    }
} 

@media only screen and (min-width: 2000px) {
    .bottom {
        right: 100px;
    }
    .rounded-circle {
        border-radius: 50% !important;
    }
    
}

@media only screen and (max-width: 1200px) {
    .intro-8 {
        background: url("../img/img/bigparkBW2.jpg") no-repeat center right;
    }
}

@media only screen and (max-width: 767px) {
    .blockquote {
        border-left: 0;
        padding: 0;
    }
    .blockquote p {
        font-size: .8em;
        line-height: 1.4em;
    }
    .quote-long {
        height: 400px;
    }
    .sublogo {
        width: 90% !important;
    }
    .bigbold {
        font-size: 4em;
    }
    
}