body {
  margin: 0;
  height: 100%;
  width: 100%;
  overflow:hidden;
}

.top-section{
  height:100%;
  width: 100%;
}

.sky {
  width: 100%;
  height: 400px;
  background-color: #8bd6ed;
  background: -webkit-linear-gradient(#8bd6ed 0%, #a4e6f9 50%);
  background: -o-linear-gradient(#8bd6ed 0%, #a4e6f9 50%);
  background: linear-gradient(#8bd6ed 0%, #a4e6f9 50%);
  z-index: -1;
}   

.sun {
  position: absolute;
  background-color: #f3f2ac;
  height: 50px;
  width: 50px;
  top: 50px;
  left: 100px;
  border-radius: 50px;
  z-index: 99999;
  /* Sun animation */
  -webkit-animation: glowing 3200ms infinite;
  -moz-animation: glowing 3200ms infinite;
  -o-animation: glowing 3200ms infinite;
  animation: glowing 3200ms infinite;
}

/* Sun animation  keyframes */

@-webkit-keyframes glowing {
  0% {-webkit-box-shadow: 0 0 20px #f9f8d2; }
  50% {-webkit-box-shadow: 0 0 60px #f9f8d2; }
  100% {-webkit-box-shadow: 0 0 20px #f9f8d2; }
}

@-moz-keyframes glowing {
  0% {-moz-box-shadow: 0 0 20px #f9f8d2; }
  50% {-moz-box-shadow: 0 0 60px #f9f8d2; }
  100% {-moz-box-shadow: 0 0 20px #f9f8d2; }
}

@keyframes glowing {
  0% {box-shadow: 0 0 20px #f9f8d2; }
  50% {box-shadow: 0 0 60px #f9f8d2; }
  100% {box-shadow: 0 0 20px #f9f8d2; }
}

.sun-shadow {
  position: absolute;
  background-color: #efed8f;
  height: 50px;
  width: 25px;
  top: 50px;
  left: 125px;
  border-radius: 0 50px 50px 0;
  z-index: 999998;
}

.sea {
  width: 100%;
  height: 2000px;
  background-color: #65daeb;
  background: -webkit-linear-gradient(#65daeb 40%, #00a2b9 100%);
  background: -o-linear-gradient(#65daeb 40%, #00a2b9 100%);
  background: linear-gradient(#65daeb 40%, #00a2b9 100%);
  z-index: -1;
}

.island {
  position: absolute;
  width: 690px;
  left: 20%;
}

.sand-shadow {
  position: absolute;
  width: 590px;
  height: 30px;
  background-color: #d7b18c;
  border-radius: 50px 50px 0px 0px;
  top: -15px;
  left: 50px; 
}

.sand {
  position: absolute;
  width: 300px;
  height: 30px;
  background-color: #fce4c2;  
  border-radius: 50px 0px 0px 0px;
  top: -15px;
  left: 50px; 
}

.coast {
  position: absolute;
  margin-top: 4px;
  background-color: #91e5f0;
  height: 25px;
  width: 690px;
  border-radius: 40px 40px;
  /* Coast animation */
  -webkit-animation: waving 5200ms infinite ease-in-out alternate;
  -moz-animation: waving 5200ms infinite ease-in-out alternate;
  -o-animation: waving 5200ms infinite ease-in-out alternate;
  animation: waving 5200ms infinite ease-in-out alternate;
}

.coast2 {
  position: absolute;
  top: 5px;
  left: 40px;
  margin-top: 4px;
  background-color: #fff;
  height: 10px;
  width: 610px;
  border-radius: 40px 40px;
  /* Coast2 animation */
  -webkit-animation: waving 5200ms infinite ease-in-out alternate 1s;
  -moz-animation: waving 5200ms infinite ease-in-out alternate 1s;
  -o-animation: waving 5200ms infinite ease-in-out alternate 1s;
  animation: waving 5200ms infinite ease-in-out alternate 1s;
}

.dune1 {
  position: absolute;
  left: 532px;
  background-color: #fce4c2;
  height: 50px;
  width: 70px;
  top: -30px;
  border-radius: 50px 50px 0 0;
}

.dune1-shadow {
  position: absolute;
  left: 567px;
  background-color: #d7b18c;
  height: 50px;
  width: 35px;
  top: -30px;
  border-radius: 0 50px 0 0;
}

.dune2 {
  position: absolute;
  left: 504px;
  background-color: #fce4c2;
  height: 60px;
  width: 70px;
  top: -45px;
  border-radius: 50px 50px 0 0;
}

.dune2-shadow {
  position: absolute;
  left: 539px;
  background-color: #d7b18c;
  height: 60px;
  width: 35px;
  top: -45px;
  border-radius: 0 50px 0 0;
}

.dune3 {
  position: absolute;
  left: 462px;
  background-color: #fce4c2;
  height: 45px;
  width: 80px;
  top: -40px;
  border-radius: 40px 40px 0 0;
}

.dune3-shadow {
  position: absolute;
  left: 502px;
  background-color: #d7b18c;
  height: 45px;
  width: 40px;
  top: -40px;
  border-radius: 0 40px 0 0;
}

.hill1 {
  position: absolute;
  left: 100px;
  background-color: #8ea33c;
  height: 90px;
  width: 180px;
  top: -80px;
  border-radius: 150px 150px 0 0;
}

.hill1-shadow {
  position: absolute;
  left: 190px;
  background-color: #708935;
  height: 90px;
  width: 90px;
  top: -80px;
  border-radius: 0px 150px 0 0;
}

.hill2 {
  position: absolute;
  left: 180px;
  background-color: #8ea33c;
  height: 120px;
  width: 200px;
  top: -100px;
  border-radius: 150px 150px 0 0;
}

.hill2-shadow {
  position: absolute;
  left: 280px;
  background-color: #708935;
  height: 120px;
  width: 100px;
  top: -100px;
  border-radius: 0px 150px 0 0;
}

.hill3 {
  position: absolute;
  left: 290px;
  background-color: #8ea33c;
  height: 60px;
  width: 120px;
  top: -70px;
  border-radius: 150px 150px 0 0;
}

.hill3-shadow {
  position: absolute;
  left: 350px;
  background-color: #708935;
  height: 60px;
  width: 60px;
  top: -70px;
  border-radius: 0px 150px 0 0;
}

.mountain {
  position: absolute;
  left: 150px;
  top: -360px;
  border-right: 200px solid transparent;
  border-top: 200px solid transparent;
  border-left: 200px solid transparent;
  border-bottom: 170px solid #a48159;
}

.mountain-shadow {
  position: absolute;
  left: 350px;
  top: -360px;
  border-right: 200px solid transparent;
  border-top: 200px solid transparent;
  border-left: 0px solid transparent;
  border-bottom: 170px solid #845646;
}

.reef1 {
  position: absolute;
  left: 120px;
  top: 29px;
  background-color: #91e5f0;
  height: 25px;
  width: 200px;
  border-radius: 40px 40px;
  /* Reef1 animation */
  -webkit-animation: waving 4800ms infinite ease-in-out alternate 1s;
  -moz-animation: waving 4800ms infinite ease-in-out alternate 1s;
  -o-animation: waving 4800ms infinite ease-in-out alternate 1s;
  animation: waving 4800ms infinite ease-in-out alternate 1s;
}

.reef1-l {
  position: absolute;
  left: 120px;
  top: 29px;
  background-color: #65daeb;
  height: 25px;
  width: 25px;
  border-radius: 40px 40px;
  /* Reef1 animation */
  -webkit-animation: waving 4800ms infinite ease-in-out alternate 1s;
  -moz-animation: waving 4800ms infinite ease-in-out alternate 1s;
  -o-animation: waving 4800ms infinite ease-in-out alternate 1s;
  animation: waving 4800ms infinite ease-in-out alternate 1s;
}

.reef1-r {
  position: absolute;
  left: 300px;
  top: 29px;
  background-color: #65daeb;
  height: 25px;
  width: 25px;
  border-radius: 40px 40px;
  /* Reef1 animation */
  -webkit-animation: waving 4800ms infinite ease-in-out alternate 1s;
  -moz-animation: waving 4800ms infinite ease-in-out alternate 1s;
  -o-animation: waving 4800ms infinite ease-in-out alternate 1s;
  animation: waving 4800ms infinite ease-in-out alternate 1s;
}

.reef2 {
  position: absolute;
  left: 60px;
  top: 54px;
  background-color: #91e5f0;
  height: 25px;
  width: 400px;
  border-radius: 40px 40px;
  /* Reef2 animation */
  -webkit-animation: waving 5000ms infinite ease-in-out alternate 2s;
  -moz-animation: waving 5000ms infinite ease-in-out alternate 2s;
  -o-animation: waving 5000ms infinite ease-in-out alternate 2s;
  animation: waving 5000ms infinite ease-in-out alternate 2s;
}

.reef3 {
  position: absolute;
  left: 250px;
  top: 79px;
  background-color: #91e5f0;
  height: 25px;
  width: 140px;
  border-radius: 40px 40px;
  /* Reef3 animation */
  -webkit-animation: waving 4500ms infinite ease-in-out alternate 3s;
  -moz-animation: waving 4500ms infinite ease-in-out alternate 3s;
  -o-animation: waving 4500ms infinite ease-in-out alternate 3s;
  animation: waving 4500ms infinite ease-in-out alternate 3s;
}

.reef3-l {
  position: absolute;
  left: 250px;
  top: 79px;
  background-color: #65daeb;
  height: 25px;
  width: 25px;
  border-radius: 40px 40px;
  /* Reef3 animation */
  -webkit-animation: waving 4500ms infinite ease-in-out alternate 3s;
  -moz-animation: waving 4500ms infinite ease-in-out alternate 3s;
  -o-animation: waving 4500ms infinite ease-in-out alternate 3s;
  animation: waving 4500ms infinite ease-in-out alternate 3s;
}

.reef3-r {
  position: absolute;
  left: 370px;
  top: 79px;
  background-color: #65daeb;
  height: 25px;
  width: 25px;
  border-radius: 40px 40px;
  /* Reef3 animation */
  -webkit-animation: waving 4500ms infinite ease-in-out alternate 3s;
  -moz-animation: waving 4500ms infinite ease-in-out alternate 3s;
  -o-animation: waving 4500ms infinite ease-in-out alternate 3s;
  animation: waving 4500ms infinite ease-in-out alternate 3s;
}

.reef4 {
  position: absolute;
  left: 150px;
  top: 104px;
  background-color: #91e5f0;
  height: 25px;
  width: 280px;
  border-radius: 40px 40px;
  /* Reef4 animation */
  -webkit-animation: waving 6500ms infinite ease-in-out alternate 2s;
  -moz-animation: waving 6500ms infinite ease-in-out alternate 2s;
  -o-animation: waving 6500ms infinite ease-in-out alternate 2s;
  animation: waving 6500ms infinite ease-in-out alternate 2s;
}

.reef5 {
  position: absolute;
  left: 260px;
  top: 154px;
  background-color: #91e5f0;
  height: 25px;
  width: 140px;
  border-radius: 40px 40px;
  /* Reef5 animation */
  -webkit-animation: waving 6500ms infinite ease-in-out alternate;
  -moz-animation: waving 6500ms infinite ease-in-out alternate;
  -o-animation: waving 6500ms infinite ease-in-out alternate;
  animation: waving 6500ms infinite ease-in-out alternate;
}

.reef6 {
  position: absolute;
  left: 510px;
  top: 29px;
  background-color: #91e5f0;
  height: 25px;
  width: 100px;
  border-radius: 40px 40px;
  /* Reef6 animation */
  -webkit-animation: waving 5000ms infinite ease-in-out alternate 1s;
  -moz-animation: waving 5000ms infinite ease-in-out alternate 1s;
  -o-animation: waving 5000ms infinite ease-in-out alternate 1s;
  animation: waving 5000ms infinite ease-in-out alternate 1s;
}

.reef6-l {
  position: absolute;
  left: 510px;
  top: 29px;
  background-color: #65daeb;
  height: 25px;
  width: 25px;
  border-radius: 40px 40px;
  /* Reef6 animation */
  -webkit-animation: waving 5000ms infinite ease-in-out alternate 1s;
  -moz-animation: waving 5000ms infinite ease-in-out alternate 1s;
  -o-animation: waving 5000ms infinite ease-in-out alternate 1s;
  animation: waving 5000ms infinite ease-in-out alternate 1s;  
}

.reef6-r {
  position: absolute;
  left: 590px;
  top: 29px;
  background-color: #65daeb;
  height: 25px;
  width: 25px;
  border-radius: 40px 40px;
  /* Reef6 animation */
  -webkit-animation: waving 5000ms infinite ease-in-out alternate 1s;
  -moz-animation: waving 5000ms infinite ease-in-out alternate 1s;
  -o-animation: waving 5000ms infinite ease-in-out alternate 1s;
  animation: waving 5000ms infinite ease-in-out alternate 1s;  
}

.reef7 {
  position: absolute;
  left: 480px;
  top: 54px;
  background-color: #91e5f0;
  height: 25px;
  width: 140px;
  border-radius: 40px 40px;
  /* Reef6 animation */
  -webkit-animation: waving 5000ms infinite ease-in-out alternate;
  -moz-animation: waving 5000ms infinite ease-in-out alternate;
  -o-animation: waving 5000ms infinite ease-in-out alternate;
  animation: waving 5000ms infinite ease-in-out alternate; 
}

.reef8 {
  position: absolute;
  left: 450px;
  top: 104px;
  background-color: #91e5f0;
  height: 25px;
  width: 100px;
  border-radius: 40px 40px;
  /* Reef6 animation */
  -webkit-animation: waving 7000ms infinite ease-in-out alternate 1s;
  -moz-animation: waving 7000ms infinite ease-in-out alternate 1s;
  -o-animation: waving 7000ms infinite ease-in-out alternate 1s;
  animation: waving 7000ms infinite ease-in-out alternate 1s; 
}

/* Reef animations  keyframes */

@-webkit-keyframes waving {
    from {transform: translateX(0px);}
    to {transform: translateX(10px);}
}

@-moz-keyframes waving {
    from {transform: translateX(0px);}
    to {transform: translateX(10px);}
}

@keyframes waving {
    from {transform: translateX(0px);}
    to {transform: translateX(10px);}
}

.foam1 {
  position: absolute;
  top: 120px;
  left: 270px;
}

.foam1-l {
  position: absolute;
  left: 85px;
  width: 50px;
  height: 5px;
  border-radius: 10px;
  background-color: #fff8fc;
}

.foam1-r {
  position: relative;
  left: 140px;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #fff8fc;
}

.foam2 {
  position: absolute;
  top: 70px;
  left: 460px;
}

.foam2-l {
  position: absolute;
  left: 105px;
  width: 30px;
  height: 5px;
  border-radius: 10px;
  background-color: #fff8fc;
}

.foam2-r {
  position: relative;
  left: 140px;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #fff8fc;
}

.foam3 {
  position: absolute;
  top: 59px;
  left: -30px;
}

.foam3-l {
  position: absolute;
  left: 105px;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #fff8fc;
}

.foam3-r {
  position: relative;
  left: 115px;
  width: 40px;
  height: 5px;
  border-radius: 10px;
  background-color: #fff8fc;
}

.foam4 {
  position: absolute;
  top: 109px;
  left: 60px;
}

.foam4-l {
  position: absolute;
  left: 105px;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #fff8fc;
}

.foam4-r {
  position: relative;
  left: 115px;
  width: 60px;
  height: 5px;
  border-radius: 10px;
  background-color: #fff8fc;
}

.foam5 {
  position: absolute;
  top: 170px;
  left: 290px;
  width: 50px;
  height: 5px;
  border-radius: 10px;
  background-color: #fff8fc;
}

.foam6 {
  position: absolute;
  top: 120px;
  left: 485px;
  width: 40px;
  height: 5px;
  border-radius: 10px;
  background-color: #fff8fc;
}

.fade-cloud3 {
  /* cloud3 animation */
  animation: waving2 8000ms infinite ease-in-out alternate 3s;
  -moz-animation: waving2 8000ms infinite ease-in-out alternate 3s;
  -o-animation: waving2 8000ms infinite ease-in-out alternate 3s;
  animation: waving2 8000ms infinite ease-in-out alternate 3s;
}

.cloud3 {
  position: absolute;
  top: -115px;
  left: 215px;
  width: 60px; 
  height: 22px;
  background: #d6f2f5;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  /* cloud3 animation */  
  animation: fading 8000ms infinite ease-in-out alternate;
  -moz-animation: fading 8000ms infinite ease-in-out alternate;
  -o-animation: fading 8000ms infinite ease-in-out alternate;
  animation: fading 8000ms infinite ease-in-out alternate;
}

.fade-cloud1 {
  /* cloud1 animation*/
  animation: waving2 6000ms infinite ease-in-out alternate 2s;
  -moz-animation: waving2 6000ms infinite ease-in-out alternate 2s;
  -o-animation: waving2 6000ms infinite ease-in-out alternate 2s;
  animation: waving2 6000ms infinite ease-in-out alternate 2s;
}

.cloud1 {
  position: absolute;
  top: -140px;
  left: 230px;
  width: 90px; 
  height: 20px;
  background: #eaf8fa;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  /* cloud1 animation */  
  animation: fading 6000ms infinite ease-in-out alternate;
  -moz-animation: fading 6000ms infinite ease-in-out alternate;
  -o-animation: fading 6000ms infinite ease-in-out alternate;
  animation: fading 6000ms infinite ease-in-out alternate;  
}

.fade-cloud2 {
  /* cloud2 animation */
  animation: waving2 7000ms infinite ease-in-out alternate;
  -moz-animation: waving2 7000ms infinite ease-in-out alternate;
  -o-animation: waving2 7000ms infinite ease-in-out alternate;
  animation: waving2 7000ms infinite ease-in-out alternate;
}

.cloud2 {
  position: absolute;
  top: -135px;
  left: 180px;
  width: 40px; 
  height: 18px;
  background: #eaf8fa;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  /* cloud2 animation */  
  animation: fading 7000ms infinite ease-in-out alternate;
  -moz-animation: fading 7000ms infinite ease-in-out alternate;
  -o-animation: fading 7000ms infinite ease-in-out alternate;
  animation: fading 7000ms infinite ease-in-out alternate;
}

/* clouds animation  keyframes */

@-webkit-keyframes waving2 {
    from {transform: translateX(0px);}
    to {transform: translateX(30px);}
}

@-moz-keyframes waving2 {
    from {transform: translateX(0px);}
    to {transform: translateX(30px);}
}

@keyframes waving2 {
    from {transform: translateX(0px);}
    to {transform: translateX(30px);}
}

/* fade animation */

@-webkit-keyframes fading {
  0% {-webkit-opacity: 0; }
  50% {-webkit-opacity: 1; }
  100% {-webkit-opacity: 0; }
}

@-moz-keyframes fading {
  0% {-moz-opacity: 0; }
  50% {-moz-opacity: 1; }
  100% {-moz-opacity: 0; }
}

@keyframes fading {
  0% {opacity: 0; }
  50% {opacity: 1; }
  100% {opacity: 0; }
}

.lighthouse {
  position: relative;
  top: -105px;
  left: 450px;
}

.tower {
  position: absolute;
  width: 10px;
  top: 40px;
  border-right: 2.5px solid transparent;
  border-top: 0px solid transparent;
  border-left: 2.5px solid transparent;
  border-bottom: 45px solid #ba9475;
}

.light {
  position: absolute;
  background-color: #f3f2ac;
  height: 10px;
  width: 10px;
  top: 30px;
  left: 2px;
}

.top {
  position: absolute;
  background-color: #a37e60;
  height: 5px;
  width: 10px;
  left: 2.25px;
  top: 25px;
  border-radius: 20px 20px 0 0;
}

.bottom {
  position: absolute;
  background-color: #a37e60;
  height: 15px;
  width: 15px;
  top: 75px;
}

.lh-house {
  position: relative;
  top: -38px;
  left: 410px;
}

.lh-roof {
  position: absolute;
  height: 2px;
  width: 40px;
  background-color: #ba9475;

}

.lh-wall{
  position: absolute;
  top: 2px;
  left: 1px;
  height: 20px;
  width: 38px;
  background-color: #f9f2ec;

}

.lh-window1 {
  position: absolute;
  top: 6px;
  left: 6px;
  height: 5px;
  width: 6px;
  background-color: #927054;
}

.lh-window2 {
  position: absolute;
  top: 6px;
  left: 28px;
  height: 5px;
  width: 6px;
  background-color: #927054;
}

.lh-door {
  position: absolute;
  top: 11px;
  left: 16px;
  height: 12px;
  width: 8px;
  background-color: #927054;
}

.lh-bottom {
  position: absolute;
  top: 15px;
  height: 8px;
  width: 40px;
  background-color: #ba9475;
}

.bhouse {
  position: relative;
  top: -38px;
  left: 260px;
}

.bwall{
  position: absolute;
  top: -19px;
  height: 40px;
  width: 20px;
  background-color: #fff;
  border-left: 2px solid #4280f4;
  border-top: 2px solid #4280f4;
}

.bwindow1 {
  position: absolute;
  top: 8px;
  left: 7px;
  height: 8px;
  width: 6px;
  background-color: #4280f4;
}

.bwindow2 {
  position: absolute;
  top: 8px;
  left: 31px;
  height: 8px;
  width: 6px;
  background-color: #4280f4;
}

.bline1 {
  position: absolute;
  left: 0px;
  top: 2px;
  width: 42px;
  border-top: 2px solid #4280f4;
}

.bdoor {
  position: absolute;
  top: 11px;
  left: 18px;
  height: 12px;
  width: 8px;
  background-color: #4280f4;
}

.bwall-top{
  position: absolute;
  top: -19px;
  height: 40px;
  width: 20px;
  left: 20px;
  background-color: #f9f2ec;
  border-right: 2px solid #4280f4;
  border-left: 2px solid #4280f4;
  border-top: 2px solid #4280f4;
}

.bwindow1-top {
  position: absolute;
  top: -12px;
  left: 7px;
  height: 8px;
  width: 6px;
  background-color: #4280f4;
}

.bwindow2-top {
  position: absolute;
  top: -12px;
  left: 31px;
  height: 8px;
  width: 6px;
  background-color: #4280f4;
}

.chimney {
  position: absolute;
  top: -25px;
  left: 5px;
  height: 6px;
  width: 4px;
  background-color: #fff;
}

.bhouse2 {
  position: relative;
  top: -38px;
  left: 160px;
}

.bwall2{
  position: absolute;
  top: -19px;
  height: 40px;
  width: 20px;
  background-color: #fff;
  border-left: 2px solid #ff7070;
  border-top: 2px solid #ff7070;
}

.bwindow12 {
  position: absolute;
  top: 8px;
  left: 7px;
  height: 8px;
  width: 6px;
  background-color: #ff7070;
}

.bwindow22 {
  position: absolute;
  top: 8px;
  left: 31px;
  height: 8px;
  width: 6px;
  background-color: #ff7070;
}

.bline2 {
  position: absolute;
  top: 2px;
  width: 42px;
  border-top: 2px solid #ff7070;
}

.bdoor2 {
  position: absolute;
  top: 11px;
  left: 18px;
  height: 12px;
  width: 8px;
  background-color: #ff7070;
}

.bwall-top2{
  position: absolute;
  top: -19px;
  left:  20px;
  height: 40px;
  width: 20px;
  background-color: #f9f2ec;
  border-right: 2px solid #ff7070;
  border-left: 2px solid #ff7070;
  border-top: 2px solid #ff7070;
}

.bwindow1-top2 {
  position: absolute;
  top: -12px;
  left: 7px;
  height: 8px;
  width: 6px;
  background-color: #ff7070;
}

.bwindow2-top2 {
  position: absolute;
  top: -12px;
  left: 31px;
  height: 8px;
  width: 6px;
  background-color: #ff7070;
}

.chimney2 {
  position: absolute;
  top: -25px;
  left: 35px;
  height: 6px;
  width: 4px;
  background-color: #fff;
}

.bhouse3 {
  position: relative;
  top: -38px;
  left: 210px;
}

.bwall3{
  position: absolute;
  top: -19px;
  height: 40px;
  width: 20px;
  background-color: #fff;
  border-left: 2px solid #e0d773;
  border-top: 2px solid #e0d773;
}

.bwindow13 {
  position: absolute;
  top: 8px;
  left: 7px;
  height: 8px;
  width: 6px;
  background-color: #e0d773;
}

.bwindow23 {
  position: absolute;
  top: 8px;
  left: 31px;
  height: 8px;
  width: 6px;
  background-color: #e0d773;
}

.bline3 {
  position: absolute;
  top: 2px;
  width: 42px;
  border-top: 2px solid #e0d773;
}

.bdoor3 {
  position: absolute;
  top: 11px;
  left: 18px;
  height: 12px;
  width: 8px;
  background-color: #e0d773;
}

.bwall-top3{
  position: absolute;
  top: -19px;
  left:  20px;
  height: 40px;
  width: 20px;
  background-color: #f9f2ec;
  border-right: 2px solid #e0d773;
  border-left: 2px solid #e0d773;
  border-top: 2px solid #e0d773;
}

.bwindow1-top3 {
  position: absolute;
  top: -12px;
  left: 7px;
  height: 8px;
  width: 6px;
  background-color: #e0d773;
}

.bwindow2-top3 {
  position: absolute;
  top: -12px;
  left: 31px;
  height: 8px;
  width: 6px;
  background-color: #e0d773;
}

.chimney3 {
  position: absolute;
  top: -25px;
  left: 5px;
  height: 6px;
  width: 4px;
  background-color: #fff;
}

.tree {
  position: relative;
  top: -335px;
  left: 358px;
}

.trunk {
  position: absolute;
  top: 228px;
  left: 5px;
  height: 10px;
  width: 3px;
  background-color: #60392e;
}

.leaves {
  position: absolute;
  top: 200px;
  border-right: 6px solid transparent;
  border-top: 10px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 20px solid #529e54;
}

.leaves-shadow {
  position: absolute;
  top: 200px;
  left: 6px;
  border-right: 6px solid transparent;
  border-top: 10px solid transparent;
  border-left: 0px solid transparent;
  border-bottom: 20px solid #459148;
}

.tree2 {
  position: relative;
  top: -325px;
  left: 373px;
}

.trunk2 {
  position: absolute;
  top: 228px;
  left: 5px;
  height: 10px;
  width: 3px;
  background-color: #60392e;
}

.leaves2 {
  position: absolute;
  top: 200px;
  border-right: 6px solid transparent;
  border-top: 10px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 20px solid #529e54;
}

.leaves-shadow2 {
  position: absolute;
  top: 200px;
  left: 6px;
  border-right: 6px solid transparent;
  border-top: 10px solid transparent;
  border-left: 0px solid transparent;
  border-bottom: 20px solid #459148;
}

.tree3 {
  position: relative;
  top: -340px;
  left: 385px;
}

.trunk3 {
  position: absolute;
  top: 228px;
  left: 5px;
  height: 10px;
  width: 3px;
  background-color: #60392e;
}

.leaves3 {
  position: absolute;
  top: 200px;
  border-right: 6px solid transparent;
  border-top: 10px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 20px solid #529e54;
}

.leaves-shadow3 {
  position: absolute;
  top: 200px;
  left: 6px;
  border-right: 6px solid transparent;
  border-top: 10px solid transparent;
  border-left: 0px solid transparent;
  border-bottom: 20px solid #459148;
}

.palm {
  position: relative;
  top: -80px;
  left: 100px;
}

.ptrunk {
  position: absolute;
  top: 25px;
  left: 1px;
  width: 2px;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 45px solid #cc9900;
}

.pleaf1 {
  position: absolute;
  top: 20px;
  left: -2px;
  height: 10px;
  width: 10px;
  background-color: #86b300;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pleaf2 {
  position: absolute;
  top: 22px;
  left: -7px;
  height: 10px;
  width: 10px;
  background-color: #99cc00;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.pleaf3 {
  position: absolute;
  top: 22px;
  left: 3px;
  height: 10px;
  width: 10px;
  background-color: #99cc00;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.pleaf4 {
  position: absolute;
  top: 28px;
  left: 4px;
  height: 10px;
  width: 10px;
  background-color: #86b300;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-300deg);
  -webkit-transform: rotate(-300deg);
  -o-transform: rotate(-300deg);
  -ms-transform: rotate(-300deg);
  transform: rotate(-300deg);
}

.pleaf5 {
  position: absolute;  
  background-color: #86b300;
  position: absolute;
  top: 28px;
  left: -8px;
  height: 10px;
  width: 10px;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-335deg);
  -webkit-transform: rotate(-335deg);
  -o-transform: rotate(-335deg);
  -ms-transform: rotate(-335deg);
  transform: rotate(-335deg);
}

.palm2 {
  position: relative;
  top: -65px;
  left: 80px;
}

.ptrunk2 {
  position: absolute;
  top: 25px;
  left: 1px;
  width: 2px;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 38px solid #cc9900;
}

.pleaf12 {
  position: absolute;
  top: 20px;
  left: -2px;
  height: 10px;
  width: 10px;
  background-color: #86b300;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pleaf22 {
  position: absolute;
  top: 22px;
  left: -7px;
  height: 10px;
  width: 10px;
  background-color: #99cc00;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.pleaf32 {
  position: absolute;
  top: 22px;
  left: 3px;
  height: 10px;
  width: 10px;
  background-color: #99cc00;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.pleaf42 {
  position: absolute;
  top: 28px;
  left: 4px;
  height: 10px;
  width: 10px;
  background-color: #86b300;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-300deg);
  -webkit-transform: rotate(-300deg);
  -o-transform: rotate(-300deg);
  -ms-transform: rotate(-300deg);
  transform: rotate(-300deg);
}

.pleaf52 {
  position: absolute;  
  background-color: #86b300;
  position: absolute;
  top: 28px;
  left: -8px;
  height: 10px;
  width: 10px;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-335deg);
  -webkit-transform: rotate(-335deg);
  -o-transform: rotate(-335deg);
  -ms-transform: rotate(-335deg);
  transform: rotate(-335deg);
}

.palm3 {
  position: relative;
  top: -75px;
  left: 125px;
}

.ptrunk3 {
  position: absolute;
  top: 25px;
  left: 1px;
  width: 2px;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 45px solid #cc9900;
}

.pleaf13 {
  position: absolute;
  top: 20px;
  left: -2px;
  height: 10px;
  width: 10px;
  background-color: #86b300;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pleaf23 {
  position: absolute;
  top: 22px;
  left: -7px;
  height: 10px;
  width: 10px;
  background-color: #99cc00;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.pleaf33 {
  position: absolute;
  top: 22px;
  left: 3px;
  height: 10px;
  width: 10px;
  background-color: #99cc00;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.pleaf43 {
  position: absolute;
  top: 28px;
  left: 4px;
  height: 10px;
  width: 10px;
  background-color: #86b300;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-300deg);
  -webkit-transform: rotate(-300deg);
  -o-transform: rotate(-300deg);
  -ms-transform: rotate(-300deg);
  transform: rotate(-300deg);
}

.pleaf53 {
  position: absolute;  
  background-color: #86b300;
  position: absolute;
  top: 28px;
  left: -8px;
  height: 10px;
  width: 10px;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-335deg);
  -webkit-transform: rotate(-335deg);
  -o-transform: rotate(-335deg);
  -ms-transform: rotate(-335deg);
  transform: rotate(-335deg);
}

.palm4 {
  position: relative;
  top: -80px;
  left: 390px;
}

.ptrunk4 {
  position: absolute;
  top: 25px;
  left: 1px;
  width: 2px;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 45px solid #cc9900;
}

.pleaf14 {
  position: absolute;
  top: 20px;
  left: -2px;
  height: 10px;
  width: 10px;
  background-color: #86b300;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pleaf24 {
  position: absolute;
  top: 22px;
  left: -7px;
  height: 10px;
  width: 10px;
  background-color: #99cc00;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.pleaf34 {
  position: absolute;
  top: 22px;
  left: 3px;
  height: 10px;
  width: 10px;
  background-color: #99cc00;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.pleaf44 {
  position: absolute;
  top: 28px;
  left: 4px;
  height: 10px;
  width: 10px;
  background-color: #86b300;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-300deg);
  -webkit-transform: rotate(-300deg);
  -o-transform: rotate(-300deg);
  -ms-transform: rotate(-300deg);
  transform: rotate(-300deg);
}

.pleaf54 {
  position: absolute;  
  background-color: #86b300;
  position: absolute;
  top: 28px;
  left: -8px;
  height: 10px;
  width: 10px;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-335deg);
  -webkit-transform: rotate(-335deg);
  -o-transform: rotate(-335deg);
  -ms-transform: rotate(-335deg);
  transform: rotate(-335deg);
}

.palm5 {
  position: relative;
  top: -80px;
  left: 425px;
}

.ptrunk5 {
  position: absolute;
  top: 25px;
  left: 1px;
  width: 2px;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 45px solid #cc9900;
}

.pleaf15 {
  position: absolute;
  top: 20px;
  left: -2px;
  height: 10px;
  width: 10px;
  background-color: #86b300;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pleaf25 {
  position: absolute;
  top: 22px;
  left: -7px;
  height: 10px;
  width: 10px;
  background-color: #99cc00;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.pleaf35 {
  position: absolute;
  top: 22px;
  left: 3px;
  height: 10px;
  width: 10px;
  background-color: #99cc00;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.pleaf45 {
  position: absolute;
  top: 28px;
  left: 4px;
  height: 10px;
  width: 10px;
  background-color: #86b300;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-300deg);
  -webkit-transform: rotate(-300deg);
  -o-transform: rotate(-300deg);
  -ms-transform: rotate(-300deg);
  transform: rotate(-300deg);
}

.pleaf55 {
  position: absolute;  
  background-color: #86b300;
  position: absolute;
  top: 28px;
  left: -8px;
  height: 10px;
  width: 10px;
  border-radius: 100% 0 100% 0;
  -moz-transform: rotate(-335deg);
  -webkit-transform: rotate(-335deg);
  -o-transform: rotate(-335deg);
  -ms-transform: rotate(-335deg);
  transform: rotate(-335deg);
}

.dock {
  position: relative;
  top: -11px;
  left: 153px;
}

.davenue {
  position: absolute;
  width: 150px;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 26px solid #bfbfbf;
}

.davenue-shadow {
  position: absolute;
  left: 78px;
  width: 75px;
  border-right: 4px solid transparent;
  border-left: 0px solid transparent;
  border-bottom: 26px solid #a6a6a6;
}

.dbrick4 {
  position: absolute;
  top: 7px;
  left: 135px;
  background-color: #bfbfbf;
  height: 4px;
  width: 8px;
  border-radius: 1px 1px;
}

.dbrick5 {
  position: absolute;
  top: 2px;
  left: 140px;
  background-color: #bfbfbf;
  height: 4px;
  width: 8px;
  border-radius: 1px 1px;
}

.dbridge1 {
  position: absolute;
  top: 13px;
  left: 15px;
  height: 25px;
  width: 30px;
  border-radius: 100%;
  background-color: #91e5f0;
  background: -webkit-linear-gradient(#59A5A5 0%, #91e5f0 60%);
  background: -o-linear-gradient(#59A5A5 0%, #91e5f0 60%);
  background: linear-gradient(#59A5A5 0%, #91e5f0 60%);
}

.dbridge2 {
  position: absolute;
  top: 13px;
  left: 63px;
  height: 25px;
  width: 30px;
  border-radius: 100%;
  background-color: #91e5f0;
  background: -webkit-linear-gradient(#59A5A5 0%, #91e5f0 60%);
  background: -o-linear-gradient(#59A5A5 0%, #91e5f0 60%);
  background: linear-gradient(#59A5A5 0%, #91e5f0 60%);
}

.dbridge3 {
  position: absolute;
  top: 13px;
  left: 111px;
  height: 25px;
  width: 30px;
  border-radius: 100%;
  background-color: #91e5f0;
  background: -webkit-linear-gradient(#59A5A5 0%, #91e5f0 60%);
  background: -o-linear-gradient(#59A5A5 0%, #91e5f0 60%);
  background: linear-gradient(#59A5A5 0%, #91e5f0 60%);
}

.dbrick1 {
  position: absolute;
  top: 2px;
  left: 8px;
  background-color: #a6a6a6;
  height: 4px;
  width: 8px;
  border-radius: 1px 1px;
}

.dbrick2 {
  position: absolute;
  top: 7px;
  left: 14px;
  background-color: #a6a6a6;
  height: 4px;
  width: 8px;
  border-radius: 1px 1px;
}

.dbrick3 {
  position: absolute;
  top: 4px;
  left: 60px;
  background-color: #a6a6a6;
  height: 4px;
  width: 8px;
  border-radius: 1px 1px;
}

.sand-details {
  position: relative;
  left: 60px;
}

.dot1 {
  position: absolute;
  height: 3px;
  width: 3px;
  border-radius: 100%;
  background-color: #d7b18c; 
}

.dot2 {
  position: absolute;
  top: 4px;
  left: 8px;
  height: 4px;
  width: 4px;
  border-radius: 100%;
  background-color: #d7b18c;
}

.dot3 {
  position: absolute;
  top: -4px;
  left: 10px;
  height: 5px;
  width: 5px;
  border-radius: 100%;
  background-color: #d7b18c;
}

.sand-details-shadow {
  position: relative;
  left: 610px;
}

.dot1-shadow {
  position: absolute;
  height: 3px;
  width: 3px;
  border-radius: 100%;
  background-color: #fce4c2; 
}

.dot2-shadow {
  position: absolute;
  top: 4px;
  left: 8px;
  height: 4px;
  width: 4px;
  border-radius: 100%;
  background-color: #fce4c2;
}

.dot3-shadow {
  position: absolute;
  top: -4px;
  left: 10px;
  height: 5px;
  width: 5px;
  border-radius: 100%;
  background-color: #fce4c2;
}

.wave {
  position: relative;
  left: 410px;
}

.wave2 {
  position: relative;
  left: 530px;
}

.drop1 {
  position: absolute;
  top: 13px;
  height: 4px;
  width: 4px;
  border-radius: 100%;
  background-color: #fff; 
}

.drop2 {
  position: absolute;
  top: 12px;
  left: 4px;
  height: 5px;
  width: 5px;
  border-radius: 100%;
  background-color: #fff;
}

.drop3 {
  position: absolute;
  top: 11px;
  left: 8px;
  height: 7px;
  width: 7px;
  border-radius: 100%;
  background-color: #fff;
}

.drop4 {
  position: absolute;
  top: 11px;
  left: 14px;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: #fff;
}

.drop5 {
  position: absolute;
  top: 13px;
  left: 20px;
  height: 5px;
  width: 5px;
  border-radius: 100%;
  background-color: #fff;
}

.plane {
  position: relative !important;
  top: -250px !important;
  left: -350px !important;
  /* plane animation */
  animation: slide1 35000ms infinite linear 2s !important;
  -moz-animation: slide1 35000ms infinite linear 2s !important;
  -o-animation: slide1 35000ms infinite linear 2s !important;
  animation: slide1 35000ms infinite linear  2s !important;
}

/* Plane animation keyframes */

@keyframes slide1 {
    from {transform: translateX(-350px);}
    to {transform: translateX(1500px);}
}

.plane-body {
  position: absolute !important;
  width: 8px !important;
  border-right: 3px solid transparent !important;
  border-left: 4px solid transparent !important;
  border-bottom: 65px solid #fff !important;
  -moz-transform: rotate(-90deg) !important;
  -webkit-transform: rotate(-90deg) !important;
  -o-transform: rotate(-90deg) !important;
  -ms-transform: rotate(-90deg) !important;
  transform: rotate(-90deg) !important;
}

.plane-front {
  position: absolute !important;
  top: 25px !important;
  left: 30px !important;
  height: 15px !important;
  width: 25px !important;
  border-radius: 100% !important;
  background-color: #fff !important;
}

.wing {
  position: absolute !important;
  top: -6px !important;
  left: 6px !important;
  width: 5px !important;
  border-right: 8px solid transparent !important;
  border-left: 2px solid transparent !important;
  border-bottom: 40px solid #fff !important;
  -moz-transform: rotate(-25deg) !important;
  -webkit-transform: rotate(-25deg) !important;
  -o-transform: rotate(-25deg) !important;
  -ms-transform: rotate(-25deg) !important;
  transform: rotate(-25deg) !important;
}

.back-wing {
  position: absolute !important;
  top: 14px !important;
  left: -28px !important;
  width: 5px !important;
  border-right: 6px solid transparent !important;
  border-left: 1px solid transparent !important;
  border-bottom: 16px solid #fff !important;
  -moz-transform: rotate(-20deg) !important;
  -webkit-transform: rotate(-20deg) !important;
  -o-transform: rotate(-20deg) !important;
  -ms-transform: rotate(-20deg) !important;
  transform: rotate(-20deg) !important;
}

.decoration {
  position: absolute !important;
  left: -25px !important;
  top: 33px !important;
  height: 3px !important;
  width: 80px !important;
  background-color: #68d182 !important;
}

.front-window {
  position: absolute !important;
  top: 28px !important;
  left: 40px !important;
  height: 4px !important;
  width: 15px !important;
  background-color: #9de6ea !important;
  border-radius: 10px 20px 0px 10pxv;
}

.window1 {
  position: absolute;
  top: 28px;
  left: 30px;
  height: 4px;
  width: 4px;
  background-color: #9de6ea;
  border-radius: 20px;
}

.window2 {
  position: absolute;
  top: 28px;
  left: 20px;
  height: 4px;
  width: 4px;
  background-color: #9de6ea;
  border-radius: 20px;
}

.window3 {
  position: absolute;
  top: 28px;
  left: 10px;
  height: 4px;
  width: 4px;
  background-color: #9de6ea;
  border-radius: 20px;
}

.window4 {
  position: absolute;
  top: 28px;
  left: 0px;
  height: 4px;
  width: 4px;
  background-color: #9de6ea;
  border-radius: 20px;
}

.boat {
  position: relative;
  width: 100%;
  top: -18px;
  left: -500px;
  /* boar animation */
  animation: slide2 150000ms infinite linear;
  -moz-animation: slide2 150000ms infinite linear;
  -o-animation: slide2 150000ms infinite linear;
  animation: slide2 150000ms infinite linear;
}

/* Boat animation keyframes */

@keyframes slide2 {
    from {transform: translateX(2000px);}
    to {transform: translateX(-350px);}
}

.boat-shape {
  position: absolute;
  top: 110px;
  left: -28px;
  width: 250px;
  height: 0px;
  border-right: 20px solid transparent;
  border-left: 40px solid transparent;
  border-top: 50px solid #fff;
}

.top-boat {
  position: absolute;
  top: 75px;
  left: 9px;
  width: 228px;
  height: 0px;
  border-right: 15px solid transparent;
  border-left: 30px solid transparent;
  border-bottom: 35px solid #fff;
}

.boat-shape-shadow {
  position: absolute;
  top: 110px;
  left: 142px;
  width: 120px;
  height: 0px;
  border-right: 20px solid transparent;
  border-left: 0px solid transparent;
  border-top: 50px solid #eaeaea;
}

.top-boat-shadow {
  position: absolute;
  top: 75px;
  left: 142px;
  width: 126px;
  height: 0px;
  border-right: 15px solid transparent;
  border-left: 00px solid transparent;
  border-bottom: 35px solid #eaeaea;
}

.front-boat {
  position: absolute;
  top: 67px;
  left: 30px;
  width: 80px; 
  height: 6px; 
  border-top: 2px solid #4d75b7; 
  background: #fff;
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -ms-transform: skew(20deg);
  -o-transform: skew(20deg);
  transform: skew(20deg);
}

.front-top {
  position: absolute;
  top: 61px;
  left: 40px;
  width: 60px; 
  height: 4px; 
  border-top: 2px solid #4d75b7; 
  background: #fff;
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -ms-transform: skew(20deg);
  -o-transform: skew(20deg);
  transform: skew(20deg);
}

.back-top {
  position: absolute;
  top: 69px;
  left: 200px;
  width: 60px; 
  height: 4px; 
  border-top: 2px solid #4d75b7; 
  background: #eaeaea;
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
}

.front-window-boat1 {
  position: absolute;
  background-color: #5987A5;
  top: 80px;
  left: 29px;
  height: 6px;
  width: 40px;
  border-radius: 20px 0px 20px 0px;
}

.front-window-boat2 {
  position: absolute;
  background-color: #5987A5;
  top: 90px;
  left: 21px;
  height: 6px;
  width: 40px;
  border-radius: 20px 0px 20px 0px;
}

.front-window-boat3 {
  position: absolute;
  background-color: #5987A5;
  top: 100px;
  left: 13px;
  height: 6px;
  width: 40px;
  border-radius: 20px 0px 20px 0px;
}

.back-window-boat1 {
  position: absolute;
  background-color: #5987A5;
  top: 80px;
  left: 240px;
  height: 6px;
  width: 25px;
  border-radius: 20px 20px 0px 0px;
}

.back-window-boat2 {
  position: absolute;
  background-color: #5987A5;
  top: 90px;
  left: 231px;
  height: 6px;
  width: 37px;
  border-radius: 20px 20px 0px 0px;
}

.back-window-boat3 {
  position: absolute;
  background-color: #5987A5;
  top: 100px;
  left: 223px;
  height: 6px;
  width: 49px;
  border-radius: 20px 20px 0px 0px;
}

.centre-window-boat1 {
  position: absolute;
  background-color: #5987A5;
  top: 80px;
  left: 79px;
  height: 6px;
  width: 150px;
  border-radius: 20px 0px 20px 0px;
}

.centre-window-boat2 {
  position: absolute;
  background-color: #5987A5;
  top: 90px;
  left: 71px;
  height: 6px;
  width: 150px;
  border-radius: 20px 0px 20px 0px;
}

.centre-window-boat3 {
  position: absolute;
  background-color: #5987A5;
  top: 100px;
  left: 63px;
  height: 6px;
  width: 150px;
  border-radius: 20px 0px 20px 0px;
}

.safety-boat1 {
  position: absolute;
  top: 110px;
  left: 20px;
  background-color: #E9CF71;
  height: 8px;
  width: 25px;
  border-radius: 4px
}

.safety-boat2 {
  position: absolute;
  top: 110px;
  left: 48px;
  background-color: #E9CF71;
  height: 8px;
  width: 25px;
  border-radius: 4px 
}

.safety-boat3 {
  position: absolute;
  top: 110px;
  left: 120px;
  background-color: #E9CF71;
  height: 8px;
  width: 25px;
  border-radius: 4px 
}

.safety-boat4 {
  position: absolute;
  top: 110px;
  left: 148px;
  background-color: #E9CF71;
  height: 8px;
  width: 25px;
  border-radius: 4px  
}

.safety-boat5 {
  position: absolute;
  top: 110px;
  left: 220px;
  background-color: #E9CF71;
  height: 8px;
  width: 25px;
  border-radius: 4px 
}

.safety-boat6 {
  position: absolute;
  top: 110px;
  left: 248px;
  background-color: #E9CF71;
  height: 8px;
  width: 25px;
  border-radius: 4px  
}

.top-windows-line {
  position: absolute;
  top: 119px;
  left: 38px;
  height: 6px;
  width: 220px;
  border-bottom: 4px dotted #5987A5;
}

.bottom-windows-line {
  position: absolute;
  top: 135px;
  left: 38px;
  height: 6px;
  width: 220px;
  border-top: 4px dotted #5987A5;
  border-bottom: 4px dotted #5987A5;
}

.wwrap1 {
  -webkit-animation: wavingboat 12000ms infinite linear;
  -moz-animation: wavingboat 12000ms infinite linear;
  -o-animation: wavingboat 12000ms infinite linear;
  animation: wavingboat 12000ms infinite linear;
}

.water-move1 {
  position: absolute;
  top: 155px;
  height: 10px;
  width: 40px;
  border-radius: 10px 10px 10px 10px;
  background-color: #fff;
  animation: fadingwater 12000ms infinite linear;
  -moz-animation: fadingwater 12000ms infinite linear;
  -o-animation: fadingwater 12000ms infinite linear;
  animation: fadingwater 12000ms infinite linear;
}

.wwrap2 {
  -webkit-animation: wavingboat 12000ms infinite linear 4s;
  -moz-animation: wavingboat 12000ms infinite linear 4s;
  -o-animation: wavingboat 12000ms infinite linear 4s;
  animation: wavingboat 12000ms infinite linear 4s;
}

.water-move2 {
  position: absolute;
  top: 155px;
  height: 10px;
  width: 40px;
  border-radius: 10px 10px 10px 10px;
  background-color: #fff;
  animation: fadingwater 12000ms infinite linear 4s;
  -moz-animation: fadingwater 12000ms infinite linear 4s;
  -o-animation: fadingwater 12000ms infinite linear 4s;
  animation: fadingwater 12000ms infinite linear 4s;
}

.wwrap3{
  -webkit-animation: wavingboat 12000ms infinite linear 8s;
  -moz-animation: wavingboat 12000ms infinite linear 8s;
  -o-animation: wavingboat 12000ms infinite linear 8s;
  animation: wavingboat 12000ms infinite linear 8s;
}

.water-move3 {
  position: absolute;
  top: 155px;
  height: 10px;
  width: 40px;
  border-radius: 10px 10px 10px 10px;
  background-color: #fff;
  animation: fadingwater 12000ms infinite linear 8s;
  -moz-animation: fadingwater 12000ms infinite linear 8s;
  -o-animation: fadingwater 12000ms infinite linear 8s;
  animation: fadingwater 12000ms infinite linear 8s;
}

/* Water animation  keyframes */

@-webkit-keyframes wavingboat {
    from {transform: translateX(0px);}
    to {transform: translateX(350px);}
}

@-moz-keyframes wavingboat {
    from {transform: translateX(0px);}
    to {transform: translateX(350px);}
}

@keyframes wavingboat {
    from {transform: translateX(0px);}
    to {transform: translateX(350px);}
}

/* Water fade animation */

@-webkit-keyframes fadingwater {
  0% {-webkit-opacity: 1; }
  100% {-webkit-opacity: 0; }
}

@-moz-keyframes fadingwater {
  0% {-moz-opacity: 1; }
  100% {-moz-opacity: 0; }
}

@keyframes fadingwater {
  0% {opacity: 1; }
  100% {opacity: 0; }
}

/* night time / day time*/
.sky, .sea, .sun {
    transition: background 1.5s ease, 
                transform 1.5s ease, 
                filter 1.5s ease;
}

/* night */

.world.night .sky {
    background: linear-gradient(#0b1230, #1b2b5a);
}

.world.night .sea {
    background: #0a1a3b;
    filter: brightness(0.6);
    z-index: -1;
}

.world.night .island,
.world.night .mountain,
.world.night .hill1,
.world.night .hill2,
.world.night .hill3,
.world.night .sand {
    filter: brightness(0.7);
}

/* day */

.world.night .sun {
    background: #d9d9d9;
    transform: translateX(calc(100vw - 250px));
    box-shadow: 0 0 25px #ffffff;
    filter: brightness(0.9);
}


.sun {
    background: #ffdf00;
    box-shadow: 0 0 25px #ffdf00;
}
