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

    / michaeleverard.com
    / 02.18.2023

----------------------------------------------------------------
----------------------------------------------------------------

    / 01    -   NavBar Navigation
    / 02    -   Mobile Navigation
    / 03    -   Mobile Navigation Content
    / 04    -   Buttons

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


/* -----------------------------
01 - NavBar Navigation
------------------------------*/

.navBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--dk-gray);
    height: 93px;
}
.navBar a {
    display: inline-block;
    position: relative;
    z-index: 100;
    padding: 2em 5em 2em 2em;
    margin: -2em -5em -2em -2em;
}
.navWrapper {
    float: right;
    z-index: 1010;
    padding: 24px 60px 0 100px;
    text-align: end;
}  
nav {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
} 
.navWrapper ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.navWrapper li {
    color: #fff;
    display: block;
    float: left;
    padding: 1rem;
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
} 
.navWrapper li a {
    color: var(--lt-footer);
    opacity: .5;
}
.navWrapper li:hover a, .navWrapper .active-Nav {
    color: var(--white);
    opacity: 1;
    cursor: pointer;
}
.navWrapper li:focus-within a {
    outline: none;
}
.navWrapper ul li ul {
    background-color: var(--dk-footer);
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    position: absolute;
    transition: all 0.5s ease;
    margin: 3px 0 0;
    padding: 5px 0;
    background-clip: padding-box;
    border: 0;
    box-shadow: none;
    left: 0;
    line-height: 8px;
    display: none;
    text-align: left;
    transition-duration: 0.5s;
}
.navWrapper ul li ul .divider {
    width: 100%;
    height: 1px;
    margin: 10px 0;
    padding: 0;
    background-color: var(--white);
}
.navWrapper ul li:hover > ul,
.navWrapper ul li:focus-within > ul,
.navWrapper ul li ul:hover,
.navWrapper ul li ul:focus {
     visibility: visible;
     opacity: 1;
     display: block;
}
.navWrapper ul li .dropdown li:hover {
    background-color: var(--white);
}
.navWrapper ul li .dropdown li:hover a {
    color: var(--text);
}
.navWrapper ul li ul li {
    clear: both;
    transition-duration: 0.5s;
    width: 100%;
}

/*   Settings // Tablet   */
/*----------------------------*/

@media(max-width: 900px) {
    .navBar {
        visibility: hidden;
        display: none;
    }
}

/*   Settings // Mobile   */
/*----------------------------*/

@media(max-width: 600px) {
    .navBar {
        visibility: hidden;
        display: none;
    }
}

/* -----------------------------
02 - Mobile Navigation
------------------------------*/

#navigation {
    visibility: hidden;
    display: none;
}
.navigation p {
    font-size: 12px;
    line-height: 16px;
}
.navigation {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 200;
    padding: 34px 0 0;
}
.navigation.active {
    position: fixed;
}
.navigation .nav-toggler {
    position: fixed;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--black-alpha-30);
    border: 1px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.navigation .nav-toggler:hover {
    background-color: var(--dk-gray);
    opacity: .7;
}
.navigation .nav-toggler span {
    height: 2px;
    width: 24px;
    background-color: var(--white);
    position: relative;
}
.navigation.active .nav-toggler span {
    background-color: transparent;
}
.navigation .nav-toggler span::before,
.navigation .nav-toggler span::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: all 0.3s ease;
}
.navigation .nav-toggler span::before {
    left: 0;
    transform: translateY(-8px);
}
.navigation.active .nav-toggler span::before {
    transform: rotate(45deg);
}
.navigation .nav-toggler span::after {
    right: 0;
    transform: translateY(8px);
}
.navigation.active .nav-toggler span::after {
    transform: rotate(-45deg);
}
.navigation:not(.active) .nav-toggler:hover span::before,
.navigation:not(.active) .nav-toggler:hover span::after {
    width: 50%;
}

/* -----------------------------
03 - Mobile Navigation Content
------------------------------*/

