/*----------------------------------------------
*
* [Default Stylesheet]
*
* Theme    : NEXGEN
* Version  : 1.0.0
* Author   : Codings
* Support  : codings.dev
* 
----------------------------------------------*/

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

[ALL CONTENTS]

1. Root
2. Button
3. Effect

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

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

/* #region Root */

:root {
    --h1-font: 'hurme_regular' !important;
    --h1-size: 4.5rem;
    --h1-weight: 900;
    
    --h2-font: 'hurme_regular' !important;
    --h2-size: 3rem;
    --h2-weight: 700;
    
    --p-font: 'hurme_regular' !important;
    --p-size: 1rem;
    --p-weight: 400;

    --preloader-bg-color:linear-gradient(90deg, rgba(6,4,51,1) 20%, rgba(64,49,139,1) 50%, rgba(6,4,51,1) 80%);
    --header-bg-color: #060433;
    --nav-top-bg-color: #060433;
    --nav-sub-bg-color: #21333e;
    --nav-holder-bg-color: #21333e;
    --nav-brand-height: 35px;
    --nav-item-color:#060433;
    --hero-bg-color: #111117;
    --footer-brand-height: 80px;

    --primary-color: #00a6a6;
    --secondary-color: #00a6a6;
    
    --white-color: #FFFFFF;
    --black-color: #000007;
    --dark-grey-color: #111117;

    --primary-t-color: #060433;
    --secondary-t-color: #f9f9f9; 
    --primary-p-color: #606d75;
    --secondary-p-color: #00a6a6;
    --primary-b-color: #f9f9f9;
    --primary-l-color: rgba(0, 0, 0, .25);
    --secondary-l-color: rgba(255, 255, 255, 0.35);

    --valid-color: #007a4d;
    --invalid-color: #e34f4f;

    --primary-bg-color: #f9f9f9;
    --primary-bg-color-2: #f1f1f1;
    --primary-bg-color-3: rgba(5, 130, 131, 0.15);

    --secondary-bg-color: #111117;
    --secondary-bg-color-2: #080d10;
    --secondary-bg-color-3: #191919;

    --card-bg-color: #ffffff;

    --footer-bg-color: #111117;
}

/* #endregion Root */

/*----------------------------------------------
2. Button
----------------------------------------------*/

/* #region Button */

.primary-button, .primary-button:visited, .primary-button:active {
    position: relative !important;
    z-index: 2 !important;
    padding: 10px 25px !important;
    background-color: var(--primary-color) ;
    border-radius: 4px;
    border: 3px solid !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-b-color);
    font-weight: 500 !important;
    -webkit-transition: all .4s ease-out 0s !important;
    -o-transition: all .4s ease-out 0s !important;
    -moz-transition: all .4s ease-out 0s !important;
    transition: all .4s ease-out 0s !important;
}


.primary-button:hover, .primary-button:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.outline-button, .outline-button:visited, .outline-button:hover {
    position: relative !important;
    z-index: 2 !important;
    padding: 10px 25px !important;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-weight: 500 !important;
    -webkit-transition: all .4s ease-out 0s !important;
    -o-transition: all .4s ease-out 0s !important;
    -moz-transition: all .4s ease-out 0s !important;
    transition: all .4s ease-out 0s !important;
}

.odd .outline-button, .odd .outline-button:visited, .odd .outline-button:hover {
    position: relative ;
    z-index: 2;
    padding: 10px 25px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid;
    border-color: var(--primary-color) !important ;
    color: var(--primary-b-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:hover {
    border-color: var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
    color: var(--white-color) !important;
}

/* #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(204,169,44, 0);
        background-color: rgba(204,169,44, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        background-color: rgba(204,169,44, 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(204,169,44, 0);
        box-shadow: 0 0 0 10px rgba(204,169,44, 0);
        background-color: rgba(204,169,44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        box-shadow: 0 0 0 0 rgba(204,169,44, 0);
        background-color: rgba(204,169,44, 0);
    }
}

@font-face{
    font-family: hurme_regular;
    src: url(../fonts/hurme/HurmeGeometricSans2-Regular.otf);
}

/* #endregion Effect */