body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: 'Roboto', sans-serif;
}

.loader-wrapper {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 120px;
}

.loader.hidden {
    /* animation: fadeOut 1s;
    animation-fill-mode: forwards; */

    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

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

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

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

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

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.bg-image {
    background-image: url('/img/download.svg');
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    display: block;
    width: 1200px;
    height: 500px;
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -o-filter: blur(20px);
    -ms-filter: blur(20px);
    filter: blur(20px);
}

@media (max-width: 768px) {
    .bg-image {
        display: none;
    }
}

.container {
    max-width: 600px;
    margin: 2rem auto;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    background-color: white !important;
    width: 100%;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card .card-body {
    background-color: #447fb6;
    color: #f4fef4;
    padding: 1.5rem 4rem;
}

@media (max-width: 768px) {
    .card .card-body {
        padding: 1.5rem 2rem;
    }
}

.card .card-body p {
    opacity: 0.7;
}

a {
    text-decoration: none;
}

.card-header img {
    width: 100%;
}

.card-section .social {
    border-bottom: 1px rgba(0, 0, 0, 0.12) solid;
    cursor: pointer;
}

.card-section a {
    display: flex;
    align-items: center;
    padding: 1rem 4rem;
}

@media (max-width: 768px) {
    .card-section a {
        padding: 1.5rem 2rem;
    }
}

.card-footer {
    padding: 3rem;
}

.card-footer button {
    background: rgb(233, 30, 99);
    padding: .5rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    outline: none;
}

.button:hover {
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    transform: translateY(-7px);
}

.fa {
    padding: 8px;
    font-size: 25px;
    width: 23px;
    text-align: center;
    border-radius: 4rem;
    margin-right: .8rem;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
    background-color: #3B5998;
    color: white;
}

.fa-twitter {
    background-color: #00acee;
    color: white;
}

.fa-whatsapp {
    background-color: #25D366;
    color: white;
}

.fa-instagram {
    background: rgb(233, 30, 99);
    color: white;
}

.fa-globe {
    background: grey;
    color: white;
}

.icon {
    color: black;
}

.icon-title {
    font-weight: 700;
}

.icon-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.54);
    font-weight: 400;
}