/* HEX COLORS
Dark Blue: #222C43
Orange: #F7941D #FF8E07
Light Grey: #F4F4F4
Dark Grey: #A8ACB4*/

html, body{
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
}
h1{
  font-weight: 600;
  font-size: 2.7rem;
}
h2{
  font-weight: 500;
  font-size: 1.8rem;
}
h3{
  font-weight: 500;
  font-size: 22px;
}
.h2{
  font-size: 1.7rem;
}
.brand-orange{
  color: #FF8E07;
}

.btn{
  background-color: #FF8E07;
  color: #FFFFFF;
  font-weight: 600;
  padding: 8px 16px;  
  transition: all 0.15s ease-in-out;
  border-radius: 8px;
}

.btn:hover{
  background-color: #FA961E;
  color: #FFFFFF;
  box-shadow: 5px 2px 10px rgba(0, 0, 0, 0.2);
}
.btn-tert{
  color: #FF8E07;
  font-weight: 600;
  padding: 8px 16px;
  transition: all 0.15s ease-in-out;
  border-radius: 8px;
  margin: 0px 8px
}

.btn-tert:hover{
  background-color:rgba(250, 151, 30, 0.25);
  
  
}

/* NAVIGATION */
.contact-bar{
  height:32px;
  background-color: #222C43;
}
.contact-bar .container{
  height: inherit;
}
.contact-bar a{
  color: #A8ACB4;
}


.navbar{
  background: rgba(255,255,255,1);
  box-shadow: 0px 0px 10px #222C43;
}
.nav-link:hover{
  color: #F7941D;
}
.nav-link.active{
  color: #F7941D;
}
.navbar .dropdown-item:hover{
  background-color: #FFFFFF;
}
.navbar .dropdown-item.active{
  background-color: #FFFFFF;
  color: #F7941D;
}
.navbar .dropdown-menu{
  background-color: #FFFFFF;
}
@media screen and (min-width: 769px){
  .navbar-nav .nav-link::after{
    content:'';
    display: block;
    background-color: #F7941D;
    height: 4px;
    width: 0%;
    margin-left: -10%;
    transition: all ease-in-out 250ms;
  }
  .navbar-nav .nav-link:hover::after{
    width: 120%;
  }
  .navbar-nav .nav-link.active::after{
    width: 120% !important;
  }
}
.dropdown-menu{
  margin-top: 0px;
  background: rgba(255,255,255,1.0);
  border-style: none;
  display: none;
}
.dropdown .dropdown-icon{
  transform: rotateZ(0deg);
  transform-origin: center;
  transition: transform 0.2s linear;
}
.dropdown.show .dropdown-icon{
  transform: rotateZ(180deg);
  transform-origin: center;
}
@media screen and (max-width: 414px) {
  .form-control.btn{
    width: 230px !important;
  }
}
.navbar a{
  color: #222C43;
  transition: all 0.2s linear;
}
.navbar a:hover{
  color: #F7941D;
}

/* BANNER */

