@media screen and (max-width: 768px) {
    .menu-profile {
        width: 100%;
        box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
        display: block;
    }
    .list-menu {
        display: block;
        justify-content: space-between;
        align-items: center;
        position: relative;
        background-color: #874614;
    }
    .menu-items {
        margin-top: 30px;
    }
    .menu-profile .menu-items ul {
        grid-template-columns: 1fr;
        grid-gap: 0px;
        background-color: #874614;
    }
    .menu-profile .menu-items li {
        background-color: #874614;
        list-style: none;
    }
    .menu-profile .menu-items ul li a {
        text-decoration: none;
        color: #ffffff;
        font-weight: 500;
        /* font-size: 1.2rem; */
        box-shadow: none;
        margin-bottom: 0px;
    }
    .menu-profile .menu-items select {
        /* padding: 10px 0px; */
        text-decoration: none;
        color: #ffffff;
        font-weight: 500;
        /* font-size: 1.2rem; */
        box-shadow: none;
        background-color: #874614;
    }
    .list-menu .checkbox {
        position: absolute;
        display: block;
        height: 60px;
        width: 100%;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }
    .list-menu .hamburger-lines {
        display: flex;
        height: 26px;
        width: 32px;
        position: relative;
        top: 17px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .list-menu .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #ffffff;
    }
    .list-menu .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }
    .list-menu .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }
    .list-menu .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }
    .menu-profile .menu-items {
        box-shadow: inset 0 0 2000px #874614;
        width: 100%;
        display: flex;
        max-height: 0px;
        flex-direction: column;
        transition: all ease-in-out 0.6s;
        text-align: center;
    }
    .menu-profile .menu-items li {
        /* margin-bottom: 10px; */
        /* font-size: 1.5rem; */
        font-weight: 500;
    }
    .list-menu input[type="checkbox"]:checked~.menu-items {
        max-height: 500px;
    }
    .list-menu input[type="checkbox"]:checked~.hamburger-lines .line1 {
        transform: rotate(45deg);
    }
    .list-menu input[type="checkbox"]:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }
    .list-menu input[type="checkbox"]:checked~.hamburger-lines .line3 {
        transform: rotate(-45deg);
    }
    .data {
        padding: 5px;
    }
    .avatar-img {
        width: 75px;
        height: 75px;
    }
    .profile-name {
        margin-left: 10px;
    }
    .pro-logo {
        margin: 0px;
    }
    .block {
        margin: 0px;
    }
}

@media screen and (max-width: 426px) {
    .font-profile {
        font-size: 18px;
    }
    .profile-con {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0.5rem;
    }
    .data {
        padding: 0px;
        margin: 0px 10px;
    }
    .data1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .data1 p {
        margin: 0px;
        margin-left: 10px;
    }
    .block {
        margin: 0px;
        margin-bottom: 10px;
    }
    .profile-name {
        margin-top: 15px;
        font-size: 20px;
    }
}