@media (max-width: 759px) and (orientation: portrait) { body {
    background-image: url(../images/picconcreteMobilePortrait.jpg);
    background-size: cover;
    margin-right: 0%;
    margin-left: 0%;
    margin-top: 0;
}}

@media (max-width: 759px) and (orientation: landscape) { body {
    background-image: url(../images/picconcreteMobileLandscape.jpg);
    background-size: cover;
    margin-right: 0%;
    margin-left: 0%;
    margin-top: 0;
}}

@media (min-width: 760px) { body {
    background-image: url(../images/picconcreteDeskTop.jpg);
    background-size: cover;
    margin-right: 0%;
    margin-left: 0%;
    margin-top: 0;
}}

/* ================================ HEADER ==========================================  */
/* =================================================================================== */
/* =================================================================================== */
/* =================================================================================== */

#locations {
    width: 80%;
    align-content: center;
    height: auto;
    font-family: 'Tangerine', cursive;
}

.booking {
    width: 200px;
    height: 25px;
    float: right;
    padding-top: 6px;
    margin-right: 20px;
    margin-bottom: 10px;
    text-align: center;
    border: white solid 2px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    background-color: black;
    color: whitesmoke;
    border-radius: 5px;
    position: relative;
}

.mobileBooking {
    width: 180px;
    height: 30px;
    float: left;
    padding-top: 0px;
    margin-top: 10px;
    margin-right: 20px;
    margin-bottom: 0px;
    text-align: center;
    border: white solid 2px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    line-height: 20px;
    background-color: black;
    color: whitesmoke;
    border-radius: 5px;
}





.booking:hover {
    border: 2px solid black;
    background-color: whitesmoke;
    color: black;
    transition-duration: 0.0s;
    cursor: pointer;
}

.mobileBooking:hover {
    border: 2px solid black;
    background-color: whitesmoke;
    color: black;
    transition-duration: 0.0s;
    cursor: pointer;
}

header p {
    font-family: 'Tangerine', cursive;
    font-size: 40px;
    color: whitesmoke;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 20px;
}

@media (max-width: 1099px) { header {
    display:none;
}}

/* =================================== NAVIGATION BAR ================================ */
/* =================================================================================== */
/* =================================================================================== */
/* =================================================================================== */

@media (max-width: 1099px) { #navigationBar {
    display: none;
}}

    /* this is the navigation bar div, position it relatively so that items can be positioned absolutely inside it. turn off margins and padding so that it is edge to edge */
#navigationBar {
    position: relative;
    margin: none;
    padding: none;
    height: 25px;
    width: 100%;
    background-color: black;
    z-index: 1;
}

    /* This is the top level list. turn off bullets. unless these are over ruled in the below child lists then they will apply to all ul items */
#navigationBar ul {
    margin: 0;
    padding: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    list-style-type: none;
}

#navigationBar ul > li {
    display: block;
    float: left;
    height: 25px;
    width: 12.5%;
    text-align: center;
}

#navigationBar li > a {
    display: block;
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    border-right: none;
    line-height: 25px;
    font-family: 'Rajdhani', sans-serif;
    color: #cfcfcf;
    font-size: 18px;
    text-decoration: none;
}

    /* hide lists to display none, make them wider so that all text shows */
#navigationBar ul ul {
    margin-top: 0px;
    display: none;
    position: static;
    height: auto;
    width: 200px;
}

    /* style items in sub menu, these will override parent settings */
#navigationBar ul ul li {
    position: relative;
    height: auto;
    width: 100%;
    border: none;
    background-color: black;
}

    /* style links and words on list */
#navigationBar ul ul li > a {
    height: 100%;
    width: 100%;
    line-height: 22px;
    border: none;
    font-size: 14px;
    color: #cfcfcf;
    text-align: left;
}

    /* hover functionality */
#navigationBar li:hover > a {
    color: black;
    background-color: lightgray;
}

#navigationBar li:hover > ul {
    display: block;
    background-color: #606060;
}

/* ================================= RESPONSIVE NAV MENU ============================ */
/* =================================================================================== */
/* =================================================================================== */
/* =================================================================================== */

@media (min-width: 1100px) { #mobileNavigationBar {
    display: none;
}}

#hideLogoWord {
    color: black;
}



nav form { 
    display: flex; 
    width: 100%; 
    background-color: black; 
    align-content: center; 
}

.navmenu a { 
    color: #ffffff; 
    text-decoration: none; 
    
    height: 50px; 
}

.navmenu label { 
    color: #ffffff; 
    text-decoration: none; 
    text-transform: uppercase; 
}

.navmenu .checkboxlabel, [id^=check] { 
    display: none; 
}

.navmenu { 
    margin: 0px auto; 
    padding: 0px; 
    background-color: black; 
    line-height: 50px; 
    color: #ffffff; 
    white-space: nowrap; 
    font-weight: bold; 
    font-family: 'Rajdhani', sans-serif;
}

.navmenu:after { 
    content: ''; 
    display: table; 
    clear: both; 
}

.navmenu ul { 
    position: relative; 
    float: none; 
    padding: 0px; 
    margin: 0px; 
    list-style: none; 
} 

.navmenu ul li { 
    display: inline-block; 
    margin: 0px; 
    background-color: black; 
    width: 16%;
}
  
.navmenu ul li:hover { 
    background-color: black; 
}
  
.navmenu a { 
    display: block; 
    padding: 0px 20px; 
    font-size: 1em; 
    z-index: 10; 
}
  
.navmenu ul li ul li:hover { 
    background-color: grey; 
}
  
.navmenu a:hover { 
    background-color: grey; 
}
  
.navmenu ul li ul { 
    position: absolute; 
    display: none; 
    top: 50px; 
    z-index: 10;
} 
  
.navmenu ul li:hover > ul { 
    display: inherit; 
} 
  
.navmenu ul li ul li { 
    position: relative; 
    float: none; 
    display: list-item; 
    width: auto; 
    background-color: black; 
    z-index: 10;
}
  
.navmenu ul li ul li ul { 
    position: absolute; 
    top: 0px; 
    left: 100%; 
    z-index: 10;
}
  
.navmenu li > label:after { 
    margin-left: 10px; 
    content: '\25bc'; 
}
  
.navmenu li > a:after { 
    margin-left: 10px; 
    content: '\25bc'; 
}
  
.navmenu li ul li a:after { 
    display: inline-block; 
    transform: rotate(270deg); 
}
  
.navmenu li > a:only-child:after { 
    content: ''; 
    z-index: 10;
}

/* below is the menu media queries which run right through the the next section title menu ====== */ 
@media screen and (max-width : 1099px) {
.navmenu { 
    margin: 0px; 
    white-space: normal; 
    word-wrap: break-word !important; width: 100%; 
}

#menuTitle {
    font-size: 0px;
    text-transform: none;
    margin: 0;
    padding: 0;
    line-height: 0px;
}
      
