.top_bar {
   background-color: #a5a4a1;
}

.social_icons{
    margin-right: 10px;
}

.contact_info {
    color: #ffffff;
}

.my_item {
    height:10px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 10px 25px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.autoResizeImage {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #008CBA;
  }
  
  .overlaycontainer:hover .overlay {
    opacity: 0.5;
  }
  
  .overlaytext {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }