* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.portfoloio-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin: 50px auto;
}

.portfoloio-container::after {
    content: "";
    flex: 1 1 calc(50% - 20px);
}


.portfoloio-card {
    display: flex;
    flex: 1 1 calc(50% - 20px);
        box-shadow: rgba(0, 0, 0, .05) 0 0 20px;
        border: rgba(0, 0, 0, .075) 1px solid;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.portfoloio-img {
    overflow-y: scroll;
    overflow-x: hidden;
    /* max-height: 375px; */
    /* align-items: flex-start; */
    width: 50%;
    height: 400px;
}

.portfoloio-img img {
    width: 100%;
}

.portfoloio-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    width: 50%;
    background-color: #fff;
    border-left: rgba(0, 0, 0, .075) 1px solid;
}

.portfoloio-content-section {
    display: flex;
    gap: 2px;
    flex-direction: column;
}

.portfoloio-content-section h3 {
    font-size: 14px;
    color: #191919;
}

.portfoloio-content-section h4 {
    font-size: 12px;
    color: #727272;
    font-weight: normal;
}

.portfoloio-content-section h5 {
    font-size: 12px;
    color: #727272;
}

.portfoloio-content-section p {
    font-size: 14px;
    color: #191919;
        line-height: 20px;

}

.portfoloio-content-section a {
    color: #2DA471;
    border-bottom: #2DA471 1px solid;
}

.portfoloio-tags {
    padding: 5px 0;
}
.portfoloio-tags img{
    height: 30px;
    margin-right: 5px;
}

.portfoloio-tags>span {
    display: inline-flex;
    padding: 7px;
    font-size: 14px;
    color: #fff;
    background-color: #2DA471;
    border-radius: 7px;
    line-height: 14px;
}

.our-portfolio{background-color: #f5f5f5;}
.lqd-column:nth-child(odd) .portfoloio-img{order: 1;}
.lqd-column:nth-child(odd) .portfoloio-content{border-right:#ccc 1px solid}
.lqd-column:nth-child(even) .portfoloio-content{border-left:#ccc 1px solid}

@media (max-width: 1200px) {
    .portfoloio-container::after {
        flex: 1 1 100%;
    }

    .portfoloio-card {
        flex: 100%;
    }
}

@media (max-width: 768px) {

    .portfoloio-card {
        flex-direction: column;
    }

    .portfoloio-img,
    .portfoloio-content {
        width: 100%;
    }
    .portfoloio-card{
        height: auto;
    }
    .lqd-column:nth-child(even) .portfoloio-img{order: 2;}
    .portfoloio-img{height: 250px;}
    .lqd-column:nth-child(even) .portfoloio-content{border-bottom:#ccc 1px solid}
    .lqd-column:nth-child(odd) .portfoloio-content{border-bottom:#ccc 1px solid}
}