.navmenu a:hover { 
    background-color: grey; 
}
      
.navmenu .topmenu { 
    font-size: 2em; 
    background-color: black; 
}
      
.navmenu .topmenu:after { 
    float: right; 
    content: '\2630'; 
    margin-right: -8px; 
}
      
.navmenu .checkboxlabel + a, .menu { 
    display: none; 
}
      
.navmenu .checkboxlabel { 
    display: block; 
    background-color: black; 
    padding: 0px 20px; 
}

#menu1:hover {
    background-color: grey;
}

#menu2:hover {
    background-color: grey;
}

#menu3:hover {
    background-color: grey;
}

#menu4:hover {
    background-color: grey;
}

#menu5:hover {
    background-color: grey;
}

#menu6:hover {
    background-color: grey;
}

#menu7:hover {
    background-color: grey;
}

#menu8:hover {
    background-color: grey;
}

.navmenu .checkboxlabel:hover { 
    background-color: black; 
}
      
.navmenu [id^=check]:checked + ul { 
    display: block; 
}
      
.navmenu ul li { 
    display: block; 
    width: 100%; 
}
      
.navmenu ul li ul .checkboxlabel, .navmenu ul li ul a { 
    padding: 0px 40px; 
}
      
.navmenu ul li ul li ul { 
    position: relative; 
    left: 0px; 
}
      
.navmenu ul li ul li a { 
    background-color: black; 
}
      
.navmenu ul li ul li ul a { 
    background-color: black; 
}
      
.navmenu ul li ul li .checkboxlabel, .navmenu ul li ul a, .navmenu ul li ul li ul a { 
    padding: 0px 20px; 
    font-size: 1em; 
}
     
.navmenu ul li ul li .checkboxlabel, .navmenu ul li ul a { 
    background-color: black; 
}
      
.navmenu ul li ul { 
    position: static; 
    float: none; 
} 
      
.navmenu ul li ul li:hover > ul, .navmenu ul li:hover > ul { 
    display: none; 
} 
      
.navmenu ul li ul li { 
    display: block; 
    width: 100%; 
}
      
.navmenu ul li ul li ul li { 
    position: static; 
}
      
.navmenu li > label:after { 
    float: right; 
}
      
.navmenu li > a:after { 
    float: right; 
}

.subMenu {
    font-weight: normal;
}
  }

/* =================================HOME PAGE ======================================== */
/* =================================================================================== */
/* =================================================================================== */
/* =================================================================================== */

    /* main pic */
.homePageMainPicContainer {
    height: auto;
    width: 100%;
    position: relative; /* to posn text relative to it */
    z-index: 0;
}

.homePageMainPicContainer img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
}

@media (max-width: 759px) and (orientation: portrait) { #mainHomePicLandscape {
    display: none;
}}

@media (max-width: 759px) and (orientation: landscape) { #mainHomePicPortrait {
    display: none;
}}

@media (min-width: 760px) { #mainHomePicPortrait {
    display: none;
}}

#katieFindlerText {
    position: absolute;
    left: 5%;
    top: 25%;
}

    /* MAIN PAGE ABOUT PIC AND ABOUT TEXT */

#aboutBox {
    width: 100%;
    height: auto;
    }

@media (max-width: 759px) { #aboutBox { /* turn off this section for mobiles */
    display: none;
}}

#aboutBoxInfo {
    width: 100%;
    color: white;
    display: flex;
    margin-bottom: 60px;
}

.aboutBoxInfoWrapper {
    width: 33%;
    padding-left: 1.5%;
    padding-right: 1.5%;
    display: flex;
    justify-items: center;

}

.profilePic {
    width: 100px;
    height: 100px;
    margin: auto;
}

.aboutBoxInfoQuote {
    width: 100%;
    height: 50%;
    display: block;
    text-align: center;   
}

.quoteName {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
}

.quoteContent {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Niconne', cursive;
    font-size: 21px;
}

.description {
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif;
    margin-top: 0px;
    margin-bottom: 21px;
}

    /* main page - Quotes responsive content for mobile screen */
.responsiveQuoteWrapper {
    display: inline-flex;
    width: 100%;
    color: white;
    margin-bottom: 10%;
}

@media (min-width: 760px) { .responsiveQuoteWrapper {
    display: none;
} }

.responsiveQuotePicNameContainer {
    display: inline-block;
    width: 20%;
}

.responsiveQuotePicBox {
    width: 100%;
    padding-top: 0px;
}

.responsiveQuotePicBox img {
    width: 60%;
    margin: auto;
    display: block;
}

@media (max-width: 500px) { .responsiveQuotePicBox img {
    width: 80%; /* this makes pic bigger to match text height */
}}

.responsiveQuoteNameBox {
    display: block;
    width: 100%;
}

.responsiveQuoteContentBox {
    display: block;
    width: 80%;
    padding-right: 5%;
    padding-left: 1%;
}

.responsiveQuoteName {
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
}

.responsiveQuoteDescription {
    margin-top: 2px;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
}

.responsiveQuoteContent {
    font-size: 16px;
    font-family: 'Niconne', cursive;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: justify;
}

    /* MAIN PAGE - ABOUT ME PIC AND FRAME WITH SHORT ABOUT ME TEXT */
#mainPageShortAboutMe {
    width: 96%;
    display: inline-flex;
    margin-top: 20px;
    padding-left: 2%;
    padding-right: 2%;
}

#aboutBoxPic {
    width: 35%;
    height: auto;
    padding-left: 0%;
    margin: auto;
}

@media (max-width: 600px) { #aboutBoxPic {
    display: none;
}}

#aboutBoxPic img {
    width: 100%;
    height: auto;
}


#mobileAboutBoxPic img {
    width: 100%;
    height: auto;
}

#aboutMePictureFrameTextBox {
    width: 50%;
    margin-right: 10%;
    margin-left: 0%;
    padding-top: 2%;
    text-align: justify;
}

@media (max-width: 900px) {
    #aboutMePictureFrameTextBox {
        width: 62%;
        margin-right: 0%;
        margin-left: 3%;
    }
}

@media (max-width: 600px) { #aboutMePictureFrameTextBox {
    width: 80%;
    margin-left: 10%;
} }

#MainPageAboutMeText {
    color: white;
    font-size: 17px;
    font-family: 'Pontano Sans', sans-serif;    
}

@media (max-width: 850px) { #MainPageAboutMeText{
    font-size: 14px;
}}

@media (min-width: 1100px) { #MainPageAboutMeText{
    font-size: 19px;
}}

#aboutMeBioPicMobile {
    width: 100%;
    display: flex;
    margin-bottom: -20px;
}

#aboutMeBioPicMobile img {
    width: auto;
    max-width: 80%;
    height: 150px;
    margin: auto;
}

@media (min-width: 601px) {
    #aboutMeBioPicMobile {
        display: none;
    }
}

    /* MAIN PAGE SECOND LEVEL BLOCK PICS */
