@import url('https://fonts.googleapis.com/css?family=Syne');


* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    vertical-align: baseline;
    font-size: 100%;
}

html {
    
    font-family: "Syne";
    font-weight: 100;
}

body {
    width: 100%;
    background: rgb(255, 255, 255);
}

.wrapper {
    width: 90%;
    margin: 0 auto;
}

.navBar::after {
    content: "";
    clear: both;
    display: table;
}

h1 {
    color: rgb(0, 119, 255);
    font-size: 62px;
        font-weight: 100;

}

.progressbar {
    position: fixed;
    top: 0;
    left: 2%;
    background: rgb(0, 119, 255);
    width: 2px;
    z-index: 1000;
}

.cursor-follow {
    position: absolute;
    background: url(../76.-Rice-Flower_1.jpg) no-repeat 50% 50%;
    background-size: cover;
    width: 50px;
    height: 50px;
	z-index: -1;
	border-radius: 200px;
 
}
p {
    color: rgb(0, 0, 0);
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: 800;
}

/* navbar */

nav {
    height: 70px;
    line-height: 70px;
}

nav a img {
    vertical-align: middle;
    width: 30px;
    height: 30px;
}

nav a:nth-child(2) {
    float: right;
}

/* header */

header {
    margin: 100px 0 200px 120px;
}

header p {
    width: 80%;
    margin-top: 40px;
}

/* .work */

.work {
    text-align: center;
    width: 100%;
}

.work img {
    margin: 2.5%;
    width: 35%;
    border-radius: 18px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.work img:hover {
    transform: scale(1.04);
}

/* header2 */

.header2 {
    margin: 130px 0 80px 40px;
}

/* .work2 */
.work2 {
    width: 100%;
    text-align: center;
}

.work2 img {
    margin: 1%;
    width: 94%;
    border-radius: 18px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.work2 img:hover {
    transform: scale(1.02);
}

/* footer */
footer p {
    text-align: center;
    color: rgb(37, 37, 37);
    margin: 60px auto;
}



.videofull {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.videofull video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.videofull .content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.fa-arrow-left {
    background: #fff;
    padding: 13px;
    margin: 30px;
    border-radius: 100%;
    font-size: 1.5rem;
    color: rgb(0, 119, 255);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
    animation: moveLeft 0.2s forwards;
  }


/* Responsiveness */

@media only screen and (max-width: 991px) {
    header {
          text-align: left;
          margin: 100px 0 100px 30px;
    }

    header h1 {
          font-size: 36px;
    }

    header p {
          font-size: 12px;
          width: 90%;
    }

    .work img {
          margin: 2%;
          width: 90%;
    }

    .header2 {
          margin: 130px 0 40px 12px;
    }

    .header2 h1 {
          font-size: 36px;
    }

    .header2 p {
          font-size: 12px;
          width: 90%;
    }

    .work2 img {
          margin: 2%;
    }
}