.banner{
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  align-items: center;
  width: 100%;

}
#home-banner{
  background-image: url(../img/black-mountain-banners/Hardscape-20.jpg);
}
#services-banner{
  background-image: url(../img/black-mountain-banners/lawn-edging-rocks-bushes.jpg);
}
#landscaping-banner{
  background-image: url(../img/black-mountain-banners/lawn-edging-rocks-bushes.jpg);
}
#hardscaping-banner{
  background-image: url(../img/black-mountain-banners/backyard-paver-patio-with-sitting-area.jpg);
}
#waterscaping-banner{
  background-image: url(../img/black-mountain-banners/waterfall-installation-with-pond.jpg);
}
#softscaping-banner{
  background-image: url(../img/black-mountain-banners/plantings-around-building-rock-edging.jpg);
}
#lawncare-banner{
  background-image: url(../img/black-mountain-banners/lawn-mowing-grass-long.jpg);
}
#irrigation-banner{
  background-image: url(../img/black-mountain-banners/irrigation-system-running.jpeg);
}
#gallery-banner{
  background-image: url(../img/black-mountain-banners/installing-hardscape-stairs-rock-edge.jpg);
}
#reviews-banner{
  background-image: url(../img/black-mountain-banners/rock-retaining-wall-with-bushes.jpg);
}
#about-banner{
  background-image: url(../img/black-mountain-banners/installing-paver-stairs.jpg);
}
@media screen and (max-width: 769px){
  .banner{
    height: 520px;
  }
  .radial-overlay{
    height: 520px;
  }
  .about-circle{
    height: 40px;
    width: 40px;
  }
  .about-circle i{
    font-size: 26px;
  }
  .service-image-container{
    height: 300px;
  }

}
@media screen and (min-width: 769px){
  .banner{
    height: 720px;
  }
  .radial-overlay{
    height: 720px;
  }
  .about-circle{
    height: 64px;
    width: 64px;
  }
  .about-circle i{
    font-size: 32px;
  }
  .service-image-container{
    height: 48%;
  }
}
.radial-overlay {
  background: radial-gradient(circle, rgba(34, 44, 67, 0.65) 0%, rgba(34, 44, 67, 0.8) 100%);
}
#banner-info{
  color: #F4F4F4;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-in-out;
}
#banner-info.fade-in{
  transform: translateY(0px);
  opacity: 1;
}
.service-overlay{
  position: absolute;
  background-color: rgba(34, 44, 67, 0.7);
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 20px;
  transition: all 0.5s ease;
}
.service-title{
  color: #F4F4F4;
  font-size: 16px;
  position: absolute;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s ease;
  border-bottom: solid 2px #F4F4F4;
}
.service-container:hover .service-title{
  color: #F7941D;
  border-bottom: solid 2px #F7941D;
}
.service-text{
  color: #F4F4F4;
  position: absolute;
  transition: all 0.5s ease;
}
.service-container .btn{
  position: absolute;
  transition: all 0.4s ease;
}
.service-container:hover .btn{
  display: block;
  transition: all 0.5s 0.1s ease;
}

@media screen and (min-width: 1200px){
  .service-title{
    top: 30%;
  }
  .service-container:hover .service-title{
    top: 30%;
  }
  .service-text{
    top: 100%;
  }
  .service-container:hover .service-text{
    top: 44%;
  }

  .service-container .btn{
    top: 120%;
    width: 200px;
  }
  .service-container:hover .btn{
    top: 68%;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px){
  .service-title{
    top: 20%;
  }
  .service-container:hover .service-title{
    top: 5%;
  }
  .service-text{
    top: 100%;
  }
  .service-container:hover .service-text{
    top: 24%;
  }
  .service-container .btn{
    top: 120%;
    width: 180px;
  }
  .service-container:hover .btn{
    top: 72%;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px){
  .service-title{
    top: 15%;
  }
  .service-container:hover .service-title{
    top: 5%;
  }

  .service-text{
    top: 100%;
  }
  .service-container:hover .service-text{
    top: 24%;
  }
  .service-container .btn{
    top: 120%;
    width: 180px;
  }
  .service-container:hover .btn{
    top: 72%;
  }
}
@media screen and (max-width: 767px){
  .service-title{
    top: 6%;
  }
  .service-container:hover .service-title{
    top: 10%;
  }
  .service-text{
    top: 100%;
  }
  .service-container:hover .service-text{
    top: 28%;
  }
  .service-container .btn{
    top: 120%;
    width: 120px;
  }
  .service-container:hover .btn{
    top: 46%;
  }
}


#services-section{
  overflow: hidden;
}
#services-container.fade-in{
  opacity: 1;
}
.service-container{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0px, 0px, 0px, 0px;
}
.service-container .service-image{
  object-position: left top;
  transform: scale(1.5);
  transition: transform 0.5s ease;
}
.service-container:hover .service-overlay{
  height: 100%;
}

