body {
    overflow-y: scroll;
}

/* Desktop Nav */

.nav-container {
    /* background: rgba(0, 0, 0, 0.8); */
    height: 64px;
    z-index: 300;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    padding:10px 0;
    
}

.nav-container nav {
    width: 800px;
    margin: 0 auto;
    /* padding: 0 8px; */
    height: 100%;
}

nav .desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

nav .desktop-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 400ms;
}

nav .desktop-nav li a:hover {
    opacity: 1;
}

.link-logo {
    background-image: url('../imgs/logo-naga.png');
    display: block;
    background-position: left center;
    background-size: 80px;
    height: 44px;
    width: 100px;
    background-repeat: no-repeat;
}

.link-close {
    background: url('../images/close-icon.svg');
    display: block;
    background-position: center;
    background-size: 17px;
    height: 44px;
    width: 20px;
    background-repeat: no-repeat;
}

/* Overlay */

.overlay.show {
    position: fixed;
    background: #0e3378;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
}

/* Desktop Nav Animation */

.desktop-nav li {
    transition: all 400ms ease;
}

.desktop-nav.hide li {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Overlay Animation */

.overlay {
    transition: all 400ms ease;
}

/* Navigation Menu Items Transition Delay */

.desktop-nav li:nth-of-type(1),
.desktop-nav.hide li:nth-of-type(10) {
    transition-delay: 0ms;
}

.desktop-nav li:nth-of-type(2),
.desktop-nav.hide li:nth-of-type(9) {
    transition-delay: 30ms;
}

.desktop-nav li:nth-of-type(3),
.desktop-nav.hide li:nth-of-type(8) {
    transition-delay: 60ms;
}

.desktop-nav li:nth-of-type(4),
.desktop-nav.hide li:nth-of-type(7) {
    transition-delay: 90ms;
}

.desktop-nav li:nth-of-type(5),
.desktop-nav.hide li:nth-of-type(6) {
    transition-delay: 120ms;
}

.desktop-nav li:nth-of-type(6),
.desktop-nav.hide li:nth-of-type(5) {
    transition-delay: 150ms;
}

.desktop-nav li:nth-of-type(7),
.desktop-nav.hide li:nth-of-type(4) {
    transition-delay: 180ms;
}

.desktop-nav li:nth-of-type(8),
.desktop-nav.hide li:nth-of-type(3) {
    transition-delay: 210ms;
}

.desktop-nav li:nth-of-type(9),
.desktop-nav.hide li:nth-of-type(2) {
    transition-delay: 240ms;
}

.desktop-nav li:nth-of-type(10),
.desktop-nav.hide li:nth-of-type(1) {
    transition-delay: 270ms;
}



/* Hidden Items */

.mobile-nav {
    display: none;
}


/* Media Queries */

@media (max-width: 1100px) {
    .nav-container nav {
        margin-top: 0 auto !important;
        width: 100%;
        padding: 0;
        /* padding-top:10px; */
        padding-right: 32px;
        padding-top:0px;
    }
}

@media (max-width: 768px) {
    .nav-container .desktop-nav {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0vh;
        background: #0e3378;
        justify-content: start;
        overflow: hidden;
        z-index: -1;
        transition: all 1000ms ease;
    }

    .nav-container.active .desktop-nav {
        height: 100vh;
    }

    .nav-container .desktop-nav li {
        width: 100%;
        padding-right: 32px;
    }

    .nav-container .desktop-nav li:first-child {
        margin-top: 60px;
    }

    .nav-container .desktop-nav .link-logo {
        display: none;
    }

    .nav-container .desktop-nav li a {
        padding: 16px 0;
        display: inline-block;
        border-bottom: 1px solid #616161;
        width: 100%;
        font-size: 17px;
        transform: translateY(-80px);
        opacity: 0;
        transition: all 700ms ease;
    }

    .nav-container.active .desktop-nav li a {
        transform: translateY(0);
        opacity: 1;
    }

    /* Mobile Nav */

    nav .mobile-nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        list-style: none;
    }

    nav .menu-icon-container {
        width: 20px;
        height: 44px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    nav .menu-icon {
        position: relative;
        width: 100%;
    }

    nav .menu-icon .line-1,
    nav .menu-icon .line-2 {
        position: absolute;
        height: 1px;
        width: 100%;
        background: #000;
        transition-property: transform, top;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    nav .menu-icon .line-1 {
        top: -4px;
    }

    nav .menu-icon .line-2 {
        top: 4px;
    }

    .nav-container.active nav .menu-icon-container .menu-icon .line-1 {
        top: 0;
        transform: rotateZ(45deg);
        transition-property: top, transform;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    .nav-container.active nav .menu-icon-container .menu-icon .line-2 {
        top: 0;
        transform: rotateZ(-45deg);
        transition-property: top, transform;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }    

    /* Nav Move Up */

    .nav-container nav.move-up {
        margin-top: -40px;
    }

    /* Desktop Nav Move Down */

    nav .desktop-nav.move-down li:first-child {
        margin-top: 150px;
    }

    nav .desktop-nav.move-down li {
        opacity: 0;
        pointer-events: none;
    }

    /* Nav Animation */

    .nav-container nav {
        transition: all 400ms ease;
    }
}


input,
div,
span,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.scrolled-2 {
    background-color: red !important;
    transition: background-color 200ms linear;
}

.scrolled {
    background-color: #0e3378 !important;
    transition: background-color 200ms linear;
}

.scrolled > ul > li > .link-logo {
    background-image: url('../imgs/logo-naga-light.png');
}

.scrolled > ul > li > div > div > span {
    background: white;
}

.nav-container > nav > ul > li > .link-logo {
    background-image: url('../imgs/logo-naga-light.png');
}

.nav-container > nav > ul > li > div > div > span {
    background: white;
}



  
  .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
  }
  
  .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
  }
  
  .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
  }
  
  .chevron:before,
  .chevron:after {
    content: ' ';
    position: absolute;
    top: 10px;
    height: 100%;
    width: 51%;
    background: #fff;
  }
  
  .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
  }
  
  .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
  }
  
  @keyframes move {
    25% {
      opacity: 0.5;
    }
    33% {
      opacity: 0.5;
      transform: translateY(30px);
    }
    67% {
      opacity: 0.5;
      transform: translateY(40px);
    }
    100% {
      opacity: 0;
      transform: translateY(55px) scale3d(0.3, 0.3, 0.3);
    }
  }

  .scroll-text {
    display: block;
    margin-left: -70px;
    font-size: 14px;
    color: #fff;
    /* text-transform: uppercase; */
    white-space: nowrap;
    font-weight: bold;
    opacity: 1;
    animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 0.7;
  }
}


