body {
    background: black;
    color: white;
    padding-block: 50px;
}

h2 {
    font-size: 4rem;
    margin-block: 60px;
    position: relative;
    line-height: 1;
}

h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.surgery p,
.surgery ul,
.surgery ol {
    /*color: hsla(0,0%,100%,.7);*/
    font-size: 1.4rem;
}

strong {
    color: white;
}

.overlay-text {
    position: relative;
    padding: 90px 30px;
}

.overlay-text img,
.overlay-text__background{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text__background {
    background: rgba(0,0,0,.7);
}

.overlay-text p,h3 {
    position: relative;
}

.overlay-text p {
    margin-top: 30px;
    color: hsla(0,0%,100%,.8);
}

.subsection {
    margin-bottom: 100px;
}

.subsection--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pyramid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    text-align: center;
    gap: 50px;
    margin-block: 50px;
}

.pyramid div:first-child {
    grid-column: 3/5;
}

.pyramid div:nth-child(2) {
    grid-row-start: 2;
    grid-column: 1/ 4;
}

.pyramid div:last-child {
    grid-row-start: 2;
    grid-column: 4/-1;
}

.reverse-pyramid {
    margin-block: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-inline: 100px;
    column-gap: 100px;
    row-gap: 50px;
    text-align: center;
}

.reverse-pyramid div:last-child {
    grid-column: 1/-1;
}

.guide {
    padding-bottom: 200px;
}
.guide__wrapper {
    position: relative;
}

.guide__bg-image {
    width: 100%;
    object-fit: cover;
}

.guide__item {
    position: absolute;
    font-size: 1rem;
}

.guide__item-relative {
    position: relative;
}

.guide__item h3 {
    font-size: 2rem;
}

.guide__item p {
    font-size: 1.2rem;
}
.guide__item--1 {
    bottom: 15px;
    left: 50px;
    width: 450px;
}

.guide__item--1 .guide__arrow {
    position: absolute;
    left: 72%;
    top: -88px;
    transform: rotate(126deg);
}

.guide__item--3 {
    top: 20%;
    right: 50px;
    width: 500px;
}

.guide__item--3 .guide__arrow {
    position: absolute;
    transform: rotate(-20deg);
    right: 100%;
    top: 83%;
}

.guide__item--2 {
    top: 80%;
    left: 50%;
    width: 45vw;
}

.guide__item--2 .guide__arrow {
    position: absolute;
    transform: rotate(62deg);
    bottom: 114%;
    right: 91%;
}

.guide .overlay-text__background {
    display: none;
}

.heading-label {
    font-size: 0.4em;
    color: #ff4c24;
    position: absolute;
    left: 0;
    top: 0.8em;
    transform: translateX(-100%);
    padding-right: 50px;
}

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

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

.hero-image {
    --offset: 7vw;
    position: relative;
    padding-bottom: var(--offset);
    margin-bottom: var(--offset);
}

.hero-image__item {
    height: auto;
    width: 100%;
    max-width: 60%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.hero-image__item:first-child {
    position: absolute;
    right: 0;
    z-index: 1;
    top: var(--offset);
}

@media screen and (max-width: 767px) {
    .surgery p,
    .surgery ul,
    .surgery ol {
        font-size: 1.2rem;
    }

    ul, ol {
        padding-left: 20px;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .heading-label {
        padding-right: 10px;
    }

    .mobile-full-width {
        max-width: 100vw;
        width: 100vw;
        margin-inline: -30px;
    }

    .subsection--row {
        grid-template-columns: 1fr;
    }

    .pyramid div:first-child,
    .pyramid div:nth-child(2),
    .pyramid div:last-child,
    .reverse-pyramid div:first-child,
    .reverse-pyramid div:nth-child(2),
    .reverse-pyramid div:last-child{
        grid-column: 1 / -1;
        grid-row-start: auto;
    }

    .reverse-pyramid {
        padding-inline: 0;
        row-gap: 20px;
    }

    .subsection--row img {
        order: 1;
    }
    .
}

@media screen and (max-width: 1350px) {
   .guide__arrow {
       display: none;
   }
}

@media screen and (max-width: 1000px) {
    .guide__wrapper {
        padding: 25px;
    }

    .guide__item {
        position: relative;
        z-index: 1;
        inset: 0 !important;
        width: initial !important;
    }

    .guide__bg-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .guide .overlay-text__background {
        display: block;
    }

    .guide {
        padding-bottom: 0;
    }
}