.avt-wrapper {
    display: flex;
    gap: 30px;
    background: #769586;
    max-height: 600px;
    height: 600px;
    overflow: hidden;
}

.avt-nav {
    min-width: calc(100% / 4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px;
    color: #fff;
}

.avt-tab {
    padding: 12px 20px;
    cursor: pointer;
    border-left: 6px solid #1D1D1B;
    transition: 0.2s ease;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
}

.avt-tab:hover {
    border-left: 6px solid #fff;
}

.avt-tab.active {
    border-left: 6px solid #fff;
}

.avt-content {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.avt-panel {
    display: none;
    height: 100%;
    position: relative;
}

.avt-panel.active {
    display: block;
    height: 100%;
}

/* IMAGE */
.avt-panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.avt-text-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 2vw 12px 2vw;
    color: #fff;

    background: linear-gradient(
            180deg,
            rgba(0,0,0,0) 0%,
            #1D1D1B 51%,
            #1D1D1B 100%
    );
}