.section-projects {
    padding-bottom: 45px;
}

.section-projects .projects-listing {
    position: relative;
    top: -60px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
}

.section-projects .wide-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 300px;
    background: white;
}

.section-projects .wide-card .image-wrapper {
    width: 39%;
    height: 100%;
    overflow: hidden;
}

.section-projects .wide-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-projects .wide-card .text-wrapper {
    width: 61%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
    padding: 38px 20px 38px 45px;
}

.section-projects .wide-card .wide-card-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-family: Poppins;
    font-size: 16px;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
}

.section-projects .wide-card .wide-card-cta img {
    position: relative;
    top: -2px;
}

.section-projects .wide-card:hover.wide-card .arrow-cta::before {
    width: 80px;
}

@media screen and (min-width: 1920px) {
    .section-projects .wide-card {
        height: 400px;
    }

    .section-projects .wide-card .text-wrapper {
        padding: 80px 60px;
    }

    .section-projects .wide-card .text-wrapper p {
        max-width: 70%;
    }
}

@media screen and (max-width: 768px) {
    .section-projects .wide-card .text-wrapper {
        gap: 16px;
    }
}

@media screen and (max-width: 600px) {
    .section-projects .wide-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        height: fit-content;
    }

    .section-projects .wide-card .image-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .section-projects .wide-card .text-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 35px;
        padding: 20px;
    }
}