/* display background color black on navbar scroll */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

.navbarScroll.navbarDark {
    background-color: black;
}

/* hero background image */
.bgimage {
    height:100vh;
    background: url('images/heroImage.jpg');
    background-size: auto;
    background-position-x: -20px;
    position:relative;
}
/* text css above hero image*/
.hero_title {
    font-size: 4.5rem;
    color: aqua;
}
.hero_desc {
    font-size: 1.9rem;
    color: yellowgreen;
}
.typing-1 {
    font-size: 2.5rem;
    color: black;
    font-family: sans-serif;
    position: relative;
    overflow: hidden;
    cursor: cell;
    color: cadetblue;
}

.typing-1::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: antiquewhite;
    animation: typing 2s linear infinite;
    color: cadetblue;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
.hero-text {
    text-align: center;
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

#title {
    font-size: 1.9rem;
    font-family: sans-serif;
    font-weight: bold;
    text-align: left;
    margin-top: 0;
}

.row mt-3 p {
    font-size: 1.5rem;
    font-family: sans-serif;
    line-height: 1.5;
    text-align: justify;
}

ul {
    list-style-type: disc;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

.fade-in {
    animation: fade-in 1s ease-in-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-left {
    animation: slide-in-left 1s ease-in-out;
}

@keyframes slide-in-left {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slide-in-right 1s ease-in-out;
}

@keyframes slide-in-right {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* 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%;
}

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

/* social media icons styling */
.social-icons {
    font-size: 36px;
    cursor: pointer;
}
.fa-facebook:hover,.fa-instagram:hover,.fa-twitter:hover,.fa-linkedin:hover, .fa-twitch:hover {
    color: #008000;
}
.fab {
    color: #000000;
}
/* footer styling */
#footer {
    background-color: #808080;
    text-align: center;
}