.fourthScreenMain {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 64px;
    margin-top: 24px;
}

.inFourthScreenMain {
    max-width: 1760px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.titleFourthScreenMain {
    margin-bottom: 16px;
    width: 100%;
    color: #0E1735;
    font-family: "Inter Tight";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.blockItemsMoreInteresting {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.topBlockInteresting,
.bottomBlockInteresting {
    display: flex;
    gap: 16px;

}

.itemMoreInteresting {
    color: #1B1B1B;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 16px;
    background: #EFEFEF;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #EFEFEF;
    cursor: pointer;
    transition: 0.24s;
}

.itemMoreInteresting:hover {
    transform: translate3d(0px, -10px, 0px)
}

.itemMoreInteresting:hover .btnNextCat {
    background: #7552DD;
}

.itemMoreInteresting:hover svg path {
    stroke: #fff;
}

.titleMoreInteresting {
    z-index: 3;
    position: relative;
    font-family: "Inter Tight";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.inItemMOreInteresting {
    position: relative;
    box-sizing: border-box;
    height: 200px;
    padding: 20px;
    width: 100%;
}

.blockImage {
    position: absolute;
    top: 0;
    display: flex;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: hidden;
}

.blockImage img {
    width: 75%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.bigSizeCard {
    width: 872px;

}

.smallSizeCard {
    width: 428px;

}

.btnNextCat {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    right: 20px;
    border-radius: 200px;
    background: var(--White, #FFF);
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    cursor: pointer;
}

.pinkColorBlock {
    color: white !important;
    background: linear-gradient(180deg, #7552DD 0%, #9E7EFF 100%);
}

@media screen and (max-width: 1810px) {
    .fourthScreenMain {
        padding: 0 32px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1200px) {

    .fourthScreenMain {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 64px;
    }

    .inFourthScreenMain {
        max-width: 1040px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .titleFourthScreenMain {
        margin-bottom: 16px;
        width: 100%;
        color: #0E1735;
        font-family: "Inter Tight";
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .blockItemsMoreInteresting {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .topBlockInteresting,
    .bottomBlockInteresting {
        display: flex;
        gap: 16px;

    }

    .itemMoreInteresting {
        color: #1B1B1B;
        display: flex;
        align-items: center;
        justify-content: center;
        display: flex;
        border-radius: 16px;
        background: #EFEFEF;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        background: #EFEFEF;
    }

    .titleMoreInteresting {
        z-index: 3;
        position: relative;
        font-family: "Inter Tight";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .inItemMOreInteresting {
        position: relative;
        box-sizing: border-box;
        height: 200px;
        padding: 20px;
    }

    .blockImage {
        position: absolute;
        top: 0;
        left: 0;
    }

    .bigSizeCard {
        width: 512px;

    }

    .smallSizeCard {
        width: 248px;

    }



    .pinkColorBlock {
        color: white !important;
        background: linear-gradient(180deg, #7552DD 0%, #9E7EFF 100%);
    }

}

@media screen and (max-width: 1096px) {

    .bigSizeCard,
    .smallSizeCard {
        width: auto;
        overflow: hidden;
    }

    .topBlockInteresting,
    .bottomBlockInteresting {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .fourthScreenMain {
        padding: 0;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 670px) {

    .topBlockInteresting,
    .bottomBlockInteresting {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .fourthScreenMain {
        padding: 0 16px;
        box-sizing: border-box;
    }
}