body {
  /* font-family: Arial, sans-serif; */
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(29, 6, 112);
  /* color: #fff; */
}

#home {
  animation: fadeInAnimation ease 3s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
}

.shadow{
  filter: drop-shadow(4px, 4px, 8px #999999);
}

.text-shadow{
  text-shadow: #aaaaaa 0.05em 0.05em;
}

.tag {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all 2s;
}

.tag.visible {
  opacity: 1;
  transform: translate(0, 0);
}


@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  /* color: #fff; */
  margin-top: 20px;
}

.navbar {
  background-color:  rgb(29, 6, 112);;
}

.navbar a {
  color: #fff;
}

.navbar a:hover {
  color: #00bfff;
}

.navbar .active a {
  background-color: #00bfff;
  color: #fff;
}

.parallax-section {
  /* background-color: #00bfff; */
  background-image:url('images/bg1.jpg'); 
  /*url(https://source.unsplash.com/random/600x600);*/
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  /* margin-top: 50px; */
  /* padding: 0; */
  padding: 100px 0;
}

.parallax-section-enterprise {
  /* background-color: #00bfff; */
  background-image:url('images/bg1.jpg'); 
  /*url(https://source.unsplash.com/random/600x600);*/
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  /* height: 100%; */
  /* margin-top: 50px; */
  /* padding: 0; */
  /* padding: 100px 0; */
}



.parallax-section2 {
  /* background-color: #00bfff; */
  background-image:url('images/bg1.jpg'); 
  /*url(https://source.unsplash.com/random/600x600);*/
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  /* height: 100%; */
  /* margin-top: 50px; */
  padding: 100px 0;
}

.card {
  background-color: #2980b9;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.card:hover {
  background-color: rgb(29, 6, 112);
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.card-info {
  color: rgb(29, 6, 112);
  padding: 20px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}

footer {
  background-color: rgb(29, 6, 112);
  color: #fff;
  padding: 20px;
  margin-top: 50px;
}

/* Centered text */
.flip-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #2980b9;
  color: white;
}

.flip-card-back {
  background-color: #2980b9;
  color: white;
  transform: rotateY(180deg);
}
