.img-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 750px;
}

.image-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    height: 300px;
}

.image-item img {
    height: 300px;
    object-fit: contain;
}

.text {
    background-color: red;
    color: white;
    padding: 7.5px;
    text-align: center;
    position: absolute;
    top: 20px;
    left: 40px;
    line-height: 1;
    font-size: 20px;
    font-weight: 700;
}

.image-item:nth-child(1) {
    width: 724px;
    top: 450px;
    left: 0;
}

.image-item:nth-child(2) {
    width: 762px;
    top: 300px;
    left: 15%;
}

.image-item:nth-child(3) {
    width: 779px;
    top: 150px;
    left: 30%;
}

.image-item:nth-child(4) {
    width: 834px;
    top: 0;
    right: 0;
}

@media (max-width: 1560px) {
    .image-item:nth-child(2) {
        left: 10%;
    }

    .image-item:nth-child(3) {
        left: 18%;
    }
}

@media (max-width: 1280px) {
    .image-item:nth-child(2) {
        left: 70px;
    }

    .image-item:nth-child(3) {
        left: 140px;
    }
}

.rfm-btn {
    height: 100%;
    width: 100%;

    a {
        height: 100%;
        display: flex;
        align-items: center;
    }
    &.t-left a{
        text-align: left !important;
        justify-content: left !important;
    }
    &.t-right a{
        text-align: right !important;
        justify-content: right !important;
    }
}

#rfm-plan-session,
#rfm-action-session,
#rfm-check-session {
    scroll-margin-top: 100px;
}