.block7 {
    position: relative;
    padding: 100px 0;
    background: rgba(238, 239, 245, 1);
    overflow: hidden;
    top: -140px;
}

.block7-title {
    width: 417px;
    height: 96px;
    margin-bottom: 40px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;

    color: #000000;
}

.block7-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    gap: 50px;
}

.block7-left {
    flex: 1;
    max-width: 600px;
}

.block7-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.block7-feature {
    margin-bottom: 40px;
}

.block7-feature-title {
    width: 541px;
    height: 24px;
    padding-top: 0px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;

    color: #000000;

    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    /* margin-bottom: 15px; */
}

.block7-feature-description {
    width: 454px;
    height: 76px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;

    color: #7E7E7E;

    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

.block7-divider {
    width: 584px;
    height: 0px;
    border: 1px solid #6764E8;
    margin: 20px 0;
}

.block7-feature-item {
    /* margin-bottom: 30px; */
    cursor: pointer;
}

.block7-feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.block7-feature-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.block7-circle {
    box-sizing: border-box;
    position: relative;
    width: 36px;
    height: 36px;
    border: 2px solid #6764E8;
    border-radius: 50%;
    cursor: pointer;
}

.block7-arrow {
    position: relative;
    width: 14px;
    height: 14px;
    border-left: 2px solid #6764E8;
    border-bottom: 2px solid #6764E8;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    right: 35px;
    top: -2px;
}

.block7-feature-item.active .block7-arrow {
    transform: rotate(135deg);
}

.block7-feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    /*padding-left: 20px;*/
}

.block7-feature-item.active .block7-feature-content {
    max-height: 500px;
}

.block7-feature-content .block7-feature-description {
    margin-bottom: 10px;
    height: auto;
    min-height: 38px;
}

.block7-image-container {
    position: relative;
    width: 589px;
    height: 589px;
    background: #D9D9D9;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block7-image-container::after {
    content: '';
}

.block7-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

@media (max-width: 1200px) {

    .block7-feature-header {
        padding: 15px 30px 0 0 ;

    }

    .block7-arrow {
        margin-left: 3px;
    }

    .block7-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        /* padding-top: 150px; */
    }

    .block7-title {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 50px auto;
        justify-content: center;
    }

    .block7-left {
        max-width: 100%;
    }

    .block7-right {
        max-width: 100%;
    }

    .block7-feature-title {
        width: 100%;
        max-width: 454px;
        justify-content: center;
    }

    .block7-feature-description {
        width: 100%;
        max-width: 454px;
        justify-content: center;
    }

    .block7-divider {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 400px;
        margin: 20px auto;
    }

    .block7-image-container {
        width: 100%;
        max-width: 500px;
        height: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .block7 {
        padding: 60px 0;
    }

    .block7-title {
        font-size: 32px;
        line-height: 40px;
        height: auto;
        padding: 0 20px;
    }

    .block7-content {
        padding-top: 0;
    }

    .block7-feature-title {
        font-size: 18px;
        line-height: 22px;
        height: auto;
        text-align: left;
        max-width: 320px;
    }

    .block7-feature-description {
        font-size: 14px;
        line-height: 17px;
        height: auto;
        text-align: left;
    }

    .block7-image-container {
        height: 300px;
    }

    .block7-circle {
        width: 32px;
        height: 32px;
    }

    .block7-arrow {
        width: 12px;
        height: 12px;
    }

}

.block7-feature-item.active .block7-arrow {
    margin-top: 7px;
}