﻿/*
  Theme Name: BizPage
  Theme URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
  Author: BootstrapMade.com
  License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html {
    width: 100%;
}

body {
    background: #fff;
    color: #666666;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    width: 100%;
}

a {
    color: #ef9c37;
    transition: 0.5s;
}

    a:hover,
    a:active,
    a:focus {
        color: #18d36e;
        outline: none;
        text-decoration: none;
    }

p {
    padding: 0;
    margin: 0 0 30px 0;
    font-size: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 25px 20px 0;
    padding: 0;
}


h6 {
    font-weight: bold;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #ef9c37;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

    .back-to-top i {
        padding-top: 12px;
        color: #fff;
    }

/* Prelaoder */

#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 #f2f2f2;
        border-top: 6px solid#ef9c37;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    padding: 15px 0;
    height: 92px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

    #header.header-scrolled {
        background: rgba(0, 0, 0, 0.9);
        padding: 15px 0;
        height: 80px;
        transition: all 0.5s;
    }

    #header #logo {
        float: left;
    }

        #header #logo h1 {
            font-size: 34px;
            margin: 0;
            padding: 0;
            line-height: 1;
            font-family: "Montserrat", sans-serif;
            font-weight: 700;
            letter-spacing: 3px;
        }

            #header #logo h1 a,
            #header #logo h1 a:hover {
                color: #fff;
                padding-left: 10px;
                border-left: 4px solid#ef9c37;
            }

        #header #logo img {
            padding: 0;
            padding-top: -15px;
            margin: 0;
        }

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
    display: table;
    width: 100%;
    height: 100vh;
    background: #000;
}

    #intro .carousel-item {
        width: 100%;
        height: 100vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

        #intro .carousel-item::before {
            content: '';
            background-color: rgba(0, 0, 0, 0.7);
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
        }

    #intro .carousel-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #intro .carousel-background img {
        max-width: 100%;
    }

    #intro .carousel-content {
        text-align: center;
    }

    #intro h2 {
        color: #fff;
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 48px;
        font-weight: 500;
    }

    #intro p {
        width: 80%;
        margin: 0 auto 30px auto;
        color: #fff;
    }

    #intro .carousel-fade {
        overflow: hidden;
    }

        #intro .carousel-fade .carousel-inner .carousel-item {
            transition-property: opacity;
        }

        #intro .carousel-fade .carousel-inner .carousel-item,
        #intro .carousel-fade .carousel-inner .active.carousel-item-left,
        #intro .carousel-fade .carousel-inner .active.carousel-item-right {
            opacity: 0;
        }

        #intro .carousel-fade .carousel-inner .active,
        #intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
        #intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
            opacity: 1;
            transition: 0.5s;
        }

            #intro .carousel-fade .carousel-inner .carousel-item-next,
            #intro .carousel-fade .carousel-inner .carousel-item-prev,
            #intro .carousel-fade .carousel-inner .active.carousel-item-left,
            #intro .carousel-fade .carousel-inner .active.carousel-item-right {
                left: 0;
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }

    #intro .carousel-control-prev,
    #intro .carousel-control-next {
        width: 10%;
    }

    #intro .carousel-control-next-icon,
    #intro .carousel-control-prev-icon {
        background: none;
        font-size: 32px;
        line-height: 1;
    }

    #intro .carousel-indicators li {
        cursor: pointer;
    }

    #intro .btn-get-started {
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 32px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px;
        color: #fff;
        background: #ef9c37;
    }

        #intro .btn-get-started:hover {
            background: #fff;
            color: #ef9c37;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-menu ul {
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        z-index: 99;
    }

    .nav-menu li {
        position: relative;
        white-space: nowrap;
    }

    .nav-menu > li {
        float: left;
    }

    .nav-menu li:hover > ul,
    .nav-menu li.sfHover > ul {
        display: block;
    }

    .nav-menu ul ul {
        top: 0;
        left: 100%;
    }

    .nav-menu ul li {
        min-width: 180px;
    }

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

    .sf-arrows .sf-with-ul:after {
        content: "\f078";
        position: absolute;
        right: 15px;
        font-family: 'Font Awesome 5 Free';
        /*  font-family: FontAwesome;*/
        font-style: normal;
        font-weight: normal;
        font-weight: 900;
    }

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* Nav Menu Container */

#nav-menu-container {
    float: right;
    margin: 0;
    padding-right: 60px;
}

/* Nav Meu Styling */

.nav-menu a {
    padding: 0 8px 10px 8px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: lowercase;
    outline: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
    color: #ef9c37;
}

.nav-menu i {
    color: white;
}

.nav-menu > li {
    margin-left: 10px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

    .nav-menu ul li {
        transition: 0.3s;
    }

        .nav-menu ul li a {
            padding: 10px;
            color: #333;
            transition: 0.3s;
            display: block;
            font-size: 13px;
            text-transform: none;
        }

        .nav-menu ul li:hover > a {
            color: #ef9c37;
        }

    .nav-menu ul ul {
        margin: 0;
    }

/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

    #mobile-nav-toggle i {
        color: #fff;
    }

/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.8);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

    #mobile-nav ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        #mobile-nav ul li {
            position: relative;
        }

            #mobile-nav ul li a {
                color: #fff;
                font-size: 13px;
                text-transform: uppercase;
                overflow: hidden;
                padding: 10px 22px 10px 15px;
                position: relative;
                text-decoration: none;
                width: 100%;
                display: block;
                outline: none;
                font-weight: 700;
                font-family: "Montserrat", sans-serif;
            }

                #mobile-nav ul li a:hover {
                    color: #ef9c37;
                }

            #mobile-nav ul li li {
                padding-left: 30px;
            }

            #mobile-nav ul li.menu-active a {
                color: #ef9c37;
            }

        #mobile-nav ul .menu-has-children i {
            position: absolute;
            right: 0;
            z-index: 99;
            padding: 15px;
            cursor: pointer;
            color: #fff;
        }

            #mobile-nav ul .menu-has-children i.-fa-chevron-up {
                color: #ef9c37;
            }

        #mobile-nav ul .menu-has-children li a {
            text-transform: none;
        }

        #mobile-nav ul .menu-item-active {
            color: #ef9c37;
        }

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
    overflow: hidden;
}

    body.mobile-nav-active #mobile-nav {
        left: 0;
    }

    body.mobile-nav-active #mobile-nav-toggle {
        color: #fff;
    }

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

    .section-header h3::before {
        content: '';
        position: absolute;
        display: block;
        width: 120px;
        height: 1px;
        background: #ddd;
        bottom: 1px;
        left: calc(50% - 60px);
    }

    .section-header h3::after {
        content: '';
        position: absolute;
        display: block;
        width: 40px;
        height: 3px;
        background: #ef9c37;
        bottom: 0;
        left: calc(50% - 20px);
    }

