@media screen and (min-width: 300px) {
    .__businesscontainer {
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }

    .__businessimage {
        height: 40vh;
        background: var(--businessbg)no-repeat center center /cover;
    }

    .__businesstext {
        clip-path: polygon(0 0%, 100% 0, 100% 100%, 0% 100%);
        background: rgb(155, 35, 42);
        background: linear-gradient(230deg, #9b232a 0%, #e1251b 100%);
        color: white;
        padding: 4rem 2rem 2rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        margin-top: 0px;
    }

    .__businesstext>.__businesstitle {
        font-size: 27px;
        font-weight: var(--businesstextweight);
        line-height: 1
    }

    .__businesstext>p {
        font-size: 1rem;
        font-weight: var(--businesstextweight)
    }

    .__partner {
        width: 125px;
        max-height: 80px;
        transition: all 1s;
    }

    .__partner:hover {
        width: 150px;
        height: 150px;
        max-height: 100px;
        background-color: #e9e9e9;
        padding: 15px;
        border-radius: 25px;
        transition: all 500ms;
    }
}

@media screen and (min-width: 600px) {
    .__businesscontainer {
        display: flex;
        flex-direction: row;
    }

    .__businessimage {
        height: 40vh;
    }

    .__businesstext {
        border-left: solid 7px #e1251b;
        background: rgb(155, 35, 42);
        background: linear-gradient(230deg, #9b232a 0%, #e1251b 100%);
        color: white;
        padding: 50px;
        margin-top: 0px;
    }

    .__businesstext>.__businesstitle {
        width: 100%;
        font-size: 3rem;
        font-weight: var(--businesstextweight);
        line-height: 1
    }

    .__businesstext>p {
        width: 100%;
        font-size: 1rem;
        font-weight: var(--businesstextweight)
    }

    .__partner {
        width: 125px;
        max-height: 80px;
        transition: all 1s;
    }

    .__partner:hover {
        width: 150px;
        height: 150px;
        max-height: 100px;
        background-color: #e9e9e9;
        padding: 15px;
        border-radius: 25px;
        transition: all 500ms;
    }
}

@media screen and (min-width: 1024px) {
    .__businessimage {
        height: 100%;
        aspect-ratio: 1;
    }

    .__businesstext {
        clip-path: polygon(0 0%, 100% 0, 100% 100%, 0% 100%);
    }

    .__businesstext>.__businesstitle {
        width: 100%;
        font-size: 4rem;
        font-weight: var(--businesstextweight);
        line-height: 1
    }

    .__businesstext>p {
        width: 100%;
        font-size: 1.5rem;
        font-weight: var(--businesstextweight)
    }

    .__businesstext div>a {
        font-size: 1.5rem;
    }

    .__partner {
        width: 150px;
        max-height: 100px;
        transition: all 1s;
    }

    .__partner:hover {
        width: 175px;
        height: 175px;
        max-height: 125px;
        background-color: #e9e9e9;
        padding: 15px;
        border-radius: 25px;
        transition: all 500ms;
    }
}