/*
=============== 
Variables
===============
*/

:root {
  /* dark shades of primary color*/
  --clr-primary-1: hsl(184, 91%, 17%);
  --clr-primary-2: hsl(185, 84%, 25%);
  --clr-primary-3: hsl(185, 81%, 29%);
  --clr-primary-4: hsl(184, 77%, 34%);
  /* primary/main color */
  --clr-primary-5: hsl(185, 62%, 45%);
  /* lighter shades of primary color */
  --clr-primary-6: hsl(185, 57%, 50%);
  --clr-primary-7: hsl(184, 65%, 59%);
  --clr-primary-8: hsl(184, 80%, 74%);
  --clr-primary-9: hsl(185, 94%, 87%);
  --clr-primary-10: hsl(186, 100%, 94%);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-2: hsl(211, 39%, 23%);
  --clr-grey-3: hsl(209, 34%, 30%);
  --clr-grey-4: hsl(209, 28%, 39%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --ff-primary: 'Lato', sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.06rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
/*
=============== 
Global Styles
===============
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: var(--clr-white);
  color: #333;
  line-height: 1.5;
  font-size: 0.875rem;
}

#content {
  min-height: calc(100vh - 40px);
}

.small { font-size: 85%; }

.spacer_line {
  margin-top: 40px;
  margin-bottom: 40px;
  border-top:1px dotted #FFFFFF;
}

.spacer_line_solid {
  margin-top: 40px;
  margin-bottom: 40px;
  border-top:1px solid #666;
}

.spacer {
  display:block;
  width:100%;
  margin-top: 10px;
  margin-bottom: 10px; 
  height:20px;
}



ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  color:#333;
}
img:not(.nav-logo) {
  width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 1.25rem;
  color: #333;
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 0.9rem;
  }
  body {
    font-size: 0.9rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}
/*  global classes */

.btn {
  text-transform: uppercase;
  color: #333;
  padding: 0.85rem 1.6rem;
  letter-spacing: var(--spacing);
  display: inline-block;
  font-weight: 700;
  transition: var(--transition);
  font-size: 0.875rem;
  border: 1px solid #666;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}
.btn:hover {
  color: #333;
  background: var(--clr-grey-1);
}

.section {
  padding: 4rem 0;
  scroll-margin-top: 4rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.carousel-title {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 2rem;
}
.section-title h2 {
  text-transform: none;
  padding-top:2%;
}
.section-title span {
  color: var(--clr-primary-5);
}
.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
}
@media screen and (min-width: 992px) {
  .section-center {
    /*width: 95vw;*/
    width: 80vw;
  }
}

/*
=============== 
Hero
===============
*/

/*.hero {
  min-height: 100vh;
  background: linear-gradient(rgb(44, 174, 186, 0), rgba(0, 0, 0, 0.7)),
  url('../images/main3.jpg') center/fit no-repeat;
  display: flex;

  justify-content: center;
  align-items: center;
}*/


.hero-btn {
  padding:0.85rem 1.6rem;
  font-size: 0.9rem;
  margin:0 auto;
}
.hero-btn:hover {
  background: #410460; 
  color: var(--clr-white);
}
@media screen and (min-width: 768px) {
  .hero {
    min-height: 100vh;
    background: linear-gradient(rgb(44, 174, 186, 0), rgba(0, 0, 0, 0)),
      url('../images/main3.jpg') center/cover no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .hero-banner {
    padding: 0;
  }
  .hero-banner p {
    max-width: 45rem;
  }

  .hero-banner {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    padding: 0 3rem;
    width: 55%;
    margin-top: 10%;
  }
  
  .hero-banner h1 {
    font-size: 2.8em;
    text-transform: none;
    color: #e0c898;
    letter-spacing: 0.03em;
    line-height: 1.2em;
  }

  .hero-banner p {
    max-width: 35rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--clr-white);
    letter-spacing: var(--spacing);
  }
}

/*
=============== 
About
===============
*/


.about_bg {
  width:100%;
  min-height: 100vh;
  background:url('../images/testimonies_bg.jpg') center/cover no-repeat;
}



.video_wrapper {
  width:100%;
  display:flex;
  height:auto;
  padding-bottom:2%;
  border:0px solid #FFFFFF;
}

.video {
  width:70%;
  display:flex;
  margin: 0 auto;
  padding:0px;
  border:0px solid #0cc3ec;
  /*background-color:#45174b;*/
}

.audio {
  width:100%;
  display:block;
  margin: 0 auto;
  padding:20px 20px 10px 20px ;
  border:0px solid #0cc3ec;
}

.audio_text {
  display:block;
  text-align:center;
  height:2.5rem;
  margin: 0 auto;
  font-family:Arial, Helvetica, sans-serif;
  font-size:0.9rem;
  color:#FFFFFF;
  margin-top:40px;
  padding:0px 20px 10px 0px ;
  border:0px solid #0cc3ec;
}

.audio_wrapper {
  width:40%;
  display:block;
  height:7rem;
  padding:0;
  margin:0 auto;
  margin-bottom:10px;
  background: linear-gradient(38deg, rgb(63, 15, 111) 30%, rgb(114, 7, 122) 53%, rgb(145, 100, 2) 100%);
  /*background-color:#5d797f;*/
  border:0px solid #000;
}

.audio_wrapper_wider {
  width:50%;
  margin:0 auto;
  margin-bottom:4rem;
}

.about_image {
  width:80%;
  margin:0 auto;
  height:auto;
  border:0px solid red;
}

.about_image img {
  width:90%;
  margin:0 auto;
 
}

.about-title h2 {
  color:#FFFFFF;
}


.about-info p {
  margin-bottom: 1rem;
  color:#FFFFFF;
}



@media screen and (min-width: 992px) {
  .about-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8rem;
  }
 
  .about-info {
    margin-bottom: 0;
  }
}

/*
=============== 
Composer
===============
*/

.composer_bg {
  width:100%;
  min-height: 100vh;
  background:url('../images/composer_bg.png') center/cover no-repeat;
}

.composer-info p {
  font-size:1.1em;
  margin-bottom: 1rem;
  color:#333;
}

/*
=============== 
Upcoming Gigs
=============== 
*/

.gigs_bg {
  width:100%;
  min-height: 100vh;
  /*background:url('../images/about_bg.jpg') center/cover no-repeat;*/
}

.gigs_image {
  width:75%;
  margin:0 auto;
  height:15rem;
  border:0px solid red;
}

.gigs_image img {
  width:45%;
  margin:0 auto;
 
}

.gigs-img,
.gigs-info {
  background: linear-gradient(38deg, rgb(63, 15, 111) 30%, rgb(114, 7, 122) 53%, rgb(145, 100, 2) 100%);
  margin-bottom: 2rem;
  text-align:center;
  /*background-color: #efebe2;*/
  padding-top: 10px;
}

.gigs-info p {
  margin-bottom: 2rem;
  text-align:center;
  color:#FFFFFF;
  padding-top: 10px;
}

.gig_title {
  font-size: 3em;
  font-weight:normal;
  line-height: 0.8em;
  color:#FFFFFF;
}

.gig_date {
  font-size: 2em;
  font-weight:normal;
  color:#FFFFFF;
  line-height: 1.3em;
}

.gig_link_wrapper {
  border:0px solid white;
  display: block;
  width: 40%;
  margin: 0 auto;
  border-radius:8px;
  padding: 8px 0px 0px 0px;
  background-color:#FF4400;
}

.gig_link {
  font-size: 1.3em;
  text-align:center;
  font-weight:normal;
  line-height: 0.8em;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 20px 0;
}

.gig_link a {
    color: #FFFFFF;  
}

@media screen and (min-width: 992px) {
  .gigs-center {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 8rem;
  }
 
  .gigs-info {
    background: linear-gradient(38deg, rgb(63, 15, 111) 30%, rgb(114, 7, 122) 53%, rgb(145, 100, 2) 100%);
    /*background-color: #E4E0E0;*/
    padding: 25px;
    margin-bottom: 0;
    border-radius:8px;
  }
}

/*
=============== 
Kaleidoscope
===============
*/


.kaleidoscope_bg {
  width:100%;
  /*min-height: 100vh;*/
  /*background:url('../images/about_bg.jpg') center/cover no-repeat;*/
}

/*
=============== 
Testimonies
===============
*/

.testimonies_bg {
  width:100%;
  min-height: 100vh;
  background:url('../images/testimonies_bg.jpg') center/cover no-repeat;
}

.testimonies-info {
  color:#FFFFFF;
}

.testimonies-info p  {
  color:#FFFFFF;
}

.testimonies-title h2 {
  color:#FFFFFF;
}

.kaleidoscope_link {
  padding:23px;
  background-color: #4c7276;;
  font-size: 1em;
  font-weight:normal;
  color:#FFFFFF;
  line-height: 1.3em;
  text-align:center;
  width: 80%;
  margin: 0 auto;
  margin-top:3rem;
  border-radius: 6px;
  background: linear-gradient(38deg, rgb(73, 32, 115) 20%, rgb(243, 140, 5) 53%, rgb(38, 131, 126) 100%);
}

.kaleidoscope_link a {
  text-transform:uppercase;
  color:#FFFFFF;
}

.youtube_link_left {
  padding:12px;
  background-color: #4c7276;
  background-image:url("../images/gig1.jpg");
  background-size: cover;
  font-size: 1em;
  font-weight:normal;
  color:#FFFFFF;
  line-height: 1.3em;
  text-align:center;
  width: 46%;
  height: 26rem;
  margin: 0 auto;
  margin-top:3rem;

}

.youtube_link_left a {
  text-transform:uppercase;
  color:#FFFFFF;
}

.youtube_link_right {
  padding:12px;
  background-color: #4c7276;
  background-image:url("../images/gig2.jpg");
  background-size: cover;
  font-size: 1em;
  font-weight:normal;
  color:#FFFFFF;
  line-height: 1.3em;
  text-align:center;
  width: 46%;
  height: 26rem;
  margin: 0 auto;
  margin-top:3rem;

}

.youtube_link_right a {
  text-transform:uppercase;
  color:#FFFFFF;
}


/*
=============== 
Cards
===============
*/
.card-card {
  transition: var(--transition);
  background: #f6f1f1;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}
.card-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.01);
}
.card-img-container {
  position: relative;
}
.card-img {
  height: 16rem;
  object-fit: cover;
}
.card-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--clr-primary-8);
  color: var(--clr-primary-1);
  text-transform: capitalize;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0;
}
.card-info {
  padding: 1.25rem 1.5rem;
}
/* additional css for different layout*/
.card-title {
  display: block;
  text-align:center;
  height: 5em;
}