.section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #333;
    font-weight: 300;
    text-transform: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

/* Section with background
--------------------------------*/

.section-bg {
    background: #f7f7f7;
}

.section-bg-black {
    background: #000;
    color: white;
}

    .section-bg-black h3 {
        background: #000;
        color: white;
    }


/* Featured Services Section
--------------------------------*/

#featured-services {
    background: #000;
}

    #featured-services .box {
        padding: 30px 20px;
    }

    #featured-services .box-bg {
        background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
    }

    #featured-services i {
        color: #ef9c37;
        font-size: 48px;
        display: inline-block;
        line-height: 1;
    }

    #featured-services h4 {
        font-weight: 400;
        margin: 15px 0;
        font-size: 18px;
    }

        #featured-services h4 a {
            color: #fff;
        }

            #featured-services h4 a:hover {
                color: #ef9c37;
            }

    #featured-services p {
        font-size: 14px;
        line-height: 24px;
        color: #fff;
        margin-bottom: 0;
    }

/* About Us Section
--------------------------------*/

#about {
    background: url("../img/about-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 0 0;
    position: relative;
}

    #about::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.92);
        z-index: 9;
    }

    #about .container {
        position: relative;
        z-index: 10;
    }

    #about .about-col {
        background: #fff;
        border-radius: 0 0 4px 4px;
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
    }

        #about .about-col .img {
            position: relative;
        }

            #about .about-col .img img {
                border-radius: 4px 4px 0 0;
            }

        #about .about-col .icon {
            width: 64px;
            height: 64px;
            padding-top: 8px;
            text-align: center;
            position: absolute;
            background-color: #ef9c37;
            border-radius: 50%;
            text-align: center;
            border: 4px solid #fff;
            left: calc( 50% - 32px);
            bottom: -30px;
            transition: 0.3s;
        }

        #about .about-col i {
            font-size: 36px;
            line-height: 1;
            color: #fff;
            transition: 0.3s;
        }

        #about .about-col:hover .icon {
            background-color: #fff;
        }

        #about .about-col:hover i {
            color: #ef9c37;
        }

        #about .about-col h1 {
            color: #000;
            text-align: center;
            font-weight: 700;
            font-size: 20px;
            padding: 0;
            margin: 40px 0 12px 0;
        }

            #about .about-col h1 a {
                color: #000;
            }

                #about .about-col h1 a:hover {
                    color: #ef9c37;
                }

        #about .about-col p {
            font-size: 14px;
            line-height: 24px;
            color: #333;
            margin-bottom: 0;
            padding: 0 20px 20px 20px;
        }

/* Services Section
--------------------------------*/

#services {
    background: #fff;
    background-size: cover;
    padding: 0px 0 40px 0;
}

    #services .box {
        margin-bottom: 30px;
    }

    #services .icon {
        float: left;
    }

        #services .icon i {
            color: #ef9c37;
            font-size: 36px;
            line-height: 1;
            transition: 0.5s;
        }

    #services .title {
        margin-left: 60px;
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }

        #services .title a {
            color: #111;
        }

    #services .box:hover .title a {
        color: #ef9c37;
    }

    #services .description {
        font-size: 1.2em;
        font-weight: 400;
        margin-left: 60px;
        line-height: 24px;
        margin-bottom: 0;
    }

/* Call To Action Section
--------------------------------*/

#call-to-action {
    background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg2.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
}

    #call-to-action h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }

    #call-to-action p {
        color: #fff;
    }

    #call-to-action .cta-btn {
        font-family: "Montserrat", sans-serif;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 28px;
        border-radius: 25px;
        transition: 0.5s;
        margin-top: 10px;
        border: 2px solid #fff;
        color: #fff;
    }

        #call-to-action .cta-btn:hover {
            background: #ef9c37;
            border: 2px solid#ef9c37;
        }

/* Call To Action Section
--------------------------------*/

#skills {
    padding: 60px 0;
}

    #skills .progress {
        height: 35px;
        margin-bottom: 10px;
    }

        #skills .progress .skill {
            font-family: "Open Sans", sans-serif;
            line-height: 35px;
            padding: 0;
            margin: 0 0 0 20px;
            text-transform: uppercase;
        }

            #skills .progress .skill .val {
                float: right;
                font-style: normal;
                margin: 0 20px 0 0;
            }

    #skills .progress-bar {
        width: 1px;
        text-align: left;
        transition: .9s;
    }

/* Facts Section
--------------------------------*/

#facts {
    background: url("../img/facts-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 0 0;
    position: relative;
}

    #facts::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.88);
        z-index: 9;
    }

    #facts .container {
        position: relative;
        z-index: 10;
    }

    #facts .counters span {
        font-family: "Montserrat", sans-serif;
        font-weight: bold;
        font-size: 48px;
        display: block;
        color: #ef9c37;
    }

    #facts .counters p {
        padding: 0;
        margin: 0 0 20px 0;
        font-family: "Montserrat", sans-serif;
        font-size: 14px;
        color: #111;
    }

    #facts .facts-img {
        text-align: center;
        padding-top: 30px;
    }

/* Portfolio Section
--------------------------------*/

