.hero_section {
    position: relative;
    height: 100vh;
    width: 100vw;
    /* max-height: 800px; */
    /* max-width: 1400px; */
    margin: auto;
    background: var(--secondary-color);
}

.background_container {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 650px;
    width: 710px;
}

.hero_section_content {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.hero_section_heading {
    font-size: 72px;
    font-weight: 300;
}

.hero_section_description {
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.8rem;
}

.start_test_button {
    margin: 20px 0;
    border: none;
    outline: none;
    background: var(--gradient);
    color: #fff;
    cursor: pointer;
    padding: 15px 40px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
}
.start_test_button:active {
    transform: scale(0.95);
}

.hero_section_image {
    position: absolute;
    max-width: 700px;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
}

.container {
    width: 90%;
    margin: auto;
    padding-bottom: 30px;
    max-width: 1400px;
}

.main {
    /* background: url("/static/svg/doodle.svg"); */
}

.about_item {
    display: flex;
    margin: 80px 0;
    align-items: center;
}

.about_image {
    /* height: 150px; */
    /* background: red; */
    width: 50%;
    max-height: 200px;
    /* height: 100%; */
}
.about_image_mobile {
    width: 50%;
    max-height: 200px;
    display: none;
}

.about_content {
    width: 50%;
    margin: 30px 0;
}

.about_subheading {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--celebrityschool-purple);
}

.about_heading {
    margin: 20px 0;
    font-size: 50px;
    font-weight: 300;
}

.about_description {
    font-size: 18px;
    line-height: 1.8rem;
}
.about_description ul {
    list-style: none;
}

.career_test_container {
    display: flex;
}

.illustration {
    width: 50%;
}

.content {
    width: 50%;
}

.career_test_heading {
    font-size: 60px;
    font-weight: 300;
}

.metrics {
    margin: 30px 0;
}

.metric {
    position: relative;
    border-left: 1px solid var(--celebrityschool-purple);
    padding-left: 20px;
    margin-bottom: 30px;
}

.metric::after {
    position: absolute;
    content: "";
    top: 0;
    left: -3px;
    width: 5px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    background: var(--celebrityschool-purple);
}
.metric.active::after {
    animation: load-metric 6s ease-in forwards;
}

