.right-header-menu-box {
      font-family: pt-futura;
      font-size: 1.5vw;
      color: #FFFFFF;
      text-align: center;
      width: 48%;
      display: inline-block;
      min-height: 10%;
      margin: auto;
      margin-right: 20px;
      padding: 0px;
      float: right;
}
.right-header-menu-item {
      text-align: center;
      width: 20%;
      display: inline-block;
      min-height: 10%;
      margin: auto;
      padding: 0px;
      z-index: 11;
}
.right-header-menu-item:hover {
      color: #C8F464;
}

/* Dropdown Button */
.dropbtn {
  background-color: #468A99;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer; 
  font-family: pt-futura;
  font-size: 1.5vw;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  display: inline-block;
  min-height: 10%;
  margin: auto;
  /*margin-right: 20px;*/
  padding: 0px;
  float: right;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  /*background-color: #2980B9;*/
  color: #C8F464;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  text-align: left;
  width: 100%;
  display: inline-block;
  /*min-height: 10%;*/
  margin: auto;
  padding: 0px;
  display: none;
  position: absolute;
  margin-top: 24px;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  font-size: 18px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #3B8A97;
  color: #222222;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  /*margin-right:100px;*/
  background-color: #468A99;
  opacity: 0.66;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #C8F464;
  opacity: 0.6;
  color: #222222;
}

/* 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:inline-block;}


/*Start media queries*/
/* start of desktop styles */

@media screen and (max-width: 1200px) {
/* start of large tablet styles */

}

@media screen and (max-width: 767px) {
/* start of medium tablet styles */
  .dropbtn {
    font-size: 16px;
  }
}

@media screen and (max-width: 479px) {
/* start of phone styles */
  .dropbtn {
    font-size: 11px;
  }

}

