.about {
    pointer-events: none;
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(0, 0, 0, 0.315); */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.about-active {
    visibility: visible;
    opacity: 1;
}

.about-menu {
    pointer-events: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 85%;
    width: 40%;
    min-width: 300px;
    background-color: white;
    overflow: auto;
    border-radius: 10px;
    box-shadow: 0 0 5px 2px #757575;
    transform: translateY(5px);
    transition: transform 0.4s;
}

.about-menu-active {
    transform: translateY(0);
}

.about-list {
    margin: 0;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    overflow: auto;
    border-top: solid 2px #C3C3C3;
    border-bottom: solid 2px #C3C3C3;
}

.about-menu-active {
    transform: translateY(0);
}

.about-logo {
    width: 30%;
}

.about-el {
    width: 90%;
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-welcome {
    text-align: center;
}

.about-cr {
    user-select: text;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    color: #757575;
}

.about-el img {
    border-radius: 10px;
    box-shadow: 0 0 5px 2px #C3C3C3;
}

.about-close {
    cursor: pointer;
    margin: 10px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    width: 150px;
    background-color: #6FB1F6;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.about-close:hover {
    background-color: #599de6;
}