.card-title p,
.card-title h4 {
  margin-bottom: 0.75rem;
  line-height: 1.6em;
}

.card-title p {
  color: var(--clr-grey-7);
  
}
.card_description {
  height:8em;
  border:0px solid red;
}
.card_price {
  font-size: 1.45em;
  margin:0 0 1em 0;
  padding:0;
  border:
  0px solid red
}

/* end of additional css for different layout*/
.card-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.card-footer-sold {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 600;
  font-size: 140%;
}
.card-footer p {
  line-height: 0;
  margin-bottom: 0;
  text-transform: capitalize;
  color: var(--clr-primary-5);
}
.card-footer p span {
  margin-right: 0.25rem;
}
.card-btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .featured-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media screen and (min-width: 1170px) {
  .featured-center {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 768px) {
  .featured-center-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media screen and (min-width: 1170px) {
  .featured-center-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/*
=============== 
Portfolio page 
===============
*/

.youtube {
width:800px;
height:450px;
display:block;
margin:0 auto;
border:0px solid red;
}

.back_btn {
  position: absolute;
  top: 2.4em;
  left: 4em;
  font-size: 1.4em;
  border: 1px solid #666;
}

.video-container {
  position: relative;
  margin-bottom: 20px;
  height:auto;
  overflow: hidden;
 
}

@media screen and (min-width: 992px) {
  .portfolio-center {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 8rem;
    width:65%;
  }
 
  .portfolio-info {
    width:80%;
    text-align:center;
    margin-bottom: 0;
    margin:0 auto;
  }
}

/*
=============== 
Contact Form
===============
*/

/*
.contact_titleOLD {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
  Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight:400;
  color: #333;
  line-height: 1.5;
  margin: 0 0 2.5rem 0;
  font-size:2em;  
}
*/

.contact_title {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3em;
}

.contact_title_subscribe {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.3em;
}

/*
=============== 
Footer
===============
*/
.section_spacer {
  height: 1rem;
}

.footer {
  background: var(--clr-white);
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
  width:100%;
}
.footer-links,
.footer-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-link {
  color: #666;
  text-transform: capitalize;
  font-size: 0.8rem;
  margin-right: 1rem;
  transition: var(--transition);
}
.footer-link:hover {
  color: var(--clr-primary-5);
}
.footer-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: var(--clr-white);
  transition: var(--transition);
}
.footer-icon:hover {
  color: var(--clr-primary-5);
}
.copyright {
 font-size: 0.6em;
 color: #666;
 text-transform:none;
}
.copyright a:link{
  text-decoration:none;
  text-transform:none;
 }

.copyright span {
  margin-left: 0rem;
}

/* footer mobile landscape */
@media only screen
and (min-device-width: 200px)
and (max-device-width: 650px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: landscape) {
  .copyright {
    font-size: 0.6em!important;
    text-transform:none;
   }
}
/*
=============== 
Navbar
===============
*/
/* add :not(.nav-logo) to img */

.navbar {
  position: fixed;
  z-index:100;
  top: 0;
  left: 0;
  width: 100%;
  background: #f5f2f0;;
  box-shadow: var(--dark-shadow);
  z-index: 2;
  height: 7rem;
  display: flex;
  align-items: center;
}
.nav-logo-contact{
  margin:-55px 0 0 0;
}
.nav-icons {
  display: none;
}
.nav-center {
  width: 90vw;
  max-width: 1170px;
  margin: 0 auto;
  border:0px solid red;
}
.row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  width:100%;
  border:0px solid red;
}


.container_top_menu {
  display:block!important;
  width:110%;
  float:right;
  height:auto;
  margin-top: 12px;
  border:0px solid #000;
}

.container_top_menu ul {
  width:100%;
  float:right;
  height:30px;
  border:0px solid #FF4400;
}

.container_top_menu li {
  display:inline;
  height:30px;
  color:#000;
  font-size:1.3em;
  float:right;
  margin-left:0.6%;
  border:0px solid #000;
}

.fullwidth_burger_menu {
  display:none!important;
}



#colorlib-page {
  position: relative;
  -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }
  .menu-show #colorlib-page {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    position: relative; }
    .menu-show #colorlib-page:after {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      content: '';
      background: rgba(0, 0, 0, 0.4);
      z-index: 3; }

