@charset "UTF-8";


@keyframes bg-animation {
  0% {background-position: left}
  50% {background-position: right}
  100% {background-position: left}
}

img.sticky {
  position: sticky;
  top: 0;
}

.player {
    z-index: 100;
    padding: 0;
    background-color: rgba(244,241,241,1.00);
}

.album-img {
    padding: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.20);
    object-fit: cover;
    overflow: hidden;
}

.song-title {
    color: #222222;
    font-size: 18px;
    margin-bottom: 0px;
}

.song-info {
    color: #284781;
    font-size: 14px;
    font-weight: lighter;
    margin-top: -1px;

}

.feature {
    background: rgba(0,0,0,0.25);
    width: 400px;
    height: 150px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
    padding-left: 0px;
    border-radius: 10px;
}

.feature-cont {
    margin-top: -300px;
}

.feature-song-img {
    object-fit: contain;
    width: 150px;
    height: 150px;
}

.feature-info {
    background-color: rgba(244,241,241,1.00);
    padding-top: 10px;
    padding-left: 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.20);
}

.center-all{
    display: flex;
    align-items: center;
    justify-content: center;
}

.justify-content-center{
    justify-content:center;
}

.grow {
    transition: transform 0.5s;
}

.grow:hover {
    transform: scale(105%);
    transition-duration: all 0.5s;
}


.grow-rotate {
    transition: transform 0.5s;
}

.grow-rotate:hover {
    transform: scale(110%) rotate(20deg);
    transition-duration: all 0.5s;
}


.shrink {
    transition: transform 0.5s;
}

.shrink:hover {
    transform: scale(98%);
    transition-duration: all 0.5s;
}

.hidden{
    display: none;
    visibility: hidden;
}

/* Preloder */


#more {display: none;}

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}
.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}
@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #F9C102;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #F67603;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #F9C102;
		border-left-color: transparent;
	}
}
@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #F9C102;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #F67603;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #F9C102;
		border-left-color: transparent;
	}
}

.divider-btm {
    border-bottom: thin solid hsla(204,100%,17%,1.00);
    padding-bottom: 0px;
    margin-bottom: 40px;
}
.divider-top {
    border-top: thin solid hsla(204,100%,17%,1.00);
    padding-bottom: 0px;
    margin-bottom: 40px;
    padding-top: 40px;
}

.sticky-top {
  position: sticky;
  top: 0;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

    .back-home {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 2;
    top: 20px;
    left: 20px;
    background-color: rgba(255,255,255,0.90);
    border-radius: 50px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;

}

.back-home:hover {
    -webkit-box-shadow: 0px 0px 50px rgba(27,2,11,1.00);
    box-shadow: 0px 0px 50px rgba(26,0,11,1.00);
}

.up-icon {
    color: rgba(242,5,67,1.00);
    font-size: 24px;
    padding-bottom: 0px;
    margin-top: 0px;
    font-weight: bold;
    vertical-align: -3px;
}

.learn-more-btn {
    padding: 13px 50px 15px;
    /* [disabled]border: 0px solid hsla(52,100%,50%,1.00); */
    border-radius: 11px;
    color: hsla(0,0%,100%,1.00);
    font-size: large;
    background-color: rgba(255,221,0,0.40);
    text-align: center;
}
.learn-more-btn:hover {
    border-radius: 10px;
    color: hsla(0,0%,9%,1.00);
    background-color: hsla(52,100%,50%,1.00);
    text-align: center;
}

/*---------------------
# Media Queries Ads
----------------------*/

.desktop{
    
}

.tablet{
    
}

.mobile{
    
    
}

@media (min-width: 991px) and (max-width: 3000px){
    .desktop{
    display: block;
}

    .tablet{
    display: none;
}

    .mobile{
    display: none;
    
    }
}


@media (min-width: 767px) and (max-width: 991px){
    .desktop{
    display: none;
}

    .tablet{
    display: block;
}

    .mobile{
    display: none;
    }
}

@media (max-width: 767px){
    .desktop{
    display: none;
}

    .tablet{
    display: none;
}

    .mobile{
    display: block;
    }
}



/*---------------------

/* Style tab links */
.tablink {
    background-color: #0AC9DB;
    color: rgba(255,255,255,0.85);
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 18px;
    width: 25%;
    font-weight: bolder;
}

.tablink:hover {
    background-color: #03A1AF;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
    color: rgba(38,38,38,1.00);
    display: none;
    padding-top: 100px;
    padding-bottom: 100px;
    height: 100%;
}

#Home {background-color: #EAE2D2}
#News {background-color: #EAE2D2}
#Contact {background-color: #EAE2D2}
#About {background-color:#EAE2D2}

/*---------------------
# FAQ
----------------------*/

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
    border-bottom: 1px solid rgba(255,255,255,0.10);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: #00BAFF;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-right: 25px;
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
    color: #FFFFFF;
}

