/* Dropdown Button */
.dropbtn {
    cursor: pointer;
        padding-bottom: 30px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    border-radius: 5px;
    margin-top: 30px;
    left: -20px;
    position: absolute;
    background-color: white;
    min-width: 175px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    cursor: pointer;
}

/* Links inside the dropdown */
.dropdown-content a {
    padding: 16px 15px;
    text-decoration: none;
    display: block;
    COLOR:BLACK;    
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    border-radius: 5px;
}

.dropdown:hover .dropdown-content {
    display: block !important;
}

.custom-carousel{
  MARGIN-TOP: 22PX;
      margin-bottom: 30px
}