@import url('https://fonts.googleapis.com/css2?family=Gloock&display=swap');

/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color: black;
}

.navbar-brand{
    font-family: "Gloock", serif;
    font-weight: 100;
    font-style: normal;
  }

/* hero background image */
.bgimage {
    height:100vh;
    width: 100%;
    background: url('images/bg.jpg');
    background-size:cover;
    background-position: center;
    position:relative;
}
/* text css above hero image*/
.hero_title {
    font-size: 4.5rem;
    text-align: left;
    margin-left: 10%;
}
.hero_desc {
    font-size: 2rem;
    text-align: left;
    margin-left: 6%;
}
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.col-lg-8 p{
    margin-top: 20px;
    font-size: 1.5em;
}

.col-lg-4 img{
    border-radius: 40px;
}


/* spacing on all sections */
 #about, #experience,#services, #portfolio, #contact {
    margin-top: 4rem;
    padding-top: 4rem;
}

/* Resume Box
---------------------*/
.resume-box {
    background: #ffffff;
    box-shadow: 0 0 1.25rem rgba(31, 45, 61, 0.08);
    border-radius: 10px;
  }
  .resume-box ul {
    margin: 0;
    padding: 30px 20px;
    list-style: none;
  }
  .resume-box li {
    position: relative;
    padding: 0 20px 0 60px;
    margin: 0 0 30px;
  }
  .resume-box li:last-child {
    margin-bottom: 0;
  }
  .resume-box li:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 20px;
    border-left: 1px dashed #fc5356;
    bottom: 0;
  }
  .resume-box .icon {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    color: #fc5356;
    line-height: 40px;
    background: #ffffff;
    text-align: center;
    z-index: 1;
    border: 1px dashed;
    border-radius: 50%;
  }
  .resume-box .time {
    background: #fc5356;
    color: #ffffff;
    font-size: 10px;
    padding: 2px 10px;
    display: inline-block;
    margin-bottom: 12px;
    border-radius: 20px;
    font-weight: 600;
  }
  .resume-box h5 {
    font-weight: 700;
    color: #20247b;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .resume-box p {
    margin: 0;
  }
  
  .resume-box li:after {
      content: "";
      position: absolute;
      top: 0px;
      left: 20px;
      border-left: 1px dashed #fc5356;
      bottom: 0;
  }


#contact {
    padding-bottom: 4rem;
}
/* about section image css */
.imageAboutPage {
    width: 100%;
}

.img-container {
    display: flex;
    margin-top: 20%;
    align-items: center;
    justify-content: center;

    height: 80px; /* Set a fixed height for all images */
  }
  .img-container img {
    max-height: 100%;
    max-width: 100%;
  }

/* services section css */
.servicesText.card {
    height: 280px;
    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;
}

/* 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;
}