.mainSpace {
    height: 70px;
}

@media (min-width: 760px) { #secondBlock {
    width: 94%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding-left: 3%;
    padding-right: 3%;
}} 

@media (max-width: 759px) { #secondBlock { /* turn off second to allow respsonsive second block below*/
    display: none;
}}

@media (max-width: 759px) { .responsiveSecondBlock {
    width: 94%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding-left: 3%;
    padding-right: 3%;
    margin-bottom: 5%; 
}}

@media (min-width: 760px) { .responsiveSecondBlock { /* turn off to allow full screen code second block above */
    display: none;
}}


@media (min-width: 760px) { .workStream {
    width: 23.5%;
    background-color: gray;
    border: 3px black solid;
    display: flex;
}}

@media (max-width: 759px) { .workStream {
    width: 48%;
    background-color: gray;
    border: 2px black solid;
    display: flex;
}}

.workStream:before {
    content: "";
    float: left;
    padding-bottom: 80%;
}

.workStream:after {
    content: "";
    clear: both;
}

@media (min-width: 760px) { .titleBand {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 18px;
    line-height: 28px;
    background-color: black;
    height: 25px;
    text-align: center;
    align-self: flex-end;
    width: 100%;
}}

@media (max-width: 759px) { .titleBand {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 15px;
    line-height: 28px;
    background-color: black;
    height: 25px;
    text-align: center;
    align-self: flex-end;
    width: 100%;
}}

.titleBand p {
    padding: 0;
    margin: 0;
}

.workStream:hover > .titleBand {
    color: black;
    background-color: white;
}

@media (min-width: 760px) { .workStream:hover {
    border: 3px solid white;
    cursor: pointer;
}}

@media (max-width: 759px) { .workStream:hover {
    border: 2px solid white;
    cursor: pointer;
}}

#mainFirst {
    background-image: url(../images/main1.jpg); /* these 4 names below are based on full computer screen */
    background-size: cover;
    background-repeat: no-repeat;
}

#mainSecond {
    background-image: url(../images/test\ 1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#mainThird {
    background-image: url(../images/piano.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#mainForth {
    background-image: url(../images/lessons.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

    /* MAIN PAGE THIRD LEVEL CABARET BOX AND SHOWREEL BOX */
#thirdBlock {
    width: 94%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding-left: 3%;
    padding-right: 3%;
}

@media (max-width: 759px) { #thirdBlock {
    display: none;
}}

#cabaretBox {
    width: 49%;
    background-image: url(../images/cabaretbackground.jpg);
    background-color: black;
    background-size: contain;
    background-repeat: no-repeat;
    border: 3px solid black;
    display: flex;
}

.responsiveThirdBlock {
    width: 94%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding-left: 3%;
    padding-right: 3%;
    margin-bottom: 5%;
}

.responsiveForthBlock {
    width: 94%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding-left: 3%;
    padding-right: 3%;
}

@media (min-width: 760px) { .responsiveThirdBlock {
    display: none;
}}

@media (min-width: 760px) { .responsiveForthBlock {
    display: none;
}}

#responsiveCabaretBox {
    width: 100%;
    background-image: url(../images/cabaretbackground.jpg);
    background-size: contain;
    background-color: black;
    background-repeat: no-repeat;
    border: 2px solid black;
    display: flex; 
}

#responsiveVideoBox {
    width: 100%;
    background-image: url(../images/show5.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: black;
    border: 2px solid black;
    display: flex; 
}

#cabaretBox:before {
    content: "";
    float: left;
    padding-bottom: 50%;
}

#cabaretBox:after {
    content: "";
    clear: both;
}

#responsiveCabaretBox:before {
    content: "";
    float: left;
    padding-bottom: 50%;
}

#responsiveVideoBox:before {
    content: "";
    float: left;
    padding-bottom: 50%;
}

#responsiveCabaretBox:after {
    content: "";
    clear: both;
}

#responsiveVideoBox:after {
    content: "";
    clear: both;
}

@media (max-width: 759px) { #mainSpaceAboveCabaret {
    display: none;
}}

#cabaretTextBox {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 18px;
    line-height: 28px;
    background-color: black;
    height: 25px;
    text-align: center;
    align-self: flex-end;
    width: 100%;
}

#responsiveCabaretTextBox {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 15px;
    line-height: 0px;
    background-color: black;
    height: 25px;
    text-align: center;
    align-self: flex-end;
    width: 100%;
}

#responsiveVideoTextBox {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 15px;
    line-height: 0px;
    background-color: black;
    height: 25px;
    text-align: center;
    align-self: flex-end;
    width: 100%;
}

#cabaretTextBox p {
    padding: 0;
    margin: 0;
}

#responsiveCabaretTextBox {
    padding: 0;
    margin: 0;
}

#responsiveVideoTextBox {
    padding: 0;
    margin: 0;
}

#cabaretBox:hover > #cabaretTextBox {
    color: black;
    background-color: white;
}

#responsiveCabaretBox:hover > #responsiveCabaretTextBox {
    color: black;
    background-color: white;
}

#responsiveVideoBox:hover > #responsiveVideoTextBox {
    color: black;
    background-color: white;
}

#cabaretBox:hover {
    border: 3px solid white;
    cursor: pointer;
}

#responsiveCabaretBox:hover {
    border: 2px solid white;
    cursor: pointer;
}

#responsiveVideoBox:hover {
    border: 2px solid white;
    cursor: pointer;
}

    /* Video Box */

#videoBox {
    width: 49%;
    background-color: black;
    border: 3px solid black;
    background-image: url(../images/show5.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
}

.videoBox:before {
    content: "";
    float: left;
    padding-bottom: 50%;
}

.videoBox:after {
    content: "";
    clear: both;
}

#videoTextBox {
    font-family: 'Rajdhani', sans-serif;
    color: white;
    font-size: 18px;
    line-height: 25px;
    background-color: black;
    height: 25px;
    text-align: center;
    align-self: flex-end;
    width: 100%;
}

#videoTextBox p {
    padding: 0;
    margin: 0;
}

#videoBox:hover > #videoTextBox {
    color: black;
    background-color: white;
}

#videoBox:hover {
    border: 3px solid white;
    cursor: pointer;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


/* ========================================= FOOTER ================================== */
/* =================================================================================== */
/* =================================================================================== */
/* =================================================================================== */

#footerDiv {
    width: 100%;
    height: 195px;
    display: block;
}

#footerUpperPic {
    width: 100%;
    height: 25px;
    background-image: url(../images/keyfootershort.jpg);
    background-size: contain;
    background-repeat: repeat;
}

footer {
    height: 185px;
    width: 100%;
    background-color: black;
    padding-top: 4px;
    color: whitesmoke;
    font-family: 'Pontano Sans', sans-serif;
    font-size: 12px;
    align-content: center;
    text-align: center;
    display: block;
}

