/*----------------------------------------------
*
* [Theme Pink Stylesheet]
*
* Theme    : Leverage
* Version  : 2.1
* Author   : Codings
* Support  : codings.dev
* 
----------------------------------------------*/

/*----------------------------------------------

[ALL CONTENTS]

1. Root
2. Custom

----------------------------------------------*/

/*----------------------------------------------
1. Root
----------------------------------------------*/

/* #region Root */

:root {
    
    --primary-color: #dd1e4b;
    --secondary-color: #E0040B;
}

/* #endregion Root */

/*----------------------------------------------
2. Custom
----------------------------------------------*/

/* #region Custom */

.effect-static-text-alt {
    background-image: -webkit-linear-gradient(150deg, var(--secondary-color) 5%, var(--nav-item-color) 75%);
    background-image: linear-gradient(150deg, var(--secondary-color) 5%, var(--nav-item-color) 75%);
}

footer .brand .logo {
    font-size: 1.5rem;
}

.description-alt {
    color: #CFCFCF;
}

.the-process {
    margin-bottom: 0 !important;
}

.pink-text {
    color: var(--primary-color);
}

.hero-alt {
    width: 100%;
    height: 100%;
}

    .hero-alt:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--hero-bg-color);
        opacity: 0;
    }

/* Darken Hero Images below 1280px wide */

@media(max-width: 1280px) {

    .hero-alt[data-mask-768="70"]:before {
        opacity: 0.7;
    }
}



/* #endregion Custom */