#portfolio {
    padding: 60px 0;
}

    #portfolio #portfolio-flters {
        padding: 0;
        margin: 5px 0 35px 0;
        list-style: none;
        text-align: center;
    }

        #portfolio #portfolio-flters li {
            cursor: pointer;
            margin: 15px 15px 15px 0;
            display: inline-block;
            padding: 10px 20px;
            font-size: 12px;
            line-height: 20px;
            color: #666666;
            border-radius: 4px;
            text-transform: uppercase;
            background: #fff;
            margin-bottom: 5px;
            transition: all 0.3s ease-in-out;
        }

            #portfolio #portfolio-flters li:hover,
            #portfolio #portfolio-flters li.filter-active {
                background: #ef9c37;
                color: #fff;
            }

            #portfolio #portfolio-flters li:last-child {
                margin-right: 0;
            }

    #portfolio .portfolio-wrap {
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
    }

        #portfolio .portfolio-wrap:hover {
            box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
        }

    #portfolio .portfolio-item {
        position: relative;
        height: 360px;
        overflow: hidden;
    }

        #portfolio .portfolio-item figure {
            background: #000;
            overflow: hidden;
            height: 240px;
            position: relative;
            border-radius: 4px 4px 0 0;
            margin: 0;
        }

            #portfolio .portfolio-item figure:hover img {
                opacity: 0.4;
                transition: 0.3s;
            }

            #portfolio .portfolio-item figure .link-preview,
            #portfolio .portfolio-item figure .link-details {
                position: absolute;
                display: inline-block;
                opacity: 0;
                line-height: 1;
                text-align: center;
                width: 36px;
                height: 36px;
                background: #fff;
                border-radius: 50%;
                transition: 0.2s linear;
            }

                #portfolio .portfolio-item figure .link-preview i,
                #portfolio .portfolio-item figure .link-details i {
                    padding-top: 6px;
                    font-size: 22px;
                    color: #333;
                }

                #portfolio .portfolio-item figure .link-preview:hover,
                #portfolio .portfolio-item figure .link-details:hover {
                    background: #ef9c37;
                }

                    #portfolio .portfolio-item figure .link-preview:hover i,
                    #portfolio .portfolio-item figure .link-details:hover i {
                        color: #fff;
                    }

            #portfolio .portfolio-item figure .link-preview {
                left: calc(50% - 38px);
                top: calc(50% - 18px);
            }

            #portfolio .portfolio-item figure .link-details {
                right: calc(50% - 38px);
                top: calc(50% - 18px);
            }

            #portfolio .portfolio-item figure:hover .link-preview {
                opacity: 1;
                left: calc(50% - 44px);
            }

            #portfolio .portfolio-item figure:hover .link-details {
                opacity: 1;
                right: calc(50% - 44px);
            }

        #portfolio .portfolio-item .portfolio-info {
            background: #fff;
            text-align: center;
            padding: 30px;
            height: 90px;
            border-radius: 0 0 3px 3px;
        }

            #portfolio .portfolio-item .portfolio-info h4 {
                font-size: 18px;
                font-weight: 700;
                margin-bottom: 18px;
                padding-bottom: 0;
            }

                #portfolio .portfolio-item .portfolio-info h4 a {
                    color: #333;
                }

                    #portfolio .portfolio-item .portfolio-info h4 a:hover {
                        color: #ef9c37;
                    }

            #portfolio .portfolio-item .portfolio-info p {
                padding: 0;
                margin: 0;
                color: #b8b8b8;
                font-weight: 500;
                font-size: 14px;
                text-transform: uppercase;
            }

/* Clients Section
--------------------------------*/

#clients {
    padding: 20px 0;
}

    #clients img {
        max-width: 100%;
        opacity: 0.5;
        transition: 0.3s;
        padding: 15px 0;
    }

        #clients img:hover {
            opacity: 1;
        }

    #clients .owl-nav,
    #clients .owl-dots {
        margin-top: 5px;
        text-align: center;
    }

    #clients .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
    }

        #clients .owl-dot.active {
            background-color: #ef9c37;
        }

/* Testimonials Section
--------------------------------*/

#testimonials {
    padding: 60px 0;
}

    #testimonials .section-header {
        margin-bottom: 40px;
    }

    #testimonials .testimonial-item {
        text-align: center;
    }

        #testimonials .testimonial-item .testimonial-img {
            width: 120px;
            border-radius: 50%;
            border: 4px solid #fff;
            margin: 0 auto;
        }

        #testimonials .testimonial-item h1 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
            color: #111;
        }

        #testimonials .testimonial-item h4 {
            font-size: 14px;
            color: #999;
            margin: 0 0 15px 0;
        }

        #testimonials .testimonial-item .quote-sign-left {
            margin-top: -15px;
            padding-right: 10px;
            display: inline-block;
            width: 37px;
        }

        #testimonials .testimonial-item .quote-sign-right {
            margin-bottom: -15px;
            padding-left: 10px;
            display: inline-block;
            max-width: 100%;
            width: 37px;
        }

        #testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
        }

    #testimonials .owl-nav,
    #testimonials .owl-dots {
        margin-top: 5px;
        text-align: center;
    }

    #testimonials .owl-dot {
        display: inline-block;
        margin: 0 5px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
    }

        #testimonials .owl-dot.active {
            background-color: #ef9c37;
        }

/* Team Section
--------------------------------*/

/*#team {
  background: #fff;
  padding: 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color:#ef9c37;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}*/


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    position: relative;
}

    .team .container {
        position: relative;
        z-index: 10;
    }

    .team .member {
        margin-bottom: 80px;
        position: relative;
    }

        .team .member .pic {
            overflow: hidden;
        }

        .team .member .member-info {
            position: absolute;
            bottom: -90px;
            left: 20px;
            right: 20px;
            background: #fff;
            padding: 20px 15px;
            color: #15222b;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: 0.5s;
            min-height: 100px;
        }

        .team .member h4 {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 16px;
            color: #15222b;
            color: #ef9c37;
            position: relative;
            padding-bottom: 10px;
        }

            .team .member h4::after {
                content: '';
                position: absolute;
                display: block;
                width: 100%;
                height: 2px;
                background: #7fa5c0;
                bottom: 0;
                left: 0;
            }

        .team .member span {
            font-style: italic;
            display: block;
            font-size: 13px;
            height: 50px;
        }

        .team .member .social {
            position: absolute;
            right: 15px;
            bottom: 15px;
        }

            .team .member .social a {
                transition: color 0.3s;
                color: #477392;
            }

                .team .member .social a:hover {
                    color: #ff4a17;
                }

            .team .member .social i {
                font-size: 16px;
                margin: 0 2px;
            }

@media (max-width: 992px) {
    .team .member {
        margin-bottom: 110px;
    }
}



/* Contact Section
--------------------------------*/

#contact {
    padding: 60px 0;
}

    #contact .contact-info {
        margin-bottom: 20px;
        text-align: center;
    }

        #contact .contact-info i {
            font-size: 48px;
            display: inline-block;
            margin-bottom: 10px;
            color: #ef9c37;
        }

        #contact .contact-info address,
        #contact .contact-info p {
            margin-bottom: 0;
            color: #000;
        }

        #contact .contact-info h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: bold;
            text-transform: uppercase;
            color: #999;
        }

        #contact .contact-info a {
            color: #000;
        }

            #contact .contact-info a:hover {
                color: #ef9c37;
            }

    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        margin-bottom: 20px;
    }

    #contact .form #sendmessage {
        color: #ef9c37;
        border: 1px solid#ef9c37;
        display: none;
        text-align: center;
        padding: 15px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    #contact .form #errormessage {
        color: red;
        display: none;
        border: 1px solid red;
        text-align: center;
        padding: 15px;
        font-weight: 600;
        margin-bottom: 15px;
    }

        #contact .form #sendmessage.show,
        #contact .form #errormessage.show,
        #contact .form .show {
            display: block;
        }


    #contact .form .validation {
        color: red;
        display: none;
        margin: 0 0 20px;
        font-weight: 400;
        font-size: 13px;
    }

    #contact .form input,
    #contact .form textarea {
        padding: 10px 14px;
        border-radius: 0;
        box-shadow: none;
        font-size: 15px;
    }

    #contact .form button[type="submit"] {
        background: #ef9c37;
        border: 0;
        padding: 10px 30px;
        color: #fff;
        transition: 0.4s;
        cursor: pointer;
    }

        #contact .form button[type="submit"]:hover {
            background: #13a456;
        }




