.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-shadow: 0 4px 2px -2px rgb(0 0 0 / 20%);
    padding: 10px;
    /* border-bottom: solid 1px #D0CFCE; */
    background-color: white;
    border-bottom: solid 1px #D0CFCE;
}

.logo{
    width:80px;
}

.right_info{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.right_info select {
    /* height: 100%; */
    border: 1px solid;
    padding: 5px;
    border-radius: 5px;
}

.left_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.description {
    margin-left: 5px;
    font-size: 15px;
    font-weight: 500;
}

.left_logo a {
  font-size: 25px;
  font-weight: 800;
  margin-left: 5px;
}


@media screen and (max-width: 768px) {
    .top {
        padding: 0;
    }
}