.about {
    padding: 0 0 75px;
    background: var(--mainBlue);
}

.about_section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.about_section > * + * {
    margin-left: 50px;
}

.about_section + .about_section {
    margin-top: 50px;
}

.about_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc( 100% - 350px );
    max-width: 600px;
    padding: 50px;
    border-radius: 25px;
    background: white;
}

.about_content > * + * {
    margin-top: 25px;
}

.about_content img {
    max-width: 400px;
}

.about .en {
    color: white;
    opacity: 0.5;
}

.about_line {
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: #2affc9;
}

.about_feature{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about_feature li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 10px 0 10px 65px;
    line-height: 30px;
    font-size: 16px;
    background: url('../images/check.svg') left top no-repeat;
    background-size: 50px;
}

@media screen and (max-width: 1023px) {

    .about:before {
        content: '';
        margin: -5px 0 50px;
        width: 80%;
        max-width: 750px;
        height: 10px;
        border-radius: 10px;
        background: white;
        z-index: 9999;
    }

    .about_section {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .about_section:nth-child(2n) {
        flex-direction: column-reverse;
    }

    .about_section > * + * {
        margin-left: 0;
    }
    
    .about_content {
        width: 100%;
    }

    .about_text {
        align-items: center;
        margin-bottom: 25px;
    }
}