.main {
    align-content: start;
}

.top-3 {
    background-blend-mode: soft-light;
}

.top-3__content {
    position: relative;

    max-width: 1160px;

    padding: 95px 16px;
    gap: 40px;
    margin: 0 auto;
}

.top-3__image {
    position: absolute;

    max-height: 100%;
    max-width: 100%;

    top: 0;
    right: 0;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.top-3__top {
    width: 70%;

    grid-template-columns: auto 1fr;
    gap: 20px;

    z-index: 1;
}

.top-3__top-icon {
    width: 44px;
    height: 44px;

    justify-content: center;
    align-items: center;
}

.top-3__top-icon svg {
    width: 20px;
    min-width: 20px;
    height: auto;

    fill: var(--main);
    filter: drop-shadow(0 0 5px var(--main));
}

.top-3__top-right-area {
    max-width: 60%;

    gap: 30px;
}

.top-3__title {
    color: var(--white);
}

.top-3__descr {
    font-size: var(--fs-4);
    color: var(--grey);
}

.top-3__blocks {
    gap: 40px;
    display: grid;
    place-items: center;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    z-index: 1;
}

.top-3__block {
    position: relative;

    width: 260px;

    padding: 45px;
    gap: 5px;
    justify-content: center;
    box-sizing: border-box;

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

    border-radius: var(--br-3);

    overflow: hidden;
}

.top-3__nick-area {
    gap: 10px;
    align-items: center;
}

.top-3__icon svg {
    height: 16px;
    min-height: 16px;
    width: auto;

    fill: var(--white);
}

.top-3__nick {
    font-size: var(--fs-6);
    color: var(--white);
}

.top-3__sales {
    text-align: center;

    font-size: var(--fs-2);
    color: var(--white-transparent-60);
}

.top-3__value {
    position: absolute;

    height: 126px;
    width: auto;

    left: 40px;
    top: 30px;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.top-3__bottom-line {
    position: absolute;

    width: 100%;
    height: 6px;

    bottom: 0;
    left: 0;

    background-color: var(--main);
}

.top-3__bottom-line--1 {
    background-color: var(--main);
}

.top-3__bottom-line--2 {
    background-color: var(--main-1);
}

.top-3__bottom-line--3 {
    background-color: var(--main-2);
}

@media (max-width: 1064px) {
    .top-3__image {
        width: 70%;
    }
}

@media (max-width: 820px) {
    .top-3__image {
        display: none;
    }

    .top-3__top {
        width: 100%;

        grid-template-columns: 1fr;
    }

    .top-3__top-icon {
        display: none;
    }

    .top-3__blocks {
        flex-direction: column;
    }

    .top-3__block {
        width: 100%;
    }
}

@media (max-width: 300px) {
    .top-3__block {
        padding: 45px 20px;
    }
}

.top-7 {
    height: 100%;

    background-blend-mode: soft-light;
}

.top-7__content {
    max-width: 1160px;

    padding: 60px 16px;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
}

.top-7__block {
    padding: 25px 40px;
    justify-content: space-between;
    gap: 20px;
    align-items: center;

    background-color: var(--light-black-1);
    border-radius: var(--br-2);
}

.top-7__block:last-child {
    grid-column: 1 / 3;
}

.top-7__left-area {
    gap: 5px;
}

.top-7__nick {
    font-size: var(--fs-6);
    color: var(--white);
}

.top-7__sales {
    font-size: var(--fs-2);
    color: var(--white-transparent-60);
}

.top-7__link-profile {
    padding: 15px 13px;
    text-align: center;

    font-size: var(--fs-3);
    color: var(--white);
    border-radius: var(--br-1);
    border: 1px solid var(--main-dark-1);
}

@media (max-width: 820px) {
    .top-7__content {
        grid-template-columns: 1fr;
    }

    .top-7__block:last-child {
        grid-column: 1 / 2;
    }
}

@media (max-width: 500px) {
    .top-7__block {
        flex-direction: column;
        align-items: stretch;
    }

    .top-7__left-area {
        grid-auto-flow: column;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 300px) {
    .top-7__block {
        padding: 20px;
    }

    .top-7__sales {
        display: none;
    }
}

@media (hover: hover) {
    .top-7__link-profile:hover {
        background-color: var(--main);
        border: 1px solid var(--main);
    }
}

.top-3__block {
    pointer-events: none;
}

@media (max-width: 1200px) {
    .top-3__blocks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .top-3__blocks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .footer__content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .top-3__nick {
        font-size: 16px;
    }
}