.about-page {
    margin: 0;
    background: #000;
}

.about-hero {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding:11rem 2rem 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.35) 35%,
            rgba(0, 0, 0, 0.75) 65%,
            #000 82%
        ),
        url("assets/about-hero.jpg");

    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}

.about-circle {
    width: min(760px, 95%);
    box-sizing: border-box;

    background: #117f7c;

    border-radius: 380px 380px 0 0;

    padding: 5rem 4rem;
    margin: 0 auto;
}

.about-circle h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    font-weight: 300;
    text-align: center;
    color: white;
    margin: 0 0 3rem;
}

.about-circle h1::after {
    content: "";
    display: block;

    width: 80px;
    height: 1px;

    background: #d4b26a;

    margin: 1.25rem auto 0;
}

.about-copy {
    max-width: 560px;
    margin: auto;
}

.about-copy h2 {
    color: white;
    font-size: 1.6rem;
    margin: 3rem 0 1rem;
}

.about-copy p {
    color: white;
    line-height: 1.8;
    margin: 0 0 1.6rem;
}
.about-circle{

    width:min(760px,95%);

    background:#117f7c;

    border-radius:380px 380px 0 0;

    padding:

        5rem
        4rem
        5rem;
}
.about-circle h1{

    font-family:"Cormorant Garamond",serif;

    font-size:5rem;

    font-weight:300;

    text-align:center;

    color:white;

    margin-bottom:3rem;
}
.about-copy{

    max-width:560px;

    margin:auto;
}

.about-copy h2{

    color:white;

    font-size:1.6rem;

    margin-top:3rem;

    margin-bottom:1rem;
}

.about-copy p{

    color:white;

    line-height:1.8;

    margin-bottom:1.6rem;
}
.about-circle h1::after{

    content:"";

    display:block;

    width:80px;
    height:1px;

    background:#d4b26a;

    margin:1.25rem auto 0;
}