.main {
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-family: 'Abril Fatface';
    text-align: center;
    font-size: 4rem;
    letter-spacing: 2px;
    color: #001529;
}

.quote {
    position: relative;
    width: 50%;
}

.quote img {
    /* width: 100%; */
    height: auto;
}

.quoteText {
    position: absolute;
    /* top: 55%; */
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /* width: 70%; */
    width: 100%;
    font-size: 1.3vw;
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: space-between;
}

.quoteContent {
    font-weight: 300;
    /* margin-bottom: 1vh; */
    margin: 0;
}

.author {
    margin-top: 0;
    text-align: right;
    font-weight: 800;
}

.philo, .career {
    margin-top: 10vh;
    width: 50vw;
    height: 30vw;
    position: relative;
}

.career {
    margin-bottom: 10vh;
}

.philoText, .careerText {
    position: absolute;
    top: 0;
    z-index: 1;
}

.careerText {
    right: 0;
    width: 65%;
}

.philoText {
    left: 0;
    width: 70%;
}

.philoText p, .careerText p {
    font-size: 1.2vw;
    font-weight: 400;
    padding: 1vw;
}

.philoText p {
    background-color: rgba(163, 204, 206, 0.8);
}

.careerText p {
    background-color: rgba(245, 195, 98, 0.5);
}

.philoText h2, .careerText h2 {
    transform: translateX(-50%);
    font-weight: 200;
    font-size: 2.7vw;
    margin-bottom: 0.5vh;
}

.philoText h2 {
    margin-left: 14vw;
}

.careerText h2 {
    margin-top: 5vw;
    margin-left: 27vw;
    width: 100%;
}

.philo img, .career img {
    height: 100%;
    width: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
}

.philo img {
    right: 0;
}

.career img {
    left: 0;
}

.mobileTitle {
    display: none;
}

@media (max-width: 768px) {

    h1 {
        font-size: 2rem;
        max-width: 80%;
        letter-spacing: 1px;
    }

    .quote {
        margin: 0;
        width: 80%;
    }

    .quoteText {
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(0) translateX(0);
        font-size: 0.8rem;
        width: 100%;
    }

    .blob {
        display: none;
    }

    .philo, .career {
        margin-top: 10vh;
        width: 90%;
        height: 100%;
        position: relative;
        display: flex;
    }

    .career {
        display: flex;
        flex-direction: row-reverse;
    }

    .philo img, .career img {
        height: 100%;
        width: 40%;
        object-fit: cover;
        /* position: absolute; */
        /* top: 0; */
    }

    .philoText, .careerText {
        position: relative;
        width: 60%;
        height: calc(100% - 2rem);
    }

    .philoText p, .careerText p {
        font-size: 0.7rem;
        margin: 0;
        padding: 1rem;
    }

    .philoText h2, .careerText h2 {
        display: none;
    }

    .mobileTitle {
        display: block;
        font-size: 1.5rem;
        font-weight: 200;
        /* margin-top: 5vh; */
        text-align: center;
        position: absolute;
        left: 50%;
        width: 100%;
        transform: translateX(-50%);
        top: -8vh;
    }

    .quoteText img {
        height: 15vh;
    }

    .quoteText {
        gap: 1rem;
    }
}