
/**
 * Hero Component
 ***************/

 .hero h1.hero-heading {
    font-family: var(--font1);
    font-size: calc(var(--hero-heading) - 40px);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
    z-index: 1;
    margin-top: 45px;
    word-break: break-word;
}
    @media (max-width: 990px){
        .hero h1.hero-heading {
            font-size: calc(var(--h1-main) - 20px);
        }
    }
    @media (min-width: 991px){
        .hero h1.hero-heading {
            margin-top: 0;
            font-size: calc(var(--hero-heading) - 200%);
        }
    }
    @media (min-width: 1200px){
        .hero h1.hero-heading {
            font-size: calc(var(--hero-heading) - 150%);
        }
    }
    @media (min-width: 1399px){
        .hero h1.hero-heading {
            font-size: var(--hero-heading);
        }
    }


/** 
* Hero Components
*****************/

.hero {
    position: relative;
    height: 100vh;
    z-index: -1;
}
.page-template-page-payment .hero:after {
    content: '\2193';
    display: flex;
    height: 6rem;
    width: 100%;
    position: absolute;
    bottom: 1rem;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.75);
    font-family: var(--font2);
    text-shadow: 0 0 10px rgb(0 0 0 / 40%);
}

.hero .herobg {
    position: absolute;
    height: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    
}

.hero .center-els {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 100px;
    position: relative;
}
    @media (max-width: 37.5em){
        .hero .center-els {
            padding: 20px;
        }
    }
