body,
html {
    height: 100%;
    margin: 0;
    font-size: 16px;
    font-family: "Lato", "sans-serif";
    font-weight: 400;
    line-height: 1.8em;
    color: #666;
}

.firstimg,
.secondimg,
.thirdimg,
.forthimg {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.7;
    /*
    fixed = parallax
    scroll = normal
  */
    background-attachment: fixed;
}

#firstwrap {
    height: calc(var(--vh, 1vh) *100);
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.firstimg_over {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    clip-path: circle(10% at 0 0);
}

.firstimg {
    background-image: url("../../assets/img/others/top_top.jpg");
    min-height: 100%;
}

.secondimg {
    background-image: url("../../assets/img/others/obakeicon.PNG");
    min-height: 600px;
}

@media (max-width: 768px) {
    .secondimg {
        min-height: 100%;
    }
}

.thirdimg {
    background-image: url("../../assets/img/others/top_bottom.jpg");
    min-height: 400px;
}

.forthimg {
    background-image: url("../../assets/img/others/shore.jpg");
    min-height: 100%;
}

.section {
    text-align: center;
    padding: 50px 80px;
}


/*.section-light {
  background-color: #f4f4f4;
  color: #666;
}*/

.section-dark {
    background-color: #282e34;
    color: #ddd;
}

.text {
    position: absolute;
    top: 50%;
    /*brings it down half way*/
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 60px;
    letter-spacing: 8px;
}

.text .border {
    background-color: #111;
    color: #fff;
    padding: 20px;
}


/*.text .border.trans {
  background-color: transparent;
}*/


/*will be in effect for anaything under 568px*/

@media (max-width: 568px) {
    .firstimg,
    .secondimg,
    .thirdimg,
    .forthimg {
        background-attachment: scroll;
    }
}


/*******/

@import url('https://fonts.googleapis.com/css?family=Baloo');
.animated-text {
    font: "Baloo";
}

.animated-text span.letter {
    display: inline-block;
}

.animated-text.wave span.letter {
    animation: 2.8s wave backwards ease-in-out infinite;
}

.animated-text.flip span.letter {
    animation: 1s flip forwards ease-in-out infinite;
}

.animated-text.pop span.letter {
    animation: 1s pop forwards ease-in-out infinite;
}

.animated-text.tilted span.letter {
    animation: 1s tilted forwards ease-in-out infinite;
}

@keyframes wave {
    0% {
        transform: translateY(0em);
    }
    50% {
        transform: translateY(-1rem);
    }
}

@keyframes flip {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

@keyframes pop {
    0% {
        transform: rotateZ(5deg) scale(0.75) translateY(0);
        opacity: 0.1;
    }
    50% {
        transform: rotateZ(-5deg) scale(1) translateY(-0.5em);
        opacity: 1;
    }
    100% {
        transform: rotateZ(5deg) scale(0.75) translateY(0);
        opacity: 0.1;
    }
}

@keyframes tilted {
    0% {
        transform: rotateZ(-15deg);
    }
    50% {
        transform: rotateZ(15deg);
    }
    100% {
        transform: rotateZ(-15deg);
    }
}

@keyframes shine {
    75% {
        color: inherit;
    }
    100% {
        color: #fff;
    }
}

@keyframes crazy {
    0% {
        transform: translateY(0) rotateX(90deg);
    }
    50% {
        transform: translateY(-1em) rotateX(0deg);
    }
    100% {
        transform: translateY(0) rotateX(-90deg);
    }
}

@keyframes newone {
    0% {
        font-size: 3rem;
    }
    50% {
        font-size: 3.5rem;
    }
    100% {
        font-size: 3rem;
    }
}