.navigation .nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 35px 15px;
    overflow-y: auto;
    visibility: hidden;
}
.navigation.active .nav {
    visibility: visible;
}
.navigation .nav-inner .navCap {
    text-transform: uppercase;
}
.navigation .nav-inner {
    min-height: calc(100vh - 70px);
    max-width: 1200px;
    margin: auto;
    background-color: var(--black-alpha-70);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: blur(5px);
    padding: 50px 0;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: all 0.5s ease;
}
.navigation.active .nav-inner {
    opacity: 1;
}
.navigation .nav-inner ul li {
    flex-direction: column;
    text-align: center;
}
.navigation .nav-item2 {
    background-color: var(--black-alpha-80);
}
.navigation .nav-inner ul li a {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white);
    display: block;
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.3s ease;
    position: relative;
}
.navigation .nav-inner .divider {
    width: 100%;
    height: 2px;
    margin: 10px 0;
    padding: 0;
    background-color: var(--white);
}
.navigation .nav-inner ul li a:hover {
    background-color: var(--white);
    color: var(--dk-gray);
    transition: all 0.3s ease;
}

/*   Nav Content // Tablet   */
/*----------------------------*/

@media(max-width: 900px) {
    #navigation {
        visibility: visible;
        display: block;
    }
    .navigation .nav-inner {
        min-height: calc(100vh - 100px);
        max-width: 700px;
    }
    .navigation .nav-inner ul li a:hover {
        text-decoration-thickness: 2px;
    }
}

/*   Nav Content // Mobile   */
/*----------------------------*/

@media(max-width: 600px) {
    .navigation .nav-inner {
        min-height: calc(100vh - 200px);
        max-width: 100vw;
        flex-direction: column;
    }
    .navigation .nav-inner ul li a {
        font-size: 20px;
        font-weight: 500;
        padding: 4px 10px;
        text-align: center;
    }
    .navigation .nav-inner-creative {
        margin-top: 20px;
    }
    .navigation .nav-inner-creative ul li a {
        font-size: 15px;
        font-weight: 500;
        padding: 4px 20px;
        text-align: center;
    }
    .navigation .nav-inner-creative ul li.active-creative {
        font-size: 15px;
        text-align: center;
    }
    .strike {
        font-size: 15px;
    }
}

/* -----------------------------
04 - Buttons
------------------------------*/

.button {
    text-align: center;
}
.buttonN {
    font-family: inherit;
    user-select: none;
}
.btn {
    background:transparent;
    border-radius:0;
    border:0;
}
.btn-default{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: var(--white);
    padding: 0 40px;
    line-height: 40px;
    letter-spacing: .2em;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    outline: 1px solid transparent;
    -webkit-transition: all .5s ease .25s;
    transition: all .5s ease .25s;
}
.btn-default:hover {
    border-color: var(--white);
}
.btn-default:after, .btn-default:before {
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    background: var(--white);
}
.btn-default:before {
    left: -8px;
}
.btn-default:hover:before {
    left: 0;
}
.btn-default:after {
    right: -8px;
}
.btn-default:hover:after {
    right: 0;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open>.dropdown-toggle.btn-default {
    color: var(--gray);
    background-color: var(--lt-gray);
    border-color: var(--white);
}
.btn:active, .btn.active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn:focus, .btn:active:focus, .btn.active:focus {
    outline: 0;
}
.btn-black{
    color:  var(--dk-gray);
}
.btn-black:after, .btn-black:before {
    background: var(--dk-gray);
}
.btn-black:hover {
    color: var(--white);
    background-color: var(--dk-gray);
    border-color: var(--dk-gray);
}
.buttonWrapp {
    max-width: 1200px;
    height: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 30px 200px 30px;
}

/*   Settings // Tablet   */
/*----------------------------*/

@media(max-width: 900px) {
    .btn-default{
        font-weight: 700;
        font-size: 10px;
        padding: 0 40px;
        line-height: 30px;
        letter-spacing: 1;
    }
    .buttonWrapp {
        max-width: 1200px;
        height: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column-reverse;
        padding: 20px 30px 60px 30px;
    }
    .button-r {
        padding-bottom: 20px;
    }
    .btn-default-top {
        visibility: visible;
        display: inline-block;
    }
}