body {
    background: #1D1E1C;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

header img {
    max-width: 400px;
}
h1, h2, h3, h4 {
    color: #0E4BEF;
    font-family: 'Bebas Neue', cursive;
    text-shadow: 1px 1px #1D1E1C;
}
h2 {
    font-size: 60px;
}
h3 {
    font-size: 40px;
}
.navbar-logo {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    font-size: 1.25rem;
    margin-right: 0;
    line-height: inherit;
    white-space: nowrap;
    max-width: 240px;
}

footer .social-links i {
    font-size: 40px;
    margin: 0 15px;
}
footer img.footer-logo {
    max-width: 240px;
}

button.loading span {
    visibility: hidden;
    opacity: 0;
}

button.loading::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

@media only screen and (max-width: 768px)  {
    body {
        font-size: 16px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 32px;
    }
    p {
        margin: 12px 0;
    }
    .transparence-background:before {
		background-attachment: unset !important;
	}
    footer .social-links i {
        font-size: 30px;
        margin: 0 20px;
    }
    .navbar-logo,
    footer img.footer-logo {
        max-width: 200px;
    }
}

.btn-primary {
    background-color: #0E4BEF!important;
    border-color: #0E4BEF!important;
}
.show-if-last {
    display: none;
}
.show-if-last:last-child {
    display: block !important;
}

#COOKIE_CONSENT {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #ccc;
    z-index: 9999;
    line-height: 1.5;
  }