body {
    background: black;
}

.full-width-title {
    margin-block: 80px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.container {
    margin-inline: auto;
    max-width: 1200px;
    padding-bottom: 80px;
    padding-inline: 20px;
}

h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 40px;
}

.expertise p,
.expertise ul,
.expertise ol {
    color: hsla(0,0%,100%,.7);
    font-size: 1.5rem;
}

.expertise li {
    margin-bottom: 10px;
}

strong {
    font-weight: 700;
    color: hsla(0,0%,100%,.8);
}

.subsection {
    margin-block: 80px;
}

.p-large--open,
.icon-wrap {
    color: rgba(255, 255, 255, 0.9);
}

.education {
    display: flex;
    gap: 2rem;
}

.education img {
    width: 250px;
    flex-shrink: 0;
}

.education-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .education {
        flex-direction: column;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .expertise p,
    .expertise ul,
    .expertise ol {
        font-size: 1rem;
    }

    .expertise ul {
        padding-left: 20px;
    }

    .subsection {
        margin-block: 80px;
    }

    .education img {
        margin-inline: auto;
    }

    .hero {
        width: 100vw;
        margin-inline: -20px;
    }
}