/*--------------------------------------------------------------
 # General
 --------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    background: #0c0c0c;
}

a {
    color: #cc1616;
    text-decoration: none;
}

a:hover {
    color: #e82d2d;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
 # Back to top button
 --------------------------------------------------------------*/
a.back-to-top {
    position: fixed;
    z-index: 999;
    right: 12px;
    bottom: 12px;
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 0;
    background: #cc1616 url('/images/up-arrow.png') no-repeat center 47%;
    background-size: 18px 18px;
    text-indent: -9999px;
}

/*--------------------------------------------------------------
 # Preloader
 --------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #cc1616;
    border-top-color: #efefef;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
 # Disable aos animation delay on mobile devices
 --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
 # Header
 --------------------------------------------------------------*/
#header {
    background: rgba(25, 25, 25, 0.95);
    transition: all 0.5s;
    z-index: 997;
    height: 70px;
}

#header.fixed-top {
    background: #191919;
}

#header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 52px;
    margin-right: 5px;
}

.scrolled-offset {
    margin-top: 70px;
}

/**
* Desktop Navigation
*/
#header .navbar {
    padding: 0 5px;
}

#header .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

#header .navbar li {
    position: relative;
}

#header .navbar>ul>li {
    margin-left: 5px;
}

#header .navbar a,
#header .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px 24px 15px;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

#header .navbar a i,
#header .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

#header .navbar a:hover,
#header .navbar .active,
#header .navbar .active:focus,
#header .navbar li:hover>a {
    background: #cc1616;
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #cc1616;
}

@media (max-width: 991px) {
    #header .logo img {
        max-height: 24px;
    }

    #header .logo {
        font-size: 22px;
    }

    #header .mobile-nav-toggle {
        display: block;
    }

    #header .navbar ul {
        display: none;
    }
}

#header .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

#header .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

#header .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

#header .navbar-mobile a,
#header .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #191919;
}

#header .navbar-mobile a:hover,
#header .navbar-mobile .active,
#header .navbar-mobile li:hover>a {
    color: #cc1616;
    background: none;
}

/*--------------------------------------------------------------
 # Heading Section
 --------------------------------------------------------------*/
#heading {
    width: 100%;
    height: 240px;
    /*background: url("../img/hero-bg.jpg") top center;*/
    background: rgba(255, 255, 255, 0.25);
    background-size: cover;
    position: relative;
}

#heading:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#heading h1 {
    margin-bottom: 6px;
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    /*text-transform: uppercase;*/
    color: #fff;
}

#heading h2 {
    color: #eee;
    margin-bottom: 12px;
    font-size: 18px;
}

#heading .btn-get-started {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 10px 28px;
    transition: 0.5s;
    border: 2px solid #fff;
    color: #fff;
}

#heading .btn-get-started:hover {
    background: #cc1616;
    border-color: #cc1616;
}

@media (min-width: 1024px) {
    #heading {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #heading {
        text-align: center;
    }

    #heading .container {
        padding-top: 40px;
    }

    #heading h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #heading h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
 # Footer
 --------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    padding-top: 60px;
    height: 280px;
}

#footer .copyright {
    border-top: 1px solid #262626;
    text-align: center;
    padding-top: 10px;
}

/*--------------------------------------------------------------
 # Content
 --------------------------------------------------------------*/

#main {
    min-height: calc(100vh - 590px);
    padding: 3rem 0;
    background: #fff;
}

.badge-rating .rating-container {
    height: 13px;
}
.badge-rating .rating-container .rating-stars {
    margin-top: -2px;
    height: 20.4px !important;
}

.badge-rating .rating-xs {
    font-size: 9px;
}

.post-preview a {
    text-decoration: none;
    color: inherit;
}

.post-preview .post-title {
    /*color: inherit;*/
    color: #cc1616;
    font: 600 1.75rem/2.375rem "Poppins", sans-serif;
}

.post-preview .post-subtitle {
    color: inherit;
    font: inherit;
}

.meta {
    color: #777;
}
.meta a,
.post-meta a {
    color: #cc1616;
    font-style: italic;
}

/*--------------------------------------------------------------
 # Custom Vendors
 --------------------------------------------------------------*/

.form-control, .form-control-input, .form-control-select {
    border-radius: 0;
}

.btn {
    border-radius: 0;
}

/*.btn-primary {*/
/*    color: #fff;*/
/*    background-color: #b11313ff;*/
/*    border-color: #b11313ff;*/
/*}*/
/*.btn-primary:hover,*/
/*.btn-primary:active {*/
/*    background-color: #cc1616;*/
/*    border-color: #cc1616;*/
/*}*/
