.leagues {
    padding-top: 40px;
    padding-bottom: 60px;
}

.leagues__item {
    margin-top: 120px;
}

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

.league__img {
    --size: 280px;
    position: relative;
    width: var(--size);
    height: var(--size);
    margin-right: 60px;
    flex-shrink: 0;
}

.league__img img {
    position: relative;
    z-index: 1;
}

.league__img::before {
    content: '';
    position: absolute;
    top: 6%;
    left: 8%;
    width: 94%;
    height: 94%;
    border-radius: 50%;
    border: 2px solid var(--color-main-light);
}

.league__desription {
    margin-right: 60px;
}

.league__desription .subheading {
    margin-bottom: 20px;
}

.league__list {
    display: none;
    margin-top: 20px !important;
}

.league__desription .league__list {
    display: block;
}

.league__desription p {
    font-size: 24px;
}

.league__btn {
    margin-left: auto;
}

.league__line {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.league__line img {
    width: 116%;
    height: auto;
    margin-left: -8%;
}

@media screen and (max-width: 1199px) {
    .league__img {
        --size: 260px;
        margin-right: 40px;
    }

    .league__desription {
        margin-right: 40px;
    }

    .league__line {
        height: 280px;
    }

    .league__line img {
        position: absolute;
        top: 0;
        left: 50%;
        width: auto;
        height: 100%;
        transform: translateX(-50%);
        margin-left: 0;
    }

    .league__desription p {
        font-size: 22px;
    }
}

@media screen and (max-width: 991px) {
    .league__img {
        --size: 220px;
    }

    .league__desription {
        margin-right: 0;
    }

    .league__line {
        height: 200px;
        margin-bottom: 60px;
    }

    .league__desription p {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .leagues__item {
        margin-top: 80px;
    }

    .league__img {
        --size: 170px;
    }

    .league__line {
        height: 160px;
    }

    .league__desription p {
        font-size: 16px;
    }
}

@media screen and (max-width: 512px) {
    .leagues__item {
        margin-top: 70px;
    }

    .league__img {
        --size: 140px;
        margin-right: 30px;
    }

    .league__line {
        height: 120px;
        margin: 40px 0;
    }

    .league__desription .league__list {
        display: none;
    }

    .league__list {
        display: block;
    }

    .league__desription .subheading {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 479px) {
    .league__img {
        --size: 110px;
        margin-right: 20px;
    }

    .league__line {
        height: 80px;
    }
}