 /* styling for the information text of aspect */

.information-text-container {
    margin: 0 8em;
    max-width: 1200px;
    overflow: auto;
}

.info-point {
    margin-bottom: 150px;
}

.info-point h4{
    font-size: var(--font-size-info-title);
    color: var(--color-catch-title);
    padding-bottom: 40px;
    line-height: var(--catch-title-line-height);
    letter-spacing: var(--h4-header-spacing);
}

.info-point p{
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-regular);
    color: var(--text);
    padding-bottom: 30px;
}

.info-image {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
}

.info-image img {
    border-radius: 1rem;
    width: calc(50% - 5px);
}



@media screen and (max-width: 1000px) {
    .information-text-container {
        margin: 0 6%;
    }
    .info-point {
        margin-bottom: 80px;
    }
}


@media screen and (max-width: 800px) {
    .information-text-container {
        margin: 0 20px;
    }
    .info-point {
        margin-bottom: 80px;
    }

    .info-point h4{
        padding-bottom: 30px;
    }

    .info-image {
        flex-direction: column;
    }
    
    .info-image img {
        width: 100%;
    }

}