/* .brand-item img {
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
} */
/* 
.brand-item img:hover {
    filter: none; 
} */
.back-w{
  background-color: white !important;
}


@media screen and  (max-width: 575px) {

  .brand-item  {
    padding: 0px !important;
  }
  
}

.hero-img{
    max-height: 700px;
    margin-top: 50px;
}

@media screen and (max-width: 575px){

    .hero-img{
        margin-top: 20px;
    }
}

/* glass */
.popup-container {
    position: static;
  width: auto;
  background: rgba(133, 133, 133, 0.2);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  color: #fff;
  z-index: 30;
  transition: all 0.5s ease-in-out;
  }
  
  @media (max-width: 768px) {
    .popup-container {
      backdrop-filter: none;
    }
}
  /* mac header */
  .popup-header {
    position: relative;
    display: flex;
    gap: 8px;
    font-weight: 600;
    padding: 15px 20px 10px;
    font-size: 1.2rem;
    /* after header */
    background:rgb(244,244,244);
    border-bottom:0.5px solid rgba(162,163,164,.4);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 31;
  }


/* 
  .header-link{
    width: 50%;
    height: 65%;
    border: 2px solid rgba(191, 208, 226, 0.4);
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-family: "Itim", sans-serif;
    font-weight: 400px;
    align-items: center;
  } */
  
  .header-link{
    width: 50%;
    height: 65%;
    border: 2px solid rgba(191, 208, 226, 0.4);
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(70, 70, 70);
    font-family: "Arial", sans-serif;
    font-size: 11px;
    font-weight: 400; /* Remove 'px' from font-weight */
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    text-align: center; /* Center-align text (if it spans multiple lines) */
  }
  
  .button-container {
    display: flex;
    align-items: center;
    column-gap: 8px;
  }
  .button-container:hover i {
    opacity: 1;
  }

  .circle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 0;
    outline: 0;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.2s;
  }
  
  .circle-btn i {
    opacity: 0;
    transition: all 0.2s;
    font-size: 0.5rem;
    color: rgb(65, 66, 67);
  }
  
  .circle-btn:hover {
    opacity: 1;
    transform: scale(1.03);
  }  

  
.red {
    background-color: rgb(255, 96, 92);
  }
  
  .red i {
    font-size: 0.8rem;
  }
  
  .yellow {
    background-color: rgb(255, 189, 68);
  }
  
  .yellow i {
    transform: translateY(-3px);
  }
  
  .green {
    background-color: rgb(0, 202, 78);
  }
  
  .green i {
    transform: rotate(90deg);
  }

  .asto{
    width: 100%;
    height: 75%;
    padding-bottom: 52.5%;
    position: relative;
    background-image: url('../images/astro.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  