.works {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    padding: 7rem 17rem 2rem;
    overflow: hidden;

    background-color: #282C3C;

    color: #FFF;
}



.works_leftBx {
    transition: .8s;
    transform: translateX(-100px);
    opacity: 0;
}
.works.appear .works_leftBx {
    transform: none;
    opacity: 1;
}
.works_leftBx h2 {
    padding: 6rem 0;
}
.works_leftBx-vertical {
    height: 4rem;
    width: 2px;
    background: #00A0B4;
    margin: 0 auto 6rem;
}



.works_rightBx {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    transition: .8s;
    transform: translateX(-100px);
    opacity: 0;
}
.works.appear .works_rightBx {
    transform: none;
    opacity: 1;
}
.works_rightBx-content {
    width: 45%;
    margin-bottom: 5rem;
}
.works_rightBx-content-img {
    margin-bottom: 2rem;
}
.works_rightBx-content-img img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
}
.works_rightBx-content-txt {
    color: #FFF;
    line-height: 1.7;
}
.works_rightBx-content-txt p:last-child {
    font-weight: 600;
}





@media screen and (max-width: 1100px) {
    .works {
        gap: 5rem;
        padding: 7rem 4rem 2rem;
    }
    .works_leftBx {
        width: 30%;
    }
    .works_btn a {
        width: 80%;
    }
    .works_rightBx {
        width: 70%;
    }
}





@media screen and (max-width: 768px) {
    .works {
        flex-direction: column;
        gap: 5rem;
        padding: 2rem 7rem;
    }
    .works_leftBx {
        width: 100%;
    }
    .works_leftBx h2 {
        padding: 4rem 0;
    }
    .moreBtnWhite a {
        width: 25rem;
    }
    .works_leftBx-vertical {
        height: 4rem;
        width: 2px;
        background: #00A0B4;
        margin: 0 auto 4rem;
    }
    .works_rightBx {
        width: 100%;
    }
    .works_rightBx-content-txt p:last-child {
        font-size: 1.4rem;
        font-weight: 300;
    }
}





@media screen and (max-width: 520px) {
    .works_rightBx {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .works_rightBx-content {
        width: 30rem;
        margin-bottom: 3rem;
    }
    .works_rightBx-content-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}