/*----------------------------------------------
/* 
#3aafa9 light green
#2b7a77 green
#f8f9fa white smoke
#FFF white
#1d1d1d black
#101010 dark
----------------------------------------------*/

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



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

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

/* #region Root */


:root {
    cursor: none;
    --h1-font: 'Poppins', sans-serif;
    --h1-size: 4.5rem;
    --h1-weight: 900;

    --h2-font: 'Poppins', sans-serif;
    --h2-size: 3rem;
    --h2-weight: 700;

    /* --p-font: 'Roboto Mono', sans-serif; */
    --p-font: 'Montserrat', sans-serif;
    --p-size: 1rem;
    --p-weight: 400;

    --header-bg-color: #111111;
    --nav-top-bg-color: #21333e;
    --nav-sub-bg-color: #21333e;
    --nav-holder-bg-color: #21333e;
    --nav-brand-height: 35px;
    --nav-item-color: #f9f9f9;
    --hero-bg-color: #111111;
    --footer-brand-height: 80px;

    --primary-color: #2b7a77;
    --secondary-color: #3aafa9;

    --white-color: #ffffff;
    --black-color: #000007;
    --dark-grey-color: #111111;

    --primary-t-color: #21333e;
    --secondary-t-color: #f9f9f9;
    --primary-p-color: #606d75;
    --secondary-p-color: #c0c3d0;
    --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: #111111;
    --secondary-bg-color-2: #080d10;
    --secondary-bg-color-3: #191919;

    --card-bg-color: #ffffff;

    --footer-bg-color: #111111;

    --section-1-bg-color: #ffffff;
    --section-2-bg-color: #eef4ed;
    --section-3-bg-color: #111111;
    --section-4-bg-color: #ffffff;
    --section-5-bg-color: #eef4ed;

    --footer-bg-color: #111111;
    --footer-bg-image: url('../../images/footer-bg.jpg');
}

@media(max-width:992px){
    :root {
        cursor: auto;
    }
}

/* #endregion Root */

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

/* #region Button */

.primary-button,
.primary-button:visited,
.primary-button:active {
    position: relative;
    z-index: 2;
    padding: 10px 25px;
    background-color: var(--primary-color);
    border-radius: 4px;
    border: 1px solid;
    border-color: var(--primary-color);
    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;
}

.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: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;
}

.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-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:focus {
    border-color: var(--secondary-color);
    background-color: var(--secondary-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(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);
    }
}

/* #endregion Effect */

.black {
    color: #111111;
}

/* right click menu */

ul.contextMenu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    color: #333;
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.2);
    background: #FFF;
    display: none;
}

ul.contextMenu * {
    transition: color .4s, background .4s;
}

ul.contextMenu li {
    min-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 15px;
    background-color: #fff;
    border-bottom: 1px solid #ecf0f1;
}

ul.contextMenu li a {
    color: #333;
    text-decoration: none;
}

ul.contextMenu li:hover {
    background-color: #ecf0f1;
}

ul.contextMenu li:first-child {
    border-radius: 5px 5px 0 0;
}

ul.contextMenu li:last-child {
    background: #ecf0f1;
    border-bottom: 0;
    border-radius: 0 0 5px 5px
}

ul.contextMenu li:last-child a {
    display: inline-block;
    width: 26%;
}

ul.contextMenu li:last-child:hover a {
    color: #2c3e50;
}

ul.contextMenu li:last-child:hover a:hover {
    color: #2980b9;
}

/* Cursor */
.page {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.page__inner {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
}

.cursor--small {
    width: 5px;
    height: 5px;
    left: -2.5px;
    top: -2.5px;
    border-radius: 50%;
    z-index: 11000;
    background: #6c757d;
}

.cursor--canvas {
    width: 100vw;
    height: 100vh;
    z-index: 12000;
}

.page,
.page a {
    cursor: none !important;
}

@media (max-width:992px) {
    .cursor {
        display: none !important;
    }
}

@media(max-width:992px) {
    .desktopOnly {
        display: none !important;
    }
}

@media(min-width:992px) {
    .mobileOnly {
        display: none !important;
    }
}

.alert-message {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    z-index: 9;
}

.alert {
    position: relative;
    padding: 15px;
    padding-right: 50px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #000;
}