@charset "utf-8";
#about {
    background: #000;
    display: flex;
    align-items: stretch;
}
#about .area-title {
    font-weight: 400;
}
.about-text {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
    text-align: center;
    width: 40%;
}
.about-img {
    width: 30%;
    overflow: hidden;
    color: white;
    background: black;
}
.about-img img {
    object-fit: cover;
    height: 100%;
}
.about-img2 {
    width: 30%;
    overflow: hidden;
    color: white;
    background: black;
    text-align: right;
}
.about-img2 img {
    object-fit: cover;
    height: 100%;
    /*object-position: -130px -210px;*/
}
.about-text p {
    color: #ffffffc4;
    font-size: 0.8rem;
    line-height: 2.2;
    letter-spacing: 0.1em;
}
.first-p {
    margin-top: 50px;
}
.second-p {
    margin-top: 40px;
}
.third-p {
    margin-top: 40px;
}
.grd-right {
    -webkit-mask-image: linear-gradient(
        to right,
        black 0%,
        black 50%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        black 0%,
        black 50%,
        transparent
    );
}
.grd-left {
    -webkit-mask-image: linear-gradient(
        to left,
        black 0%,
        black 50%,
        transparent
    );
    mask-image: linear-gradient(
        to left,
        black 0%,
        black 50%,
        transparent
    );
}
@media screen and (max-width: 760px) {
    #about {
        flex-direction: column;
    }
    .about-img {
        display: none;
    }
    .about-img2 {
        display: none;
    }
    .about-text {
        padding: 10px 0 30px 0;
        width: 100%;
    }
}