
/* colors */
:root {
    --cr-white: #ffffff;
}


.landing{
    width: 100%;
    height: 100vh;
}

.landingBg{
    background-image: url('/img/bg1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;    
    flex-direction: column; 
}

.landingBg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg,rgba(0, 0, 0, 0.72) 43%, rgba(0, 0, 0, 0.54) 62%, rgba(0, 0, 0, 0) 84%); */
    /* mix-blend-mode: overlay; */
    background-color: #7935038a;
    z-index: 1;
    /* pointer-events: none; */
}

.textLanding{
    text-align: center;
    padding: 40px 0;
    z-index: 9999;
    position: relative;
}

.textLanding h2{
    font-weight: 900;
    color: var(--cr-white);
    font-size: 55px;
    font-family: "Montserrat", sans-serif;
}