.hero {
    padding: 40vh 0 0rem;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero h1 {
    font-size: 14rem;
    color: white;
    width: 42rem;
    text-align: center;
    line-height: 90%;
    position: relative;
    z-index: 1;
}
.hero h1.show-menu {
    z-index: 0;
}

.hero-bar {
    background: var(--primaryColor);
    padding: 4rem 0 2.5rem;
    position: relative;
    margin-top: -3rem;
}

.hero-bar .container {
    justify-content: space-between;
}

.home-intro {
    max-width: 30rem;
}
.home-intro p {
    font-size: 1.35rem;
    line-height: 180%;
}

.signature {
    width: 12rem;
}

.section-intro {
    max-width: 30rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* SERVICES */

.box {
    background-color: var(--secondaryColor);
    background-size: cover;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    min-height: 25rem;
    border-radius: 22px;
}
.box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.65;
    z-index: 1;
    border-radius: 22px;
}

.box-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    max-width: 69%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.box h4 {
    background: white;
    border-radius: 15px;
    padding: 15px 22px;
    font-size: 2.2rem;
    line-height: 1.2em;
}

.box p {
    font-size: 1.2rem;
    color: white;
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
}

.box:nth-of-type(2) .corner-icon img {
    background: #D4A276;
}
.box:nth-of-type(3) .corner-icon img {
    background: #FFEDD8;
}

/* COACHING */

.coach {
    background: rgba(124, 62, 77, 0.10);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    flex: 1;
    position: relative;
    border-radius: 11px;
}

.coach img {
    border-radius: 6px;
    background: #FAF7F8;
    padding: 0.5rem;
    height: 35px;
    width: 35px;
    display: block;
    align-self: flex-end;
}

.cta-box {
    background: var(--primaryColor);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
    flex: 0 0 25%;
    position: relative;
}
.cta-box h4 {
    color:white;
}
.cta-box p {
    color: white;
    font-size: 0.9rem;
}