/* Log In Section
--------------------------------*/

#login {
    background: url("../img/about-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
}

    #login::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.92);
        z-index: 9;
    }

    #login .container {
        position: relative;
        z-index: 10;
    }

    #login .about-col {
        background: #fff;
        border-radius: 0 0 4px 4px;
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
    }

        #login .about-col .img {
            position: relative;
        }

            #login .about-col .img img {
                border-radius: 4px 4px 0 0;
            }

        #login .about-col .icon {
            width: 64px;
            height: 64px;
            padding-top: 8px;
            text-align: center;
            position: absolute;
            background-color: #ef9c37;
            border-radius: 50%;
            text-align: center;
            border: 4px solid #fff;
            left: calc( 50% - 32px);
            bottom: -30px;
            transition: 0.3s;
        }

        #login .about-col i {
            font-size: 36px;
            line-height: 1;
            color: #fff;
            transition: 0.3s;
        }

        #login .about-col:hover .icon {
            background-color: #fff;
        }

        #login .about-col:hover i {
            color: #ef9c37;
        }

        #login .about-col h2 {
            color: #000;
            text-align: center;
            font-weight: 700;
            font-size: 20px;
            padding: 0;
            margin: 40px 0 12px 0;
        }

            #login .about-col h2 a {
                color: #000;
            }

                #login .about-col h2 a:hover {
                    color: #ef9c37;
                }

        #login .about-col p {
            font-size: 14px;
            line-height: 24px;
            color: #333;
            margin-bottom: 0;
            padding: 0 20px 20px 20px;
        }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #000;
    padding: 0 0 30px 0;
    color: #eee;
    font-size: 14px;
}

    #footer .footer-top {
        background: #111;
        padding: 60px 0 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 34px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 10px;
                line-height: 1;
                font-family: "Montserrat", sans-serif;
                font-weight: 700;
                letter-spacing: 3px;
                border-left: 4px solid#ef9c37;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Montserrat", sans-serif;
                color: #eee;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #333;
            color: #eee;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #ef9c37;
                color: #fff;
            }

        #footer .footer-top h4 {
            font-size: 14px;
            font-weight: bold;
            color: #fff;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 12px;
        }

            #footer .footer-top h4::before,
            #footer .footer-top h4::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                height: 2px;
            }

            #footer .footer-top h4::before {
                right: 0;
                background: #555;
            }

            #footer .footer-top h4::after {
                background: #ef9c37;
                width: 60px;
            }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 8px;
                    color: #ddd;
                }

                #footer .footer-top .footer-links ul li {
                    border-bottom: 1px solid #333;
                    padding: 10px 0;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: #eee;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #ef9c37;
                    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact p {
                line-height: 26px;
            }

        #footer .footer-top .footer-newsletter {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-newsletter input[type="email"] {
                border: 0;
                padding: 6px 8px;
                width: 65%;
            }

            #footer .footer-top .footer-newsletter input[type="submit"] {
                background: #ef9c37;
                border: 0;
                width: 35%;
                padding: 6px 0;
                text-align: center;
                color: #fff;
                transition: 0.3s;
                cursor: pointer;
            }

                #footer .footer-top .footer-newsletter input[type="submit"]:hover {
                    background: #13a456;
                }

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        text-align: center;
        font-size: 13px;
        color: #ddd;
    }

    #footer a {
        color: #eee;
    }

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 768px) {
    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        padding: 20px 0;
    }

    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}

@media (min-width: 992px) {
    #testimonials .testimonial-item p {
        width: 80%;
    }
}


/*@media (max-width: 1115px) {*/
/*   Turn the burger on*/
/*#nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: inline;
    }


}*/


@media (min-width: 1024px) {
    #header #logo {
        padding-left: 60px;
    }

    #intro p {
        width: 60%;
    }

    #intro .carousel-control-prev,
    #intro .carousel-control-next {
        width: 5%;
    }

    #nav-menu-container {
        padding-right: 60px;
    }
}

@media (max-width: 1115px) {


    #nav-menu-container {
        display: none;
    }

    #mobile-nav-toggle {
        display: inline;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }

    #header #logo h1 {
        font-size: 28px;
    }

    #header #logo img {
        padding-left: 5px;
        max-height: 40px;
    }

    #intro h2 {
        font-size: 28px;
    }
}

/* Information Page Section
--------------------------------*/

#informationPage {
    background: url("../img/about-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
}

    #informationPage::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        /* background: rgba(255, 255, 255, 0); */
        z-index: 9;
    }

    #informationPage .container {
        position: relative;
        z-index: 10;
    }

    #informationPage .about-col {
        background: #fff;
        border-radius: 0 0 4px 4px;
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
    }

        #informationPage .about-col .img {
            position: relative;
        }

            #informationPage .about-col .img img {
                border-radius: 4px 4px 0 0;
            }

        #informationPage .about-col .icon {
            width: 64px;
            height: 64px;
            padding-top: 8px;
            text-align: center;
            position: absolute;
            background-color: #ef9c37;
            border-radius: 50%;
            text-align: center;
            border: 4px solid #fff;
            left: calc( 50% - 32px);
            bottom: -30px;
            transition: 0.3s;
        }

        #informationPage .about-col i {
            font-size: 36px;
            line-height: 1;
            color: #fff;
            transition: 0.3s;
        }

        #informationPage .about-col:hover .icon {
            background-color: #fff;
        }

        #informationPage .about-col:hover i {
            color: #ef9c37;
        }

        #informationPage .about-col h2 {
            color: #000;
            text-align: center;
            font-weight: 700;
            font-size: 20px;
            padding: 0;
            margin: 40px 0 12px 0;
        }

            #informationPage .about-col h2 a {
                color: #000;
            }

                #informationPage .about-col h2 a:hover {
                    color: #ef9c37;
                }

        #informationPage .about-col p {
            font-size: 14px;
            line-height: 24px;
            color: #333;
            margin-bottom: 0;
            padding: 0 20px 20px 20px;
        }


/* Privacy Page Section
--------------------------------*/

