
/* hero background image */
.bgimage {
    height:100vh;
    background: url('images/heroImage.jpeg');
    background-size:cover;
    position:center;
}
/* text css above hero image*/
.hero_title {
    font-size: 4.5rem;
}
.hero_desc {
    font-size: 2rem;
}
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

/* about section image css */
.imageAboutPage {
    width: 100%;
}

/* services section css */
.servicesText.card {
    height: absolute;
    cursor: pointer;
  }
.servicesIcon {
    font-size: 36px;
    text-align: center;
    width: 100%;
}
.card-title {
    text-align: center;
}
.card:hover .servicesIcon {
    color: #008000;
}
.servicesText:hover {
    border: 1px solid #008000;
}


// add class navbarDark on navbar scroll
const header = document.querySelector('.navbar');

window.onscroll = function() {
    var top = window.scrollY;
    if(top >=100) {
        header.classList.add('navbarDark');
    }
    else {
        header.classList.remove('navbarDark');
    }
}

/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color: black;
}

/* social media icons styling */
.social-icons {
    font-size: 100px;
    cursor: pointer;
}
.fa-phone-square:hover, .fa-envelope:hover, .fa-facebook:hover,.fa-instagram:hover,.fa-twitter:hover,.fa-linkedin:hover, .fa-twitch:hover {
    color: #008000;
}
.fab {
    color: #13ba02;
}
.fa-phone-square {

  color: #13ba02

}
.fa-envelope {

  color: #13ba02

}

.nav-link {
    color: #13ba02;
}
.nav-link:hover {
    color: #008000;
	
}

/* footer styling */
#footer {
    background-color: #808080;
    text-align: center;
}

/* spacing on all sections */
#about, #services, #portfolio, #contact {
    margin-top: 2rem;
    padding-top: 2rem;
}
#contact {
    padding-bottom: 2rem;
}


.imageporfolio {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width:100%;
  max-width:900px
}


.carousel carousel-dark slide {
	$carousel-indicator-active-bg:       $black;
	$carousel-control-color:             $black;
	$carousel-dark-indicator-active-bg:  $black;
	$carousel-dark-caption-color:        $black;
	$carousel-dark-control-icon-filter:  invert(1) grayscale(100);
}


/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px) {
  div.example {
    font-size: 80px;
	text-align: center;
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
  div.example {
    font-size: 30px;
	text-align: center;
  }
}


.navbar-brand {
	color: #13ba02;
}


.nav-link {
	color: #13ba02;
}

.navbar-brand:hover {
    color: #129305;
}