.company-image-wrapper {
    width: 65%;
    height: 30vh;
    margin-left: auto;
    position: relative;
}

.company-image-wrapper:not(:first-child) {
    margin-top: 20px;
}

.company-image-wrapper-1 {
    display: none;
    background-size: cover;
    background-repeat: no-repeat;
}

.company-image-wrapper-2 {
    display: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.company-image-wrapper-2:before {
    content: '';
    display: block;
    height: 0.15vw;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30%;
    left: -53.6%;
}

.company-image-wrapper-2:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #fff;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -24%;
}

.portfolio-content-icon {
    float: right;
}

.company-headline {
    position: relative;
}

.company-headline:before {
    border-top: 0.15vw solid #fff;
    content: "";
    position: absolute;
    display: block;
    height: calc(45vh + 15px);
    border-left: 0.15vw solid #fff;
    left: 0;
    bottom: 0;
    width: 20%;
    box-sizing: border-box;
}

.company-headline:after {
    content: "";
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    background: #fff;
    left: 20%;
    top: calc(15vh + 3px);

}

.company-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-website {
    color: #fff;
}

#portfolio-content {
    padding: 0 5% 0 15%;
    color: #fff;
}

.company-name {
    text-align: right;
    color: #7cc041;
    font-size: 30px;
    letter-spacing: 2px;
    border-bottom: 0.15vw solid #fff;
    border-left: 0.15vw solid #fff;
    padding: 10px 0 5px;
}

.company-details {
    display: flex;
    
    justify-content: space-between;
}

.company-detail-item {
    align-items: flex-start;
    display: flex;
    padding-top: 40px;
    position: relative;
    padding-left: 10px;
}

.company-detail-item:nth-child(2) {
    margin-right: 10%;
}

.company-detail-item:before {
    content: "";
    position: absolute;
    display: block;
    height: calc(100% - 18px);
    width: 0.15vw;
    background: #fff;
    top: 20px;
    left: 0;
    transform: translateY(calc(-50% + 10px));
}



.detail-field {
    color: #7cc041;
    font-size: 14px;
    margin-right: 10px;
    min-width: 60px;
}

.detail-value {
    border: 0.15vw solid #fff;
    min-width: 160px;
    padding: 10px;
    min-height: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
}

 .detail-value:before {
    content: "";
    position: absolute;
    height: 0.15vw;
    background: #fff;
    width: 80px;
    left: -81px;
}

@media screen and (max-width: 1024px) {
    #portfolio-content {
        padding: 20px 5px 0 5px;
    }
}

@media screen and (max-width: 768px) {
    .company-details {
        flex-direction: column;
    }

    .company-detail-item:before {
        height: 100%;
        transform: translateY(-50%);
    }

    .company-headline:before {
        height: calc(37.5vh + 15px);
    }

    .company-headline:after {
        top: calc(12.5vh + 3px);
    }

 

    .company-image-wrapper {
        height: 25vh;
    }
}
