﻿.red { color: #ff0418; }

.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.center { text-align: center; }

html, body {
    overflow-x: hidden;
}


/* Custom Containers */
.c-container-lg {
    max-width: 1900px;
    margin: 0 auto
}

.c-container-md {
    max-width: 1500px;
    margin: 0 auto
}

.c-container-sm {
    max-width: 1000px;
    margin: 0 auto
}


/* loader */
.loader {
    display: none;
    align-items: center;
    background: rgb(23, 22, 22);
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.3s linear;
    width: 100%;
    z-index: 9999;
    background-color: #dcdcdc;
    opacity: .7;
}

    .loader div {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%);
    }

        .loader div img {
            width: 150px;
        }


/* Scroll to Top Button */
.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ff0418;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.5s;
    opacity: .5;
}

    .scroll-to-top:hover {
        background-color: #ff0418;
        opacity: 1;
    }

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 15px;
}

    footer img {
        max-width: 120px;
        margin-bottom: 10px;
    }