@font-face {
    font-family: 'PoppinsRegular';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'PoppinsBold';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'PoppinsMedium';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111111;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    display: flex;
}

#loader img {
    max-width: 30%;
    max-height: 30%;
}

@media (max-width: 768px) {
    #loader img {
        max-width: 50%;
        max-height: 50%;
    }
}

body {
    font-family: 'PoppinsRegular', Arial, sans-serif;
    color: #FFFFFF;
    background-color: #111111;
}

.section {
    padding: 40px 0;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 10px;
    background-color: #FF5757;
    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: auto;
    font-family: 'PoppinsMedium', Arial, sans-serif;
}

.btn-custom:hover {
    background-color: #888888;
    color: #FFFFFF;
}

.btn-custom:focus {
    box-shadow: 0 0 0 0.2rem transparent;
}

.btn-custom img {
    width: 24px;
    height: 24px;
    margin-right: 14px;
}

.btn-icon-alone {
    padding: 12px 20px;
}

.btn-icon-alone img {
    margin-right: 0px !important;
}

a {
    color: #FF5757;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #888888;
    text-decoration: none;
}

.feature-image {
    max-width: 60%;
    height: auto;
    margin: 20px;
}

.header-image {
    max-width: 70%;
    height: auto;
    margin: 20px;
}

h1,
h2 {
    font-family: 'PoppinsBold', Arial, sans-serif;
    color: #FFFFFF;
}

p {
    font-family: 'PoppinsRegular', Arial, sans-serif;
    color: #888888;
}

.bg-dark {
    background-color: #2A2A2A !important;
}

.bg-secondary {
    background-color: #0B0B0B !important;
}

.red-dot {
    width: 7.5px;
    height: 7.5px;
    background-color: #FF5757;
    border-radius: 50%;
    display: inline-block;
    margin-left: 3px;
}

.form-control:focus {
    border-color: #FF5757;
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 87, 0.75);
}

@keyframes bounceScale {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.25);
    }

    60% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.bounce-scale {
    animation: bounceScale 0.6s ease;
}