a,
a:focus,
a:hover {
    color: #fff;
}

html,
body {
    background-color:#f2f2f2;    
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    color: #000;
}
.download{
    justify-content: center;
}
.download a{
    padding-left: 15px;
    padding-right: 15px;
}
.download img{
    max-width: 192px;
}
.cover-container {
    max-width: 1024px;
    justify-content: center;
}
h1{
    font-size: 46px;
    font-family: 'Raleway', sans-serif;
}
.masthead p{
    font-size: 18px;
    margin-bottom: 30px;
}

.cover-heading {
    font-size: 112px;
    font-weight: bold;
    letter-spacing: 14px;
}

.cover-para {
    color: #231f20;
    font-weight: bold;
    font-size: 55px;
}

.cover {
    padding: 0 1.5rem;
}

.cover .btn-lg {
    padding: .75rem 1.25rem;
    font-weight: 700;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    padding-left: 10px;
    padding-right: 10px;
}
.social-icons a:hover{
    opacity: 0.8;
}
header {
    text-align: center;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    margin: 0 2px;
}

footer ul a {
    display: block;
}

@media only screen and (max-width:992px) {
    .cover-heading {
        font-size: 84px;
        letter-spacing: normal;
    }

    .cover-para {
        font-size: 40px;
    }
}

.logo{
    max-width: 100%;
}
@media only screen and (min-width:991px) {
    html,
    body {
        height: 100%;
    }
}
@media only screen and (max-width:992px) {
    .logo{
        max-width: 240px;
        margin-bottom: 30px;
    }
    h1{
        font-size: 24px;
        line-height: 1.333;
    }
    .download a{
        margin: 0 5px;
    }
    .download img{
        max-width: 150px;
    }
    body{
        min-height: 100vh;
    }
    .cover-container{
        min-height: 100vh;
    }
}
@media only screen and (max-width:480px) {
    .download img{
        max-width: 100%;
    }
}
@media only screen and (max-width:600px) {
    .logo-container {
        width: 280px;
        height: 120px;
    }

    .copyrights {
        font-size: 12px;
    }
}

.active .loader-container {
    display: block;
}

.loader-container {
    display: none;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -60px;
    margin-top: -60px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #6C3AFD;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    z-index: 101;
}

.loader-container {
    z-index: 100;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(242, 242, 242, 0.9);
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}