#main-box {
    height:100vh
}


/** Safari */
@media not all and (min-resolution: 0.001dpcm) {
    #main-box {
        height: 80vh !important;
    }
}

.destination-thumb {
    position:relative;
    background-position:50% 50%;background-size:cover;width:100%;border-radius:20px;padding:20px 25px;color:white;

}

.destination-grad {
    left:0;
    top:0;
    border-radius: 20px;
    position:absolute;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.6));
}

.button-top {
    text-decoration:none;
    display:inline-block;
    border:none;border-radius:5px;
    font-size:18px;padding:15px 20px;color:white;text-align:center;font-weight:bold;
    /* width:100%; */
    border: solid 3px #0e3378
}
.blink_me {
animation: blinker 2s linear infinite;
}

@keyframes blinker {  
50% { opacity: 0; }
}

@media only screen and (max-width: 480px) {
    #second-photo {
        background-position:80% 0 !important;
        height:500px !important;
    }

}

@media only screen and (min-device-width: 480px) {
    h1 {
        margin-top:40px;
        font-size: 70px !important;
    }
    h5 {
        margin-top:30px;
        font-size: 30px !important;
    }
}

#led-text {
    position: relative;
    -webkit-animation: linear infinite;
    -webkit-animation-name: run;
    -webkit-animation-duration: 5s;
}
@-webkit-keyframes run {
    0% {
        left: 100%;
    }
    100% {
        left: -140%;    
    }
}

.footer-link {
    display: inline-block;
    padding-bottom:20px;
    padding:5px 0;
    text-decoration: none;
    cursor: pointer;
    color: #000;
}

.footer-link:hover {
    color:#0e3378;
    text-decoration: underline;
}