/* Dropdown Button */
.dropbtn {
    text-transform: uppercase;
    /* text-align: center; */
    border: none;
    color: rgb(0, 7, 222);
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: .05rem;
    font-size: 20px;
    padding: 0px;
    max-width: 150px;
    background-color: white;
    cursor: pointer;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    /* min-width: 160px; */
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    text-transform: lowercase;
    text-decoration: none;
    font-size: 14px;
    border: 2px solid rgb(246, 201, 11);
    display: block;
    width: 150px;
    padding: 8px;
    border-radius: 5px;
    margin-top: 3px;
    margin-bottom: 5px;
    background-color: #fff;
    text-align: right;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {
    color: white;
    background-color: rgb(246, 201, 11)
  }
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {
    display:block; 
    right: -17px;
    left: auto;
}

@media screen and (max-width: 900px) {
    .dropbtn {font-size: 14px; margin-bottom: 2px;}
    .dropdown-content a {
        font-size: 12px;
        width: 110px;
        padding: 5px 8px;
        /* text-align: center; */
    }
    .show {right: -12px;}
}

header * {border-radius: 0;}