#privacy {
    background: url("../img/privacy-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 100px 0 40px 0;
    position: relative;
}

    #privacy::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.69);
        z-index: 9;
    }

    #privacy .container {
        position: relative;
        z-index: 10;
    }

    #privacy .privacy-col {
        background: #fff;
        border-radius: 0 0 4px 4px;
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
    }

        #privacy .privacy-col .img {
            position: relative;
        }

            #privacy .privacy-col .img img {
                border-radius: 4px 4px 0 0;
            }

        #privacy .privacy-col .icon {
            width: 64px;
            height: 64px;
            padding-top: 8px;
            text-align: center;
            position: absolute;
            background-color: #ef9c37;
            border-radius: 50%;
            text-align: center;
            border: 4px solid #fff;
            left: calc( 50% - 32px);
            bottom: -30px;
            transition: 0.3s;
        }

        #privacy .privacy-col i {
            font-size: 36px;
            line-height: 1;
            color: #fff;
            transition: 0.3s;
        }

        #privacy .privacy-col:hover .icon {
            background-color: #fff;
        }

        #privacy .privacy-col:hover i {
            color: #ef9c37;
        }

        #privacy .privacy-col h2 {
            color: #000;
            text-align: center;
            font-weight: 700;
            font-size: 20px;
            padding: 0;
            margin: 40px 0 12px 0;
        }

            #privacy .privacy-col h2 a {
                color: #000;
            }

                #privacy .privacy-col h2 a:hover {
                    color: #ef9c37;
                }

        #privacy .privacy-col p {
            font-size: 14px;
            line-height: 24px;
            color: #333;
            margin-bottom: 0;
            padding: 0 20px 20px 20px;
        }


/* Terms & Conditions Page Section
--------------------------------*/

#terms {
    background: url("../img/terms-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 100px 0 40px 0;
    position: relative;
}

    #terms::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.69);
        z-index: 9;
    }

    #terms .container {
        position: relative;
        z-index: 10;
    }

    #terms .terms-col {
        background: #fff;
        border-radius: 0 0 4px 4px;
        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
    }

        #terms .terms-col .img {
            position: relative;
        }

            #terms .terms-col .img img {
                border-radius: 4px 4px 0 0;
            }

        #terms .terms-col .icon {
            width: 64px;
            height: 64px;
            padding-top: 8px;
            text-align: center;
            position: absolute;
            background-color: #ef9c37;
            border-radius: 50%;
            text-align: center;
            border: 4px solid #fff;
            left: calc( 50% - 32px);
            bottom: -30px;
            transition: 0.3s;
        }

        #terms .terms-col i {
            font-size: 36px;
            line-height: 1;
            color: #fff;
            transition: 0.3s;
        }

        #terms .terms-col:hover .icon {
            background-color: #fff;
        }

        #terms .terms-col:hover i {
            color: #ef9c37;
        }

        #terms .terms-col h2 {
            color: #000;
            text-align: center;
            font-weight: 700;
            font-size: 20px;
            padding: 0;
            margin: 40px 0 12px 0;
        }

            #terms .terms-col h2 a {
                color: #000;
            }

                #terms .terms-col h2 a:hover {
                    color: #ef9c37;
                }

        #terms .terms-col p {
            font-size: 14px;
            line-height: 24px;
            color: #333;
            margin-bottom: 0;
            padding: 0 20px 20px 20px;
        }



/* Intro Video Section
--------------------------------*/

.videoContainer {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16 x 9 video ratio */
    position: relative;
    background-color: lightyellow;
    text-align: center;
}

    .videoContainer iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .videoContainer img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-align: center;
    }

.videoContainder .border {
    border: 5px solid red;
}

#introvideo .section-header {
    margin-bottom: 40px;
}

#introvideo .testimonial-item {
    text-align: center;
}

    #introvideo .testimonial-item .testimonial-img {
        width: 120px;
        border-radius: 50%;
        border: 4px solid #fff;
        margin: 0 auto;
    }

    #introvideo .testimonial-item h3 {
        font-size: 20px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #111;
    }

    #introvideo .testimonial-item h4 {
        font-size: 14px;
        color: #999;
        margin: 0 0 15px 0;
    }

    #introvideo .testimonial-item .quote-sign-left {
        margin-top: -15px;
        padding-right: 10px;
        display: inline-block;
        width: 37px;
    }

    #introvideo .testimonial-item .quote-sign-right {
        margin-bottom: -15px;
        padding-left: 10px;
        display: inline-block;
        max-width: 100%;
        width: 37px;
    }

    #introvideo .testimonial-item p {
        font-style: italic;
        margin: 0 auto 15px auto;
    }

#introvideo .owl-nav,
#introvideo .owl-dots {
    margin-top: 5px;
    text-align: center;
}

#introvideo .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

    #introvideo .owl-dot.active {
        background-color: #ef9c37;
    }

.subTitle {
    text-align: center;
    color: black;
    font-weight: 400;
    font-size: 1.6em;
    line-height: 1.5em;
}



