@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body{
  
  font-family: "Roboto", serif;
 
  font-style: normal;
  

}

a{
  text-decoration: none;
}
ul{
  list-style: none;
  text-decoration: none;
}
.main-container {
  width: 100%;
  background-color: transparent; /* Default background color */
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
  /* z-index: 10; */
  height: 150px;
}
.main-container:hover{
  background-color: white;
 
}


.main-container.scrolled {
  background-color: white; /* Background color on scroll */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for better visual effect */
}
a {
  text-decoration: none;
  position: relative;
  display: block;
}
.margin-top-180
{
  margin-top:180px;
}
@media (max-width: 768px) {
  .margin-top-180
  {
    margin-top:80px;
  }

  .main-container.scrolled {
    background-color: transparent;
    height:0px;
}
.main-container {
  width: 100%;
  background-color: transparent;
  height: 0px;
}
.margin-top-80
{
    margin-top:80px;
}
}