    .wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-left: 60px;
    }

    .img-works {
        height: 300px;
        width: 770px;
        object-fit: cover;
    }

    .img-works2 {
        height: 610px;
        width: 370px;
        object-fit: cover;
    }

    .one {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .two {
        grid-column: 3 / 3;
        grid-row: 1/4;
    }

    .three {
        grid-column: 1/3;
        grid-row: 2;
    }

    .fa-inverseColor {
        color: #0f9b00;
    }

    .card-flip1 {
        position: relative;
        width: 770px;
        height: 300px;
        object-fit: cover;
    }

    .card-flip2 {
        position: relative;
        width: 370px;
        height: 610px;
        object-fit: cover;
    }

    .card-flip1 .face,
    .card-flip2 .face2 {
        backface-visibility: hidden;
        transition: .5s;
    }

    .card-flip1 .front,
    .card-flip2 .front2 {
        background: #EDEDED;
    }

    .content,
    .content2 {
        color: white;
        display: flex;
        justify-content: center;
    }

    .content a {
        display: ruby;
        margin-top: 70px;
        color: inherit
    }

    .content2 a {
        display: ruby;
        margin-top: 50%;
        color: inherit
    }

    .details .content h2,
    .details2 .content2 h2 {
        font-size: 16px;
        font-weight: 400;
        line-height: 36px;
        color: rgb(255, 255, 255);
        width: 100%;
        text-align: center;
    }

    .details .content p,
    .details2 .content2 p {
        font-size: 12px;
        font-weight: 400;
        line-height: 36px;
        color: rgb(255, 255, 255);
        text-align: center;
    }

    .card-flip1:hover .back,
    .card-flip2:hover .back {
        transform: scaleY(1);
    }

    .card-flip1 .details,
    .card-flip2 .details2 {
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        background: #0F9B00;
        transform: scaleY(0);
        transition: transform .5s;
    }

    .card-flip1:hover .details,
    .card-flip2:hover .details2 {
        transform: scaleY(1);
    }

    .contentBtnPpal {
        padding: 6rem 0rem;
    }

    .contentBtnWorks {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .btnMoreWorks {
        display: flex;
        align-content: center;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        background: #0F9B00;
        color: rgb(255, 255, 255);
        border-radius: 0px;
        width: 30%;
        height: 60px;
        border: 0px;


    }

    .btnMoreWorks span {
        font-size: 14px;
        font-weight: 400;
        line-height: 17px;
        text-transform: uppercase;
        padding: 0px 50px;
        text-align: center;
    }

    .btnMoreWorks:hover {
        background-color: black;
        color: rgb(255, 255, 255);
    }

    .leftHr {
        background: #F5F5F5;
        height: 3px;
        width: 25%;
        color: #F5F5F5;
    }

    @media (max-width: 1399.98px) {
        .wrapper {
            margin-left: 0px;
        }

        .img-works,
        .card-flip1 {
            width: 730px;
        }
    }

    @media (max-width: 1199.98px) {

        .img-works,
        .card-flip1 {
            width: 550px;
        }
    }

    @media (max-width: 991.98px) {

        .img-works2,
        .card-flip2 {
            width: 250px;
        }

        .img-works,
        .card-flip1 {
            width: 430px;
        }

        .content2 a {
            margin-top: 65%;
        }
    }

    @media (max-width: 767.98px) {

        .img-works,
        .card-flip1 {
            width: 510px;
        }

        .content2 a {
            margin-top: 15%;
        }

        .two {
            grid-column: 1/3;
            grid-row: 3;
        }

        .img-works2,
        .card-flip2 {
            height: 300px;
            width: 510px;
        }
    }

    @media (max-width: 575.98px) {

        .img-works,
        .card-flip1,
        .img-works2,
        .card-flip2 {
            width: 330px;
        }
    }