footer h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

#servicing {
    font-family: 'Tangerine', cursive;
    font-size: 30px;  
}

#footerEmail {
    text-decoration: none;
    color: white;
    font-family: 'Pontano Sans', sans-serif;
    font-size: 14px;
}

#footerEmail:hover {
    color: blue;
}

.socialIcon {
    height: 40px;
    width: 40px;
    align-content: center;
    filter: grayscale(0%);
}

footer img:hover {
        filter: grayscale(100%);
        cursor: pointer;       
}

@media (max-width: 759px) {

    #footerDiv {
        width: 100%;
        height: 170px;
        display: block;
    }
    
    #footerUpperPic {
        width: 100%;
        height: 25px;
        background-image: url(../images/keyfootershort.jpg);
        background-size: contain;
        background-repeat: repeat;
    }
    
    footer {
        height: 160px;
        width: 100%;
        background-color: black;
        padding-top: 2px;
        color: whitesmoke;
        font-family: 'Pontano Sans', sans-serif;
        font-size: 12px;
        align-content: center;
        text-align: center;
        display: block;
    }
    
    footer h3 {
        font-family: 'Rajdhani', sans-serif;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    #servicing {
        font-family: 'Tangerine', cursive;
        font-size: 24px;  
    }
    
    #footerEmail {
        text-decoration: none;
        color: white;
        font-family: 'Pontano Sans', sans-serif;
        font-size: 12px;
    }
    
    #footerEmail:hover {
        color: blue;
    }
    
    .socialIcon {
        height: 30px;
        width: 30px;
        align-content: center;
        filter: grayscale(0%);
        margin-bottom: 0px;
    }
    
    footer img:hover {
            filter: grayscale(100%);
            cursor: pointer;       
    }
}

/* ============================== PAGE FUNCTIONS ===================================== */
/* =================================================================================== */
/* =================================================================================== */
/* =================================================================================== */

#functionsTitle {
    display: flex;
    width: 100%;
    height: 90px;
    margin-bottom: 20px;
}

@media (max-width: 759px) {
    #functionsTitle {
        height: 60px;
        margin-top: -30px;
    }
}

#functionsTitle img {
    margin: auto;
    height: 100%;
    width: auto;
}

.pageHeader {
    
    font-size: 25px;
    text-align: center;
    color: white;  
}

#tabArea {
	font-family: 'Pontano Sans', sans-serif;
    /* if i want to put a background behind the tab area put it here */
    padding-top: 5px;
    margin-top: 0px;
    padding-bottom: 30px;
}

#tabArea h1 {
	color: #ccc;
	text-align: center;
}

.tabContainer {
	width: 90%;
	margin: 0 auto;
	padding-top: 0px;
	position: relative;
}

.tabContainer label {
    width: 20%;
    display: block;
    float: left;
    background-color: black;
    color: white;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    line-height: 50px;
}

.tabContainer label:hover {
    cursor: pointer;
    background-color: #808080;
}

#tabArea section {
  display: none;
  margin-top: 10px;
  
}

.tabContent h3 {
    text-align: center;
    font-size: 30px;
    font-family: 'Rajdhani', sans-serif;
}

/* make tab a single column */
@media (max-width: 700px) {
    .tabContent h3 {
        font-size: 20px;
    }
}

.tabSectionContainer {
    display: inline-flex;
    justify-content: space-between;
    padding: 2%;
}

/* this makes tab area appear in one single column */
@media (max-width: 700px) { 
    .tabSectionContainer {
        display: block;
        padding: 5%;
    }
}

.tabSectionInfo {
    width: 50%;
}

/* make tab single column */
@media (max-width: 700px) {
    .tabSectionInfo {
        width: 100%;
        margin-top: -5%;
    }
}

.tabPicHeader1 {
    width: 100%;
    height: 300px;
    background-image: url(../images/RetroMicrophone.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeader1 {
        height: 180px;
    }
}

.tabPicHeader2 {
    width: 100%;
    height: 300px;
    background-image: url(../images/piano5.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeader2 {
        height: 180px;
    }
}

.tabPicHeader3 {
    width: 100%;
    height: 300px;
    background-image: url(../images/guitar.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeader3 {
        height: 180px;
    }
}

.tabPicHeader4 {
    width: 100%;
    height: 300px;
    background-image: url(../images/guitarAndPiano1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeader4 {
        height: 180px;
    }
}

.tabPicHeader5 {
    width: 100%;
    height: 300px;
    background-image: url(../images/main1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeader5 {
        height: 180px;
    }
}


.tabSectionPictureBox {
    width: 40%;
    contain: content;
}

/* make tab a single column */
@media (max-width: 700px) {
    .tabSectionPictureBox {
        width: 100%;
    }
}

.tabSectionPictureBox img {
    width: 100%;
    height: auto;
    padding-top: 20px;
}

/* make tab a single column */
@media (max-width: 700px) {
    .tabSectionPictureBox img {
        width: 90%;
        margin-left: 5%;
    }
}

.paraPrice {
    border: double black 4px;
    width: fit-content;
    padding: 5px;
    float: right;
}

.tabPriceQuote {
    font-size: 20px;
    font-weight: 500;
}

.tabContainer input {
    display: none;
}

#tab1:checked ~ #tabLabel1,  /*this is how i change labels on click*/
#tab2:checked ~ #tabLabel2,
#tab3:checked ~ #tabLabel3,
#tab4:checked ~ #tabLabel4,
#tab5:checked ~ #tabLabel5 {
    background-color: #e7e7e7;
    color: black;
}

@media (max-width: 600px) { 
    #tab1:checked ~ #tabLabel1,  /*this is how i change labels on click*/
    #tab2:checked ~ #tabLabel2,
    #tab3:checked ~ #tabLabel3,
    #tab4:checked ~ #tabLabel4,
    #tab5:checked ~ #tabLabel5 {
        background-color: #b8b8b8;
        color: black;
}}

h5 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: -5px;
}

/* make tab a single column */
@media (max-width: 700px) {
    h5 {
        font-size: 14px;
        font-family: 'Rajdhani', sans-serif;
        margin-top: 40px;
        margin-bottom: -5px;
    }
}

.tabContent p {
    text-align: justify;
    font-family: 'Pontano Sans', sans-serif;
    font-size: 16px;
}

/* make tab a single column */
@media (max-width: 700px) {
    .tabContent p {
        font-size: 12px;
        text-align: justify;
        font-family: 'Pontano Sans', sans-serif;
        font-size: 14px;
    }
}

#tab1:checked ~ #content1, 
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5 {
  display: block;
  padding-top: 50px; /* take into consideration line height of tabs, currently set at 50px as well */
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  background-color: #e7e7e7;
  color: black;
}

.tabSectionInfo, img, h3 {
    -webkit-animation: fadeInScale 0.5s ease-in-out;
    -moz-animation: fadeInScale 0.5s ease-in-out;
    animation: fadeInScale 0.5s ease-in;
}

/*Content Animation for tab area*/
@keyframes fadeInScale {
  0% {
  	transform: scale(0.9);
  	opacity: 0;
  }
  
  100% {
  	transform: scale(1);
  	opacity: 1;
  }
}

/* media queries to make icons in tab area appear on smaller screen size. words turn off and black and white icons change between them when selected/hover */

@media (max-width: 600px) { 
    .tabWord {
        display: none;
    }

    .tabWhite {
        display: block;
    }

    .tabBlack {
        display: none;
    }
}

.tabWhite {
    height: 24px;
    margin: auto;
    padding-top: 14px;
    padding-bottom: 14px;
}

.tabBlack {
    height: 24px;
    margin: auto;
    padding-top: 13px;
    padding-bottom: 13px;
}



@media (min-width: 601px) { 
    .tabWhite {
        display: none;
    }

    .tabBlack {
        display: none;
    }
}

@media (max-width: 600px) { 
    #tab1:checked ~ .tabWhite,  /*this is how i change labels on click*/
    #tab2:checked ~ .tabWhite,
    #tab3:checked ~ .tabWhite,
    #tab4:checked ~ .tabWhite,
    #tab5:checked ~ .tabWhite {
        display: none;
}}

@media (max-width: 600px) { 
    #tab1:checked ~ .tabBlack,  /*this is how i change labels on click*/
    #tab2:checked ~ .tabBlack,
    #tab3:checked ~ .tabBlack,
    #tab4:checked ~ .tabBlack,
    #tab5:checked ~ .tabBlack {
        display: block;
    }}