#about-service{
  opacity: 0;
  transition: all 1s ease-in-out;
}
#about-service.fade-in{
  opacity: 1;
}

#gallery-section{
  background-color: #222C43;
  color: #F4F4F4;
  overflow: hidden;
}
.gallery-container{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0px, 0px, 0px, 0px;
}
.gallery-container .img-gallery{
  object-position: left top;
}
.gallery-container:hover .gallery-overlay{
  height: 100%;
}

.gallery-overlay{
  position: absolute;
  background-color: rgba(34, 44, 67, 0.8);
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.gallery-overlay i{
  color: #F7941D;
}
.search-circle{
  position: absolute;
  height: 64px;
  width: 64px;
  background-color: #FFFFFF;
  border-radius: 100px;
  transition: all 0.1s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.gallery-container:hover .search-circle{
  align-items: center;
  justify-content: center;
  opacity: 1.0;
}

#reviews-section{
  background-image: url(../img/black-mountain-banners/flagstone-patio-under-deck-mountains.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: #F4F4F4;

}
#reviewCarousel {
  
  margin: 2rem auto;
}

.review-content {  
  min-height: 260px;
  max-width: 700px;
  margin: 0 auto;
}

.review-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

#about-section{
  overflow: hidden;
}
.about-traits{
  border: solid 2px #F1F1F1;
  border-radius: 5px;
  transition: all 0.1s linear;
}

.about-square{
  height: 100%;
  width: 100%;
  background-color: #F7941D;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s linear;
}
.about-circle{
  background-color: #FFFFFF;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s linear;
}
.about-circle i{
  color: #F7941D;
  transition: all 0.1s linear;
}

.about-traits:hover{
  background-color: #F7941D;
  color: #FFFFFF
}

.about-traits:hover .about-square{
  background-color: #FFFFFF;
}
.about-traits:hover .about-circle{
  background-color: #F7941D;
}
.about-traits:hover .about-circle i{
  color: #FFFFFF;
}
@media screen and (max-width: 551px){
  #estimate-section{
    height: 900px;
  }
  #estimate-section .light-overlay{
    height: 900px;
  }
}
@media screen and (min-width: 768px){
  #estimate-section{
    height: 700px;
  }
  #estimate-section .light-overlay{
    height: 700px;
  }
  #results .form-group{
    width: 478.75px;
  }
  #total-time{
    width: 371px;
  }
}
#estimate-section{
  background-image: url(../img/black-mountain-banners/flowers-planted-in-rocks.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
#estimate-section .light-overlay{
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(234, 234, 234, 0.85);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#estimate-section h2{
  border-bottom: solid 1px #F4F4F4;
  border-left: solid 4px #F7941D;
  border-radius: 5px 0px 0px 0px;
}
.form-box{
  display: block;
  background-color: white;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-in-out;
}
.form-box.fade-in{
  transform: translateX(0px);
  opacity: 1;
}
.estimate-image{
  opacity: 0;
  transform: translateY(20px);
}
.estimate-image.fade-in{
  opacity: 1;
  transform: translateX(0px);
  transition: all 1s ease-in-out;
}
#main-footer{
  background-color: #222C43;
  color: #F4F4F4;
  overflow: hidden;
}
#main-footer .footer-divider{
  display: block;
  position: relative;
  width: 100%;
  height: 4px;
  background-color: #21465D;
}
#main-footer .footer-divider .footer-divider-highlight{
  display: block;
  position: absolute;
  top 0;
  left: 0;
  width: 20%;
  height: 4px;
  background-color: #F7941D;
}
#main-footer li {
  list-style: none;
}
#main-footer a {
  color: #F4F4F4;
  text-decoration: none;
}
#main-footer a.active{
  color: #F7941D;
}
#main-footer a:hover{
  background: none;
  color: #F7941D;
}
#main-footer .form-control{
  border: none;
  background-color: #21465D;
  color: #F4F4F4;
}
#main-footer .form-control::placeholder{
  color:  #A8ACB4;
}
#main-footer button {
  background-color: #F7941D !important;
  height: 100%;
  color: #F4F4F4;
  border-radius: 0px 5px 5px 0px;
}
#main-footer .input-group-text{
  border: none;
}
#main-footer .dropdown-item:hover{
  background-color: #222C43;
}
#main-footer .dropdown-item.active{
  background-color: #222C43;
  color: #F7941D;
}
#main-footer .dropdown-menu{
  background-color: #222C43;
}
#copywrite{
  background-color: #F4F4F4;
  color: #222C43;
  overflow: hidden;
}

