.head_text {
    color: #78828C;
    font-size: 12px;
}

.f-right {
    float: right;
}

.f-left {
    float: left;
}

.p-leftt20 {
    padding-left: 20px;
    padding-top: 20px;
}

.p-bottom20 {
    padding-bottom: 20px;
}

.title {
    font-size: 32px;
    color: #5A6269;
}

.bg_white {
    background-color: white;
}

.dropbtn {
    display: flex;
    align-items: center;
    padding: 11px 16px;
    color: var(--dark-5);
    text-transform: capitalize;
    position: relative;
    border-radius: 5px;
    /* font-weight: lighter; */
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin: 14px 0;
}

.dropbtn:hover,
.dropbtn:focus {
    color: #06a17e;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    margin-top: -20px;
    margin-left: 15px;
    display: none;
    position: absolute;
    background-color: #f2f2f2;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {
    background-color: #f0f0f0
}

.show {
    display: block;
}