.mytopnav{
    width: 100%;
}
.topnav {
  background-color: #333;
  overflow: hidden;
  background-color: black;
}
.topnav a.mylogo{
    padding: 0px;
    margin-right: 25px;
}
.topnav a img{
    width: 100%;
    max-width: 80px;
    height: auto;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #ffcc00;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.topnav a i {
    color:#daa520 !important ;
    margin-right: 3px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #494949;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #494949;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}




@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}









.sub-footer {
    width: 100%;
    height: 75px;
    position: fixed;
    left: 0;
    bottom:0;
    background: #000!important;
    backdrop-filter: saturate(125%) blur(10px);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    filter: drop-shadow(0 -2px 0 #ffc700);
    display: none;
}
.myfooter{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}
.navigation {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 60px;
    background: #000!important;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navigation ul {
    display: flex;
    width: 100%;
    max-width: 600px;
    padding-left: 0px;
    overflow: unset;
}
.navigation ul li {
    list-style: none;
    position: relative;
    width: 100%;
    max-width: 120px;
    height: 70px;
}
.navigation ul li a{
    padding-top: 5px;
}
.navigation ul li a .text {
    text-align: center;
    font-size: 16px;
    position: absolute;
    top: 28px;
    left: 0;
}
.navigation ul li a .icon {
    font-size: 25px;
    line-height: 10px;
    transition: 0.5s;
}
.navigation ul li span {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.navigation ul li.action a {
    position: absolute;
    top: 0px;
    padding: 15px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    border-radius: 50%;
}
.navigation ul li.action a .icon {
    font-size: 50px;
}
.navigation ul li.action a .text {
    font-size: 16px;
    line-height: 85px;
}
.fixed-image {
      position: fixed;
      bottom: 5px;
      left: 5px;
     
      z-index: 1000; /* Ensure it stays above other content */
    }
.fixed-image img{
     width: 50px; /* Adjust size as needed */
      height: auto;
    }
@media only screen and (max-width: 768px) {
            /* For mobile phones: */
                  .sub-footer{
                      display: block;
                        }
                        .fixed-image {
      position: fixed;
      bottom: 65px;
      left: 5px;
     
      z-index: 1000; /* Ensure it stays above other content */
    }
}
