.box {
  width: 35vw;
  height: 35vw;

  margin: 0 auto;
  color: white;
  justify-content: center;
  flex-direction: column;
}

.animation .titlex {
  width: 100%;


  height: 150px;
}

.animation.titlex .block {
  width: 0%;
  height: inherit;
  background: #ffcb0c;
  position: absolute;
  animation: mainBlock 2s cubic-bezier(.17, .67, .83, .67) alternate-reverse;
  display: flex;
}

.animation .titlex p {
  font-family: 'Montserrat', serif;
  font-weight: 100;
  font-style: normal;
  text-decoration: none;

  color: #ffd600;
  font-size: 3em;
  -webkit-animation: mainFadeIn 2s forwards;
  -o-animation: mainFadeIn 2s forwards;
  animation: mainFadeIn 2s forwards;
  animation-delay: 1.6s;
  opacity: 0;
  display: flex;
  align-items: baseline;
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.animation .titlex p span {
  width: 0px;
  height: 0px;
  text-decoration: none;
  background: white;
  -webkit-animation: load 0.3s cubic-bezier(0.75, 0.25, 0.16, 0.89) alternate-reverse;
  animation: popIn 0.8s cubic-bezier(0.75, 0.25, 0.16, 0.89) alternate-reverse;
  animation-delay: 2s;
  margin-left: 5px;
  margin-top: -10px;
  position: absolute;
  bottom: 13px;
  right: -12px;
}


.animation .block {
  width: 0%;
  height: 0.2em;
  bottom: 0.2px;

  background: white;
  position: absolute;
  animation: secBlock 2s cubic-bezier(0.75, 0.25, 0.16, 0.89) forwards;

  display: flex;
}


@keyframes secBlock {
  0% {
    width: 0%;
    left: 0;
  }

  30% {
    width: 100%;
    left: 0;
  }

  70% {
    width: 0;
    left: 100%;
  }

  100% {
    width: 100%;
    left: 0;
    background: rgb(255, 255, 255);
  }
}

@keyframes mainFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*@keyframes popIn {
  0% {
    bottom: 20px;
    width: 10px;
    height: 5px;
    background: #ffcb0c;
    opacity: 1; 
    left: 320px;
    z-index: -2;}
  50% {
    width: -100px;
    height: 5px;
    background: #ffcb0c;
    opacity: 1;
    bottom: 20px;
    left: 320px;
    z-index: -2; }
  65% {
    width: 150px;
    height: 5px;
    bottom: 20px;
    width: 15px; 
    left: 320px;
    z-index: -2;}
  80% {
    width: 300px;
    height: 5px;
    bottom: 20px;
    left: 320px; 
    z-index: -2;}
  100% {
    width: 230px;
    height: 5px;
    background: #ffcb0c;
    
    bottom: 20px;
  left:370px;
    z-index: -2; } }*/
@keyframes secFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.5;
  }
}

@keyframes top {
  0% {
    opacity: 0;
    bottom: -80px;
  }

  100% {
    opacity: 1;
    bottom: 0px;
  }
}

@keyframes icon {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1.3) rotate(-2deg);
  }

  100% {
    opacity: 1;
    bottom: 0px;
  }
}

