.imgAndText,
.sectionText {
    border-top: 0px !important;
    border-bottom: 0px !important;
    border-radius: 3vw;
    border: 0px;
}

.imgAndText::after,
.sectionText::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 3vw;
    /*1*/
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    /*2*/
    background: linear-gradient(90deg,
            rgb(133, 53, 99),
            rgb(44, 128, 161)) border-box;
    /*3*/
    -webkit-mask:
        /*4*/
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    /* -webkit-mask-composite: xor; */
    -webkit-mask-composite: source-out;
    /*5'*/
    mask-composite: exclude;
    pointer-events: none;
    /*5*/
}

.projectCard::after {
    border-width: 2px;
    border-bottom-left-radius: 1vw;
    border-bottom-right-radius: 1vw;
    border-top-left-radius: 2vw;
    border-top-right-radius: 2vw;
}

.fas {
    will-change: opacity;
}