/* pop-up menu panel */
#colorlib-main-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #FF4400;
  z-index: 1002;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  overflow-y: scroll;
}

  #colorlib-main-nav .colorlib-table {
    display: table;
    width: 100%;
    height: 100%;
  }
    #colorlib-main-nav .colorlib-table .colorlib-table-cell {
      display: table-cell;
      vertical-align: middle;
  }

  /*  dismiss cross  */
  #colorlib-main-nav .colorlib-nav-toggle {
    position: fixed;
    top: 40px;
    right: 40px;
    padding: 20px;
    height: 44px;
    width: 44px;
    line-height: 0;
    padding: 0 !important;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

/*  dismiss cross  rollover*/
    #colorlib-main-nav .colorlib-nav-toggle i {
      top: 18px !important;
      left: 0 !important;
      margin: 0 !important;
      padding: 0 !important;
      line-height: 0;
      text-indent: 0;
    }

    #colorlib-main-nav .colorlib-nav-toggle.show {
      visibility: visible;
      opacity: 1; }
    #colorlib-main-nav .colorlib-nav-toggle:hover i::before, #colorlib-main-nav .colorlib-nav-toggle:hover i::after {
      content: '';
      width: 40px;

      /*  dismiss cross line thickness  */
      height: 2px;

      background: #fff;
      position: absolute;
      left: 0; }

  .menu-show #colorlib-main-nav {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
  #colorlib-main-nav ul {
    padding: 0;
    margin: 0;
    display: block; }


    #colorlib-main-nav ul li {
      padding: 10px;
      margin: 0;
      list-style: none;
     }
      #colorlib-main-nav ul li a {
        display: block;
        color: white;
        padding: 5px 0; }
        #colorlib-main-nav ul li a span {
          font-size: 2.3em!important;
          line-height:2em;
          color: white;
          position: relative;
          padding: 0 40px; }
          #colorlib-main-nav ul li a span:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -2%;
            left: 0;
            background-color: #fff;
            visibility: hidden;
            -webkit-transform: scaleX(0);
            -moz-transform: scaleX(0);
            -ms-transform: scaleX(0);
            -o-transform: scaleX(0);
            transform: scaleX(0);
            -webkit-transition: all 0.3s ease-in-out 0s;
            -moz-transition: all 0.3s ease-in-out 0s;
            -ms-transition: all 0.3s ease-in-out 0s;
            -o-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s; }


        #colorlib-main-nav ul li a:hover, #colorlib-main-nav ul li a:active, #colorlib-main-nav ul li a:focus {
          outline: none;
          text-decoration: none; }
          #colorlib-main-nav ul li a:hover span:before, #colorlib-main-nav ul li a:active span:before, #colorlib-main-nav ul li a:focus span:before {
            visibility: visible;
            -webkit-transform: scaleX(1);
            -moz-transform: scaleX(1);
            -ms-transform: scaleX(1);
            -o-transform: scaleX(1);
            transform: scaleX(1); }
      #colorlib-main-nav ul li.active a span {
        color: #FFF; }
        #colorlib-main-nav ul li.active a span:before {
          background: #ffffff;
          visibility: visible;
          -webkit-transform: scaleX(1);
          -moz-transform: scaleX(1);
          -ms-transform: scaleX(1);
          -o-transform: scaleX(1);
          transform: scaleX(1); }