.faq .faq-list a.collapsed:hover {
  color: #00BAFF;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

.text-green{
    color: #58C231;
    text-align: center;
    font-size: small;
    padding-top: 15px;
    padding-bottom: 10px;
}

.text-green:hover{
    color: #6FEA42;
}

/*---------------------
# Text Color
----------------------*/

.text-blue{
    color: #50BEE7
}

.text-white{
    color: #FFFFFF
}

.text-yellow{
    color: rgba(249,195,5,1.00);
}

.text-amazon-orange{
    color: orange;
}


/*---------------------
# Text Heading
----------------------*/

.hero-heading {
    font-size: calc(1.75rem + 1vw);
}


/*---------------------
# Margin Top -
----------------------*/

.mar-top--5px{
    margin-top: -5px;
}

.mar-top--10px{
    margin-top: -10px;
}

.mar-top--15px{
    margin-top: -15px;
}

.mar-top--20px{
    margin-top: -20px;
}

.mar-top--25px{
    margin-top: -25px;
}

.mar-top--30px{
    margin-top: -30px;
}

.mar-top--35px{
    margin-top: -35px;
}

.mar-top--40px{
    margin-top: -40px;
}

.mar-top--45px{
    margin-top: -45px;
}

.mar-top--50px{
    margin-top: -50px;
}


/*---------------------
# Margin Top
----------------------*/

.mar-top-5px{
    margin-top: 5px;
}

.mar-top-10px{
    margin-top: 10px;
}

.mar-top-15px{
    margin-top: 15px;
}

.mar-top-20px{
    margin-top: 20px;
}

.mar-top-25px{
    margin-top: 25px;
}

.mar-top-30px{
    margin-top: 30px;
}

.mar-top-35px{
    margin-top: 35px;
}

.mar-top-40px{
    margin-top: 40px;
}

.mar-top-45px{
    margin-top: 45px;
}

.mar-top-50px{
    margin-top: 50px;
}

.mar-top-55px{
    margin-top: 55px;
}

.mar-top-60px{
    margin-top: 60px;
}

.mar-top-65px{
    margin-top: 65px;
}

.mar-top-70px{
    margin-top: 70px;
}

.mar-top-75px{
    margin-top: 75px;
}

.mar-top-80px{
    margin-top: 80px;
}

.mar-top-85px{
    margin-top: 85px;
}

.mar-top-90px{
    margin-top: 90px;
}



/*---------------------
# Margin Bottom
----------------------*/

.mar-bot-5px{
    margin-bottom: 5px;
}

.mar-bot-10px{
    margin-bottom: 10px;
}

.mar-bot-15px{
    margin-bottom: 15px;
}

.mar-bot-20px{
    margin-bottom: 20px;
}

.mar-bot-25px{
    margin-bottom: 25px;
}

.mar-bot-30px{
    margin-bottom: 30px;
}

.mar-bot-35px{
    margin-bottom: 35px;
}

.mar-bot-40px{
    margin-bottom: 40px;
}

.mar-bot-45px{
    margin-bottom: 45px;
}

.mar-bot-50px{
    margin-bottom: 50px;
}

/*---------------------
# Padding 360
----------------------*/

.pad-0-0-0-0{
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.pad-5-5-5-5{
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.pad-10-10-10-10{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.pad-15-15-15-15{
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.pad-20-20-20-20{
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.pad-25-25-25-25{
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
}

.pad-30-30-30-30{
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

.pad-35-35-35-35{
    padding-top: 35px;
    padding-bottom: 35px;
    padding-left: 35px;
    padding-right: 35px;
}

.pad-40-40-40-40{
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

.pad-45-45-45-45{
    padding-top: 45px;
    padding-bottom: 45px;
    padding-left: 45px;
    padding-right: 45px;
}

.pad-50-50-50-50{
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

/*---------------------
# Padding Left Right
----------------------*/

.pad-lef-rht-0px{
    padding-left: 0px;
    padding-right: 0px;
}

.pad-lef-rht-5px{
    padding-left: 5px;
    padding-right: 5px;
}

.pad-lef-rht-10px{
    padding-left: 10px;
    padding-right: 10px;
}

.pad-lef-rht-15px{
    padding-left: 15px;
    padding-right: 15px;
}

.pad-lef-rht-20px{
    padding-left: 20px;
    padding-right: 20px;
}

.pad-lef-rht-25px{
    padding-left: 25px;
    padding-right: 25px;
}

.pad-lef-rht-30px{
    padding-left: 30px;
    padding-right: 30px;
}

.pad-lef-rht-35px{
    padding-left: 35px;
    padding-right: 35px;
}

.pad-lef-rht-40px{
    padding-left: 40px;
    padding-right: 40px;
}

.pad-lef-rht-45px{
    padding-left: 45px;
    padding-right: 45px;
}

.pad-lef-rht-50px{
    padding-left: 50px;
    padding-right: 50px;
}

/*---------------------
# Padding Top
----------------------*/

.pad-top-5px{
    padding-top: 5px;
}

.pad-top-10px{
    padding-top: 10px;
}

.pad-top-15px{
    padding-top: 15px;
}

.pad-top-20px{
    padding-top: 20px;
}

.pad-top-25px{
    padding-top: 25px;
}

.pad-top-30px{
    padding-top: 30px;
}

.pad-top-35px{
    padding-top: 35px;
}

.pad-top-40px{
    padding-top: 40px;
}

.pad-top-45px{
    padding-top: 45px;
}

.pad-top-50px{
    padding-top: 50px;
}

/*---------------------
# Padding Bottom
----------------------*/

.pad-bot-5px{
    padding-bottom: 5px;
}

.pad-bot-10px{
    padding-bottom: 10px;
}

.pad-bot-15px{
    padding-bottom: 15px;
}

.pad-bot-20px{
    padding-bottom: 20px;
}

.pad-bot-25px{
    padding-bottom: 25px;
}

.pad-bot-30px{
    padding-bottom: 30px;
}

.pad-bot-35px{
    padding-bottom: 35px;
}

.pad-bot-40px{
    padding-bottom: 40px;
}

.pad-bot-45px{
    padding-bottom: 45px;
}

.pad-bot-50px{
    padding-bottom: 50px;
}

/*---------------------
# Bottons
----------------------*/

.lets-go-btn{
    border: thin solid rgba(0,0,0,0.00);
    font-size: x-large;
    font-weight: bolder;
    color: #121212;
    border-radius: 0px;
    background-color: rgba(77,211,247,1.00);
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.yes-i-want-this-btn{
    background-color: rgba(0,0,0,0.00);
    padding: 8px 30px;
    color: rgba(255,255,255,0.90);
    border-radius: 33px;
    margin-bottom: 12px;
    margin-yop: 20px;
    border: 2px solid rgba(242,5,67,1.00);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.yes-i-want-this-btn:hover{
    background-color: rgba(242,5,67,1.00);
    color: rgba(32,32,32,0.93);
}

.yes-i-want-this-btn-big{
    background-color: #F9C303;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 40px;
    padding-left: 40px;
    color: rgba(19,19,19,1.00);
    margin-bottom: 20px;
    margin-yop: 20px;
    font-size: 24px;
    font-weight: 800;
    margin-top: 15px;
}

.yes-i-want-this-btn-big:hover{
    background-color: rgba(22,22,22,1.00);
    color: rgba(255,255,255,1.00);
}

.yes-i-want-this-btn-blue{
    background-color: rgba(0,206,255,1.00);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 25px;
    padding-left: 25px;
    color: rgba(19,19,19,1.00);
    border-radius: 33px;
    margin-bottom: 20px;
    margin-yop: 20px;
    margin-top: 15px;
}

.yes-i-want-this-btn-blue:hover{
    background-color: rgba(22,22,22,1.00);
    color: rgba(255,255,255,1.00);
    margin-yop: 20px;
}

.gradient-btn {
    background-image: -webkit-linear-gradient(60deg,rgba(255,222,2,1.00) 33.25%,rgba(249,255,130,1.00) 50%,rgba(255,222,2,1.00) 65.42%);
    background-image: -moz-linear-gradient(60deg,rgba(255,222,2,1.00) 33.25%,rgba(249,255,130,1.00) 50%,rgba(255,222,2,1.00) 65.42%);
    background-image: -o-linear-gradient(60deg,rgba(255,222,2,1.00) 33.25%,rgba(249,255,130,1.00) 50%,rgba(255,222,2,1.00) 65.42%);
    background-image: linear-gradient(30deg,rgba(255,222,2,1.00) 33.25%,rgba(249,255,130,1.00) 50%,rgba(255,222,2,1.00) 65.42%);
    font-size: 25px;
    font-weight: normal;
    border-radius: 4px;
    background-size: 200%;
    background-position: left;
    transition: 0.5s background-position scale ease-in-out;
    color: rgba(255,255,255,1.00);
    -webkit-box-shadow: 1px 1px 20px rgba(31,52,68,0.35);
    box-shadow: 1px 1px 20px rgba(31,52,68,0.35);
    padding: 10px 40px;
}

.gradient-btn:hover {
    background-position: right;
    transform: scale(98%);
    transition-duration: 0.5s;
    color: rgba(255,255,255,1.00);
    -webkit-box-shadow: 1px 1px 5px rgba(19,33,44,0.37);
    box-shadow: 1px 1px 5px rgba(19,33,44,0.37);
}

.call-btn-profile{
    width: 100px;
    opacity: 0.9;
    -webkit-box-shadow: 0px 0px 100px #F9C303;
    box-shadow: 0px 0px 100px #F9C303;
    border-radius: 111px;
    margin-top: 30px;
}

.call-btn-profile:hover{
    opacity: 0.8;
    -webkit-box-shadow: 0px 0px 100px #3DCCF7;
    box-shadow: 0px 0px 100px #3DCCF7;
    border-radius: 117px;
}

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

.new {
    background-image: -webkit-linear-gradient(58deg,rgba(255,210,0,1.00) 0.88%,rgba(255,221,0,1.00) 10.30%,rgba(255,205,0,1.00) 30.19%,rgba(255,224,0,1.00) 63.74%,rgba(255,202,0,1.00) 85.83%,rgba(255,206,0,1.00) 100%);
    background-image: -moz-linear-gradient(58deg,rgba(255,210,0,1.00) 0.88%,rgba(255,221,0,1.00) 10.30%,rgba(255,205,0,1.00) 30.19%,rgba(255,224,0,1.00) 63.74%,rgba(255,202,0,1.00) 85.83%,rgba(255,206,0,1.00) 100%);
    background-image: -o-linear-gradient(58deg,rgba(255,210,0,1.00) 0.88%,rgba(255,221,0,1.00) 10.30%,rgba(255,205,0,1.00) 30.19%,rgba(255,224,0,1.00) 63.74%,rgba(255,202,0,1.00) 85.83%,rgba(255,206,0,1.00) 100%);
    background-image: linear-gradient(32deg,rgba(255,210,0,1.00) 0.88%,rgba(255,221,0,1.00) 10.30%,rgba(255,205,0,1.00) 30.19%,rgba(255,224,0,1.00) 63.74%,rgba(255,202,0,1.00) 85.83%,rgba(255,206,0,1.00) 100%);
    display: inline-block;
    padding-top: 7px;
    padding-bottom: 5px;
    padding-right: 15px;
    padding-left: 15px;
    position: absolute;
    float: left;
    font-size: 12px;
}

.divider{
    border-bottom: thin solid #EAE8E8;
    padding-top: 0px;
    padding-bottom: 0px;
}

.flipbook-iframe{
    display: flex;
    align-content: center;
    align-items: center;
    width: 100vw;
    border-color: #000000;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.insert-email {
    color: rgba(255,255,255,1.00);
    border-bottom: thin solid rgba(255,255,255,0.29);
    text-align: center;
}

.no-bg {
    background-color: rgba(0,0,0,0.00);
}

.no-border {
    border-color: rgba(0,0,0,0.00);
}

.map-embed-100vw {
    width: 100vw;
    margin-left: -12px;
    margin-bottom: -56px;
    opacity: 1;
    margin-top: 50px;
}

.z-in--1{
    z-index: -1;
}

.z-in-1{
   z-index: 1; 
}

.z-in-2{
    z-index: 2;    
}

.z-in-3{
   z-index: 3;     
}

.z-in-4{
   z-index: 4;     
}

.z-in-5{
    z-index: 5;    
}

.z-in-6{
    z-index: 6;    
}

.countdown-text {
    font-size: 36px;
    color: #141414;
    letter-spacing: 1px;
    margin-top: 200px;
    text-align: center;
}

.countdown {
    font-size: 85px;
    font-weight: lighter;
    text-transform: none;
    color: rgba(255,255,255,1.00);
    text-align: center;
    padding-bottom: 40px;
}

/*--------------------------------
Responsive Media Styles
--------------------------------*/

/* Medium Device: 1200px */
@media only screen and (max-width: 1200px) {
.countdown-text {
    font-size: 30px;
    text-align: center;
    }
.countdown {
    font-size: 90px;
    text-align: center;
    margin-bottom: 0px;
}
}

/* Medium Device: 900px */
@media only screen and (max-width: 900px) {
.countdown-text {
    font-size: 25px;color: #FFFFFF;
    text-align: center;
    }
.countdown {
    font-size: 70px;
    text-align: center;
    margin-bottom: 0px;
}    
}        

/* Medium Device: 700px */
@media only screen and (max-width: 700px) {
.countdown-text {
    font-size: 25px;
    color: #FFFFFF;
    text-align: center;
    }
.countdown {
    font-size: 60px;
    text-align: center;
    margin-bottom: 0px;
}    
}    

/* Medium Device: 600px */
@media only screen and (max-width: 600px) {
.countdown-text {
    font-size: 25px;
    color: #FFD400;
    text-align: center;
    }
.countdown {
    font-size: 50px;
    text-align: center;
    margin-bottom: 0px;
}       
}    

/* Medium Device: 500px */
@media only screen and (max-width: 500px) {
.countdown-text {
    font-size: 20px;
    color: #FFD400;
    text-align: center;
    }
.countdown {
    font-size: 30px;
    text-align: center;
    margin-bottom: 0px;
}       
}
    
/* Tablet Device: 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {

}

/* Large Mobile: 480px */
@media only screen and (max-width: 767px) {

}

/* Small Mobile: 320px */
@media only screen and (max-width: 479px) {

}

/*--------------------------------
Music Box
--------------------------------*/

#mobile-box {
  width: 360px;
}

.card {
    width: 250px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.card .view {
  -webkit-border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  border-top-right-radius: 10px;
}

.card h5 a {
  color: #0d47a1;
}

.card h5 a:hover {
  color: #072f6b;
}

#pButton {
  float: left;
}

#timeline {
  width: 90%;
  height: 2px;
  margin-top: 20px;
  margin-left: 10px;
  float: left;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.3);
}

#pButton {
  margin-top: 12px;
  cursor: pointer;
}

#playhead {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-top: -3px;
  background: black;
  cursor: pointer;
}

.opacity-35 {
    opacity: 0.35;
}
.copyright {
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
#venue {
    padding: 60px 10px 80px;
    background-image: -webkit-linear-gradient(30deg,rgba(16,22,34,0.95) 0%,rgba(16,22,34,0.95) 100%), url(../img/dark-denim-3.png);
    background-image: -moz-linear-gradient(30deg,rgba(16,22,34,0.95) 0%,rgba(16,22,34,0.95) 100%), url(../img/dark-denim-3.png);
    background-image: -o-linear-gradient(30deg,rgba(16,22,34,0.95) 0%,rgba(16,22,34,0.95) 100%), url(../img/dark-denim-3.png);
    background-image: linear-gradient(60deg,rgba(16,22,34,0.95) 0%,rgba(16,22,34,0.95) 100%), url(../img/dark-denim-3.png);
    background-color: rgba(16,22,34,1.00);
    margin-top: -70px;
}
/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
#photos {
    background-image: -webkit-linear-gradient(30deg,rgba(0,17,20,0.70) 0%,rgba(26,0,26,0.70) 100%), url(../img/kirk_padmore_patrice_roberts_ken_simmons_desktop.jpg);
    background-image: -moz-linear-gradient(30deg,rgba(0,17,20,0.70) 0%,rgba(26,0,26,0.70) 100%), url(../img/kirk_padmore_patrice_roberts_ken_simmons_desktop.jpg);
    background-image: -o-linear-gradient(30deg,rgba(0,17,20,0.70) 0%,rgba(26,0,26,0.70) 100%), url(../img/kirk_padmore_patrice_roberts_ken_simmons_desktop.jpg);
    background-image: linear-gradient(60deg,rgba(0,17,20,0.70) 0%,rgba(26,0,26,0.70) 100%), url(../img/kirk_padmore_patrice_roberts_ken_simmons_desktop.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 75vh;
    background-position: 50% 0%;
}


@media (max-width: 800px) {
    #photos {
    background-image: -webkit-linear-gradient(30deg,rgba(0,17,20,0.70) 0%,rgba(26,0,26,0.70) 100%), url(../img/kirk_padmore_patrice_roberts_ken_simmons_mobile.jpg);
    background-image: -moz-linear-gradient(30deg,rgba(0,17,20,0.70) 0%,rgba(26,0,26,0.70) 100%), url(../img/kirk_padmore_patrice_roberts_ken_simmons_mobile.jpg);
    background-image: -o-linear-gradient(30deg,rgba(0,17,20,0.70) 0%,rgba(26,0,26,0.70) 100%), url(../img/kirk_padmore_patrice_roberts_ken_simmons_mobile.jpg);
    background-image: linear-gradient(60deg,rgba(0,17,20,0.70) 0%,rgba(26,0,26,0.70) 100%), url(../img/kirk_padmore_patrice_roberts_ken_simmons_mobile.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 75vh;
    background-position: 50% 50%;
}
}

#venue .container-fluid {
    margin-bottom: 3px;
}

#venue .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

#venue .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

#venue .venue-info:before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#venue .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 574px) {
  #venue .venue-info h3 {
    font-size: 24px;
  }
}


#venue .venue-info p {
  color: #fff;
  margin-bottom: 0;
}

#venue .venue-gallery-container {
    /* [disabled]padding-right: 12px; */
    width: auto;
    max-width: 1250px;
}

#venue .venue-gallery {
    overflow: hidden;
}

