/* Page Navigation */
nav{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    gap: .2rem;
    font-size: 12px;
    /* margin: 1rem 0rem; */
}
nav a{
    text-decoration: none;
    color: var(--text);
    display: flex;
    padding: 1rem 1rem;
    border-radius: 0rem 0rem 1rem 1rem;
    transition: 0.3s;
    cursor: pointer;
}
nav a:hover {
    transition: 0.5s;
    font-size: 13px;
    transition: 0.5s;
    background-color: rgb(255, 255, 255);
    color:  rgba(0, 0, 0, 0.801);
    border-radius: 0rem 0rem 1rem 1rem;
}
/* Section Navigation */
.nav2{
    transition: 0.5s;
    font-size: .8rem;
    position: relative;
    bottom: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 100%; */
    z-index: 11;
    /* height: 100%; */
    font-size: 10px;
}
.nav2 ul{
    color: black;
    display: flex;
    background-color: rgb(255, 255, 255);
    padding: .5rem 1rem;
    margin: 0;
    border-radius: 1rem 1rem 0rem 0rem;
}
.nav2 ul li{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    padding: .8rem 1rem;
    border-bottom: .1rem solid transparent;
    transition: border 0.35, color 0.5s;
    cursor: pointer;
    list-style: none;
    line-height: 1;
}
.nav2 ul li:hover {
    transition: 0.5s;
    background-color: rgba(0, 0, 0, 0.459);
    color: white;
}
/* Bottom */
.bottom{
    position: relative;
    display: flex;
    /* background-color: green; */
    width: 100%;
    z-index: 10;
    height: 3rem;
    justify-content: space-between;
    bottom: -3.5rem;
}
.trademark{
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    border: 3px solid transparent;
    transition: border 0.1s, color 0.1s;
}
.logo {
    display: flex;
    /* background-color: red; */
}
.f, .i, .r {
    width: 1.5rem; /* Adjust the size of the circle */
    height: 1.5rem; /* Adjust the size of the circle */
    border-radius: 50%; /* This creates a circle */
    border: .1rem solid rgba(255, 255, 255, 0.349); /* Border color */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: .4rem;
}

@media screen and (max-width: 600px) {

    body, html{
      overflow: hidden;
    margin: 0%;
    }

    nav{
      font-size: 12px;
      justify-content: center;
    }
    nav a:hover{
        font-size: 13px;
    }

    
  .bottom{
    font-size: .5rem;
  }
  .trademark{
    font-size: .5rem;
  }
  .logo{
    gap: .15rem;
  }

  .f, .i, .r {
    width: .5rem; /* Adjust the size of the circle */
    height: .5rem; /* Adjust the size of the circle */
  }
  
  .nav2{
    font-size: .4rem;
  }
  .nav2 ul{
    padding: .5rem;
  }
  .nav2 ul li{
    padding: .5rem .4rem;
    border-radius: .6rem;
  }
  
}