/* ---------------------------------NAV ---------------------------------------------*/
.nav-heart {
    position: absolute;
    z-index: 15;
    height: 40px;
    width: auto;
}
.nav-logo{
    z-index: 1001;
    height: 35px;
    width: auto;
    margin-left: 55px;
    padding-bottom: 5px;
}
#logo-banner{
    display: inline-block;
}
.hamburger {
    display: none;
}
.hamburger-patty {
    display: none;
    height: 3px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    transition: all .3s ease;
    width: 100%;
    background-color: rgb(219,10,91);
    animation: hamburger-color 6s infinite;
}
@keyframes hamburger-color {
    33.33%      {background-color: rgb(244, 220, 86);}
    66.66%      {background-color: rgb(18, 187, 249);}
    100%      {background-color:  rgb(219, 10, 76);}
}
.hamburger-patty::before {
    transform: translateY(-300%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    transition: all .3s ease;
    width: 100%;
    background-color: rgb(219,10,91); ;
    animation: hamburger-color 6s infinite;
}
.hamburger-patty::after {
    transform: translateY(300%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    transition: all .3s ease;
    width: 100%;
    background-color: rgb(219,10,91); ;
    animation: hamburger-color 6s infinite;
}
.desktop-nav-wrapper{
    display: block;
    z-index: 1002;
}
.disable-scroll {
    margin: 0; 
    height: 100%; 
    overflow: hidden;
    max-width:100%;
     max-height:100%;
     overflow:hidden;
}
.nav-bg {
    background-color: #ffffff;
    position: fixed;
    z-index: 2;
    border-bottom: .5px solid rgb(219,10,91);
    animation: border-color 6s infinite;
}
@keyframes border-color {
    33.33%      {border-bottom: .5px solid rgb(244, 220, 86);}
    66.66%      { border-bottom: .5px solid rgb(18, 187, 249);}
    100%      { border-bottom: .5px solid  rgb(219, 10, 76);}
}
/* ---------------------------------- NAV TABLET VIEW ---------------------------------------*/
@media (min-width: 412px) and (max-width: 768px) {
    #logo-banner{
        display: block;
    }
    .nav-bg {
        background-color: #ffffff;
        position: fixed;
        z-index: 2;
    }
    .desktop-nav-wrapper {
        display: none;
        }
    .hamburger {
        display: block;
        text-align: center;
        left: 22px;
        height: 24px;
        position: fixed;
        top: 23px;
        width: 35px;
    }
    .hamburger-patty { 
        display: block;
    }
    #logo-fade{
        float: right;
        padding-right: 64px;
    }
    .nav-logo{
        display: block;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1001;
        height: 40px;
        width: auto;
        padding-bottom: 0;
    }
    .header-logo{
        display: none;
    }
}
/* -------------------------- NAV MOBILE VIEW ---------------------------------------------->*/
@media (max-width: 411px) {
    #logo-banner{
        display: block;
    }
    .nav-bg {
        /* background-color: rgb(26, 26, 26); */
        background-color: #ffffff;
        position: fixed;
        z-index: 2;
    }
    .desktop-nav-wrapper {
        display: none;
    }
    .hamburger {
        display: block;
        text-align: center;
        left: 22px;
        height: 24px;
        position: fixed;
        top: 23px;
        width: 35px;
    }
    .hamburger-patty { 
        display: block;
    }
    #logo-fade{
        float: right;
        padding-right: 64px;
    }
    .nav-logo{
        display: block;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1001;
        height: 40px;
        width: auto;
        padding-bottom: 0;
    }
    .header-logo{
        display: none;
    }
}
/* ---------------------------WATERFALL ANIMATION ---------------------------*/
#animation img {
    display: none;
}
#animation img:first-child {
    display: block;
} 
@media (min-width: 412px) and (max-width: 768px) {
    #animation img {
        padding: 0 auto;
        }
}
@media (max-width: 411px) {
    #animation img {
        padding: 0 auto;
    }
}
/* ------------------HEART ANIMATION--------------- */
@-webkit-keyframes fade-in-out {
    0% {opacity: 0;}
    20% {opacity: 1;}
    33% {opacity: 1;}
    53% {opacity: 0;}
    100% {opacity: 0;}
}
@-moz-keyframes fade-in-out {
    0% {opacity: 0;}
    20% {opacity: 1;}
    33% {opacity: 1;}
    53% {opacity: 0;}
    100% {opacity: 0;}
}
@-o-keyframes fade-in-out {
    0% {opacity: 0;}
    20% {opacity: 1;}
    33% {opacity: 1;}
    53% {opacity: 0;}
    100% {opacity: 0;}
}
@keyframes fade-in-out {
    0% {opacity: 0;}
    20% {opacity: 1;}
    33% {opacity: 1;}
    53% {opacity: 0;}
    100% {opacity: 0;}
}
#logo-fade img {
     -webkit-animation-name: fade-in-out;
     -webkit-animation-timing-function: ease-in-out;
     -webkit-animation-iteration-count: infinite;
     -webkit-animation-duration: 6s;
   
     -moz-animation-name: fade-in-out;
     -moz-animation-timing-function: ease-in-out;
     -moz-animation-iteration-count: infinite;
     -moz-animation-duration: 6s;
   
     -o-animation-name: fade-in-out;
     -o-animation-timing-function: ease-in-out;
     -o-animation-iteration-count: infinite;
     -o-animation-duration: 6s;
   
     animation-name: fade-in-out;
     animation-timing-function: ease-in-out;
     animation-iteration-count: infinite;
     animation-duration: 6s;
}
#logo-fade img:nth-of-type(1) {
    -webkit-animation-delay: 4s;
     -moz-animation-delay: 4s;
     -o-animation-delay: 4s;
     animation-delay: 4s;
}
#logo-fade img:nth-of-type(2) {
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    animation-delay: 2s;
}
#logo-fade img:nth-of-type(3) {
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
} 

/* MOBILE NAV POP UP */
.mobile-pop {
    background-color: rgb(255, 255, 255);
    width:100%;
    bottom: 0;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100vh;
    position: fixed;
}
.mobile-close{
   padding-left: 20px;
   padding-bottom: 20px;
  }
.mobile-close-right {
    transform: translateY(0) rotate(-45deg);
    height: 4px;
    position: absolute;
    width: 40px;
    background-color: rgb(219,10,91);
    animation: x-color 6s infinite;
}
@keyframes x-color {
    33.33%      {background-color: rgb(244, 220, 86);}
    66.66%      {background-color: rgb(18, 187, 249);}
    100%      {background-color:  rgb(219, 10, 76);}
}
.mobile-close-left {
    transform: translateY(0) rotate(45deg);
    height: 4px;
    position: absolute;
    width: 40px;
    background-color: rgb(219,10,91);
    animation: x-color 6s infinite;
}