body::before{
  content: '';
  display: block;
  height: 70px;
}


#text-shadow{
  text-shadow: 2px 2px 2px black;
  font-weight: bolder;
}

.background{
  width: 100%;
  height: 70vh;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url(asset/images/image5.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#background-text{
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#image{
  border-radius: 10px;
}

#video{
  border-radius: 10px;
  width: 100%;
}

.img{
  width: 300px;
  height: 200px;
}

.card-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 850px) {
  .img{
    width: 100%;
  }
}

.card1{
  transition: all .3s;
}


.card1:hover{
  transform: scale(1.07);
}

#card{
  height: 400px;
}

@media screen and (min-width: 768px) {
  #news-input{
    width: 50%;
    margin: auto;
  }
}

#banner{
  height: 60vh;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(asset/images/vul1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 2s ease-in-out;

  animation-name: change;
  animation-duration: 5s;
  animation-delay: 2s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;

}
@keyframes change {
  0%{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(asset/images/vul1.png);
  }
  25%{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(asset/images/vul2.jpg);
  }
  50%{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(asset/images/vul9.jpg);
  }
  75%{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(asset/images/vul10.webp);
  }
  100%{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(asset/images/vul11.jpg);
  }
}

.FAQs, .CARDs, .CONTACTs{
  background-color: #eee;
}


#img-container{
  position: relative;
}

#img-source{
  position: absolute;
  bottom: 0;
  right: 15px;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 10px;
  color: white;
  background-color: #444;
}







