@import url("https://fonts.googleapis.com/css?family=Merriweather|Raleway");

:root {
  --red: red;
  --pink: pink;
  --green: #20b1a3;
}

*,
*:before,
*:after {
  /* margin: 0;
  padding: 0; */
  word-break: break-all;
  box-sizing: border-box;
  text-decoration: none;
}

html,
body {
  margin: 0;
  padding: 0;
  /* font-family: "Raleway", sans-serif; */
  /* font-family: "Arial", sans-serif; */
  /* font-family: monospace; */
  /* background-image: url("images/background-1.jpg"); */
  /* background-size: cover; */
  /* background-position: center; */
  /* background-repeat: no-repeat; */
  scroll-behavior: smooth;
}

/* Page fade transition effect */
body {
  background: #fff8f0;
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 1s ease, transform 1s ease;
}

body.fade-in {
  opacity: 1;
  transform: scale(1);
}

.fade-out {
  opacity: 0;
  transform: scale(1.2);
}
/* ---------------------------- */

.navbar {
  background-image: url("images/navbar-bg-10.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 0;
  /* height: 22vh; */
  height: 231px;
  /* width: 100vw; */
  align-items: end;
  overflow: hidden;
}

.train-nav-menu {
  position: relative;
  display: flex;
  margin-right: 100px;
  list-style-type: none;
  flex-direction: row;
  /* top: 4px; */
  /* justify-content: center;
  align-items: end; */
  /* -webkit-animation: voyage 20s linear infinite;
  animation: voyage 20s linear infinite;
  animation-duration: 9s;
  animation-iteration-count: 1; */
}

/* @-webkit-keyframes voyage {
  0% {
    right: -1500px;
  }
  100% {
    right: 0px;
  }
}
@keyframes voyage {
  0% {
    right: -1500px;
  }
  100% {
    right: 0px;
  }
} */

/* ----- Main Car ----- */

.main-car {
  width: 331px;
  height: 231px;
  /* animation: train-shake 1.8s infinite linear;
  animation-delay: 0s;
  animation-duration: 1.8s;
  animation-iteration-count: 2; */
}

.main-car-top {
  position: relative;
  background-image: url("images/main-car-top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 331px;
  height: 131px;
  top: 16px;
  transition: background-image 0.5s ease-out 0.2s;
}
.main-car-top:hover {
  background-image: url("images/main-car-top-hover.png");
}

/* Remark: Smoke on .main-car-top:hover appleid with JS */

.main-car-bottom {
  position: relative;
  background-image: url("images/main-car-bottom.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 331px;
  height: 100px;
  top: 16px;
}

.main-car-wheels {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  width: 250px;
  margin-left: -7px;
  top: 60px;
  left: 70px;
}
.main-car-big-wheels {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left: 4px;
}
.main-car-big-wheel-1 {
  /* animation: rotate 2s linear infinite; */
  position: relative;
  background-image: url("images/wheel-big.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 71px;
  height: 71px;
  top: -47px;
  animation: main-car-big-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
.main-car-big-wheel-2 {
  position: relative;
  background-image: url("images/wheel-big.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 8px;
  width: 71px;
  height: 71px;
  top: -47px;
  animation: main-car-big-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
@keyframes main-car-big-wheel {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.main-car-small-wheels {
  display: flex;
  flex-direction: row;
}
.main-car-small-wheel-1 {
  position: relative;
  background-image: url("images/wheel-sml.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  top: -47px;
  animation: main-car-small-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
.main-car-small-wheel-2 {
  position: relative;
  background-image: url("images/wheel-sml.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-inline: 3px 4px;
  width: 30px;
  height: 30px;
  top: -47px;
  animation: main-car-small-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
.main-car-small-wheel-3 {
  position: relative;
  background-image: url("images/wheel-sml.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  top: -47px;
  animation: main-car-small-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
@keyframes main-car-small-wheel {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.wheel-joint {
  position: relative;
  background-image: url("images/wheel-joint.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 158px;
  height: 33px;
  top: -47px;
  left: 122px;
}

/*---------------*/
/*               */
/*     Smoke     */
/*               */
/*---------------*/

.smoke {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  height: 1.4rem;
  position: absolute;
  top: 40px;
  left: 100px;
  width: 0.8rem;
  z-index: -1;
  animation: move-smoke 1.5s linear 3, smoke-time 4s linear 1;
}
.smoke-2 {
  animation-delay: 0.1s;
  animation-duration: 1.5s;
  animation-iteration-count: 3;
}
.smoke-3 {
  animation-delay: 0.2s;
  animation-duration: 1.5s;
  animation-iteration-count: 3;
}
.smoke-4 {
  animation-delay: 0s;
  animation-duration: 1.5s;
  animation-iteration-count: 3;
}
@keyframes move-smoke {
  0% {
    filter: blur(0);
    opacity: 1;
  }
  50% {
    filter: blur(0.2rem);
    opacity: 0.6;
    transform: translate(0, -3rem) scale(2);
  }
  100% {
    filter: blur(0.3rem);
    opacity: 0;
    transform: translate(2.5rem, -6rem) scale(3);
  }
}
@keyframes smoke-time {
  0% {
    z-index: 1;
  }
  99% {
    z-index: 1;
  }
  100% {
    z-index: -1;
  }
}

/* ----- Car 1 ----- */

.car-dino-1-top {
  position: relative;
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-1-top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 151px;
  top: 14px;
  transition: 0.9s ease-out 0.3s;
}
.car-dino-1-top:hover {
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-1-top-hover.png");
  transition: 0s ease-out 0.3s;
}
.car-dino-1-top:hover .nav-link-dino-1 {
  position: relative;
  top: 55px;
  transition: 0s ease-out 0.3s;
}
.car-dino-1-bottom {
  position: relative;
  background-image: url("images/car-1-bottom.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 80px;
  top: 14px;
}

.car-1-wheels {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-left: 9px;
}
.car-1-wheel-1 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  top: 31px;
  animation: car-1-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
.car-1-wheel-2 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 8px;
  width: 35px;
  height: 35px;
  top: 31px;
  left: -9px;
  animation: car-1-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
@keyframes car-1-wheel {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.nav-link-dino-1 img {
  position: relative;
  width: 47px;
  bottom: 1px;
  left: 18px;
}

/* ----- Car 2 ----- */

.car-dino-2-top {
  position: relative;
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-2-top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 151px;
  top: 14px;
  transition: 0.9s ease-out 0.3s;
}
.car-dino-2-top:hover {
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-2-top-hover.png");
  transition: 0s ease-out 0.3s;
}
.car-dino-2-top:hover .nav-link-dino-2 {
  position: relative;
  top: 55px;
  transition: 0s ease-out 0.3s;
}
.car-dino-2-bottom {
  position: relative;
  background-image: url("images/car-2-bottom.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 80px;
  top: 14px;
}

.car-2-wheels {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-left: 9px;
}
.car-2-wheel-1 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  top: 31px;
  animation: car-2-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
.car-2-wheel-2 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 8px;
  width: 35px;
  height: 35px;
  top: 31px;
  left: -9px;
  animation: car-2-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
@keyframes car-2-wheel {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ----- Car 3 ----- */

.car-dino-3-top {
  position: relative;
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-3-top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 151px;
  top: 14px;
  transition: 0.9s ease-out 0.3s;
}
.car-dino-3-top:hover {
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-3-top-hover.png");
  transition: 0s ease-out 0.3s;
}
.car-dino-3-top:hover .nav-link-dino-3 {
  position: relative;
  top: 55px;
  transition: 0s ease-out 0.3s;
}
.car-dino-3-bottom {
  position: relative;
  background-image: url("images/car-3-bottom.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 80px;
  top: 14px;
}

.car-3-wheels {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-left: 9px;
}
.car-3-wheel-1 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  top: 31px;
  left: 6px;
  animation: car-3-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
.car-3-wheel-2 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 8px;
  width: 35px;
  height: 35px;
  top: 31px;
  left: -4px;
  animation: car-3-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
@keyframes car-3-wheel {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ----- Car 4 ----- */

.car-dino-4-top {
  position: relative;
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-4-top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 151px;
  top: 14px;
  transition: 0.9s ease-out 0.3s;
}
.car-dino-4-top:hover {
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-4-top-hover.png");
  transition: 0s ease-out 0.3s;
}
.car-dino-4-top:hover .nav-link-dino-4 {
  position: relative;
  top: 58px;
  transition: 0s ease-out 0.3s;
}
.car-dino-4-bottom {
  position: relative;
  background-image: url("images/car-4-bottom.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 80px;
  top: 14px;
}

.car-4-wheels {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-left: 9px;
}
.car-4-wheel-1 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  top: 31px;
  left: 6px;
  animation: car-4-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
.car-4-wheel-2 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 8px;
  width: 35px;
  height: 35px;
  top: 31px;
  left: -2px;
  animation: car-4-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
@keyframes car-4-wheel {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ----- Car 5 ----- */

.car-dino-5-top {
  position: relative;
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-5-top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 151px;
  top: 14px;
}
.car-dino-5-top:hover {
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-5-top-hover.png");
  transition: 0s ease-out 0.3s;
}
.car-dino-5-top:hover .nav-link-dino-5 {
  position: relative;
  top: 55px;
  transition: 0s ease-out 0.3s;
}
.car-dino-5-bottom {
  position: relative;
  background-image: url("images/car-5-bottom.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 80px;
  top: 14px;
}

.car-5-wheels {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-left: 9px;
}
.car-5-wheel-1 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  top: 31px;
  left: 12px;
  animation: car-5-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
.car-5-wheel-2 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 8px;
  width: 35px;
  height: 35px;
  top: 31px;
  left: 2px;
  animation: car-5-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
@keyframes car-5-wheel {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ----- Car 6 ----- */

.car-dino-6-top {
  position: relative;
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-6-top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 151px;
  top: 14px;
  transition: 0.9s ease-out 0.3s;
}
.car-dino-6-top:hover {
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/car-6-top-hover.png");
  transition: 0s ease-out 0.3s;
}
.car-dino-6-top:hover .nav-link-dino-6 {
  position: relative;
  top: 55px;
  transition: 0s ease-out 0.3s;
}
.car-dino-6-bottom {
  position: relative;
  background-image: url("images/car-6-bottom.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 152px;
  height: 80px;
  top: 14px;
}

.car-6-wheels {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-left: 9px;
}
.car-6-wheel-1 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  top: 31px;
  left: 15px;
  animation: car-6-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
.car-6-wheel-2 {
  position: relative;
  background-image: url("images/car-wheel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 8px;
  width: 35px;
  height: 35px;
  top: 31px;
  left: 2px;
  animation: car-6-wheel 3s 1 ease-out;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
@keyframes car-6-wheel {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes train-shake {
  0% {
    transform: translate(0.09rem, 0.09rem);
  }
  10% {
    transform: translate(-0.09rem, 0rem);
  }
  20% {
    transform: translate(0rem, -0.09rem);
  }
  30% {
    transform: translate(0.09rem, -0.09rem);
  }
  40% {
    transform: translate(-0.09rem, 0rem);
  }
  50% {
    transform: translate(0rem, -0.09rem);
  }
  60% {
    transform: translate(-0.09rem, 0rem);
  }
  70% {
    transform: translate(0rem, -0.09rem);
  }
  80% {
    transform: translate(-0.09rem, 0.09rem);
  }
  90% {
    transform: translate(-0.09rem, -0.09rem);
  }
  100% {
    transform: translate(0.09rem, 0.09rem);
  }
}

/* --- Link a - Train Car --- */

.car-dino-1-top a {
  position: relative;
  font-family: "Damion", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  text-shadow: 5px 5px 15px #00000044;
  top: 102px;
  left: 38px;
  font-weight: bold;
  font-size: 22px;
  color: rgba(85, 26, 139, 0.87);
  transition-delay: 0.3s;
}

.car-dino-2-top a {
  position: relative;
  font-family: "Damion", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  text-shadow: 5px 5px 15px #00000044;
  top: 103px;
  left: 40px;
  font-weight: bold;
  font-size: 22px;
  color: rgba(85, 26, 139, 0.87);
  transition-delay: 0.3s;
}

.car-dino-3-top a {
  position: relative;
  font-family: "Damion", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  text-shadow: 5px 5px 15px #00000044;
  top: 103px;
  left: 33px;
  font-weight: bold;
  font-size: 22px;
  color: rgba(85, 26, 139, 0.87);
  transition-delay: 0.3s;
}

.car-dino-4-top a {
  position: relative;
  font-family: "Damion", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  text-shadow: 5px 5px 15px #00000044;
  top: 104px;
  left: 54px;
  font-weight: bold;
  font-size: 22px;
  color: rgba(85, 26, 139, 0.87);
  transition-delay: 0.3s;
}

.car-dino-5-top a {
  position: relative;
  font-family: "Damion", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  text-shadow: 5px 5px 15px #00000044;
  top: 105px;
  left: 62px;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 1px;
  color: rgba(85, 26, 139, 0.87);
  transition-delay: 0.3s;
}

.car-dino-6-top a {
  position: relative;
  font-family: "Damion", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  text-shadow: 5px 5px 15px #00000044;
  top: 105px;
  left: 43px;
  font-weight: bold;
  font-size: 20px;
  color: rgba(85, 26, 139, 0.88);
  transition-delay: 0.3s;
}

/* -------------- */

.logo {
  position: relative;
  /* align-self: center; */
  top: -98px;
  left: 110px;
}

/* -------------- */

.menu-uderline {
  width: 100%;
  height: 10px;
  /* background: #1badc7; */
  background: #60a7ff;
}

/* --------------------------- */
/* --- Side Menu Container --- */
/* --------------------------- */

.image-sidemenu-container {
  position: relative;
  display: flex;
  /* margin-right: 100px; */
  /* list-style-type: none; */
  flex-direction: row;
  height: 600px;
  /* top: 4px; */
  justify-content: space-between;
  align-items: center;
}

/* -- Carusel - Rotating Box -- */

.main-img-carusel {
  /* width: 1800px; */
  width: 50%;
  height: 500px;
  flex-shrink: 1;
}

.carusele-container {
  /* margin: 0; */
  position: relative;
  display: grid;
  place-content: center;
  /* animation: b 9s infinite; */
  top: -500px;
  left: 250px;
  width: 35%;
}

.gallery {
  --s: 540px; /* the size */

  display: grid;
  transform-style: preserve-3d;
  --_p: perspective(calc(2.5 * var(--s)));
  /* animation: r 15s infinite cubic-bezier(0.5, 0.5, 0.5, 0.5); */
  animation: r 35s infinite linear;
  animation-play-state: paused;
}
.carusele-container:hover .gallery {
  animation: r 35s infinite linear;
}
.gallery img {
  grid-area: 1/1;
  width: var(--s);
  aspect-ratio: 1.5;
  object-fit: cover;
  transform: var(--_t) translateZ(calc(var(--s) / 2));
}
.gallery img:nth-child(1) {
  --_t: rotateZ(360deg);
}
.gallery img:nth-child(2) {
  --_t: rotateX(-90deg);
  display: none;
}
.gallery img:nth-child(3) {
  --_t: rotateY(90deg) rotate(-90deg) rotateZ(90deg);
}
.gallery img:nth-child(4) {
  --_t: rotateX(180deg) rotate(90deg) rotateZ(90deg);
}
.gallery img:nth-child(5) {
  --_t: rotateX(90deg) rotate(90deg);
  display: none;
}
.gallery img:nth-child(6) {
  --_t: rotateY(-90deg);
}
@keyframes r {
  0%,
  10% {
    transform: var(--_p);
  }
  22%,
  26% {
    transform: var(--_p) rotateY(90deg);
  }
  38%,
  42% {
    transform: var(--_p) rotateY(90deg) rotateY(90deg);
  }
  54%,
  58% {
    transform: var(--_p) rotateY(90deg) rotateY(90deg) rotateY(90deg);
  }
  70%,
  74% {
    transform: var(--_p) rotateY(90deg) rotateY(90deg) rotateY(90deg)
      rotateY(90deg);
  }
  99%,
  100% {
    transform: var(--_p);
  }
}

/* -- Side Menu -- */

.side-menu {
  position: relative;
  width: 50%;
  height: 100%;
  right: 150px;
  text-align: center;
  position: absolute;
  top: 20px;
  overflow: hidden;
  font-family: "Arial Rounded MT";
  flex-shrink: 6;
}

.cubes {
  transform-style: preserve-3d;
  background-color: transparent;
  width: 350px;
  height: 350px;
  position: relative;
  margin: 35px auto 0px auto;
  /* ---- */
  perspective-origin: 100% 120px;
  perspective: 1000px;
  z-index: 99;
}

.wrap {
  width: 300px;
  height: 100px;
  background-color: transparent;
  position: relative;
  transform-style: preserve-3d;
  display: inline-block;
  top: 0px;
  left: 0px;
  /* ---- */
  margin-block: -3px;
  /* ---- */
  transform: rotateX(-15deg) rotateY(-15deg) translateZ(0px);
}

.cube {
  width: 300px;
  height: 100px;
  display: block;
  transform-style: preserve-3d;
  perspective-origin: top 100px;
  background-color: transparent;
  position: absolute;
  margin: 0px;
  transition: all 1s linear;
}

.cube div {
  height: 80px;
  box-sizing: border-box;
  position: absolute;
  display: block;
  opacity: 0.5;
}

.back {
  transform: translateZ(-30px) rotateY(180deg);
  width: 500px;
  padding: 20px;
}

.right {
  width: 80px;
  transform: rotateY(-270deg) translateX(30px) translateZ(520px);
  transform-origin: top right;
  left: -100px;
  top: 0px;
}

.left {
  width: 80px;
  transform: rotateY(270deg) translateX(-30px);
  transform-origin: center left;
}

.top {
  transform: rotateX(-90deg) translateY(-50px);
  transform-origin: top center;
  width: 500px;
}

.bottom {
  transform: rotateX(90deg) translateY(50px);
  transform-origin: bottom center;
  width: 500px;
}

.front {
  transform: translateZ(50px);
  width: 500px;
}

.bottom a {
  transform: rotateX(180deg) translateY(-10px) translateX(20px);
  display: inline-block;
  position: relative;
  margin: -10px 30px 0px auto;
  /* margin-right: 10px; */
  color: black;
  text-shadow: 5px 5px 5px slategrey;
  visibility: visible;
  text-decoration: none;
}

.soft-emboss a {
  text-decoration: none;
  font-family: "Ubuntu", Tahoma;
  font-size: 1em;
  line-height: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 1px rgba(255, 255, 255, 0.8);
  /* text-shadow: 1px 2px 3px #f4f4f4, 0 0 0 #000, 1px 2px 3px #f4f4f4; */
}

.soft-emboss-2 a {
  text-decoration: none;
  font-family: "Ubuntu", Tahoma;
  font-size: 1em;
  line-height: 40px;
  font-weight: bold;
  text-shadow: -1px -1px 1px #fff, 1px 1px 3px rgba(251, 250, 250, 0.2),
    1px 2px 3px rgba(252, 252, 252, 0.1);
  transition: font-size 0.7s;
}
.soft-emboss-2 a:hover {
  font-size: 1.18em;
  text-shadow: -1px -2px 3px #fff, 1px 1px 3px rgba(251, 250, 250, 0.2),
    1px 2px 3px rgba(252, 252, 252, 0.1);
  color: black;
}

.cubes .wrap:first-child .cube div {
  background-color: deepskyblue;
  box-shadow: inset 0 0 35px blue;
  border: solid 1px blue;
}

.cubes .wrap:first-child .cube div .soft-emboss a {
  color: blue;
}
.cubes .wrap:first-child .cube div .soft-emboss-2 a {
  color: rgb(2, 2, 215);
}

.cubes .wrap:nth-child(4) .cube div {
  background-color: rgb(254, 183, 50);
  box-shadow: inset 0 0 25px #fd5102;
  border: solid 1px #fd5102;
  color: #fd5102;
}

.cubes .wrap:nth-child(4) .cube div .soft-emboss a {
  color: orangered;
}
.cubes .wrap:nth-child(4) .cube div .soft-emboss-2 a {
  color: rgb(221, 60, 2);
}

.cubes .wrap:nth-child(3) .cube div {
  background-color: rgb(255, 134, 174);
  box-shadow: inset 0 0 25px red;
  border: solid 1px red;
}

.cubes .wrap:nth-child(3) .cube div .soft-emboss a {
  color: red;
}
.cubes .wrap:nth-child(3) .cube div .soft-emboss-2 a {
  color: red;
}

.cubes .wrap:nth-child(2) .cube div {
  background-color: greenyellow;
  box-shadow: inset 0 0 30px darkolivegreen;
  border: solid 1px darkolivegreen;
}

.cubes .wrap:nth-child(2) .cube div .soft-emboss a {
  color: darkolivegreen;
}
.cubes .wrap:nth-child(2) .cube div .soft-emboss-2 a {
  color: darkolivegreen;
}

.cubes .wrap:nth-child(5) .cube div {
  background-color: #f8a1d1;
  box-shadow: inset 0 0 35px #fc50af;
  border: solid 2px #fc50af;
}

.cubes .wrap:nth-child(5) .cube div .soft-emboss a {
  color: #ff1695;
}
.cubes .wrap:nth-child(5) .cube div .soft-emboss-2 a {
  color: #ff1695;
}

.cube:hover {
  transform: rotateX(90deg) translateY(20px);
}

/* Side Menu - Glow on Hover Bottom */

.glow-on-hover {
  border: none;
  outline: none;
}

.glow-on-hover:before {
  content: "";
  background: linear-gradient(
    80deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 200%;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  animation: glowing 50s linear infinite;
}

.glow-on-hover:hover:before {
  opacity: 1;
  border: solid 10px rgba(255, 255, 255, 0.4);
  border-radius: 25%;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 800% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* .cube:hover {
  transform: rotateX(90deg);
} */

/* -- Side Menu End -- */

/* ----------------------- */
/* ----------------------- */
/* ----------------------- */
/*                         */
/*        Page Body        */
/*                         */
/* ----------------------- */
/* ----------------------- */
/* ------------------------ */

.top-menu-to-footer-container {
  background-image: url("./coloring-pages/unicorn-coloring-pages/images/background-1.jpg");
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;
  height: auto;
}

.content-container {
  position: relative;
  top: -500px;
  left: -120px;
  height: auto;

  font-family: monospace;
}

.cloring-pages-links-container {
  position: relative;
  display: grid;
  left: 350px;
  top: 70px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  gap: 20px;
  padding: 20px;
  width: 75%;
  z-index: 0;
}

.coloring-page-link-frame {
  position: relative;
  margin-top: 50px;
  display: none;
  height: 300px;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  will-change: transform, z-index;
  z-index: 1;
  transform: translateY(40px);
  transition: opacity 2s ease, transform 2s ease, z-index 0s ease 1.2s;
}

.coloring-page-link-frame:hover {
  z-index: 199 !important; /* Bring to front */
}

/* --------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------- */
/* -                                                                                     - */
/* -     Animated "load more" button with grid and with a scroll up button animation     - */
/* -                                                                                     - */
/* --------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------- */

.coloring-page-link-frame.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.coloring-page-link-frame.show .note-img {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Load More Button */
#load-more-btn {
  /* width: 90%; */
  /* max-width: 300px; */
  /* color: #fff; */
  display: block;
  font-family: cursive;
  font-size: 2rem;
  text-align: center;
  line-height: 5rem;
  margin: 130px auto 0px auto;
  padding: 12px;
  /* border-radius: 10px; */
  /* border: 1px solid transparent; */
  /* background-color: blue; */
  transition: 0.3s;
  cursor: pointer;
  /* box-shadow: 0 10px 10px 2px rgba(0, 0, 0, 0.4); */
  color: #111;
  width: 430px;
  height: 130px;
  background-image: url("./images/load-more-btn.png");
}

#load-more-btn:hover {
  /* color: blue;
  background-color: #fff;
  border: 1px solid blue;
  text-decoration: none; */
  background-image: url("./images/load-more-btn-hover.png");
  cursor: pointer;
}

/* Fade out animation */
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

#load-more-btn.fade-out {
  animation: fadeOut 1s forwards; /* must be 2s */
}

.noContent {
  pointer-events: none;
}

/* ----------------------------- */
/*                               */
/*       Back to top button      */
/*                               */
/* ----------------------------- */

#back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background-color: transparent;
  background-image: url("./images/pointing-up.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 65px;
  height: 111px;
  border: none;
  transform: translate(150%, 0);
  z-index: 199;
}

#back-to-top-btn:hover {
  cursor: pointer;
}

#back-to-top-btn.show {
  animation: slideInRightJump 1.6s ease-out forwards;
}

@keyframes slideInRightJump {
  0% {
    opacity: 0;
    transform: translate(150%, 0); /* more distance = more slide */
  }
  30% {
    opacity: 1;
    transform: translate(0, -100px); /* jump height */
  }
  60% {
    transform: translate(0, 10px); /* fall bounce */
  }

  100% {
    transform: translate(0, 0); /* landing */
  }
}

#back-to-top-btn img {
  width: 100px;
}

/* ---------------------- */
/*                        */
/*       Note Design      */
/*                        */
/* ---------------------- */

.note {
  width: 300px;
  height: 300px;
  padding: 15px 2px 5px 15px;
  margin: 20px;
  box-shadow: 0 10px 10px 2px rgba(0, 0, 0, 0.3);
  background: #fff;
  position: relative;
  display: inline-block;
  z-index: 0; /* base level */

  /* transform: rotate(2deg); */
  transform: rotate(var(--angle, 0deg));
  /* transition: transform 1.2s ease 0.9s, box-shadow 0.3s ease 0.9s; */
  transition: transform var(--duration, 1.4s) var(--ease, ease)
      var(--delay, 1.2s),
    box-shadow 1.2s ease var(--delay, 1.4s);

  will-change: transform;
}

.note.hovered {
  z-index: 99; /* bring to front */
  box-shadow: 10px 10px 7px rgba(0, 0, 0, 0.2);
  --angle: 0deg;
  cursor: pointer;
}

.note.hovered .note-img {
  /* width: 271px;
  height: 271px; */
  transform: scale(103%);
}

.note-img {
  width: 270px;
  height: 270px;

  /* width: 270px;
  height: auto;
  border-radius: 8px; */
  opacity: 0;
  /* transform: scale(0.95); */
  filter: blur(8px);
  /* padding-bottom: 5px; */
  /* transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease; */

  /* transition: width 0.5s ease, height 0.5s ease; */
  transition: transform 0.5s ease, opacity 0.8s ease, transform 0.8s ease,
    filter 0.8s ease;
}

.note-img:hover {
  cursor: pointer;
}

/* ------------------------- */
/*/* ----------------------- */
/*/*                         */
/*/* ---  Pins Design ---- ***/
/*/*                         */
/*/* ----------------------- */
/* ------------------------- */

/* -- Pin 1 -- */
.pin-1 {
  background-color: #aaa;
  display: block;
  height: 32px;
  width: 2px;
  position: absolute;
  left: 50%;
  top: -16px;
  z-index: 1;
  transform: rotate(2deg);
  transform-origin: 50% 100%;
  transition: opacity 1.6s ease 1s;
}
/* Ball top of the pin and it’s shadow. */
.pin-1:after {
  background-color: #a31;
  background-image: radial-gradient(
    25% 25%,
    circle,
    hsla(0, 0%, 100%, 0.3),
    hsla(0, 0%, 0%, 0.3)
  );
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.1),
    inset 3px 3px 3px hsla(0, 0%, 100%, 0.2),
    inset -3px -3px 3px hsla(0, 0%, 0%, 0.2),
    23px 20px 3px hsla(0, 0%, 0%, 0.15);
  content: "";
  height: 12px;
  left: -5px;
  position: absolute;
  top: -10px;
  width: 12px;
}
/* Ceate and rotate the shadow of the metal part of the pin. */
.pin-1:before {
  background-color: hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 0.25em hsla(0, 0%, 0%, 0.1);
  content: "";

  height: 24px;
  width: 2px;
  left: 0;
  position: absolute;
  top: 8px;

  transform: rotate(57.5deg);
  -moz-transform: rotate(57.5deg);
  -webkit-transform: rotate(57.5deg);
  -o-transform: rotate(57.5deg);
  -ms-transform: rotate(57.5deg);

  transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
}
.note:hover .pin-1 {
  /* display: none; */
  opacity: 0;
}

/* -- Pin 2 -- */
.pin-2 {
  background-color: #aaa;
  display: block;
  height: 32px;
  width: 2px;
  position: absolute;
  left: 52%;
  top: -16px;
  z-index: 1;
  transform: rotate(-7deg);
  transform-origin: 50% 100%;
  transition: opacity 1.6s ease 1s;
}
/* Ball top of the pin and it’s shadow. */
.pin-2:after {
  background-color: #a31;
  background-image: radial-gradient(
    25% 25%,
    circle,
    hsla(0, 0%, 100%, 0.3),
    hsla(0, 0%, 0%, 0.3)
  );
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.1),
    inset 3px 3px 3px hsla(0, 0%, 100%, 0.2),
    inset -3px -3px 3px hsla(0, 0%, 0%, 0.2),
    23px 20px 3px hsla(0, 0%, 0%, 0.15);
  content: "";
  height: 12px;
  left: -5px;
  position: absolute;
  top: -10px;
  width: 12px;
}
/* Ceate and rotate the shadow of the metal part of the pin. */
.pin-2:before {
  background-color: hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 0.25em hsla(0, 0%, 0%, 0.1);
  content: "";

  height: 24px;
  width: 2px;
  left: 0;
  position: absolute;
  top: 8px;

  transform: rotate(57.5deg);
  transform-origin: 50% 100%;
}
.note:hover .pin-2 {
  /* display: none; */
  opacity: 0;
}

/* -- Pin 3 -- */
.pin-3 {
  background-color: #aaa;
  display: block;
  height: 31px;
  width: 2px;
  position: absolute;
  left: 50%;
  top: -16px;
  z-index: 1;
  transform: rotate(10.5deg);
  transform-origin: 50% 100%;
  transition: opacity 1.6s ease 1s;
}
/* Ball top of the pin and it’s shadow. */
.pin-3:after {
  background-color: #a31;
  background-image: radial-gradient(
    25% 25%,
    circle,
    hsla(0, 0%, 100%, 0.3),
    hsla(0, 0%, 0%, 0.3)
  );
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.1),
    inset 3px 3px 3px hsla(0, 0%, 100%, 0.2),
    inset -3px -3px 3px hsla(0, 0%, 0%, 0.2),
    23px 20px 3px hsla(0, 0%, 0%, 0.15);
  content: "";
  height: 12px;
  left: -5px;
  position: absolute;
  top: -10px;
  width: 12px;
}
/* Ceate and rotate the shadow of the metal part of the pin. */
.pin-3:before {
  background-color: hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 0.25em hsla(0, 0%, 0%, 0.1);
  content: "";

  height: 24px;
  width: 2px;
  left: -2;
  position: absolute;
  top: 6px;

  transform: rotate(57.5deg);
  transform-origin: 50% 100%;
}
.note:hover .pin-3 {
  /* display: none; */
  opacity: 0;
}

/* -- Pin 4 -- */
.pin-4 {
  background-color: #aaa;
  display: block;
  height: 32px;
  width: 3px;
  position: absolute;
  left: 47%;
  top: -16px;
  z-index: 1;
  transform: rotate(0deg);
  transform-origin: 50% 100%;
  transition: opacity 1.6s ease 1s;
}
/* Ball top of the pin and it’s shadow. */
.pin-4:after {
  background-color: #a31;
  background-image: radial-gradient(
    25% 25%,
    circle,
    hsla(0, 0%, 100%, 0.3),
    hsla(0, 0%, 0%, 0.3)
  );
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.1),
    inset 3px 3px 3px hsla(0, 0%, 100%, 0.2),
    inset -3px -3px 3px hsla(0, 0%, 0%, 0.2),
    23px 20px 3px hsla(0, 0%, 0%, 0.15);
  content: "";
  height: 12px;
  left: -5px;
  position: absolute;
  top: -8px;
  width: 12px;
}
/* Ceate and rotate the shadow of the metal part of the pin. */
.pin-4:before {
  background-color: hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 0.25em hsla(0, 0%, 0%, 0.1);
  content: "";

  height: 24px;
  width: 2px;
  left: 0;
  position: absolute;
  top: 8px;

  transform: rotate(57.5deg);
  transform-origin: 50% 100%;
}
.note:hover .pin-4 {
  /* display: none; */
  opacity: 0;
}

/* -- Pin 5 -- */
.pin-5 {
  background-color: #aaa;
  display: block;
  height: 30px;
  width: 2px;
  position: absolute;
  left: 53%;
  top: -16px;
  z-index: 1;
  transform: rotate(7deg);
  transform-origin: 50% 100%;
  transition: opacity 1.6s ease 1s;
}
/* Ball top of the pin and it’s shadow. */
.pin-5:after {
  background-color: #a31;
  background-image: radial-gradient(
    25% 25%,
    circle,
    hsla(0, 0%, 100%, 0.3),
    hsla(0, 0%, 0%, 0.3)
  );
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.1),
    inset 3px 3px 3px hsla(0, 0%, 100%, 0.2),
    inset -3px -3px 3px hsla(0, 0%, 0%, 0.2),
    23px 20px 3px hsla(0, 0%, 0%, 0.15);
  content: "";
  height: 12px;
  left: -5px;
  position: absolute;
  top: -10px;
  width: 12px;
}
/* Ceate and rotate the shadow of the metal part of the pin. */
.pin-5:before {
  background-color: hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 0.25em hsla(0, 0%, 0%, 0.1);
  content: "";

  height: 24px;
  width: 2px;
  left: -4;
  position: absolute;
  top: 5px;

  transform: rotate(57.5deg);
  transform-origin: 50% 100%;
}
.note:hover .pin-5 {
  /* display: none; */
  opacity: 0;
}

/* -- Pin 6 -- */
.pin-6 {
  background-color: #aaa;
  display: block;
  height: 32px;
  width: 2px;
  position: absolute;
  left: 49%;
  top: -16px;
  z-index: 1;
  transform: rotate(-3deg);
  transform-origin: 50% 100%;
  transition: opacity 1.6s ease 1s;
}
/* Ball top of the pin and it’s shadow. */
.pin-6:after {
  background-color: #a31;
  background-image: radial-gradient(
    25% 25%,
    circle,
    hsla(0, 0%, 100%, 0.3),
    hsla(0, 0%, 0%, 0.3)
  );
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.1),
    inset 3px 3px 3px hsla(0, 0%, 100%, 0.2),
    inset -3px -3px 3px hsla(0, 0%, 0%, 0.2),
    23px 20px 3px hsla(0, 0%, 0%, 0.15);
  content: "";
  height: 12px;
  left: -5px;
  position: absolute;
  top: -10px;
  width: 12px;
}
/* Ceate and rotate the shadow of the metal part of the pin. */
.pin-6:before {
  background-color: hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 0.25em hsla(0, 0%, 0%, 0.1);
  content: "";

  height: 24px;
  width: 2px;
  left: 0;
  position: absolute;
  top: 8px;

  transform: rotate(57.5deg);
  transform-origin: 50% 100%;
}
.note:hover .pin-6 {
  /* display: none; */
  opacity: 0;
}

/* -- Pin 7 -- */
.pin-7 {
  background-color: #aaa;
  display: block;
  height: 32px;
  width: 2px;
  position: absolute;
  left: 47%;
  top: -16px;
  z-index: 1;
  transform: rotate(-9deg);
  transform-origin: 50% 100%;
  transition: opacity 1.6s ease 1s;
}
/* Ball top of the pin and it’s shadow. */
.pin-7:after {
  background-color: #a31;
  background-image: radial-gradient(
    25% 25%,
    circle,
    hsla(0, 0%, 100%, 0.3),
    hsla(0, 0%, 0%, 0.3)
  );
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.1),
    inset 3px 3px 3px hsla(0, 0%, 100%, 0.2),
    inset -3px -3px 3px hsla(0, 0%, 0%, 0.2),
    23px 20px 3px hsla(0, 0%, 0%, 0.15);
  content: "";
  height: 12px;
  left: -5px;
  position: absolute;
  top: -10px;
  width: 12px;
}
/* Ceate and rotate the shadow of the metal part of the pin. */
.pin-7:before {
  background-color: hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 0.25em hsla(0, 0%, 0%, 0.1);
  content: "";

  height: 24px;
  width: 2px;
  left: 0;
  position: absolute;
  top: 8px;

  transform: rotate(57.5deg);
  transform-origin: 50% 100%;
}
.note:hover .pin-7 {
  /* display: none; */
  opacity: 0;
}

/* -- Pin 8 -- */
.pin-8 {
  background-color: #aaa;
  display: block;
  height: 29px;
  width: 2px;
  position: absolute;
  left: 47%;
  top: -16px;
  z-index: 1;
  transform: rotate(-3deg);
  transform-origin: 50% 100%;
  transition: opacity 1.6s ease 1s;
}
/* Ball top of the pin and it’s shadow. */
.pin-8:after {
  background-color: #a31;
  background-image: radial-gradient(
    25% 25%,
    circle,
    hsla(0, 0%, 100%, 0.3),
    hsla(0, 0%, 0%, 0.3)
  );
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.1),
    inset 3px 3px 3px hsla(0, 0%, 100%, 0.2),
    inset -3px -3px 3px hsla(0, 0%, 0%, 0.2),
    23px 20px 3px hsla(0, 0%, 0%, 0.15);
  content: "";
  height: 12px;
  left: -5px;
  position: absolute;
  top: -10px;
  width: 12px;
}
/* Ceate and rotate the shadow of the metal part of the pin. */
.pin-8:before {
  background-color: hsla(0, 0%, 0%, 0.1);
  box-shadow: 0 0 0.25em hsla(0, 0%, 0%, 0.1);
  content: "";

  height: 24px;
  width: 2px;
  left: 0;
  position: absolute;
  top: 4px;

  transform: rotate(62deg);
  transform-origin: 50% 100%;
}
.note:hover .pin-8 {
  /* display: none; */
  opacity: 0;
}

/* ------------------ */
/*                    */
/* --  Page Title  -- */
/*                    */
/* ------------------ */

.page-title h1 {
  position: relative;
  /* font-family: Arial, sans-serif; */
  font-family: cursive;
  color: #fd5f68;
  font-size: 85px;
  /* text-shadow: 0px 2px 1px #fc98ab, 0px 3px 1px #fac1cb, 0px 4px 1px #93b7fe,
    0px 5px 1px #67dcf9, 0px 6px 1px #67dcf9, 0px 6px 1px #67dcf9,
    0px 6px 1px #67dcf9, 0px 6px 1px #67dcf9, 0px 6px 1px #026d88,
    0px 6px 4px rgba(200, 250, 1, 0.35); */
  text-shadow: 0px 1px 1px #fc98ab, 0px 2px 1px #fac1cb, 0px 3px 1px #93b7fe,
    0px 4px 1px #67dcf9, 0px 5px 1px #67dcf9, 0px 5px 1px #67dcf9,
    0px 5px 1px #67dcf9, 0px 5px 1px #67dcf9, 0px 5px 1px #026d88,
    0px 7px 4px rgba(200, 250, 1, 0.35);
  text-align: center;
  top: 20px;
  left: 50px;
  opacity: 0.98;
}
.page-title h1 span {
  font-size: 58px;
}
.page-title h2 {
  position: relative;
  font-family: Arial, sans-serif;
  /* font-family: cursive; */
  color: #3d58fa;
  font-size: 50px;
  text-shadow: 0px 1px 1px #fc98ab, 0px 2px 1px #fac1cb, 0px 3px 1px #93b7fe,
    0px 4px 1px #67dcf9, 0px 5px 1px #67dcf9, 0px 5px 1px #67dcf9,
    0px 5px 1px #67dcf9, 0px 5px 1px #67dcf9, 0px 5px 1px #67dcf9,
    0px 8px 5px rgba(0, 0, 0, 0.5);
  text-align: center;
  top: 34px;
  opacity: 0.75;
}

/* ------------------ */
/* -                - */
/* -     Footer     - */
/* -                - */
/* ------------------ */

footer {
  position: relative;
  bottom: 0;
  width: 161%;
  left: -27.9%;
  margin-top: -320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* The Fotter Menu */
footer .menu {
  position: relative;
  display: flex;
  font-family: cursive;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  top: 30px;
  left: -100px;
  z-index: 99;
}
footer .menu li {
  list-style: none;
}
footer .menu li a {
  font-size: 22px;
  color: #ccc;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
}
:root {
  --text: #2b3044;
  --line: #bbc1e1;
  --line-active: #fafafb;
}
footer .menu li a:hover {
  opacity: 1;
  color: #fff;
}

.svg-home {
  width: 78px;
  height: 45px;
  position: absolute;
  left: 11.6%;
  bottom: 0;
  transform: translate(-50%, 7px) translateZ(0);
  fill: none;
  stroke: var(--stroke, var(--line));
  stroke-linecap: round;
  stroke-width: 2px;
  stroke-dasharray: var(--offset, 69px) 278px;
  stroke-dashoffset: 361px;
  transition: stroke 0.25s ease var(--stroke-delay, 0s), stroke-dasharray 0.35s;
}
.footer-link-home:hover {
  opacity: 1;
  color: #fff;
  --spacing: 4px;
  --stroke: var(--line-active);
  --stroke-delay: 0.1s;
  --offset: 180px;
}
.svg-blog {
  width: 78px;
  height: 45px;
  position: absolute;
  left: 81.2%;
  bottom: 0;
  transform: translate(-50%, 7px) translateZ(0);
  fill: none;
  stroke: var(--stroke, var(--line));
  stroke-linecap: round;
  stroke-width: 2px;
  stroke-dasharray: var(--offset, 69px) 278px;
  stroke-dashoffset: 361px;
  transition: stroke 0.25s ease var(--stroke-delay, 0s), stroke-dasharray 0.35s;
}
.footer-link-blog:hover {
  opacity: 1;
  color: #fff;
  --spacing: 4px;
  --stroke: var(--line-active);
  --stroke-delay: 0.1s;
  --offset: 180px;
}

footer > p {
  color: #eee;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: cursive;
  font-size: 16px;
  transform: translateY(30px) translateX(-80px);
  opacity: 0.85;
  z-index: 99;
}

/*wave and animation*/
footer .wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 250px;
  background: url(images/wave.png);
  background-size: 1000px;
}

footer .wave#wave1 {
  z-index: 98;
  opacity: 0.9;
  bottom: 0;
  animation: animateWave 30s linear infinite;
}

footer .wave#wave2 {
  z-index: 97;
  opacity: 0.5;
  bottom: 10px;
  animation: animateWave_02 40s linear infinite;
}
footer .wave#wave3 {
  z-index: 98;
  opacity: 0.2;
  bottom: 0;
  animation: animateWave_01 20s linear infinite;
}

footer .wave#wave4 {
  z-index: 97;
  opacity: 0.7;
  bottom: 20px;
  animation: animateWave_02 20s linear infinite;
}

@keyframes animateWave {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-position-x: 0px;
  }
}

@keyframes animateWave_01 {
  0% {
    background-position-x: 1000px;
    filter: hue-rotate(0deg);
  }
  100% {
    background-position-x: 0px;
    filter: hue-rotate(360deg);
  }
}

@keyframes animateWave_02 {
  0% {
    background-position-x: 0px;
    filter: hue-rotate(0deg);
  }
  100% {
    background-position-x: 1000px;
    filter: hue-rotate(360deg);
  }
}

/* -- Responsive -- */
