.hcsw-logo svg {
  stroke: hsl(232, 45%, 34%);
  stroke-width: 1px;
  fill: hsl(232, 45%, 34%, 0);
  animation: color-change 1s ease-in forwards 2s;
}
.hcsw-logo path:nth-child(1),
.hcsw-logo path:nth-child(3) {
  stroke-dasharray: 246;
  stroke-dashoffset: 246;
  animation: show 2.5s linear forwards;
}
.hcsw-logo path:nth-child(2),
.hcsw-logo path:nth-child(4) {
  stroke-dasharray: 246;
  stroke-dashoffset: 246;
  animation: show 2.5s linear forwards, color-change-orange 1s ease-in forwards 2s;
}
.hcsw-logo path:nth-child(5),
.hcsw-logo path:nth-child(6),
.hcsw-logo path:nth-child(7),
.hcsw-logo path:nth-child(8),
.hcsw-logo path:nth-child(9),
.hcsw-logo path:nth-child(10) {
  stroke-dasharray: 253;
  stroke-dashoffset: 253;
  animation: show 2.5s linear forwards;
}
.hcsw-logo path:nth-child(11),
.hcsw-logo path:nth-child(12),
.hcsw-logo path:nth-child(13),
.hcsw-logo path:nth-child(14),
.hcsw-logo path:nth-child(15),
.hcsw-logo path:nth-child(16) {
  stroke-dasharray: 334;
  stroke-dashoffset: 334;
  animation: show 2.5s linear forwards;
}
@keyframes show {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes color-change {
  to {
    stroke: transparent;
    fill: #2f397d;
  }
}
@keyframes color-change-orange {
  to {
    stroke: transparent;
    fill: #de4f28;
  }
}

.hsbc-logo svg {
  stroke: hsl(355, 100%, 43%);
  stroke-width: 1px;
  fill: hsl(355, 100%, 43%, 0);
}

.hsbc-logo path:nth-child(1) {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: show 2.5s linear forwards, color-to-white 1s ease-in forwards 2s;
}

.hsbc-logo path:nth-child(2),
.hsbc-logo path:nth-child(3),
.hsbc-logo path:nth-child(4),
.hsbc-logo path:nth-child(5) {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: show 2.5s linear forwards, color-to-db0011 1s ease-in forwards 2s;
}

.hsbc-logo path:nth-child(6),
.hsbc-logo path:nth-child(7),
.hsbc-logo path:nth-child(8),
.hsbc-logo path:nth-child(9),
.hsbc-logo path:nth-child(10) {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: show 2.5s linear forwards, color-to-1F2937 1s ease-in forwards 2s;
}

@keyframes color-to-white {
  to {
    stroke: transparent;
    fill: #ffffff;
  }
}

@keyframes color-to-db0011 {
  to {
    stroke: transparent;
    fill: #db0011;
  }
}

@keyframes color-to-1F2937 {
  to {
    stroke: transparent;
    fill: #1f2937;
  }
}

.and svg {
  stroke: hsl(220, 3%, 39%);
  stroke-width: 10px;
  fill: hsl(220, 3%, 39%, 0);
  opacity: 0;
  animation: visible 0.2s linear forwards 3s;
}

.and path:nth-child(1) {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: show 0.5s linear forwards 3s, color-to-606266 1s ease-in forwards 3.3s;
}

@keyframes visible {
  to {
    opacity: 1;
  }
}

@keyframes color-to-606266 {
  to {
    stroke: transparent;
    fill: #606266;
  }
}

.start-up-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  z-index: 1000000001!important;
  background-color: #fff;
}

.start-up-wrap.out {
  opacity: 0;
}