.callToActionButton {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 12px 24px;
    border: 1px solid #a12727;
    border-radius: 8px;
    background: #ff4a4a;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff4a4a), to(#992727));
    background: -moz-linear-gradient(top, #ff4a4a, #992727);
    background: linear-gradient(to bottom, #ff4a4a, #992727);
    -webkit-box-shadow: #ff5959 0px 0px 40px 0px;
    -moz-box-shadow: #ff5959 0px 0px 40px 0px;
    box-shadow: #ff5959 0px 0px 40px 0px;
    text-shadow: #591717 1px 1px 1px;
    font: normal normal bold 20px arial;
    color: #ffffff;
    text-decoration: none;
}

    .callToActionButton:hover,
    .callToActionButton:focus {
        background: #ff5959;
        background: -webkit-gradient(linear, left top, left bottom, from(#ff5959), to(#b62f2f));
        background: -moz-linear-gradient(top, #ff5959, #b62f2f);
        background: linear-gradient(to bottom, #ff5959, #b62f2f);
        color: #ffffff;
        text-decoration: none;
    }

    .callToActionButton:active {
        background: #982727;
        background: -webkit-gradient(linear, left top, left bottom, from(#982727), to(#982727));
        background: -moz-linear-gradient(top, #982727, #982727);
        background: linear-gradient(to bottom, #982727, #982727);
    }

    .callToActionButton:before {
        content: "\0000a0";
        display: inline-block;
        height: 24px;
        width: 24px;
        line-height: 24px;
        margin: 0 4px -6px -4px;
        position: relative;
        top: 0px;
        left: 0px;
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAEyUlEQVRIia2VWWxUVRjHf3eZdtpO22mBllLoxmJlqYQoYGgCQRQTECsEeYFEARMNlAhqDMENH/TBGE0gMUaECIlRHwgoS9WoUJo2NlBDF1onZeje6Uw7nX3mTu/c48O9YG3ApAlf8uXmnnvO//8t/3M/hWlazQIKquew6tFcZsgpYiMaieli/K9dfb3wlBi+JoT7oghc/VhrO/78tR92pO8usmN/KAS/HJjzvYgOCBHuFyIyIETMI8RQvXCfeKHz8/VUT90vT5tBGJAMgBaExDjEfJDmpHzrR5V73//gtzPbM3dP3q5On0CAFoKUAYi7iwBkLdyQtm2/8WUg/KGnto5LAMp08Xc9JrbPd0aWoI1Cei4YE6AnQI+DHsfmnCfPzY48/WfT3yf7o8SVqpk41hazoMPP2KSQHmhbyie2Z/lal0Q66pHddaTl54M9zyRIxUGPkT27JGt2oDH1bUvid+V4jXTgyOFd5/aunbXnpRXyyo0lodxkTES7/Izfj7C6lLU5dpbaVGyJhEbK3UxmUTGoGRaBpVrNO+/E5f4vpDPbOLrzwL73cJSaeMkAEz630d/f2xMaHmh0uwd/PtksGi9247Y48iWJssoZVL7yOC9vWsj6ueVFcmb1q2Ck7oWUHGlnY+3ZZWpcI8W4G2QHYABgyyuRK/LLKlhuVCxPBXdufrHPGBga6o74hhvaXb5fv2qg4UovLYfquNQf5N23czyHMrV+kDJMAkOQZldZMIsStd2HSwT6kLJLTAkKARIgC9MlSJsxR64oKF6EZCyqWh/avXWHx2i50Va35mho02dNHH12mVj3jDG2AinLjNEAxpqRFFS1cYCu6JgPR8G4maIEKMLUlxDWTbHylsx3u+yX08bClZgyD8m5GV0o2gr0pAnu7wStB0kGtcPDgNcfCjgSY04QoP5X22BlJARIAjHswts0QiiKDhjvPMXilasLt2AETckGu0HzgwQTExhqPEVgNJjoqwh0OsmaCZL8L6g0CVykSN3uwdMSY0gjdPomn5zYxfqazXmncgrtDjS3eavRIR1iXhgKM6oC+ngMN4mhKgwPZGRBRibINpClSeVJQaFE1nIbxojwH1ktvzW/PG2RrEzAhMvsXxpmaTXovUOgqR+3CuAJcwuFGhQDCIMeNmsvySDLoEiAhJItcDph1RJRhpgAkTT5JauxuvlMtEOrl/pQwsyA1hFumvqc6oblVjsVTGLZAhWWG0DK/K63wdAg+ulWjgGGCnD1Dq64Bhk5FogNSFqHHdaaOoVkKkES9Gbw3oYLvZy+dIt6rCO0DTHgjRAoLcKJCgTBfwMMA/LKQFkGFGDWWJ7kmPXmDkQaYFyDa16uHPyRw1aIJkEyRcAXpK9UxSmGwdcJgwYRRUKN9mDPvA2OYkh/BOTZgN2stz4KcRcE+yApMC70cPaN8xw0DLwW/b15oAfH6DY6qPL6wK3jefMyr/mjxGrXUPtkMesK/TiUZrDZQVFNBaNDJIlxw8+tr69z7Kc2vgNCTLJ7A2cwTvtIgK1/RWnfd449PaNcB4z9Z2nItrP4uaVsWFnCE7McFNgU1HCSgMuH63wbf3QN0wiMcvdndj/bUsXqT2v4JjOdigduMovjAHKATKY5EWXMNj5U+wcb0TIr9nRDzwAAAABJRU5ErkJggg==") no-repeat left center transparent;
        background-size: 100% 100%;
    }



/*--------------------------------------------------------------
# course
--------------------------------------------------------------*/
.course {
    position: relative;
}

    .course .container {
        position: relative;
        z-index: 10;
    }

    .course .module {
        margin-bottom: 80px;
        position: relative;
    }

        .course .module .pic {
            overflow: hidden;
        }

        .course .module .module-info {
            /*position: absolute;*/
            bottom: -290px;
            left: 20px;
            right: 20px;
            background: #fff;
            padding: 20px 15px;
            color: #15222b;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            /*   overflow: hidden;*/
            transition: 0.5s;
            min-height: 100px;
        }

        .course .module h4 {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 16px;
            color: #15222b;
            color: #ef9c37;
            position: relative;
            padding-bottom: 10px;
        }

            .course .module h4::after {
                content: '';
                position: absolute;
                display: block;
                width: 100%;
                height: 2px;
                background: #7fa5c0;
                bottom: 0;
                left: 0;
            }

        .course .module span {
            /*font-style: italic;*/
            display: block;
            /*font-size: 13px;*/
            /*  height: 300px;*/
        }

        .course .module .social {
            position: absolute;
            right: 15px;
            bottom: 15px;
        }

            .course .module .social a {
                transition: color 0.3s;
                color: #477392;
            }

                .course .module .social a:hover {
                    color: #ff4a17;
                }

            .course .module .social i {
                font-size: 16px;
                margin: 0 2px;
            }

@media (max-width: 992px) {
    .course .module {
        margin-bottom: 110px;
    }
}

/* Location Section
--------------------------------*/

#course-location {
    background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../../img/groupcerts-full.jpg) fixed center center;
    background-size: cover;
    padding: 60px 0;
    min-height: 500px;
}

    #course-location h3 {
        color: #ef9c37;
        background-color: black;
        padding-top: 10px;
    }

    #course-location p {
        color: #fff;
    }

.course-location-panel {
    /*position: absolute;*/
    bottom: -290px;
    left: 20px;
    right: 20px;
    background-color: rgba(255,255,255,0.8);
    padding: 20px 15px;
    color: #15222b;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.4);
    /*   overflow: hidden;*/
    transition: 0.5s;
    min-height: 100px;
}


.disabled {
    pointer-events: none; /*This makes it not clickable */
    opacity: 0.3; /*This greys it out to look disabled*/
    color: red;
}

.same-size {
    margin: auto;
    width: 80%;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.patreon-icon {
    width: 15px;
    height: 15px;
    color: white;
}




.payment-card-panel {
    background-color: #b2b2b2;
    padding: 10px;
    color: black;
    border-radius: 30px;
}

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 4px !important;
    z-index: 99;
}

    .grecaptcha-badge:hover {
        width: 256px !important;
    }

.hidden-field {
    display: none;
    visibility: hidden;
}

/*.nav-menu li.buy-tickets a {
    color: #fff;
    background: #D10000;
    padding: 7px 22px;
    border-radius: 50px;
    border: 2px solid #D10000;
    transition: all ease-in-out 0.3s;
    font-weight: bold;
    margin-left: 8px;
    margin-top: 2px;
    line-height: 1;
    font-size: 13px;
}*/

.nav-menu li.buy-tickets a:hover {
    background: none;
}

.nav-menu li.buy-tickets:hover a:before, .nav-menu li.buy-tickets.menu-active a:before {
    visibility: hidden;
}


.nav-menu li.buy-tickets a {
    background-color: #004A7F;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: Arial;
    font-size: 20px;
    padding: 5px 10px;
    color: #fff;
    background: #D10000;
    padding: 7px 22px;
    border-radius: 20px;
    border: 2px solid #D10000;
    transition: all ease-in-out 0.3s;
    font-weight: bold;
    margin-left: 8px;
    margin-top: 2px;
    line-height: 1;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    -webkit-animation: glowing 6500ms infinite;
    -moz-animation: glowing 6500ms infinite;
    -o-animation: glowing 6500ms infinite;
    animation: glowing 6500ms infinite;
}

@-webkit-keyframes glowing {
    0% {
        background-color: #B20000;
        -webkit-box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        -webkit-box-shadow: 0 0 10px #FF0000;
    }

    100% {
        background-color: #B20000;
        -webkit-box-shadow: 0 0 3px #B20000;
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: #B20000;
        -moz-box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        -moz-box-shadow: 0 0 10px #FF0000;
    }

    100% {
        background-color: #B20000;
        -moz-box-shadow: 0 0 3px #B20000;
    }
}

@-o-keyframes glowing {
    0% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        box-shadow: 0 0 10px #FF0000;
    }

    100% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }
}

@keyframes glowing {
    0% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        box-shadow: 0 0 10px #FF0000;
    }

    100% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }
}

.imgContainer {
    display: table-cell;
    /*  width: 150px;
    height: 100px;*/
    text-align: center;
    vertical-align: middle;
    height: 100%;
    width: auto;
}

.money-back-header {
    font-weight: bold;
    color: #000;
}

.content-block.blue {
    background: rgb(215,215,215);
    background: linear-gradient(143deg, rgba(215,215,215,1) 0%, rgba(250,250,250,1) 100%);
    border-radius: 20px;
    padding: 20px;
    border-radius: 10pt;
}


    .content-block.blue h2 {
        color: black;
        text-align: center;
        margin: 0px 0px 20px 0px;
    }

.content-block h2 {
    color: black;
    font-size: 24pt;
    line-height: 34pt;
    margin: 0px 0px 30px 0px;
}

.content-block.blue p {
    color: black;
    line-height: 25pt;
}

.section-header h3 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-header-black {
    /*font-size: 32px;
   color:white;*/
    /*  text-transform: uppercase;*/
    /*text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;*/
}

.content-block.blue h3 {
    color: black;
    text-align: center;
    font-size: 32px;
    margin: 0px 0px 20px 0px;
}

.red-font {
    color: red;
}

.lower-case {
    text-transform: lowercase;
}

.nextDate {
    text-align: center; /* Center the text inside the div */
    margin: 0 auto; /* Optionally center the div itself if you want it to be a block-level element */
    width: 100%; /* Ensure the div takes full width for centering */
}

    .nextDate h3 {
        display: inline-block; /* Optional: if you want the h3 to behave like an inline element */
        margin: 0; /* Remove any default margin */
        color: black;
        font-weight: 600;
    }


.firstTuesdayDiv {
}

.firstTuesdayDivEnhanced {
    font-size: 1.7em;
    color: white;
    background-color: #ef9c37;
    text-align: center;
    border: 4px gray solid;
    padding: 10px;
    display: block;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#team {
    text-transform: none; /* Reset any text-transform */
    /* font-weight:300;*/
    /* font-size:1.6em;*/
}

    /* Ensure h3 remains styled as desired */
    #team .section-header-black h3 {
        color: white;
        text-transform: uppercase; /* Keep h3 in uppercase if desired */
        text-align: center;
        position: relative;
        font-weight: 700;
    }

        #team .section-header-black h3::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: orange;
            margin: 10px auto 0;
        }

    /* Style for the introductory text */
    #team .text-left p {
        /* color: white;*/
        font-size: 1.1rem;
        line-height: 1.8;
    }

        /* Style for strong text in the introductory paragraph */
        #team .text-left p strong {
            color: orange;
        }

    /* Style for the cards */
    #team .card {
        background-color: white;
        border: none;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

        /* Ensure card text is black */
        #team .card p {
            color: black;
            font-size: 1rem;
            margin-bottom: 15px;
        }

    /* Padding adjustments for the container inside cards */
    #team .container.mt-5 {
        margin-top: 30px;
    }

    /* Ensure spacing between rows */
    #team .row {
        margin-bottom: 30px;
    }

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-6 {
    display: flex;
    flex-direction: column;
}

