.inner_slider_area{
    height: 100vh;
}
.slick-arrow{
    z-index: 2;
}
.slick-slider{
    overflow: visible;
    z-index: 1;
}
.about_area{
    width: 100%;
    height: 100vh;
    background: url(../picture/About_img2.jpg) no-repeat center top;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}
.about_area::before{
    content: "";
    position: absolute;
    left: 0;top: 0;
    width: 100%;height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.about_area .inner_about_area{
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    font-size: 28px;
    letter-spacing: .1em;
}
.about_area .inner_about_area p{
    position: relative;
    padding-bottom: 5px;
}
.about_area .inner_about_area p::after{
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;left: 50%;
    transform: translateX(-50%);
    width: 100px;height: 2px;
    background-color: var(--lightcolor);
}
.about_area .inner_about_area h1{
    padding: 20px 0 40px 0;
}
.about_area .inner_about_area :where(a,h1){
    color: #fff;
    font-size: 58px;
    letter-spacing: .1em;
}
.about_area .inner_about_area button{
    background-color: var(--blackc);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: all .5s;
}
.about_area .inner_about_area button a{
    font-size: 22px;
    padding: 10px 15px;
}
.about_area .inner_about_area button:hover{
    background-color: var(--lightcolor);
}
.about_area .inner_about_area button:hover a{
    color: var(--blackc);
}

.inner_blog_content{
    height: 80px;
}
@media (max-width:767px){
    .gs-content div{
        width: calc(100% / 3);
    }
}