/* Stripe vars */
:root {
    --stripe-height: calc((7vw + 7vh) / 2);
}

.stripe {
    position: absolute;
    height: var(--stripe-height);
    width: 100%;
    overflow: hidden;
    z-index: 10;
}

.stripe-main-line {
    background-color:#d24538; 
    height:100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

}

.stripe-middle-line {
    background-color:#d55348; 
    width: 100%;
    height: 75%;
}

.stripe-parallelogram-main {
    background-color: #d55348;
    height: var(--stripe-height);
    width: calc(var(--stripe-height) * 0.5); /* Line Height * 0.5 */
    transform: skew(-25deg);
    display: flex;
    align-items: center;

}

.stripe-parallelogram-main-inner {
    background-color: #dd7d76;
    height: 75%;
    width: calc(var(--stripe-height) * 0.5);
    transform: skew(-0deg);
}

.stripe-parallelograms-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    
    display: flex;
    gap: calc(var(--stripe-height) * 0.5);
}

.stripe-text-container {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    
    display: flex;
    gap: calc(var(--stripe-height) * 0.25); /* Line Height * 0.25 */
    align-items: center;
}

.stripe-text {
    font-size: calc(var(--stripe-height) * 0.75); /* Line Height * 0.75 */
    line-height: 1.0;
    color: var(--secondary-color-dark);
    font-weight: var(--font-weight-bold);
}