/* comments/testimonials section */

.testimonialsTitle {
    display: flex;
    width: 100%;
    height: 80px;
    margin-bottom: 5%;
}

@media (max-width: 750px) {
    .testimonialsTitle {
        height: 50px;
        margin-bottom: 10%;
    }
}

.testimonialsTitle img {
    margin: auto;
    height: 100%;
    width: auto;
    }

.swigalContainer {
    display: flex;
    width: 100%;
    height: 90px;
    margin-bottom: 1%;
}

@media (max-width: 750px) {
    .swigalContainer  {
        height: 50px;
        margin-bottom: 4%;
    }
}

@media (max-width: 450px) {
    .swigalContainer  {
        height: 45px;
        margin-bottom: 5%;
    }
}

.swigalContainer img {
    margin: auto;
    height: 100%;
    width: auto;
}

.commentsContainer {
    width: 90%;
    margin-left: 5%;
    display: inline-flex;
    justify-content: space-between; 
    margin-bottom: 3%; 
}

@media (max-width: 750px) { 
    .commentsContainer {
        display: none;
    }
}

.commentBox {
    width: 23%;
    display: flex;
    background-image: url(../images/test1.png);
    background-size: 100%;
    background-repeat: repeat-y;
}

.commentBox p {
    padding: 10%;
    margin: 0;
    color: #c0bfbf;
    font-family: 'Niconne', cursive;
    font-size: 17px;
}

.nameQ {
    color: white;
    font-size: 17px;
    font-family: 'Niconne', cursive;
    float: left;
    margin-right: 10px; 
}

/* mobile comments container */

.mobileCommentsContainer {
    width: 90%;
    margin-left: 5%;
    display: inline-flex;
    justify-content: space-between; 
    margin-bottom: 3%; 
}

@media (min-width: 751px) {
    .mobileCommentsContainer {
        display: none;
    }
}

.mobileCommentBox {
    width: 48%;
    display: flex;
    background-image: url(../images/test1.png);
    background-size: 100%;
    background-repeat: repeat-y;
    
}

.mobileCommentBox p {
    padding: 10%;
    margin: 0;
    color: #c0bfbf;
    font-family: 'Niconne', cursive;
    font-size: 15px;
}

.mobileNameQ {
    color: white;
    font-size: 15px;
    font-family: 'Niconne', cursive;
    float: left;
    margin-right: 10px; 
}

/* ==================================== WEDDING PAGE ================================= */
/* =================================================================================== */
/* =================================================================================== */
/* =================================================================================== */ 

    /* this copied and pasted from function tab page, CSS is the same and only changed for features below, class/id names modified to allow below items to be changed. weddingtab CSS code added to media query on functions page */

#weddingsTitle {
    display: flex;
    width: 100%;
    height: 120px;
    margin-bottom: 5px;
}

@media (max-width: 759px) {
    #weddingsTitle {
        height: 60px;
        margin-top: -30px;
    }
}
    
#weddingsTitle img {
    margin: auto;
    height: 100%;
    width: auto;
    }

.weddingTabContainer {
    width: 90%;
    margin: 0 auto;
    padding-top: 0px;
    position: relative;
}


.tabPicHeaderWedding1 {
    width: 100%;
    height: 300px;
    background-image: url(../images/pianoAndRose.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeaderWedding1 {
        height: 180px;
    }
}

.tabPicHeaderWedding2 {
    width: 100%;
    height: 300px;
    background-image: url(../images/hearts3.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeaderWedding2 {
        height: 180px;
    }
}

.tabPicHeaderWedding3 {
    width: 100%;
    height: 300px;
    background-image: url(../images/flowersAndHands.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeaderWedding3 {
        height: 180px;
    }
}
    
.weddingTabContainer label {
    width: 33.3333%;
    display: block;
    float: left;
    background-color: black;
    color: white;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    line-height: 50px;
}
    
.weddingTabContainer label:hover {
    cursor: pointer;
    background-color: #808080;
}  

.weddingTabContainer input {
    display: none;
}

.weddingTabContainer input {
    display: none;
}

.weddingPriceAddInfo {
    font-size: 10px;
}

.weddingPackageTitle {
    text-align: center;
}

/* make content single column */
@media (max-width: 700px) {
    .tabSectionInfo h3 {
        font-size: 15px;
    }

    .tabSectionInfo li {
        font-size: 12px;
    }
}

/* swigal after each package */

.packageSwigal {
    display: flex;
    width: 100%;
    height: 30px;
    margin-top: 60px;
    margin-bottom: 20px;
}

@media (max-width: 759px) {
    .packageSwigal {
        height: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
}
    
.packageSwigal img {
    margin: auto;
    height: 100%;
    width: auto;
    }



/* =============================== LESSONS PAGE ====================================== */
/* =================================================================================== */
/* =================================================================================== */
/* =================================================================================== */

    /* this copied and pasted from function tab page (same as Weddings tab, CSS is the same and only changed for features below, class/id names modified to allow below items to be changed. weddingtab CSS code added to media query on functions page */
#lessonsTitle {
    display: flex;
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
}

@media (max-width: 759px) {
    #lessonsTitle {
        height: 60px;
        margin-top: -30px;
    }
}
    
#lessonsTitle img {
    margin: auto;
    height: 100%;
    width: auto;
}


.lessonsTabContainer {
    width: 90%;
    margin: 0 auto;
    padding-top: 0px;
    position: relative;
}
        
.lessonsTabContainer label {
    width: 25%;
    display: block;
    float: left;
    background-color: black;
    color: white;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    line-height: 50px;
}
        
.lessonsTabContainer label:hover {
    cursor: pointer;
    background-color: #808080;
}  
    
.lessonsTabContainer input {
    display: none;
}
    
.lessonsTabContainer input {
    display: none;
}

#workshopTableContainer {
    display: flex;
    justify-content: center;
}

