.portfolioSectionWrapper{
    margin-top: 200px;
    z-index: 99;
    position: relative;
}

.portfolioParent {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
    flex-wrap: wrap;
    /* grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px; */
}

.portfolioCards{
    width: calc(50% - 25px);
    margin-bottom: 50px;
}

.portfolioProjectImageWrapper{
    width: 100%;
    height: auto;
}

.projectTitle{
    font-size: var(--FS-34px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
}

.projectOneLineTitle{
    font-size: var(--FS-24px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
}

.projectDesc{
    font-size: var(--FS-20px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
}

.requestFullDeckButton{
    padding: 10px;
    border: solid 1px var(--Secondary-color);
    outline: none;
    border-radius: 10px;
    background: none;
    font-size: var(--FS-24px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.requestFullDeckButton img{
    padding: 0;
    border: none;
    outline: none;
    background: none;
    width: 35px;
}

.arrowButtonMain{
    padding: 0;
    border: none;
    outline: none;
    background: none;
    min-width: 40px;
}

.arrowButtonMain img{
    width: 100%;
    height: auto;
}

.portfolioProjectImageWrapper{
    border-radius: 30px;
    overflow: hidden;
}

.portfolioProjectImageWrapper img{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}