*:not(a > img):not(li.img):not(a.img) {
    transition-duration: 240ms;
}

.nb {
    display: none;
    float: right;
}

.nc {
    float: right;
}

body, html {
    height: 100%;
    margin: 0;
    font: 400 15px/1.8 "Lato", sans-serif;
    color: #000;
    background-color: #00000088;
}

.popupContainer {
    width: 400px;
    background-color: #fff;
    position: relative;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden;
    z-index: 10;
}

.popupContainer h2 {
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
}

.openPopup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.blocker {
    width: 100%;
    height: 100vh;
    background-color: #0007;
    position: fixed;
    visibility: hidden;
    z-index: 5;
}

.popupContainer a {
    color: #00f;
}

.popupContainer a:hover {
    color: #09f;
}

.popupContainer a:visited {
    color: #00f;
}

.bgimg {
    position: relative;
    opacity: 1;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(images/bg-img.png);
    height: 100%;
}

.bgimg-2 {
    position: relative;
    opacity: 1;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(images/bg-img.png);
    height: 40%;
}

@media only screen and (max-device-width: 1024px) {
    .bgimg {
        background-attachment: scroll;
    }
    .na {
        display: none;
    }
    .nb {
        display: initial;
    }
}

::-moz-selection {
    color: #00f;
    background: #0ff;
}

::selection {
    color: #00f;
    background: #0ff;
}

h3 {
    letter-spacing: 5px;
    text-transform: uppercase;
    font: 36px "Lato", sans-serif;
    text-align: center;
}

h3:hover {
    color: #777;
}

p:hover {
    color: #777;
}

.footer {
    background-color: #132542;
    color: #fff;
}

.box {
    background-color: #fff;
    color: #000;
}

.box, .footer {
    top: 0%;
    padding: 50px 80px;
    font-size: 20px;
}

.box { text-align: justify; }

.footer a {
    text-align: center;
}

.box2 {
    top: 0%;
    color: #000;
    background-color: #f5ffc8;
    padding: 50px 80px;
    text-align: justify;
    font-size: 20px;
}

.box3 {
    top: 0%;
    color: #000;
    background-color: #97efff;
    padding: 50px 80px;
    text-align: justify;
    font-size: 20px;
}

ul.n {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #eee;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}

li.n:not(.nb):not(.nc) {
    float: left;
}

li.n a.text {
    display: block;
    color: #000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li.n a.text:hover {
    color: #ffb700;
}

a.text.active {
    background-color: #00ffff;
}

a > img {
    width: 90%;
    align-self: center;
    padding: auto;
    margin: auto;
}

li.img {
    width: 7%;
    max-height: 10%;
    padding: auto;
    margin: auto;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

a.img {
    display: flex;
    justify-content: center;
    align-items: center;
}

div a {
    color: #09f;
    text-decoration: none;
}

div a:hover {
    color: #ffb700;
    text-decoration: underline;
}

div a:active {
    background-color: #00ffff;
    color: #0000ff;
}

.caption {
    position: absolute;
    left: 0;
    top: 40%;
    width: 100%;
    text-align: center;
    color: #00000055;
}
    
.caption span.border {
    background-color: #0007;
    color: #fff;
    padding: 18px;
    font-size: 28px;
    letter-spacing: 10px;
}

.border {
    animation-name: homeAnim;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes homeAnim {
    20% {
        color: #fff;
        letter-spacing: 10px;
    }
    40% {
        color: #f0f;
    }
    60% {
        color: #7f0;
    }
    80% {
        color: #0af;
    }
    100% {
        color: #fff;
        letter-spacing: 15px;
    }
}

.caption span.border:hover {
    color: #777;
}

.caption span.sd {
    color: #fff;
    padding: 12px;
    font-size: 18px;
    letter-spacing: 6px;
}

.caption span.sd:hover {
    color: #aaa;
}

hr.sep {
    color: #fff;
    visibility: hidden;
    text-align: center;
    animation-name: grow;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes grow {
    from {
        visibility: visible;
        width: 0;
    }
    to {
        visibility: visible;
        width: 250px;
    }
}

h6 {
    color: #fff;
    padding: 0;
    margin: 0;
    font-size: 60px;
    font-weight: normal;
}

.floating-text {
    color: #000;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    text-align: center;
    transition: opacity 0.5s ease-in-out;
}

.floating-text-p {
    color: #000;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    text-align: left;
    transition: opacity 0.5s ease-in-out;
}

@keyframes floatUp {
    from { transform: translate(-50%, 100%); }
    to { transform: translate(-50%, 0); }
}

.float-up-animation {
    animation: floatUp 0.5s ease-in-out forwards;
    animation-fill-mode: backwards;
}

::-webkit-scrollbar {
    width: 10px;
    transition-duration: 240ms;
}

::-webkit-scrollbar-track {
    background: #fff; 
}

::-webkit-scrollbar-thumb {
    background: #999;
}

::-webkit-scrollbar-thumb:hover {
    background: #777;
}

::-webkit-scrollbar-thumb:active {
    background: #555;
}

.banner {
    background-image: linear-gradient(to right, #fc036b, #7f03fc);
}

.bannerContent {
    padding: 16px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.bannerText {
    flex-grow: 1;
    line-height: 1.4;
    font-family: 'Helvetica', sans-serif;
}

.bannerClose, .popupContainer button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 200%;
    transition-duration: 50ms;
}

.bannerText, .bannerClose > span {
    color: #fff;
}

.bannerClose:hover {
    color: #fff;
}