/*
.nav-toggle {
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.5rem;
  color: var(--clr-white);
  cursor: pointer;
  transition: var(--transition);
}*/

.nav-toggle:hover {
  transform: scale(1.2);
}
.nav-link {
  display: block;
  padding: 1rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0em;
  transition: var(--transition);
  color: #313131;
  cursor: pointer;
  font-size: 0.8rem;
}

/*.nav-link:hover {
  color: var(--clr-grey-10);
  padding-left: 2.25rem;
}*/

/* nav toggle functionality */
.nav-links {
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}
.nav-links-contact {
  height: 0;
  margin: -55px 0 0 0;
  overflow: hidden;
  transition: var(--transition);
}
.show-links {
  height: 330px;
}



/* mobile portrait */
@media only screen
and (min-device-width: 200px)
and (max-device-width: 650px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: portrait) {

  .back_btn {
    position: absolute;
    top: 0.4em!important;
    left: 0.6em!important;;
    font-size: 1.4em;
    border: 2px solid #666;
  }

  .hero {
    min-height: 90vh;
    background: linear-gradient(rgb(44, 174, 186, 0), rgba(0, 0, 0, 0)),
      url('../images/main3_mobile_portrait.jpg') center/cover no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .hero-banner {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    padding: 0 3rem;
    width: 100%;
    margin-top: 28%;
  }

  .hero-banner h1 {
    font-size: 2.8em;
    text-transform: none;
    color: #e0c898;
    letter-spacing: 0.03em;
    line-height: 1.2em;
  }

  @media screen and (min-width: 1170px) {
    .featured-center-two-col {
      grid-template-columns: 1fr 1fr;
    }
  }

  .youtube {
    width:400px;
    height:225px;
    display:block!important;
    margin:0 auto!important;
    border:0px solid red;
    }

    .youtube_link_left {
      padding:12px;
      background-color: #4c7276;
      background-image:url("../images/gig1.jpg");
      background-size: cover;
      font-size: 1em;
      font-weight:normal;
      color:#FFFFFF;
      line-height: 1.3em;
      text-align:center;
      width: 90%;
      height: 26rem;
      margin: 0 auto;
      margin-top:3rem;
    
    }
    
    .youtube_link_left a {
      text-transform:uppercase;
      color:#FFFFFF;
    }
    
    .youtube_link_right {
      padding:12px;
      background-color: #4c7276;
      background-image:url("../images/gig2.jpg");
      background-size: cover;
      font-size: 1em;
      font-weight:normal;
      color:#FFFFFF;
      line-height: 1.3em;
      text-align:center;
      width: 90%;
      height: 26rem;
      margin: 0 auto;
      margin-top:3rem;
    
    }
    
    .youtube_link_right a {
      text-transform:uppercase;
      color:#FFFFFF;
    }

  .section-title .about-title h2 {
    color:#FFFFFF;
  }

  .kaleidoscope_link {
    padding:23px;
    background-color: #4c7276;;
    font-size: 1em;
    font-weight:normal;
    color:#FFFFFF;
    line-height: 1.3em;
    text-align:center;
    width: 95%;
    margin: 0 auto;
    margin-top:3rem;
    border-radius: 6px;
    background: linear-gradient(38deg, rgb(73, 32, 115) 20%, rgb(243, 140, 5) 53%, rgb(2, 243, 231) 100%);
  }

  .about-info p {
    margin-bottom: 0.8rem;
    font-size: 120%;
    color:#FFFFFF;
    border:0px solid red;
  }

  .composer-info p {
    margin-bottom: 0.8rem;
    font-size: 120%;
    color:#333;
  }

  .kaleidoscope-info p {
    margin-bottom: 0.8rem;
    font-size: 120%;
    color:#333;
  }

  .about_image {
    width:100%;
    margin:0 auto;
    border:0px solid red;
  }

  .video_wrapper {
    width:100%;
    display:flex;
    height:auto;
    padding-bottom:5%;
    border:0px solid #FFFFFF; 
  }
  
  .video {
    width:90%;
    display:flex;
    margin: 0 auto;
    padding:0px;
    border:0px solid #0cc3ec;
  }

  .about_image img {
    width:100%;
    margin:0 auto;
  }

  .audio_wrapper_wider {
    width:90%;
    margin:0 auto;
    margin-bottom:4rem;
  }

  .audio_wrapper {
    width:90%;
    margin:0 auto;
    margin-bottom:4rem;
  }

  .card-title {
    display: block;
    text-align:center;
    height: 4em;
  }

  .gigs-info p {
    margin-bottom: 1rem;
    text-align:center;
    color:#FFFFFF;
    padding-top: 10px;
  }

  .gig_link_wrapper {
    border:1px solid white;
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .gig_link_wrapper {
    border:0px solid white;
    display: block;
    width: 90%;
    margin: 0 auto;
    border-radius:8px;
    background-color:#FF4400;
  }
  
  .gig_link {
    font-size: 1.3em;
    text-align:center;
    font-weight:normal;
    line-height: 0.8em;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 20px 0;
  }
  
  .gig_link a {
      color: #FFFFFF;  
  }
  
  .gig_title {
    font-size: 1.8em;
    font-weight:bold;
    line-height: 1.4em;
  }
  
  .gig_date {
    font-size: 1.8em;
    font-weight:normal;
    line-height: 1.3em;
  }
  

  .carousel_section {
    padding: 1rem 0 0 0;
    scroll-margin-top: 4rem;
  }
  .carousel_info_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    width:50%;
  }
  .carousel_info_section {
    padding: 1rem 0 5rem 0;
    scroll-margin-top: 4rem; 
  }
  .carousel_info {
    margin-bottom: 1rem;
    scroll-margin-top: 4rem; 
  }
  .carousel_price {
    font-size: 1.95em;
    margin-top:0;
    padding:0;
    border:
    0px solid red
  }
  .hero-btn-carousel {
    padding:0.6rem 1.3rem;
    font-size: 0.9rem;
    margin:0 0 5rem 0;
  }
  .hero-btn-carousel:hover {
    background: #666; 
    color: var(--clr-white);
  }

  .nav-logo {
    width: 100%;
    float: none;
    border: 0px solid red;
    margin-left: 19%!important;
    margin-top: 14%;
  }

  .show-links {
    height: 330px;
    background-color:#f5f2f0;
  }
  .nav-link {
    display: block;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0em;
    transition: var(--transition);
    color: #313131;
    cursor: pointer;
    font-size: 1rem;
  }

 
  .colorlib-nav-toggle {
    cursor: pointer;
    text-decoration: none; }
    .colorlib-nav-toggle.active i::before, .colorlib-nav-toggle.active i::after {
      background: #fff !important; }
    .colorlib-nav-toggle.dark.active i::before, .colorlib-nav-toggle.dark.active i::after {
      background: #000; }
    .colorlib-nav-toggle:hover, .colorlib-nav-toggle:focus, .colorlib-nav-toggle:active {
      outline: none;
      border-bottom: none !important; }
    .colorlib-nav-toggle i {
      position: relative;
      display: -moz-inline-stack;
      display: inline-block;
      zoom: 1;
      *display: inline;
      width: 35px;
      height: 2px;
      color: #000;
      font: bold 14px/.4 Helvetica;
      text-transform: uppercase;
      text-indent: -55px;
      background: #000;
      -webkit-transition: all .2s ease-out;
      -o-transition: all .2s ease-out;
      transition: all .2s ease-out; }
      .menu-show .colorlib-nav-toggle i {
        background: #000;
        color: #fff; }
      .colorlib-nav-toggle i::before, .colorlib-nav-toggle i::after {
        content: '';
        width: 40px;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s; }
        .menu-show .colorlib-nav-toggle i::before, .menu-show .colorlib-nav-toggle i::after {
          background: transparent; }
    .colorlib-nav-toggle.dark i {
      position: relative;
      color: #fff;
      background: #fff;
      -webkit-transition: all .2s ease-out;
      -o-transition: all .2s ease-out;
      transition: all .2s ease-out; }
      .colorlib-nav-toggle.dark i::before, .colorlib-nav-toggle.dark i::after {
        background: #fff;
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s; }
  
  .colorlib-nav-toggle i::before {
    top: -7px; }
  
  .colorlib-nav-toggle i::after {
    bottom: -7px; }
  
  .colorlib-nav-toggle:hover i::before {
    top: -10px; }
  
  .colorlib-nav-toggle:hover i::after {
    bottom: -10px; }
  
  .colorlib-nav-toggle.active i {
    background: transparent; }
  
  .colorlib-nav-toggle.active i::before {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg); }
  
  .colorlib-nav-toggle.active i::after {
    bottom: 0;
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg); }
  
  .colorlib-nav-toggle {
    position: fixed;
    float: right;
    z-index: 1003;
    position: relative;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    margin: 0 0 0 0; }

    .section-title {
      font-family: "Cormorant Garamond", serif;
      font-optical-sizing: auto;
      font-weight: 600;
      font-style: normal;
      text-align: center;
      margin-bottom: 3rem;
      margin-top: 5rem;
    }

}

/* mobile landscape */
@media only screen
  and (min-device-width: 320px)
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) 
  {

    .hero-banner {
      width: 100%;
    }

  .about-info p {
    margin-bottom: 0.8rem;
    font-size: 70%;
    border:0px solid red;
    }

    .nav-logo {
      width: 75%;
      float: none;
      margin-left: 46%!important;
      margin: 0 auto;
      border: 0px solid red;
      } 
  
      .about-title  {
        color:#FFFFFF;
        width:75%;
        border:0px solid red;
        margin:0 auto;
        margin-top:4.4rem;
        margin-bottom:3rem;
      }

    .about_image {
      width:75%;
      margin:0 auto;
      height:15rem;
      border:0px solid red;
    }
  
    .about_image img {
      width:100%;
      margin:0 auto;
    }


  .show-links {
    height: 330px;
    background-color:#f5f2f0;
  }
  .nav-link {
    display: block;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0em;
    transition: var(--transition);
    color: #313131;
    cursor: pointer;
    font-size: 0.8rem;
  }

  .fullwidth_burger_menu {
    display:block;
    width:30%;
    float:right!important;
    padding:0;
    margin:16px 0 0 0;
    border: 0px solid #FF4400;
  }

  .colorlib-nav-toggle {
    cursor: pointer;
    text-decoration: none; }
    .colorlib-nav-toggle.active i::before, .colorlib-nav-toggle.active i::after {
      background: #fff !important; }
    .colorlib-nav-toggle.dark.active i::before, .colorlib-nav-toggle.dark.active i::after {
      background: #000; }
    .colorlib-nav-toggle:hover, .colorlib-nav-toggle:focus, .colorlib-nav-toggle:active {
      outline: none;
      border-bottom: none !important; }
    .colorlib-nav-toggle i {
      position: relative;
      display: -moz-inline-stack;
      display: inline-block;
      zoom: 1;
      *display: inline;
      width: 35px;
      height: 2px;
      color: #000;
      font: bold 14px/.4 Helvetica;
      text-transform: uppercase;
      text-indent: -55px;
      background: #000;
      -webkit-transition: all .2s ease-out;
      -o-transition: all .2s ease-out;
      transition: all .2s ease-out; }
      .menu-show .colorlib-nav-toggle i {
        background: #000;
        color: #fff; }
      .colorlib-nav-toggle i::before, .colorlib-nav-toggle i::after {
        content: '';
        width: 40px;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s; }
        .menu-show .colorlib-nav-toggle i::before, .menu-show .colorlib-nav-toggle i::after {
          background: transparent; }
    .colorlib-nav-toggle.dark i {
      position: relative;
      color: #fff;
      background: #fff;
      -webkit-transition: all .2s ease-out;
      -o-transition: all .2s ease-out;
      transition: all .2s ease-out; }
      .colorlib-nav-toggle.dark i::before, .colorlib-nav-toggle.dark i::after {
        background: #fff;
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s; }
  
  .colorlib-nav-toggle i::before {
    top: -7px; }
  
  .colorlib-nav-toggle i::after {
    bottom: -7px; }
  
  .colorlib-nav-toggle:hover i::before {
    top: -10px; }
  
  .colorlib-nav-toggle:hover i::after {
    bottom: -10px; }
  
  .colorlib-nav-toggle.active i {
    background: transparent; }
  
  .colorlib-nav-toggle.active i::before {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg); }
  
  .colorlib-nav-toggle.active i::after {
    bottom: 0;
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg); }
  
  .colorlib-nav-toggle {
    position: fixed;
    float: right;
    z-index: 1003;
    position: relative;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    margin: 0 0 0 0; }

}

/* nav at iPad */
@media only screen
  and (min-device-width: 481px)
  and (max-device-width: 1080px)
  and (-webkit-min-device-pixel-ratio: 2)
  /*and (orientation: landscape) */
  {

    .nav-logo {
      width: 75%;
      float: none;
      margin-left: 46%!important;
      margin: 0 auto;
      border: 0px solid red;
      } 
  
      .about-title  {
        color:#FFFFFF;
        width:75%;
        border:0px solid red;
        margin:0 auto;
        margin-top:4.4rem;
        margin-bottom:3rem;
      }

    .nav-link {
      display: block;
      padding: 0.2rem 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0em;
      transition: var(--transition);
      color: #313131;
      cursor: pointer;
      font-size: 0.8rem;
    }

    .section-title {
      margin-bottom: 3.5rem;
      margin-top: 2rem;
    }

   

}


/* nav at bigger screen size */
@media screen and (min-width: 1081px) {
  /* hide nav toggle button */
  .nav-toggle {
    display: none;
  }
  /* show links */
  .nav-links {
    position: absolute;
    right: 16%;
    top: 76%;
    height: auto;
    display: flex;
    float: right;
    border:0px solid red;
  }
  .nav-links-contact {
    height: auto;
    display: flex;
  }
  .nav-center {
    display: block;
    justify-content: space-between;
    align-items: center;
    /* optional */
  }
  .nav-header {
    position: absolute;
    left: 30%;
    top: 0;
    padding: 0 0;
    width: 40%;
    margin-top: 1.4%;
  }
  .nav-link {
    padding: 0 0;
  }
  .nav-link:hover {
    padding: 0;
    text-decoration:underline;
  
    background: transparent;
  }
  .nav-icons {
    display: flex;
  }

  .nav-link {
    margin-right: 2rem;
  }
  .nav-icon {
    margin-right: 0.7rem;
    color: var(--clr-primary-5);
    font-size: 1.2rem;
    transition: var(--transition);
  }
  .nav-icon:hover {
    color: var(--clr-primary-8);
  }
}