.tabPicHeaderLessons1 {
    width: 100%;
    height: 300px;
    background-image: url(../images/RetroMicrophone.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeaderLessons1 {
        height: 180px;
    }
}

.tabPicHeaderLessons2 {
    width: 100%;
    height: 300px;
    background-image: url(../images/piano3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeaderLessons2 {
        height: 180px;
    }
}

.tabPicHeaderLessons3 {
    width: 100%;
    height: 300px;
    background-image: url(../images/lessonsbanner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeaderLessons3 {
        height: 180px;
    }
}

.tabPicHeaderLessons4 {
    width: 100%;
    height: 300px;
    background-image: url(../images/workshopBanner.jpg);
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: bottom;
    background-size: cover;
    display: flex;
    margin: 0;
    padding: 0;
}

@media (max-width: 759px) { 
    .tabPicHeaderLessons4 {
        height: 180px;
    }
}


#workshopTable {
    border-spacing: 0;
    padding: 0;
    border: solid black 1px;
}

#workshopTable th {
    background-color: black;
    color: white;
    padding: 5px;
}

/* make table smaller for mobile */
@media (max-width: 700px) {
    #workshopTable th {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    #workshopTable th {
        font-size: 8px;
    }
}

@media (max-width: 300px) {
    #workshopTable th {
        font-size: 6px;
    }
}

#workshopTable td {
    border: black solid 1px;
    padding: 5px;
    background: lightgray;
}

/* make table smaller for mobile */
@media (max-width: 700px) {
    #workshopTable td {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    #workshopTable td {
        font-size: 8px;
    }
}

@media (max-width: 300px) {
    #workshopTable td {
        font-size: 6px;
    }
}

#workshopTable button {
    align-self: center;
}

/* make table smaller for mobile */
@media (max-width: 700px) {
    #workshopTable button {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    #workshopTable button {
        font-size: 8px;
    }
}

@media (max-width: 300px) {
    #workshopTable button {
        font-size: 6px;
    }
}



/* =============================== ABOUT ME PAGE ===================================== */
/* =================================================================================== */
/* =================================================================================== */
/* =================================================================================== */

#aboutMeMainPic {
    background-image: url(../images/aboutMeBus.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    height: 700px;
    width: 100%;
}

/* reduce height of main pic for mobile */
@media (max-width: 1000px) {
    #aboutMeMainPic {
        height: 400px;
    }
}

/* increase height for wide screen */
@media (min-width: 1400px) {
    #aboutMeMainPic {
        height: 800px;
    }
}

#aboutMeInfoBox {
    position: relative;
    float: right;
    margin-right: 100px;
    height: 450px;
    width: 400px;
    margin-top: 50px;
    background-color: black;
    filter: opacity(70%);
    text-align: center;
    color: white;
    font-family: 'Pontano Sans', sans-serif;
}

/* resize for mobile */
@media (max-width: 1000px) {
    #aboutMeInfoBox {
        margin-right: 5%;
        height: 270px;
        width: 220px;
        margin-top: 65px;
        font-size: 12px;
    }
}

#aboutMeInfoBox p {
    margin-bottom: -5px;
    font-size: 18px;
}

@media (max-width: 1000px) {
    #aboutMeInfoBox p {
        font-family: 'Pontano Sans', sans-serif;
        font-size: 12px;
    }
}

.emailAddress {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

/* resize for mobile */
@media (max-width: 1000px) {
    .emailAddress {
        font-size: 12px;
    }
}

.emailAddress:hover {
    color: blue;
}

#aboutMeInfoBox img {
    margin-left: 55px;
    margin-top: 20px;  
    max-width: 100%;
    margin-bottom: 0px;
}

/* recenter logo for mobile and move email/icons up towards logo*/
@media (max-width: 1000px) {
    #aboutMeInfoBox img {
        margin-left: 35px;
        margin-bottom: -10px;
    }
}

#icons img {
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 20px;
    filter: grayscale(100%)
}

/* turn off space <br> above icons for mobile */
@media (max-width: 1000px) {
    #spaceAboveIconsFullScreen {
        display: none;
    }
}

#icons img:hover {
    filter: opacity(100%);
    filter: grayscale(0%);
    cursor: pointer;
}

#aboutMeTitle {
    display: flex;
    width: 100%;
    height: 150px;
    margin-top: 30px;
}

@media (max-width: 759px) {
    #aboutMeTitle {
        height: 80px;
    }
}

@media (max-width: 400px) {
    #aboutMeTitle {
        height: 60px;
    }
}

#aboutMeTitle img {
    margin: auto;
    height: 100%;
    width: auto;
}

#aboutMeSpace {
    height: 10px;
}


    /* this is the second level, 1 large div with 2 inside for text box left and pic box right */
#aboutMeSecondLevelBox {
    display: inline-flex;
    width: 96%;
    padding-left: 2%;
    padding-right: 2%;
    margin-bottom: 5%;
}

/* reduce the size of gap between about me bio text and image slider */
@media (max-width: 800px) {
    #aboutMeSecondLevelBox {
        margin-bottom: -5%;
    }
}

#aboutMeTextBox {
    margin-top: 50px;
    margin-bottom: 100px;
    width: 54%;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 2%;
    padding-bottom: 2%;
    color: #e7e7e7;
    font-size: 16px;
    font-family: 'Pontano Sans', sans-serif;
    text-align: justify;
}

/* make text box full width of mobile screen */
@media (max-width: 800px) {
    #aboutMeTextBox {
        width: 94%;
        margin-top: 20px;
        border: black 1% solid;
        font-size: 15px;
        font-family: 'Pontano Sans', sans-serif;
    }
}

#aboutMePicBox {
    width: 35%;
    padding-left: 5%;   
}

/* turn off #aboutMePicBox for mobile */
@media (max-width: 800px) {
    #aboutMePicBox {
        display: none;
    }
}

/* this is mobile aboutMePicBox */
#mobileAboutMePicBox {
    height: 350px;
    display: flex;
    margin-top: 5%;   
    padding: 0;
}

/* turn #mobileAboutMePicBox off for full screen */
@media (min-width: 801px) {
    #mobileAboutMePicBox {
        display: none;
    }
}

#aboutMePicBox img {
    width: 80%;
    height: auto;
    padding-left: 5%;
    padding-top: 70px;
}

