.loading-section {
    color: #ffffffb2;
    background: #1565c0;
    letter-spacing: .00735em;
    position:absolute;
    text-align: center;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    font-family: 'Roboto','Helvetica','Arial','sans-serif';
}

.loader{
    margin: 15px;
}

.loading-section h2 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.235;
    margin: 0px;
}

.loader-dot {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #ffffffb2;
    display: inline-block;
    -webkit-animation: grow 2.1s infinite ease-in-out both;
    animation: grow 2.1s infinite ease-in-out both;
}

.loader-dot.dot1 {
    -webkit-animation-delay: -0.96s;
    animation-delay: -0.96s;
}

.loader-dot.dot2 {
    -webkit-animation-delay: -0.48s;
    animation-delay: -0.48s;
}

@-webkit-keyframes grow {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}