@keyframes load-metric {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

.metric_head {
    font-size: 36px;
    margin-bottom: 10px;
}

.metric_info {
    position: relative;
    line-height: 1.6rem;
    height: 0;
    overflow: hidden;
}

.metric_body {
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

.active .metric_info {
    height: auto;
}

.active .metric_body {
    opacity: 1;
}

.about_section {
    display: flex;
}

.about_title {
    height: 100px;
    position: sticky;
    top: 75px;
    left: 0;
    font-size: 72px;
    font-weight: 300;
}

.about_main {
    margin: 80px 0 0 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about_question {
    font-size: 24px;
}
.about_answer {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.7rem;
}

.end {
    /* min-height: 400px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.end_heading {
    font-size: 64px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}
.end_subheading {
    font-size: 32px;
    font-weight: 300;
}
.end_description {
    font-size: 18px;
    margin: 10px 0;
}

.end_list li {
    margin: 5px 0;
    list-style: none;
}

.begin_assessment {
    outline: none;
    border: none;
    background: var(--gradient);
    position: relative;
    padding: 15px 20px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 8px;
    font-weight: 600;
    width: 250px;
    /* height: 300px; */
    /* width: 300px; */
    /* margin-left: auto; */
    margin: 40px 0 0 0;
    cursor: pointer;
    display: block;
}
.begin_assessment:active {
    transform: scale(0.95);
}

.begin_assessment_text {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    font-size: 28px;
    transform: translate(-50%, -50%);
}

.analytic {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.rating {
    padding-left: 20px;
    border-left: 1px solid #ccc;
    margin-right: 50px;
}

.rating_title {
    text-transform: uppercase;
    font-size: 14px;
}

.rating_main {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.rating_number {
    font-size: 14px;
    margin-left: 10px;
}

.rating_stars {
    display: flex;
}
.star_container {
    height: 20px;
    width: 20px;
    margin-right: 5px;
}
.star_container::last-child {
    margin-right: 0;
}

.total_customers {
    font-size: 14px;
    margin-top: 20px;
}

.analytic_container {
    display: flex;
}

.analytic_numbers {
    margin: 0 10px;
    width: 100px;
}

.analytic_numbers_head {
    font-size: 24px;
    font-weight: 400;
}
.analytic_numbers_content {
    margin-top: 10px;
    font-size: 14px;
}

.prizes {
    margin-bottom: 40px;
}
.prizes_heading {
    margin: 80px 0 50px 0;
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    word-spacing: 20px;
}

.prizes_list {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.prize {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.prize_first {
    margin: 0 80px;
}
.prize_first img {
    height: 250px;
}
.prize_second img {
    height: 180px;
}
.prize_third img {
    height: 150px;
}
.prize_description {
    text-align: center;
    font-size: 24px;
    line-height: 2.3rem;
    font-weight: 300;
    margin-top: 30px;
    width: 80%;
}

.prize_description_mobile {
    display: none;
}

.size_limit {
    color: var(--celebrityschool-purple);
    font-weight: bold;
    text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
    .prize_first {
        margin: 0 80px;
    }
    .prize_first img {
        height: 200px;
    }
    .prize_second img {
        height: 150px;
    }
    .prize_third img {
        height: 130px;
    }
}

@media screen and (max-width: 1100px) {
    .about_main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .prizes {
        margin-bottom: 0;
    }
    .prizes_heading {
        margin: 50px 0 20px 0;
        text-align: center;
        font-size: 36px;
        font-weight: 300;
        text-transform: uppercase;
        word-spacing: normal;
    }

    .prizes_list {
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .prize {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .prize_first {
        margin: 0 80px;
    }
    .prize_first img {
        height: 150px;
    }
    .prize_second img {
        height: 100px;
    }
    .prize_third img {
        height: 80px;
    }
    .prize_description {
        text-align: center;
        font-size: 18px;
        line-height: 1.8rem;
        font-weight: 300;
        margin-top: 20px;
        width: 80%;
    }
}

@media screen and (max-width: 765px) {
    .hero_section {
        height: auto;
        padding: 100px 0 50px 0;
    }
    .background_container {
        display: none;
    }
    .hero_section_content {
        position: relative;
        top: 0;
        left: 0;
        width: 90%;
        margin: auto;
        transform: translate(0);
    }
    .hero_section_heading {
        font-size: 36px;
    }
    .start_test_button {
        width: 100%;
        padding: 20px 0;
    }
    .about_item {
        flex-direction: column;
        /* margin: 0; */
    }
    .about_image {
        display: none;
    }
    .about_image_mobile {
        display: initial;
    }
    .about_content {
        width: 100%;
    }

    .about_heading {
        font-size: 36px;
    }

    .career_test_container {
        flex-direction: column;
    }
    .content {
        width: 100%;
    }
    .career_test_heading {
        font-size: 36px;
    }
    .metric_head {
        font-size: 28px;
    }
    .about_section {
        flex-direction: column;
    }
    .about_title {
        font-size: 48px;
        height: auto;
        position: initial;
    }
    .about_main {
        margin: 40px 0;
    }
    .end_heading {
        font-size: 48px;
    }
    .end_subheading {
        font-size: 24px;
    }
    .begin_assessment {
        /* margin: auto; */
    }

    .analytic {
        flex-direction: column;
        align-items: start;
    }

    .analytic_container {
        width: 100%;
        justify-content: space-between;
        width: 95%;
        margin: 30px auto;
    }
    .analytic_numbers {
        margin: 0;
    }
    .prizes_heading {
        margin: 40px 0 20px 0;
        text-align: center;
        font-size: 36px;
        font-weight: 300;
        text-transform: uppercase;
        word-spacing: normal;
    }

    .prize_first {
        margin: 0 10px;
    }
    .prize_first img {
        height: 150px;
    }
    .prize_second img {
        height: 100px;
    }
    .prize_third img {
        height: 80px;
    }
    .prize_description {
        font-size: 16px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 550px) {
    .about_question {
        font-size: 20px;
    }
    .about_answer {
        margin: 10px 0;
        font-size: 14px;
        line-height: 1.4rem;
    }
    .end_heading {
        font-size: 32px;
    }
    .end_subheading {
        font-size: 18px;
    }

    .begin_assessment {
        /* height: 250px;
        width: 250px; */
        width: 100%;
    }

    .begin_assessment_text {
        font-size: 24px;
    }

    .analytic_container {
        width: 100%;
    }

    .analytic_numbers_head {
        font-size: 22px;
    }
    .analytic_numbers_content {
        font-size: 14px;
    }
    .rating_title {
        font-size: 14px;
    }
    .rating_number {
        font-size: 12px;
    }
    .total_customers {
        font-size: 12px;
    }
    .prizes_heading {
        margin: 40px 0;
        font-size: 28px;
    }

    .prize img {
        display: none;
    }

    .prize_first {
        margin: 0 10px;
    }
    .prize_first img {
        height: 100px;
    }
    .prize_second img {
        height: 80px;
    }
    .prize_third img {
        height: 50px;
    }
    .prize_description_mobile {
        display: block;
    }
    .prize_description_mobile_first {
        font-size: 1.6em;
        text-align: center;
    }
    .prize_description {
        font-size: 14px;
        line-height: 22px;
        width: 100%;
        margin-top: 20px;
    }
}
@media screen and (max-width: 390px) {
    .about_main {
        grid-template-columns: repeat(1, 1fr);
    }

    .prize_description_mobile_first {
        font-size: 1.2em;
    }
    .prize_description {
        font-size: 1em;
    }
    .prize_description {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 300px) {
    .hero_section_heading {
        font-size: 24px;
    }
    .hero_section_description {
        font-size: 14px;
        line-height: 1.4rem;
    }
    .start_test_button {
        padding: 15px 0;
        font-size: 14px;
        font-weight: 500;
    }
    .about_subheading {
        font-size: 14px;
        line-height: 1.4rem;
    }
    .about_heading {
        font-size: 24px;
    }
    .about_description {
        font-size: 14px;
        line-height: 1.4rem;
    }
    .career_test_heading {
        font-size: 28px;
    }
    .metric_head {
        font-size: 18px;
    }
    .metric_body {
        font-size: 14px;
    }
    .end_heading {
        font-size: 24px;
    }
    .end_subheading {
        font-size: 14px;
    }
    .begin_assessment {
        /* height: 200px;
        width: 200px; */
    }
    .begin_assessment_text {
        font-size: 18px;
    }
    .analytic_numbers_head {
        font-size: 18px;
    }
    .analytic_numbers_content {
        font-size: 12px;
    }

    .star_container {
        height: 15px;
        width: 15px;
    }
    .rating_title {
        font-size: 12px;
    }
    .rating_number {
        font-size: 12px;
    }
    .total_customers {
        font-size: 12px;
    }

    .prize_description_mobile {
        font-size: 0.7rem;
    }
    .prize_description_mobile_first {
        font-size: 0.9em;
    }
    .prize_description {
        font-size: 0.7em;
        line-height: 1.3em;
    }
}