/*# sourceMappingURL=drop.css.map */
@media only screen and (max-width: 580px) {
  .box {
    width: 20vw;
    height: 20vw;

    justify-content: center;
    flex-direction: column;
  }

  .animation .titlex {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 150px;
  }

  .animation.titlex .block {
    width: 0%;
    height: inherit;

    position: absolute;
    animation: mainBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;
    display: flex;
  }

  .animation .titlex p {
    font-family: 'Montserrat', serif;
    font-weight: 100;
    font-style: normal;
    color: #ffffff;
    font-size: 1.5em;
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
  }

  .animation .titlex p span {
    width: 0px;
    height: 0px;


    -webkit-animation: load 0.3s cubic-bezier(.17, .67, .83, .67) forwards;
    animation: popIn 0.8s cubic-bezier(.17, .67, .83, .67) forwards;
    animation-delay: 2s;
    margin-left: 5px;
    margin-top: -10px;
    position: absolute;
    bottom: 13px;
    right: -12px;
  }


  .animation .block {
    width: 0%;
    height: 0.2em;
    bottom: 60px;

    position: absolute;
    animation: secBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;

    display: flex;
  }


  @keyframes secBlock {
    0% {
      width: 0%;
      left: 0;
    }

    30% {
      width: 100%;
      left: 0;
    }

    70% {
      width: 0;
      left: 100%;
    }

    100% {
      width: 100%;
      left: 0;
      background: rgb(255, 255, 255);
    }
  }

  @keyframes mainFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes secFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 0.5;
    }
  }

  @keyframes top {
    0% {
      opacity: 0;
      bottom: -80px;
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }

  @keyframes icon {
    0% {
      opacity: 0;
      transform: scale(0);
    }

    50% {
      opacity: 1;
      transform: scale(1.3) rotate(-2deg);
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }
}

@media only screen and (min-width: 1200px) {
  .box {
    padding-top: 20vw;
    width: 35vw;
    height: 35vw;

    justify-content: center;
    flex-direction: column;
  }

  .animation .titlex {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 150px;
  }

  .animation.titlex .block {
    width: 0%;
    height: inherit;

    position: absolute;
    animation: mainBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;
    display: flex;
  }

  .animation .titlex p {
    font-family: 'Montserrat', serif;
    font-weight: 100;
    font-style: normal;
    color: #ffffff;
    font-size: 2.1em;
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
  }

  .animation .titlex p span {
    width: 0px;
    height: 0px;


    -webkit-animation: load 0.3s cubic-bezier(.17, .67, .83, .67) forwards;
    animation: popIn 0.8s cubic-bezier(.17, .67, .83, .67) forwards;
    animation-delay: 2s;
    margin-left: 5px;
    margin-top: -10px;
    position: absolute;
    bottom: 13px;
    right: -12px;
  }


  .animation .block {
    width: 0%;
    height: 0.2em;
    bottom: 60px;


    position: absolute;
    animation: secBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;

    display: flex;
  }


  @keyframes secBlock {
    0% {
      width: 0%;
      left: 0;
    }

    30% {
      width: 100%;
      left: 0;
    }

    70% {
      width: 0;
      left: 100%;
    }

    100% {
      width: 100%;
      left: 0;
      background: rgb(255, 255, 255);
    }
  }

  @keyframes mainFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes secFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 0.5;
    }
  }

  @keyframes top {
    0% {
      opacity: 0;
      bottom: -80px;
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }

  @keyframes icon {
    0% {
      opacity: 0;
      transform: scale(0);
    }

    50% {
      opacity: 1;
      transform: scale(1.3) rotate(-2deg);
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }
}

@media only screen and (max-width: 780px) {
  .box {
    width: 35vw;
    height: 350px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .animation .titlex {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 150px;
  }

  .animation.titlex .block {
    width: 0%;
    height: inherit;

    position: absolute;
    animation: mainBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;
    display: flex;
  }

  .animation .titlex p {
    font-family: 'Montserrat', serif;
    font-weight: 100;
    font-style: normal;
    color: #ffffff;
    font-size: 2em;
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
  }

  .animation .titlex p span {
    width: 0px;
    height: 0px;


    -webkit-animation: load 0.3s cubic-bezier(.17, .67, .83, .67) forwards;
    animation: popIn 0.8s cubic-bezier(.17, .67, .83, .67) forwards;
    animation-delay: 2s;
    margin-left: 5px;
    margin-top: -10px;
    position: absolute;
    bottom: 13px;
    right: -12px;
  }


  .animation .block {
    width: 0%;
    height: 0.2em;
    bottom: 50px;

    position: absolute;
    animation: secBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;

    display: flex;
  }


  @keyframes secBlock {
    0% {
      width: 0%;
      left: 0;
    }

    30% {
      width: 100%;
      left: 0;
    }

    70% {
      width: 0;
      left: 100%;
    }

    100% {
      width: 100%;
      left: 0;
      background: rgb(255, 255, 255);
    }
  }

  @keyframes mainFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes secFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 0.5;
    }
  }

  @keyframes top {
    0% {
      opacity: 0;
      bottom: -80px;
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }

  @keyframes icon {
    0% {
      opacity: 0;
      transform: scale(0);
    }

    50% {
      opacity: 1;
      transform: scale(1.3) rotate(-2deg);
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }
}

@media only screen and (max-width: 1350px) {
  .box {
    width: 35vw;
    height: 35vw;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .animation .titlex {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 150px;
  }

  .animation.titlex .block {
    width: 0%;
    height: inherit;

    position: absolute;
    animation: mainBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;
    display: flex;
  }

  .animation .titlex p {
    font-family: 'Montserrat', serif;
    font-weight: 100;
    font-style: normal;
    color: #ffffff;
    font-size: 2.5em;
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
  }

  .animation .titlex p span {
    width: 0px;
    height: 0px;


    -webkit-animation: load 0.3s cubic-bezier(.17, .67, .83, .67) forwards;
    animation: popIn 0.8s cubic-bezier(.17, .67, .83, .67) forwards;
    animation-delay: 2s;
    margin-left: 5px;
    margin-top: -10px;
    position: absolute;
    bottom: 13px;
    right: -12px;
  }


  .animation .block {
    width: 0%;
    height: 0.2em;
    bottom: 55px;

    position: absolute;
    animation: secBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;

    display: flex;
  }


  @keyframes secBlock {
    0% {
      width: 0%;
      left: 0;
    }

    30% {
      width: 100%;
      left: 0;
    }

    70% {
      width: 0;
      left: 100%;
    }

    100% {
      width: 100%;
      left: 0;
      background: rgb(255, 255, 255);
    }
  }

  @keyframes mainFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes secFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 0.5;
    }
  }

  @keyframes top {
    0% {
      opacity: 0;
      bottom: -80px;
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }

  @keyframes icon {
    0% {
      opacity: 0;
      transform: scale(0);
    }

    50% {
      opacity: 1;
      transform: scale(1.3) rotate(-2deg);
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }
}

@media only screen and (max-width: 1290px) {
  .box {
    width: 35vw;
    height: 35vw;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .animation .titlex {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 150px;
  }

  .animation.titlex .block {
    width: 0%;
    height: inherit;

    position: absolute;
    animation: mainBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;
    display: flex;
  }

  .animation .titlex p {
    font-family: 'Montserrat', serif;
    font-weight: 100;
    font-style: normal;
    color: #ffffff;
    font-size: 2em;
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
  }

  .animation .titlex p span {
    width: 0px;
    height: 0px;


    -webkit-animation: load 0.3s cubic-bezier(.17, .67, .83, .67) forwards;
    animation: popIn 0.8s cubic-bezier(.17, .67, .83, .67) forwards;
    animation-delay: 2s;
    margin-left: 5px;
    margin-top: -10px;
    position: absolute;
    bottom: 13px;
    right: -12px;
  }


  .animation .block {
    width: 0%;
    height: 0.2em;
    bottom: 55px;

    position: absolute;
    animation: secBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;

    display: flex;
  }


  @keyframes secBlock {
    0% {
      width: 0%;
      left: 0;
    }

    30% {
      width: 100%;
      left: 0;
    }

    70% {
      width: 0;
      left: 100%;
    }

    100% {
      width: 100%;
      left: 0;
      background: rgb(255, 255, 255);
    }
  }

  @keyframes mainFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes secFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 0.5;
    }
  }

  @keyframes top {
    0% {
      opacity: 0;
      bottom: -80px;
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }

  @keyframes icon {
    0% {
      opacity: 0;
      transform: scale(0);
    }

    50% {
      opacity: 1;
      transform: scale(1.3) rotate(-2deg);
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }
}

@media only screen and (max-width: 1590px) {
  .box {
    width: 35vw;
    height: 35vw;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .animation .titlex {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 150px;
  }

  .animation.titlex .block {
    width: 0%;
    height: inherit;

    position: absolute;
    animation: mainBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;
    display: flex;
  }

  .animation .titlex p {
    font-family: 'Montserrat', serif;
    font-weight: 100;
    font-style: normal;
    color: #ffffff;
    font-size: 2em;
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
  }

  .animation .titlex p span {
    width: 0px;
    height: 0px;


    -webkit-animation: load 0.3s cubic-bezier(.17, .67, .83, .67) forwards;
    animation: popIn 0.8s cubic-bezier(.17, .67, .83, .67) forwards;
    animation-delay: 2s;
    margin-left: 5px;
    margin-top: -10px;
    position: absolute;
    bottom: 13px;
    right: -12px;
  }


  .animation .block {
    width: 0%;
    height: 0.2em;
    bottom: 50px;

    position: absolute;
    animation: secBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;

    display: flex;
  }


  @keyframes secBlock {
    0% {
      width: 0%;
      left: 0;
    }

    30% {
      width: 100%;
      left: 0;
    }

    70% {
      width: 0;
      left: 100%;
    }

    100% {
      width: 100%;
      left: 0;
      background: rgb(255, 255, 255);
    }
  }

  @keyframes mainFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes secFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 0.5;
    }
  }

  @keyframes top {
    0% {
      opacity: 0;
      bottom: -80px;
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }

  @keyframes icon {
    0% {
      opacity: 0;
      transform: scale(0);
    }

    50% {
      opacity: 1;
      transform: scale(1.3) rotate(-2deg);
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }
}

@media only screen and (max-width: 1000px) {
  .box {
    width: 35vw;
    height: 35vw;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .animation .titlex {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 150px;
  }

  .animation.titlex .block {
    width: 0%;
    height: inherit;

    position: absolute;
    animation: mainBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;
    display: flex;
  }

  .animation .titlex p {
    font-family: 'Montserrat', serif;
    font-weight: 100;
    font-style: normal;
    color: #ffffff;
    font-size: 2em;
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
  }

  .animation .titlex p span {
    width: 0px;
    height: 0px;


    -webkit-animation: load 0.3s cubic-bezier(.17, .67, .83, .67) forwards;
    animation: popIn 0.8s cubic-bezier(.17, .67, .83, .67) forwards;
    animation-delay: 2s;
    margin-left: 5px;
    margin-top: -10px;
    position: absolute;
    bottom: 13px;
    right: -12px;
  }


  .animation .block {
    width: 0%;
    height: 0.2em;
    bottom: 45px;

    position: absolute;
    animation: secBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;

    display: flex;
  }


  @keyframes secBlock {
    0% {
      width: 0%;
      left: 0;
    }

    30% {
      width: 100%;
      left: 0;
    }

    70% {
      width: 0;
      left: 100%;
    }

    100% {
      width: 100%;
      left: 0;
      background: rgb(255, 255, 255);
    }
  }

  @keyframes mainFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes secFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 0.5;
    }
  }

  @keyframes top {
    0% {
      opacity: 0;
      bottom: -80px;
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }

  @keyframes icon {
    0% {
      opacity: 0;
      transform: scale(0);
    }

    50% {
      opacity: 1;
      transform: scale(1.3) rotate(-2deg);
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }
}

@media only screen and (max-width: 390px) {
  .box {
    width: 250px;
    height: 350px;
    margin-top: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .animation .titlex {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 150px;
  }

  .animation.titlex .block {
    width: 0%;
    height: inherit;

    position: absolute;
    animation: mainBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;
    display: flex;
  }

  .animation .titlex p {
    font-family: 'Montserrat', serif;
    font-weight: 100;
    font-style: normal;
    color: #ffffff;
    font-size: 2em;
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
  }

  .animation .titlex p span {
    width: 0px;
    height: 0px;


    -webkit-animation: load 0.3s cubic-bezier(.17, .67, .83, .67) forwards;
    animation: popIn 0.8s cubic-bezier(.17, .67, .83, .67) forwards;
    animation-delay: 2s;
    margin-left: 5px;
    margin-top: -10px;
    position: absolute;
    bottom: 13px;
    right: -12px;
  }


  .animation .block {
    width: 0%;
    height: 2px;
    bottom: 55px;

    position: absolute;
    animation: secBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;

    display: flex;
  }


  @keyframes secBlock {
    0% {
      width: 0%;
      left: 0;
    }

    30% {
      width: 100%;
      left: 0;
    }

    70% {
      width: 0;
      left: 100%;
    }

    100% {
      width: 100%;
      left: 0;
      background: rgb(255, 255, 255);
    }
  }

  @keyframes mainFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes secFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 0.5;
    }
  }

  @keyframes top {
    0% {
      opacity: 0;
      bottom: -80px;
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }

  @keyframes icon {
    0% {
      opacity: 0;
      transform: scale(0);
    }

    50% {
      opacity: 1;
      transform: scale(1.3) rotate(-2deg);
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }
}

@media only screen and (max-width: 790px) {
  .box {
    width: 250px;
    height: 350px;
    margin-top: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .animation .titlex {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 150px;
  }

  .animation.titlex .block {
    width: 0%;
    height: inherit;

    position: absolute;
    animation: mainBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;
    display: flex;
  }

  .animation .titlex p {
    font-family: 'Montserrat', serif;
    font-weight: 100;
    font-style: normal;
    color: #ffffff;
    font-size: 2em;
    -webkit-animation: mainFadeIn 2s forwards;
    -o-animation: mainFadeIn 2s forwards;
    animation: mainFadeIn 2s forwards;
    animation-delay: 1.6s;
    opacity: 0;
    display: flex;
    align-items: baseline;
    position: relative;
  }

  .animation .titlex p span {
    width: 0px;
    height: 0px;


    -webkit-animation: load 0.3s cubic-bezier(.17, .67, .83, .67) forwards;
    animation: popIn 0.8s cubic-bezier(.17, .67, .83, .67) forwards;
    animation-delay: 2s;
    margin-left: 5px;
    margin-top: -10px;
    position: absolute;
    bottom: 13px;
    right: -12px;
  }


  .animation .block {
    width: 0%;
    height: 2px;
    bottom: 55px;

    position: absolute;
    animation: secBlock 2s cubic-bezier(.17, .67, .83, .67) forwards;

    display: flex;
  }


  @keyframes secBlock {
    0% {
      width: 0%;
      left: 0;
    }

    30% {
      width: 100%;
      left: 0;
    }

    70% {
      width: 0;
      left: 100%;
    }

    100% {
      width: 100%;
      left: 0;
      background: rgb(255, 255, 255);
    }
  }

  @keyframes mainFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes secFadeIn {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 0.5;
    }
  }

  @keyframes top {
    0% {
      opacity: 0;
      bottom: -80px;
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }

  @keyframes icon {
    0% {
      opacity: 0;
      transform: scale(0);
    }

    50% {
      opacity: 1;
      transform: scale(1.3) rotate(-2deg);
    }

    100% {
      opacity: 1;
      bottom: 0px;
    }
  }
}