#mobileAboutMePicBox img {
    margin: auto;
    height: 100%;
    display: block;
}

    /* --------- building the image slider ----------- */

/*jssor slider loading skin spin css*/
.jssorl-009-spin img {
    animation-name: jssorl-009-spin;
    animation-duration: 20.6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes jssorl-009-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*jssor slider arrow skin 051 css*/
.jssora051 {display:block;position:absolute;cursor:pointer;}
.jssora051 .a {fill:none;stroke:#fff;stroke-width:360;stroke-miterlimit:10;}
.jssora051:hover {opacity:.8;}
.jssora051.jssora051dn {opacity:.5;}
.jssora051.jssora051ds {opacity:.3;pointer-events:none;}

/*jssor slider thumbnail skin 111 css*/
.jssort111 .p {position:absolute;top:0;left:0;width:200px;height:100px;background-color:#000;}
.jssort111 .p img {position:absolute;top:0;left:0;width:100%;height:100%;}
.jssort111 .t {position:absolute;top:0;left:0;width:100%;height:100%;border:none;opacity:.45;}
.jssort111 .p:hover .t{opacity:.8;}
.jssort111 .pav .t, .jssort111 .pdn .t, .jssort111 .p:hover.pdn .t{opacity:1;}
.jssort111 .ti {position:absolute;bottom:0px;left:0px;width:100%;height:28px;line-height:28px;text-align:center;font-size:12px;color:#fff;background-color:rgba(0,0,0,.3)}
.jssort111 .pav .ti, .jssort111 .pdn .ti, .jssort111 .p:hover.pdn .ti{color:#000;background-color:rgba(255,255,255,.6);}
   
#sliderContainer {
    display: flex;
    width: 80%;
    padding: 5%;
    border: solid black 15px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15%;
    margin-top: 0;
}

/* this will reduce the image slider border size as the screen width reduces */
@media (max-width: 1000px) {
    #sliderContainer {
        border: solid black 10px;
    }
}

@media (max-width: 800px) {
    #sliderContainer {
        border: solid black 8px;
        padding: 4%;
    }
}

@media (max-width: 600px) {
    #sliderContainer {
        border: solid black 6px;
    }
}

@media (max-width: 400px) {
    #sliderContainer {
        border: solid black 4px;
    }
}

@media (max-width: 200px) {
    #sliderContainer {
        border: solid black 3px;
        padding: 3%;
    }
}

/* ==================================== FAQ PAGE =================================== */
/* ================================================================================= */
/* ================================================================================= */
/* ================================================================================= */

#faqMainPic {
    width: 100%;
    height: 500px;
    background-image: url(../images/FAQQ.jpg);
    background-repeat: no-repeat;
    background-position-x: center;
    background-size: cover;
}

@media (max-width: 1000px) { 
    #faqMainPic {
        height: 300px;
    }
}

#faqMainPic img {
    position: block;
    width: 100%;
    height: 500px;
    padding-left: 0%;
    padding-right: 0%;
    padding-top: 0px;
    padding-bottom: 0px;
}

#faqTitle {
    display: flex;
    width: 100%;
    height: 110px;
    margin-top: 30px;
    margin-bottom: 70px;
}

@media (max-width: 759px) {
    #faqTitle {
        height: 60px;
        margin-top: 35px;
    }
}

#faqTitle img {
    margin: auto;
    height: 100%;
    width: auto;
}

#faqTopContainer {
    display: flex;
    width: 100%;
    margin-bottom: 50px;
}

#faqHeaderTopics {
    display: block;
    width: 100%;
    color: white;
    font-size: 24px;
    font-family: 'Rajdhani', sans-serif;
    margin-top: 0px;
    text-align: center;
}

#faqHeaderTopics h4 {
    cursor: pointer;
    padding-top: 0px;
    margin-top: 0px;
}

/* reduce font size for mobile */
@media (max-width: 759px) {
    #faqHeaderTopics h4 {
        font-size: 16px;
        margin-top: 0;
        padding-top: 0;
    }
}

#faqHeaderTopics h4 > a {
    text-decoration: none;
    color: white;
}

#questionsContainer {
    width: 90%;
    margin: auto;
}

.questionsHeader {
    background-color: black;
    color: white;
    width: 100%;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px; 
}

.questionsHeader h5 {
    font-size: 24px;
    line-height: 50px;
    margin-bottom: 0px;
    margin-top: 0px;
    font-family: 'Rajdhani', sans-serif; 
}

/* reduce font size for mobile */
@media (max-width: 759px) {
    .questionsHeader h5 {
        font-size: 16px;
    }
}

.questionsAndAnswers {
    background-color: white;
    color: black;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 30px;
    padding-top: 30px;
    font-family: 'Pontano Sans', sans-serif;
    font-size: 18px;
}

@media (max-width: 759px) {
    .questionsAndAnswers {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .questionsAndAnswers {
        font-size: 12px;
    }
}

.questionsAndAnswers p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.Q {
    padding-top: 15px;
    padding-bottom: 15px;
}

.A {
    padding-bottom: 30px;
}

.upArrow {
    float: right;
    margin-right: 2%;
}

.upArrow > a {
    text-decoration: none;
    color: white;
}

#faqHeaderTopics img:hover {
    filter: opacity(40%);
    cursor: pointer; 
}




/* ================================== SHOWREEL PAGE ============================== */
/* =============================================================================== */
/* =============================================================================== */
/* =============================================================================== */

#showReelTitle {
    display: flex;
    width: 100%;
    height: 130px;
    margin-top: 50px;
    margin-bottom: 70px;
}

@media (max-width: 759px) {
    #showReelTitle {
        height: 60px;
        margin-top: 35px;
        margin-bottom: 40px;
    }
}

#showReelTitle img {
    margin: auto;
    height: 100%;
    width: auto;
}

.videoWrapper {
    display: inline-flex;
    margin-bottom: 6%;
    padding-left: 10%;
    padding-right: 10%;
}

/* make video go single column for mobile */
@media (max-width: 650px) {
    .videoWrapper {
        display: block;
        margin-bottom: 0%;
    }
}

.videoHolder img {
    width: 100%;
    margin: auto
}

.videoHolder {
    display: block;
    width: 50%;
    margin-left: 2%;
    margin-right: 2%;
}

/* make video go single column for mobile */
@media (max-width: 650px) {
    .videoHolder {
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
        margin-bottom: 5%;
    }
}

#showReelSpace {
    height: 50px;
    width: 100%;
}

/* ================================ CABARET  ========================================= */
/* =================================================================================== */
/* =================================================================================== */
/* =================================================================================== */

.cabaretPaddingContainer {
    display: flex;
    padding-left: 10%;
    padding-right: 10%;
}


#cabaretBannerTop img {
    width: 100%;
}

#cabaretTitle {
    display: flex;
    width: 100%;
    height: 130px;
    margin-top: 50px;
    margin-bottom: 70px;
}

