
.ctr {
    text-align: center;
}

.pwcontainer {
    display: none;
    left: 50%;
    bottom:-6%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.pwfillme {
    background-color: #e5e9eb;
    height: 0.25em;
    position: relative;
    width: 24em;
}

.pwfillme-line {
    animation-duration: 5s;
    animation-name: width;
    background: #ee504f;
    background-size: 24em 0.25em;
    height: 100%;
    position: relative;
}

@keyframes width {
    0%, 100% {
        transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
    }

    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .pwcontainer {
        left: 50%;
        bottom:-3%;
        position: absolute;
        transform: translate(-50%, -50%);
    }
  }
