.mainImg div img {
  width: 60%;
}
.editNavbar {
  display: none;
}
.linkStoreImg div img {
  width: 60%;
}
.linkStoreImg2 div img {
  width: 100%;
}
.mobileNavbar {
  display: block;
  z-index: 99;
  padding: 0;
  width: 100%;
  position: fixed;
  left: 0px;
  bottom: 0px;
}

:root {
  --bg-body: #dff9fb;
  --bg-nav: #f3f3f3;
  --color-nav: #f3f3f3;
  --color-nav-active: #0E83AF;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#filter-svg {
  display: none;
}

.navFooter {
  padding: 0;
  position: relative;
  list-style-type: none;
  display: flex;
  z-index: 1;
  background-color: var(--bg-nav);
  height: 80px;
  border-radius: 20px;
  filter: url("#goo");
  width: 90%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  /* border-bottom-right-radius: 20px; */
  left: 50%;
  margin-left: -45%;
}

.navFooter li {
  margin: auto;
}

.navFooter li a {
  text-decoration: none;
  color: var(--color-nav);
  width: 100%;
  height: 100%;
  display: inline-grid;
  place-items: center;
  justify-content: center;
  color: #0E83AF;
  font-size: 30px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.navbarImgico img {
  width: 45px;
}

.navFooter li a:hover {
  color: var(--bg-body);
}

.navFooter li a.nav-item-active {
  color: var(--color-nav-active);
  transform: translateY(-20%);
  font-size: 45px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navFooter .nav-indicator {
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background-color: var(--bg-nav);
  position: absolute;
  top: -35px;
  z-index: -1;
  left: calc(250px - 45px);
  transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* cubic-bezier(0.175, 0.885, 0.32, 1.275) */
}

@keyframes zoom {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.2;
  }
  100% {
    width: 1500px;
    height: 1500px;
    opacity: 0;
  }
}

.mainImg .linkItem {
  position: relative;
}
.mainImg .linkItem .deletexMark{
  position: absolute;
  margin-left: -12%;
  font-size: 12px;
}

.bankImg .linkItem .deletexMark {
  position: relative;
  top: -88%;
  left: 42%;
  font-size: 12px;
}
.linkItemText {
  font-size: 13px;
}

@media only screen and (max-width: 412px) and (min-width: 200px) {
  .mainImg .linkItem {
    position: relative;
  }
  .mainImg .linkItem .deletexMark{
    position: absolute;
    top: -1%;
    left: 88%;
  }
}
