#about{
    display: block;
    width: 100%;
    height: 100%;
    background-color:#DCDDDD;
}

#about .about-title{
    display: none;
}

#about .about-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    padding: 170px 20px 100px 100px;
    box-sizing: border-box;
}

#about .about-wrapper::after{
    content: '';
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    top: 150px;
    left: 0;
}

#about .about-wrapper::before{
    content: '';
    width: 1px;
    height: 100%;
    background-color: #000000;
    position: absolute;
    top: 0px;
    left: 70px;
}

#about .about-wrapper .about-content{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: var(--website-content-max-width);
    margin: auto;
}



#about .about-wrapper .about-content .left-container{
    width: 400px;
    font-size: 0;
    display: inline-block;
}

#about .about-wrapper .about-content .left-container .left img{
    width: 100%;
    height: auto;
}

#about .about-wrapper .about-content .right-container{
    width: calc(100% - 400px);
    font-size: 0;
    display: inline-block;
    padding-left: 100px;
}

#about .about-wrapper .about-content .right-container .right .title{
    font-size: 48px;
    font-weight: bold;
    color: #000000;
}

#about .about-wrapper .about-content .right-container .right .content{
    font-size: 22px;
    color: #000000;
}

#about .about-wrapper .about-content .right-container .right .content p{
    margin-top: 50px;
}

.about-swiper{
    overflow: hidden;
    position: relative;
}
.about-swiper .swiper-wrapper{
    padding: 90px 0 0;
}
   
.about-swiper .swiper-pagination-bullet{
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
}

@media screen and (max-width:1199px) {
    #about .about-wrapper{
        padding: 170px 20px 20px 100px;
    }
    .about-swiper .swiper-wrapper {
        padding: 20px 0 0;
    }
    #about .about-content{
        flex-direction: column;
    }
    #about .about-content .left-container{
        width: 100% !important;
        max-width: 500px;
        margin: auto;
    }
    #about .about-content .right-container{
        width: 100% !important; 
        padding: 30px 0px !important;
    }
    #about .about-content .right-container .right .title{
        display: none;
    }
    #about .about-wrapper .about-content .right-container .right .content p{
        margin-top: 30px;
    }
    #about .about-title{
        display: block;
        font-size: 34px !important;
    }
}
@media screen and (max-width:767px) {
    #about .about-wrapper{
        padding: 100px 20px 20px 40px;
    }
    #about .about-wrapper::after{
        content: '';
        width: 100%;
        height: 1px;
        background-color: #000000;
        position: absolute;
        top: 80px;
        left: 0;
    }
    #about .about-wrapper::before{
        content: '';
        width: 1px;
        height: 100%;
        background-color: #000000;
        position: absolute;
        top: 0px;
        left: 20px;
    }
}