
/* ============= Animation background for hero image========= */
    .background {
        background: linear-gradient(132deg, #FC415A, #591BC5, #212335);
        background-size: 400% 400%;
        animation: Gradient 15s ease infinite;
        position: relative;
        height: 80vh;
        width: 100%;
        overflow: hidden;
        padding:0;
        margin:0px  !important;
    }
    .cube {
        position: absolute;
        top: 20vh;
        left: 45vw;
        width: 10px;
        height: 10px;
        border: solid 1px #D7D4E4;
        transform-origin: top left;
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        animation: cube 12s ease-in forwards infinite;
    }
    .cube:nth-child(2n) {
    border-color: #FFF ;
    }
    .cube:nth-child(2) {
    animation-delay: 2s;
    left: 25vw;
    top: 40vh;
    }
    .cube:nth-child(3) {
    animation-delay: 4s;
    left: 75vw;
    top: 50vh;
    }
    .cube:nth-child(4) {
    animation-delay: 6s;
    left: 90vw;
    top: 10vh;
    }
    .cube:nth-child(5) {
    animation-delay: 8s;
    left: 10vw;
    top: 25vh;
    }
    .cube:nth-child(6) {
    animation-delay: 10s;
    left: 50vw;
    top: 10vh;
    }
/* ================= Header ============ */
#header-hero{
  position: absolute;
  top:0%;
  left: 0%;
  width:100%;
  margin: 0;
  padding: 0;
}

/* Header content & title & button*/
.header-content{
  margin-top:15%;
  text-align: center;
  color:  #EFEEF5;
}
.header-content h1{
  text-transform: titlecase;
  font-size: 3em;
  letter-spacing: 1px;
}
.header-content p {
  font-size: 20px;
  line-height: 1.5;
  margin: 20px auto;
}
.header-content button{
  width: 140px;
  margin:20px 10px;
  color: #591BC5;
  font-size: 17px;
  border:1px solid #EFEEF5;
  font-weight: 500;
  background: #EFEEF5;
  border-radius: 20px;
  padding: 10px;
  cursor:pointer;
  transition: .3s;
}
.header-content button:hover{
  border-radius: 0;
}
/* Animate Background*/
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}
/* cahnged hamburger icon */
    .menu {
    background-color: transparent;
    border: none !important;
    cursor: pointer;
    display: flex;
    padding: 0;
    }
    .line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .line1 {
    stroke-dasharray: 35 207;
    stroke-width: 6;
    }
    .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
    }
    .line3 {
    stroke-dasharray: 50 207;
    stroke-width: 6;
    }
    .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
    }
    .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
    }
    .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
    }

@media (max-width: 768px) {
    .header-content h1 {
      margin-top: 0px !important;
      font-size: 2em;
    }
    .header-content p {
        font-size: 16px;
    }
    .header-content button {
        width: 120px;
        font-size: 15px;
         margin:10px 5px;

    }
    .background {
        height: 40vh;
    }

    #header-hero{
      position: absolute;
      top:5%;
      left: 0%;
      width:100%;
      margin: 0;
      padding: 0;
    }

}
/* our story drop letters  */
        .dropletter span {
        /* font-size: 6em; */
        /* color: white; */
        font-weight: bold;
        opacity: 0;
        animation: drop 0.4s linear forwards;
        animation-iteration-count: infinite;
        }

        .dropletter span:nth-child(2) {
        animation-delay: 0.2s;
        }

        .dropletter span:nth-child(3) {
        animation-delay: 0.4s;
        }

        .dropletter span:nth-child(4) {
        animation-delay: 0.6s;
        }

        .dropletter span:nth-child(5) {
        animation-delay: 0.8s;
        }

        .dropletter span:nth-child(6) {
        animation-delay: 1s;
        }

        .dropletter span:nth-child(7) {
        animation-delay: 1.2s;
        }

        .dropletter span:nth-child(8) {
        animation-delay: 1.4s;
        }

        .dropletter span:nth-child(9) {
        animation-delay: 1.6s;
        }

        .dropletter span:nth-child(10) {
        animation-delay: 1.8s;
        }

        @keyframes  drop {
        0% {
            transform: translateY(-200px) scaleY(0.9);
        }
        5% {
            opacity: 0.7;
        }
        50% {
            transform: translateY(0px) scaleY(1);
            opacity: 1;
        }
        65% {
            transform: translateY(-17px) scaleY(0.9);
        }
        75% {
            transform: translateY(-22px) scaleY(0.9);
        }
        100% {
            transform: translateY(0px) scaleY(1);
            opacity: 1;
        }
        }