@media (max-width: 759px) {
    #cabaretTitle {
        height: 60px;
        margin-top: 30px;
        margin-bottom: 50px;
    }
}

#cabaretTitle img {
    margin: auto;
    height: 100%;
    width: auto;
}

.cabaretContainerOdd {
    display: inline-flex;
    width: 100%;
    background-color: white;
    padding-top: 2%;
    padding-bottom: 2%;
}

/* make single column for mobile */
@media (max-width: 700px) {
    .cabaretContainerOdd {
        display: block;
    }
}

.cabaretPosterContainerOdd {
    display: block;
    align-items: center;
    width: 40%;
    padding: 2%;
}

/* make single column for mobile */
@media (max-width: 700px) {
    .cabaretPosterContainerOdd {
        display: flex;
        width: 100%;
    }
}

.cabaretPosterContainerOdd img {
    max-width: 100%;
    margin: auto;
}

/* make single column for mobile */
@media (max-width: 700px) {
    .cabaretPosterContainerOdd img {
        width: 50%;
        margin: auto;
    }
}

.cabaretDescriptionContainerOdd {
    display: inline-block;
    width: 60%;
    padding-right: 2%;
    padding-bottom: 2%;
}

/* make single column for mobile */
@media (max-width: 700px) {
    .cabaretDescriptionContainerOdd {
        width: 100%;
        padding-right: 0%;
        padding-left: 0%;
    }
}

.cabaretDescriptionHeaderOdd {  /* Black section Heading */
    color: black;
    font-size: 24px;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
}

/* make single column for mobile */
@media (max-width: 900px) {
    .cabaretDescriptionHeaderOdd {
        font-size: 20px;
    }
}

/* make single column for mobile */
@media (max-width: 600px) {
    .cabaretDescriptionHeaderOdd {
        font-size: 16px;
    }
}

.cabaretDescriptionContentOdd { /* Black section paragraph */
    color: black;
    font-size: 16px;
    font-family: 'Pontano Sans', sans-serif;
    text-align: justify;
}

/* make single column for mobile */
@media (max-width: 900px) {
    .cabaretDescriptionContentOdd {
        font-size: 14px;
    }
}

/* make single column for mobile */
@media (max-width: 600px) {
    .cabaretDescriptionContentOdd {
        font-size: 12px;
    }
}

/* make single column for mobile */
@media (max-width: 700px) {
    .cabaretDescriptionContentOdd {
        padding-left: 5%;
        padding-right: 5%;
    }
}


.cabaretContainerEven {
    display: inline-flex;
    width: 100%;
    background-color: black;
    padding-top: 3%;
    padding-bottom: 3%;
}

/* make single column for mobile */
@media (max-width: 700px) {
    .cabaretContainerEven {
        display: block;
    }
}

.cabaretPosterContainerEven {
    display: block;
    align-items: center;
    width: 40%;
    padding: 2%;
}

/* make single column for mobile */
@media (max-width: 700px) {
    .cabaretPosterContainerEven {
        display: flex;
        width: 100%;
    }
}

.cabaretPosterContainerEven img {
    max-width: 100%;
    margin: auto;
}

/* make single column for mobile */
@media (max-width: 700px) {
    .cabaretPosterContainerEven img {
        width: 50%;
        margin: auto;
    }
}

.cabaretDescriptionContainerEven {
    display: block;
    width: 60%;
    padding-right: 3%;
    padding-bottom: 3%;
}

/* make single column for mobile */
@media (max-width: 700px) {
    .cabaretDescriptionContainerEven {
        width: 100%;
        padding-right: 0%;
        padding-left: 0%;
    }
}

.cabaretDescriptionHeaderEven {  /* Black section Heading */
    color: #e7e7e7;
    font-size: 24px;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
}

/* make single column for mobile */
@media (max-width: 900px) {
    .cabaretDescriptionHeaderEven {
        font-size: 20px;
    }
}

/* make single column for mobile */
@media (max-width: 600px) {
    .cabaretDescriptionHeaderEven {
        font-size: 16px;
    }
}

.cabaretDescriptionContentEven { /* Black section paragraph */
    color: #e7e7e7;
    font-size: 16px;
    font-family: 'Pontano Sans', sans-serif;
    text-align: justify;
}

/* make single column for mobile */
@media (max-width: 900px) {
    .cabaretDescriptionContentEven {
        font-size: 14px;
    }
}

/* make single column for mobile */
@media (max-width: 600px) {
    .cabaretDescriptionContentEven {
        font-size: 12px;
    }
}

/* make single column for mobile */
@media (max-width: 700px) {
    .cabaretDescriptionContentEven {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.imgBox {
    display: flex;
    width: 98%;
    padding: 0;
    margin-left: 1%;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.cabaretImgContainer {
    width: 33%;
    display: block;
}

.imgBox img {
    width: 98%;
    margin: auto;
    display: block;
}

#lastCabaretContainer { 
    margin-bottom: 12%; /* this puts gap above the contact footer for this page */
}

.cabaretImgComingSoonContainer {
    width: 100%;
    display: block;
}

.cabaretImgComingSoonContainer img {
    width: 70%;
    margin-left: 15%;
}


/* ================================ BOOKING FORM =================================== */
/* ================================================================================= */
/* ================================================================================= */
/* ================================================================================= */

#formContainer {
    
    margin: 0;
    padding: 0;
    padding-top: 8%;
    padding-bottom: 100px;

}

#formBox {
    max-width:500px;
    width:90%;
    padding-left: 5%;
    padding-right: 5%;
    margin: auto;
    position: relative;
    display: flex;
}

#contact img {
    width: 50%;
    margin-left: 33%; 
}

#contactSent img {
    width: 50%;
    margin-left: 33%;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="date"], #contact input[type="text"], #contact textarea, #contact button[type="submit"] { font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; }

#contact {
    background-image: url(../images/black60.png);
	padding:25px;
    margin: auto;
    display: block;
}

#contactSent {
    background-image: url(../images/black60.png);
	padding:25px;
    margin: auto;
    display: block;
}

#contact h3 {
	color:white;
	display: block;	font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 5px;
    font-family: 'Rajdhani', sans-serif;
}

#contactSent h3 {
	color:white;
	display: block;	font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 5px;
    font-family: 'Rajdhani', sans-serif;
}

fieldset {
	border: medium none !important;
	margin: 0 0 5%;
	min-width: 100%;
	padding: 0;
	width: 100%;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="date"], #contact input[type="text"], #contact textarea {
	width:95%;
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="date"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#contact textarea {
	height:100px;
	max-width:100%;
    resize:none;
}

#contact button[type="submit"] {
	cursor:pointer;
	width:100%;
	border:none;
	background: black;
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
    font-size:15px;
   
}

#contact button[type="submit"]:hover {
    background: black;
	-webkit-transition: background 0.3s ease-in-out;
	-moz-transition: background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}

#sentFormSpace {
    height: 150px;
}




