header {
    position: sticky;
    top: 0;
    z-index: 100;
}


.top-banner {
    background-image: url("../assets/images/start.png"), url('../assets/images/top-banner-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.enterprises {
    background-image: url('../assets/images/enterprises-bg.jpg');
    background-size: cover;
    background-position: center;
}

.compony-logo-sec {
    border: 1px solid rgba(0, 92, 161, 0.50);
    background: #FFF;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.14);
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-dots {
    display: none;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
}

body * {
    font-family: "Roboto", sans-serif;
}

.thankyou  {
    background: url(../assets/images/start.png) repeat-y;
    padding: 150px 0;
     animation: waveMove 40s linear infinite;
}

@keyframes waveMove {
  0% {
    background-position-y: 0;
}
100% {
      background-position-y: -200%;
  }
}