* {
    padding: 0px;
    margin: 0px;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Poppins';
    overflow-x: hidden;
    scroll-behavior: smooth;
}

table:not(#contact_tbl):not(#footer_tbl):not(#tbl_top_links) td {
    width: 50%;
    text-align: center;
    padding: 60px;
}

.emoscape-title {
  font-size: 4.1vmin;
  text-align: left;
  font-weight: 400;
  line-height: 1.4;
  margin: 40px 0 20px;
  font-family: 'Poppins';
  display: block;
  color: white;
}

.emoscape-para {
  font-size: 12px;
  line-height: 1.8;
  font-weight: normal;
  margin-bottom: 10px;
  font-family: 'Poppins';
  color: white;
}

.parent_page {
  height: 100%;
  width: 100%;
  display: block;
  margin: auto;
  position: relative;
}
.parent_page_2 {
  display: block;
  margin: auto;
  position: relative;
  background-color: #000;
  color: #fff;
}
.parent {
    height: 100%;
    width: 100%;
    background-image: url("/common/images/Background-image.png");
    background-size: cover;
    display: block;
    margin: auto;
    background-repeat: no-repeat;
    position: relative;
}
.parent a {
    position: absolute;
    bottom: 0;
    left: 50%;
    text-align: center;
    display: block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
}
.parent a:hover {
    opacity: .5;
}
.parent a span {
    position: absolute;
    top: -240%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
}

.parent a span::before {
    position: absolute;
    top: 0%;
    left: -90%;
    z-index: -1;
    content: '';
    width: 44px;
    height: 44px;
    box-shadow: 0 0 0 0 rgba(255,255,255,.1);
    border-radius: 100%;
    opacity: 0;
    -webkit-animation: sdb03 3s infinite;
    animation: sdb03 3s infinite;
    box-sizing: border-box;
  }
  @-webkit-keyframes sdb03 {
    0% {
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    60% {
      box-shadow: 0 0 0 60px rgba(255,255,255,.1);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes sdb03 {
    0% {
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    60% {
      box-shadow: 0 0 0 60px rgba(255,255,255,.1);
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }

.logo_text {
    margin: 7.5%;
}

.container {
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

input {
    border: 1px solid #ccc !important;
}

button {
    color: #fff !important;
    background-color: #000 !important;
    padding: 10px;
} 

.banner {
  width: 100%;
  height: 30px;
  background-color: #000;
  /* border: 3px solid #666; Grey border */
  margin: 0 auto; /* Center alignment */
  overflow: hidden;
  /* margin-top: 30px; */
  /* left: 30%; */
}

/* Style the black area inside the banner */
.banner-black-bg {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: relative;
}

/* Style the text element with color */
.banner-text {
  position: absolute;
  top: 0;
  left: 100%;
  font-size: 15px;
  font-weight: bold;
  color: #FBFFFF;
  white-space: nowrap;
  /* text-shadow: 0 0 5px #fff, 0 0 10px #fff; */
}


@media only screen and (max-width: 800px) {
    table:not(#contact_tbl):not(#tbl_top_links) td {
        display: inline-block;
        width: 90%;
        padding: 20px;
        text-align: center;
    }
    .parent a {
        left: 45%;
    }
    .logo_text {
      margin-top: 75%;
  }
}