
.talents-levels-wrapper{
    display: flex;
    max-width: var(--asptt-content-width);
    margin: 0 auto;
    position: relative;
    padding-top: 22px;
    padding-bottom: 18px;
    align-items: center;
}

.asptt-block-talents-levels .asptt-title{
    justify-content: flex-start;
}

.talents-levels-image__container{
    width: 585px;
    height: 190px;
    position: relative;
}

.talents-levels-image{
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    width: 100%;
    height: 275px;
    position: absolute;
    transform: translateY(-50%); 
    top: 50%;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.talents-levels-content{
    width: calc(100% - 585px);
    padding-left: 38px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.talents-levels-content .asptt-title{
    padding-left: 10px;
}

.talents-levels-item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #FFF;
    text-decoration: none;
    padding: 18px 10px;
    font-weight: bold;
}

.talents-levels-item + .talents-levels-item{
    border-top: 1px solid #FFF;
}

.talents-levels-item .fa-angle-right{
    -webkit-transition: transform .4s;
    -moz-transition: transform .4s;
    -ms-transition: transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
}

.talents-levels-item:hover .fa-angle-right{
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}

@media screen and (max-width: 1224px) {
    .talents-levels-wrapper {
        padding-left: var(--asptt-margin-inner);
        padding-right: var(--asptt-margin-inner);

        margin: 0;
    }
}

@media screen and (max-width: 1060px) {
    .talents-levels-image__container { 
        width: 490px;
    }
    .talents-levels-content {
        width: calc(100% - 490px);
    }
}

@media screen and (max-width: 910px) {
    .talents-levels-image__container { 
        width: 440px;
    }
    .talents-levels-content {
        width: calc(100% - 440px);
    }
}

@media screen and (max-width: 768px) {
    .asptt-block.asptt-block-talents-levels.asptt-block-talents-levels {
        padding: 0;
    }

    .talents-levels-wrapper {
        padding: 28px 25px;

        flex-direction: column-reverse;
        gap: 10px;
    }

    .talents-levels-content {
        width: 100%;
        padding-left: 0;
    }
    .asptt-block-talents-levels .talents-levels-content * {
        padding-left: 0;
        padding-right: 0;
    }
    .talents-levels-item{
        font-size: 16px;
    }

    .talents-levels-image__container{
        width: 100%;
        height: max-content;

        aspect-ratio: 585/275;
    }
    .talents-levels-image{
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
        width: 100%;
        height: 100%;
        
        position: static;
        transform: none; 
        top: unset;
    }
}