.projectwrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 60px 0;
    align-items: center;
}

/* Content Alignment Option */
.projectwrapper.tabswap {
    flex-direction: row-reverse;
}

.tabswap .innerblock:before {
    left: initial;
    right: 0;
}

.tabswap .leftpw {
    width: calc(30% + 70px);
}

/* End Content Alignment Option */

.completedprojects-container {
    overflow: hidden;
}

.leftpw,
.rightpw {
    position: relative;
}

.leftwp {
    width: calc(35% - 20px);
}

.rightpw {
    width: calc(65% - 100px);
}

.innerblock {
    background: var(--primary);
    padding: 70px;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.innerblock:before {
    content: "";
    position: absolute;
    background: var(--primary);
    height: 100%;
    width: 8000px;
    left: 0;
    z-index: -1;
}

ul.project-list {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    position: relative;
    display: block;
}

ul.examples {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.examples li {}

ul.examples li h2, ul.examples li h3, ul.examples li h4, ul.examples li h5, ul.examples li h6, ul.examples li p, ul.examples li {
    color: white;
}

ul.examples li h2 {
    margin: 0 0 20px;
    font-size: 34px;
    font-weight: 700;
}

ul.examples li h2 span {
    font-size: 24px;
    font-weight: 500;
}

ul.examples li .btn {
    margin-top: 40px;
}

ul.examples li {
    list-style-type: none;
    position: relative;
    margin: 10px 0;
    color: white;
}

ul.examples li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: var(--primary);
    position: absolute;
    left: -1.5em;
}

ul.examples li ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: white;
    position: absolute;
    left: -1.5em;
}


.project-list li {
    cursor: pointer;
    margin: 15px 0;
    font-size: 32px;
    font-weight: 600;
    transition: all .3s ease-in-out;
    color: var(--primary);
    list-style-type: none;
    position: relative;
}

ul.project-list li::before {
    content: "\f178";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    color: var(--secondary);
    position: absolute;
    left: -1.5em;
    font-size: 21px;
    top: 50%;
    transform: translate(35px, -50%);
    opacity: 0;
    transition: all .5s ease-in-out;
}

ul.project-list li.active::before {
    opacity: 1;
}


.project-list li.active {
    color: var(--secondary);
    padding-left: 35px;
}

.examples li {
    margin-bottom: 5px;
}

@media (max-width:1199px) {
    .projectwrapper {
        flex-direction: column;
    }



    .completedprojects-container h1 {
        font-size: 50px;
        margin: 40px 0 50px;
    }

    .leftpw,
    .rightpw {
        width: 100%;
    }

    .tabswap .leftpw {
        width: 100%;
    }

    .rightpw {
        padding-top: 40px;
    }

    .project-list li {
        margin-bottom: 4px;
        font-size: 30px;
    }

    ul.examples li {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .innerblock {
        padding: 50px 30px;
    }
}