.menu-item, .menu-item-with-submenu {
    font-size: 20px;
  }

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 37%;
    transform: translateX(-50%);
    z-index: 999;
}

.menu-item-with-submenu:hover .submenu {
    display: block;
}

.menu-item-with-submenu:hover {
    height: 10rem;
}

.dropdown a {
    display: inline-block;
    height: 37px;
    background-color: #0F3171;
    width: 160px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding-top: 14px;
    padding-left: 20px;
    border: 2px solid #fff;
    text-decoration: none;
}

.dropdown a:nth-child(3) {
    border-top: none;
}

.dropdown a:hover {
    font-size: 20px;
    font-weight: 500;
    color: rgb(162, 162, 179);
    text-decoration: none;
}