.dropdown {
    position: relative;
    display: inline-block;
    margin: 0 5px;
}

.drop_btn {
    margin: 5px auto;
    min-width: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #F3F4F6;
    border-radius: 20px;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-align: left;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
}

.drop_btn .transform {
    margin-left: 10px;
    fill: #333333;
    transform: rotate(180deg);
    transition: transform 0.2s ease-in;
}

.dropdown:hover .drop_btn .transform {
    transform: rotate(360deg);
    fill: #ffffff;
}

.dropdown-wrapper{
    display: none;
    position: absolute;
    width: 100%;
    z-index: 10;
}
.dropdown-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-align: center;
    background: #F3F4F6;
    border-radius: 20px;
    min-width: 100%;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    overflow: hidden;
}

.dropdown-content a {
    color: black;
    transition: all .3s ease;
    padding: 12px 16px;
    text-decoration: none;
    display: block;

}

.dropdown-content a:hover,
.dropdown-content a.active{
    background-color: #D1D5DB;
}

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

.dropdown:hover .drop_btn {
    background-color: #0073ce;
    color: #ffffff;
}

@media (max-width : 767px) {
    .drop_btn{
        min-width: 130px;
        font-size: 14px;
    }
}