.model-sticky-navbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index:10;
}
.model-sticky-navbar.show{
  transform: translateY(0);
}
.model-sticky-navbar-container {
  display: grid;
  align-items: start;
  width: 100%;
  grid-template-columns: 1fr min-content;
  grid-template-rows: auto auto;
  background: rgba(153, 153, 153, 0.40);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.scrl-top-btn {
  background: url("../images/move-to-top-icon.svg") no-repeat center center;
  width: 60px;
  height: 50px;
  padding: 3px 5px;
  display: none;
  cursor: pointer;
  margin-top: 39px;
  grid-area: 1/2/auto/3;
  justify-self: end;
}

.scrl-top-btn.show {
  display: block;
}

.popover-button {
  width: 100%;
  font-size: 13px;
  color: var(--white);
  background-color: transparent;
  border: none;
  line-height: 1;
  padding: 12px 14px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-right-btn {
  grid-area: 2/2;
}

.cn-right {
  line-height: 1;
  padding: 24px 15px 23px;
  width: 160px;
  background-color: var(--first-color);
  color: var(--white);
  font-size: 13px;
  font-weight: var(--fw-light);
}

.cn-right:hover {
  background-color: var(--first-color);
  color: var(--white);
}

/* new */
.arrow {
  background: url("../images/sticky-nav-white-arrow.svg") no-repeat;
  width: 14px;
  height: 8px;
  font-size: 0;
  text-indent: -9999px;
  transition: transform 0.3s ease;
}

.arrow.open {
  transform: rotate(180deg);
}

/* MENU */
.model-sticky-menu {
  display: none;
  grid-area: 1/1/auto/3;
  justify-self: stretch;
  margin-inline-end: 8.8rem;
  flex-direction: column;
  row-gap: 24px;
  padding: 40px 15px 20px;
}

.model-sticky-menu.open {
  display: flex;
}

.model-sticky-menu a {
  color: var(--white);
  font-size: 13px;
  font-weight: var(--fw-light);
  position: relative;
  padding: 9px 16px;
  line-height: 1.538;
  font-family: var(--mmc-font);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.model-sticky-menu a:after {
  content: "";
  background: url("../images/btn-arrow-mob.svg") no-repeat;
  background-size: 10px 10px;
  width: 10px;
  height: 10px;
  filter: brightness(0) invert(1);
}

.model-sticky-menu a:hover {
  background-color: var(--white);
  color: var(--black);
}

.model-sticky-menu a:hover:after {
  filter: inherit;
}

@media(min-width:768px) {
  .model-sticky-menu::before {
    content: "";
    width: 2px;
    background-color: rgba(255, 255, 255, 0.20);
    display: block;
    position: absolute;
    left: 0;
    top: 18px;
    height: calc(100% - 32px);
  }
}
@media(min-width:992px){
  .popover-button{
    display:none;
  }
  .model-sticky-menu{
    display:flex;
    flex-direction: row;
    gap: 27px;
  margin: 0;
  padding: 0 0 0 10px;
  position: relative;
  }
  .model-sticky-navbar-container{
    width:auto;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  }
  .scrl-top-btn{
    display:block;
    margin:0;
  }
  .model-sticky-menu li a, .cn-right {
  line-height: 1;
  padding: 21px 15px 19px;
}
  .model-sticky-menu li a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background:none;
    background-color:var(--red);
    transition: 0.3s;
    filter: inherit;
  }

  .model-sticky-menu li a.active:after {
    width: 100%;
  }
.model-sticky-navbar{
  padding: 12px 0;
  text-align: center;
}
.model-sticky-menu a{
  font-size:15px;
}
.model-sticky-menu a:hover{
  background-color:transparent;
  color:var(--white);
}
}
@media(min-width:1280px){
   .model-sticky-menu a,.cn-right {
    font-size:var(--fz);
  }
  .scrl-top-btn{
    background-size:20px 20px;
  }
}