.about-introduction {
    overflow: hidden;
}
.about-introduction .inner-introduction {
    padding: 91px 0 36px;
    position: relative;
}
.about-introduction .inner-content {
    display: flex;
    flex-wrap: wrap;
}
.about-introduction .inner-content .title {
    margin-bottom: 21px;
}
.about-introduction .description {
    letter-spacing: 0;
}
.about-introduction .description p:not(:last-child) {
    margin-bottom: 20px;
}
.about-introduction .content-col {
    flex: 1 1;
    max-width: 620px;
}
.about-introduction .content-col.right-col {
    padding: 0 40px;
}
.about-introduction .content-col.left-col {
    padding-right: 40px;
}
.about-introduction .inner-introduction:before {
    content: '';
    position: absolute;
    width: 1440px;
    height: 1440px;
    background-color: #FBF6F4;
    z-index: -1;
    bottom: 0;
    border-radius: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.about-introduction .img-wrapper {
    position: relative;
    width: 100%;
}
@media (max-width:1024px) {
    .about-introduction .content-col.right-col {
        padding: 0;
    }
    .about-introduction .content-col.left-col {
        padding-right: 20px;
    }
}
@media (max-width:767px) { 
    .about-introduction .inner-introduction::before {
        width: 100%;
        height: calc(191px*2);
        bottom: auto;
        background-color: #FFF1F0;
        top: calc((-191px)*2/2);
    }
    .about-introduction .inner-content {
        display: block;
    }
    .about-introduction .content-col.left-col {
        padding-right: 0;
    }
    .about-introduction .content-col.right-col {
        display: none;
    }
    .about-introduction .inner-introduction {
        padding: 50px 0;
    }
    .about-introduction .img-wrapper {
        margin-bottom: 20px;
    }
}