.service-nav .nav-link{
  background-color: #F4F4F4;
  color: #222C43;
  border-radius: 5px;
  font-weight: 600;
  height: 58px;
  display: flex;
  align-items: center;
}

.service-nav .nav-link:hover{
  background-color: #F7941D;
  color: #FFFFFF;
}
.service-nav .nav-link.active{
  background-color: #F7941D;
  color: #FFFFFF;
}

#breadcrumb-section{
  background-color: #F4F4F4;
}
.breadcrumb{
  background-color: transparent;
}
.breadcrumb a{
  color: #F7941D;
  text-decoration: none;
}
ol.breadcrumb li+li:before {
  padding: 8px;
  color: #222C43;
  content: ">\00a0";
}

#about-service h3{
  font-size: 20px;
  font-weight: 600;
  color: #F7941D;
}
#about-service p a{
  color: #F7941D;
}
.service-image-container{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0px, 0px, 0px, 0px;
}
.service-image-container .service-image{
  position: absolute;
  bottom: 0px;
}
.tab .gallerylinks{
  border: none;
  background-color: #F4F4F4;
  color: #222C43;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  outline: none;
  transition: 0.3s;
}
.tab .gallerylinks.active{
  border: none;
  background-color: #F7941D;
  color: #FFFFFF;
  width: 100%;
  margin: 0px;
  padding: 0px;
}
.gallerycontent{
  overflow: hidden;
  height: 0px;
  opacity: 0;
  transition: all 0.2s linear;
}

.gallerycontent.active{
  height: 100%;
  opacity: 1;
  transition: all 0.2s linear;
  transition-delay: 0.2s;
}

#interested{
  background-color: #F4F4F4;
}
#interested p{
  font-weight: 600;
  font-size: 18px;
}
#interested-about{
  background-color: #222C43;
}
#interested-about p{
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
}

#owner-picture{
  border-radius: 100%;
  width: 90%;
}

#contact-section a{
  color: inherit;
  text-decoration: none;
}
#contact-section a:hover{
  color: #F7941D;
  text-decoration: none;
}
.contact-info-section{
  opacity: 0;
  transform: translateX(-200px);
  transition: all 1s ease-in-out;
}
.contact-info-section.fade-in{
  opacity: 1;
  transform: translateX(0px);
}

.form-box h2{
  border-bottom: solid 1px #F4F4F4;
  border-left: solid 4px #F7941D;
  border-radius: 5px 0px 0px 0px;
}
.form-box{
  display: block;
  background-color: #F4F4F4;
  border-radius: 5px;
}

#time-form{

}
#time-form .form-group{

}
#time-form .input-group .input-group-text{
  background-color: orange;
  color: white;
  width: 110px;
}

.review-card{
  border: 1px solid #D8DFE5;
  padding: 0px 16px;
  margin: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;  
  align-items: center;
}

.review-card-desc{
  padding: 16px 0px 8px 0px;
  margin: 0px;
  display: flex;
  height: 100%
}
.review-card-star{
  display: flex;
  gap: 2px;
}


.review-card-name{
 font-weight: 600;
}