/*** Hero ***/

.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/testimg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1; /* Set the opacity value (0.0 to 1.0) */
    z-index: -1; /* Adjust z-index to move it behind other content */
}

.slide-in-text {
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
}

.service-full{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #555555;
  margin-bottom: 10px;
}

.intro{
  hgroup{
    margin: 0;

    p{
      margin: 0;
      color: white;
    }
  }
}

.service-head{
  margin: 0;
}

.service-title{
  color: #c8d1d8;
  margin-bottom: 0;
}

.service-text{
  margin-left: 10px;
}

.employee{
  align-items: center;
}

.employee-img{
  border-radius: 50%;
  text-align:  center;
}

.employee-intro{
  margin-bottom: 80px;
}


.slide-in-text span {
    display: inline-block;
    opacity: 0;
    margin: 0;
    padding: 0;
    transform: translateX(-100%);
    animation: slideIn 1s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Delay the animation for each span */
.slide-in-text span:nth-child(1) {
    animation-delay: 0.5s;
}

.slide-in-text span:nth-child(2) {
    animation-delay: 1s;
}

.slide-in-text span:nth-child(3) {
    animation-delay: 1.5s;
}

.slide-in-text span:nth-child(4) {
    animation-delay: 2s;
}

.logo-list {
    list-style: none;
}

.logo-list img {
    max-width: 100%;
    height: auto;
}

.iphone-nav {
    font-size: 1.5em;
    cursor: pointer;
    display: none;
}

.position {
  color: #B0A66B;
}


.short {
  color: hsl(205, 10%, 50%);
}

span {
  color: #B0A66B;
  font-size: .7em;
}

.servicelogo {
  width: 3em;
  margin-right: .4em;
}

.mainlogo{
  width: 8.75rem;
}

.divider {
    width: 100%;
    height: 1px;
    margin-bottom: 10px;
    background-color: #555555; /* Change the color as needed */
}

.bottomline {
    margin-top: 20%;
    width: 100%;
    height: 1px;
    background-color: #555555; /* Change the color as needed */
}

.logoimg {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 8.75rem;
  display: block;
  margin: auto;
}

.learnhow{
  background-color: transparent;
  transition: background-color 0.5s ease-in-out;
}

.learnhow:hover{
  background-color: #1D9982;
}

.workedwith {
  margin-top: 3em;
}

.hamburger {
    display: none;
    margin-right: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #1D9982;
}

.nav-menu {
  z-index: 1;
  position: fixed;
  right: -100%;
  top: 3.4rem;
  opacity: 90%;
  flex-direction: column;
  background-color: black;
  width: 100%;
  text-align: center;
  transition: 0.3s;
  margin-right: 0 !important;
  box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.05);
}

.nav-menu.active {
    right: 0;
}

.nav-item {
  margin: 1rem 0;
}

.nav-link{
  font-size: 25px;
  color:#1D9982;
  transition: color .1s ease-in-out;
}

.nav-link:hover{
    color: #482ff7;
}





/* Phones - Small screens (portrait and landscape) */
@media only screen and (max-width: 990px) {

  .navbar-sm{
    .nav-menu {
        z-index: 1;
        position: fixed;
        right: -100%;
        top: 3.4rem;
        opacity: 90%;
        flex-direction: column;
        background-color: black;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        margin-right: 0 !important;
        box-shadow:
            0 10px 22px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link{
      font-size: 25px;
      color:#1D9982;
      transition: color .1s ease-in-out;
    }

    .nav-link:hover{
      color: white;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
  }
  .navbar-lg{
    display: none;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  .employee-img-big{
    width: 20%;
    border-radius: 50%;
    text-align: center;
  }


  .employee-img{
    width: 40%;
  }

  hgroup{
    h1{
      font-size: 2em;
    }
    p{
      font-size: 1.2em;
    }
  }
    /* Your styles for phones go here */
}

@media only screen and (min-width: 991px) {
  .navbar-lg{
    display: block;
  }
  .navbar-sm{
    display: none;
  }

  .employee-img-big{
    border-radius: 50%;
    text-align: center;
    float:left;
    overflow: hidden;
    width: 15%;
    margin-right: 20px;"
  }


    /* Your styles for phones go here */
}
