/*----------------------------------------------
*
* [Default Stylesheet]
*
* Theme    : NEXGEN
* Version  : 1.0
* Author   : Codings
* Support  : codings.dev
* 
----------------------------------------------*/

/*----------------------------------------------

[ALL CONTENTS]

1. Root
2. Button
3. Effect

----------------------------------------------*/

/*----------------------------------------------
1. Root
----------------------------------------------*/

/* #region Root */

:root {
    /* Activator Brand Typography */
    --h1-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --h1-size: 3.8rem;
    --h1-weight: 700;
    --h2-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --h2-size: 3rem;
    --h2-weight: 700;
    --p-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --p-size: 1rem;
    --p-weight: 400;

    /* Activator Brand Colors */
    --header-bg-color: #FFFFFF;
    --nav-top-bg-color: #1A1A1A;
    --nav-sub-bg-color: #FFFFFF;
    --nav-holder-bg-color: #FFFFFF;
    --nav-brand-height: 50px;
    --nav-item-color: #1A1A1A;
    --hero-bg-color: #FFFFFF;
    --section-1-bg-color: #FFFFFF;
    --section-2-bg-color: #F5F5F5;
    --section-3-bg-color: #1A1A1A;
    --section-4-bg-color: #FDE8EB;
    --section-5-bg-color: #F0F0F0;
    --footer-brand-height: 50px;
    --primary-color: #C41E3A;
    --secondary-color: #F5F5F5;
    --white-color: #FFFFFF;
    --black-color: #1A1A1A;
    --dark-grey-color: #1A1A1A;
    --primary-t-color: #1A1A1A;
    --secondary-t-color: #1A1A1A;
    --primary-p-color: #1A1A1A;
    --secondary-p-color: #6B6B6B;
    --primary-b-color: #FFFFFF;
    --primary-l-color: rgba(0, 0, 0, .10);
    --secondary-l-color: #F5F5F5;
    --valid-color: #007a4d;
    --invalid-color: #e34f4f;
    --primary-bg-color: #FFFFFF;
    --primary-bg-color-2: #F5F5F5;
    --primary-bg-color-3: rgba(196, 30, 58, 0.08);
    --secondary-bg-color: #F5F5F5;
    --secondary-bg-color-2: #FFFFFF;
    --secondary-bg-color-3: #F5F5F5;
    --card-bg-color: rgba(245, 245, 245, 0.95);
    --card-secondary-bg-color: rgba(255, 255, 255, 0.95);

    --footer-bg-color: #1A1A1A;
}

@media(max-width: 766px) {
    :root {
        --h1-size: 3.5rem !important;
        --h2-size: 2rem !important;
        --p-size: 1rem !important;
    }
}

@media(max-width: 374px) {
    :root {
        --h1-size: 1.5rem !important;
        --h2-size: 1.2rem !important;
        --p-size: 1rem !important;
    }
}


/* #endregion Root */

/*----------------------------------------------
2. Button
----------------------------------------------*/

/* #region Button */

.primary-color {
    color: var(--primary-color)
}


.primary-button, .primary-button:visited, .primary-button:active {
    position: relative;
    z-index: 2;
    padding: 10px 25px !important;
    background-color: var(--primary-color);
    border-radius: 4px;
    border: 1px solid;
    border-color: var(--primary-color);
    color: var(--white-color) !important;
    font-weight: 500;
    -webkit-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}

.primary-button:hover, .primary-button:focus {
    background-color: #a3182f;
    border-color: #a3182f;
    color: var(--white-color);
}

.outline-button, .outline-button:visited, .outline-button:active {
    position: relative;
    z-index: 2;
    padding: 10px 25px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid;
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    -webkit-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}

    .even .outline-button, .outline-button:visited, .outline-button:active {
        color: var(--primary-t-color);
    }

.odd .outline-button, .odd .outline-button:visited, .odd .outline-button:active {
    position: relative;
    z-index: 2;
    padding: 10px 25px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid;
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    -webkit-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}

.outline-button:hover, .outline-button:focus {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* #endregion Button */

/* #region Effect */

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--secondary-color);
        background-color: var(--secondary-color);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(196, 30, 58, 0);
        background-color: rgba(196, 30, 58, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(196, 30, 58, 0);
        background-color: rgba(196, 30, 58, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 var(--secondary-color);
        box-shadow: 0 0 0 0 var(--secondary-color);
        background-color: var(--secondary-color);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(196, 30, 58, 0);
        box-shadow: 0 0 0 10px rgba(196, 30, 58, 0);
        background-color: rgba(196, 30, 58, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(196, 30, 58, 0);
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0);
        background-color: rgba(196, 30, 58, 0);
    }
}

/* #endregion Effect */
