/*ANIMATED BACKGROUND*/

.animated-bck {
  position: relative;
  background-color: #f1f1f1;
  height: calc(70vh - 6.5rem);
  overflow: hidden;
  margin-top: 6.5rem;
}

@media only screen and (min-width: 64em) {
  /*1024px*/
  .animated-bck {
    height: 70vh;
    margin-top: 0;
  }
}

.header-logo {
  width: 25rem;
  /* margin: 0 auto; */
  /* padding-top: 4rem; */
  position: relative;
  /* left:50%;
    transform: translateX(-50%);
    top:0; */
  z-index: 2;
}

#ie-logo {
  width: 36rem;
  -webkit-animation: flip-in-hor-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: flip-in-hor-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  opacity: 1;
}

.hide {
  display: none;
}

@media only screen and (min-width: 30em) {
  /*480px*/
  .header-logo {
    width: 36rem;
  }
}

.st0 {
  fill: #808285;
}

.st0 {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: fadeIn 0.7s ease-in;
  animation: fadeIn 0.7s ease-in;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.st0:first-child {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.st0:nth-child(2) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.st0:nth-child(3) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.st0:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.st0:nth-child(5) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.st0:nth-child(6) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.st0:nth-child(7) {
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

.st0:nth-child(8) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.st1 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  /* fill:#EC008C; */
  fill: transparent;
  stroke: #ec008c;
  opacity: 0;
  visibility: hidden;
  stroke-dasharray: 10;
  stroke-dashoffset: 0;
  -webkit-animation: animationO 0.7s linear;
  animation: animationO 0.7s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

@-webkit-keyframes animationO {
  0% {
    opacity: 0;
    visibility: hidden;
    stroke-dasharray: 10;
  }
  50% {
    opacity: 1;
    visibility: visible;
  }
  90% {
    stroke-dasharray: 70;
  }
  100% {
    opacity: 1;
    visibility: visible;
    fill: #ec008c;
    stroke: transparent;
  }
}

@keyframes animationO {
  0% {
    opacity: 0;
    visibility: hidden;
    stroke-dasharray: 10;
  }
  50% {
    opacity: 1;
    visibility: visible;
  }
  90% {
    stroke-dasharray: 70;
  }
  100% {
    opacity: 1;
    visibility: visible;
    fill: #ec008c;
    stroke: transparent;
  }
}

.logo-txt {
  width: 20rem;
  height: auto;
  display: block;
  margin: 0 0 0 auto;
  -webkit-animation: flip-in-hor-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: flip-in-hor-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  opacity: 1;
  -webkit-box-shadow: 0 0 0 #80828500;
  box-shadow: 0 0 0 #80828500;
  position: relative;
  z-index: 2;
  padding-top: 1rem;
}

@-webkit-keyframes flip-in-hor-top {
  0% {
    -webkit-transform: rotateX(-80deg);
    transform: rotateX(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes flip-in-hor-top {
  0% {
    -webkit-transform: rotateX(-80deg);
    transform: rotateX(-80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

/*pulse*/

.pulse {
  display: block;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(236, 0, 142, 1);
  cursor: pointer;
  -webkit-box-shadow: 0 0 0 rgba(236, 0, 142, 0.5);
  box-shadow: 0 0 0 rgba(236, 0, 142, 0.5);
  -webkit-animation: pulse 3.5s ease-in-out infinite;
  animation: pulse 3.5s ease-in-out infinite;
  z-index: 2;
}

.pulse-bottom {
  position: absolute;
  bottom: -15rem;
  left: -15rem;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.pulse-top {
  position: absolute;
  top: -15rem;
  right: -15rem;
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(236, 0, 142, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0 15rem rgba(236, 0, 142, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(236, 0, 142, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(236, 0, 142, 0.5);
    box-shadow: 0 0 0 0 rgba(236, 0, 142, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0 30rem rgba(236, 0, 142, 0);
    box-shadow: 0 0 0 15rem rgba(236, 0, 142, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(236, 0, 142, 0);
    box-shadow: 0 0 0 0 rgba(236, 0, 142, 0);
  }
}

@media only screen and (min-width: 48em) {
  /*768px*/
  .pulse {
    display: block;
    width: 27rem;
    height: 27rem;
  }
  @-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(236, 0, 142, 0.5);
    }
    50% {
      -webkit-box-shadow: 0 0 0 30rem rgba(236, 0, 142, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(236, 0, 142, 0);
    }
  }
  @keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(236, 0, 142, 0.5);
      box-shadow: 0 0 0 0 rgba(236, 0, 142, 0.5);
    }
    50% {
      -webkit-box-shadow: 0 0 0 30rem rgba(236, 0, 142, 0);
      box-shadow: 0 0 0 30rem rgba(236, 0, 142, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(236, 0, 142, 0);
      box-shadow: 0 0 0 0 rgba(236, 0, 142, 0);
    }
  }
}