#venue .venue-gallery img {
    transition: all ease-in-out 0.4s;
    opacity: 0.8;
}

#venue .venue-gallery:hover img {
    transform: scale(1.1);
    opacity: 1;
}

#venue .sub-heading {
    font-size: 14px;
    margin-top: -10px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

#gallery {
    padding-top: 50px;
    padding-bottom: 100px;
    background-image: -webkit-linear-gradient(30deg,rgba(16,22,34,0.93) 0%,rgba(16,22,34,0.93) 99.95%), url(../img/dark-denim-3.png);
    background-image: -moz-linear-gradient(30deg,rgba(16,22,34,0.93) 0%,rgba(16,22,34,0.93) 99.95%), url(../img/dark-denim-3.png);
    background-image: -o-linear-gradient(30deg,rgba(16,22,34,0.93) 0%,rgba(16,22,34,0.93) 99.95%), url(../img/dark-denim-3.png);
    background-image: linear-gradient(60deg,rgba(16,22,34,0.93) 0%,rgba(16,22,34,0.93) 99.95%), url(../img/dark-denim-3.png);
    background-repeat: repeat;
    background-color: rgba(16,22,34,1.00);
    margin-top: 1px;
}

#gallery .container-fluid {
    margin-bottom: 120px;
}

#gallery .gallery-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

