.wp-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wp-container * {
    box-sizing: border-box;
}

.wp-container .wp-container-text {
    width: 100%;
    height: 70vh;
    padding: 40px 40px 0 40px;
    background: linear-gradient(282.76deg, #9143fe 12.61%, #3677ff 81.97%);
    overflow: hidden;
}

.wp-container .wp-container-text .image-brand img {
    width: 200px;
    margin-bottom: 12px;
}

.wp-container .wp-container-text .text {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wp-container .wp-container-text .text h1 {
    max-width: 680px;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
    color: #ffffff;
}

.wp-container .wp-container-text .text p {
    max-width: 680px;
    font-family: "montserrat";
    font-weight: 300;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: center;
    color: #ffffff;
}

.wp-container .wp-container-text .button-cta {
    position: relative;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wp-container .wp-container-image {
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-container .wp-container-image img {
    width: 100%;
    max-width: 800px;
    margin-top: -30vh;
}

@media screen and (max-height: 800px) {
    .wp-container .wp-container-image img {
        max-width: 680px;
        margin-top: -20vh;
    }
}

@media screen and (max-width: 768px) {
    .wp-container .wp-container-text {
        padding: 16px 16px 0 16px;
    }

    .wp-container .wp-container-text .text h1 {
        font-size: 26px;
        line-height: 30px;
    }

    .wp-container .wp-container-image {
        height: 25vh;
    }

    .wp-container .wp-container-image img {
        margin-top: -20vh;
        width: 550px;
    }
}

@media screen and (max-width: 480px) {
    .wp-container .wp-container-text .text h1 {
        font-size: 24px;
    }

    .wp-container .wp-container-text .text p {
        font-size: 12px;
    }

    .wp-container .wp-container-image img {
        width: 350px;
    }
}