.hero_banner {
    border-radius: 3px;
    position: relative;
}

.hero_banner img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
}

.dummydiv {
    visibility: hidden;
    width: 300px;
}

.close_banner {
  position: absolute;
  top: 2px;
  cursor: pointer;
   background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 8px;
  border-radius: 20%;
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
    .hero_banner img {
        width: 40%;
        height: auto;
    }

    .header_wrapper {
        flex-direction: column;
    }
}