#gallery .gallery-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

#gallery .gallery-info:before {
  content: "";
  background: rgba(13, 20, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#gallery .gallery-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 574px) {
  #gallery .gallery-info h3 {
    font-size: 24px;
  }
}


#gallery .gallery-info p {
  color: #fff;
  margin-bottom: 0;
}

#gallery .gallery-gallery-container {
}

#gallery .gallery-gallery {
    overflow: hidden;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
#gallery .gallery-gallery img {
    transition: all ease-in-out 0.4s;
    opacity: 0.8;
    z-index: -5;
}

#gallery .gallery-gallery:hover img {
    transform: scale(115%);
    opacity: 1;
    z-index: -3;
}

#gallery .sub-heading {
    font-size: 14px;
    margin-top: -10px;
}

#gallery .gallery-col {
    background-color: rgba(0,0,0,0.00);
    margin-top: -10px;
    padding-left: 4px;
    padding-right: 4px;
}
#gallery .gallery-col:hover  {
}

#gallery .gallery-title {
    z-index: 385;
    color: rgba(255,255,255,1.00);
    font: normal  normal 14px Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-shadow: 1px 1px 10px rgba(18,13,17,0.30);
    padding-bottom: 5px;
    text-align: center;
    border-top-color: rgba(242,5,67,1.00);
    border-top-style: solid;
    padding-left: 0px;
    padding-top: 6px;
    margin-top: 1px;
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
#gallery {
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
}

#gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #F20544;
}

#gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #F20544;
}

#gallery .swiper-slide-active {
  text-align: center;
}

#gallery .sub-heading {
    font-size: 12px;
}

@media (min-width: 992px) {
  #gallery .swiper-wrapper {
    padding: 40px 0;
  }

  #gallery .swiper-slide-active {
    border: 5px solid #F20544;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.15);
    margin-top: 6px;
  }
}

.gallery-gallery {
    overflow: hidden;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.gallery-gallery img {
    transition: all ease-in-out 0.4s;
    /* [disabled]opacity: 0.8; */
    z-index: -5;
}

.gallery-gallery:hover img {
    transform: scale(115%);
    /* [disabled]opacity: 1; */
    z-index: -3;
}

 .img-contain {
    overflow: hidden;
}

.box {
}

.img-contain {
    object-fit: cover;
}
.img-thumb {
}
.hero-lg {
}
.slider-lg {
    position: absolute;
    z-index: 235;
    bottom: 0px;
}
.header-img-lg {
}
.img-header-lg {
}
.bg-img {
    background-image: -webkit-linear-gradient(270deg,rgba(30,32,36,0.00) 42.94%,rgba(30,32,36,1.00) 99.37%), url(../img/KIRKY-5035-bg.jpg);
    background-image: -moz-linear-gradient(270deg,rgba(30,32,36,0.00) 42.94%,rgba(30,32,36,1.00) 99.37%), url(../img/KIRKY-5035-bg.jpg);
    background-image: -o-linear-gradient(270deg,rgba(30,32,36,0.00) 42.94%,rgba(30,32,36,1.00) 99.37%), url(../img/KIRKY-5035-bg.jpg);
    background-image: linear-gradient(180deg,rgba(30,32,36,0.00) 42.94%,rgba(30,32,36,1.00) 99.37%), url(../img/KIRKY-5035-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 13% center;
    height: 100vh;
}

/* Large Mobile: 480px */
@media only screen and (max-width: 767px) {

.bg-img {
    background-image: -webkit-linear-gradient(270deg,rgba(30,32,36,0.00) 42.94%,rgba(30,32,36,1.00) 99.37%), url("../img/KIRKY-5035-bg-mobile.jpg");
    background-image: -moz-linear-gradient(270deg,rgba(30,32,36,0.00) 42.94%,rgba(30,32,36,1.00) 99.37%), url(../img/KIRKY-5035-bg-mobile.jpg);
    background-image: -o-linear-gradient(270deg,rgba(30,32,36,0.00) 42.94%,rgba(30,32,36,1.00) 99.37%), url(../img/KIRKY-5035-bg-mobile.jpg);
    background-image: linear-gradient(180deg,rgba(30,32,36,0.00) 42.94%,rgba(30,32,36,1.00) 99.37%), url(../img/KIRKY-5035-bg-mobile.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 13% center;
    height: 100vh;
}
    }

.countdown-section {
    z-index: 727;
    position: relative;
}
.error {
    margin-bottom: 0px;
    margin-top: 400px;
}
.kirky-btn {
    padding: 10px 25px;
    background-image: -webkit-linear-gradient(270deg,rgba(16,19,21,0.90) 0%,rgba(20,23,25,0.90) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(16,19,21,0.90) 0%,rgba(20,23,25,0.90) 100%);
    background-image: -o-linear-gradient(270deg,rgba(16,19,21,0.90) 0%,rgba(20,23,25,0.90) 100%);
    background-image: linear-gradient(180deg,rgba(16,19,21,0.90) 0%,rgba(20,23,25,0.90) 100%);
    border-radius: 50px;
}
.footer-img {
    max-width: 350px;
    max-height: 350px;
}
.contact-select {
    height: 55px;
    border: thin solid #CBC9C9;
    border-radius: 0;
    background-color: #FFFFFF;
    color: #6B6B6B;
}

.what-i-do {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
}
.hero-text {
    letter-spacing: -1.5px;
    color: rgba(51,54,59,1.00);
}
.what-i-do-section {
    background-color: rgba(255,212,0,1.00);
    padding-top: 5px;
    padding-bottom: 5px;
}


.accordion {
  background-color: #FFFFFF;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #AFF3F9; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

/* Create three columns of equal width */
.columns {
  float: left;
  width: 33.3%;
  padding: 8px;
}

/* Style the list */
.price {
    list-style-type: none;
    /* [disabled]border-left: 1px solid #eee; */
    /* [disabled]border-right: 1px solid #eee; */
    /* [disabled]border-bottom: 1px solid #F2F2F2; */
    /* [disabled]border-top: 1px solid #eee; */
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: rgba(248,249,250,1.00);
}

/* Add shadows on hover 
.price:hover {
  box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

/* Pricing header */
.price .header {
    background-color: #111;
    color: white;
    font-size: 25px;
}

/* List items */
.price li {
    /* [disabled]border-bottom: 1px solid #F2F2F2; */
    padding: 10px 20px;
    text-align: center;
    border-radius: 0px;
}

/* Grey list item */
.price .grey {
    font-size: 20px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

/* The "Sign Up" button */
.button {
    /* [disabled]background-color: #04AA6D; */
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

/* Change the width of the three columns to 100%
(to stack horizontally on small screens) */
@media only screen and (max-width: 600px) {
  .columns {
    width: 100%;
  }
}

.kp-gallery-container {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

.kp-main-image img {
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 100%;
  display: inherit;
}

.kp-thumbnail-row {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.kp-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.kp-thumbnail:hover,
.kp-thumbnail.kp-active {
  opacity: 1;
  transform: scale(1.05);
}

.kp-thank-you-section {
    padding: 2rem 1rem;
    background: #fff;
    border-radius: 12px;
    /* [disabled]box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05); */
    text-align: left;
    /* [disabled]-webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05); */
}

.kp-btn-download {
    background-color: #5BBECB;
    color: white;
    font-weight: bold;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    display: inline-block;
    margin: 1rem 0;
    font-size: 20px;
}

.kp-btn-download:hover {
  background-color: #218838;
}

.kp-mailing-form input[type="text"],
.kp-mailing-form input[type="email"] {
  border-radius: 6px;
  padding: 10px;
  border: 1px solid #ccc;
  width: 100%;
  max-width: 100%;
}

.kp-mailing-form button[type="submit"] {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .kp-thumbnail-row {
    justify-content: center;
  }
  .kp-thank-you-section {
    margin-top: 2rem;
  }
}
.buy-me-smoothie-btn-img {
    height: 200px;
    margin-top: 25px;
}
.yellow-highlighted-text-box {
    display: table;
    background-image: -webkit-linear-gradient(270deg,rgba(249,213,0,1.00) 0%,rgba(249,213,0,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(249,213,0,1.00) 0%,rgba(249,213,0,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(249,213,0,1.00) 0%,rgba(249,213,0,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(249,213,0,1.00) 0%,rgba(249,213,0,1.00) 100%);
    padding: 5px 15px;
    color: #1F1F1F;
}
.yellow-highlighted-text-box:hover {
    display: table;
    background-image: -webkit-linear-gradient(270deg,rgba(231,52,41,1.00) 0%,rgba(231,72,63,1.00) 99.95%);
    background-image: -moz-linear-gradient(270deg,rgba(231,52,41,1.00) 0%,rgba(231,72,63,1.00) 99.95%);
    background-image: -o-linear-gradient(270deg,rgba(231,52,41,1.00) 0%,rgba(231,72,63,1.00) 99.95%);
    background-image: linear-gradient(180deg,rgba(231,52,41,1.00) 0%,rgba(231,72,63,1.00) 99.95%);
    padding: 5px 15px;
    color: #FFFFFF;
}
