.slide-bg-image{
    background-repeat: no-repeat;
    background-size: 110% 110%;
    background-position: center center;
    animation: shrink 7s infinite alternate;
}
.para-desc{
  text-align: justify;
}

.footer{
  text-align: justify;
}
.text-justify {
  text-align: justify;
}

#topnav .navigation-menu > li > a{
  padding-right: 5px;
}


#videoModal .modal-dialog {
      max-width: 800px;
      margin: 30px auto;
  }

#videoModal .modal-body {
  position:relative;
  padding:0px;
}

#videoModal .modal-content {
  overflow : hidden;
  background: transparent;
  border: none;
}

#videoModal .close {
  position:absolute;
  top:0;
  z-index:999;
  font-size:2rem;
  font-weight: normal;
  color:#fff;
  opacity:1;
  background: transparent;
  border: 0;
}

video {
  width: 100%;
  max-height: 100%;
}

.video-thumbnail{
  border-radius: 15px;
  overflow: hidden;
}
.overlay-thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #0058ff;
  opacity: 0.3;
  bottom: 50%;
  -webkit-transform: translateY(50%);
}

.form-icon .icons{
  top: 24px;
}

.form-control{
  padding: 20px;
}

@keyframes shrink {
    0% {
      background-size: 110% 110%;
    }
    100% {
      background-size: 100% 100%;
    }
  }