/* ---HERO STYLES--- */

.about_hero_section {
    background: var(--black);
    height: 80vh;
}

.about_hero_section .absolute_media {
    opacity: .3;
    object-position: center;
}

.about_hero_section .container {
    justify-content: center;
    padding: 5vw;
}

.about_hero_section .about_hero_info {
    max-width: 58%;
}

@media (max-width: 997px) {
    .about_hero_section {
        height: 160vw;
    }

    .about_hero_section .container {
        justify-content: flex-end;
        padding: 20vw 10vw;
    }

    .about_hero_section .about_hero_info {
        max-width: 100%;
    }
}



/* ---PHILOSOPHY STYLES--- */

.philosophy_section .philosophy_intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    max-width: 52%;
    margin: 0 auto;
}

.philosophy_section .pillars_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: .05vw solid var(--light-brown);
    padding-top: 4vw;
}

.philosophy_section .pillar_item {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    padding-right: 3vw;
    border-right: .05vw solid var(--light-brown);
}

.philosophy_section .pillar_item:not(:first-child) {
    padding-left: 3vw;
}

.philosophy_section .pillar_item:last-child {
    border-right: none;
    padding-right: 0;
}

@media (max-width: 997px) {
    .philosophy_section .philosophy_intro {
        max-width: 100%;
    }

    .philosophy_section .pillars_box {
        grid-template-columns: 1fr;
        border-top: none;
        padding-top: 0;
    }

    .philosophy_section .pillar_item {
        text-align: center;
        padding: 5vw 0;
        border-right: none;
        border-bottom: .1vw solid var(--light-brown);
        gap: 2vw;
    }

    .philosophy_section .pillar_item:not(:first-child) {
        padding-left: 0;
    }

    .philosophy_section .pillar_item:first-child {
        padding-top: 0;
    }

    .philosophy_section .pillar_item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}



/* ---STORY STYLES--- */

.story_section .story_box {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
}

.story_section .story_info {
    padding: 10vw 5vw;
    gap: 2vw;
    justify-content: center;
}

.story_section .story_media {
    min-height: 55vw;
}

@media (max-width: 997px) {
    .story_section .story_box {
        grid-template-columns: 1fr;
    }

    .story_section .story_media {
        height: 150vw;
        order: -1;
    }

    .story_section .story_info {
        padding: 10vw;
    }
}



/* ---FOUNDER STYLES--- */

.founder_section .founder_box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.founder_section .founder_media {
    min-height: 60vw;
}

.founder_section .founder_media .absolute_media {
    object-position: top;
}

.founder_section .founder_info {
    padding: 10vw 6vw 10vw 5vw;
    gap: 2vw;
    justify-content: center;
}

@media (max-width: 997px) {
    .founder_section .founder_box {
        grid-template-columns: 1fr;
    }

    .founder_section .founder_media {
        height: 150vw;
    }

    .founder_section .founder_info {
        padding: 10vw;
    }
}



/* ---APPROACH STYLES--- */

.approach_section .steps_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.approach_section .step_item {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    padding-right: 4vw;
    border-right: .05vw solid var(--brown);
}

.approach_section .step_item:not(:first-child) {
    padding-left: 4vw;
}

.approach_section .step_item:last-child {
    border-right: none;
    padding-right: 0;
}

.approach_section .step_number {
    display: block;
    font-family: "Shade Sans";
    font-size: var(--h1);
    color: var(--beige);
    line-height: 1;
    opacity: .5;
}

.approach_section .step_item h3 {
    font-size: var(--h3);
}

.approach_section .step_item p {
    font-size: var(--text-sm);
}

@media (max-width: 997px) {
    .approach_section .steps_box {
        grid-template-columns: 1fr;
    }

    .approach_section .step_item {
        text-align: center;
        padding: 5vw 0;
        border-right: none;
        border-bottom: .1vw solid var(--light-brown);
        gap: 2vw;
    }

    .approach_section .step_item:not(:first-child) {
        padding-left: 0;
    }

    .approach_section .step_item:first-child {
        padding-top: 0;
    }

    .approach_section .step_item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .approach_section .step_number {
        font-size: clamp(2.5rem, 10vw, 4.8rem);
    }
}



/* ---BELIEFS STYLES--- */

.beliefs_section .beliefs_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw 6vw;
}

.beliefs_section .belief_item {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding-top: 2vw;
    border-top: .05vw solid var(--light-brown);
}

.beliefs_section .belief_item h3 {
    font-size: var(--h3);
}

@media (max-width: 997px) {
    .beliefs_section .beliefs_grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .beliefs_section .belief_item {
        text-align: center;
        padding: 5vw 0;
        border-top: none;
        border-bottom: .1vw solid var(--light-brown);
        gap: 2vw;
    }

    .beliefs_section .belief_item:first-child {
        padding-top: 0;
    }

    .beliefs_section .belief_item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}



/* ---CTA STYLES--- */

.about_cta_section {
    background: var(--black);
}

.about_cta_section .absolute_media {
    opacity: .3;
    object-position: center;
}

.about_cta_section .about_cta_box {
    position: relative;
    z-index: 1;
}

.about_cta_section .about_cta_info {
    width: 50%;
}

@media (max-width: 997px) {
    .about_cta_section .about_cta_box {
        height: 150vw;
        justify-content: center;
    }
    .about_cta_section .about_cta_info {
        width: 100%;
    }
}