.container {
    font-family: "Public sans", sans-serif;
    padding-top: 75px;
    width: 100vw;
    color: #fff;
}

.banner_main {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url("/static/images/cbo/celebrities.webp") no-repeat top center/cover;
    height: 120vh;
    width: 100%;
}

.title {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.5);
    height: 75%;
    width: 26vw;
    border-right: 2px solid var(--celebrityschool-pink);
    border-bottom: 2px solid var(--celebrityschool-pink);
    border-bottom-right-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
}
.title p {
    font-size: 38px;
    line-height: 3rem;
    text-transform: uppercase;
    font-weight: 400;
}

.earnings {
    position: absolute;
    top: 0px;
    right: 5%;
    height: 75%;
    width: 20vw;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero {
    color: var(--celebrityschool-pink);
}

.main_text {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_text p {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 700;
    width: 550px;
    text-align: center;
    line-height: 2.6rem;
}
.main_text p span {
    display: block;
}

.banner_mobile {
    display: none;
    background: rgba(17, 17, 17);
}
.banner_main_mobile {
    height: 85vh;
    width: 100vw;
    background: linear-gradient(rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 1)),
        url("/static/images/cbo/celebrities.webp") no-repeat top center/cover;
}
.mobile {
    text-align: center;
    padding: 20px 0px;
    text-transform: uppercase;
    width: 90%;
    margin: auto;
}
.mobile_title {
    font-size: 24px;
    line-height: 2.4rem;
}
.mobile_earnings {
    margin: 30px 0px;
    font-size: 28px;
    font-weight: 900;
    line-height: 2.2rem;
}
.mobile_main_text {
    font-weight: 600;
    font-size: 24px;
    line-height: 2.2rem;
    margin-top: 20px;
}
.mobile_main_text span {
    display: block;
}

@media screen and (max-width: 1200px) {
    .banner_main {
        display: none;
    }
    .banner_mobile {
        display: block;
    }
}
