/* html,body,div{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent} */

/* =============================================================================
   My CSS
   ========================================================================== */

/* ---- base ---- */

html,
body {
  width: 100%;
  height: 100%;

  /* background:#111; */
}

/* canvas{
  display:block;
  vertical-align:bottom;
} */


html * {
  font-family: 'Open Sans';
}


.bgimg {
  /* background: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8) ),
                 url('Images/main_wallpaper.jpg') no-repeat center;
    background-size: cover; */
  /* background-color: black; */
  color: white;
  /* height: auto;
  width: 100%; */
  /* display: flex; */
  /* align-items:center;
    justify-content: center; */
}

.theme {
  background-color: black;
  color: white;
}

nav {
  background-color: black;
  margin: 0;
  top: 0;
  overflow: auto;
  position: fixed;
  /* transition: top 0.5s; */
  /* width: 100%; */
  z-index: 99;
  height: auto;
}

/* nav ul {
    margin: 0;
    padding: 50;
    display: flex;

  }*/
/* nav ul {
    margin: 0;
    padding: 50;
    display: flex;

  }
  nav ul li {
    display: inline-block;
    list-style-type: none;
} */
/* nav ul li a {
    color: white;
    display: block;
    line-height: 2 em;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.5s;
  }
  nav ul li:first-child {
    margin-right: auto;
    color: white;
    padding: 10px 0px;
    font-size: 22px;
  }
  nav ul li a.logo {
    background-color: white;
    color: white;
    font-size: 20px;
  } */

nav ul li a {
  color: white;
  font-size: larger;
  font-weight: bold;
  text-decoration: none;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}

nav ul li a:hover {
  color: rgb(134, 188, 37);
  /* text-decoration: underline; */
  padding-bottom: 24px;
  border-bottom: 3px solid rgb(134, 188, 37);
}

.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}


@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0
  }

  to {
    bottom: 0px;
    opacity: 1
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}

.testservicecardbackground {
  height: 13rem;
  width: auto;
  overflow: hidden;
  color: white;
  display: flex;
  vertical-align: middle;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--image_link) no-repeat center;
  background-size: 100%;
  text-align: center;
  padding: 0.5rem;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}


.testservicecardbackground:hover {
  background-size: 150%;
}

.card-text {
  text-align: center;
  font-size: 20px;
  font-weight: bolder;
}

/* ---- particles.js container ---- */

#particles-js {
  width: 100%;
  height: 110%;
  background-color: black;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.footer-section {
  font-size: 14px;
}

.nav-link {
  color: gray;
}

.nav-link:hover {
  color: black;
  font-weight: bold;
  text-decoration: underline;
}

.card-text a {
  text-decoration: none;
  color: white;
  transition: 0.5s;
}

.card-text a:hover {
  text-decoration: underline;
  color: gray;
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}