html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

h1.Head1 {
    font-family: 'Rapier Zero', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 4.0em;
    color: #fff;
    text-align: center;
    background: linear-gradient(to right, #129dfa, #ff13ff 65%);
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

h2.Head1 {
    font-family: 'Rapier Zero', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8em;
    background: linear-gradient(to right, #129dfa, #ff13ff, #8f68ff, #ff13ff, #129dfa);
    /*background: linear-gradient(to right, #fc72ff, #8f68ff, #487bff, #8f68ff, #fc72ff);*/
    background-size: 200%;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 4.5s linear infinite;
}

h3.Head1 {
    font-family: 'Rapier Zero', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.3em;
    background: linear-gradient(to right, #129dfa, #ff13ff, #8f68ff, #ff13ff, #129dfa);
    /*background: linear-gradient(to right, #fc72ff, #8f68ff, #487bff, #8f68ff, #fc72ff);*/
    background-size: 200%;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 4.5s linear infinite;
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

.font-face-menu {
    font-family: 'Rapier Zero', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.275em;
}

@font-face {
    font-family: 'Rapier Zero';
    src: url('../fonts/rapier_zero-webfont.woff2') format('woff2'), url('../fonts/rapier_zero-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.HomeContainer {
    background-image: url('/vids/Club2.gif');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100%;
}

/*
imgLogo {
    display: block;
    margin: auto;
    width: 15%;
    height: 15%;
}
*/

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.Deanen-BG {
    background-color: #000000;
}

#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    background-color: rgba(31,39,43,0.75);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}
/* Start of CSS for Homepage Card Style*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
    font-family: 'Rapier Zero', sans-serif;
    font-weight: normal;
    color: #444;
    text-align: center;
    margin: 1rem 0;
}

.dl_wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 80rem;
}

.dl_cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dl_col {
    width: calc(25% - 2rem);
    margin: 1rem;
    cursor: pointer;
}

.dl_container {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.dl_front,
.dl_back {
    background-size: cover;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.25);
    border-radius: 10px;
    background-position: center;
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
    min-height: 280px;
    height: auto;
    border-radius: 10px;
    color: #fff;
    font-size: 1.5rem;
}

.dl_back {
    background: #cedce7;
    background: -webkit-linear-gradient(45deg, #cedce7 0%,#596a72 100%);
    background: -o-linear-gradient(45deg, #cedce7 0%,#596a72 100%);
    background: linear-gradient(45deg, #cedce7 0%,#596a72 100%);
}

.dl_front:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    background-color: #000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
}

.dl_container:hover .front,
.dl_container:hover .back {
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.dl_back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.dl_inner {
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
}

.dl_container .dl_back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.dl_container .dl_front {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.dl_container:hover .dl_back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.dl_container:hover .dl_front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.dl_front .dl_inner p {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

    .dl_front .dl_inner p:after {
        content: '';
        width: 4rem;
        height: 2px;
        position: absolute;
        background: #C6D4DF;
        display: block;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: -.75rem;
    }

.dl_front .dl_inner span {
    color: rgba(255,255,255,0.7);
    font-family: 'Rapier Zero', sans-serif;
    font-weight: 300;
}

@media screen and (max-width: 64rem) {
    .dl_col {
        width: calc(33.333333% - 2rem);
    }
}

@media screen and (max-width: 48rem) {
    .dl_col {
        width: calc(50% - 2rem);
    }
}

@media screen and (max-width: 32rem) {
    .dl_col {
        width: 100%;
        margin: 0 0 2rem 0;
    }
}
/* End of CSS for Homepage Card Style*/

.imgContLeft {
    /* border: 2px solid #555; */
    justify-content: flex-end;
    display: flex
}

.imgContMiddle {
    /* border: 2px solid #555; */
    max-width: 50%;
    justify-content: center;
    display: flex
}

.imgContRight {
    /* border: 2px solid #555; */
    justify-content: flex-start;
    display: flex
}

.imgDL {
    /* border: 2px solid #555; */
    max-width: 50%;
    justify-content: center;
    display: flex
}

/* START of Pricing Table CSS*/

.pricing-table-title {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 60px 0 15px 0;
}

    .pricing-table-title:first-child {
        margin-top: 30px;
    }

    .pricing-table-title h2 {
        font-size: 35px;
        font-weight: 900;
        color: #2A293E;
        letter-spacing: 2px;
    }


/* -------------- Pricing Table Style -------------- */
.pricing-table {
    display: flex;
    flex-flow: row wrap;
    width: 95%;
    /* max-width: 1100px; */
    max-width: 100%;
    margin: 2% auto 2% auto;
    background-image: url('../vids/Club2.gif');
    background-repeat: no-repeat;
    background-size: cover;
}

    .pricing-table .ptable-item {
        width: 20%;
        padding: 15px;
    }

@media (max-width: 992px) {
    .pricing-table .ptable-item {
        width: 33.33%;
    }
}

@media (max-width: 768px) {
    .pricing-table .ptable-item {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .pricing-table .ptable-item {
        width: 100%;
    }
}

.pricing-table .ptable-single {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pricing-table .ptable-header,
.pricing-table .ptable-body,
.pricing-table .ptable-footer {
    position: relative;
    width: 100%;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
}

.pricing-table .ptable-status,
.pricing-table .ptable-title,
.pricing-table .ptable-price,
.pricing-table .ptable-description,
.pricing-table .ptable-action {
    position: relative;
    width: 100%;
    text-align: center;
}

/* --- Pricing Table 3 --- */
.pricing-table.table-3 .ptable-single {
    border-radius: 10px;
    /* height: 100%; */
    border: 1px solid white;
}

    .pricing-table.table-3 .ptable-single:hover {
        box-shadow: 0 0 10px #999999;
    }

.pricing-table.table-3 .ptable-header {
    padding: 30px 0 0 0;
    background: #00000082;
    /* margin-bottom: -10px; */
    /* border: 1px solid white; */
}

.pricing-table.table-3 .ptable-title h2 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pricing-table.table-3 .ptable-price h2 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 900;
    margin-left: 15px;
}

    .pricing-table.table-3 .ptable-price h2 small {
        position: absolute;
        font-size: 18px;
        font-weight: 900;
        margin-top: 16px;
        margin-left: -15px;
    }

    .pricing-table.table-3 .ptable-price h2 span {
        margin-left: 3px;
        font-size: 16px;
        font-weight: 300;
    }

.pricing-table.table-3 .ptable-body {
    padding: 5px 0;
    background: #2626265e;
    /* border: 1px solid red; */
    height: 65%;
}

.pricing-table.table-3 .ptable-description {
    margin: 0;
    padding: 0;
    /* border: 1px solid blue; */
}

    .pricing-table.table-3 .ptable-description ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .pricing-table.table-3 .ptable-description ul li {
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 7px;
            border-bottom: 1px solid #eeeeee;
        }

            .pricing-table.table-3 .ptable-description ul li:last-child {
                border: none;
            }

.pricing-table.table-3 .ptable-footer {
    background: #00000082;
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
    /* bottom: 0; */
    /* border: 1px solid yellow; */
}

.pricing-table.table-3 .ptable-action a {
    display: inline-block;
    padding: 10px 25px;
    color: #2A293E;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    background: #FF6F61;
    border-radius: 50px;
}

    .pricing-table.table-3 .ptable-action a i {
        margin-right: 5px;
    }

    .pricing-table.table-3 .ptable-action a:hover {
        color: #FF6F61;
        background: #ffffff;
    }

/* END of Pricing Table CSS*/