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

/* hero background image */
.bgimage {
    max-width: 100%;
    height:100vh;
    background: url('images/home-page.jpeg');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    position:relative;
}

/* 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: rgb(239, 201, 8);
    font-family: Bradley Hand, cursive;
    font-weight: bold;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* spacing on all sections */
/* #about, #services, #portfolio, #contact {
    margin-top: 4rem;
    padding-top: 4rem;
} */
#contact {
    padding-bottom: 4rem;
}
/* about section image css */
.imageAboutPage {
    width: 100%;
}

/* certifications section css */
.certificationsText.card {
    height: 280px;
    cursor: pointer;
  }
.certificationBadge {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
    width: 100px;
}

.certificationsIcon {
    font-size: 36px;
    text-align: center;
    width: 100%;
}
.card-title {
    text-align: center;
}
.card-img-top {
    width: 100%;
    height: 16vw;
    object-fit: cover;
}

.card:hover .certificationsIcon {
    color: #008000;
}
.certificationsText:hover {
    border: 1px solid #008000;
}
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0);
}

/* social media icons styling */
.social-icons {
    font-size: 36px;
    cursor: pointer;
}
.fa-facebook:hover,.fa-instagram:hover,.fa-twitter:hover,.fa-github:hover, .fa-linkedin:hover, .fa-envelope:hover {
    color: #008000;
}
.fab {
    color: #000000;
}
.fa {
    color: #000000;
}

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