#parceiroSection {
    height: auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
    margin-top: 50px;
}

.sectTitle {
    font-family: 'Dinot', 'Roboto';
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

#parceiroContainer{
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

#parceiroVideoContainer {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
}

#parceiroVideo {
    width: 100%;
    object-fit: cover;
}

#videoShape {
    height: 100.1%;
    width: 100%;
    background-color: rgb(45, 45, 45);
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 1px;
    clip-path: polygon(97% 0%, 100% 0%, 100% 100%, 80% 100%);
}

#videoShapeBorder {
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, #1BAAE7, #31408B);
    clip-path: polygon(97% 0%, 98.5% 0%, 81.5% 100%, 80% 100%);
}

#parceiroConteudoContainer {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgb(45, 45, 45);
}

#parceiroConteudoContainer a {
    margin-top: 0;
    margin-bottom: 0;
}

#parceiroConteudoTitle {
    font-family: 'Dinot', 'Roboto';
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

#parceiroConteudoP {
    font-family: 'Dinot', 'Roboto';
    font-size: 18px;
    font-weight: 400;
    width: 80%;
    margin-bottom: 30px;
}

#parceiroConteudoBtn {
    font-family: 'Dinot', 'Roboto';
    width: 170px;
    height: 51px;
    background-color: #1e6BAC;
    font-size: 23px;
    font-weight: 600;
    border-radius: 3px;
    border-width: 0;
    transition: all 0.5s;
}

#parceiroConteudoBtn:hover {
    background-color: #31408B;
}

#parceiroConteudoBtn:active {
    transform: scale(0.9);
}


@media all and (max-width: 900px) and (orientation: portrait) {
    #parceiroVideoContainer {
        width: 100%;
        height: 58%;
    }

    #parceiroVideo {
        width: 100%;
    }

    #parceiroConteudoContainer {
        width: 100%;
        height: 42%;
    }

    #parceiroContainer{
        height: 100vh;
        flex-direction: column;
    }

    #videoShape {
        margin-left: 0;
        margin-top: 1px;
        clip-path: polygon(0% 97%, 0% 100%, 100% 100%, 100% 85%);
    }

    #videoShapeBorder {
        background: linear-gradient(to right, #1BAAE7, #31408B);

        clip-path: polygon(0% 97%, 0% 98.5%, 100% 86.5%, 100% 85%);
    }
}

@media all and (max-width: 500px) and (orientation: portrait) {
    #parceiroVideoContainer {
        height: 45%;
    }

    #parceiroConteudoContainer {
        height: 55%;
    }

    #parceiroConteudoTitle {
        font-size: 28px;
    }

    #parceiroConteudoP {
        font-size: 16px;
        font-weight: 400;
    }

    .sectTitle {
        font-size: 36px;
    }
}


@media all and (max-width: 400px) and (orientation: portrait) {
    #parceiroContainer{
        height: 120vh;
    }
}

@media all and (max-width: 370px) and (orientation: portrait) {
    #parceiroVideoContainer {
        height: 40%;
    }

    #parceiroConteudoContainer {
        height: 60%;
    }
}

@media all and (max-width: 400px) and (orientation: portrait) {
    #parceiroContainer{
        height: 120vh;
    }
}

@media all and (max-width: 340px) and (orientation: portrait) {

    #parceiroContainer{
        height: 130vh;
    }

    #parceiroVideoContainer {
        height: 40%;
    }

    #parceiroConteudoContainer {
        height: 60%;
    }

    #parceiroConteudoTitle {
        font-size: 25px;
    }

    #parceiroConteudoP {
        font-size: 14px;
    }
}