.card {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
}

.icon-title {
    display: flex;
    align-items: center;
}

.icon {
    margin-right: 10px; /* Space between icon and title */
    font-size: 1.5em; /* Adjust the size of the icon */
}

.title {
    font-size: 1.25em; /* Adjust title size as needed */
    font-weight: bold;
}

    .title a {
        color: inherit; /* Make sure the link color inherits the title color */
        text-decoration: none; /* Remove underline */
    }


/*Booking Calendar  */

.booking {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #f2e5bd;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #eaeaea;
    margin: 0 auto;
    max-width: 900px;
}

    .booking .container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        background-color: #f2e5bd;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid #eaeaea;
        margin: 0 auto;
        max-width: 900px;
    }

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 3rem 1rem;
    text-align: center;
    background: #f8fafc;
}

/* New container for side-by-side layout */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
    flex-wrap: wrap; /* Allows wrapping on small screens */
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    position: relative;
    border: 1px solid #e2e8f0;
}

    /* Highlight card styling */
    .pricing-card.highlight {
        border: 2px solid #FF6B00;
        transform: scale(1.02);
    }

.benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

    .benefits li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 1.75rem;
    }

        .benefits li:before {
            content: '✓';
            color: #48BB78;
            position: absolute;
            left: 0;
            font-weight:600;
        }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }

        .pricing-card.highlight {
            transform: none;
        }
}

.sessions {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

    .sessions h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #2c3e50;
    }

.sessions-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
}

.session-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.session-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #e67e22;
    transition: transform 0.3s ease;
    text-align: center;
}

    .session-card:hover {
        transform: translateY(-5px);
    }

.session-number {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.session-date {
    background: #2c3e50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
}

.session-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
}

.session-description {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.key-takeaway {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

    .key-takeaway strong {
        color: #2c3e50;
    }

.bundle-section {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.bundle-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 30px;
}

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.price-option {
    text-align: center;
}

.price-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-strikethrough {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
}

.savings {
    background: #27ae60;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
    display: inline-block;
}

.testimonials {
    background: #f8f9fa;
    padding: 80px 0;
}

    .testimonials h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 60px;
        color: #2c3e50;
    }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

    .testimonial::before {
        content: '"';
        font-size: 4rem;
        color: #e67e22;
        position: absolute;
        top: -10px;
        left: 20px;
    }

.whatsapp-section {
    border:5px dotted #25D366;
    color: black;
    padding: 30px 0;
    text-align: center;
}

    .whatsapp-section h2 {
        margin-bottom: 20px;
    }

.whatsapp-button {
    background: #128C7E;
    border: 2px solid white;
}

    .whatsapp-button:hover {
        background: white;
        color: #25D366;
    }

.trainer-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.trainer-card {
    max-width: 500px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trainer-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e67e22, #d35400);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    animation: pulse 2s infinite;
}

    .cta-button:hover {
        background: #d35400;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    }

.cta-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

    .cta-secondary:hover {
        background: white;
        color: #764ba2;
    }

.urgency-banner {
    position: sticky;
    top: 80px;
    margin-top: 80px; /* This is the key - pushes it below fixed header */
    left: 0;
    right: 0;
    width: 100%;
    background: #d32f2f;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    animation: flash 5s glowing;
    z-index: 996;
}

.what-is-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

    .what-is-section h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: #2c3e50;
    }

    .what-is-section p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 40px;
        line-height: 1.8;
    }


