/* ----------about---------- */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}
.about_top {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.about_top-main {
    position: absolute;
    top: 360px;
    left: 0;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;

    animation: about_top-main calc(3 * 10s) linear infinite;
    transform: translateX(-100%);
}
@keyframes about_top-main {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(3 * -100%);
    }
}
.about_top-main h2 {
    color: #fff;
    font-size: 200px;
    white-space: nowrap;
    padding-right: 4rem;

    opacity: 0.3;
}
.about_top p {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 160px;
    padding-bottom: 150px;

    color: #444;
    font-size: 32px;
    line-height: 1.8;
}
.about_top p span {
    color: #999;
    font-size: 13px;
}
.about_between {
    position: relative;
    width: 1px;
    height: 200px;

    background: #fff;
}
.about_between::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;

    background: #aaa;

    animation: about_between 3s ease-in-out infinite;
}
.about_between-bottom {
    margin-top: 100px;
}
@keyframes about_between {
    0% {
        top: 0;
        height: 0;
    }
    25% {
        top: 0;
        height: 100%;
    }
    26% {
        top: auto;
        bottom: 0;
        height: 100%;
    }
    50% {
        height: 0;
    }
    100% {
        height: 0;
    }
}
.about_bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
    padding: 150px 0;

    text-align: center;
}
.about_bottom div {
    width: 100%;
}
/*.about_bottom-leftBx {
    padding-left: 200px;
}
.about_bottom-rightBx {
    padding-top: 30px;
    padding-left: 100px;
}*/
.about_bottom h2 {
    /*background: -webkit-linear-gradient(105deg, #FEE140 0%, #ffa776 50%, #FA709A 100%);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;*/
    color: #FA709A;
    font-weight: 700;
    line-height: 1.8;
}
.about_bottom-leftBx h2 {
    font-size: 36px;
}
.about_bottom-rightBx h2 {
    font-size: 26px;
}
.about_bottom div > p {
    margin-top: 32px;

    color: #444;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}
.about .contactBx {
    left: auto;
    right: 0;
}
@media screen and (max-width:1024px) {
    .about_top-main {
        top: 300px;
    }
    .about_top-main h2 {
        font-size: 120px;
        white-space: nowrap;
    }
    .about_top p {
        position: relative;
        display: flex;
        flex-direction: column;
        padding-bottom: 100px;

        font-size: 20px;
        line-height: 1.8;
    }
    .about_top p span {
        font-size: 13px;
    }
    .about_bottom {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
        padding: 100px 0 220px;
    }
    .about_bottom div {
        width: 100%;
        padding: 0 10px;
    }
    .about_bottom-leftBx h2 {
        font-size: 24px;
    }
    .about_bottom-rightBx h2 {
        font-size: 20px;
    }
    .about .contactBx {
        left: auto;
        right: 0;
        bottom: 100px;
    }
}

@media screen and (max-width:500px) {
    .about_top-main {
        top: 260px;
    }
    .about_top-main h2 {
        font-size: 100px;
        white-space: nowrap;
    }
    .about_top p {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 100px 10px;
    
        font-size: 16px;
        font-weight: 700;
        line-height: 1.8;
    }
    .about_top p span {
        font-size: 12px;
    }
}
