.container {
    margin: 40px 0px;
    font-family: "Public sans", sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.title_container {
    background: rgba(0, 0, 0, 0.6);
    border-top: 2px solid var(--celebrityschool-pink);
    border-right: 2px solid var(--celebrityschool-pink);
    border-bottom: 2px solid var(--celebrityschool-pink);
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    height: 70vh;
    width: 260px;
    padding: 0px 20px;
}
.title_container p {
    font-size: 24px;
    text-align: center;
}

.title_container_mobile {
    display: none;
}
.main {
    /* flex: 1; */
    margin-left: 40px;
    padding-right: 30px;
    width: 85%;
    max-width: 1000px;
}
.analytics {
    display: flex;
    justify-content: center;
}
.analytic {
}
.analytic:first-child {
    /* padding-right: 40px; */
}
.analytic:last-child {
    padding-left: 80px;
}

.number {
    font-size: 64px;
    font-weight: 700;
}
.description {
    width: 80%;
    font-size: 24px;
    line-height: 2rem;
}
.v_line {
    height: 250px;
    width: 1px;
    border-left: 1px dashed var(--celebrityschool-purple);
}
.h_line {
    margin: 20px 0px;
    height: 3px;
    width: 100%;
    border-bottom: 1px dashed var(--celebrityschool-purple);
}

.partners {
    display: flex;
}
.p_column {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.partner {
    padding: 20px;
    height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* justify-content: center; */
}
.partner_img {
    width: 100%;
}
.p_h_line {
    height: 1px;
    width: 80%;
    background: #c0c0c0;
    margin: 10px auto;
}
.p_v_line {
    height: 250px;
    width: 1px;
    background: #c0c0c0;
    margin: 0px 20px;
}

.cta_container {
    width: 90%;
    margin: 60px auto 30px auto;
}

@media screen and (max-width: 1000px) {
    .container {
        width: 94%;
        flex-direction: column;
        margin: 20px auto;
    }
    .title_container {
        display: none;
    }
    .title_container_mobile {
        text-align: center;
        display: block;
        margin-bottom: 25px;
    }
    .title_container_mobile p {
        font-size: 32px;
        position: relative;
        text-transform: uppercase;
    }
    .title_container_mobile p::after {
        position: absolute;
        content: "";
        bottom: -6px;
        left: 0px;
        height: 4px;
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gradient);
        border-radius: 8px;
    }
    .main {
        width: 100%;
        margin: 0px;
        padding: 0px;
    }
    .analytics {
        margin-top: 30px;
    }
}

@media screen and (max-width: 850px) {
    .main {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .title_container_mobile p {
        font-size: 24px;
    }
    .title_container_mobile p::after {
        bottom: -10px;
    }
}