.two-column-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 30px 0;
}

.video-column {
    flex: 1;
    min-width: 0;
}

.details-column {
    flex: 1;
    min-width: 0;
}

.details-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
    height: 100%;
    margin-top: 60px;
}

.video-container1 {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    /* Proper 16:9 aspect ratio */
    .video-container1 iframe {
        /*width: 100%;
        height: 300px;*/ /* Just set a fixed height */
        border: none;
        border-radius: 8px;
        display: block;
    }


/* Responsive design for mobile */
@media (max-width: 1200px) {
    .two-column-layout {
        flex-direction: column;
        gap: 25px;
    }

    .video-column,
    .details-column {
        flex: none;
        width: 100%;
    }

    .details-container {
        padding: 20px;
    }


   /* .video-container1 iframe {
        height: 250px;
    }*/
}

/* Countdown Styles */
.countdown-container {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

.pricing-header {
    margin-bottom: 20px;
}

.current-price {
    font-size: 3.5em;
    font-weight: bold;
    color: #004aad;
    line-height: 1;
    margin: 10px 0;
}

.original-price {
    font-size: 1.8em;
    color: #6b7280;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-tier-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.super-early {
    background: linear-gradient(135deg, #004aad 0%, #003087 100%);
    color: white;
    animation: glow 2s infinite;
}

.early-bird {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.full-price {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 74, 173, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 74, 173, 0.8);
    }
}

.urgency-headline {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.time-unit {
    background: linear-gradient(135deg, #004aad 0%, #003087 100%);
    border-radius: 10px;
    padding: 20px 15px;
    min-width: 90px;
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .time-unit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 74, 173, 0.5);
    }

.time-value {
    font-size: 2.5em;
    font-weight: bold;
    color: white;
    line-height: 1;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.time-label {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
    font-weight: 600;
}

.next-tier-info {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

    .next-tier-info p {
        color: #742a2a;
        font-size: 1em;
        font-weight: 600;
        margin: 0;
    }

.savings-highlight {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

    .savings-highlight p {
        font-size: 1.2em;
        color: #1a4731;
        font-weight: bold;
        margin: 0;
    }

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #004aad 0%, #003087 100%);
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 74, 173, 0.6);
        background: linear-gradient(135deg, #003087 0%, #002669 100%);
    }

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    .current-price {
        font-size: 2.5em;
    }

    .urgency-headline {
        font-size: 1.3em;
    }

    .time-unit {
        min-width: 70px;
        padding: 15px 10px;
    }

    .time-value {
        font-size: 2em;
    }

    .countdown-display {
        gap: 8px;
    }

    .cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
    }
}


.promo-banner {
    position: sticky;
    top: 80px;
    margin-top: 80px; /* This is the key - pushes it below fixed header */
    left: 0;
    right: 0;
    width: 100%;
    background: #d32f2f;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
    animation: flash 5s glowing;
    z-index: 996;
 

}

.event-details {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-section {
    margin-bottom: 40px;
    text-align: center;
}

.video-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50.625%; /* 16:9 aspect ratio (315/560) */
    height: 0;
    overflow: hidden;
    background: #f0f0f0; /* Debug: Light gray background to check visibility */
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        background: #000; /* Black background for iframe to contrast with container */
    }

.unmute-button {
    display: none; /* Hidden by default, shown in portrait via JS */
    margin: 10px auto;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

    .unmute-button:hover {
        background: #0056b3;
    }

@media (max-width: 768px) {
    .video-container {
        width: 95%;
    }
}

@media (orientation: portrait) {
    .video-container {
        width: 100%; /* Full width in portrait for better visibility */
        max-width: none; /* Remove max-width constraint */
    }
}


.stripe-input {
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: white;
    height: 40px;
    font-size: 16px;
    line-height: 1.5;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .stripe-input.StripeElement--focus {
        border-color: #80bdff;
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
        outline: 0;
    }

    .stripe-input.StripeElement--invalid {
        border-color: #fa755a;
    }


.btnPayDeposit:disabled {
    cursor: not-allowed;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.spinner-border {
    margin-right: 8px;
    vertical-align: middle;
}

.responsive-banner {
    margin: 25px auto;
    max-width: 900px; /* Optional: caps width on large screens */
}

    .responsive-banner img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        display: block;
        margin: 0 auto; /* Extra safety for centering */
    }

@media (max-width: 480px) {
    .responsive-banner img {
        border-radius: 8px;
    }
}

.guarantee-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
    width: 100% !important;
}

.guarantee-image {
    max-height: 200px !important;
    width: auto !important;
}

.guarantee-text-dark,
.guarantee-text-dark * {
    color: #2c3e50 !important;
}

.guarantee-header {
    color: #2c3e50 !important;
    text-align: center;
    margin-bottom: 30px;
}

/* Stronger modal font size */
#guaranteeModal .modal-body,
#guaranteeModal .modal-body p,
#guaranteeModal .modal-body li,
#guaranteeModal .modal-body strong,
#guaranteeModal .modal-body em {
    font-size: 14px !important;
    line-height: 1.5 !important;
}

    #guaranteeModal .modal-body p {
        margin-bottom: 12px !important;
    }

@media (max-width: 768px) {
    .btn-primary, .cta-button {
        padding: 18px 25px;
        font-size: 1.3rem;
        width: 90%;
        margin: 10px auto;
        display: block;
    }
}

.cost-of-inaction {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 50px 0 !important;
    border-radius: 15px !important;
    margin: 40px 0 !important;
}

    .cost-of-inaction .card {
        background: rgba(255,255,255,0.1) !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        backdrop-filter: blur(10px) !important;
        color: white !important;
        border-radius: 10px !important;
    }

        .cost-of-inaction .card h5 {
            color: white !important;
            font-weight: bold !important;
        }

    .cost-of-inaction h3 {
        color: white !important;
        font-weight: 700 !important;
        margin-bottom: 30px !important;
    }


.sticky-cta-bottom {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 10000;
    border-top: 3px solid #007bff;
}

body {
    padding-bottom: 0; /* Will be set by JS */
}