/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

img.animated.pulse {
    animation-duration: 5s;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 95px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 45px;
    padding: 0;
    color: #211e1e;
    font-weight: 400;
    transition: .5s;
    outline: none;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 20px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #db001c;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: white;
        box-shadow: 0 0 35px rgba(144, 188, 121, .25);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Hero Header ***/
.hero-header {
    position: relative;
    margin-top: -85px;
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.hero-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.hero-header .container {
    position: relative;
    z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
}

/*** Feature ***/
.feature-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.feature-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}

/*** Deal ***/
.deal {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.deal::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.deal .bg-white {
    position: relative;
    z-index: 1;
}

.deal .cdt span {
    display: block;
    font-size: 16px;
    font-style: italic;
    font-weight: 200;
    text-transform: capitalize;
}

/*** How To Use ***/
.how-to-use {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.how-to-use::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.how-to-use .container {
    position: relative;
    z-index: 1;
}

.how-to-use .border {
    border-color: rgba(255, 255, 255, .2) !important;
}

/*** Product ***/
.product-item {
    transition: .1s;
}

.product-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.product-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Testimonial ***/
.testimonial {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.testimonial::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.testimonial .testimonial-carousel {
    position: relative;
    z-index: 1;
}

.testimonial-item h3 {
    font-family: "New Amsterdam", sans-serif;
    font-size: 45px;
    margin-bottom: 5px;
    margin-top: 15px;
}

.testimonial-item p { color: #595a5c; font-size: 18px; margin-bottom: 5px;}

/*** Blog ***/
.blog-item {
    transition: .1s;
}

.blog-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.blog-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Contact ***/
.contact-info-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.contact-info-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}

/*** Newsletter ***/
.newsletter {
    position: relative;
}

.newsletter::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

/* .newsletter .form-control {
    background: rgba(255, 255, 255, .3);
} */

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--bs-body);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 3px solid var(--bs-light);
}

.footer .copyright a {
    color: var(--bs-body);
}

.footer .copyright a:hover {
    color: var(--bs-primary);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 3px solid var(--bs-light);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.barlow-condensed-regular {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hero-header h1 {
    font-family: "New Amsterdam", sans-serif;
    font-weight: 400;
    font-size: 75px;
}
.hero-header h1 span { color: #db001c;}

h1 { 
    font-family: "New Amsterdam", sans-serif;
    font-weight: 400;
    font-size: 60px;
}

.hero-header p {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
    font-size: 36px;
}

p {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #595a5c;
}

.btn-dark {
    color: #fff;
    background-color: #db001c;
    border-color: #db001c;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 300;
    font-size: 24px;
}
.btn-dark:hover {
    color: #fff;
    background-color: #1f1f1f;
    border-color: #1f1f1f;
}

.btn-text {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    color: #db001c;
    font-size: 20px;
    text-decoration: none;
}

.about h1 { position: relative;}
.about h1::before {
    content: "";
    width: 153px;
    height: 115px;
    background: url(../img/icon.png);
    display: block;
    position: absolute;
    top: -80px;
    left: -50px;
}

.hero-header {
    margin-top: auto;
    background: url(../img/banner.jpg) center center no-repeat;
    padding-top: 90px;
}

.events {
    background: url(../img/event-bg.jpg) center center no-repeat;
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 15px;
}

.parallax {
    background: url(../img/parallax.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 475px;
    display: flex;
    align-items: center;
}
.parallax h1 { font-size: 75px;}

.news h5 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 5px;
}
.news p {
    color: #595a5c;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    text-transform: none;
}

.footer {
    background: url(../img/footer-bg.jpg) center center no-repeat;
    background-size: cover;
    min-height: 488px;
    padding-top: 100px;
    /* display: flex;
    align-items: center; */
}

.footer p {
    color: #ffffff;
    font-weight: 400 !important;
    font-size: 18px;
}

.footer h5 {
    font-family: "New Amsterdam", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 36px;
}

.footer .btn.btn-link:hover { letter-spacing: normal;}

.footer .btn-outline-primary {
    color: #ffffff;
    border-color: #000000;
    background: #000000;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer .btn.btn-link {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    color: #ffffff;
}
.footer .btn.btn-link:hover {
    color: antiquewhite;
}

.newsletter {
    background: #db001c;
    height: 130px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    bottom: -65px;
}

.newsletter p {
    color: antiquewhite;
    font-size: 24px;
}

.form-control::-webkit-input-placeholder {
    font-family: "Space Grotesk", sans-serif !important;
    font-weight: 400;
    font-size: 18px;
}

.owl-dots { display: none;}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: inline-block;
    position: absolute;
    top: -172px;
    right: 0;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    font-size: 100px;
    opacity: 0.5;
}

.owl-carousel .owl-nav button.owl-prev { margin-right: 30px;}

.vm .bg-grey {
    background: #f6f6f6;
    border-radius: 5px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    padding: 25px 30px;
    border: 1px solid #d7d7d7;
}
.vm .bg-grey h2 {
    font-family: "New Amsterdam", sans-serif;
    font-size: 45px;
    opacity: 0.7;
}

.text-red, .form-wrap p span { color: #db001c;}

.tickets h2 { color: #494949; font-family: "Space Grotesk", sans-serif; font-size: 30px; font-weight: 400;}
.tickets h3 { font-family: "Space Grotesk", sans-serif; font-size: 24px; font-weight: 400; margin-bottom: 30px;}

@media only screen and (max-width: 600px) {
    .newsletter {
        width: 90%;
        margin: 0 auto;
    }
    .newsletter p {
        font-size: 18px;
        text-align: center;
    }
}